Skip to content

Instantly share code, notes, and snippets.

View abique's full-sized avatar
🏡
Home

Alexandre Bique abique

🏡
Home
View GitHub Profile
@drzhnn
drzhnn / install_unflatpaked_bitwig.sh
Last active May 21, 2022 11:41
Extract Bitwig Studio flatpak installer and copy all the files to the right places #bitwig #linux #fedora
#!/bin/bash
# Usage: sudo install_unflatpaked_bitwig.sh ["Bitwig Studio <version>.flatpak"]
# Check if running the script as root.
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
exit 0
fi
@abique
abique / README.md
Last active November 17, 2022 10:58
Proprietary Audio Plugins for Linux, but the right way

Proprietary Audio Plugins for Linux, but the right way

Why the current approach to VST and VST3 does not work for proprietary plugins on Linux ?

When building plugins for Linux there are two options and one problem:

  1. Link to the system libraries
  2. Build all your dependencies and statically link to them
  3. Can't use gtk or qt.
@wrl
wrl / midi_mikro.c
Created April 30, 2013 23:14
maschine mikro -> midi translator
/**
* william light <wrl@illest.net> wrote this in 2012
*
* released under creative commons CC0
* http://creativecommons.org/publicdomain/zero/1.0/
*/
#include <sys/stat.h>
#include <stdlib.h>
#include <fcntl.h>
@andruby
andruby / comparison.rb
Created October 5, 2011 16:52
ruby comparison benchmark
require 'benchmark'
def is_it_true?
true
end
CONSTANT = 1
BenchTimes = 1_000_000
Benchmark.bm(20) do |bm|