Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
brassybadger
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Running Kubernetes without nodes
(jpetazzo.github.io)
4 points
by
brassybadger
8y ago
|
1 comments
2.
▲
The Sorry State of SSL (2014)
(hynek.me)
2 points
by
brassybadger
11y ago
|
0 comments
3.
▲
Two Performance Walls Approaching (2009)
(sebastiansylvan.com)
31 points
by
brassybadger
11y ago
|
8 comments
4.
▲
NixOps, the NixOS-based cloud deployment tool
(github.com)
1 points
by
brassybadger
11y ago
|
0 comments
5.
▲
John Carmack discusses the art and science of software engineering (2012)
(blogs.uw.edu)
17 points
by
brassybadger
11y ago
|
0 comments
6.
▲
Effectful Haskell: IO, Monads, Functors
(slpopejoy.github.io)
84 points
by
brassybadger
11y ago
|
62 comments
7.
▲
PLEAC-Haskell
(pleac.sourceforge.net)
47 points
by
brassybadger
11y ago
|
8 comments
8.
▲
Fixing HealthCare.gov, One Test at a Time
(youtube.com)
2 points
by
brassybadger
11y ago
|
0 comments
9.
▲
Africa Calling
(medium.com)
2 points
by
brassybadger
12y ago
|
0 comments
10.
▲
Netperf-wrapper
(github.com)
1 points
by
brassybadger
12y ago
|
0 comments
11.
▲
A tool for “re-ptying” programs
(github.com)
1 points
by
brassybadger
12y ago
|
0 comments
12.
▲
by
brassybadger
12y ago
Indeed, I'd say it's more popular in Berlin than Coke.
13.
▲
by
brassybadger
12y ago
A very good recap on how networking in Quake3 works without reliable packet delivery: http://trac.bookofhook.com/bookofhook/trac.cgi/wiki/Quake3Ne... Simple, yet robust.
14.
▲
by
brassybadger
12y ago
This is the old debate whether applications should be tightly or loosely coupled. As the article concludes, there are tradeoffs to consider - the broker is a SPOF indeed, but on the other hand it'll take care of all the queueing logic
15.
▲
by
brassybadger
12y ago
Integration is very easy (check out the examples in their git repo), but this is still alpha quality software - there are known limitations, e.g. the one I ran into is that a large JS expression involving function calls might make Duktape r
16.
▲
by
brassybadger
12y ago
After a quick glance it also seems that newer versions of SpiderMonkey only offer a C++ API, so you can't embed it anymore into C apps without some glue code. I checked out jsapi.h in SpiderMonkey24 - maybe some trick is needed to use
17.
▲
by
brassybadger
12y ago
I'd say the combination of being small, easily embeddable and having a liberal license make it attractive.
18.
▲
Duktape: an embeddable JavaScript engine
(duktape.org)
109 points
by
brassybadger
12y ago
|
43 comments
19.
▲
C Programming Language
(di-mgt.com.au)
1 points
by
brassybadger
13y ago
|
0 comments
20.
▲
TCP/IP State Transition Diagram [pdf]
(cs.northwestern.edu)
4 points
by
brassybadger
13y ago
|
0 comments
21.
▲
Let the Agile Fad Flow By (2009)
(pindancing.blogspot.de)
1 points
by
brassybadger
13y ago
|
0 comments
22.
▲
Linking to Older Versioned Symbols (glibc)
(trevorpounds.com)
1 points
by
brassybadger
13y ago
|
0 comments
23.
▲
by
brassybadger
13y ago
The funny thing is that most people choose Elixir over Erlang because of the syntax - personally I can't stand Ruby but love the Erlang syntax. When I see Erlang code, everything just clicks - almost like I'm reading prose. So, if
24.
▲
by
brassybadger
13y ago
If you're only looking into weight loss/gain, then yes. Both are terrible choices as a diet, though. The latter will provide more nutrients, so we can call it 'healthier', but you will lack important ones still, and sign
25.
▲
by
brassybadger
13y ago
The whole "clean eating" thing is mostly a fad. Nobody has managed to define what food is "clean" and what is not (see e.g. what the typical bodybuilder thinks is clean, and what someone doing paleo, what the average die
26.
▲
by
brassybadger
13y ago
Interesting to see how mainstream intermittent fasting has become. It's worth noting where it started. A few years ago a few hardcore fitness fanatics started playing with the idea of using controlled fasting for weight loss and/o
27.
▲
by
brassybadger
13y ago
The really nice thing about this is that the dispatching to the optimized version is done at runtime, via GCC adding the necessary stubs at compile time. No extra dispatching/CPU detection logic in the application is needed to take adv
28.
▲
Applied Crypto Hardening [pdf]
(bettercrypto.org)
1 points
by
brassybadger
13y ago
|
0 comments
29.
▲
by
brassybadger
13y ago
I have no experience with Akka, but what you write makes sense. Even Clojure concurrency primitives feel weird sometimes when one wants to mix them with low-level Java libraries. Another option is to do it at the language level - see my com
30.
▲
by
brassybadger
13y ago
Interesting analogy: Erlang implements an M:N scheduling model, where it starts an OS thread for each CPU core (by default), and (preemptively) schedules its own lightweight processes on top of these threads. However, unlike OS threads, the
More ›