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
#include <stdio.h> | |
#include <stdint.h> | |
#include <inttypes.h> | |
// Uses the fibonacci sequence defined | |
// in http://oeis.org/A000045 | |
__uint128_t fib(__uint128_t n) { | |
if (n == 0) { | |
return 0; |
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
[diff "bz2"] | |
binary = true | |
textconv = /bin/bzcat | |
[diff "gzip"] | |
binary = true | |
textconv = /bin/zcat | |
[diff "tar"] | |
binary = true | |
textconv = tar --to-stdout -xf | |
[diff "tar-bz2"] |
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
$ git branch -r --merged | | |
sed '/>|master/d;/origin/!d;s:origin/::' | | |
xargs git push origin --delete | |
# I think this will work, but I don't know how to get git branch to show me that -> line |