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
| <div style="text-align: center;"> | |
| <p> | |
| <a href="http://www2.humboldt.edu/elearning/faculty-resources/qolt"> | |
| <img style="width: 100%; max-width: 500px; min-width: 150px;" src="http://i.imgur.com/4BVbUpB.png" alt="HSU QOLT Reviewed Badge" /> | |
| </a> | |
| </p> | |
| <p>This course has undergone the <a href="http://www2.humboldt.edu/elearning/faculty-resources/qolt">HSU QOLT</a> review process.</p> | |
| </div> |
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
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ | |
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! | |
| Someone could be eavesdropping on you right now (man-in-the-middle attack)! | |
| It is also possible that a host key has just been changed. | |
| The fingerprint for the RSA key sent by the remote host is | |
| 7d:ea:d0:a8:3a:8b:44:27:94:9f:f9:81:83:0e:1b:14. | |
| Please contact your system administrator. | |
| Add correct host key in /Users/fiore/.ssh/known_hosts to get rid of this message. |
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
| ~ $ gem install jekyll | |
| ~ $ jekyll new my-awesome-site | |
| ~ $ cd my-awesome-site | |
| ~/my-awesome-site $ jekyll serve | |
| # => Now browse to http://localhost:4000 |
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
| # Example .htaccess for Drupal 7.38 at Humboldt State University | |
| # Make sure to change RewriteBase to point to your site's location. | |
| # | |
| # Apache/PHP/Drupal settings: | |
| # | |
| # Protect files and directories from prying eyes. | |
| <FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\..*|Entries.*|Repository|Root|Tag|Template)$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig\.save)$"> | |
| Order allow,deny |
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
| <Directory /var/www/html/> | |
| Options FollowSymLinks | |
| AllowOverride All | |
| </Directory> |
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
| #rerun-button { display: none; } |
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
| # config/initializers/carrier_wave.rb | |
| if Rails.env.production? | |
| CarrierWave.configure do |config| | |
| config.fog_credentials = { | |
| # Configuration for Amazon S3 | |
| :provider => 'AWS', | |
| :aws_access_key_id => ENV['S3_ACCESS_KEY'], | |
| :aws_secret_access_key => ENV['S3_SECRET_KEY'], | |
| :region => ENV['S3_REGION'] |
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
| $ heroku config:set S3_ACCESS_KEY=<access key> | |
| $ heroku config:set S3_SECRET_KEY=<secret key> | |
| $ heroku config:set S3_BUCKET=<bucket name> | |
| $ heroku config:set S3_REGION=<bucket region> |
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
| // functions.php | |
| add_theme_support( 'post-formats', array( 'link' ) ); |
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
| // Stay alive for one minute. | |
| // If you win, it gets harder (and more rewarding). | |
| // If you lose, you must wait a day before you can resubmit. | |
| // Remember, each submission gets a new random seed. | |
| // Determines if Warrior should use cleave | |
| // When? | |
| // - If cleave is ready AND | |
| // - If there are more than 2 enemies within cleave range | |
| this.shouldCleave = function() { |