- Must Read/Watch Basics About Real-Time Audio Programming
- "Real-time audio programming 101: time waits for nothing": http://www.rossbencina.com/code/real-time-audio-programming-101-time-waits-for-nothing
- Video: Fabian Renn-Giles & Dave Rowland - Real-time 101
- Rust Audio Top Level Website: https://rust.audio/
- Awesome Audio DSP Link List: https://github.com/BillyDM/Awesome-Audio-DSP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{f32::consts::PI, sync::Arc}; | |
use realfft::{num_complex::Complex, RealFftPlanner, RealToComplex}; | |
const N: usize = 1024; | |
const SR: f32 = 44100.; | |
pub struct Spectrum { | |
fft: Arc<dyn RealToComplex<f32>>, | |
real_buf: Vec<f32>, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
// Navigation | |
{ | |
"key": "ctrl-h", | |
"command": "workbench.action.navigateLeft" | |
}, | |
{ | |
"key": "ctrl-l", | |
"command": "workbench.action.navigateRight" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# update v1.1 (see revisions for older version; this has a smoother appearance for both DirectWrite and GDI) | |
# Use with latest testing version of MacType only. | |
# Recommended to disable ClearType (not AA) system-wide by setting the FontSmoothingType DWORD to 1 in HKCU/Control Panel/Desktop. Do not do this step if you use Firefox, as it'll cause it to render very crunchy non-antialiased fonts for some text, but it improves Edge/Chrome and Chromium apps. | |
# Microsoft Edge and Chrome require bypassing the renderer code integrity policy so that vertical AA can be enabled by this profile. More details: https://github.com/snowie2000/mactype/wiki/Google-Chrome | |
# Additional suggested tweak: use Winaero Tweaker (https://winaero.com/winaero-tweaker/) to change every system font to "Segoe UI Variable Small", if you are using Windows 11. This will make fonts in Win32 UI's consistent with WinUI UI's, where Segoe UI Variable is used. (Windows doesn't use Segoe UI Variable for those by default because the legacy ClearType re |
Simular Guides
- (My) Perfect Gaming VM Setup with GPU Passthrough – Virtualization Server Part 14
- Configuring GPU Passthrough with VFIO on Fedora 30 notes
Usefull Commands
lspci -nnk
list pci devicessudo grub2-mkconfig -o /etc/grub2-efi.cfg
updates the grubsudo call-a-friend @ballas
calls the best knowledge base, fuck wiki 🤣
Unless otherwise noted (either in this file or in a file's copyright section) the contents of this gist are Copyright ©️2020 by Christopher Allen, and are shared under spdx:Creative Commons Attribution Share Alike 4.0 International (CC-BY-SA-4.) open-source license.
If you more tips and advice like these, you can become a monthly patron on my GitHub Sponsor Page for as little as $5 a month; and your contributions will be multipled, as GitHub is matching the first $5,000! This gist is all about Homebrew, so if you like it you can support it by donating to them or becoming one of their Github Sponsors.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Library/OFX/Plugins/Red Giant Universe/Universe_Blur_Blur_Premium_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_Blur_Compound_Blur_Premium_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_Blur_Spot_Blur_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_CrumplePop_Finisher_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_CrumplePop_Fisheye_Fixer_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_CrumplePop_Grain16_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_CrumplePop_OverLight_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_CrumplePop_ShrinkRay_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_Distort_Camera_Shake_Pro_OFX_Fx.ofx.bundle | |
/Library/OFX/Plugins/Red Giant Universe/Universe_Distort_Chromatic_Aberration_OFX_Fx.ofx.bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# Simple Utility Script for allowing debug of hardened macOS apps. | |
# This is useful mostly for plug-in developer that would like keep developing without turning SIP off. | |
# Credit for idea goes to (McMartin): https://forum.juce.com/t/apple-gatekeeper-notarised-distributables/29952/57?u=ttg | |
# Update 2022-03-10: Based on Fabian's feedback, add capability to inject DYLD for sanitizers. | |
# | |
# Please note: | |
# - Modern Logic (on M1s) uses `AUHostingService` which resides within the system thus not patchable and REQUIRES to turn-off SIP. | |
# - Some hosts uses separate plug-in scanning or sandboxing. | |
# if that's the case, it's required to patch those (if needed) and attach debugger to them instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"background" : "#1d2021", | |
"black" : "#665C54", | |
"blue" : "#7DAEA3", | |
"brightBlack" : "#928374", | |
"brightBlue" : "#7DAEA3", | |
"brightCyan" : "#89B482", | |
"brightGreen" : "#A9B665", | |
"brightPurple" : "#D3869B", | |
"brightRed" : "#EA6962", |
NewerOlder