One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| # Notes | |
| # Using iCloud Drive, you can sync your Sublime Text 3 | |
| # plugins and prefs so you can always have the same setup | |
| # Prerequisites | |
| # Make sure both machines have the latest version of OSX 10.10.x with | |
| # Yosemite or higher and iCloud Drive turned on | |
| # Quit ST3 |
| require('font-awesome/css/font-awesome.css'); | |
| document.body.innerHTML = '<i class="fa fa-fw fa-question"></i>'; |
To remove a submodule you need to:
| 'use strict'; | |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var del = require('del'); | |
| var uglify = require('gulp-uglify'); | |
| var gulpif = require('gulp-if'); | |
| var exec = require('child_process').exec; | |
| var notify = require('gulp-notify'); |
| #!/usr/bin/env ruby | |
| # encoding: utf-8 | |
| # tag primary folders =Tagname | |
| # target them with #Tagname | |
| # tag subfolders with @nickname | |
| # target them with :nickname | |
| # if no tagged folder exists but there's a matching folder name, that's used | |
| # otherwise it will create folders based on :tags | |
| # :tags can be strung together :bt:Drafts:testing for nesting | |
| # Only one #Tag and one :path should exist in a file's tags |
| function string_to_slug (str) { | |
| str = str.replace(/^\s+|\s+$/g, ''); // trim | |
| str = str.toLowerCase(); | |
| // remove accents, swap ñ for n, etc | |
| var from = "àáäâèéëêìíïîòóöôùúüûñç·/_,:;"; | |
| var to = "aaaaeeeeiiiioooouuuunc------"; | |
| for (var i=0, l=from.length ; i<l ; i++) { | |
| str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i)); | |
| } |
| #!/usr/bin/env ruby | |
| if ARGV[0].nil? || ARGV[0].match(/-h/) | |
| puts "Usage : #{$0} github_username dash_sqlite_db char_appended_to_keyword [no_comments]" | |
| exit | |
| end | |
| require 'net/http' | |
| require 'open-uri' | |
| #require 'awesome_print' |
| # ~/.config/fish/config.fish | |
| . ~/.config/fish/fish_prompt.fish | |
| set fish_greeting '' # turn off greeting | |
| function fish_title;end | |
| alias vi 'vim' |