Skip to content

Instantly share code, notes, and snippets.

@nbareil
nbareil / tgz-to-gztree.py
Created September 26, 2011 14:04
Takes a huge tarball in input and writes gzipped files in current directory
#! /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])
@nbareil
nbareil / googleplus_widget.html
Created October 5, 2011 09:15
my Google+ widget used for blogspot
<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>";
}
}
@nbareil
nbareil / bench-scheduler.c
Created October 17, 2011 13:07
Checking scheduler behavior
/*
gcc -O0 scheduler.c -o scheduler-read -DREAD
or
gcc -O0 scheduler.c -o scheduler-read -DYIELD
*/
@nbareil
nbareil / cloner.c
Created October 18, 2011 09:28
clone() without using GNU libc
#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>
@nbareil
nbareil / slugify.py
Created September 9, 2012 09:58
self-contained slug generator
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)
@nbareil
nbareil / forward-gpgified-mail
Created March 15, 2013 19:20
This script was called by a Procmail rule in order to forward specific messages to another mail address, using GnuPG encryption.
#! /bin/bash
cleartext="$(mktemp)"
FINALADDR="[email protected]"
TXTINTRO="$HOME/.etc/introduction_forward-me-gpgified"
if [[ "x$cleartext" = "x" ]]; then
exit 1
fi

Keybase proof

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:

#! /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
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',