Skip to content

Instantly share code, notes, and snippets.

View anviar's full-sized avatar
🕊️
surviving

Oleg Klyuchkin anviar

🕊️
surviving
View GitHub Profile
@anviar
anviar / pxelinux.cfg
Created May 5, 2018 07:30
Configuration file for PXE server
DEFAULT menu.c32
MENU TITLE Quick home network menu
# Menus
LABEL Ubuntu
KERNEL ubuntu/linux
APPEND initrd=ubuntu/initrd.gz
LABEL KolibriOS
KERNEL memdisk
APPEND initrd=kolibri.img
LABEL Memtest86+
@anviar
anviar / publish.py
Created May 4, 2018 13:02
Script to publish things on various platforms
#!/usr/bin/env python3
import os
import yaml
import argparse
import subprocess
import logging
os.chdir(os.path.dirname(os.path.realpath(__file__)))