@archive_quote · Post #20620 · 13.01.2021 г., 06:10
Morichika Maho by Morichika Nat (@magicnat) current_title: #archlinux-cn-nsfw current_user: 415630335 current_chat: -1001109254314 current_task: 69686
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
Пребарај: #archlinux
@archive_quote · Post #20620 · 13.01.2021 г., 06:10
Morichika Maho by Morichika Nat (@magicnat) current_title: #archlinux-cn-nsfw current_user: 415630335 current_chat: -1001109254314 current_task: 69686
Hashtags
@YukariChannel · Post #140 · 22.11.2018 г., 09:20
#ArchLinux pacman -Syu日常翻车
Hashtags
@a2e5talk · Post #51 · 21.08.2024 г., 20:09
real fucked up how I am the ms office specialist in the… office (and #archlinux-cn-offtopic, lmao) I suppose. middle school all over again (see also: my "imma pretend im just a freshly graduated high schooler" talk)
Hashtags
@The2ndDim · Post #1519 · 22.08.2021 г., 14:53
#转发#Linux#LinuxDistro#ArchLinux#软件 https://garudalinux.org/ // 真正的新手友好型 Arch Linux ? // 关于此发行版的介绍:Youtube
@aigcrubbish · Post #63 · 22.08.2025 г., 04:04
Arch Linux recent service outages Arch Linux 项目近期遭遇持续性的服务中断,主要影响官网、Arch 用户软件仓库(AUR)及论坛。团队确认这是一次拒绝服务攻击(DDoS),正在与托管服务商合作缓解攻击,并评估引入 DDoS 防护服务的可行性,同时兼顾成本、安全与道德标准。 项目组提供了服务中断期间的临时解决方案,但表示在攻击仍在进行时不公开技术细节或应对措施的具体信息。 📌 来源:https://lwn.net/Articles/1034716/ 🏷️#ArchLinux#服务中断#DDoS攻击#开源安全 #AIGC Read more
Hashtags
@mzyxsl1919810 · Post #18 · 03.11.2025 г., 16:01
#ArchLinux#CachyOS#elemntaryOS#Debian#Acceed#Homo#Linux 标题: 某个非常知名的Linux发行版.BB 原视频: https://www.bilibili.com/video/BV1bgyfBdE6E
@githubtrending · Post #15435 · 25.01.2026 г., 11:30
#shell#archlinux#baby_sched#cachy#cachy_scheduler#cachyos#cacule_sched#kernel#linux_kernel#performance#performance_tuning CachyOS offers enhanced Linux kernels with schedulers like BORE for gaming, EEVDF for general use, and BMQ, plus variants for security, servers, real-time, and Steam Deck. They include advanced optimizations like LTO, profile-guided compilation, AMD P-State boosts, ZFS/NVIDIA support, and CPU-specific builds (x86-64-v3/v4, Zen4). Easy repo install auto-detects your CPU for top performance. This boosts your system's speed, responsiveness, and efficiency on modern hardware, making gaming, daily tasks, and heavy workloads smoother and faster. https://github.com/CachyOS/linux-cachyos