@AboutRss · Post #1083 · 03.08.2021 г., 01:00
「通过 GitHub Actions 部署 INK RSS」 上一篇#教程 之后,群友 @yuy_uyu表示用 #GitHubActions 也可以部署 INK RSS,遂马上写就 #教程 一篇,感谢! https://180811.xyz/index.php/archives/71/
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #418 · 9 мар.
Оператор pipe позволяет писать более компактный код, реализуя логику объединения данных (Union). Важно помнить, что его поведение зависит от контекста. Побитовые операции (логическое OR) result = 5 | 3 # 5 (0101) | 3 (0011) = 7 (0111) Самое главное - не путать с оператором or, это другое! Объединение множеств set_a = {1, 2, 3} set_b = {3, 4, 5} set_c = set_a | set_b # {1, 2, 3, 4, 5} set_c |= {5, 6} # {1, 2, 3, 4, 5, 6} Слияние словарей dict_1 = {"a": 1, "b": 2} dict_2 = {"b": 3, "c": 4} merged = dict_1 | dict_2 # {'a': 1, 'b': 3, 'c': 4} merged |= {"d": 5} # {'a': 1, 'b': 3, 'c': 4, 'd': 5} Аннотации типов, заменяет Union def process_data(value: int | str) -> None: print(value) Допустимо использовать в isinstance или issubclass isinstance(3, int | float) # True Паттерн-матчинг status_code = 404 match status_code: case 200 | 201 | 204: print("OK") case 400 | 404 | 500: print("ERROR") Для использования в своих классах требуется переопределить метод __or__ Так же нашел библиотеку pipe которая добавляет еще много возможностей. Рекомендую ознакомиться ;) #basic
Hashtags
Пребарај: #githubactions
@AboutRss · Post #1083 · 03.08.2021 г., 01:00
「通过 GitHub Actions 部署 INK RSS」 上一篇#教程 之后,群友 @yuy_uyu表示用 #GitHubActions 也可以部署 INK RSS,遂马上写就 #教程 一篇,感谢! https://180811.xyz/index.php/archives/71/
Hashtags
@mdcuzbekistan · Post #670 · 03.03.2023 г., 18:21
Github actions dan foydalanib CI/CD qilish Do'stlar, avvalgi mavzularimizda Windows server bilan to'g'ridan to'g'ri ishlab, .NET ilovalarimizni deploy qilishni ko'rib chiqdik. O'ylaymizki, siz CI/CD haqida eshitgansiz. Masalan, Heroku servislaridan deployment uchun foydalangansiz, esingizda bo'lsa u yerda CI/CD sozlamalari qilingan edi. Ya'ni github/gitlab/azuredevops ga push qilish orqali, loyihamiz avtomatik tarzda build -> test -> deploy -> run bo'lardi. Ushbu mavzuni kengroq o'rganishimiz uchun Abduvohid ustozni mahorat darsimizga taklif qildik. Barchangizni ushbu mahorat darsida kutib qolamiz. Kirsangiz xursand bo'lamiz, kirmasangiz hafa bo'lish yo'q ) Sana: 5-mart, 20:00 Havola: Zoom Speaker: Wahid Abduhakimov #githubactions#deployment#cicd .NET Uzbekistan Community ➖➖➖➖➖➖➖➖➖➖ Telegram | Instagram | Youtube
Hashtags
@CryptoM · Post #65105 · 11.04.2026 г., 01:52
🚀 AI TRENDS | OpenAI Resolves GitHub Actions Configuration Error OpenAI has identified and resolved a configuration error within the GitHub Actions workflow, which was the root cause of a recent incident. According to Jin10, the issue stemmed from a misconfiguration that has now been addressed, ensuring smoother operations moving forward. #OpenAI#GitHubActions#AI#ConfigurationError#TechNews
@TossLabChannel · Post #472 · 02.01.2025 г., 10:54
#linuxdo#GitHubActions#签到 LinuxDo 每日签到项目 这个项目用于自动登录 LinuxDo 网站并每日签到,同时随机浏览帖子。它利用 Python 和 Playwright 自动化库实现浏览器的模拟操作,并支持 PushPlus 推送功能。 功能: - 自动登录并签到 LinuxDo。 - 浏览随机帖子。 - 在 GitHub Actions 中自动运行。 这个项目简化了 LinuxDo 的每日签到流程,适合需要自动化操作的用户。 其他方式: 脚本猫: 点击查看 📢 群聊: @TossLab 🎈 频道: @TossLabChannel ❤️不想错过精彩内容,请打开 #频道通知,你的 #阅读#点赞#转发 便是我发帖的最大动力!