eliminated spat5

This commit is contained in:
computermusik 2024-06-10 08:02:01 +02:00
parent 8b4158968c
commit a6640c1ea8
13 changed files with 11306 additions and 1 deletions

View File

@ -258,7 +258,7 @@ svg.push({
});
addButton("systemDIV", "cancelbutton", "Cancel", "background-color:" + nonactive + ";margin-left:20vw;", "document.getElementById('basicDIV').style.display='block';document.getElementById('expertDIV').style.display='none';document.getElementById('roomDIV').style.display='none';document.getElementById('spat').style.display='none';document.getElementById('systemDIV').style.display='none';document.getElementById('manualDIV').style.display='none';document.getElementById('basic').style['background-color']='" + active + "';document.getElementById('expert').style['background-color']='" + nonactive + "';document.getElementById('room').style['background-color']='" + nonactive + "';document.getElementById('system').style['background-color']='" + nonactive + "';document.getElementById('manual').style['background-color']='" + nonactive + "';");
addButton("systemDIV", "proceedbutton", "Shut Down", "background-color:" + alert + ";margin-left:15vw;", "none");
addButton("systemDIV", "proceedbutton", "Shut Down", "background-color:" + alert + ";margin-left:15vw;", "drawsocket.send({system: {shutdown : true}})");
elements.push(
{

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

22
maxnode-getmyip.js Normal file
View File

@ -0,0 +1,22 @@
'use strict';
const Max = require('max-api');
const os = require('os');
let adapter = "wlan0";
//let adapter = "lo0";
Max.addHandler("bang", () => {
if (os.networkInterfaces().hasOwnProperty(adapter)) {
let instance = os.networkInterfaces()[adapter][0]["address"];
//Max.post(instance);
Max.outlet(Number(instance.slice(instance.lastIndexOf(".") + 1)) - 100);
}
});

12
node_modules/.package-lock.json generated vendored Normal file
View File

@ -0,0 +1,12 @@
{
"name": "healing-soundscapes",
"lockfileVersion": 3,
"requires": true,
"packages": {
"node_modules/os": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/os/-/os-0.1.2.tgz",
"integrity": "sha512-ZoXJkvAnljwvc56MbvhtKVWmSkzV712k42Is2mA0+0KTSRakq5XXuXpjZjgAt9ctzl51ojhQWakQQpmOvXWfjQ=="
}
}
}

11
node_modules/os/README.md generated vendored Normal file
View File

@ -0,0 +1,11 @@
# os
This is a Node.js Core Module
# There's no need to install through npm
**Really, there's no need, just require/import it :)**
## API
https://nodejs.org/api/os.html

1
node_modules/os/index.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = require('os')

25
node_modules/os/package.json generated vendored Normal file
View File

@ -0,0 +1,25 @@
{
"name": "os",
"version": "0.1.2",
"description": "NodeJS Core Module Extended",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DiegoRBaquero/node-os.git"
},
"keywords": [
"node",
"os",
"core",
"module"
],
"author": "Diego Rodríguez Baquero <diegorbaquero@gmail.com> (https://diegorbaquero.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DiegoRBaquero/node-os/issues"
},
"homepage": "https://github.com/DiegoRBaquero/node-os#readme"
}

View File

@ -0,0 +1,9 @@
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path /Users/Shared/Max 8/Library/healing-soundscapes/package.json
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, open '/Users/Shared/Max 8/Library/healing-soundscapes/package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in: /Users/hajdu/.npm/_logs/2024-06-10T05_31_41_379Z-debug-0.log

17
package-lock.json generated Normal file
View File

@ -0,0 +1,17 @@
{
"name": "healing-soundscapes",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"os": "^0.1.2"
}
},
"node_modules/os": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/os/-/os-0.1.2.tgz",
"integrity": "sha512-ZoXJkvAnljwvc56MbvhtKVWmSkzV712k42Is2mA0+0KTSRakq5XXuXpjZjgAt9ctzl51ojhQWakQQpmOvXWfjQ=="
}
}
}

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"os": "^0.1.2"
}
}

1486
poly-vbap.maxpat Normal file

File diff suppressed because it is too large Load Diff

BIN
vc_redist.x64.exe Normal file

Binary file not shown.