Skip to content

Instantly share code, notes, and snippets.

View NathanBWaters's full-sized avatar
🕹️

Nathan Waters NathanBWaters

🕹️
View GitHub Profile
@willpatera
willpatera / Google-Sheet-Form-Post.md
Last active May 3, 2024 12:57
Post to google spreadsheet from html form

Overview

This collection of files serves as a simple static demonstration of how to post to a google spreadsheet from an external html <form> following the example by Martin Hawksey

Depreciation Warning: This code is not maintained, and should be seen as reference implementation only. If you're looking to add features or update, fork the code and update as needed.

Run example

You should be able to just open index.html in your browser and test locally.

@kevinmoran
kevinmoran / noacos_derivation.md
Last active June 30, 2024 14:30
How to Calculate a Rotation Matrix to Align Vector A to Vector B in 3D
@ialhashim
ialhashim / fill_depth_colorization.py
Last active May 27, 2024 21:23
Python implementation of depth filling from NYU Depth v2 toolbox
# Original Matlab code https://cs.nyu.edu/~silberman/datasets/nyu_depth_v2.html
#
#
# Python port of depth filling code from NYU toolbox
# Speed needs to be improved
#
# Uses 'pypardiso' solver
#
import scipy
import skimage