Viewing profile — beetwenty
beetwenty
HN member- Joined
- Thu, Oct 25, 2018, 10:58 PM UTC
- HN karma
- 133
- Public activity
- 46 items
- HN profile
- View on Hacker News ↗
About beetwenty
No profile information was provided.
Recent public activity
-
comment
Comment #23377088
Std::string half of all allocations in the Chrome browser process (2014) [0] The key difference is that web browsers support a highly arbitrary and mutable dataset. A game engine's…
-
comment
Comment #23376955
That's a data synchronization error across multiple related pieces of data, which isn't the same as a POD container like a hashtable corrupting itself. The standard hammer you woul…
-
comment
Comment #22819492
On the one hand, this is a predictable outcome if you are trying to shepherd a large codebase through a fast-moving language. Idiomatic Python 1.6 looks dramatically different to i…
-
comment
Comment #22797829
I found my way out. The thing I had to do is to find some themes that I am idealistic about and stick to those. The project is just a mode of exploring the theme, which means that …
-
comment
Comment #22718125
I'm working with Lua right now(gopherlua) as a scripting option for real-time gaming. I've done similar things to your story in the past with trying to make Lua the host for everyt…
-
comment
Comment #22659914
It's basically true of anything using physics. There are very good pinball simulations, and being reliable digital games they are actually a better, more fair competitive venue, bu…
-
comment
Comment #22479668
Or, in another word, "disposability". We have a lot of systems that aren't repairable, don't get debugged, don't have things fixed mid-flight. And...it works, with respect to most …
-
comment
Comment #22479378
D3 does the Right Thing with respect to dataviz. That means: it's conceptually overloaded for doing quick-and-dirty conventional charts, where you just want to plug in a few parame…
-
comment
Comment #22460215
A representative for the union that represents more than 19,000 academic workers across the University of California system said she was surprised by the university's decision. "We…
-
comment
Comment #22331747
The tradeoff in goto-vs-exception is that a goto needs an explicit label, while an exception allows the destination to be unnamed, constrained only by the callstack at the site whe…
-
comment
Comment #22243108
That isn't a "normative" statement about better, but a "positive" statement about a trade-off of expressive power versus rigor. A bit of mathematical intuition suggests that formal…
-
comment
Comment #21958361
When I see articles with so many various facts assembled together, I have to remind myself that the author cannot possibly be an expert in all of them, and so the story is just tha…
-
comment
Comment #21895535
This is probably only true if you're thinking of the complexity in terms of board-game style complexity, with characters and items and abilities that you can enumerate in a list. T…
-
comment
Comment #21758485
A lot of the facets of leadership are created from the small details of how the organization "automates" itself. Consider meeting planning, for example. How frequent meetings are, …
-
comment
Comment #21592093
The sense I get from all of it is that there's a phase shift in technological progress occurring, not dissimilar to the 1970's one where we ceased seeing the bulk of disruptive dev…
-
comment
Comment #21503646
With respect to their core CPU business, they were executing on a monopoly playbook since the start of the decade - 4 core desktops and 5% generational improvements on the same arc…
-
comment
Comment #21455898
The thing that has really kept me from getting behind updates to the C++ universe is the lack of progress on improving the state of build tooling. It is miserably underengineered f…
-
comment
Comment #20432669
There are a few rough edges in old BASICs(and they have been smoothed out in pretty much every one that's shipped since 1990 or so) but the practical truth is, to implement most co…
-
comment
Comment #20333662
"Streetcar suburb" is correct. The Outer Sunset formed around the old "Carville" site, and the district's development was mostly complete by the '50s. But the blocks of row houses …
-
comment
Comment #20222034
That's the joke - Atherton is the town of the tech billionaires.
-
comment
Comment #19957283
That's correct. State is handled by the user, which is great for some things(dynamic quantities of elements - no caching layers, just feed it a for loop) and awful for others(maint…
-
comment
Comment #19689170
I've heard it compared to Walmart in the USA, and having visited both chains, I can see the resemblance, even if it's not obvious at the surface. Walmart's layouts are "big box", d…
-
comment
Comment #19689111
It isn't literally a continuous loop, not in all locations at least. The ones I visited when I was touring last year were playing a more typical department store tracklist, but I d…
-
comment
Comment #19669220
My observation from having tested the three most common isomorphic systems with PC keybindings is that the Janko-style mapping(which I believe is the default mapping of Chromatone)…
-
comment
Comment #19298422
That's relying on distribution package management to save you. Here is what happens when you add libraries in any other context: The library has a dependency on another library, an…