作者:滕雅辛(幽素)
发布:2026年6月5日
全文:7.5万字
| # VSCode Nautilus Extension | |
| # | |
| # Place me in ~/.local/share/nautilus-python/extensions/, restrart Nautilus, and enjoy :) | |
| # mkdir -p ~/.local/share/nautilus-python/extensions && cp -f VSCodeExtension.py ~/.local/share/nautilus-python/extensions/VSCodeExtension.py && nautilus -q | |
| # | |
| # This script was written by cra0zy and is released to the public domain | |
| from gi import require_version | |
| require_version('Gtk', '3.0') | |
| require_version('Nautilus', '3.0') |
| = Arch Linux step-by-step installation = | |
| = http://blog.fabio.mancinelli.me/2012/12/28/Arch_Linux_on_BTRFS.html = | |
| == Boot the installation CD == | |
| == Create partition == | |
| cfdisk /dev/sda | |
| * Create a partition with code 8300 (Linux) |
| import asyncore | |
| import asynchat | |
| import socket | |
| class Lobby(object): | |
| def __init__(self): | |
| self.clients = set() | |
| def leave(self, client): | |
| self.clients.remove(client) |