randuser | 10 years ago | on: Dear Paul
randuser's comments
randuser | 11 years ago | on: Level3 is without peer, now what to do?
randuser | 12 years ago | on: Why Chinese Is So Damn Hard (1992)
Native English speakers often get confused by this one too. You can respond either yes or no in those situations as long as you specify the one you wanted afterwards.
e.g. "Don't you agree?"
"Yes, I agree" and "No, I agree" would both be acceptable.randuser | 12 years ago | on: Kill the Snowden interview, congressman tells SXSW
randuser | 12 years ago | on: Cars Kill Cities
randuser | 12 years ago | on: A living death: Sentenced to die behind bars for what?
randuser | 12 years ago | on: Don't Pipe to your Shell
randuser | 12 years ago | on: Show HN: Gmelius – No Ads and Better User Interface for Gmail
randuser | 12 years ago | on: Researchers reverse-engineer the Dropbox client: What it means
randuser | 12 years ago | on: Excel can't save to paths over 218 characters
On a related topic, do you know how difficult it is to search for files whose path are above a certain length on a fresh/default Windows setup? I eventually resorted to installing Python on it just to write a script to do it.
randuser | 12 years ago | on: XKeyscore: NSA program collects 'nearly everything a user does on the internet'
randuser | 12 years ago | on: A bug is found in Ecuador Embassy in London
Possible communications to/from Julian Assange?
randuser | 12 years ago | on: A bug is found in Ecuador Embassy in London
randuser | 12 years ago | on: Python's Hardest Problem (2012)
I'm still not convinced about the whole Python 2 to 3 conversion being worth it (asides from the fact that not porting means your project is seen as not being actively maintained). It has led to added complexity in code so that it works on both versions, increased difficulty in packaging/distribution, having to test/debug on both versions, obsolescencing vast amounts of code that will never be ported, confusion among new users, untold man-hours being spent, ...
I don't mean to be sound so down on Python 3, but it has caused me nothing but additional work and frustration. The supposed benefits of Python 3 are still years away.
randuser | 12 years ago | on: Python's Hardest Problem (2012)
Most major projects have not actually switched to Python 3, that just support it using 2to3.
randuser | 13 years ago | on: How zsh is more useful than bash
export REPORTTIME=1randuser | 13 years ago | on: How Good C# Habits can Encourage Bad JavaScript Habits
randuser | 13 years ago | on: DOJ: We don't need warrants for e-mail, Facebook chats
randuser | 13 years ago | on: A non-magical introduction to pip and virtualenv for Python beginners
Unix fragmentation of where the bin and lib directories should reside, i.e. /bin, /usr/bin, /usr/local/bin, ~/bin, ...
Windows doesn't have symlinks and the different packaging tools have tried to implement the functionality in various different ways.
Python doesn't add the path of the "main" executed file to the module lookup path. (edit: actually, I think this is wrong. I meant to say "Python module import lookup is complicated.")
randuser | 13 years ago | on: A beginner's guide to setting up Python on Windows
Someone who only knows Python 3 would have a hard time hacking on the source code of most libraries.