Skip to content

Instantly share code, notes, and snippets.

View DanielBoa's full-sized avatar
😷
*muffled speech*

Daniel Boa DanielBoa

😷
*muffled speech*
View GitHub Profile
@LeeMartin77
LeeMartin77 / N64ArduinoUSB.ino
Created June 5, 2020 20:42
N64 to USB GamepadConverter with a ATmega32U4 board
// using the fantastic https://github.com/MHeironimus/ArduinoJoystickLibrary
// Based on the soulders of giants:
// Gamecube controller to Nintendo 64 adapter by Andrew Brown
// http://www.cs.duke.edu/~brownan/n642gc.html
// N64 to HID by Peter Den Hartog:
// https://www.instructables.com/id/Use-an-Arduino-with-an-N64-controller/
// N64 Controller Tester by sanni
// https://github.com/sanni/controllertest
#include <pins_arduino.h>
@singledigit
singledigit / cognito.yaml
Last active June 4, 2024 05:19
Create a Cognito Authentication Backend via CloudFormation
AWSTemplateFormatVersion: '2010-09-09'
Description: Cognito Stack
Parameters:
AuthName:
Type: String
Description: Unique Auth Name for Cognito Resources
Resources:
# Creates a role that allows Cognito to send SNS messages
SNSRole:
@Vestride
Vestride / encoding-video.md
Last active June 5, 2024 14:38
Encoding video for the web

Encoding Video

Installing

Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.

brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus