Skip to content

Instantly share code, notes, and snippets.

@mjschwartz
mjschwartz / springer-free-maths-books.md
Created December 29, 2015 03:31 — forked from bishboria/springer-free-maths-books.md
Springer have made a bunch of maths books available for free, here are the direct links
@mjschwartz
mjschwartz / The Technical Interview Cheat Sheet.md
Last active August 27, 2015 04:05 — 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.
@mjschwartz
mjschwartz / gist:3620928
Created September 4, 2012 12:58
Cross-browser asynchronous JS script loader w/callbacks
// getScript()
// more or less stolen form jquery core and adapted by paul irish
function getScript(url,success){
var head = document.getElementsByTagName("head")[0], done = false;
var script = document.createElement("script");
script.src = url;