This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asmBatt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOCAL_BINDIR="$HOME/local/bin" | |
# if local bin directory exists and is not in the path already, add it | |
if [[ -d "$LOCAL_BINDIR" ]] && [[ ! ($PATH =~ "$LOCAL_BINDIR") ]]; then | |
export PATH=$LOCAL_BINDIR:$PATH | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ac_add_options --disable-debug | |
ac_add_options --disable-tests | |
ac_add_options --disable-updater | |
ac_add_options --enable-jemalloc | |
ac_add_options --enable-official-branding | |
ac_add_options --enable-64bit | |
# ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FunThread extends Thread { | |
Object first[]; | |
Object second[]; | |
int size; | |
public FunThread(Object _first[], Object _second[], int _size) { | |
first = _first; | |
second = _second; | |
size = _size; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
touristGuide | |
*.swp | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
__author__ = 'Max DeLiso' | |
import tkinter | |
import tkinter.constants | |
from binutils import binEncodeString, attemptDecode, binDecodeString | |
class TkTest(tkinter.Frame): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### b2t.py - little program to convert strings to/from binary ### | |
### note: functional style emphasized. | |
### http://docs.python.org/dev/howto/functional | |
### | |
### by Max DeLiso ### | |
## IMPORTS ## | |
import re # regular expression module to recognize binary strings | |
import os # operating system interface for retrieving current directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3.3 | |
# PyPu: Simple UDP chat. | |
import logging | |
import curses | |
import curses.ascii | |
from socketserver import UDPServer | |
from socketserver import BaseRequestHandler |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = [email protected] | |
name = Max DeLiso | |
[push] | |
default = matching | |
[core] | |
editor = gvim | |
[color] | |
ui = true | |
[alias] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Max DeLiso | |
-- xmonad config | |
import XMonad | |
import XMonad.Hooks.DynamicLog | |
import qualified Data.Map as M | |
main = xmonad =<< xmobar defaultConfig { | |
modMask = mod4Mask | |
, terminal = "urxvt" |