Skip to content

Instantly share code, notes, and snippets.

@cferdinandi
cferdinandi / trim.js
Created June 6, 2014 18:04
Remove whitespace from a string.
/**
* Remove whitespace from a string
* @private
* @param {String} string
* @returns {String}
*/
var trim = function ( string ) {
return string.replace(/^\s+|\s+$/g, '');
};
@cferdinandi
cferdinandi / umd-script-boilerplate.js
Last active December 10, 2023 10:23
A simple boilerplate for UMD JS modules.
(function (root, factory) {
if ( typeof define === 'function' && define.amd ) {
define([], factory(root));
} else if ( typeof exports === 'object' ) {
module.exports = factory(root);
} else {
root.myPlugin = factory(root);
}
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) {
@cferdinandi
cferdinandi / extend.js
Last active August 17, 2024 07:57
A native JS extend() function.
/**
* Merge defaults with user options
* @private
* @param {Object} defaults Default settings
* @param {Object} options User options
* @returns {Object} Merged values of defaults and options
*/
var extend = function ( defaults, options ) {
var extended = {};
var prop;
/*! loadJS: load a JS file asynchronously. [c]2014 @scottjehl, Filament Group, Inc. (Based on http://goo.gl/REQGQ by Paul Irish). Licensed MIT */
function loadJS( src ){
'use strict';
var ref = window.document.getElementsByTagName( 'script' )[ 0 ];
var script = window.document.createElement( 'script' );
script.src = src;
ref.parentNode.insertBefore( script, ref );
return script;
}
@cferdinandi
cferdinandi / kraken-addon-checklist.md
Last active August 29, 2015 14:05
Kraken add-on checklists...

Kraken

  • Kraken

Scripts

  • Buoy
  • Astro
  • Drop
  • Houdini
@cferdinandi
cferdinandi / terminal-cheat-sheet.txt
Last active April 2, 2025 15:59
Terminal Cheat Sheet
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@cferdinandi
cferdinandi / mountaineer.js
Last active January 21, 2020 20:50
Simple helper methods for climbing the DOM tree
/**
* Get closest DOM element up the tree that contains a class, ID, or data attribute
* @param {Element} elem The base element
* @param {String} selector The class or data attribute to look for
* @return {Boolean|Element} False if no match
*/
var getClosest = function (elem, selector) {
var firstChar = selector.charAt(0);
@cferdinandi
cferdinandi / sublime-text-prefs
Last active August 29, 2015 14:06
My Sublime Text preferences...
{
"color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme",
"find_selected_text": true,
"font_face": "Menlo",
"font_size": 14.0,
"highlight_line": true,
"hot_exit": false,
"ignored_packages":
[
"Vintage"

Deploying a subfolder to GitHub Pages

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.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).

@cferdinandi
cferdinandi / commonJS.js
Last active August 29, 2015 14:10
A common JS wrapper module.
(function (root, factory) {
if ( typeof define === 'function' && define.amd ) {
define('myPlugin', factory(root));
} else if ( typeof exports === 'object' ) {
module.exports = factory(root);
} else {
root.myPlugin = factory(root);
}
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) {