dgriffith

joined 2 years ago
[–] dgriffith@aussie.zone 6 points 1 day ago* (last edited 1 day ago) (1 children)

"Sorry boss, quota resets this evening at 8. See you tomorrow!"

"But it's 9am!"

*shrugs* "Quota. Got none. Seeya."

[–] dgriffith@aussie.zone 11 points 1 day ago

Roflcopter?

Hey hey hey hey hey whoa whoa let's just keep the big guns in reserve for now, ok?

[–] dgriffith@aussie.zone 2 points 2 days ago (1 children)

I work on heavy mining equipment and I tell the techs who are looking for a laptop to just buy something cheap because when you drop it off the top of a machine it's still just as broken.

[–] dgriffith@aussie.zone 8 points 3 days ago

Yet another reason not to buy that unhealthy trash.

ButButBut it's part of this complete breakfast!

Gestures broadly at the huge array of breakfast items on the table of which the cereal is a minor component

[–] dgriffith@aussie.zone 9 points 3 days ago (1 children)

If it's for general vehicle wiring it'll be mayhem.

If it's chunky busbars and such in the battery modules and drive motors... maybe not so much.

[–] dgriffith@aussie.zone 32 points 5 days ago* (last edited 5 days ago) (2 children)

"It's just physics."

AI slop detected.

For some reason LLMs just looooove that "It's just physics" phrase. Its not just physics. Internal combustion engines are an unholy mix of nearly every field of science known to man. If you want to try and explain how awesome they are, you can't handwave it all away in the first paragraph with three words.

In any case, I side with their "devil's advocate" on every statement they try to assert.

Added comment: Modern EVs require the use of semiconductors / ICs in their drivetrains that are near the peak of semiconductor technology. Chip fabrication is hands-down absolutely the most complex manufacturing process humans have invented so far, with less than a dozen facilities worldwide capable of making the components needed for a modern EV.

Checkmate, ~~atheists~~ gearheads.

[–] dgriffith@aussie.zone 2 points 6 days ago* (last edited 6 days ago)

That's quite an odessy. I put MX Linux on my 13 year old dell laptop, and there was an option in the MX utilities app to install the NVIDIA 340 drivers for it, and it merged them into the 7.0.something kernel that I had in about 3 minutes.

This isn't meant as snark. Get settled into things for a few months with what you've got and then boot a few distros off USB and see if there's something that better suits you or your hardware. You'll have a good idea by then if what you really want/need.

[–] dgriffith@aussie.zone 18 points 1 week ago* (last edited 1 week ago) (1 children)

Your ISP can theoretically use your home Wi-Fi router to track your movements.

This requires ancillary hardware that isn't present on wifi routers, and then it also requires wifi devices spread around the place to provide a signal source for human bodies to distort, and then it requires significant computational hardware that also isn't present in common home wifi routers.

Not to say that the general method can't be used for basic presence detection - Philips Hue ZigBee devices can use the variations in the background signal strength of ZigBee devices they can see around them to infer that someone is in a room, so they can switch lights on/off automatically. But it requires multiple devices in a room for it to work reliably and they need calibration as well.

[–] dgriffith@aussie.zone 24 points 1 week ago* (last edited 1 week ago) (2 children)

Not so much when you understand that Hook doesn't just want to kill Pan , he wants to make him suffer for losing his hand. It was all a game to Pan, but Hook was the one with the hook for a hand now.

So after what seems to be an eternity of him chasing this idiot, insufferable, man-child, the now-quite-crazed Hook has broken into his mortal enemies home, and now spots him asleep in his bed.

[–] dgriffith@aussie.zone 2 points 1 week ago

It worked, about 6 years ago.

Then I found that it kept "accidentally" getting reset "somehow" and dumping me into New Reddit, how strange.

[–] dgriffith@aussie.zone 13 points 1 week ago

It's not brilliant, it's something a software engineer should have mentioned in the first 5 minutes of the initial design meeting. It very likely was.

So what you need to understand is that mashing Bing and local results together was a deliberate design decision. Whether to artificially inflate Bing search numbers , or to get that sweet cash from sponsored results, who knows?

