- Behavioral
- Least directly-focused section by applicants
- Can, and should cause you fail a technical interview, if you pass the problem solving portion, but fail this section
- Questions should focus on, but are not limited to, the following areas:
- Why do you want to join?
- Why do you want to join the company?
- What is it about the role that you'd be taking on that you like?
- How interested are you?
- Interested enough to ask questions about what the interviewer does?
- Why do you want to join?
- Interested enough to know a small amount of background info (e.g. a blog post you can ask about)?
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
# Just like regular godep, use at root of repo | |
godep() { | |
case $* in | |
rebuild* ) shift; command rm -rf Godeps && rm -rf vendor && godep save;; | |
remove* ) shift; command rm -rf Godeps && rm -rf vendor;; | |
* ) command godep "$@";; | |
esac | |
return | |
} |
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
if os.Getenv("GODEBUG") != "cgocheck=0" { | |
cmd := exec.Command(os.Args[0], os.Args[1:]...) | |
env := os.Environ() | |
env = append(env, "GODEBUG=cgocheck=0") | |
cmd.Env = env | |
cmd.Stdin = os.Stdin | |
cmd.Stdout = os.Stdout | |
cmd.Stderr = os.Stderr | |
err := cmd.Run() | |
fmt.Println(err) |
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
package main | |
import ( | |
"fmt" | |
"io" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"regexp" | |
) |
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
// Input: | |
// go run stringformat.go "testing this" | |
// Output: | |
// ************** | |
// *TeStInG ThIs* | |
// *EsTiNg tHiS * | |
// *StInG ThIs * | |
// *TiNg tHiS * | |
// *InG ThIs * |
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
package main | |
import ( | |
"net/http" | |
"strings" | |
) | |
func main() { | |
http.HandleFunc("/", handler) | |
http.ListenAndServe(":8000", nil) |
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
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below | |
filetype off | |
" Load plugins here | |
call plug#begin('~/.vim/plugged') | |
Plug 'octref/rootignore' |
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
import * as cookie from 'cookie'; | |
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)); | |
}); | |
/** | |
* Fetch and log a request | |
* @param {Request} request | |
*/ |
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
{ | |
"title": "Kinesis keyboard setup", | |
"rules": [ | |
{ | |
"description": "Windows CMD<>OPT swap", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "left_gui", |