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
#include <Python.h> // Must be first | |
#include <vector> | |
#include <stdexcept> | |
#include "PyUtils.h" | |
using namespace std; | |
// ===== | |
// LISTS | |
// ===== |
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
#include <string> | |
#include <iostream> | |
#include <cstdlib> | |
using namespace std; | |
void printProgBar( int percent ); | |
int main(int argc, char* argv[]) { | |
int N = 100; | |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
int main(int argc, char* argv[] ) { | |
if (argc != 3) { | |
printf("Error, you must provide a destination file and number of iterations\n"); | |
return -1; | |
} | |
FILE *fp; |
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
from django.utils.decorators import decorator_from_middleware, available_attrs | |
from functools import wraps | |
import time | |
class PageLoadTimerMiddleware: | |
def __init__(self): | |
self.initTime = time.clock() | |
self.disabled = False | |
def process_request(self, request): |
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
#include <security/pam_appl.h> | |
#include <security/pam_misc.h> | |
#include <signal.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <time.h> | |
/** | |
* Code adapted from: | |
* PAM: http://www.makelinux.net/alp/084 |
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/python | |
import os, sys, hashlib, shutil | |
sha256 = lambda data: hashlib.sha256(data).hexdigest() | |
def searchAndCollect(src, dest): | |
print "Searching %s for .exe's, saving to %s" % (src, dest) | |
for dirpath, dirnames, filenames in os.walk(src): | |
if src in dirnames: |
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/python | |
import sys, os, subprocess | |
def fileType(filePath): | |
return subprocess.Popen("""/usr/bin/file "%s" """ % filePath, shell=True, stdout=subprocess.PIPE).communicate()[0].split(":")[1].strip() | |
def idMSFile(filePath): | |
if os.path.isdir(filePath): | |
for fileInDir in os.listdir(filePath): |
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
import os | |
import random | |
import string | |
def recursiveDirectoryContents(dir): | |
for root, dirs, files in os.walk(dir): | |
for file in files: | |
yield os.path.join(root, file) | |
def randomString(length=10): |
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
#!/bin/bash | |
if [ $# -eq 2 ] | |
then | |
mkdir $1 | |
mount -t tmpfs -o size=$2 tmpfs $1 | |
else | |
echo "Proper use: $0 <RAMDISK_DIR> <RAMDISK_SIZE>" | |
echo "Example: $0 /mnt/ramdisk 4096m" | |
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
#!/usr/bin/python | |
import os | |
import json | |
import time | |
import hashlib | |
import httplib | |
class Result: |
OlderNewer