Skip to content

Instantly share code, notes, and snippets.

View GiantDarth's full-sized avatar

Christopher Robert Philabaum GiantDarth

  • Northern Arizona University
  • Flagstaff, Arizona, United States
View GitHub Profile
@Twanislas
Twanislas / now-playing-slider.html
Last active June 25, 2024 06:56
Simple notification style slider overlay pulling song info from local https://github.com/ytmdesktop API. For use in things like OBS.
<!-- https://gist.github.com/Twanislas/8e790f247e8d975f26aca89358fe69ff -->
<!-- Recommended size for the view is 165px high, 500px wide -->
<html>
<head>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<script>
@danharper
danharper / gulpfile.js
Last active April 11, 2024 08:31
New ES6 project with Babel, Browserify & Gulp
var gulp = require('gulp');
var sourcemaps = require('gulp-sourcemaps');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var browserify = require('browserify');
var watchify = require('watchify');
var babel = require('babelify');
function compile(watch) {
var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel));
@ngcrawford
ngcrawford / interleave_fastq.py
Last active March 8, 2021 19:15
Interleave paired end fastq files
#!/usr/bin/env python
# encoding: utf-8
import sys
import argparse
def interface():
parser = argparse.ArgumentParser()
parser.add_argument('--rm-short-reads',