Skip to content

Instantly share code, notes, and snippets.

View keller0's full-sized avatar
❄️

keller0

❄️
View GitHub Profile

Keybase proof

I hereby claim:

  • I am keller0 on github.
  • I am caijiaqi (https://keybase.io/caijiaqi) on keybase.
  • I have a public key ASAAjVKGcaOYs7Z8M52PSjxoNDiyelxuGrOPcMhAKuftCAo

To claim this, I am signing this object:

@keller0
keller0 / index.html
Last active March 17, 2018 17:56 — forked from mbostock/.block
Lorenz Toy
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
background: #000;
}
</style>
<body>
@keller0
keller0 / rc
Created December 22, 2017 11:19
Run a sigle source file C program.
#!/bin/sh
gcc -o tests $1 && ./tests && rm tests
@keller0
keller0 / bi.c
Last active November 16, 2017 15:16
sort 1 billion integers in c
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define NOFA 1000000000
int cmpfunc (const void * a, const void * b) {
return ( *(int*)a - *(int*)b );
}