Skip to content

Instantly share code, notes, and snippets.

View VictorQueiroz's full-sized avatar
🏠
Working

Victor Queiroz VictorQueiroz

🏠
Working
View GitHub Profile
@VictorQueiroz
VictorQueiroz / 99-emscripten.sh
Last active November 27, 2024 17:50
Disable automatic loading of the EMscripten SDK in the current shell, and only load it when any of its relevant executables is called (e.g. `emcc`, `emcc`, `em++`, etc.).
#!/bin/bash
# You can put this script inside `/etc/profile.d` and it will only load EMscripten
# if `emcc`, `em++`, `emsdk`, emcmake`, or `emconfigure` are used.
#
# The script is made to source `emsdk_env.sh` once and only once.
# Unless you open another terminal tab. But still, it is just a matter of calling `emsdk` or any
# of the commands mentioned.
# Unset the functions to avoid an infinite loop.

Frankie Bagnardi aka GreenJello has passed away on Sept 13, 2021 at age 27

Many of you in this channel know of him because he spent much of his time helping others, his death is a great blow to the community

He lost his battle with depression

Rest In Peace Frankie, we will never forget you.

If you are in a dark place, please reach out to chanops or the ones closest to you

@glen-cheney
glen-cheney / encoding-video.md
Last active December 1, 2025 21:37
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