Viewing profile — abuckenheimer
abuckenheimer
HN member- Joined
- Mon, Oct 20, 2014, 8:01 PM UTC
- HN karma
- 212
- Public activity
- 31 items
- HN profile
- View on Hacker News ↗
About abuckenheimer
Recent public activity
-
comment
Comment #43644877
excellent explanation, to add to this since I was curious about the composition, '%c' is an integer presentation type that tells python to format numbers as their corresponding uni…
-
comment
Comment #42400731
This is really nice! The context switching that comes from using the [official k8s reference]( https://kubernetes.io/docs/reference/kubernetes-api/workload... ) is a real pain. If …
-
comment
Comment #37557908
I've only skimmed the quickstart docs https://kargo.akuity.io/quickstart/ but this snippet immediately clicks for me as something that I'd want to try cat Have enjoyed using argo i…
-
comment
Comment #32191553
This is clever, otherwise you have to coordinate your cache setter and your async function call between potentially many concurrent calls. There are ways to do this coordination th…
-
comment
Comment #31594225
> python3 -c 'while (1): print (1, end="")' | pv > /dev/null python actually buffers its writes with print only flushing to stdout occasionally, you may want to try: python3 -c 'wh…
-
comment
Comment #24837485
Very cool, py-spy[1] has been an invaluable tool in my development process since jvns blogged[2] about it. The power of being able to visualize where your code is spending its time…
-
comment
Comment #24276587
It's interesting to compare palantir's risk factor on open source vs pivotals[1]. Palantir takes a defensive posture saying basically that their ability to not contribute to open s…
- story
-
comment
Comment #21951202
Just remembered the puck building[1] has these on the sidewalks surrounding the Houston street side, if you go into the Eastern Mountain Sports store and down the stairs you can se…
-
comment
Comment #20106100
Would highly suggest listening to the "How I built This" podcast[1] with the peleton founder John Foley, really great story with usual tech themes like doing things that don't scal…
-
comment
Comment #18674316
Yes HFT buys trade flow from robin hood because they make more money executing against it but that's not actually to the detriment of the people on the robin hood app. The main way…
-
comment
Comment #18516207
got it, thanks for the response!
-
comment
Comment #18463744
Right what I'm confused about is that first bit, my understanding from the RFC is that the implementation should have look something like return pbkdf2.derive(password, email, PBKD…
-
comment
Comment #18451510
I've never heard of HKDF before but it is really an elegant solution to this. My first guess on how to do this would have been something stupid like split the Authentication token …
-
comment
Comment #18238900
I loved this article on the elegance of deflate http://www.codersnotes.com/notes/elegance-of-deflate/ finishes with this: It's not one algorithm but two, that dance and weave toget…
-
comment
Comment #18238746
[disclosure I am a sanic contributor] aiohttp is a great project, very similar to sanic, I'd say the big thing is sanic is slightly more flask like than aiohttp in ergonomics (whic…
-
comment
Comment #18132561
Really I think the specific the problem here with DAF's is just misaligned incentives, the DAF values the donors donation but the government is the one that has to pony up the tax …
-
comment
Comment #17451044
I don't know the Kirill Balunov example is pretty beautiful/simple/flat/readable if reductor := dispatch_table.get(cls): rv = reductor(x) elif reductor := getattr(x, "__reduce_ex__…
-
comment
Comment #17442093
I think the reality of this is fairly well captured in the 4th to last paragraph > Even human readers, who may have two minutes to read each essay, would not take the time to fact …
-
comment
Comment #17033834
I feel the same way, although my instinct is generally to build a custom generator. Only costs a couple lines but is plain old python and quite explicit target = {'system': {'plane…
-
comment
Comment #16980775
FWIW no one who replied to this email thread said something even close to "no". Victor Stinner points out that startup time is something that comes up a lot and mentions some recen…
-
comment
Comment #16905158
+1 been using sanic for a couple years, it's an awesome easily grokable micro framework. Sanic is flask-like in a lot of places where a quick perusal of the quart code makes it loo…
-
comment
Comment #16662415
We do not control and may be unable to predict the future course of open-source technologies, including those used in our offering, which could reduce the market appeal of our offe…
-
comment
Comment #16449576
I'm not surprised to see net neutrality mentioned as a risk factor. Our platform depends on the quality of our users’ access to the internet. Certain features of our platform requi…
-
comment
Comment #16325518
When people say cpython is slow they are generally pointing to two things 1) The interpreter is _slow_ 2) You can't achieve real thread based parallelism I think in general people …