Level | New | Old |
---|---|---|
1 | 3000 | 3000 |
2 | 4000 | 4000 |
3 | 5000 | 5000 |
4 | 6000 | 6000 |
5 | 7000 | 7000 |
6 | 8000 | 8000 |
This file contains hidden or 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
/* | |
* gcc -Os -odexstrings dexstrings.c | |
* ./dexstrings /path/to/dex.dex | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <ctype.h> |
This file contains hidden or 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
// ==UserScript== | |
// @name XKCDUniqueRandom | |
// @namespace http://numin.it/ | |
// @version 0.1 | |
// @license MIT | |
// @description uniquely samples XKCDs when you press Random | |
// @author numinit | |
// @match http://xkcd.com/* | |
// @match https://xkcd.com/* | |
// @grant none |
I hereby claim:
- I am numinit on github.
- I am numinit (https://keybase.io/numinit) on keybase.
- I have a public key whose fingerprint is 190B DA97 F616 DE35 6899 ED17 F819 F1AF 2FC1 C1FF
To claim this, I am signing this object:
This file contains hidden or 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
/* gcc -Os -o jpeg jpeg.c | |
* ./jpeg in_file.jpg | |
*/ | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> | |
typedef struct chunk { | |
uint16_t marker; |
WARNING: Contains spoilers for the final solution. Click here to jump to it.
In AD 2014, ARG was beginning.
Ingress has 36 levels, called "client levels." Gameplay levels (1 to 8) can be given by the expression floor(clientLevel/5) + 1
.
Some new changes are coming up that will probably help newer players. Here they are.
Level | AP Threshold (new) | AP Threshold (old) | Delta |
---|---|---|---|
1 | 0 | 0 | 0 |
1 | 500 | 2000 | -1500 |
This file contains hidden or 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 "lc3.h" | |
static lc3 *global_ctx = NULL; | |
static struct termios oldt, newt; | |
void lc3_printf(const char *format, ...) { | |
va_list args; | |
const char *ptr; | |
FILE *stream; |
This file contains hidden or 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
puts "*** Loading Objective-C dependencies, this will take a moment" | |
require 'rubygems' | |
require 'htmlentities' | |
require 'json' | |
framework 'Foundation' | |
framework 'AppKit' | |
class Person |
This file contains hidden or 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
#if defined(MACOS) | |
#define HAVE_STRUCT_TIMESPEC 1 | |
#include <mach-o/dyld.h> | |
#include <libgen.h> | |
#elif defined(LINUX) | |
#elif defined(WINDOWS) | |
#endif | |
#include <stdio.h> | |
#include <locale.h> |