AMP Link Button and Speaking Up

Four month ago I noticed something weird with Google’s Accelerated Mobile Pages (AMP) project and wrote a blog post outlining my concerns. I first submitted the post to Reddit where it was not received well. People told me to “Read the Fucking Manual”. I remember telling my wife that I didn’t understand why people on … Read more

Why Uber May Win After All

Introduction Three days ago I wrote about my interview at Uber. I did not think of Uber as a great place to work. People that I’ve met seemed young, smart and overworked to the point of exhaustion. From my conversation with recruiter I took away that Uber had no problem being the lowest bidder and … Read more

My Interview at Uber

A little less than a year ago I had the “pleasure” to interview at Uber. I didn’t know much about the company at the time, other than that they were big. I was looking for work already and Uber’s recruiter reached out to me, so I figured to give it a shot. Up to this … Read more

How to Copy One File from Vagrant Virtual Machine to Local Host

Step 1. Find what port Vagrant is connected to by running vagrant port The output Will look as follow: Indicating that Vagrant is running on port 2200 Step 2. Get the absolute path for the file that you want to copy i.e. /vagrant/some-file.txt You can get it by ssh’ing into the machine and locating the … Read more

How to use git log command line parameters

Git comes with a very power history viewing command – git log, which supports a number of command line parameters. This options are very powerful, especially when used in combination. Here are the ones that I use the most: –author=“Alex Kras” – Only show commits made by a certain author –name-only – Only show names … Read more