workthrowaway | 6 years ago | on: Why we’re writing machine learning infrastructure in Go, not Python
workthrowaway's comments
workthrowaway | 6 years ago | on: On Pair Programming
plus this: pair programming has only been studied / proven to work in a teaching environment, where one student is literally teaching the other and bringing them up to speed.
i don't know of any study that proves that it works in a professional setting with experienced people having more or less the same background, working on the same task
if there is any study, i would like to read it.
workthrowaway | 6 years ago | on: Show HN: Write a private diary using good old email
workthrowaway | 6 years ago | on: Most frequently checked-out books in the history of the New York Public Library
same! but i finished it anyway. it was during my speed-reading / audiobook transition. i have now become a normal reader again :)
to your point though, in retrospect, i think it all depends on when in your life/career you read a recommended book. seems to me that by the time you got to how to win friends, you have already read a lot and learned most of the "obvious" things in the book.
workthrowaway | 6 years ago | on: Httpx: A next-generation HTTP client for Python
also, sqlalchemy is an over-engineered system imo. i only go for it when i have no other choices. otherwise i use a database client directly.
workthrowaway | 6 years ago | on: Why we've never fallen in love with virtual reality
workthrowaway | 6 years ago | on: Hacker News Classics (2018)
workthrowaway | 6 years ago | on: Gandi loses data, customers told to use their own backups
workthrowaway | 6 years ago | on: Judge orders Google to turn over a full year of actor’s data
workthrowaway | 6 years ago | on: Pattern Matching in Ruby 2.7 (2019)
i, unlike GP, do not get a smile on my face when i read ruby code full of implicit tricks. even when i understand some of them, it is still annoying.
why don't people just write clear, explicit, maintainable code instead of trying to be clever. i am sure method_missing could be implemented in python using various tricks but nobody, afaik, is doing that.
workthrowaway | 6 years ago | on: Ram Dass has died
OMG not familiar with the person being talked about but "going home" resonates with me. leonard cohen wrote some powerful songs in his old age and "going home" is one of them.
workthrowaway | 6 years ago | on: Multipass 1.0 – Mini-cloud on Mac or Windows workstation
same. i think it is a superb idea for ubuntu here. hopefully there are tools like this for other OS distros as well.
workthrowaway | 6 years ago | on: The Inquirer reaches end-of-life
that's very selective. here's a few more: digg, fark, slashdot
workthrowaway | 6 years ago | on: 267M Facebook users IDs and phone numbers exposed online
not how it works for me! i have friends on fb that i haven't talked to or seen since high school. i don't use fb proper but it's good to know that it remembers everyone so i don't have to. i guess it goes the other around as well.
workthrowaway | 6 years ago | on: A Database of Fugitive Slave Ads Reveals Thousands of Untold Stories (2018)
workthrowaway | 6 years ago | on: Reject Google Nest or Amazon Ring Corp Surveillance and a Dystopic Future
btw did you know that grep (as in the unix tool) is in the dictionary? it even says it comes from the operating system.
workthrowaway | 6 years ago | on: Google claims copyright on employee side projects
this is recent but in design, i read that companies can now own branding colors and themes.
workthrowaway | 6 years ago | on: Engineer says Google fired her for notifying co-workers of right to organize
workthrowaway | 6 years ago | on: Engineer says Google fired her for notifying co-workers of right to organize
> This kind of code change happens all the time.
we have all been there.
i think she knew she wasn't following proper procedure. even if it's done "all the time".
workthrowaway | 6 years ago | on: Engineer says Google fired her for notifying co-workers of right to organize
i, honestly, want to know why you think otherwise. what she did is wrong.
but assuming she didn't know and that's what the "by the book" process at Google truly is... that's even more concerning
but... that's not a python problem.
every time people say they are having a hard time installing a python module, it's almost always a non-pure python module. it has an extension in c or c++. if that tells us anything, it's that mixing c and c++ makes software hard to install...
a fairer comparison with go here is with a go package that has extensions or bindings written in another language.