I hereby claim:
- I am tscho on github.
- I am ad_tscho (https://keybase.io/ad_tscho) on keybase.
- I have a public key ASB-2Txs1bAOnyNmhVXUnPzM6IYi0tzF-jP7Jyriv6LKjAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| var MaxNum = 0; | |
| var MinNum = 10000000000; | |
| var count = 0 | |
| while (count < 6) { | |
| print ("please enter a number"); | |
| var num1 = getInput | |
| num1 = parseFloat (num1) | |
| if (num1 > MaxNum{ | |
| Maxnum = num1 |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define null 0 | |
| typedef struct _node { | |
| int value; | |
| struct _node *next; | |
| } node; |
| enum FileState { | |
| NEW { | |
| FileState pass() { return DOWNLOADING; } | |
| FileState fail() { return NEW; } | |
| }, | |
| DOWNLOADING { | |
| FileState pass() { return PROCESSING; } | |
| FileState fail() { return DLFAILED; } | |
| }, | |
| DLFAILED { |
| // ==UserScript== | |
| // @name weatherclutter | |
| // @namespace asd | |
| // @include http://www.theweathernetwork.com/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js | |
| // ==/UserScript== | |
| $("embed:not(#twn14day)").remove(); | |
| $("#ugc").remove(); | |
| $("#wrap_ccb").remove(); |
| #include <sys/socket.h> | |
| #include <sys/un.h> | |
| #include <sys/types.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| int main(int argc, char *argv[]) | |
| { | |
| int sockfd, t, len; |
| #include <signal.h> | |
| #include <stdio.h> | |
| #include <sys/socket.h> | |
| #include <sys/types.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <sys/un.h> | |
| #include <errno.h> | |
| #include <sys/signal.h> | |
| #include <wait.h> |
| #!/usr/local/bin/ruby | |
| require 'rubygems' | |
| require 'uri' | |
| require 'net/http' | |
| require 'json' #3rd party | |
| require 'time' | |
| def weird_parse(weird) | |
| slices = weird.split /[\s]/ |