Skip to content

Instantly share code, notes, and snippets.

View madelinegannon's full-sized avatar
🤖

Madeline Gannon madelinegannon

🤖
View GitHub Profile
@madelinegannon
madelinegannon / protobuf-tutorial-mac.md
Last active April 4, 2024 12:52
Google Protobuf Tutorial for Mac and c++

How to Install and Run Google's Protocol Buffer Basics: C++ Tutorial on Mac

Tested on: macOS High Sierra v10.13.3

1. Install Google Protobuf

Google's official README is here. Follow their instructions to install the special dependencies that mac needs.

The steps I share below are a combination of this gist, this gist, and this answer. The main difference is that I started by manually downloading the latest cpp release from google's release repo. If you start from there, here's what to do next:

  1. First, unzip the file.
@madelinegannon
madelinegannon / jetson-nano_openFrameworks_setup_tutorial.md
Last active February 4, 2024 16:41
How to Set Up the NVIDIA Jetson Nano for openFrameworks
@madelinegannon
madelinegannon / kinectV2_openFrameworks_linux.md
Last active June 15, 2023 11:02
How to get the Kinect V2 working in openFrameworks on Linux

How to get the Kinect V2 working in openFrameworks on Linux

This tutorial walks through how to get the Microsoft Kinect One working in Linux and openFrameworks.

Tested On

@madelinegannon
madelinegannon / crazyflie_2-1_setup.md
Last active January 19, 2024 05:46
Setting up Crazyflie 2.1
@madelinegannon
madelinegannon / setup-azure-kinect-on-jetson-x-nx.md
Last active April 18, 2024 17:03
Notes on Setting up the Microsoft Azure Kinect on Ubuntu 18.04
@madelinegannon
madelinegannon / follow_target_abb.md
Last active January 10, 2024 10:07
Notes on setting up ABB Follow Target Example on Isaac Sim 2022.2.0

Follow Target (ABB)

Notes on my ABB Follow Target Example extension for Omnniverse Isaac Sim 2022.2.0

Supports ABB IRB4600 and 8700

Set Up

Manual Instructions

To begin, you need to add and modify a few extensions in Isaac Sim 2022.2.0.

@madelinegannon
madelinegannon / arturia_microfreak_touchosc.md
Created March 13, 2023 21:56
Arturia MicroFreak MIDI to OSC in TouchOSC

This template file broadcasts MIDI signal from the Arturia MicroFreak over OSC via TouchOSC.

Use this template to have a DAW-less interface between the MicroFreak and any other software or hardware that receives OSC.

touchosc_microfreak_template

Here's a link to download the touchosc file: arturia_microfreak.tosc

@madelinegannon
madelinegannon / instant-ngp_extra_notes.md
Last active April 11, 2024 20:22
extra notes for installing and working with nvidia instant-ngp

instant-ngp Extra Notes

Installing instant-ngp

Installation Instructions: https://github.com/NVlabs/instant-ngp?tab=readme-ov-file#installation

  • If you're running a CUDA capable gpu, change the download_colmap.bat scricpt to downlad colmap with CUDA:
echo Downloading COLMAP...
:: powershell -Command "(New-Object Net.WebClient).DownloadFile('https://github.com/colmap/colmap/releases/download/3.7/COLMAP-3.7-windows-no-cuda.zip', 'colmap.zip')"
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://github.com/colmap/colmap/releases/download/3.9.1/COLMAP-3.9.1-windows-cuda.zip', 'colmap.zip')"