Viewing profile — strictfp
strictfp
HN member- Joined
- Sat, Apr 30, 2011, 8:15 AM UTC
- HN karma
- 2,733
- Public activity
- 790 items
- HN profile
- View on Hacker News ↗
About strictfp
No profile information was provided.
Recent public activity
-
comment
Comment #46173091
I've seen work environments that are chaotic, and people are expected to deliver things that they can't deliver without navigating and taming the chaos to do their bidding. If cour…
-
comment
Comment #37197807
That's true. But that's only really a concert if you're building an SPA. If you're not, having multiple pages is generally faster than running some js framework to reload parts of …
-
comment
Comment #36940485
Node is essentially a single-threaded API to a very capable multithreaded engine. https://youtu.be/ztspvPYybIY
-
comment
Comment #36936866
My tip for this is Node.js and some stream processing lib like Highland. You can get ridiculous IO parallelism with a very little code and a nice API. Python just scales terribly, …
-
comment
Comment #36740426
Reminds me of the 90s EDM band Antiloop.
-
comment
Comment #36642588
Maybe. But that specific overabstraction is in the implementation of the framework. It's trying to proxy all the method calls to objects to perform logic around them. It is true th…
-
comment
Comment #36642423
I disagree with the problem statement; that the framework is trying to solve a meta-problem. The problem with frameworks is instead that they assume that they're in control. They'r…
-
comment
Comment #36343507
Class diagrams and object diagrams are also really useful, for instance when making presentations. The problem with UML is that the industry went overboard with it's usage, like it…
-
comment
Comment #36265285
I'm interested to hear their business plan, given that there's already established ones like https://elastx.se/en/ , and they're not running terribly well, although they have quite…
-
comment
Comment #36115392
Hot take: the mobile site also isn't good for cellphones
-
comment
Comment #36042204
They've been pulling shady stuff for ages. Ever heard of the false flag attacks in relation to Cuba? The bay of pigs false flag bombings, and the proposed https://en.m.wikipedia.or…
-
comment
Comment #35927963
They could solve that by keeping track of references and asking you though.
-
comment
Comment #35436597
I'm working with an ECS at $dayjob. But I'm starting to question one aspect of them. Composition of functionality makes sense. And systems acting independently and only on objects …
-
comment
Comment #34231658
Yes. If you design a distributed system you need to consider the network traffic very carefully, and choose your segmentation in such a way that you minimize traffic and still achi…
-
comment
Comment #34231532
This has been my major criticism of them; you cement the design of the app by creating an organizational structure around your software components. What happens if you need to rede…
-
comment
Comment #33947911
Yup. If you consider that a simple int can have billions of states, and that you can have 100% test coverage while testing just one of those, 100% really doesn't mean much. And wit…
-
comment
Comment #33389131
I'm saying that references between heaps should be disallowed altogether.
-
comment
Comment #33389118
Ooooh, thanks for mentioning that!
-
comment
Comment #33389100
I've been following your school of thought as well as the one proposed by the author. I would argue that your model is a lot freer and will lead to better code quality in the long …
-
comment
Comment #33383656
I would love it if some language would implement a segmented heap, where each part could be GCed separately. Erlang has this model with it's lightweight processes. And it's a great…
-
comment
Comment #33139681
Bugzilla is still one of the best, change my mind :D A simple list is a pretty good solution IMO.
-
comment
Comment #33139665
Aside from Trello and friends, Azure boards is actually also pretty OK, if you disregard their very confusing naming and weird menus. It's fast and easy to use in the board view.
-
comment
Comment #33057789
The harsh truth is that you need to think about every single case of failure, and decide what to do when things go south. If you look at how POSIX does it, pretty much every single…
-
comment
Comment #33037482
Cue VPNs being banned
-
comment
Comment #32963094
Generally I would say yes. POSIX dictates that a line must end in newline, and some tools rely on it. See https://stackoverflow.com/a/729795