8:00 AM - 9:00 AM: Part 1 - Lessons 1-3
9:00 AM - 10:00 PM: Part 1 - Lessons 4-7
Break
Hey there, I'm Ben, one of the developers working on FormKeep: the form backend for designers and developers. | |
Over the next few months, we're going to be investing heavily in the product and I want to make sure we're building the features that *you* want. To ensure that happens, would you please take this 5-minute survey? | |
I'm only sending this to a handful of our active users, so every response counts. I know it won't be the highlight of your week but it'll mean that future FormKeep changes will make it even better for you. | |
Side bonus: the entire survey is keyboard-navigable. No mouse required! | |
Thank you to the hundredth power :) |
" A minimal vimrc for new vim users to start with. | |
" | |
" Referenced here: http://www.benorenstein.com/blog/your-first-vimrc-should-be-nearly-empty/ | |
" Original Author: Bram Moolenaar <[email protected]> | |
" Made more minimal by: Ben Orenstein | |
" Last change: 2012 Jan 20 | |
" | |
" To use it, copy it to | |
" for Unix and OS/2: ~/.vimrc |
javascript:if(document.getSelection){s=document.getSelection();}else{s='';};document.location='https://pinboard.in/add?later=yes&noui=yes&jump=close&next=same&url='+encodeURIComponent(location.href)+'&description='+encodeURIComponent(s)+'&title='+encodeURIComponent(document.title) |
#!/usr/bin/env python | |
import sys, re | |
hours_re = re.compile(r'([-+] \d+)h \b', re.X) | |
total = 0 | |
for line in sys.stdin: | |
total += sum(int(hour) for hour in hours_re.findall(line)) | |
print line.strip() |
def render | |
print " " | |
(0..7).each { |column_num| print " #{column_num} " } | |
puts "" | |
board.each_with_index do |row, row_num| | |
print row_num | |
row.each_with_index do |piece, col_num| | |
if invalid_board_moves.include?([row_num, col_num]) | |
print (piece ? piece.render : " ").colorize(background: :white) | |
else |
$ defaults write com.pilotmoon.popclip UseShortTitles -bool YES | |
$ killall PopClip && open -a PopClip |
javascript:(function(){var p=document.createElement("p");p.innerHTML="<strong>Loading…</strong>";p.id="loadingp";p.style.padding="20px";p.style.background="#fff";p.style.left="20px";p.style.top=0;p.style.position="fixed";p.style.zIndex="9999999";p.style.opacity=".85";document.body.appendChild(p);document.body.appendChild(document.createElement("script")).src="https://cdn.rawgit.com/ttscoff/6109434/raw/Bullseye.js?x="+(Math.random());})(); |
#!//usr/bin/env ruby | |
require 'bundler/setup' | |
require 'opml_saw' | |
require 'json' | |
require 'net/https' | |
require 'uri' | |
# | |
# Enter your email and password for feedwrangler below | |
# |