Topics
- Partials
- content_for
- Form/Data submission
- Content (CSS/Scripts) Bundling
- Scripts, Content, Data caching
- Memoization
- Rails Caching
- Plugging in validation
| Goliath National Bank # Client Name | |
| www.example.com # Domain I already own | |
| goliath.example.com # Desired subdomain for client's documentation | |
| goliath.example.com # AWS S3 Bucket Name | |
| 0123 # AWS Key | |
| 3210 # AWS Secret Key |
| SUDO defaults write com.apple.Finder AppleShowAllFiles YES; killall Finder |
Topics
| /*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
| /* ========================================================================== | |
| HTML5 display definitions | |
| ========================================================================== */ | |
| /** | |
| * Correct `block` display not defined in IE 8/9. | |
| */ |
I was assigned the task to renew the SSL for a client that already was renewed on GoDaddy.
openssl genrsa -des3 -out server.pass.key 2048
openssl rsa -in server.pass.key -out server.key
openssl req -nodes -new -key server.key -out server.csr
| module.exports = function(grunt) { | |
| // Project configuration. | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| uglify: { | |
| options: { | |
| banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n' | |
| }, | |
| build: { |
| # Ack is a command line tool that is better than Grep, betterthangrep.com | |
| # Make sure Ack knows how to search common filetypes used in Rails projects | |
| --type-add=css=scss | |
| --type-add=js=hbs | |
| --type-add=js=coffee |
| /* @include font-face(SourceSansPro, '/fonts/Source_Sans_Pro/SourceSansPro-Regular'); */ | |
| @font-face { | |
| font-family: SourceSansPro; | |
| font-weight: normal; | |
| font-style: normal; | |
| src: url(/assets/Source_Sans_Pro/SourceSansPro-Regular.eot); | |
| src: url(/assets/Source_Sans_Pro/SourceSansPro-Regular.eot?#iefix) format("embedded-opentype"), | |
| url(/assets/Source_Sans_Pro/SourceSansPro-Regular.woff) format("woff"), | |
| url(/assets/Source_Sans_Pro/SourceSansPro-Regular.ttf) format("truetype"), |