Skip to content

Instantly share code, notes, and snippets.

View EgonSpengler's full-sized avatar

Tyler Adam EgonSpengler

View GitHub Profile
--- /bin/anaconda-cleanup 2016-06-13 19:20:58.000000000 -0400
+++ /bin/anaconda-cleanup 2016-09-30 13:28:29.509973691 -0400
@@ -77,14 +77,15 @@
and live_install and not "live" in device:
os.system("umount %s" % mountpoint)
-os.system("udevadm control --env=ANACONDA=1")
os.system("udevadm trigger --subsystem-match block")
os.system("udevadm settle")
devicetree = DeviceTree(conf=storage_config)
#!/bin/bash
sudo qemu-system-x86_64 \
-enable-kvm \
-m 4096 \
-name fedora18 \
-vga qxl \
-spice port=8884,addr=127.0.0.1,disable-ticketing \
-kernel /boot/vmlinuz-3.11.10-100.fc18.x86_64 \
-initrd /boot/initramfs-3.11.10-100.fc18.x86_64.img \
#!/bin/bash
echo -e " this terminal is\n FABULOUS" | toilet -f small --gay
PS2="╾──╼ "
red='\[\e[0;31m\]'
green='\[\e[0;32m\]'
yellow='\[\e[0;33m\]'
blue='\[\e[0;34m\]'
magenta='\[\e[1;35m\]'
cyan='\[\e[0;36m\]'
white='\[\e[0;m\]'
if [ `id -u` -eq "0" ]; then
root=${red}

Keybase proof

I hereby claim:

  • I am EgonSpengler on github.
  • I am egon (https://keybase.io/egon) on keybase.
  • I have a public key whose fingerprint is 7CA6 7006 1828 E446 F131 83A2 AE64 7E6C 4266 7887

To claim this, I am signing this object:

! ------ rxvt-unicode -------
! ---------------------------
URxvt.depth: 32
URxvt.background: [94]#0F0F0F
URxvt.scrollstyle: plain
URxvt.font: xft:Bitstream Vera Sans Mono:antialias=true:pixelsize=13
URxvt.iconFile: /usr/share/icons/Rodentia/small/apps/utilities-terminal.svg
URxvt.borderLess: false
// tjadam, jawaterm
// 2014.3.26
// Group Assignment 3 - Play By Your Own Rules
int topcard[5]; // 0 through 3 for each player
proctype player(int i) {
do
:: atomic{
// tjadam, jawaterm
// 2014.3.18
// Group Assignment 1, parallel swapping
#define N 4; // number of cells and swappers
byte A[4];
bool lock[4];
chan finished = [4] of {byte};
bool safe = true;