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 = maxdeliso@gmail.com | |
| 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
| #! /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
| ### 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
| __pycache__ |
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
| 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
| 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
| 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
| 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
| CC=clang | |
| CFLAGS=-Weverything -D_XOPEN_SOURCE -std=c99 -g -O2 | |
| OUT=sread | |
| .PHONY: clean | |
| $(OUT): $(OUT).c | |
| $(CC) $(CFLAGS) $< -o $@ |