This file contains 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
#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 \ |
This file contains 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
#include <timing.h> | |
#define DEBUG 1 | |
// ... | |
{ | |
TIMEIT_INIT(timer_name); | |
int i; | |
TIMEIT_START(timer_name); | |
for ( i = 0 ; i < 10000 ; i++ ){ |
This file contains 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
#include <glib.h> | |
// ... | |
{ | |
GTimer* timeit = g_timer_new(); | |
int i; | |
g_timer_start(timeit); | |
for ( i = 0 ; i < 10000 ; i++ ){ | |
my_time_critical_function(); |
This file contains 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
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) { |
This file contains 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 | |
class PythonClass: | |
def __init__(self): | |
"""A dummy constructor""" | |
def mySimpleMethod(self): | |
return "Hello World!" | |
anInstance = PythonClass() |
This file contains 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
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: |
This file contains 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 | |
# | |
# to create a visualisation, run like this: | |
# | |
# ./timeline.py --dot | dot -Tpng > filename.png | |
# | |
import sys |
This file contains 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
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) |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
/* | |
* MCrypt API available online: | |
* http://linux.die.net/man/3/mcrypt | |
*/ | |
#include <mcrypt.h> |
This file contains 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
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")); | |
} |