WWDC 2006 2007 2008 2009 2010 2011 2012 2013 2014
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
#!/usr/bin/env ruby | |
XCODE_PATH = File.expand_path(File.join(`xcode-select -p`.chomp, '../..')) | |
def open_cmd(pattern) | |
files = Dir.glob(pattern) | |
`open -a "#{XCODE_PATH}" "#{files.first}"` and exit if files.count == 1 | |
end | |
open_cmd '*.xcworkspace' |
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
esphome: | |
name: shabadge | |
esp32: | |
board: esp32-pro | |
logger: | |
wifi: | |
ssid: !secret wifi_ssid |
OlderNewer