Skip to content

Instantly share code, notes, and snippets.

A lot of these are outright stolen from Edward O'Campo-Gooding's list of questions. I really like his list.

I'm having some trouble paring this down to a manageable list of questions -- I realistically want to know all of these things before starting to work at a company, but it's a lot to ask all at once. My current game plan is to pick 6 before an interview and ask those.

I'd love comments and suggestions about any of these.

I've found questions like "do you have smart people? Can I learn a lot at your company?" to be basically totally useless -- everybody will say "yeah, definitely!" and it's hard to learn anything from them. So I'm trying to make all of these questions pretty concrete -- if a team doesn't have an issue tracker, they don't have an issue tracker.

I'm also mostly not asking about principles, but the way things are -- not "do you think code review is important?", but "Does all code get reviewed?".

function Track(src, spriteLength, audioLead) {
var track = this,
audio = document.createElement('audio');
audio.src = src;
audio.autobuffer = true;
audio.load();
audio.muted = true; // makes no difference on iOS :(
/* This is the magic. Since we can't preload, and loading requires a user's
input. So we bind a touch event to the body, and fingers crossed, the
@polarblau
polarblau / config.ru
Created June 19, 2013 20:01 — forked from adamesque/config.ru
Protect a Middleman application via basic auth
require 'rubygems'
require 'middleman/rack'
protected_middleman = Rack::Auth::Basic.new(Middleman.server) do |username, password|
[username, password] == ['theuser', 'thepassword']
end
run protected_middleman
@polarblau
polarblau / de.yml
Created October 23, 2012 08:22 — forked from newstler/de.yml
#iOSonRailsConf 2013 web site translations
##############################
##############################
robot_in_the_cloak: "Robot in the Cloak"
site_title: "#iOSonRailsConf 2013"
site_description: "Eine Konferenz für Ruby on Rails und iOS-Entwickler aus aller Welt, die im Frühjahr 2013 in Aluschta stattfinden wird."
site_description_short: "Ruby on Rails und iOS-Entwickler Konferenz."
site_keywords: "Ruby, Rails, ios, Entwickler, Konferenz, 2013, Web, Handy, iphone, ipad, ipod"
@polarblau
polarblau / de.yml
Created October 23, 2012 06:19 — forked from newstler/de.yml
#iOSonRailsConf 2013 web site translations
##############################
##############################
# > this is a name, right? no need to translate?
robot_in_the_cloak: "Robot in the Cloak"
site_title: "#iOSonRailsConf 2013"
site_description: "Eine Konferenz für Ruby on Rails und iOS-Entwickler aus aller Welt, die im Frühjahr 2013 in Aluschta stattfinden wird."
site_description_short: "Ruby on Rails und iOS-Entwickler Konferenz."
site_keywords: "Ruby, Rails, ios, Entwickler, Konferenz, 2013, Web, Handy, iphone, ipad, ipod"