I hereby claim:
- I am exec64 on github.
- I am exec64 (https://keybase.io/exec64) on keybase.
- I have a public key whose fingerprint is DFB1 64DB A319 0D4C E70B 94E2 7446 4BAD 72D8 0C23
To claim this, I am signing this object:
| pandoc -S -o book.epub title.txt chapter01.md chapter02.md chapter03.md | |
| pandoc --template=template.tex -o book.pdf title.text chapter01.md chapter02.md chapter03.md |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| #Don't do anything on merge commits | |
| [ "$2" = "merge" ] && exit 0 | |
| #If there's already a message, do nothing | |
| [ "$2" = "message" ] && exit 0 | |
| [ "$2" = "template" ] && exit 0 | |
| #For squash messages do nothing |
| import qualified Data.Map.Strict as Map | |
| import Data.Maybe (mapMaybe) | |
| import Text.CSV (parseCSV) | |
| import Text.Printf (printf) | |
| parseFilm (t:y:[]) = Just (t,y) | |
| parseFilm _ = Nothing | |
| countYears :: [(String,String)] -> [(String,Int)] | |
| countYears films = Map.toList $ foldl (\m (_,y) -> Map.insertWith (+) y 1 m) Map.empty films |
| # vim:set ts=8 sts=2 sw=2 et: | |
| pkgname=linux-zenbook | |
| pkgrel=1 | |
| pkgdesc="Custom linux kernel" | |
| arch=('x86_64') | |
| url="http://www.kernel.org/" | |
| license=('GPL2') | |
| pkgver=3.19.r9526.ga135c71 |
| #!/usr/bin/env python | |
| import argparse, csv | |
| if __name__ == "__main__": | |
| parser = argparse.ArgumentParser(description="pretty print a coverity issues csv file") | |
| parser.add_argument("file", | |
| type=str, | |
| help="The csv file to parse") | |
| parser.add_argument("-c", | |
| dest="colors", |
| #!/bin/bash | |
| set -e | |
| chain_name="filter_countries" | |
| blacklist="af bd cn hk" | |
| #------------------------------------------------------------------------------- | |
| #Clear out the rules | |
| iptables -F $chain_name |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #include <endian.h> | |
| int main(int argc, char** argv) | |
| { | |
| if(argc < 2) | |
| return 1; |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main(int argc, char** argv) | |
| { | |
| char* buf = malloc(0x10000000); | |
| int size = 0; | |
| int v; | |
| while((v = getchar()) != EOF) { |
I hereby claim:
To claim this, I am signing this object: