I hereby claim:
- I am nullren on github.
- I am renning (https://keybase.io/renning) on keybase.
- I have a public key whose fingerprint is A548 9568 DE98 0D13 A630 C3F9 54D0 8C5D 2C4C A4D2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| if [ ! -f $1 ]; then | |
| echo no file to close | |
| exit 1 | |
| fi | |
| LUFIL=$1 | |
| LODEV=$(losetup -j $LUFIL | cut -d: -f1) |
| #!/bin/bash | |
| TMPFILE=$(mktemp --suffix=.vimclip) | |
| vimedit.sh "$TMPFILE" "+:autocmd BufWritePost * ! xclip $TMPFILE" |
| # create random scattering of points, but cluster them together so | |
| # that it at least looks like there are something to seperate or | |
| # correlate. could have used rmvnorm probably, but did not know before | |
| # i already finished. | |
| nCenters <- 2 | |
| nPointsToGen <- 100 | |
| nNearNeighbor <- 5 | |
| # create 2 sets of 10 points (x,y). these will be the centers of the |
| <html> | |
| <head> | |
| <title>play something</title> | |
| <link href="phoneplay.css" rel="stylesheet" type="text/css" /> | |
| </head> | |
| <body> | |
| <div id="header"> | |
| <a href="?">home</a> | |
| <a href="?cmd=stop">stop</a> | |
| <hr /> |
| #include "helpers.h" | |
| #include <math.h> | |
| #include <stdlib.h> | |
| uint64_t* sievePrimes(uint64_t* n) | |
| { | |
| if (*n < 2) return NULL; | |
| char *primes = malloc(sizeof(char)*(*n+1)/2); | |
| const uint64_t loop_limit = (sqrt(*n) + 1) /2; |
| /* Find the greatest product of five consecutive digits in the 1000-digit number. | |
| */ | |
| #include <stdio.h> | |
| #include <string.h> | |
| #define DIGITS 1000 | |
| #define SUBSEQUENCE_SIZE 5 | |
| int main() |
| /* Find the greatest product of five consecutive digits in the 1000-digit number. | |
| */ | |
| #include <stdio.h> | |
| #include <string.h> | |
| #define DIGITS 1000 | |
| #define SUBSEQUENCE_SIZE 5 | |
| int main() |
| #!/usr/bin/python | |
| import json | |
| import urllib.request as r | |
| import urllib.parse as p | |
| from datetime import datetime, timedelta | |
| import pytz | |
| now = pytz.UTC.localize(datetime.utcnow()) | |
| delta = timedelta(minutes=3) |
| #!/usr/bin/python3 | |
| import sys | |
| import re | |
| import json | |
| import html.parser | |
| import urllib.parse as p | |
| import urllib.request as r |