VirtualTam's bookmarks
46 bookmarks found
-
VCV - Open-source virtual Eurorack DAW
2017-10-21 - https://github.com/VCVRack
- https://vcvrack.com/manual/
- https://www.reddit.com/r/vcvrack/
- https://www.synthtopia.com/content/2018/01/22/open-source-synthesis-behind-the-scenes-with-vcv-rack-creator-andrew-belt/
Core modules:
- https://github.com/VCVRack/AudibleInstruments
- https://github.com/VCVRack/Befaco
- https://github.com/VCVRack/ESeries
- https://github.com/VCVRack/Fundamental
Community modules:
- https://github.com/VCVRack/community
- https://github.com/modlfo/VultModules
- https://github.com/Strum/Strums_Mental_VCV_Modules
- https://github.com/IohannRabeson/VCVRack-Simple
- https://github.com/Phal-anx/MS-Modules
- https://github.com/martin-lueders/ML_modules
- https://github.com/luckyxxl/vcv_luckyxxl
- https://github.com/jeremywen/JW-Modules
- https://github.com/dekstop/vcvrackplugins_dekstop
- https://github.com/av500/vcvrackplugins_av500
- https://github.com/antoniograzioli/Autodafe
- https://github.com/antoniograzioli/Autodafe-Drums
- https://github.com/david-c14/SubmarineFree
- https://github.com/JerrySievert/CharredDesert
- https://github.com/almosteric/FrozenWasteland
- https://github.com/sebastien-bouffier/Bidoo
- https://github.com/squinkylabs/SquinkyVCV
Patches:
-
-
Ansible | Logging playbook runs
2017-08-29 -
See answer https://stackoverflow.com/a/41837196 for an elegant solution using the file module
-
SYNCHRONIZE MODULE IS BAD! AND YOU SHOULD FEEL BAD!
=> Use rsync in a command / shell task with SSH configuration / identities
-
Ansible modules:
- https://docs.ansible.com/ansible/latest/ldap_entry_module.html
- https://docs.ansible.com/ansible/latest/ldap_attr_module.html
Installation guides:
- https://wiki.debian.org/LDAP/OpenLDAPSetup
- https://debian-administration.org/article/585/OpenLDAP_installation_on_Debian
Debconf & slapd automation:
-
- https://docs.ansible.com/ansible/latest/playbooks_conditionals.html#register-variables
- https://docs.ansible.com/ansible/latest/authorized_key_module.html
- https://stackoverflow.com/questions/25629933/ansible-copy-ssh-key-from-one-host-to-another#25644384
- https://stackoverflow.com/questions/35808649/ansible-accessing-register-variables-from-other-plays-within-same-playbook
- https://stackoverflow.com/questions/33896847/how-do-i-set-register-a-variable-to-persist-between-plays-in-ansible
- https://serverfault.com/questions/638507/how-to-access-host-variable-of-a-different-host-with-ansible
- https://github.com/ansible/ansible/issues/1934
-
-
Kernel explained | Consolia Comics
2017-04-27 -
-
Euclidean sequencer in Eurorack Module
2016-03-16 -
Python unit testing frameworks: Nose, Pytest
2015-02-13 Python's built-in unittest module is quite cool, but a bit limited and way too verbose (read: it's quite not easy to incite developers to write unit tests)
I'm currently looking for more dev-friendly solutions, the key points being:
- writing test code should be easy and straight-forward -keep the focus on "what to test" instead of "how to transcribe a process to a test"
- parallelization! -we, spoiled developers, should make good use of our way-too-many-cores build machines...
- complete feature set!
- we don't want to just run tests...
- coverage reports (find dead/weak/untested code sections)
- output formatting (JUnit-XML seems to be quite a common format out there)
There seem to be 3 solutions in Python:
- stock unittest + project-dependent customizations / test helpers
- nosetests
- py.test
And 2 ways of gettings things done:
- keeping things stock: no external dependency, project-specific implementation...
- using a test framework: one more module in your (test) virtualenv, more concise tests, more features (// run, code coverage, etc.)
Some links: