This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mindset: The New Psychology of Success - Carol Dweck | |
Test Driven Development: By Example - Kent Beck | |
Implementation Patterns - Kent Beck | |
Wim Crouwel in his own words (http://www.lauwenprojects.com/projects.asp?id=114) | |
Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability - Steve Krug | |
Badass: Making Users Awesome - Kathy Sierra | |
Thinking with Type: A Critical Guide for Designers, Writers, Editors, & Students - Ellen Lupton | |
The Vignelli Canon - Massimo Vignelli (http://www.vignelli.com/canon.pdf) | |
Stop Stealing Sheep & Find Out How Type Works - Erik Spiekermann, E.M Ginger | |
Mental Models - Indi Young |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(function() { | |
var size, width = 1024, step = 64, selector, out = '', style = document.createElement('style') | |
for (size = 15; size < 32; size++) { | |
out += '@media (min-width: ' + width +'px) and (min-height: ' + (width * 0.7) +'px) {' | |
out += ' body, input, button, textarea { font-size: ' + size + 'px; }' | |
out += ' .column { max-width: ' + (width + step) + 'px; }' | |
out += ' }' | |
width += step | |
} | |
style.innerHTML = out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
General Info | |
Chat start time Oct 23, 2015 3:51:34 AM PST | |
Chat end time Oct 23, 2015 4:09:20 AM PST | |
Duration (actual chatting time) 00:17:45 | |
Operator Anurag | |
Chat Transcript | |
info: Hi, we are currently helping other customers in line ahead of you. We'll be with you as soon as possible. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(function() { | |
var out = [], style | |
// Scale up margins | |
function scale(template, from, to, min, max, step) { | |
for (width = from; width <= to; width += 2) { | |
out.push('@media (min-width: ' + width + 'px) { ' + | |
template.replace('[]', min + (width - from) / (to - from) * (max - min)) + ' }') | |
if (width > screen.width && width > screen.height) | |
break |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The goal of this guide is to define a workflow for generating icon webfonts that are 1. optimized for “pixel perfect” rendering at specific font-sizes and that 2. render consistently across modern platforms and browsers. | |
Glyphs.app settings and workflow | |
When you create a new font, remove all glyphs generated by default (first select them, then use the “-” button at the bottom). Icons should be created within a Unicode Private Use Area (PUA), not at the Unicode code points of existing characters. | |
In Glyphs.app, choose File → Font Info (⌘I), then select the “Font” tab. Set “units per Em” to 2048. You can also set a “Family Name” here. | |
Switch to the “Masters” tab. Set “Ascender”, “Cap Height”, and “x-Height” to 2048 and “Descender” to -128. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http') | |
var sleep = require('sleep') | |
var server = http.createServer(function (req, res) { | |
// console.log(req.headers); | |
req.on('data', function(chunk) { | |
console.log('chunk: %d bytes', chunk.length) | |
// console.log(chunk.toString('utf8')) | |
sleep.sleep(1) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.description a.autolink | |
{ | |
display: inline-block; | |
max-width: 250px; | |
text-overflow: ellipsis; | |
overflow: hidden; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Start the console (or whatever it’s called): | |
$ /Applications/Postgres.app/Contents/MacOS/bin/psql | |
Create a database: | |
thijs=# create database adj2013; | |
Import the dump: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
“the children came to a perfume shop. In the show window was a large jar of freckle | |
salve, and beside the jar was a sign, which read: DO YOU SUFFER FROM FRECKLES? | |
What does the sign say?” ask Pippi. She couldn’t read very well because she didn’t | |
want to go to school as other children did. | |
It says, ‘Do you suffer from freckles?’” said Annika. | |
Does it indeed?” said Pippi thoughtfully. “Well, a civil question deserves a civil | |
answer. Let’s go in.” |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
env = (function() { | |
var flags = {}, ua = navigator.userAgent, el = document.createElement('div'), video = document.createElement('video'), audio = document.createElement('audio'), root = document.documentElement, i | |
function flag(names) { | |
names = names.split(' ') | |
for (i = 0; i < names.length; i++) | |
flags[names[i]] = true | |
} | |
function classnames() { | |
var names = [], name | |
for(name in flags) if (flags.hasOwnProperty(name)) |