Skip to content

Instantly share code, notes, and snippets.

View daBayrus's full-sized avatar
🍜

라가나 조엘 daBayrus

🍜
View GitHub Profile
@daBayrus
daBayrus / gist:3fdedfdfeaac9c5ec838d496454a6c08
Created May 3, 2016 13:25 — forked from ryansobol/gist:5252653
15 Questions to Ask During a Ruby Interview

Originally published in June 2008

When hiring Ruby on Rails programmers, knowing the right questions to ask during an interview was a real challenge for me at first. In 30 minutes or less, it's difficult to get a solid read on a candidate's skill set without looking at code they've previously written. And in the corporate/enterprise world, I often don't have access to their previous work.

To ensure we hired competent ruby developers at my last job, I created a list of 15 ruby questions -- a ruby measuring stick if you will -- to select the cream of the crop that walked through our doors.

What to expect

Candidates will typically give you a range of responses based on their experience and personality. So it's up to you to decide the correctness of their answer.

@daBayrus
daBayrus / t.sh
Created September 25, 2015 13:18
#!/bin/bash
if [ $1 ]; then
file_path=$1
host_path="/Users/joel/dev/apps/commutyble/"
touch ${file_path#$host_path}
fi
@daBayrus
daBayrus / rbenv-install-system-wide.sh
Created January 20, 2012 02:34
rbenv install and system wide install on Ubuntu 10.04 LTS.
# Update, upgrade and install development tools:
apt-get update
apt-get -y upgrade
apt-get -y install build-essential
apt-get -y install git-core
# Install rbenv
git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv
# Add rbenv to the path: