I hereby claim:
- I am clayton on github.
- I am claytonlz (https://keybase.io/claytonlz) on keybase.
- I have a public key ASAt1nwofY68INXpqvbj7EAYtv4CLNi9hzkLEYsQ1vUzHgo
To claim this, I am signing this object:
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://www.youtube.com/watch?v=6Bia81dI-JE | |
| Building on SOLID foundations - Steve Freeman & Nat Pryce | |
| 10:00 - Ravioli Code | |
| 12:15 - Spaghetti and Meatballs | |
| * Brittle event flow tying objects together | |
| 13:30 - Tangle of Wires | |
| * You can wiring your objects together, using DI, but everything | |
| is just tangled together with all of this wiring between objects |
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/local/nginx/logs/*.log { | |
| weekly | |
| missingok | |
| rotate 52 | |
| compress | |
| delaycompress | |
| notifempty | |
| create 640 root adm | |
| sharedscripts | |
| postrotate |
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
| # Installation | |
| brew install ffmpeg --with-vpx --with-vorbis --with-libvorbis --with-vpx --with-vorbis --with-theora --with-libogg --with-libvorbis --with-gpl --with-version3 --with-nonfree --with-postproc --with-libaacplus --with-libass --with-libcelt --with-libfaac --with-libfdk-aac --with-libfreetype --with-libmp3lame --with-libopencore-amrnb --with-libopencore-amrwb --with-libopenjpeg --with-openssl --with-libopus --with-libschroedinger --with-libspeex --with-libtheora --with-libvo-aacenc --with-libvorbis --with-libvpx --with-libx264 --with-libxvid | |
| # Easy Peasy | |
| ffmpeg -i video.mp4 video.webm |
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/thoughtbot/capybara-webkit/issues/14 | |
| feature "My Feature", "Description", :js => true do | |
| background do | |
| # some setup | |
| visit my_starting_path | |
| end | |
| context "Story Name" do | |
| context "When I follow path A" 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
| Process: webkit_server [46084] | |
| Path: /Users/integrum/.rvm/gems/ruby-1.9.2-p136@bookmans/gems/capybara-webkit-0.1.6/bin/webkit_server | |
| Identifier: webkit_server | |
| Version: ??? (???) | |
| Code Type: X86-64 (Native) | |
| Parent Process: ruby [46071] | |
| Date/Time: 2011-04-14 11:05:21.759 -0700 | |
| OS Version: Mac OS X 10.6.7 (10J869) | |
| Report Version: 6 |
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
| // | |
| // dice.h | |
| // craps | |
| // | |
| // Created by Clayton Lengel-Zigich on 7/26/10. | |
| // Copyright 2010 __MyCompanyName__. All rights reserved. | |
| // | |
| @interface Dice : NSObject |
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
| desc "Show ps" | |
| task :ps do | |
| run 'ps ax' do | channel, stream, data | | |
| puts data if stream == :out | |
| if stream == :err | |
| puts "[err: #{channel[:host]}] #{data}" | |
| break | |
| end | |
| end | |
| end |
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
| RED="\[\033[0;31m\]" | |
| YELLOW="\[\033[0;33m\]" | |
| GREEN="\[\033[0;32m\]" | |
| BLUE="\[\033[0;34m\]" | |
| LIGHT_RED="\[\033[1;31m\]" | |
| LIGHT_GREEN="\[\033[1;32m\]" | |
| WHITE="\[\033[1;37m\]" | |
| LIGHT_GRAY="\[\033[0;37m\]" | |
| COLOR_NONE="\[\e[0m\]" |
NewerOlder