Skip to content

Instantly share code, notes, and snippets.

View Jaace's full-sized avatar
:octocat:
🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥

Jason Boyle Jaace

:octocat:
🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jaace on github.
  • I am jaace (https://keybase.io/jaace) on keybase.
  • I have a public key ASBeHVYx2xcVloDUTROyYMP0orN6IeCZ-x5mFEYbP54mTwo

To claim this, I am signing this object:

@Jaace
Jaace / github-pr-expand-collapse.user.js
Last active February 13, 2018 15:56
Expand/Collapse button on Github PRs
// Add a button to Collapse or Expand comments in a GitHub PR.
//
// Install Tampermonkey and add this as a script
// ==UserScript==
// @name Github PRs: Expand / Collapse Comments.
// @namespace TBD
// @version 0.1
// @description Add a button to expand or collapse comments in a GitHub PR.
// @author Jason Boyle
@Jaace
Jaace / essentials-installer.sh
Last active June 26, 2017 23:41
Homebrew and Homebrew Cask Bundle Install
#!/bin/sh
# Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Verify that Command Line Tools are installed.
xcode-select --install
brew install wget
brew install nvm
@Jaace
Jaace / expand-collapse.user.js
Last active April 9, 2024 19:29
TamperMonkey Script: Gist expand / collapse files.
// Add a button to Collapse or Expand files in a Github Gist
//
// Install Tampermonkey and add this as a script
// ==UserScript==
// @name Github Gists: Expand / Collapse Files
// @namespace https://gist.github.com/Jaace/7b70d2bb19af63e10b144ed7d867eae0
// @version 0.1
// @description Add a button to expand or collapse files in github gists
// @author Jason Boyle
printf('
<link rel="apple-touch-icon" sizes="57x57" href="%1$s">
<link rel="apple-touch-icon" sizes="60x60" href="%2$s">
<link rel="apple-touch-icon" sizes="72x72" href="%3$s">
<link rel="apple-touch-icon" sizes="76x76" href="%4$s">
<link rel="apple-touch-icon" sizes="114x114" href="%5$s">
<link rel="apple-touch-icon" sizes="120x120" href="%6$s">
<link rel="apple-touch-icon" sizes="144x144" href="%7$s">
<link rel="apple-touch-icon" sizes="152x152" href="%8$s">
<link rel="apple-touch-icon" sizes="180x180" href="%9$s">',
@Jaace
Jaace / WrapRenderFunction.js
Created November 7, 2015 14:41 — forked from sagar-ganatra/WrapRenderFunction.js
Adding beforeRender and afterRender functions to a Backbone View Refer to the blog post http://www.sagarganatra.com/2013/01/adding-beforerender-and-afterrender-functions-to-backbone-view.html
(function () {
var TestView = Backbone.View.extend({
el: '#container',
initialize: function () {
console.log('Inside Init');