VirtualTam's bookmarks
24 bookmarks found
-
- https://discourse.gohugo.io/t/templates-multiple-parameters/600
- https://stackoverflow.com/questions/17284222/in-go-templates-accessing-parent-global-pipeline-within-range
- https://stackoverflow.com/questions/14800204/in-a-template-how-do-you-access-an-outer-scope-while-inside-of-a-with-or-rang?rq=1
- https://go.dev/play/p/5Hiajt4H2Z5
-
Live Looping with Bitwig Studio on Linux
2020-02-29 - https://www.kvraudio.com/forum/viewtopic.php?f=259&t=530584
- https://www.kvraudio.com/forum/viewtopic.php?f=259&t=530584&start=15
- https://www.kvraudio.com/forum/viewtopic.php?f=259&t=515018
- https://www.kvraudio.com/forum/viewtopic.php?f=268&t=534459
- https://www.youtube.com/watch?v=eHVoygoMuIs
- https://www.youtube.com/watch?v=DomZafMSfE0
- https://www.youtube.com/watch?v=kE8iaFdS4B8
- https://github.com/solinas3000/Looper4BitwigScript
- https://www.reddit.com/r/Bitwig/comments/bnjcp5/looper_preset_for_bitwig_3/
- https://www.reddit.com/r/Bitwig/comments/bup7f0/updated_looper_fx_preset_now_support_dynamic/
- https://www.reddit.com/r/Bitwig/comments/bahmdh/advice_turn_bitwig_into_a_jamming_daw/
-
Looper pedal with MIDI clock synchronization
2019-09-02 Threads:
- https://www.talkbass.com/threads/compact-looper-with-midi-sync-advice.1322813/
- https://www.talkbass.com/attachments/screen-shot-2018-01-15-at-10-50-39-am-png.2876469/
- https://www.jazzguitar.be/forum/guitar-amps-gizmos/59519-loopers-midi-sync.html
- https://www.gearslutz.com/board/electronic-music-instruments-and-electronic-music-production/1100762-looper-midi-sync.html
Pigtronix Infinity Looper (seems to be the favorite):
- https://pigtronix.com/product/infinity-looper/
- https://www.reddit.com/r/guitarpedals/comments/6ggsgq/pigtronix_infinity_looper_roland_tr8_midi_clock/
- https://forum.fractalaudio.com/threads/infinity-looper-format-larger-sd-card.104993/
BOSS RC-30 (no MIDI sync, only there 'cause I have one):
- http://forum.mybeatbuddy.com/index.php?threads/need-help-w-my-beat-buddy-and-the-boss-rc-30-looper.1325/
- https://www.talkbass.com/threads/is-it-possible-to-sync-two-boss-rc-30-loopers.1291450/
- https://rolandcorp.com.au/blog/taking-control-of-your-loop-station (also, W.T.F. ???)
BOSS RC-300 & RC-505:
-
PowerShell Survival Kit
2018-03-07 Home:
- https://docs.microsoft.com/en-us/powershell/
- https://docs.microsoft.com/en-us/powershell/scripting/getting-started/fundamental/using-windows-powershell-for-administration?view=powershell-6
Wikiversity:
- https://en.wikiversity.org/wiki/PowerShell
- https://en.wikiversity.org/wiki/PowerShell/Variables
- https://en.wikiversity.org/wiki/PowerShell/Arrays_and_Hash_Tables
- https://en.wikiversity.org/wiki/PowerShell/Loops
Basics:
- https://stackoverflow.com/questions/1825585/determine-installed-powershell-version
- https://stackoverflow.com/questions/8343767/how-to-get-the-current-directory-of-the-cmdlet-being-executed
- https://superuser.com/questions/237902/how-can-one-show-the-current-directory-in-powershell
- https://stackoverflow.com/questions/6138849/how-do-you-move-files-folders-across-volumes-with-powershell
Commands and executables:
HTTP:
ZIP archives:
- https://serverfault.com/questions/18872/how-to-zip-unzip-files-in-powershell
- https://stackoverflow.com/questions/27768303/how-to-unzip-a-file-in-powershell
- https://www.reddit.com/r/PowerShell/comments/454e4y/how_do_i_unzip_a_zip_file_with_powershell/
- https://github.com/auberginehill/unzip-silently
- To extract silently: https://github.com/auberginehill/unzip-silently/blob/master/Unzip-Silently.ps1#L352
-
Algorithmic Composition In Pure Data
2018-03-01 -
1// THIS WILL SEND AN INTERRUPT TO ALL MATCHING THREADS 2Thread.getAllStackTraces().keySet().each() { 3 t -> if (t.getName().contains("PATTERN") ) { t.interrupt(); } 4} 5 6// THIS WILL FORCE-STOP ALL MATCHING THREADS 7// May be required for recursive loops 8Thread.getAllStackTraces().keySet().each() { 9 t -> if (t.getName().contains("PATTERN") ) { t.stop(); } 10}
-
Teenage Engineering Pocket Operators
2016-03-19 -
Tricopter - The Movie...
2015-07-20 "This project was started in 2008. The goal was to learn something about programming, electronics and control loops. Because I always need a cool project to learn new things, it was clear that something that can fly had to be built."
-
Ray Garraway - Playing to some indian music
2015-04-20 -
TL;DR: you won't.
This website is rather a good memo regarding each language's foundations:
- what's its general purpose?
- how to write core instructions, such as functions, loops, conditional structures?
I find this kind of reminder quite useful when it comes to documentation languages (e.g. TeX, Markdown)