ruby-jokes / job_interview

A gem for job interview type problems

Home Page:http://ruby-jokes.github.com/job_interview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Job Interview

Build Status Dependency Status Code Climate Coverage Status Gem Version

SYNOPSIS

Let's face it. Programmer job interviews can be annoying. And sometimes the questions require you to actually think. With Job Interview, most programming interview questions can be answered in 3 lines of Ruby.

You can view the slides from our RailsConf 2012 lightning talk about job_interview here.

USAGE

require 'job_interview'
@answer = JobInterview::Answer.new

# FizzBuzz
@answer.fizz_buzz(5)
 => [1, 2, "Fizz", 4, "Buzz"]

# Fibonacci numbers (default: recursive strategy)
@answer.fib(10)
 => [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
 
# Fibonacci numbers (iterative strategy)
@answer.fib(10, :iterative)
 => [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
 
# Fibonacci numbers (using matrices)
@answer.fib(10, :matrix)
 => [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]

# Quine
@answer.quine
 => "@answer.quine"

# The first n primes
@answer.primes(10)
 => [2, 3, 5, 7, 11, 13, 17, 19, 23, 29]

# Hello, World!
@answer.hello_world
 => "Hello, World!"

# Knapsack problem
@answer.knapsack([[4, 3], [1, 2], [6, 4]], 7)
 => 6

Now, job_interview will help you answer non-technical interview questions as well! Simply call the appropriate method, and a randomly constructed answer will pop out.

include JobInterview::Questions

Q. Where do you see yourself in five years?

in_5_years

 => "I'd like to have made someone else rich with my re-contextualized non-volatile open architecture."

Q. Why are you leaving your current position?

leaving_current

 => "I'm seeking to optimize extensible applications."

Q. Why are manhole covers round?

manhole_cover

 => "Because Reuleaux Triangles are hard to manufacture."

Q. What is you greatest weakness?

greatest_weakness

 => "I always fail so rarely so I make too much money."

Q. Why do you want to work here?

why_here

 => "Your company has revolutionized seamless next generation interface."

Q. Does P = NP?

p_equals_np

 => "I doubt it, but it would make life easier for traveling salesmen."

Q. Please tell us, in a few words, about what interests you?

what_interest

 => "I have a special interest in modular mobile startup platforms."

FAQ

Q. Why would you even do this?

A. We wanted to hack on something trivial and silly at BohConf 2012. Also, most job interviews are dumb, and we felt the need to point this out.

Q. Do you expect this of be of any use to anyone, ever?

A. No.

Q. So what's next?

A. The Ruby implementation of job_interview is pretty decent at this point, we think. But maybe you're not applying for a Ruby job. So a Clojure implementation seems likely, possibly to be followed by JavaScript.

How do I get it?

At RubyGems, of course

AUTHORS

Micah Gates

Jason Lewis

Contributions by:

intolerable

Joel Parker Henderson

The authors would also like to thank:

CONTRIBUTING

Really? You have that much time on your hands? Awesome!

Two guidelines, though:

  • Please include a test for any patches you submit. Job interviews are Serious Business, and we need to make sure the code is correct.
  • We're not that into adding more questions to JobInterview::Questions. So please don't target that module unless you're certain your patch is SUPER funny.

LICENSE

Copyright (C) 2012 Micah Gates and Jason Lewis

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

About

A gem for job interview type problems

http://ruby-jokes.github.com/job_interview

License:GNU General Public License v3.0


Languages

Language:Ruby 100.0%