- 1450: Blackletter (Johannes Gutenberg)
- Roman / Serif (Nicloas Jenson)
- italics (Aldus Manutius)
- 1530s: Old Style (William Caslon): thick serifs, low contrast between thick & theen strokes
- 1750s: Transitional (John Baskerville)
- 1784: Modern (Didot, 1767 "Bodoni", Giambattista Bodoni)
- 1815: Slab Serif (advertising)
- 1816: Sans Serif (William Caslon IV)
- Geometric Sans (1927 "Futura", Paul Renner): simple geometric shapes
This file contains 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
# Recursive wget with link rewriting to point to local/relative paths | |
wget -rk <url> |
This file contains 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
// api/controllers/AuthController.js | |
var passport = require('passport'); | |
var AuthController = { | |
login: function (req,res) | |
{ | |
res.view(); | |
}, |
This file contains 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
require 'rubygems' | |
require 'wirble' | |
require 'pp' | |
Wirble.init | |
Wirble.colorize | |
class Object | |
def local_methods(regex = nil) | |
(methods - Object.instance_methods).grep(/#{regex}/).sort |