Skip to content

Instantly share code, notes, and snippets.

View schmty's full-sized avatar
🌸

Jake Schmitz schmty

🌸
  • California
View GitHub Profile
@schmty
schmty / keybase.md
Created September 20, 2019 18:15
keybase proof

Keybase proof

I hereby claim:

  • I am importjake on github.
  • I am jakesvincit (https://keybase.io/jakesvincit) on keybase.
  • I have a public key ASBKmMoNyrWLZfiebwMzpUUsXsw0FYznlG4FEvlPUUypwwo

To claim this, I am signing this object:

@schmty
schmty / gulpfile.js
Created May 9, 2015 06:47
Gulp Recipe for seamless frontend/backend dev (livereload, browserify, nodemon, stylus)
var gulp = require('gulp');
var browserify = require('browserify');
var watchify = require('watchify');
var assign = require('lodash.assign');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var sourcemaps = require('gulp-sourcemaps');
var gutil = require('gulp-util');
var babelify = require('babelify');
var nodemon = require('gulp-nodemon');
@schmty
schmty / emit.js
Last active August 29, 2015 14:16
basic event emitter implementation for practice
function EventEmitter() {
this._events = {};
}
EventEmitter.prototype.on = function(event, func) {
if (!this._events[event] || this._events === {}) {
this._events[event] = func;
} else if (this._events[event] && !(this._events[event] instanceof Array)) {
var firstFunc = this._events[event];
this._events[event] = [];
#!/bin/bash
echo
echo "This script sets the pantheon terminal to the Solarized theme."
echo
until [[ $scheme -eq 1 ]] || [[ $scheme -eq 2 ]] || [[ $scheme -eq 3 ]]; do
echo "Choose one:"
echo "1) Light"
echo "2) Dark"

Keybase proof

I hereby claim:

  • I am schmitzjake on github.
  • I am schmitzjake (https://keybase.io/schmitzjake) on keybase.
  • I have a public key whose fingerprint is 79BF 5528 5ADC 6645 1320 178C E456 2067 2A88 1B12

To claim this, I am signing this object:

#!/usr/bin/python
# -*- coding: utf-8 -*-
"""Solarized theme for pantheon-terminal
see http://ethanschoonover.com/solarized
"""
import posixpath
import sys
from gi.repository import Gio
@schmty
schmty / jake.zsh-theme
Last active August 29, 2015 14:04
My personal zsh theme
PROMPT='%{$fg[cyan]%}%c %{$fg[blue]%}$(git_prompt_info)%{$fg[blue]%}$ % %{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"