Skip to content

Instantly share code, notes, and snippets.

View tareiking's full-sized avatar
🥰
Inventing the future with friends

Tarei King tareiking

🥰
Inventing the future with friends
View GitHub Profile
stdin: is not a tty
==> default: Checking for guest additions in VM...
==> default: Checking for host entries
==> default: Setting hostname...
==> default: Configuring and enabling network interfaces...
==> default: Mounting shared folders...
default: /vagrant => /Users/tarei-air/Repo/chassis-109
default: /tmp/vagrant-puppet-3/manifests => /Users/tarei-air/Repo/chassis-109/puppet/manifests
==> default: Running provisioner: shell...
default: Running: /var/folders/cf/2zj6l2yd1xvgf643c_p_b30h0000gn/T/vagrant-shell20141203-34247-1ip46x4.sh
@tareiking
tareiking / notes.md
Last active September 28, 2015 18:40
CodeSchool Git Real notes
@tareiking
tareiking / TRT.sh
Created September 9, 2014 13:42
Theme Test Script
# Installer script for WP CLI and WP Theme testing
#
# @TODO: Add support for getting theme directly from TRAC.svn link which is given
# @TODO: Install pre-requisites
# @TODO: Install as an extension
###
# Install supercharger 'content' directory
git clone --recursive https://github.com/Chassis/Supercharger content
@tareiking
tareiking / functions.php
Created July 23, 2014 01:49
Remove pico defaults and load yah own
/**
* Roll-your-own pico javascript settings
*/
function change_pico_settings(){
if ( is_front_page() && wp_script_is( 'slider-main', 'enqueued' ) ) {
wp_dequeue_script( 'slider-main');
wp_enqueue_script( 'slider-main-custom', get_template_directory_uri() . '/assets/js/jquery.slider-main.js', array( 'jquery' ), '1.0', true );
}
@tareiking
tareiking / featured-image-column.php
Created July 14, 2014 23:56
Featured Image Column Plugin
@tareiking
tareiking / 0_reuse_code.js
Created June 5, 2014 23:56
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@tareiking
tareiking / Vagrantfile
Last active August 29, 2015 14:01
Vagrantfile for vagrant-chassis-digitalocean
# -*- mode: ruby -*-
# vi: set ft=ruby :
require "yaml"
# Load git-managed configuration
_config = YAML.load(
File.open(
File.join(File.dirname(__FILE__), "config.yaml"),
File::RDONLY
@tareiking
tareiking / nokogiri.sh
Last active August 29, 2015 14:01
Install nokogiri on mac os mavericks
## Need to have xcode installed
sudo xcode-select -s /Library/Developer/CommandLineTools/
sudo gem install nokogiri -- --with-xml2-include=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include/libxml2
@tareiking
tareiking / gist:08b377c367ed336d0362
Created May 13, 2014 08:39
List of FontAwesome icon names
fa-glass
fa-music
fa-search
fa-envelope-o
fa-heart
fa-star
fa-star-o
fa-user
fa-film
fa-th-large
@tareiking
tareiking / _typography.scss
Created May 12, 2014 10:20
http://stackoverflow.com/questions/2689265/can-git-undo-a-checkout-of-unstaged-filesGive LI item's font awesome icons instead .. and maintain padding values. Source
/* ================================================================================
#Lists
================================================================================ */
.content,
.sidebar {
ul, ol {
margin-left: 0;
list-style: none;
display: table;