This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var midpoint = 128; | |
var data = [ | |
[52, 55, 61, 66, 70, 61, 64, 73], | |
[63, 59, 55, 90, 109, 85, 69, 72], | |
[62, 59, 68, 113, 144, 104, 66, 73], | |
[63, 58, 71, 122, 154, 106, 70, 69], | |
[67, 61, 68, 104, 126, 88, 68, 70], | |
[79, 65, 60, 70, 77, 68, 58, 75], | |
[85, 71, 64, 59, 55, 61, 65, 83], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var waterData = [55,56,56,56,56,56,56,57,55,56,56,56,56,55,55,56,56,56,57,56,56,56,56,56,55,55,56,57,57,56,56,56,55,55,55,56,56,56,56,57,55,56,56,56,56,56,55,56,56,56,57,56,56,56,56,56,55,55,56,56,57,56,56,56,56,56,55,56,56,56,56,56,57,55,56,56,56,56,55,55,57,57,57,56,56,56,56,55,55,56,56,56,57,56,56,56,56,56,56,55,55,57,56,56,57,55,56,56,56,55,55,55,57,56,56,57,57,57,56,55,56,56,56,57,57,56,56,56,57,57,57,57,55,56,57,57,57,55,56,56,56,55,56,57,56,56,56,56,56,57,57,55,57,57,57,57,57,57,57,57,56,56,56,57,56,55,56,56,56,55,57,56,55,56,57,57,56,56,56,56,56,55,55,55,55,55,55,56,56,56,56,57,56,56,56,57,56,55,55,55,55,56,57,56,55,55,55,55,55,56,56,56,55,55,57,56,56,56,55,55,56,56,56,57,55,55,55,55,55,55,56,56,55,55,55,56,55,55,56,56,55,55,56,55,55,56,57,56,56,56,56,55,55,55,55,55,56,55,55,56,56,57,57,56,56,56,55,55,55,57,56,56,56,55,55,55,57,57,57,56,56,56,56,55,56,56,56,56,56,55,55,56,56,56,57,56,56,56,57,55,57,57,57,57,56,56,55,57,57,56,56,56,56,56,56,55,56,56,56,56,56,56,55,56,56,56,57,57,57,57,57,55,57,56,56,57 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string type2str(int type) { | |
string r; | |
uchar depth = type & CV_MAT_DEPTH_MASK; | |
uchar chans = 1 + (type >> CV_CN_SHIFT); | |
switch ( depth ) { | |
case CV_8U: r = "8U"; break; | |
case CV_8S: r = "8S"; break; | |
case CV_16U: r = "16U"; break; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var bubbleSort = function(list) { | |
var n = list.length; | |
var swapped = false; | |
var i = 0; | |
var temp = 0; | |
do { | |
swapped = false; | |
for (i = 1; i < n - 1; ++i) { | |
if (list[i - 1] > list[i]) { | |
temp = list[i]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var insertionSort = function(list) { | |
var value = 0; | |
var pos = 0; | |
for (var i = 1; i < list.length; ++i) { | |
value = list[i]; | |
pos = i - 1; | |
while (pos >= 0 && value < list[pos]) { | |
list[pos + 1] = list[pos]; | |
--pos; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Modified from http://pipetree.com/qmacro/blog/2011/10/automated-email-to-task-mechanism-with-google-apps-script/ | |
// Globals, constants | |
var LABEL_PENDING = "pending"; | |
var LABEL_DONE = "done"; | |
// processPending(sheet) | |
// Process any pending emails and then move them to done | |
function processPending_(sheet) { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm -rf out | |
mkdir out | |
for d in $(ls) | |
do | |
if [[ $d == *.jpg ]] | |
then | |
convert $d "out/$d.png" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fisher-Yates Shuffle | |
var shuffle = function(list_in) { | |
var pick, temp; | |
var list = list_in.slice(0); | |
var i = list.length; | |
while (--i > 0) { | |
pick = Math.floor(Math.random() * i); | |
temp = list[i]; | |
list[i] = list[pick]; | |
list[pick] = temp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a numpy array from a list | |
data = np.array(listData) | |
# Get a vector of elements in 2nd column -> [1, 2, 3] | |
# Remeber that the arrays are 0 indexed so technically it would be the 3rd column | |
colVec = data[:,2] | |
# Get a vector of elements 1st row -> [1, 2, 3] | |
# Don't forget the comma! | |
rowVec = data[1,:] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import MySQLdb as mdb | |
from warnings import filterwarnings | |
import config | |
filterwarnings('ignore', category = mdb.Warning) | |
conn = mdb.connect(*config.db) |