Skip to content

Instantly share code, notes, and snippets.

View jimmynotjim's full-sized avatar
☀️
Enjoying SoCal "Fall"

Jimmy Wilson jimmynotjim

☀️
Enjoying SoCal "Fall"
View GitHub Profile
@jimmynotjim
jimmynotjim / material-theme.terminal
Created December 11, 2015 01:11 — forked from mvaneijgen/material-theme.terminal
material-theme.terminal
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ANSIBlackColor</key>
<data>
YnBsaXN0MDDUAQIDBAUGKSpYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS
AAGGoKcHCBMXGyImVSRudWxs1QkKCwwNDg8QERJcTlNDb21wb25lbnRzVU5TUkdCXE5T
Q29sb3JTcGFjZV8QEk5TQ3VzdG9tQ29sb3JTcGFjZVYkY2xhc3NPECgwLjAyNzQ1MTAw
NjcgMC4yMTE3NjQ3MjMxIDAuMjU4ODIzNDg0MiAxTxAoMC4wMzkzODA3NDc4MiAwLjE2
@jimmynotjim
jimmynotjim / none_of_this_makes_sense.md
Last active December 7, 2018 19:48
None of this makes sense!

None of this makes sense!

‘s ok kid, I gotcha back

gotcha back

I promise the initial set is really most of what you’ll need to do on the command line (also called CLI) or in Git to go through the workshop.

Starters

@jimmynotjim
jimmynotjim / ideas.md
Last active October 15, 2015 19:09
CFPB Animation Workshop

Animation Workshop

Ideas

  • Animate an SVG
    • Animate an icon or illustration
  • Animate a font-icon
    • Animate the loading icon
  • Animate DOM Elements
  • Animate the v1 menu
Task Grunt Gulp
lint js 3.9s 1.81s
styles (sourcemaps takes forever) 2.6s 2.55s
scripts 4.92s 2.04s
copy 998ms 524ms
unit tests (only one in grunt) 16.5s 944ms
@jimmynotjim
jimmynotjim / markup.md
Last active August 29, 2015 14:16
Markup Standards

HTML Coding Standards

This documents outlines HTML code standards. The intent of the HTML standards is to foster cross-browser compatibility, accessibility, simplicity and maintainability.

Syntax

  • Use soft tabs with four spaces to guarantee code renders the same in any environment.
  • Nested elements should be indented once (four spaces).
@jimmynotjim
jimmynotjim / _sassy_link_underlines.md
Last active October 6, 2020 15:44
Sassy Link Underlines
@jimmynotjim
jimmynotjim / gist:e2e182eea6dedeb57109
Last active August 29, 2015 14:14
Pull Request Template
Short description explaining the highlevel reason for the pull request
## Additions
- List of additions made
- To the project
- Within this PR
## Removals

Install OS X 10.10 Yosemite in VirtualBox

(based on this pastebin i've found via Google, markdownified and adjusted to work with the official Yosemite release)

Yosemite's first developer preview was released right after Monday's WWDC opening keynote. For the general public, an open beta will be available to download later this summer. However, for those who want a sneak peek at the new hotness, there is a way to safely install it without risking your machine, using the free and powerful VirtualBox application from Oracle.

(LEGAL DISCLAIMER: This guide aims to explain how to create a virtual machine on a regularly purchased Apple computer, running a genuine Mac OS X operating system, for testing purposes only.)

(function () {
'use strict';
var gulp = require('gulp');
var glob = require('glob');
var del = require('del');
var $ = require('gulp-load-plugins')();
var pkg = require('./package.json');
@jimmynotjim
jimmynotjim / menus.js
Created October 8, 2014 20:57
Menu JS examples
// currently
$('button.toggleNav').on('click', function() {
$('.top-bar__dropdown').toggleClass('MenuIsOpen');
});
// better
// Ensures that you only open the menu adjacent to the button if there are more than one.
// Great for reusing the same code throughout for multiple dropdowns
$('.toggleNav').on('click', function() {