Skip to content

Instantly share code, notes, and snippets.

View icco's full-sized avatar
🏠
Working from home

Nat Welch icco

🏠
Working from home
View GitHub Profile

Day 70 (RC 29)

Early morning coffee and bagel with Rohen in DUMBO. I hadn't been around there before, nice area.

Read through Who is hiring June 2015 on hn, just like I did last month. I was even less picky than I was last month. Basically if something in the job post caught my eye (location, technology, market, name, whatever) I tried to put them here. Link to their site, their Hn post, a short summary, and where they were hiring for. People still suck at describing what they do on their website.

Day 70 (RC 29)

Early morning coffee and bagel with Rohen in DUMBO. I hadn't been around there before, nice area.

Read through Who is hiring June 2015 on hn, just like I did last month. I was even less picky than I was last month. Basically if something in the job post caught my eye (location, technology, market, name, whatever) I tried to put them here. Link to their site, their Hn post, a short summary, and where they were hiring for. People still suck at describing what they do on their website.

Day 70 (RC 29)

Early morning coffee and bagel with Rohen in DUMBO. I hadn't been around there before, nice area.

Read through Who is hiring June 2015 on hn, just like I did last month. I was even less picky than I was last month. Basically if something in the job post caught my eye (location, technology, market, name, whatever) I tried to put them here. Link to their site, their Hn post, a short summary, and where they were hiring for. People still suck at describing what they do on their website.

Day 70 (RC 29)

Early morning coffee and bagel with Rohen in DUMBO. I hadn't been around there before, nice area.

Read through Who is hiring June 2015 on hn, just like I did last month. I was even less picky than I was last month. Basically if something in the job post caught my eye (location, technology, market, name, whatever) I tried to put them here. Link to their site, their Hn post, a short summary, and where they were hiring for. People still suck at describing what they do on their website.

Day 70 (RC 29)

Early morning coffee and bagel with Rohen in DUMBO. I hadn't been around there before, nice area.

Read through Who is hiring June 2015 on hn, just like I did last month. I was even less picky than I was last month. Basically if something in the job post caught my eye (location, technology, market, name, whatever) I tried to put them here. Link to their site, their Hn post, a short summary, and where they were hiring for. People still suck at describing what they do on their website.

@icco
icco / scrape.rb
Last active August 29, 2015 14:22
Scrape all of unsplash.com
#! /usr/bin/env ruby
require 'nokogiri'
require 'open-uri'
require 'net/http'
require 'typhoeus'
urls = []
(1...20).each do |i|
doc = Nokogiri::HTML(open("https://unsplash.com/grid?page=#{i}"))
@icco
icco / test
Created January 22, 2009 04:38
huh?
@icco
icco / gist:53513
Created January 27, 2009 20:15
A look into gists
<?php print "It's a trap!"; ?>
@icco
icco / gist:66792
Created February 19, 2009 08:02
[gist: ####] formatting with PHP
<?php
// Gist replacement inspired by http://github.com/guitsaru/code-feather/
if(preg_match("/\[gist: ([0-9]+)\]/i", $out, $matches)) {
return '<script src="http://gist.github.com/'.$matches[1].'.js"></script>';
}
// Can also be done in one line.
$out = preg_replace("/\[gist: ([0-9]+)\]/i", '<script src="http://gist.github.com/\\1.js"></script>', $out);
?>