I have a lot of people at Hacker Hours ask about where to look for jobs - here are some places I recommend.
- AngelList (startups)
- Authentic Jobs
- Craigslist (mostly freelance)
- Digital DUMBO (NYC-specific)
- Github
- Idealist (social good)
{ | |
"_id":"659f632137e5bf99fb7e49caed006459", | |
"_rev":"2-832c2ae4a7472636d852c9ad1517b9a2", | |
"status":"ok", | |
"payload":{ | |
"id":5334632, | |
"repository":{ | |
"id":63478, | |
"name":"jsonp", | |
"owner_name":"afeld", |
I have a lot of people at Hacker Hours ask about where to look for jobs - here are some places I recommend.
<div class="galleryRow rowOf2"> | |
<div class="introPanel xsome rowOf2-0 groupOf0 galleryPreview medium" data-gallery-id="5112c78b932b6315e6000115" data-xsome-size="0"><div class="introPanel-inner"><a href="http://gimli.aidan.jux.nu:8080/"><div class="galleryInfo"><div class="cornerButton"></div><div class="galleryInfo-child descriptionLinksEmpty"><div class="galleryInfo-sub-child"><div class="gallery-title"><div class="titleWrapper"><div class="juxTitle">EVERYTHING</div></div><div class="juxByline">by <span class="authordisplayname" data-empty-value="gimli" spellcheck="false">gimli</span></div></div><div class="galleryInfo-descriptionAndLinks" data-elem="descriptionAndLinks"><div class="juxByline">by <span class="authordisplayname" data-empty-value="gimli" spellcheck="false">gimli</span></div></div></div></div></div></a><div class="clear"></div></div></div> | |
<div class="introPanel xsome rowOf2-1 groupOf0 galleryPreview large" data-gallery-id="5112c78a932b6315e60000ea" data-xsome-size="0"><div class= |
$(function(){ | |
var kittenize = function(){ | |
$('.fillmoreInner:not(.kitten)').each(function(i, el){ | |
var $el = $(el); | |
var url = 'url("http://placekitten.com/' + $el.width() + '/' + $el.height() + '")'; | |
$el.css('background-image', url); | |
$el.addClass('kitten'); | |
}); | |
$('img:not(.kitten)').each(function(i, el){ |
require 'benchmark' | |
require File.expand_path('../../../load_paths', __FILE__) | |
require "active_record" | |
RECORDS = 20000 | |
conn = { :adapter => 'sqlite3', :database => ':memory:' } |
for D in `find . -type d -depth 1` | |
do | |
cd $D | |
echo $D | |
git status | |
cd - > /dev/null | |
done |
A friend is looking for a new tech job and asked if I knew anyone at a handful of companies. I'm (meaningfully) connected to more people who are relevant to this on Twitter than LinkedIn, so figured it would be easiest to scour people's bios. Naturally, I did this in the nerdiest way possible and automated it.
P.S. See also:
This is a talk about getting your page to load for visitors...fast. We will cover: streaming, prefetching, script loading techniques, data bootstrapping, caching, and more. We'll look at some real-world examples, and do some live demos to see just how big an impact these considerations can make.
# a.k.a. _.extend() | |
extend = (obj, mixin) -> | |
for name, method of mixin | |
obj[name] = method | |
include = (klass, mixin) -> | |
extend klass.prototype, mixin | |
MyMixin = | |
foo: -> 'bar' |