Skip to content

Instantly share code, notes, and snippets.

View screamingmunch's full-sized avatar

Kristine screamingmunch

  • Dictionary.com
  • San Francisco, CA
View GitHub Profile

What I Wish I'd Known About Equity Before Joining A Unicorn

Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.

This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would

// Develop our JS here

Angular Workshop

An Brief Introduction

Objective
To identify the basic compenents of a Angular application and integrate them together in a manner that creates a canonical example for one to further develop or rexamine afterward.

Outline

Originally published in June 2008

When hiring Ruby on Rails programmers, knowing the right questions to ask during an interview was a real challenge for me at first. In 30 minutes or less, it's difficult to get a solid read on a candidate's skill set without looking at code they've previously written. And in the corporate/enterprise world, I often don't have access to their previous work.

To ensure we hired competent ruby developers at my last job, I created a list of 15 ruby questions -- a ruby measuring stick if you will -- to select the cream of the crop that walked through our doors.

What to expect

Candidates will typically give you a range of responses based on their experience and personality. So it's up to you to decide the correctness of their answer.

@screamingmunch
screamingmunch / app.js
Created December 5, 2013 03:27 — forked from desa/app.js
var app = require('http').createServer(handler);
var io = require('socket.io').listen(app);
var fs = require('fs');
app.listen(8080);
function handler (req, res) {
fs.readFile(__dirname + '/index.html', function(err, data) {
if (err) {
res.writeHead(500);
@screamingmunch
screamingmunch / pothole_patrol.md
Created November 9, 2013 00:44
Project 2 - Pothole Patrol

##Pothole App

api's: google maps or leaflet

Amazon S3 (or paperclip)- photo storage

Twitter api

O-auth for user signin / Simple O-auth

@screamingmunch
screamingmunch / debug_1.md
Last active December 24, 2015 17:09 — forked from OfTheDelmer/debug_1.md
Kristine's Quiz solution (Wk2D5)

#Debugging (Use The Duck… )

Find the errors in the following

1.) link rel="stylesheet"

@screamingmunch
screamingmunch / 0_reuse_code.js
Created September 30, 2013 23:57
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
# ,o888888o. 8 8888 88 8 8888 8888888888',8888'
# . 8888 `88. 8 8888 88 8 8888 ,8',8888'
# ,8 8888 `8b 8 8888 88 8 8888 ,8',8888'
# 88 8888 `8b 8 8888 88 8 8888 ,8',8888'
# 88 8888 88 8 8888 88 8 8888 ,8',8888'
# 88 8888 `8. 88 8 8888 88 8 8888 ,8',8888'
# 88 8888 `8,8P 8 8888 88 8 8888 ,8',8888'
# `8 8888 ;8P ` 8888 ,8P 8 8888 ,8',8888'
# ` 8888 ,88'8. 8888 ,d8P 8 8888 ,8',8888'
@screamingmunch
screamingmunch / Wk5_Wed(Day23).md
Last active December 19, 2015 21:39
Devise, Heroku