Max Howell's take on getting rejected by Google
1–10 of 73 posts
Re: Max Howell's take on getting rejected by Google
#2 my software was insanely successful. Why is that? Well
the answer is not in the realm of computer science.
I have always had a user-experience focus to my software.
Homebrew cares about the user. When things go wrong with
Homebrew it tries as hard as it can to tell you why, it
searches GitHub for similar issues and points you to them.
It cares about *you*.
I love that he calls out Homebrew not being a technical marvel and attributes its success to the fact that it does what users care about.His skills align better with product management at Google more than software engineering though.
It's clear when software is written or designed by someone who cares about the user. Homebrew really is a great example of this.
Re: Max Howell's take on getting rejected by Google
#3No, Google shouldn't have hired him, and he made it very clear why: he's a dick.
Related discussion:
Re: Max Howell's take on getting rejected by Google
#4Fuck that, Quora.
Re: Max Howell's take on getting rejected by Google
#5But ultimately, should Google have hired me? Yes, absolutely yes. I am often a dick, I am often difficult, I often don’t know computer science, but. BUT. I make really good things, maybe they aren't perfect, but people really like them. Surely, surely Google could have used that. No, Google shouldn't have hired him, and he made it very clear why: he's a dick. Related discussion: https://news.ycombinator.com/item?id=1…
Re: Max Howell's take on getting rejected by Google
#6 1> (defun invert (tree)
(if (atom tree)
tree
(list (invert (cadr tree)) (invert (car tree)))))
invert
2> (invert '(((1 2) (3 4)) ((5 6) (7 8))))
(((8 7) (6 5)) ((4 3) (2 1)))
Here I modeled the binary tree using two-element lists as the nodes (thus using two cons cells where one would do) for the sake of presentational clarity.What are the real requirements?
Re: Max Howell's take on getting rejected by Google
#7It's bizarre, really.
Re: Max Howell's take on getting rejected by Google
#8But ultimately, should Google have hired me? Yes, absolutely yes. I am often a dick, I am often difficult, I often don’t know computer science, but. BUT. I make really good things, maybe they aren't perfect, but people really like them. Surely, surely Google could have used that. No, Google shouldn't have hired him, and he made it very clear why: he's a dick. Related discussion: https://news.ycombinator.com/item?id=1…
If dickishness was a crime then most of our software engineers would be in jail.
Re: Max Howell's take on getting rejected by Google
#9But ultimately, should Google have hired me? Yes, absolutely yes. I am often a dick, I am often difficult, I often don’t know computer science, but. BUT. I make really good things, maybe they aren't perfect, but people really like them. Surely, surely Google could have used that. No, Google shouldn't have hired him, and he made it very clear why: he's a dick. Related discussion: https://news.ycombinator.com/item?id=1…
If dickishness was a crime then most of our software engineers would be in jail.
Re: Max Howell's take on getting rejected by Google
#10Earlier quoted context omitted.
If dickishness was a crime then most of our software engineers would be in jail.
You need to find a new place work if that is true.