Skip to content

Instantly share code, notes, and snippets.

View jmickey's full-sized avatar
🐕
Any time is coffee time

Josh Michielsen jmickey

🐕
Any time is coffee time
View GitHub Profile
@jmickey
jmickey / enhancedyoutube.json
Last active December 3, 2021 01:54
Enhanced for YouTube Settings
{"version":"2.0.108","settings":{"blur":0,"brightness":100,"contrast":100,"grayscale":0,"huerotate":0,"invert":0,"saturate":100,"sepia":0,"applyvideofilters":false,"backgroundcolor":"#000000","backgroundopacity":89,"blackbars":false,"blockads":false,"blockadsexceptforsubs":false,"blockautoplay":true,"blockhfrformats":false,"blockwebmformats":false,"cinemamode":false,"cinemamodewideplayer":true,"controlbar":{"active":false,"autohide":false,"centered":true,"position":"absolute"},"controls":["loop","reverse-playlist","volume-booster","cinema-mode","size","options"],"controlsvisible":false,"controlspeed":true,"controlspeedmousebutton":false,"controlvolume":false,"controlvolumemousebutton":false,"customcolors":{"--main-color":"#00adee","--main-background":"#111111","--second-background":"#181818","--hover-background":"#232323","--main-text":"#eff0f1","--dimmer-text":"#cccccc","--shadow":"#000000"},"customcssrules":"","customscript":"","customtheme":false,"darktheme":true,"date":1550605943682,"defaultvolume":false,
@jmickey
jmickey / lazy-nvm.sh
Created August 26, 2020 19:22
Lazy load nvm to avoid slow shell start-up times
# Lazy load NVM!
# Add every binary that requires nvm, npm or node to run to an array of node globals
NODE_GLOBALS=(`find ~/.nvm/versions/node -maxdepth 3 -type l -wholename '*/bin/*' | xargs -n1 basename | sort | uniq`)
NODE_GLOBALS+=("node")
NODE_GLOBALS+=("nvm")
NODE_GLOBALS+=("npx")
# Lazy-loading nvm + npm on node globals call
load_nvm () {
export NVM_DIR=~/.nvm
@jmickey
jmickey / 0-AboutMe.png
Last active June 13, 2019 21:35
About Me
0-AboutMe.png
@jmickey
jmickey / tasks.go-build.json
Last active April 29, 2018 08:46
VSCode tasks.json config for go build
{
"version": "2.0.0",
"type": "shell",
"echoCommand": true,
"cwd": "${workspaceFolder}",
"tasks": [
{
"label": "Go Build",
"command": "go",
"args": [

Keybase proof

I hereby claim:

  • I am jmickey on github.
  • I am jmickey (https://keybase.io/jmickey) on keybase.
  • I have a public key ASBpz3NEJXSnrs5BbmesisJ5Qk7cIiTGsaz5GRZcQ31iBAo

To claim this, I am signing this object:

@jmickey
jmickey / RNA-Seq_MoreGenes.R
Last active February 7, 2018 16:35
R code for cleaning gRNA vs Empty Vector dataset and creating a volcano plot
# To download & install BiomaRt package if not previously done
# source("https://bioconductor.org/biocLite.R")
# biocLite("biomaRt")
# Import required packages
require(ggplot2)
require(biomaRt)
require(ggrepel)
# Import the data
@jmickey
jmickey / app.py
Last active August 29, 2015 14:24 — forked from zaccrites/app.py
import jinja2
from flask import Flask, render_template, request, redirect, url_for
from flask.ext.sqlalchemy import SQLAlchemy
from . import formatting
from .config import get_config
db = SQLAlchemy()