Skip to content

Instantly share code, notes, and snippets.

View Vinicius-Brito-Costa's full-sized avatar
🎭
Bungee Gum

Vinicius Vinicius-Brito-Costa

🎭
Bungee Gum
View GitHub Profile
@JamesDBartlett3
JamesDBartlett3 / Convert-YouTube-Audio-to-Mono.js
Last active May 20, 2026 03:33
Force YouTube Audio to Play on Both Speakers [JavaScript]
/********************************************************************************************************************************\
# Description
- Some videos on YouTube have a problem where the sound only comes out of the left or right channel
- This happens when the person who edits the video forgets to convert any mono audio signals to stereo before rendering
- Run this JavaScript snippet in your web browser to make YouTube play stereo audio as mono (same audio signal on all channels)
# How To Use
- Method 1 (best): Copy/paste into "Custom script" box in "Enhancer for YouTube™ (download & instructions: bit.ly/3GmQgZC)
- Method 2: Install as a UserScript using Tampermonkey, Greasemonkey, etc. (download & instructions: bit.ly/3K6B991)
@ChaseC99
ChaseC99 / GoogleCalendarDesktop.md
Last active February 18, 2026 10:45
How to create a Google Calendar Desktop application on MacOS
@ditzel
ditzel / KdTree.cs
Last active September 15, 2025 15:31
k-d Tree
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Profiling;
public class KdTree<T> : IEnumerable<T>, IEnumerable where T : Component
{
protected KdNode _root;
protected KdNode _last;