- https://medium.com/@mudrii/arch-linux-installation-on-hw-with-i3-windows-manager-part-2-x-window-system-and-i3-installation-86735e55a0a0
- https://wiki.learnlinux.tv/index.php/How_to_Install_Arch_Linux#For_WiFi.2C_you_can_use_wifi-menu
- https://wiki.archlinux.org/index.php/installation_guide
- https://youtu.be/vgrqMv3Lzfk
- https://medium.com/avalanche-of-sheep/your-guide-to-a-damn-light-arch-linux-with-i3-and-text-apps-8bc576c502b9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # A script for generating nannou projects | |
| # | |
| # Usage: newnannou <projectname> | |
| # If you set the environment variable NANNOU_DIR to the path | |
| # of your nannou projects folder, this will be used, otherwise | |
| # the target folder is your home folder | |
| # | |
| # by Mads Kjeldgaard 2020 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use rodio::Sink; | |
| use std::fs::File; | |
| use std::io::BufReader; | |
| fn main() { | |
| // Sound output | |
| let device = rodio::default_output_device().unwrap(); | |
| let sink = Sink::new(&device); | |
| // Buffer playback |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ( | |
| // Create new Ndef setter event type | |
| Event.addEventType(\ndset, {|server| | |
| ~type = \set; | |
| ~id = Ndef(~key).group; | |
| ~args = Ndef(~key).controlKeys(except: ~exceptArgs); | |
| currentEnvironment.play; | |
| }) | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Taken from: https://github.com/lvm/build-supercollider | |
| ### | |
| # | |
| # Variables | |
| # | |
| INSTALL_DIR=/tmp | |
| SUPERCOLLIDER_VER=main | |
| SC3PLUGINS_DIR=$INSTALL_DIR/sc3-plugins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # This script makes it easy to setup a source in a networked audio connection | |
| # It uses the 'zita-j2n' (jack to network) command to send audio to the network | |
| # (to be received using 'zita-n2j' on the other end) | |
| # | |
| # Usage | |
| # njstart <target_ip> <target_port> <scfile (optional)> | |
| # Dependencies: jack, zita-njbridge, SuperCollider, tmux | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 2020-05-11 | |
| Gaspar | |
| Hii | |
| 18:40 | |
| salkin | |
| helloo | |
| will be back in 20 | |
| 18:41 | |
| Gaspar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hello and welcome to this virtual Notam meetup. | |
| This is a space for sharing ideas, inspiration, workflow, projects, tips and tricks and just hanging out with likeminded people. | |
| It's nice to get to know each other so when/if it's your turn to speak, please tell us your name and a bit about yourself. | |
| Feel free to post a link to your website/soundcloud/bandcamp/github or whichever page we could visit to learn a bit more about you and your work. | |
| Thanks for joining! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Test Ndef | |
| ( | |
| Ndef(\yo, {|freq, amp, pan, what| | |
| var sig = SinOsc.ar(freq) * amp; | |
| what; | |
| Pan2.ar(sig, pan) | |
| }).play | |
| ) |