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
| Verifying my Blockstack ID is secured with the address 1NmiL9ksEJYQ8us5TSfqyc82kiE5KK2Vv https://explorer.blockstack.org/address/1NmiL9ksEJYQ8us5TSfqyc82kiE5KK2Vv |
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://code.angularjs.org/1.2.27/angular-animate.js | |
| https://code.angularjs.org/1.2.27/angular-cookies.js | |
| https://code.angularjs.org/1.2.27/angular-loader.js | |
| https://code.angularjs.org/1.2.27/angular-mocks.js | |
| https://code.angularjs.org/1.2.27/angular-resource.js | |
| https://code.angularjs.org/1.2.27/angular-route.js | |
| https://code.angularjs.org/1.2.27/angular-sanitize.js | |
| https://code.angularjs.org/1.2.27/angular-scenario.js |
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
| // slides - from Jibe Hackathon | |
| http://slides.com/hunterpowers/nginx-subdomains#/ | |
| -------------------------------------------------------------------------------- | |
| create a droplet | |
| hostname - livefromjibe | |
| select a size - $5/mo | |
| select region - new york 2 | |
| select image - applications / mean on ubuntu 14.04 | |
| settings - leave as default |
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
| File.open('urls.txt').each_line{ |url| | |
| puts url | |
| } |
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
| -------------------------------------------------------------------------------- | |
| NAMES | |
| -------------------------------------------------------------------------------- | |
| HotOrNotForCats.com | |
| ThatCatRocks.com // Rocks or Not instead of Hot or Not | |
| RankThatCat.com // sounds like a game show ( could play a jingle on load ) | |
| HerePrettyKitty.com | |
| catVcat.com | |
| Yourcatmycat |
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
| # A sample Guardfile | |
| # More info at https://github.com/guard/guard#readme | |
| require 'active_support/core_ext' | |
| guard 'spork', :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' } do | |
| watch('config/application.rb') | |
| watch('config/environment.rb') | |
| watch(%r{^config/environments/.+\.rb$}) | |
| watch(%r{^config/initializers/.+\.rb$}) |
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
| require 'sinatra' | |
| get '/' do | |
| "Hello World" | |
| 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
| def print_numbers | |
| @file.each do |line| | |
| number = line[:homephone] | |
| number = number.delete("-(). ") | |
| if number.length == 10 | |
| # Do Nothing | |
| elsif number.length == 11 | |
| if number.start_with?("1") | |
| number = number[1..-1] |