Skip to content

Instantly share code, notes, and snippets.

# ---
#
# Adding id to the specific point mixed to audio. Audio's volume
# will be reduced with sidechaincompressing
#
# The threshold value is calculated as follows: 10 to the power of
# (decibel value/20) e.g. -45 dB would be 10 ^ (-45/20) = 10 ^ -2.25 =
# 0.0056
#
# - adelay is in milliseconds.
@ericandrewlewis
ericandrewlewis / index.md
Last active June 6, 2024 01:43
C++ Pointer Tutorial

C++ Pointer Tutorial

Because pointers can be ugh

"Regular" variables (not pointers)

To understand a pointer, let's review "regular" variables first. If you're familiar with a programming language without pointers like JavaScript, this is what you think when you hear "variable".

When declaring a variable by identifier (or name), the variable is synonymous with its value.