Wednesday, November 26, 2025

Free Vst - Valentine Compressor

Valentine on Github

It was inspired by the pumping on Justice's album

Monday, November 24, 2025

convert with moss v 8 works on antix debian 12

proteus sf2 libraries can be converted into decentsampler and tal sampler presets. Sometimes I forget renoise is amazing for working with sfz files

free filter vst for linux and windows arm

BlepFX filtrr and Destruqtor are great

Saturday, November 22, 2025

rx1200 patches not loading properly

Do this find and replace to resolve the path to the correct location


find . -type f -name '*.rx1200' -exec sed -i 's/Common/User/g' {} +

wicked EQ and Compressor - ZL Audio

ZL Equalizer
ZL Compressor

Friday, November 14, 2025

free 32 bit delay vsts and Ott alternative

leet delay by sonic anomaly

deelay by sixth sample

sixth sample also makes a great mbc like ott called cramit

dubstation by audio thing is a classic paid plug thats now an abandonware gem.

echobox d7 by senderspike was my favourite for a long time

Sunday, November 9, 2025

affinity on linux

affinity on linux github install scripts to get it running

spiral tribe font

similar to amelia or telstar regular
asimov or yellow submarine are free alternatives

Wednesday, November 5, 2025

64 bit windows vsts

Installed Windows 10 in a VM
excited to get 64 bit fl studio, and reason 11 working again.
also got native access installed but trash, massive, and fm8 licences arent showing up :(


Here is a list of some software im excited to be able to run again



tx16wx
Blamsoft Viking
Toneboosters
vital
koala sampler for windows
surge
Shortcircuit
specomp - analog obsession ssl type comp kabin - analog obsession speaker sim

Friday, October 31, 2025

Linux Mint Cinnamon File Preview Like Mac


sudo apt install nemo-preview

don't use gnome-sushi thats for the nautilus file manager

How To Sync DL'd Music From Iphone To Linux Mint With Rsync

Using this bash alias in my .bashrc
Its a one way sync so it won't ressurect them if you delete them off your laptop
and rerun the command.


#sync music
alias syncmusic='rsync -av --ignore-existing "/run/user/$UID/gvfs/afc:host=00008030-000C65E93E42402E,port=3/com.imect.djplayer-sm/uke-songs/" ~/Music/'
# its on the closest (front) usb on the left (if that matters)

This Chatgpt explanation is hillarious:

"Quick vibe check
You're basically doing:
Linux → GVFS → AFC → iPhone app storage
so you can rsync your app’s music folder.
And honestly? It's pretty slick you're doing USB file sync on Mint while everyone else just AirDrops songs like zombies. Respect. 💪"

Thursday, October 30, 2025

Reason 5 in Virtualbox

retrostudio

they want you to use virt-manager
used this command to convert it to a hard drive image that virtual box can read instead
because I found it easier.

 
qemu-img convert -O vmdk input.qcow2 output.vmdk

I was even able to finally get fl 20 and virtual dj to run nicely in this windows 7 vm after installing


spent alot of time tweaking the latency with vb-matrix as could get it as low as 13ms.

Wednesday, October 22, 2025

Tuesday, October 14, 2025

one liner to reinstall xfce

I always end up breaking the desktop if i mess around with the settings long enough.
this one liner removes and then cleanly reinstalls xfce


sudo apt purge xfce4* xfdesktop4* thunar* xfwm4* && sudo apt autoremove --purge && sudo apt install xfce4 xfce4-goodies

Tuesday, October 7, 2025

Modularizing Your Bash Functions (Example: vicd with Vifm)

Step 1: Create a Modular Config Directory

Keep your Bash setup clean by separating custom scripts:


mkdir -p ~/.bashrc.d
This directory will store small .sh files instead of crowding your .bashrc.


Step 2: Add Your Function

Create a file just for your Vifm directory picker:


vim ~/.bashrc.d/vicd.sh
Paste this inside:

vicd() {
    local dst
    dst="$(command vifm --choose-dir - "$@")"
    if [ -z "$dst" ]; then
        echo 'Directory picking cancelled/failed'
        return 1
    fi
    cd "$dst"
}


Step 3: Source All Scripts Automatically

At the end of your ~/.bashrc, add:


for f in ~/.bashrc.d/*.sh; do
    [ -f "$f" ] && . "$f"
done
Reload your shell:

source ~/.bashrc
Now your vicd function (and any future ones) load automatically — tidy, modular, and easy to manage.