[-] OminousOrange@lemmy.ca 3 points 10 hours ago

Too bad the TV broadcasts rarely show when anyone runs on to the field.

[-] OminousOrange@lemmy.ca 5 points 4 days ago

Nice, I have much the same setup in my house!

I visited the recently Passive House certified student residence buildings at the University of Victoria, and the heat recovery there is quite interesting. Passive House requires a very low heating load, so they recover all the heat they can from the commercial kitchen (the presence of which is rare in a Passive House because of high ventilation requirements) processes such as ventilation hoods and refrigeration systems and put it into the DHW system.

They had to get a bit creative with the design, but it's really not that complicated. More just not doing things the way they've always been done.

[-] OminousOrange@lemmy.ca 16 points 4 days ago

I think there's a lot of opportunity for reducing wasted energy in many buildings. Even the term "waste heat" is indicative that energy is typically exhausted when it could be used for space or water heating. Obviously mechanical modifications would be needed, sometimes extensive, but it's a good option for reducing energy use.

[-] OminousOrange@lemmy.ca 37 points 5 days ago

"Ground, it's Fred. Off to work. Request taxi to the road."

"Fred, Ground, roger. Taxi bravo three, left on Juliet, cross runway 34 right, right on foxtrot to the gate. I'll let security know you're on the way. Have a good day."

[-] OminousOrange@lemmy.ca 9 points 5 days ago

It starts early in the design process. But at that stage, it would be best to pause installation, have a mechanical engineer do the mechanical design (including equipment selection) based on an energy model and install the recommended equipment.

[-] OminousOrange@lemmy.ca 34 points 5 days ago

I work in building science. It's obscene how little actual design and quality control goes into residential homes.

The typical design is just one step above being illegal, and people are often scared off of doing anything more than that by the threat of increased cost. However, they don't realize that they pay for it either way; either on their mortgage, or on utilities. Only one of those you can actually own in the end.

[-] OminousOrange@lemmy.ca 1 points 6 days ago

I perhaps haven't played since the ground handling update, but tailwheel aircraft never behaved like actual tailwheel aircraft. Their steering seemed coupled to the rudder, similar to nose wheel aircraft, instead of having any of the momentum effects of a tailwheel with just a loose steering influence.

I believe the airport was a mid-sized towered airport in Idaho. I forget exactly which though. I selected it as my home base for Neofly because of the scenery and was disappointed when it seemed rather incomplete.

I feel it would've been ahead of where it was if it took the aviation side of FSX and paired it with the scenery, weather, and online features of MSFS.

[-] OminousOrange@lemmy.ca 7 points 6 days ago

I had FS2020 working well with yoke and pedals and a streamdeck, but it just didn't feel like a complete sim. Many airports just weren't there or had incorrectly labeled taxiways, which threw off taxi instructions and obviously made real world charts useless. Tailwheel aircraft didn't really work properly at all.

Sure, it was a beautiful sim, but was quite lacking on the technical side. I'm doubtful a whole new product is going to solve any of those issues.

[-] OminousOrange@lemmy.ca 31 points 6 days ago

I was going to also post the direct AMA link, but the OP is a nice concise summary of many of the key discussions, provided without having to go to that site. I'd recommend reading that instead and follow links as you see fit.

14
submitted 2 months ago* (last edited 2 months ago) by OminousOrange@lemmy.ca to c/selfhosted@lemmy.world

