Category: 4
RaspberryPi racks
RackPi Raspberry Pi (2B / 3B / 3B+ / 4B) Rack Shield 19″ 2U with OLED & Power Switch Two-Tau Multi-Pi Rack Rack for Raspberry Pi … Read More
moreutils: the utilities package every UNIX/Linux/Mac OS developer should know
SOURCE: CLEAN CODING Amazing additions to the cli toolset: combine – combine lines in two files using boolean operators AND NOT OR XOR ifdata – ifconfig with simple to parse … Read More
sqlite3 access via bash
INSERT into DB from BASH 12345mName="Last name, First name" mSize="shoe 45" mCat="student" sqlite3 sqlite-database-file.db "insert into tableNameInDb (fieldA,fieldB,fieldC) values ("$mName", "$mSize", "$urlBase$mPath", "$mCat");" OUTPUT AS CSV in BASH 1sqlite3 sqlite-database-file.db … Read More
MuseScore – get that last line to fit on one page….
1. a staff / line is hanging over on the last page.. all alone.. and a problem for printing. 2. Goto FORMAT -> PAGE SETTINGS… 3. SCALING of STAFF SPACE … Read More
SourceConnect RTS Remote Transport Sync checklist
Source: SourceElements/Community For the full Remote Tranport Sync documentation please see: http://source-elements.com/support/rts This checklist goes over the essentials you need to confirm to achieve a successful RTS session. Because RTS … Read More
SourceConnect RTS in Pro vs Standard
Regarding the play button: 1. RTS sender is on SCPro — they press play in their DAW then the RTS receiver chases the sender — they press play in SC … Read More
bash NULL DEVICE – redirecting output & errors
source simpleit.rocks descriptors: stdin: 0 stdout: 1 stderr: 2 1>/dev/null ## Redirect OUTPUT (stdout) to null 2>/dev/null ## Redirect ERRORS (stderr) to null &>/dev/null ## Redirect OUTPUT and ERRORS (stdout … Read More