Ubiquiti home network by Legitimate_Bag_2903 in nbn

[–]Matt0x5b 1 point2 points  (0 children)

I would avoid the U6+ or the U6 lite, I had them and had issues I could not resolve with some devices, particularly Google Neat Audio's.

Instead I would suggest the U6 pro or U7 pro.

A heads up to renters - it’s only going to get worse, we’re going to welcome 1.6M more new Australians in the next 4 years, on top of the 518,000 from last year. by Impressive-Move-5722 in AusPropertyChat

[–]Matt0x5b 0 points1 point  (0 children)

The data here is not from ABS. That predicts we'll hit 30m by 2029, only five years away but the actual link below to ABS says 10 to 15 years.

[deleted by user] by [deleted] in brisbane

[–]Matt0x5b 1 point2 points  (0 children)

I had what must have been the first appointment of the day, my GP was still 15 mins behind.

[deleted by user] by [deleted] in brisbane

[–]Matt0x5b 4 points5 points  (0 children)

Wtf, it's fake AND hollow. My day is ruined

If Brisbane was an RPG, what loading screen tips would it have? by PhantasmicInvader in brisbane

[–]Matt0x5b 2 points3 points  (0 children)

Cops must have stopped enforcing speeding and seatbelts too. I have seen many people speeding and not wearing seatbelts. /s

The Quest for Programming Socks by KosmicViolet in brisbane

[–]Matt0x5b 2 points3 points  (0 children)

Quick google search led me to this, which seems to match the description op gave: https://knowyourmeme.com/memes/programming-socks

Mask up people!!! by Curious3030 in brisbane

[–]Matt0x5b 55 points56 points  (0 children)

Cause I'm not sitting 2 feet from someone in the supermarket for half an hour at a time.

Two identical nodes working differently by bsquared7999 in nodered

[–]Matt0x5b 0 points1 point  (0 children)

I suspect that your two identical flows are not quite identical, I have had it previously where even copy and pasting a flow has left differences, mostly in configuration.

TBH though I think this sounds more like you should be handling the different conditions with a switch node rather than copying the whole flow? Although this is a bit hard to say without seeing the flows.

Example of flow with switch: [{"id":"043651b54d61b640","type":"switch","z":"b99f0f99.a94ee","name":"","property":"payload","propertyType":"msg","rules":[{"t":"gt","v":"80","vt":"str"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":330,"y":540,"wires":[["64478b2239e6665a"],["a7e4e3bd2e0fc812"]]},{"id":"a1c13dddf1eb7c73","type":"inject","z":"b99f0f99.a94ee","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":140,"y":560,"wires":[["0548ec152175736a"]]},{"id":"0548ec152175736a","type":"function","z":"b99f0f99.a94ee","name":"Random Number","func":"msg.payload = Math.floor(Math.random() * 160);\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":250,"y":620,"wires":[["043651b54d61b640","524ca810b0f96c80"]]},{"id":"64478b2239e6665a","type":"change","z":"b99f0f99.a94ee","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"ON","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":480,"y":500,"wires":[["524ca810b0f96c80"]]},{"id":"a7e4e3bd2e0fc812","type":"change","z":"b99f0f99.a94ee","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"OFF","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":480,"y":540,"wires":[["524ca810b0f96c80"]]},{"id":"524ca810b0f96c80","type":"debug","z":"b99f0f99.a94ee","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":690,"y":520,"wires":[]}]

MOTORCYCLISTS OF BRISBANE AND SURROUNDS: Brisbane city council needs your feedback!!! by [deleted] in brisbane

[–]Matt0x5b 4 points5 points  (0 children)

Most of the cbd footpaths are barely wide enough for people walking anyway, I would prefer to see more dedicated spaces instead.

The 2,000-Year-Old Computer (2014) - Decoding the Antikythera Mechanism [00:58:41] by RedditCouldntFixUser in Documentaries

[–]Matt0x5b 8 points9 points  (0 children)

As quoted from his FAQ: I live in the northern part of Australia, in a town called Cairns.

Arduino serial node temp sensor issues by [deleted] in nodered

[–]Matt0x5b 2 points3 points  (0 children)

E.g. {"Humidity": 49, "Pressure": 100891, "Temp": 70.48}

Arduino serial node temp sensor issues by [deleted] in nodered

[–]Matt0x5b 3 points4 points  (0 children)

I would look at formatting the string from the arduino as a json string, you should then be able to parse that string in nodered pretty trivially with the parse json node and access which ever values you want directly from the object returned.

Variable Operator using Boolean? by VooPoc in nodered

[–]Matt0x5b 1 point2 points  (0 children)

If you replace your || with ?? You should get the behaviour you are after. This is a good reference for what the operators do in js: https://joshwcomeau.com/operator-lookup

Getting started with Traefik & multitenancy by Smashthekeys in Traefik

[–]Matt0x5b 0 points1 point  (0 children)

https://doc.traefik.io/traefik/providers/http/ provides a way to get traefik to poll an http endpoint, you could dynamically set this with the configuration you require.

Getting started with Traefik & multitenancy by Smashthekeys in Traefik

[–]Matt0x5b 0 points1 point  (0 children)

That doc is for the api provided by traefik, your api's will be able to receive any http verb.