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
| #!/bin/bash | |
| # From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/ | |
| # | |
| ARGS=2 | |
| E_BADARGS=99 | |
| if [ $# -ne $ARGS ] # correct number of arguments to the script; | |
| then |
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
| #!/usr/bin/env/bash | |
| # reformat json: read filename and write it again in the same name | |
| # | |
| # read JSON file and save it again reformatted | |
| # | |
| # usage: | |
| # `reformat my.json` | |
| reformat(){ | |
| node -e " | |
| var fs = require('fs') |
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
| #!/bin/bash | |
| FILE=/etc/yum.repos.d/nginx.repo | |
| sudo touch $FILE | |
| sudo chown root:root $FILE | |
| echo " | |
| [nginx] | |
| name=nginx repo | |
| baseurl=http://nginx.org/packages/rhel/$releasever/$basearch/ |
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
| # add this line to your `Gemfile`: | |
| gem 'sucker_punch' |
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: http://www.markbrilman.nl/2011/08/howto-convert-a-pfx-to-a-seperate-key-crt-file/ | |
| `openssl pkcs12 -in [yourfile.pfx] -nocerts -out [keyfile-encrypted.key]` | |
| What this command does is extract the private key from the .pfx file. Once entered you need to type in the importpassword of the .pfx file. This is the password that you used to protect your keypair when you created your .pfx file. If you cannot remember it anymore you can just throw your .pfx file away, cause you won’t be able to import it again, anywhere!. Once you entered the import password OpenSSL requests you to type in another password, twice!. This new password will protect your .key file. | |
| Now let’s extract the certificate: | |
| `openssl pkcs12 -in [yourfile.pfx] -clcerts -nokeys -out [certificate.crt]` |
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
| { | |
| "name": "angular2-webpack-starter", | |
| "version": "3.0.0", | |
| "dependencies": { | |
| "abbrev": { | |
| "version": "1.0.7", | |
| "from": "abbrev@>=1.0.0 <1.1.0", | |
| "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz" | |
| }, | |
| "accepts": { |
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
| @PageSpinner = | |
| spin: (ms=500)-> | |
| @spinner = setTimeout( (=> @add_spinner()), ms) | |
| $(document).on 'page:change', => | |
| @remove_spinner() | |
| spinner_html: ' | |
| <div class="modal hide fade" id="page-spinner" role="dialog"> | |
| <div class="modal-dialog modal-sm" role="document"> | |
| <div class="modal-content"> | |
| <div class="modal-header"> |
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
| # Load DSL and set up stages | |
| require 'capistrano/setup' | |
| # Include default deployment tasks | |
| require 'capistrano/deploy' | |
| # Include tasks from other gems included in your Gemfile | |
| # | |
| # For documentation on these, see for example: | |
| # |
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
| # Generic checkbox toggle select all/none functionality. | |
| # | |
| # | |
| # Given the following checkbox: | |
| # <input type="checkbox" class="js-toggle-all" | |
| # data-target=".approved-count" | |
| # data-count="#counter" | |
| # data-total="#total"> | |
| # | |
| # This checkbox kan toggle and count based on the selection of other checkboxes. |
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
| # Formatting and validation of Danish CPR number | |
| # when saving we will throw away the dash "-" in the SSN and show it when retrieving | |
| # | |
| # Custom retrieval of formatted value: This is done by the method | |
| # `formatted_cpr`. Use that in your views if you need it | |
| # | |
| # or in extreme cases you can override the getter method and call `formatted_cpr` | |
| # | |
| # Strategies for saving of unformatted value: | |
| # 1. use either `base.after_validation` to hook into callbacks. This is a little annoying |