Viewing profile — morganherlocker
morganherlocker
HN member- Joined
- Fri, Dec 06, 2013, 9:20 PM UTC
- HN karma
- 703
- Public activity
- 265 items
- HN profile
- View on Hacker News ↗
About morganherlocker
No profile information was provided.
Recent public activity
-
comment
Comment #49015464
I think the big miss is that the former is achievable far more often than people imagine, which leads to settling for the later, aka pessimization. Reducing your allocations from m…
-
comment
Comment #48764951
Disapprove and ask for a call where the author must verbally explain the changes to receive approval? This seems like a solvable problem, and one that already existed in repos with…
-
comment
Comment #48764818
You can setup most PR systems to squash on merge using the first commit's message, then enforce that the top commit message is prefixed with a ticket ID. This practice has many ben…
-
comment
Comment #48068067
> If you have a non-insignificant amount of data points to track this is going to eat just a ton of memory while also being pretty slow to encode/decode. This is a fair critique, h…
-
comment
Comment #46655699
IDK, it seems like old reddit did just fine without even trying that hard. The DOM and surrounding JS API is already a high level GUI framework, and the post illustrates that it's …
-
comment
Comment #46650514
I've used duckdb a lot at this scale, and I would not expect something like this to take more than a few seconds, if that. The only slow duckdb queries I have encountered either in…
-
comment
Comment #46597907
I designed some parts for an enclosure over the weekend using claude opus to generate an OpenSCAD file, which I then exported to STL and sent to a 3D printer. I was able to get a v…
-
comment
Comment #45974057
- notepad++: 56.4 MB (went gray-window unresponsive for 10 seconds when opening the explorer) - notepad.exe: 54.3 MB - emacs: 15.2 MB - vim: 5.5MB I would argue that notepad++ is n…
-
comment
Comment #45972957
> If you want electron app that doesn't lag terribly My experience with VS Code is that it has no perceptible lag, except maybe 500ms on startup. I don't doubt people experience th…
-
comment
Comment #45935384
I frequently use a docker-compose template with prometheus pushgateway + grafana for deploying on single node servers, as described at the start of the article. It works well and i…
-
comment
Comment #45794254
"Everything" is another that puts the default search to shame. I've also seen people who just have a script that pumps all new files into a txt file every so often and runs brutefo…
-
comment
Comment #45533631
I hear this a lot, but can you really say that you're consistently saturating a 1Gbps line for netcode or 6+ Gbps nvme for disk data? In my experience this doesn't really happen wi…
-
comment
Comment #45533209
There's currently talk of adding gigawatts of data center capacity to the grid just for use cases where python dominates development. While a lot of that will be compiled into opti…
-
comment
Comment #44552326
It shouldn't take any noticable power/cycles to accomplish this task. Having flags for "performance" littered through the codebase and UI is a classic failure mode that leads to a …
-
comment
Comment #44484182
> However those tools do not have the polish that ESRI kit does, but at leas you’re not paying the licensing! Arguably they have more polish, but less GUI. The open GIS world is mo…
-
comment
Comment #44301413
> so now the main problem is building the hardware, there are a lot of solutions for the software part. While cool and all, this type of sim is a tiny, tiny slice of the software s…
-
comment
Comment #43987016
As a point of comparison, I just downloaded the Windows binary for duckdb (which provides a nice TUI for similar tasks) and it was 9.84MB. People can and should expect better.
-
comment
Comment #43940785
Now instead of seeing millions of lines of inscrutable code in your program bloating binary sizes, you can see it in every program (that doesn't disable stdlib).
-
comment
Comment #43543965
All of them? It should feel instant. A UI does not benefit from artificial delays.
-
comment
Comment #43118289
I use syncthing. Works flawlessly and took just a few minutes to setup.
-
comment
Comment #42806494
Agree. As an example, this proto generates 584 lines of C++, links to 173k lines of dependencies, and generates a 21Kb object file, even before adding grpc: syntax = "proto3"; mess…
-
comment
Comment #42790099
If most data between the backend/frontend is raw numeric array binary blobs, and you target array types that can be loaded directly into JS TypedArrays (int32_t* -> Int32Array, flo…
-
comment
Comment #42789434
Same, and I've found this works quite well with a C++ backend. Just send over binary data as struct-of-arrays, load it into typed arrays, render components. Your app will be bottle…
-
comment
Comment #42617739
If you're type 1 diabetic, accuracy is paramount, especially in a closed loop insulin pump setup. Even with access to the bloodstream, existing CGMs leave plenty of room for improv…
-
comment
Comment #42617540
Everything listed here is a great pitch for vanillajs with zero framework at all.