Skip to content

Instantly share code, notes, and snippets.

@lortza
lortza / interview_questions.md
Last active February 9, 2019 17:37
collection of interview questions i have been asked at software engineering interviews
  • Describe your ideal job
  • What's your ideal working relationship with your boss?
  • Jobs I didn't like or things at jobs that I didn't like
  • How do you handle when you're in a situation you don't like or is unreasonable?
  • Have you done any work in Agile continuous integration servers?
  • Where do you fit in to the team? Front end? Back end?
  • What is the last time you pushed something to production and there was a problem?
  • Compensation question. Expectations or range.
  • Tell me about your career path.
  • Tell me about Tech Talent South.
@lortza
lortza / _activity_footer.html.erb
Last active February 26, 2018 19:04
Setting up polymorphic "likes" on posts, photos, and comments
@lortza
lortza / Preferences.sublime-settings--User
Last active September 19, 2018 04:06 — forked from iambibhas/scopes.txt
Sublime Text 2: Snippet scopes, preferences
{
"binary_file_patterns":
[
"node_modules/",
"package-lock.json"
],
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
@lortza
lortza / quiz_question_seminar.rb
Created September 22, 2015 17:20
Proposed quiz question for Tealeaf Academy Course 1, Lesson 1
# You are hosting a seminar and need to assign seats to your attendees.
# You have 3 rows with 3 seats in each row (total 9 seats). You have 6 attendees.
# Assign each person a seat making sure that everyone is seated as close
# to the front as possible. Row A is the first row. A seat name looks
# like "A1", not "1A". Then output a list of names and seat numbers so
# the usher can seat each person in the right place.
rows = ["A", "B", "C"]
seat_numbers = [1, 2, 3]
people = ["Angela", "Bill", "Christine", "Darla", "Edward", "Frank"]