Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
tne
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
tne
8y ago
#include <stdlib.h> #include <stdio.h> static const char str[] = "fizzbuzz"; static inline void out(int i, size_t offset, size_t sz) { if (sz) { fwrite(str + offset, sz, 1, stdout); } else
2.
▲
by
tne
10y ago
There is no concept of an integer on an argument vector. Quoting in bash just escapes IFS characters (usually whitespace) to control whether to include them in a given argument on the vector, but these arguments (as passed to exec) are alw
3.
▲
by
tne
10y ago
I would look at asm.js, do some tests with major browsers and beef it up. It would make it painful under user agents that don't JIT (or compile AOT) by leveraging asm.js conventions (many do though). If the wasm effort works out (it&#x
4.
▲
by
tne
11y ago
This is the approach taken by LY-Linux ("patch leap year"), although better implemented IMO. In fact, I typically only have to restart my servers once every 4 years (at most). Look it up, it's awesome. (Please don't.)
5.
▲
by
tne
11y ago
Related: Screeps https://screeps.com/
6.
▲
by
tne
11y ago
AFAICT both Haxe and AS3 consistently put types on the right, including argument declarations. Other languages consistently put it on the left. Most languages make a choice like that; PHP mixes things up a bit. But then, it wouldn't
7.
▲
by
tne
12y ago
Same here, except I typically use $(!!) to re-run the previous command. I find it faster than command-line editing. $ find . -name "*blarg*.cpp" $ grep -i "blooey" $(!!) $ vim $(!! -l) Granted, you can
8.
▲
Living Standards: “Who Needs IANA?”
(masinter.blogspot.com)
1 points
by
tne
12y ago
|
0 comments