Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<script src="http://jashkenas.github.io/underscore/underscore-min.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://rawgit.com/MikeMcl/big.js/master/big.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="http://jashkenas.github.io/underscore/underscore-min.js"></script>
<script src="http://jashkenas.github.io/backbone/backbone.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="http://jashkenas.github.io/underscore/underscore-min.js"></script>
<script src="http://jashkenas.github.io/backbone/backbone.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>

Keybase proof

I hereby claim:

  • I am clydet on github.
  • I am workingclyde (https://keybase.io/workingclyde) on keybase.
  • I have a public key ASDC10tFc9szgjcYvt6TaNT3gK1juUXYO-qwqW7zwWbiRQo

To claim this, I am signing this object:

@clydet
clydet / git_membership.sh
Created September 10, 2018 03:07
extract member info from github
#!/bin/bash
TOKEN=${1}
HOST=${2}
ORG=${3}
PAGE_COUNT=100
OUT_FILE='./temp.csv'
ORG_URL="https://${HOST}/api/v3/orgs/${ORG}"
query_git () {
@clydet
clydet / GIF-Screencast-OSX.md
Created April 21, 2021 16:06 — forked from dergachev/GIF-Screencast-OSX.md
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@clydet
clydet / back-merge.sh
Created July 6, 2023 08:09
A script to automate the merge of main branch changes to other branches
#!/bin/bash
GITHUB_DOMAIN='https://github.com'
GITHUB_ORG='ZagaUS'
TARGET_CODEBASE=$1
# clone given code base
function cloneCodebase() {
local codebase=$1
local github_url="${GITHUB_DOMAIN}/${GITHUB_ORG}/${codebase}"