A Pen by Nathan Bingham on CodePen.
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
| Mig Reyes - Web Designer at Basecamp | |
| * Don't be defined by your job title | |
| * Things don't have to be perfect | |
| * Move fast and make ugly things sometimes | |
| Benjamin Dauer - Product Designer NPR | |
| * Working on Pandora for NPR | |
| * The best interfaces are those that you don't notice | |
| * The importance of the human element |
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
| # https://github.com/gjtorikian/html-proofer | |
| # Add `gem 'html-proofer'` to your Gemfile | |
| # Run `bundle` | |
| # Create a file named `Rakefile` | |
| # Paste the code below in it | |
| # Run `rake test` from the commandline. Issues will be reported. | |
| require 'html/proofer' | |
| task :test do |
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
| ==> Downloading http://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/v9.0.4/postgresql-9.0.4.tar.bz2 | |
| File already downloaded in /Users/nathan/Library/Caches/Homebrew | |
| /usr/bin/tar xf /Users/nathan/Library/Caches/Homebrew/postgresql-9.0.4.tar.bz2 | |
| Warning: Detected a framework Python that does not have 64-bit support in: | |
| /Library/Frameworks/Python.framework/Versions/Current/Python | |
| e configure script seems to prefer this version of Python over any others, | |
| you may experience linker problems as described in: | |
| http://osdir.com/ml/pgsql-general/2009-09/msg00160.html |
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
| <?xml version="1.0"?> | |
| <project name="Impact Ant Build" basedir="." default="full-build"> | |
| <!-- Change these properties based on your project --> | |
| <!-- Project meta data --> | |
| <property name="project.name" value="Resident Raver"/> | |
| <property name="company.name" value="GameCook"/> | |
| <property name="company.site" value="http://gamecook.com"/> | |
| <property name="project.version" value="0.8.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
| // Sync enemy positions; uses Underscore.js | |
| _.each(data.enemies, function(e){ | |
| var enemy = this.getEntityByRemoteName(e.remoteName); | |
| // Reset the entities position | |
| if(enemy) { | |
| enemy.pos = e.pos; | |
| } |
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
| // Code injected into the Entity class | |
| ig.Entity.inject({ | |
| // Abstracting the controls | |
| controls: { | |
| up: false, | |
| down: false, | |
| left: false, | |
| right: false | |
| }, |
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 bash | |
| i=0 | |
| if [ ! -d "./images" ]; then | |
| mkdir ./images | |
| fi |
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
| #brew update | |
| Error: no such file to load -- tempfile | |
| Please report this bug: | |
| https://github.com/mxcl/homebrew/wiki/bug-fixing-checklist | |
| /usr/local/Library/Homebrew/extend/pathname.rb:108:in `require' | |
| /usr/local/Library/Homebrew/extend/pathname.rb:108:in `atomic_write' | |
| /usr/local/Library/Homebrew/cmd/untap.rb:41:in `unlink_tap_formula' | |
| /usr/local/Library/Homebrew/cmd/update.rb:32:in `update' | |
| /usr/local/bin/brew:83:in `send' |
OlderNewer