[–] dgriffith@aussie.zone 15 points 1 week ago* (last edited 1 week ago) (1 children)

The CPU in an average consumer PC can do tens of billions of instructions per second now. 10,000,000,000+ instructions per second. And then it can also offload some work to other devices. Here, graphics card, deal with updating this display at 144Hz. Hey network card, take this buffer and squirt it out the ethernet port at a 1 gigabit line speed for me.

And even with all that help, it still takes for-fucking-ever to get shit done. What the fuck are all those instructions doing‽

 

Hi all,

In an effort to liven up this community, I'll post this project I'm working on.

I'm building a solar hot water controller for my house. The collector is on the roof of a three-storey building, it is linked to a storage tank on the ground floor. A circulating pump passes water from the tank to the collectors and back again when a temperature sensor on the outlet of the collector registers a warm enough temperature.

The current controller does not understand that there is 15 metres of copper piping to pump water through and cycles the circulating pump in short bursts, resulting in the hot water at the collector cooling considerably by the time it reaches the tank (even though the pipes are insulated). The goal of my project is to read the sensor and drive the pump in a way to minimise these heat losses. Basically instead of trying to maintain a consistent collector output temp with slow constant pulsed operation of the pump, I'll first try pumping the entire volume of moderately hot water from the top half of the collector in one go back to the tank and then waiting until the temperature rises again.

I am using an Adafruit PyPortal Titano as the controller, running circuitpython. For I/O I am using a generic ebay PCF8591 board, which provides 4 analog input and a single analog output over an I2C bus. This is inserted into a motherboard that provides pullup resistors for the analog inputs and an optocoupled zero crossing SCR driver + SCR to drive the (thankfully low power) circulating pump. Board design is my own, design is rather critical as mains supply in my country is 240V.

The original sensors are simple NTC thermistors, one at the bottom of the tank, and one at the top of the collector. I have also added 4 other Dallas 1-wire sensors to measure temperatures at the top of tank, ambient, tank inlet and collector pump inlet which is 1/3rd of the way up the tank. I have a duplicate of the onewire sensors already on the hot water tank using a different adafruit board and circuitpython. Their readings are currently uploaded to my own IOT server and I can plot the current system's performance, and I intend to do the same thing with this board.

The current performance is fairly dismal, a very small bump of perhaps 0.5 - 1 deg C in the normally 55 degree C tank temperature around 12pm to 1pm, and this is in Australia in hot spring weather of 28-32 degrees C.(There's some inaccuracy of the tank temperatures, the sensors aren't really bonded to the tank in any meaningful way, so tank temp is probably a little warmer than this. But I'm looking for relative temperature increases anyway)

Right now , the hardware is all together and functional, and is driving a 13W LED downlight as a test, and I can read the onewire temp sensors, read an analog voltage on the PCF8591 board (which will go to the NTC sensors), and I'm pulsing the pump output proportionally from 0-100 percent drive on a 30 second duty cycle, so that a pump drive function can simply say "run the pump at 70 percent" and you'll get 21 seconds on, 9 seconds off. Duty cycle time is adjustable, so I might lower it a bit to 15 or 10 seconds.

The next step is to try it on the circulating pump (which is quite an inductive load, even if it is only 20 watts), and start working on an algorithm that reads the sensors and maximises water temperature back to the tank. There are a few safety features that I'll put in there, such as a "fault mode" to drive the pump at a fixed rate if there is a sensor failure, and a "night cool" mode if the hot water tank is severely over temperature to circulate hot water to the collector at night to cool it. There are the usual overtemp/overpressure relief valves in the system already.

All this is going in a case with a clear hinged cover on the front so I can open it and poke the Titano's touchscreen to do some things.

Right now I am away from home from work, so my replies might be a bit sporadic, but I'll try to get back to any questions soon-ish.

A few photos for your viewing pleasure:

The I/O and mainboard plus a 5V power supply mounted up:

The front of the panel, showing the Pyportal:

Thingsboard display showing readings from the current system:

Mainboard PCB design and construction via EasyEDA:

view more: next ›