Skip to content

Instantly share code, notes, and snippets.

@bricef
bricef / timing.h
Created June 17, 2011 20:50
Timing Sections of C code using macros
#ifndef _TIMING_UTIL_H
#define _TIMING_UTIL_H
#ifdef DEBUG
#include <sys/time.h>
#define TIMEIT_INIT(name) \
struct timeval timeit_t1_##name, timeit_t2_##name, timeit_diff_##name; \
double timeit_interval_##name \
@bricef
bricef / timing_0.2.c
Created June 17, 2011 21:01
Using timing macros
#include <timing.h>
#define DEBUG 1
// ...
{
TIMEIT_INIT(timer_name);
int i;
TIMEIT_START(timer_name);
for ( i = 0 ; i < 10000 ; i++ ){
@bricef
bricef / timing_0.3.c
Created June 17, 2011 21:39
Timing C Code with Glib
#include <glib.h>
// ...
{
GTimer* timeit = g_timer_new();
int i;
g_timer_start(timeit);
for ( i = 0 ; i < 10000 ; i++ ){
my_time_critical_function();
@bricef
bricef / Simple.java
Created August 10, 2011 19:08
Using Python from Java
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.InputStreamReader;
import org.python.core.PyObject;
import org.python.util.PythonInterpreter;
public class Simple {
public static void main(String[] args) {
@bricef
bricef / test.py
Created August 10, 2011 19:10
Python script to be used from Java
#!/usr/bin/env python
class PythonClass:
def __init__(self):
"""A dummy constructor"""
def mySimpleMethod(self):
return "Hello World!"
anInstance = PythonClass()
@bricef
bricef / pinc.py
Created August 17, 2011 21:07
Arbitrary file parser allowing file include and include script output
import sys
import re
import shlex
import subprocess as sp
exe_pat = re.compile(r'(\s*)\(!>(.*)<\)\s*')
inc_pat = re.compile(r'(\s*)\(>(.*)<\)\s*')
if __name__ == "__main__":
for line in sys.stdin:
@bricef
bricef / timeline.py
Created December 9, 2011 09:16
Script to generate a random timeline from nation names stored in names.txt
#!/usr/bin/env python
#
# to create a visualisation, run like this:
#
# ./timeline.py --dot | dot -Tpng > filename.png
#
import sys
@bricef
bricef / app.py
Created March 3, 2012 22:42
Trivially simple Bottlepy application
from bottle import route, run
@route('/hello')
def hello():
return "Hello World!"
application = bottle.default_app()
if __name__ == "__main__:
run(host='localhost', port=8080, debug=True)
@bricef
bricef / AES.c
Last active May 11, 2024 21:15
A simple example of using AES encryption in Java and C.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
* MCrypt API available online:
* http://linux.die.net/man/3/mcrypt
*/
#include <mcrypt.h>
@bricef
bricef / gist:2437994
Created April 21, 2012 15:59
Encrypt with AES using Java.
public static byte[] encrypt(String plainText, String encryptionKey, String IV) throws Exception {
Cipher cipher = Cipher.getInstance("AES/CBC/NoPadding", "SunJCE");
SecretKeySpec key = new SecretKeySpec(encryptionKey.getBytes("UTF-8"), "AES");
cipher.init(Cipher.ENCRYPT_MODE, key,new IvParameterSpec(IV.getBytes("UTF-8")));
return cipher.doFinal(plainText.getBytes("UTF-8"));
}