Skip to content

Instantly share code, notes, and snippets.

View micahstubbs's full-sized avatar

Micah Stubbs micahstubbs

View GitHub Profile
@deprecatedcoder
deprecatedcoder / VoVRdata.csv
Last active March 3, 2021 11:22
Scraping of the VoVR site
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 4.
"number","date","guestAudio","cover","background","audio","title","guestCover","desc"
"001","May 5, 2014","eVRydayVR","cover","http://d1icj85yqthyoq.cloudfront.net/wp-content/uploads/2014/05/d-banner-1024x182.jpg","http://d1icj85yqthyoq.cloudfront.net/wp-content/uploads/2014/05/Voices-of-VR-001-eVRydayVR.mp3","#1: eVRydayVR on Virtual Reality evangelism, communities & education","guestCover","desc"
"002","May 13, 2014","Eric Hodgson","http://d1icj85yqthyoq.cloudfront.net/wp-content/uploads/2014/05/hive-schematic-300x247.jpg","http://d1icj85yqthyoq.cloudfront.net/wp-content/uploads/2014/05/voices-of-vr-header-image-faded-1024x323.jpg","http://d1icj85yqthyoq.cloudfront.net/wp-content/uploads/2014/05/Voices-of-VR-002-Eric-Hodgson.mp3","#2: Eric Hodgson on spatial perception, redirected walking & the split between Old VR vs. New VR","hive schematic","desc"
"003","May 15, 2014","Oliver Kreylos","cover","http://d1icj85yqthyoq.cloudfront.net/wp-content/uploads/2014/05/Header.jpg","http://d1icj85yqthyoq.clo
@LayZeeDK
LayZeeDK / angular-cli-node-js-typescript-rxjs-compatiblity-matrix.csv
Last active March 17, 2024 13:40
Angular CLI, Angular, Node.js, TypeScript, and RxJS version compatibility matrix. Officially part of the Angular documentation as of 2023-04-19 https://angular.io/guide/versions
Angular CLI version Angular version Node.js version TypeScript version RxJS version
~16.0.0 ~16.0.0 ^16.13.0 || ^18.10.0 >=4.9.5 <5.1.0 ^6.5.5 || ^7.4.0
~15.2.0 ~15.2.0 ^14.20.0 || ^16.13.0 || ^18.10.0 >=4.8.4 <5.0.0 ^6.5.5 || ^7.4.0
~15.1.0 ~15.1.0 ^14.20.0 || ^16.13.0 || ^18.10.0 >=4.8.4 <5.0.0 ^6.5.5 || ^7.4.0
~15.0.5 ~15.0.4 ^14.20.0 || ^16.13.0 || ^18.10.0 ~4.8.4 ^6.5.5 || ^7.4.0
~14.3.0 ~14.3.0 ^14.15.0 || ^16.10.0 >=4.6.4 <4.9.0 ^6.5.5 || ^7.4.0
~14.2.0 ~14.2.0 ^14.15.0 || ^16.10.0 >=4.6.4 <4.9.0 ^6.5.5 || ^7.4.0
~14.1.3 ~14.1.3 ^14.15.0 || ^16.10.0 >=4.6.4 <4.8.0 ^6.5.5 || ^7.4.0
~14.0.7 ~14.0.7 ^14.15.0 || ^16.10.0 >=4.6.4 <4.8.0 ^6.5.5 || ^7.4.0
~13.3.0 ~13.3.0 ^12.20.2 || ^14.15.0 || ^16.10.0 >=4.4.4 <4.7.0 ^6.5.5 || ^7.4.0
@connor11528
connor11528 / binarySearchTree.js
Last active July 13, 2020 05:31
Binary search tree implemented in Javascript
class BinarySearchTree {
constructor(){
this.root = null;
}
// add a node to the tree
add(value){
let newNode = { value, left: null, right: null};
@aman-tiwari
aman-tiwari / WORKSHOP.md
Last active January 10, 2021 07:55
Document containing install instructions and cool links for the Making Maps with ML workshop!

Messing with Maps and ML quickstart

This document: https://goo.gl/AqGoE8

Installation instructions

By far the most annoying part of getting started with messing with ML is installing researcher-made code and turning it into something fun to play with.

Before doing any of these, please install Miniconda. If you don't have it installed already, here's how:

For OSX, this is:

function levelOrderSearch(rootNode) {
// Check that a root node exists.
if (rootNode === null) {
return;
}
// Create our queue and push our root node into it.
var queue = [];
queue.push(rootNode);
@adrianmcli
adrianmcli / tutorial-refactor.js
Created January 6, 2017 19:24
A refactor of André Staltz's example twitter program in his tutorial on RxJS: https://gist.github.com/staltz/868e7e9bc2a7b8c1f754
// UI Event Streams --------------------------------------------
const refreshButton = document.querySelector('.refresh');
const closeButton1 = document.querySelector('.close1');
const closeButton2 = document.querySelector('.close2');
const closeButton3 = document.querySelector('.close3');
const refreshClickStream = Rx.Observable.fromEvent(refreshButton, 'click');
const close1ClickStream = Rx.Observable.fromEvent(closeButton1, 'click');
const close2ClickStream = Rx.Observable.fromEvent(closeButton2, 'click');
const close3ClickStream = Rx.Observable.fromEvent(closeButton3, 'click');
@1wheel
1wheel / .gitignore
Last active September 13, 2019 12:43
d3-module-faces
node_modules
module.exports = {
server: '.',
files: [
'*.html',
'src/*'
],
ui: false,
notify: false
};
@cuschk
cuschk / filename.sh
Created July 8, 2016 11:30
Bash: file base name and extension
#!/usr/bin/env bash
f='/path/to/example.txt'
base="${f##*/}"
echo $base
#=> example.txt
echo "${base%.*}"
@tophtucker
tophtucker / .block
Last active September 15, 2018 21:42
Diagonal
height: 960