Create Bookmarklet (browser bookmark that executes Javsacript) to copy a given text to Clipboard.
This is the base javascript:
(function (text) {
var node = document.createElement('textarea')
var selection = document.getSelection()| ''' | |
| This script performs efficient concatenation of files stored in S3. Given a | |
| folder, output location, and optional suffix, all files with the given suffix | |
| will be concatenated into one file stored in the output location. | |
| Concatenation is performed within S3 when possible, falling back to local | |
| operations when necessary. | |
| Run `python combineS3Files.py -h` for more info. | |
| ''' |
| /** | |
| * SELECT2 | |
| * | |
| * Renders Select2 - jQuery based replacement for select boxes | |
| * | |
| * Requires an 'options.values' value on the schema. | |
| * Can be an array of options, a function that calls back with the array of options, a string of HTML | |
| * or a Backbone collection. If a collection, the models must implement a toString() method | |
| */ | |
| Backbone.Form.editors.Select2 = Backbone.Form.editors.Base.extend({ |
| #!/usr/bin/env bash | |
| curl https://s3.amazonaws.com/heroku-jvm-buildpack-vi/vim-7.3.tar.gz --output vim.tar.gz | |
| mkdir vim && tar xzvf vim.tar.gz -C vim | |
| export PATH=$PATH:/app/vim/bin |