- 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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": | |
[ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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"] |