Skip to content

Instantly share code, notes, and snippets.

We couldn’t find that file to show.

Stevey's Google Platforms Rant

I was at Amazon for about six and a half years, and now I've been at Google for that long. One thing that struck me immediately about the two companies -- an impression that has been reinforced almost daily -- is that Amazon does everything wrong, and Google does everything right. Sure, it's a sweeping generalization, but a surprisingly accurate one. It's pretty crazy. There are probably a hundred or even two hundred different ways you can compare the two companies, and Google is superior in all but three of them, if I recall correctly. I actually did a spreadsheet at one point but Legal wouldn't let me show it to anyone, even though recruiting loved it.

I mean, just to give you a very brief taste: Amazon's recruiting process is fundamentally flawed by having teams hire for themselves, so their hiring bar is incredibly inconsistent across teams, despite various efforts they've made to level it out. And their operations are a mess; they don't real

@Thiruppathi
Thiruppathi / .bash_profile
Last active July 24, 2018 17:56
.bash_profile
export JAVA_HOME=$(/usr/libexec/java_home)
export PATH=$PATH:/Users/thiru/npm/bin
export PATH=$PATH:/Users/thiru/apps/mongodb/bin
export PATH="$PATH:$HOME/.yarn/bin"
export GOPATH=$HOME/go
export PATH=/Users/thiru/apps/phantomjs-2.1.1-macosx/bin:$PATH
export NVM_DIR="/Users/thiru/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
@Thiruppathi
Thiruppathi / data-structure.js
Last active August 29, 2015 14:27 — forked from sararob/data-structure.js
Role-based security in Firebase
/*
This example shows how you can use your data structure as a basis for
your Firebase security rules to implement role-based security. We store
each user by their Twitter uid, and use the following simplistic approach
for user roles:
0 - GUEST
10 - USER
20 - MODERATOR