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 | |
import sys, os | |
import tarfile, gzip | |
if not len(sys.argv) > 0: | |
print 'usage: %s huge.tgz' % (sys.argv[0]) | |
sys.exit(1) | |
tar = tarfile.open(sys.argv[1]) |
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
<ul id="buzzcontent"> | |
</ul> | |
<script> | |
function handler(response) { | |
for (var i = 0; i < 5 && i < response.items.length; i++) { | |
var item = response.items[i]; | |
document.getElementById("buzzcontent").innerHTML += "<li><a href=\"" + item.url + "\">" + item.title + "</a></li>"; | |
} | |
} |
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
/* | |
gcc -O0 scheduler.c -o scheduler-read -DREAD | |
or | |
gcc -O0 scheduler.c -o scheduler-read -DYIELD | |
*/ |
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
#define _GNU_SOURCE /* See feature_test_macros(7) */ | |
#include <sched.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <sys/mman.h> | |
#include <fcntl.h> | |
#include <sys/syscall.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
def slugify(s): | |
import unicodedata, re | |
s = unicodedata.normalize('NFKD', unicode(s)).encode('ASCII', 'ignore') | |
s = re.sub('[^\w\s-]', '', s).strip().lower() | |
return re.sub('[-\s]+', '-', s) |
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
#! /bin/bash | |
cleartext="$(mktemp)" | |
FINALADDR="[email protected]" | |
TXTINTRO="$HOME/.etc/introduction_forward-me-gpgified" | |
if [[ "x$cleartext" = "x" ]]; then | |
exit 1 | |
fi |
I hereby claim:
- I am nbareil on github.
- I am nbareil (https://keybase.io/nbareil) on keybase.
- I have a public key whose fingerprint is 64AC 6FB1 6BDB 6B44 A11B 5668 F768 F933 AB3A B498
To claim this, I am signing this object:
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 | |
# -*- coding: utf-8 *-* | |
# | |
# Copyright (C) Nicolas Bareil <[email protected]> | |
# | |
# This program is published under Apache 2.0 license | |
from optparse import OptionParser | |
import fileinput | |
import logging |
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 tempfile | |
import os | |
import csv | |
import requests | |
import tarfile | |
tar = tarfile.TarFile(name='all-yara.tar', mode='w') | |
headers = { | |
'Accept': 'application/vnd.github.v3+json', |
OlderNewer