- Overview of client site
- Overview of the admin site
- Overview of setting up a banner
- Mock website for 300x250 wrapper
- Mock website for 300x600 transparent
- Mock website for 160x600 native
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
1) Turn off Apache on prod1-app1, prod1-app2, prod1-app3 | |
2) Turn off replication on slave | |
3) Test login works | |
4) Test adding file works on client site | |
4.5) Update DNS | |
5) Setup redirects on prod1-app1 prod1-app2, prod1-app3 | |
6) Turn on apache on prod1-app1 prod1-app2, prod1-app3 |
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
1 - Create Artists Table | |
2 - Add new Track(hotttness, echonest_id, etc...) columns to Tracks Table | |
3 - Create GenreRelations Table | |
4 - Create Genres Table | |
5 - Add ActiveRecord to ruby script | |
6 - Define AR Models for all existing tables | |
7 - Define relationships between all tables | |
8 - Test that that works :) | |
9 - Loop over all distinct Artists pulled from the Tracks table to get a superset of Artist to query to EchoNest | |
10 - For each artist perform the following: |
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
+ Shortcuts for jump to definition have changed: | |
For Mac OS X: | |
* Jump to definition = ``Control+Click`` | |
* Jump to definition = ``Control+Command+Alt+Up`` | |
* Go back = ``Control+Command+Alt+Left`` | |
* Manual CodeIntel = ``Control+Shift+space`` |
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
To have launchd start mongodb at login: | |
ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents | |
Then to load mongodb now: | |
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist | |
Or, if you don't want/need launchctl, you can just run: | |
mongod --config /usr/local/etc/mongod.conf |
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
cucumber features/client/client_site_edit_ad_tag_campaign_with_ad_tag.feature:3 # Scenario: Client Site Create Reward Extension | |
cucumber features/client/client_site_edit_ad_tag_campaign_with_creative.feature:3 # Scenario: Client Site Create Reward Extension | |
cucumber features/client/client_site_new_ad_tag_campaign_with_ad_tag.feature:3 # Scenario: Client Site Create Reward Extension | |
cucumber features/client/client_site_new_ad_tag_campaign_with_creative.feature:3 # Scenario: Client Site Create Reward Extension | |
cucumber features/client/client_site_publisher_campaign_status.feature:3 # Scenario: Check Client Site Rewards Campaign Status |
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://golang.org/doc/effective_go.html <--- Good read | |
http://tour.golang.org/ <--- GREAT Tutorials | |
https://gobyexample.com/ <--- Real World Examples That Makes Sense | |
http://golang.org/doc/code.html <--- I read the beginning of this | |
go get <github 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
git archive master | tar -x -C ~/Desktop/dropbox/ |
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 'benchmark' | |
tmp = {} | |
tmp['100,000,000'] = Benchmark.measure { | |
100000000.times do |x| | |
puts 'phineas and ferb! ' + x.to_s | |
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
# http://askubuntu.com/questions/134425/how-can-i-chroot-sftp-only-ssh-users-into-their-homes |