Developed by [Melanie Archer](link to repo).
Description of app...
clone, download, serve
| { | |
| "env": { | |
| "node": true, | |
| "jquery": true, | |
| "browser": true | |
| }, | |
| "ecmaFeatures": {}, | |
| "globals": {}, | |
| "plugins": [ | |
| "eslint-plugin-smells" |
| // based on jQuery Core & Elijah Manor (http://www.elijahmanor.com/control-the-complexity-of-your-javascript-functions-with-jshint/) | |
| { | |
| "globals": { | |
| "console": false, | |
| "jQuery": false, | |
| "_": false | |
| }, | |
| "maxparams": 5, | |
| "maxdepth": 5, | |
| "maxstatements": 25, |
| # foo_test.rb | |
| class Meme | |
| def i_can_has_cheezburger? | |
| "OHAI!" | |
| end | |
| def will_it_blend? | |
| "YES!" | |
| end |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| class BoggleBoard | |
| def initialize(grid) | |
| @grid = grid | |
| end | |
| def create_word(*coords) | |
| coords.map { |coord| @grid[coord.first][coord.last] }.join("") | |
| end | |
| def get_row(row) |
#Documentation
#Contribution
#JavaScript
| alias ls='ls -al -G' | |
| alias crm='open -a "Google Chrome" --args --proxy-pac-url=http://[workplace proxy address].pac' | |
| alias bcc='bower cache-clean' | |
| alias mx='cd /Library/WebServer/Documents/mds; ls -al' | |
| alias ix='cd /Library/WebServer/Documents/iids; ls -al' | |
| alias g='grunt' | |
| alias rl='source ~/.bash_profile' |
| // Core variables and mixins. | |
| // Unless otherwise noted, all @imports are from standard Bootstrap. | |
| @import "variables.less"; // Modify this for custom colors, font-sizes, etc | |
| @import "mixins.less"; // Note: this is where Bootstrap establishes those '.span[...]' styles | |
| @import "/css/less/lesshat/lesshat.less"; // Create your own Frankengrid by importing mixins from totally different libraries! | |
| // CSS Reset | |
| @import "reset.less"; |
| -- Make sure a presentation is opened in Keynote. If not, notify the user and stop. | |
| tell application "Keynote" | |
| if (front slideshow exists) = false then | |
| display alert "Unable to proceed." message "Please open a presentation in Keynote." | |
| return | |
| end if | |
| set extractBody to button returned of (display alert "Would you like to extract slide content too?" buttons {"Yes", "No"}) = "Yes" | |
| -- Target the front presentation. |