Skip to content

Instantly share code, notes, and snippets.

View ctassparker's full-sized avatar
💭
where are the snowdens of yesteryear

Chris Tass-Parker ctassparker

💭
where are the snowdens of yesteryear
  • Brex
  • Seattle, WA
View GitHub Profile
@ctassparker
ctassparker / 0_reuse_code.js
Created August 30, 2017 02:24
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
/* Merge sort in C */
#include<stdio.h>
#include<stdlib.h>
// Function to Merge Arrays L and R into A.
// lefCount = number of elements in L
// rightCount = number of elements in R.
void Merge(int *A,int *L,int leftCount,int *R,int rightCount) {
int i,j,k;