Skip to content

Instantly share code, notes, and snippets.

@cdleary
cdleary / rc4.py
Created September 17, 2009 07:22
"""Instructional implementation of Ron's Cipher #4 (AKA RC4).
Follows form of a `Programming Praxis exercise`_.
.. _Programming Praxis exercise:
http://programmingpraxis.com/2009/09/04/rons-cipher-4/
:author: Christopher D. Leary <cdleary@gmail.com>
"""
import textwrap
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#define STACK_SIZE 1024
#ifdef DEBUG
# define ASSERT(__condition) do { \
if (!(__condition)) { \
printf("Assertion failure: " #__condition); \
abort(); \
#!/usr/bin/env python3
"""%prog [options] program_text
Executes a program in available shells for a number of runs, then calculates
basic statistics.
"""
import collections
import logging
class TreeContextFlags(object):
flag_names = ['TCF_%s' % flag for flag in """COMPILING IN_FUNCTION
RETURN_EXPR RETURN_VOID IN_FOR_INIT FUN_SETS_OUTER_NAME
FUN_PARAM_ARGUMENTS FUN_USES_ARGUMENTS FUN_HEAVYWEIGHT FUN_IS_GENERATOR
FUN_USES_OWN_NAME HAS_FUNCTION_STMT GENEXP_LAMBDA COMPILE_N_GO
NO_SCRIPT_RVAL HAS_SHARPS DECL_DESTRUCTURING NEED_MUTABLE_SCRIPT
STRICT_MODE_CODE FUN_PARAM_EVAL FUN_UNBRAND_THIS
FUN_MODULE_PATTERN""".split()]
#!/usr/bin/env python
import collections
import os
import re
from subprocess import Popen, PIPE
LSOFItem = collections.namedtuple('LSOFItem', 'command pid user fd type device size node name'.split())
extent_regex = re.compile(r'(\d+) extents? found')
@cdleary
cdleary / gist:971442
Created May 13, 2011 22:38
emacs-gdb command line function
gdbtool () {
local prog=$1
shift
local rest=$*
local evalCode="(gdb \"gdb --annotate=3 $prog\")"
echo $evalCode
emacs --eval $evalCode;
}
@cdleary
cdleary / gdb_watch_segment.c
Created July 29, 2011 21:55
Watch a whole memory segment in GDB.
static int values[1024] = {
0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,
@cdleary
cdleary / gist:1137545
Created August 10, 2011 17:31
Bitwise signedness
class Foo {
public static void main(String[] args) {
System.out.println("Number is less than zero: " + (0x80000000 < 0));
System.out.println("Self-bitwise-&: " + (0x80000000 & 0x80000000));
System.out.println("Self-bitwise-& is self: " + ((0x80000000 & 0x80000000) == 0x80000000));
}
}
/*
Number is less than zero: true
@cdleary
cdleary / rebinding.py
Created August 11, 2011 05:01
Rebinding in Python3
import types
from collections import namedtuple
class Oven:
def __init__(self):
self.pie = 'apple'
def easy_bake(self):
@cdleary
cdleary / rebind.js
Created August 11, 2011 06:18
Rebinding proposal for JS
Function.prototype.bind = function(thisVal) {
var func = this.__orig__ || this;
var bound = function() {
return func.apply(thisVal, arguments);
};
bound.__orig__ = func;
return bound;
};