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 B98F 9EB5 502E 3595 E4CE 441E 7BE4 075E 24AB 8942
To claim this, I am signing this object:
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| Capslock::Esc |
| #include <stdio.h> | |
| /* atoi() */ | |
| #include <stdlib.h> | |
| /* close() */ | |
| #include <unistd.h> | |
| /* sockaddr_in */ | |
| #include <arpa/inet.h> |
I hereby claim:
To claim this, I am signing this object:
| #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) { |
| #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; |
| #!/bin/bash | |
| set -e | |
| chain_name="filter_countries" | |
| blacklist="af bd cn hk" | |
| #------------------------------------------------------------------------------- | |
| #Clear out the rules | |
| iptables -F $chain_name |
| #!/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", |
| # 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 |
| 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 |
| #!/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 |