Viewing profile — raphael_kimmig
raphael_kimmig
HN member- Joined
- Mon, Oct 01, 2012, 12:07 PM UTC
- HN karma
- 99
- Public activity
- 21 items
- HN profile
- View on Hacker News ↗
About raphael_kimmig
No profile information was provided.
Recent public activity
-
comment
Comment #42406652
Wow this looks really interesting. Do you per chance have a video of you using the grinder & machine? I’m not quite sure I understand where the hot water is added, but I like not h…
-
comment
Comment #41710503
Can’t you empathise? The thought of having to grade and give advice on AI generated content makes me want to run away and live in a remote forest.
-
comment
Comment #37831158
If you always start with heads the method works out. The key is that the first and the second toss need to be independent so that HT and TH have the same probability. If you influe…
-
comment
Comment #36877118
We have been working on something that sounds similar. It ain’t perfect yet, but we are using it quite a bit already. https://github.com/django-beam/django-beam
-
comment
Comment #28855609
No, this is not about the percentage of harvested material. I’m having trouble believing that you are having this exchange in good faith, so I’m gonna end this here. And just so we…
-
comment
Comment #28848223
This isn't true at all. The majority of soy produced all over the world is feed grade soy which isn't destined for human consumption. Other than that I just can't find any sources …
-
comment
Comment #28844660
That is completely false. The numbers may vary, but any credible source you are going to find will show that the vast majority of soy is grown for animal feed. https://ourworldinda…
-
comment
Comment #28615034
The effect you describe in your example is called target fixation.
-
comment
Comment #27673375
There are definitely some things to be considered here, however I find that most people drastically overestimate the amount of work associated with hosting things. Also they tend t…
- story
-
comment
Comment #19590339
It's interesting that the resulting go code has 43k lines of code, while the python client for raven only has 6k lines. I don't know whether they have equivalent feature sets - but…
-
comment
Comment #18786435
It doesn’t have to be like this. Look up underwriting - by writing from below the text you can write with a relaxed grip without any fear of smudges.
-
comment
Comment #14708684
If you haven’t tried them I’d suggest getting a set of panniers for grocery hauls (I’ve got the ortlieb backroller plus). We do most of our grocery shopping by bike and having pann…
-
comment
Comment #11570052
I think that this is probably just your perception. I've been here on and off for at least a few years now and I don't think that the content has really changed. When you read the …
- story
-
comment
Comment #8444907
We used to do wkhtmltopdf but nowadays we are using weasyprint + django templates. Much better support for css (including CSS Paged Media). See http://weasyprint.org/
-
comment
Comment #7845074
This is really interesting to me because it shows what to think of the claim that explicit error handling makes go code more reliable than languages which use exceptions. When usin…
-
comment
Comment #6310003
You can also do zip(arr[::3], arr[1::3], arr[2::3]) which is nearly as fast but doesn't work with iterators. If you want to use iterators you could also do zip(islice(arr, 0, None,…
-
comment
Comment #5503041
I've tried it with go tip and go 1.0. T(go tip) / T(go 1.0.3) = 0.8 Thus one might expect go to take third place after clang and gcc. But keep in mind that e.g. java isn't the newe…
-
comment
Comment #5278867
> Socialists refuse to admit that national socialism was actually an ideology from left Sounds great if you don't let facts get in the way of your world view. Communists, socialist…
-
comment
Comment #5177919
There is a neural net example benchmark in the topaz git repo. Don't know how representative that example is, but at least startup time shouldn't be dominating the results... $ rub…