- Make Login Page
- Password
- HTML5 Validation
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
0 errors | |
25 pool | |
Loading production environment (Rails 4.0.0) | |
2.0.0p247 :001 > DenormalizedUserTrackOrganizationCampaignActions.count | |
(203.6ms) SELECT COUNT(*) FROM "denormalized_user_track_organization_campaign_actions" | |
=> 1141062 | |
2.0.0p247 :002 > UserTrackOrganizationCampaignAction.count | |
(173.8ms) SELECT COUNT(*) FROM "user_track_organization_campaign_actions" |
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://www.anggrianto.com/blog/install-puppet-and-puppet-master-on-ubuntu/ | |
sudo apt-get -y install puppetmaster | |
# http://developer.rackspace.com/blog/using-puppet-with-cloud-servers.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
Spin up Ubuntu 12.04 machine. | |
Install DevStack | |
#Deploy OpenShift Origin on OpenStack | |
https://www.youtube.com/watch?v=Hv3De3DxBgg | |
#Git Repo for | |
https://github.com/openstack/heat/ |
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
# Done in /home/jthullbery | |
# http://askubuntu.com/questions/245563/running-minecraft-server-on-ubuntu-server |
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
# Import | |
# -d == database name | |
psql -d prod_back_up -f <file> | |
# Create DB | |
createdb prod_back_up | |
createdb --locale=en_US.utf8 -E UTF8 kpi_prod | |
# Destroy DB | |
dropdb prod_back_up |
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
source 'https://rubygems.org' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.0.0' | |
# Use postgrew as the database for Active Record | |
gem 'pg' | |
# Use AwesomeNestedSet from collectiveidea | |
gem 'awesome_nested_set', "~> 3.0.0.rc.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
http://lifehacker.com/move-your-macs-dock-to-the-corner-with-a-terminal-comm-1467545452 |
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://mp3splt.sourceforge.net/mp3splt_page/debian_downloads.php?version=Precise&ubuntu=true | |
# Add source | |
apt-get update | |
apt-get install libmp3splt0-mp3 libmp3splt0-ogg libmp3splt0-flac mp3splt mp3splt-gtk |
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
# puppet module install puppetlabs/postgresql | |
class { 'postgresql::server': | |
config_hash => { | |
'ip_mask_deny_postgres_user' => '0.0.0.0/32', | |
'ip_mask_allow_all_users' => '0.0.0.0/0', | |
'ipv4acls' => ['host all all 127.0.0.1/32 md5 '], | |
'listen_addresses' => '*', | |
'manage_pg_hba_conf' => true, | |
}, | |
} |