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
| git clone https://github.com/wmluke/dokku-domains-plugin.git /var/lib/dokku/plugins/domains-plugin | |
| git clone https://github.com/jeffutter/dokku-mongodb-plugin.git /var/lib/dokku/plugins/mongodb | |
| dokku plugins-install |
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
| 'use strict'; | |
| var gulp = require('gulp'), | |
| wintersmith = require('wintersmith'), | |
| env = wintersmith('./config.json'); | |
| gulp.task('build', function() { | |
| return env.build(); | |
| }); |
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
| @richardbranson | |
| @kevingc When you’re not 100% convinced it’s making a positive difference to people’s lives. Get the advice of mentors too #askrichard | |
| @richardbranson | |
| @maxcantoo It’s pretty simple – be passionate about your project and try to make a positive difference in the world #askrichard | |
| @richardbranson | |
| @santiagomanta01 I always find that I’m most productive when I make a series of lists and get in some morning exercise. You? #AskRichard | |
| @richardbranson |
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
| ; Variables definition | |
| ; ----------------------------------------------------------------------------- | |
| EnvGet, userProfile, USERPROFILE | |
| ; Launch or toggle program, http://lifehacker.com/5468862/create-a-shortcut-key-for-restoring-a-specific-window | |
| ; ----------------------------------------------------------------------------- | |
| ToggleWinMinimize(WindowTitle) | |
| { | |
| SetTitleMatchMode,2 | |
| DetectHiddenWindows, Off |
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
| " color scheme | |
| syntax enable | |
| "set background=dark | |
| colorscheme solarized | |
| let g:solarized_underline=0 | |
| " line numbers | |
| set relativenumber | |
| " search |
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 | |
| wget --recursive --no-clobber --page-requisites --html-extension --convert-links --restrict-file-names=unix --no-parent www.rubymotion.com/developer-center/api/_index.html |
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
| # Remove Defaults | |
| rename-item alias:\gc gk -force | |
| rename-item alias:\gcm gkm -force | |
| rename-item alias:\gl gll -force | |
| rename-item alias:\gsn gsnn -force | |
| rename-item alias:\gm gmm -force | |
| # Git | |
| function git-status { git status } | |
| Set-Alias -Name gst -Value git-status |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <key name="Software"> | |
| <key name="ConEmu"> | |
| <key name=".Vanilla" modified="2014-03-07 16:32:27" build="140304"> | |
| <value name="ColorTable00" type="dword" data="00423607"/> | |
| <value name="ColorTable01" type="dword" data="00d28b26"/> | |
| <value name="ColorTable02" type="dword" data="00009985"/> | |
| <value name="ColorTable03" type="dword" data="000089b5"/> | |
| <value name="ColorTable04" type="dword" data="002f32dc"/> | |
| <value name="ColorTable05" type="dword" data="008236d3"/> |
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
| // Generated on 2013-12-20 using generator-angular-fullstack 1.0.1 | |
| 'use strict'; | |
| // # Globbing | |
| // for performance reasons we're only matching one level down: | |
| // 'test/spec/{,*/}*.js' | |
| // use this if you want to recursively match all subfolders: | |
| // 'test/spec/**/*.js' | |
| module.exports = function (grunt) { |
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
Show hidden characters
| /** | |
| * Airbnb JSHint settings for use with SublimeLinter and Sublime Text 2. | |
| * | |
| * 1. Install SublimeLinter at https://github.com/SublimeLinter/SublimeLinter | |
| * 2. Open user preferences for the SublimeLinter package in Sublime Text 2 | |
| * * For Mac OS X go to _Sublime Text 2_ > _Preferences_ > _Package Settings_ > _SublimeLinter_ > _Settings - User_ | |
| * 3. Paste the contents of this file into your settings file | |
| * 4. Save the settings file | |
| * | |
| * @version 0.3.0 |