- With the
Advanced
toggle enabled - Orca Slicer version: 2.2.0-beta (Sep 13, 2024, 9:45 PM PDT)
- Bambu Studio version: 1.9.7.52 (Sep 20, 2024, 4:21 AM PDT)
Sections
/* | |
* ____ _ _ ____ _ _ ___ _ _ ____ ____ _ _ | |
* |___ | | |___ |\ | | |__| | | | | |_/ | |
* |___ \/ |___ | \| | | | |__| |__| | \_ | |
* | |
* Simple library for modifiable EventEmitters | |
* | |
* Depends on the async module | |
* https://github.com/caolan/async | |
* npm install async |
(function(){ | |
if (!Function.prototype.bind) { | |
var Empty = function(){}; | |
Function.prototype.bind = function bind(that) { // .length is 1 | |
var target = this; | |
if (typeof target !== "function") { | |
throw new TypeError("Function.prototype.bind called on incompatible " + target); | |
} | |
var args = Array.prototype.slice.call(arguments, 1); // for normal call | |
var binder = function () { |
app.get("/api", function(req, res) { | |
if (req.query.lon === "" || req.query.lat === "" | |
|| req.query.lon = null || req.query.lat = null) { // handle undefined as well | |
res.sendStatus(404).json({ error: 'Latitude and longitude are required' }); | |
} else { | |
console.log(req.query); | |
res.json(req.query); | |
} | |
}); |
function getOutput(requestID, _poolName) { | |
var url = SEARCH_URL + '/' + requestID + '/output'; | |
request.get(url, function(err, response, body) { | |
if (err) { | |
console.error("Error requesting URL", url, err); | |
} else { | |
if (body) { | |
console.log("Writing json response to " + _poolName + ".json"); | |
writeJSON(_poolname, body); | |
} else { |
'use strict'; | |
// Dependencies | |
const blake2 = require('blake2'), | |
fs = require('fs'); | |
// Setup the blake2eb hash | |
const hash = new blake2.Hash('blake2b'); | |
hash.setEncoding('hex'); |
Advanced
toggle enabledSections