I hereby claim:
- I am kiwiroy on github.
- I am kiwiroy (https://keybase.io/kiwiroy) on keybase.
- I have a public key ASD1N7MlRp-BARORAS7gILH8PYpTlauz6Sfoo7vGhqeNLwo
To claim this, I am signing this object:
| /local/ |
I hereby claim:
To claim this, I am signing this object:
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #!/usr/bin/env perl | |
| use Mojolicious::Lite; | |
| use Mango; | |
| use Mango::BSON 'bson_oid'; | |
| helper mango => sub { state $mango = Mango->new($ENV{PASTEDB}) }; | |
| helper pastes => sub { shift->mango->db->collection('pastes') }; | |
| get '/' => 'submit'; |
| # creates a sparsebundle disk image with a 128MB band size | |
| MACHINE_NAME=your-machine-name | |
| echo $MACHINE_NAME | |
| hdiutil create -size 900g -type SPARSEBUNDLE -nospotlight -volname "Backup of $MACHINE_NAME" -fs "Case-sensitive Journaled HFS+" -imagekey sparse-band-size=262144 -verbose ./$MACHINE_NAME.sparsebundle |