Viewing profile — ob
ob
HN member- Joined
- Thu, Feb 26, 2009, 10:14 PM UTC
- HN karma
- 110
- Public activity
- 44 items
- HN profile
- View on Hacker News ↗
About ob
No profile information was provided.
Recent public activity
-
comment
Comment #40884138
Thanks for writing this. This story is rarely told correctly and you mostly got it as I remember it.
-
comment
Comment #40884005
> Do you have any references supporting either that the protocol was more complicated than he demonstrated on stage BitKeeper itself is open source now and (an old version) of the …
-
comment
Comment #37945230
We at LinkedIn have been using CDE's (we call them rdev) for quite a while. We wrote about them in our engineering blog: https://engineering.linkedin.com/blog/2021/building-in-the-…
-
comment
Comment #37285864
The thing about classical music is that you have to understand the works in order to really enjoy them – of course there are exceptions when the melody just grabs you but that's no…
-
comment
Comment #31058288
Thanks, added.
-
comment
Comment #31058233
Rust noob here but couldn't you write if let Some(element) = some_vec.first() { println!("{}", element); // .. more code } and avoid the unwrap and the empty check? Edit: Added a `…
-
comment
Comment #30775907
This is a special case of Pratt parsing (the author wrote another article about it later on: https://www.engr.mun.ca/~theo/Misc/pratt_parsing.htm )
-
comment
Comment #29775675
Author here... I wrote this after reading Yudkowsky's article (linked in mine) and had the example posted there in mind as I went through the article. This was many years ago and I…
-
comment
Comment #23719108
No, that is the LinkedIn app. It's the messaging dialog (you can see their custom "send" button at the lower right corner).
-
comment
Comment #14159364
Or in the words of John Maynard Keynes: "In the long run, we're all dead". Which means that fixing things "in the long run" is not ideal.
-
comment
Comment #13897525
The main problem is performance, it takes long enough to train a regular deep learning AI, let along a homomorphically encrypted one.
-
comment
Comment #12562013
I still think one of the best textbooks on economics is Paul Samuelson's Economics. Assuming you mean macro-economics that is.
-
comment
Comment #11924275
> Has you ever wanted to combine the speed and safety of Bash with the raw, unbridled power of C? Uh, no? :)
-
comment
Comment #11848467
And that is exactly why people love Elm: > "foo" "bar" -- TYPE MISMATCH --------------------------------------------- repl-temp-000.elm You are giving an argument to something that…
-
comment
Comment #11824432
> In one week in May, she earned $604 for 28 hours of work I wonder if they count "hours of work" as hours with a passenger or as total hours driven. If the latter then she actuall…
-
comment
Comment #11773303
True, but they could set the threshold higher. Like for instance have it match for both name, last name, and company. There is a tradeoff between accuracy and relevance and that ca…
-
comment
Comment #11676830
Sounds like equivalent representations no? Limit the scope of the I lines or wrap them in D lines.
-
comment
Comment #11671701
The BAM server is part of the open source version. The 90-day trial is for the enterprise version (which is the same version, only with commercial support). BitKeeper doesn't suppo…
-
comment
Comment #11670604
Yeah, we're trying to figure out how to do that.
-
comment
Comment #11669507
We have a git importer but it's not part of the "official" repo as there are still a few corner cases. I am afraid we don't have a mercurial importer though...
-
comment
Comment #11612170
I assume they mean this: https://en.wikipedia.org/wiki/Fiber_(computer_science)
-
comment
Comment #11531963
That was actually the original prototype. Little has moved on to have a pointer object type.
-
comment
Comment #10137749
He means the author of the book, not the programming language.
-
comment
Comment #5413021
I learned emacs first and became reasonably proficient in it. Some years ago, I joined a company where most people used vi. I saw it as an opportunity to use vi (also vim) and I al…
-
comment
Comment #4050436
> Honest question: how would you measure an L2 cache lookup? Like this: https://github.com/ob/cache/blob/master/cache.c