Skip to content

Instantly share code, notes, and snippets.

@RobWC
RobWC / The Technical Interview Cheat Sheet.md
Last active August 29, 2015 14:28 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

###Array ####Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.

Keybase proof

I hereby claim:

  • I am robwc on github.
  • I am robwcam (https://keybase.io/robwcam) on keybase.
  • I have a public key whose fingerprint is 5A02 6AFB 59D9 50F2 B53F B2FE 5617 2314 FAB0 6D7A

To claim this, I am signing this object:

@RobWC
RobWC / vpls.cfg
Created October 26, 2012 19:49
Junos VPLS config
interfaces {
ge-0/0/0 {
unit 0 {
family ethernet-switching {
port-mode access;
vlan {
members Vlan100;
}
}
}
@RobWC
RobWC / bgh
Created August 30, 2012 07:28
Vjj
Vhjj
@RobWC
RobWC / node-test.js
Created January 22, 2012 21:54
Basic Node Example
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(80, "0.0.0.0");
console.log('Server running at http://0.0.0.0:80/');
@RobWC
RobWC / gist:1346647
Created November 8, 2011 00:27 — forked from pmuellr/gist:1004413
BBEdit Language Module for CoffeeScript
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!--
BBEdit Language Module for CoffeeScript
Put this file in
~/Library/Application Support/BBEdit/Language Modules
or equivalent.
Based off of the examples shipped in the BBEdit SDK.