Fine folks of c/selfhosted, I've got a Docker LXC (Debian) running in Proxmox that loses its local network connection 24 hours after boot. It's remedied with a LXC restart. I am still able to access the console through Proxmox when this happens, but all running services (docker ps still says they're running) are inaccessible on the network. Any recommendations for an inexperienced selfhoster like myself to keep this thing up for more than 24 hours?

Tried:

  • Pruning everything from Docker in case it was a remnant of an old container or something.
  • Confirming network config on the router wasn't breaking anything.
  • Checked there were no cron tasks doing funky things.

I did have a Watchtower container running on it recently, but have since removed it. It being a 24 hr thing got me thinking that was the only thing that would really cause an event at the 24 hr post start mark, and it started about that same time I removed Watchtower (intending to do manual updates because immich).

...and of course, any fix needs 24 hours to confirm it actually worked.

A forum post I found asked for the output of ip a and ip r, ~~see below.~~ Notable difference on ip r missing the link to the gateway after disconnecting.

Update: started going through journalctl and found the below abnormal entries when it loses connection, now investigating to see if I can find out why...

Apr 16 14:09:16 docker 922abd47b5c5[376]: [msg] Nameserver 1.1.1.1:53 has failed: request timed out.
Apr 16 14:09:16 docker 922abd47b5c5[376]: [msg] Nameserver 192.168.1.5:53 has failed: request timed out.
Apr 16 14:09:16 docker 922abd47b5c5[376]: [msg] All nameservers have failed

Update 2: I found using systemctl status networking.service that networking.service was in a failed state (Active: failed (Result: exit-code)). I also compared to a separate stable Docker LXC which showed networking.service was active, so, did some searching to remedy that.

x networking.service - Raise network interfaces
     Loaded: loaded (/lib/systemd/system/networking.service; enabled; preset: enabled)
     Active: failed (Result: exit-code) since Tue 2024-04-16 17:17:41 CST; 8min ago
       Docs: man:interfaces(5)
    Process: 20892 ExecStart=/sbin/ifup -a --read-environment (code=exited, status=1/FAILURE)
    Process: 21124 ExecStopPost=/usr/bin/touch /run/network/restart-hotplug (code=exited, status=0/SUCCESS)
   Main PID: 20892 (code=exited, status=1/FAILURE)
        CPU: 297ms

Apr 16 17:17:34 docker dhclient[20901]: DHCPACK of 192.168.1.104 from 192.168.1.1
Apr 16 17:17:34 docker ifup[20901]: DHCPACK of 192.168.1.104 from 192.168.1.1
Apr 16 17:17:34 docker ifup[20910]: RTNETLINK answers: File exists
Apr 16 17:17:34 docker dhclient[20901]: bound to 192.168.1.104 -- renewal in 37359 seconds.
Apr 16 17:17:34 docker ifup[20901]: bound to 192.168.1.104 -- renewal in 37359 seconds.
Apr 16 17:17:41 docker ifup[20966]: Could not get a link-local address
Apr 16 17:17:41 docker ifup[20892]: ifup: failed to bring up eth0
Apr 16 17:17:41 docker systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Apr 16 17:17:41 docker systemd[1]: networking.service: Failed with result 'exit-code'.
Apr 16 17:17:41 docker systemd[1]: Failed to start networking.service - Raise network interfaces.

A reinstall of net-tools and ifupdown seems to have brought networking.service back up. apt-get install --reinstall net-tools ifupdown

Looking at the systemctl status return, I bet everything was fine until dhclient/ifup requested renewal about 24 hours after initial connection (boot), found that networking.service was down, and couldn't renew, killing the network connection.

We'll see if it's actually fixed in 24 hours or so, but hopefully this little endeavour can help someone else plagued with this issue in the future. I'm still not sure exactly what caused it. I'll confirm tomorrow...

Update 3 - Looks like that was the culprit. Container is still connected 24+ hrs since reboot, network.service is still active, and dhclient was able to renew.

Update 4 - All was well and good until I started playing with setting up Traefik. Not sure if this brought it to the surface or if it just happened coincidentally, but networking.service failed again. Tried restarting the service, but it failed. Took a look in /etc/networking/interfaces and found there was an entry for iface eth0 inet6 dhcp and I don't use ipv6. Removed that line and networking.service restarted successfully. Perhaps that was the issue the whole time.

[-] OminousOrange@lemmy.ca 80 points 3 months ago

I live in a farming community in Saskatchewan, Canada. It's really mind blowing how many farmers don't give two shits about climate change. They're really not unlike heavily profit-driven companies just looking for next quarter gains, completely oblivious to other longer term factors that might be detrimental to their business.

It's sad in a way. This is their livelihood, and rather than adapt to the risk to bring some sort of long term sustainability, they're just looking for that next brand new model of truck to buy when harvest comes in this year.

[-] OminousOrange@lemmy.ca 64 points 4 months ago

"Working as intended."

-Republicans

[-] OminousOrange@lemmy.ca 64 points 5 months ago

Network time protocol protocol

107
submitted 6 months ago by OminousOrange@lemmy.ca to c/privacy@lemmy.ml

This has been one of the key features I've been waiting for to finally be able to move away from Google Photos and OneDrive for mobile photos backup.

38
submitted 6 months ago by OminousOrange@lemmy.ca to c/degoogle@lemmy.ml

This has been one of the key features I've been waiting for to finally be able to move away from Google Photos and OneDrive.

4
submitted 6 months ago by OminousOrange@lemmy.ca to c/android@lemdro.id

This has been one of the key features I've been waiting for to finally be able to move away from OneDrive.

12
submitted 1 year ago* (last edited 1 year ago) by OminousOrange@lemmy.ca to c/woodworking@lemmy.ca

Just made this sectional following the plans from Ana White.

Roughly $900 CAD in materials, $750 of that being the cushions. I used Duvholmen cushions with Jarpon covers from Ikea, accent pillows I found at Home Sense. All 2x4 lumber and I used pocket holes where screws would be visible. Finished with Ready Seal natural cedar.

Quite happy with it overall. It's really comfortable and will last far longer than (and was cheaper than) those plastic weave ones from big box stores.

view more: next ›

OminousOrange

joined 1 year ago