Viewing profile — wallstprog
wallstprog
HN member- Joined
- Tue, Jul 26, 2016, 6:02 PM UTC
- HN karma
- 163
- Public activity
- 87 items
- HN profile
- View on Hacker News ↗
About wallstprog
No profile information was provided.
Recent public activity
-
comment
Comment #47298149
Or in the middle of a song -- lots of songs modulate between different keys.
-
comment
Comment #44609746
A great book that has perfume as a major plot point is "Jitterbug Perfume" by Tom Robbins.
-
comment
Comment #43938976
Having good results w/Azul so far
-
comment
Comment #43722511
On another note, Jellyfin can look inside .iso files, which afaict Plex is not able to. Very handy with my collection of ripped dvd's.
-
comment
Comment #43693054
wonder what diagnosis Tom Sawyer or Huck Finn would have got
-
comment
Comment #42560352
Michael Porter's books on marketing (esp. "Competitive Strategy") are well-regarded.
-
comment
Comment #41722754
" I also managed to make contended nsync mutexes go 30% faster than nsync upstream on AARCH64, by porting it to use C11 atomics." Curious about this -- so what does C11 atomics use…
-
comment
Comment #41698263
Briefly mentioned elsewhere in the comments, but C++11 had a similar issue around the transition from a copy-on-write (COW) to a small-string-optimization (SSO) implementation for …
-
comment
Comment #41637227
If you're using dynamic linking, the following two tools will come in very handy: - pldd ( https://man7.org/linux/man-pages/man1/pldd.1.html ) shows the actual dynamic libs linked …
-
comment
Comment #41371046
You might want to take a look at https://github.com/nyfix/memleaktest We've open-sourced the tools we use to run valgrind (and ASAN) on large mixed C++/Java code bases. The JVM in …
-
comment
Comment #41114509
I thought it was a brilliant design, but it was dog-slow on hardware at the time. I keep hoping someone would revive the design for current silicon, would be a good impedance match…
-
comment
Comment #41079177
So it seems that TB prioritizes throughput over latency, similar to VoltDB for instance -- is that correct?
-
comment
Comment #37824142
At my day job we run > 50 million messages per day through ZeroMQ, and have been quite pleased with its performance and stability ( https://github.com/nyfix/OZ/tree/master#who-uses…
-
comment
Comment #37823982
Well, the original non-thread-safe sockets (e.g., ZMQ_SUB, etc.) were that way because they support multi-part messages. And yes, the fact that they are not thread-safe is a bit of…
-
comment
Comment #36910593
Unlikely, but they seem to be different things altogether. BlazingMQ appears to be a traditional message queue (think ActiveMQ), with message peristence. ZeroMQ is more of a networ…
-
comment
Comment #36214851
Sounds like a scam to me
- story
-
comment
Comment #36050205
King Crimson has several songs where different players are playing different time signatures -- check out https://youtu.be/GDFHtlbhqzA
-
comment
Comment #35778476
Maybe, but the actual "bank" in this arrangement is Goldman Sachs, and they are one of the more established players in finance.
-
comment
Comment #35276999
You might want to give Rick Beato a try: https://rickbeato.com/ He does interesting YouTube videos on music topics, but also sells theory and ear-training courses online.
-
comment
Comment #35021349
Close Encounters of the Third Kind
-
comment
Comment #34552090
Well, you do that to make sure it works. At one of my previous jobs, we'd switch the primary and secondary datacenters every six months just to make sure we could.
-
comment
Comment #34344681
There's not much that Staten Island has to brag about, but pizza is one of those things, and SI is very much under-represented here.
-
comment
Comment #33959066
See also "Zero History" by William Gibson (2010) (although the "invisible t-shirt" idea apparently came from Bruce Sterling).
-
comment
Comment #33884753
It's been a while, but IIRC ASAN catches most/all of the memory-related errors that Purify did. Purify did have a debugger-like GUI that would break on errors, which could be handy…