Spyke

Replies

linux

Comment on

PewDiePie has switched to Linux

Reply in thread

To be fair, running "apt install steam" and it promoting to remove the base packages is a pretty bad bug, and the safeguard they've put in place since that incident in case you remove your entire distro was long overdue. If he were using it in a professional setting? Skill issue, read the output. But he was using it... as a user!

python

Comment on

Python developers won’t let go of Python 2

Reply in thread

While I agree that people should have moved on for a while, the idea that porting Python 2 to 3 only involves "find and replace" or a tool like 2to3 is only true in the most trivial cases. Anything that touches bytes, unicode, network or files to do anything remotely involved needs a lot more care. I should know, our codebase still suffers from the occasional bug due to this, even though it's been years.

Comment on

Version Control

Reply in thread

Sure, if you want to do it once, but Git still has to compute that information (save for a new-ish cache that is just that, a cache). But that is not the point really, the point is that Mercurial's graph Is the same (topologically) everywhere, which is not the case in Git because branches (and thus remotes) have different names. So saying that a branch contains a commit is not the same as a commit being on a branch. There are a bunch of great properties that emerge from this but it's too long for this comment and I should actually properly write this down at some point this year.

You reached the end