Skip to content

Instantly share code, notes, and snippets.

View mateusfig's full-sized avatar

Mateus Machado mateusfig

View GitHub Profile
@SteveALee
SteveALee / README.md
Last active March 29, 2026 04:05
Build audacity with ASIO support on Windows

Build your own Audacity for Windows with ASIO driver support

!!Breaking news - Steinberg recently open sourced the ASIO SDK (GPLv3) so Audacity will be able to release ASIO binaries. As they are focussed on Audacity 4 it might not happen anytime soon though!!

I highly recommend you watch this video by Audacity lead Martin Keary / @Tantacrul on the plans for Audacity 4 and a tour of the recent deep, difficult engineering on 3.x.x

You might want Audacity to work with the ASIO drivers supplied with your sound devices. Commmon reasons for this are:

  • Only ASIO drivers are available for your hardware (eg Behringer mixers)
  • Performance - ASIO has low latency (delays)
@jatubio
jatubio / installcomposer.bat
Last active October 23, 2025 09:30
Install composer as portable on Windows and increases Timeout
@ECHO OFF
REM Installs Composer as portable and setup home folder as composer global config folder and local folder as internal cache
REM v.2.0 - 01/05/2015
REM jatubio@gmail.com
REM Set Home folder as Composer Global Configuration Folder
SET COMPOSER_HOME=%~dp0Home
if not exist %COMPOSER_HOME% md "%COMPOSER_HOME%"
php -r "readfile('https://getcomposer.org/installer');" | php
@leocomelli
leocomelli / git.md
Last active April 17, 2026 13:06
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda