Viewing profile — nhoughto
nhoughto
HN member- Joined
- Thu, Oct 09, 2014, 10:22 PM UTC
- HN karma
- 451
- Public activity
- 248 items
- HN profile
- View on Hacker News ↗
About nhoughto
No profile information was provided.
Recent public activity
-
comment
Comment #37736990
True you could rotate by persisting the old value and complicate your lookup/join process, not my idea of an acceptable solution but yep totally possible and worth it for some set …
-
comment
Comment #37736738
Yep have used an approach just like that, worked quite well if you have a strong pattern to easily translate from one to the other. Gives you an id with the right properties for in…
-
comment
Comment #36008865
very neat! definitely will come in handy.
-
comment
Comment #35491757
In startup/mvp land it is a genuine tension between shipping it and over engineering at different extremes. It is quite possible to correctly think “this is bad engineering” and st…
-
comment
Comment #35466518
Yep Couple of, retrospectively, often almost incoherent sentences to capture top of mind state when I give up because it’s late. I’ll write this gibberish comment here because I’ll…
-
comment
Comment #35244584
Watch out firebolt.io sounds like CH has solved the ease of deployment problem!
-
comment
Comment #35244535
That’s the cell architecture, so N data plane clusters aka cells, testing qualifies a cell to meet a cert perf level and you horizontally scale out more cells to meet demand. Whils…
-
comment
Comment #35216642
Interesting idea, naively that seems possible based on other non chess example prompts I’ve seen. Would be a great way to understand it’s tracking of state throughout the game
-
comment
Comment #34638750
I feel that, I’m often doing a thing thinking “this is wrong it won’t work for xyz” but continue because I want it to work, only to give in to what I knew a day+ ago but refused to…
-
comment
Comment #34495375
https://googleprojectzero.blogspot.com
-
comment
Comment #34216605
Yep we talked to FE and they were great, but most selling processes require doco, finances, code review, walkthroughs, hand holding, explanations etc. “write down all the shit you’…
-
comment
Comment #34195634
Hit its effort vs scale limit and we’ve got more pressing things to spend time on. We could grow it but the result isn’t worth the effort compared to cost benefit of other endeavor…
-
comment
Comment #34195325
We built a tool that does $5k/month which we are _shutting_ down today (end of 2022) after 8 years. Kind of the opposite but thought I’d share. Show HN: https://news.ycombinator.co…
-
comment
Comment #34088907
Great details! Why only half the time though? What is the behavior the rest of the time?
-
comment
Comment #33852032
Aw I was reading this thinking I wonder what incredible result it came up with! And bam, didn’t work! I guess that I was surprised it didn’t work is a testament to the other amazin…
-
comment
Comment #33736811
Yeah good point, not something I’d properly thought about.
-
comment
Comment #33736515
Same in SF, I assumed it was because of the homelessness problem. Seems more likely than shoplifting gangs..
-
comment
Comment #33581303
This looks handy, better ergonomics than strace to just hook into http requests of a running process. I wonder how it works with TLS if it’s working at the socket level..
-
comment
Comment #33286283
depending on your origin and your users, having TLS terminate / be negotiated at the edge should _reduce_ your connection setup cost, by reducing RTT time for the handshake to the …
-
comment
Comment #33161492
Did a bit of testing about how to get files from a remote endpoint unpacked on disk the fastest, most interesting part was developing the method. Some good ideas on this thread I h…
-
comment
Comment #33118315
Never heard of the #1, Honor Magic4 Ultimate, but it looks like it aims for camera quality at the cost of everything else. iPhone looks like a much better set of tradeoffs at #2!
-
comment
Comment #33032905
Do you need Netty in a virtual thread world? Imo Netty made non blocking IO in Java tractable.. but virtual threads does it better and more broadly, so what role does netty play no…
-
comment
Comment #33020222
I’ve used jib and bazel and that’s exactly what they do, both are language agnostic and push files around. Jib has a java bent but not a required part of it. I can totally see peop…
-
comment
Comment #33018522
container builds for services, compiled/packaged components you want to spin up somewhere, often the Dockerfile is very simple, use some base image, add config and your binary or p…
-
comment
Comment #32988709
I always thought go needed more GC knobs, good that they added this one and the strong reasoning behind it makes sense. Impressive go has got this far with just one knob!