Viewing profile — sepeth
sepeth
HN member- Joined
- Wed, Oct 13, 2010, 7:37 PM UTC
- HN karma
- 232
- Public activity
- 76 items
- HN profile
- View on Hacker News ↗
About sepeth
No profile information was provided.
Recent public activity
-
comment
Comment #49113394
One of the nice things about jujutsu related to this is that when you update a branch, it rebases other branches started off of that branch. I often switch to jj if I want to split…
-
comment
Comment #47048668
I haven’t been using Emacs for a long time now, but isn’t the Emacs way better? With undo tree you don’t lose any history, but the same is true for what Emacs does by default and i…
-
comment
Comment #45049198
This is why I believe GPL v3 is important.
- comment
-
comment
Comment #26194230
This this this. It was the first thing I missed in Vim when I switched. You also don't lose in Vim, as it keeps it the history as a tree, but it is harder to navigate the tree than…
-
comment
Comment #23668245
I tried this with VSCodium, but it doesn't work. The recommended extensions are not in open-vsx marketplace. I installed the foam extension from the VSIX file, and it asks to reloa…
- comment
- comment
-
comment
Comment #15611519
I agree with the first part, but not with the second part. I believe equating John's behaviour to a chef who has told a customer off is just as distant as mine. If I was looking ex…
-
comment
Comment #15611098
And to the people who actually help you. Not only your users are important, people who help you are also important. > If you ask nicely and people don't do it, or keep ignoring it …
-
comment
Comment #15610546
How? Really? Ask that to a child beaten up by their parents in the street. I am sure that child won't make the same mistake again. I am not interested about if Linus is right or wr…
- comment
-
comment
Comment #13087167
They are public. When you create an AWS account, you will have a default VPC (this wasn't the case with the classic EC2), and when launching an instance, if you don't specify anyth…
-
comment
Comment #12875439
Do you really think that it is that simple?
-
comment
Comment #12419040
Let's replace some of Math with dance! https://youtu.be/iG9CE55wbtY?t=8m40s
-
comment
Comment #12072887
"Non-nullable Types" This is the first filter I check when I am deciding to learn a programming language these days. Almost all real world code I saw have had random null checks ev…
-
comment
Comment #10786273
A bit old and it is in Pascal, but still, Let's Build a Compiler by Jack Crenshaw is also fun to read: http://compilers.iecc.com/crenshaw/
-
comment
Comment #10782852
Ah sorry, I was misreading it from the beginning :(
-
comment
Comment #10781571
It puts zeros to unused bytes in the destination. Here's a note from its man page: Some programmers consider strncpy() to be inefficient and error prone. If the programmer knows (i…
-
comment
Comment #10512937
They are part of the GNU system. http://www.gnu.org/help/evaluation.html Btw, some projects are hosted on nongnu.org domain, those are not part of the GNU system.
-
comment
Comment #10158593
Not directly related, but there's one tweet I like: "No no no no. The voice of newbies is one of your biggest assets. Why don't they understand? What is the confusion?" John Resig …
-
comment
Comment #10146290
How CORBA compares to Apache Thrift, or Google's protobuf? or do they try to solve different things?
-
comment
Comment #10084675
> I just turned down an offer because of something like this. One question, was this offer from amazon? I mean, are the things the guy said for amazon?
-
comment
Comment #10020261
You should use highest protocol of pickle, here are the numbers in my machine: In [5]: %timeit pickle.dumps(a) 1 loops, best of 3: 724 ms per loop In [6]: %timeit pickle.dumps(a, p…
-
comment
Comment #9992220
I also used this in a similar situation, it helped me to save a lot of memory in my skiplist implementation: https://github.com/sepeth/python-skiplist/commit/00ae7f94246... Redis's…