JustEnoughDucks

joined 2 years ago
[–] JustEnoughDucks@feddit.nl 1 points 1 hour ago

Absolutely can't wait for new battery tech for grid storage too! Sand batteries that can use otherwise-unusable sand, sodium-Ion batteries (or mainly inverters that can handle the expanded voltage range compared to Lithium-based), expansion of pumped water batteries where it works. This is about to be THE time for government-funded alternative batteries across the world. Energy would get so plentiful that it wouldn't even be profitable for fossil fuels anymore. That is the dream. Of course there is a 99% chance that every single government in the world drops the ball completely.

[–] JustEnoughDucks@feddit.nl 14 points 18 hours ago (3 children)

I'm sorry. There are people who go to an adult hardcore porn site and then type in "Suitable for work"??? Like do you think the site wouldn't get flagged at your work?

[–] JustEnoughDucks@feddit.nl 1 points 1 day ago* (last edited 1 day ago)

KNX.

Everything is decentrally programmed, and you can do extra automations and stuff from home assistant, but KNX devices are wired (generally) and will always Just Work™. More expensive that the cheaper retrofit options, but if you factor in manual overrides or getting the "better" wireless smart devices it is comparable. They generally also have a manual override at the panel. For core functions like lights, HVAC, roll shutters or blinds, etc... That is honestly the best option (unless you want every light to be an RGB light for some reason, then you still need smart bulbs)

[–] JustEnoughDucks@feddit.nl 1 points 2 days ago

If you ever need a language buddy, let me know.

There is also a Learn Dutch discord that is fairly active.

Duolingo sucks ass for learning languages. Dutchpod101 is pretty good, but the best is a combination of dutch books + listening like dhtchpod101 or some simple news podcasts or so.

[–] JustEnoughDucks@feddit.nl 1 points 3 days ago

Maybe people have gotten Saned for network scanning working on other things than bazzite, but I can't figure it out and the discord is never helpful.

But document signing is a technical limitation caused by flatpak. You can technically do it by installing your entire office and authentication suite on a rooted distrobox, but then that is defeating a fair amount of the point of ease of use and sandboxing. I haven't tested that though so even that might have some bugs or not work.

There are but trackers on different upstream flatpak software for it like Firefox, but it has been completely dead for 5 years with no plans on looking at it.

[–] JustEnoughDucks@feddit.nl 14 points 5 days ago (2 children)

Bazzite or an immutable if you do gaming and don't need a lot of special functionality (e.g. network scanning doesn't work, document signing doesn't work and will never work, managing gpg keys, embedded firmware development, Belgian EID, etc...)

Mint if you don't have a brand new system and just want an easy experience.

Arch if you want all niche software to simply be available through the package manager and never have to find rpm/deb packages.

Debian for a server (or maybe opensuse MicroOS nowadays)

Opensuse if you really want an EU OS or something very integrated with a snapshot system.

And of course, Hannah Montana Linux if you are enlightened.

[–] JustEnoughDucks@feddit.nl 2 points 5 days ago

Yes, but the most ecological phone is the one you already have or a second hand.

It is a good balance, AND for people from the EU who are getting big into the "Buy EU" movement instead of US companies, it is the only phone designed, engineered, and coded mostly in the EU.

[–] JustEnoughDucks@feddit.nl 5 points 1 week ago

Especially because virtually all high megapixel country cameras have smaller physical pixel size and use pixel binning and combining to try to recreate a better image through computation where smaller megapixel cameras can have bigger pixel sizes and absorb more light, leading to better raw images. (Of course there are great and bad implementations of both ideas)

[–] JustEnoughDucks@feddit.nl 1 points 1 week ago* (last edited 1 week ago)

You can also look at the MKBHD 2024 smartphone camera comparison test with the FP5. I would suggest taking the test yourself if that is still possible.

I would guess that the camera will be comparable. (Everything below if FP5 assuming about the same performance with the FP6)

For me, daylight pics were after all of the pixels but before anything else. I like the more neutral not supremely over-saturated over-sharpened/smoothed pictures that many phones take nowadays.

For me, it was middle of the pack for dimly lit photos.

For the overall ELO with everyone, FP5 was on the mid-lower end (of a comparison of all flagships + pixel A series), but perfectly usable for people who aren't doing social media as a job.

[–] JustEnoughDucks@feddit.nl 4 points 1 week ago* (last edited 1 week ago)

Hell, even here in Belgium, we take the green option to get all of our electricity from wind and solar (of which there is a ton) and it is slightly MORE expensive.

Plus tons and tons of people, like a significant portion of the population, have solar panels and batteries with grid feedback.

Electricity prices have only gone up, even when it gets cheaper for the company. Energy companies are universally corrupt and full of shit

[–] JustEnoughDucks@feddit.nl 1 points 1 week ago* (last edited 1 week ago)

Except network scanning is the furthest thing from "just works" on atomic fedora based distros. That is an essential usecase for many or most people.

I like fedora atomic and I run bazzite, but can't break is quite different than "just works" in my opinion.

[–] JustEnoughDucks@feddit.nl 6 points 1 week ago (2 children)

Don't get a tablet if you already have a Linux laptop or a dedicated workspace.

Get a drawing pad. They are better, more cost-effective, have a better feel (non-display versions), have better pens, and you aren't restricted to neutered programs offered on android/iOS.

Wacom is traditional, but expensive and their pen tech is kind of aging at this point, but they always work flawlessly.

XPPen is the great value alternative (with even better stuff on the top end). i have an XPPen Deco Pro Gen2 and it is an absolutely great pad with the texture of paper, and their little macropad with a scroll wheel works well. The downside is that you need a screen, but it is quite ergonomic.

The few actual artists I know use the XPPen Artist Pro series which is a drawing pad with a screen, and then they just plug it into their laptop and close the lid. Not as portable, but generally as good or better experience

XPpen also has good Linux drivers. They work in the kernel by default often, but the macropad and pressure sensitivity customization won't work globally without their drivers.

 

Hello,

I am making an open source privacy-first fitness band for myself and I am writing the firmware now as someone relatively inexperienced at firmware development (I am an electronics engineer by trade). I get it done but sometimes I run into concept issues, especially when I start overthinking, like now that I need help with.

I have a macronix SPI NOR flash on-board that I want to use as offline activity saving, backup at low battery, etc... I am dreaming up the data structure for it. Here is the values I need to save to not lose information and what will be required for my supported features in the Bluetooth Physical Activity Monitor Service:

struct memory_map_nor {
    time_t timestamp;
    uint16_t sub_sess_id;
    uint32_t steps: 24;
    uint8_t bpm;
    float16_t spo2;
    uint16_t pulse_inter_beat_interval;
    uint16_t cadence;
    uint16_t speed;
    uint16_t activity_level;
    uint16_t activity_type;
    uint16_t temp;
};

So from this datastructure, it has a total of 28 bytes of data. This has to fit on a 256 byte page, which means 9 "rows" of data can be written per page, 144 per sector, 2304 per 64 bit block, and 147456 in total for a 32Mbit NOR.

But, I am getting confused while reading about memory structures in "normal" processors that need to read everything in 4/8-byte words via the parallel interfaces. This means that conventionally, everything has to be padded to neat structures that are divisible by 4 (32-bit) for QSPI reading. In that case, I would either have to add another 32 bits of data or pad 32 bits to every "row", making a neat 8 data "rows" per page.

OR, because I am only using single lane SPI, would this not matter and I could shove an extra datapoint in each page. The difference is 147456 data rows vs 131072 data rows. At 3s polling rate, that is 5.12 days vs 4.55 days. For my application, the difference might be useless anyway, but the band goal battery life is 2 weeks or so.

Again, maybe I am overthinking this and can just pad the data to make everything neat and fit well. Anyone have any opinions? Thanks!

 

Glass canning jars are absolutely ridiculous here in Belgium. I garden and I am going to scale up my gardening next year, so I need to get into canning and preserving again.

If you live in the US, you could get a 12 pack of standard mason jars in a store for https://www.target.com/p/ball-16oz-12pk-glass-regular-mouth-mason-jar-with-lid-and-band/-/A-12794405 under $15.

Here, any sort of glass jar is no cheaper than 20€ for 6 online and in stores it is often 5-10€ per jar, depending on size!! That is 300% more expensive on the cheap end here. It is not super sustainable to have to spend 200 euros on glass jars to can your extra fruit and vegetables.

Is there a secret to finding reasonably-priced glass canning jars that some people have found? I would reuse glass jars that I get from the store, but you are not supposed to reuse the lids because they degrade and will let in harmful bacteria and let things oxidize.

 

I played rimworld on and off casually for a few years. <100 hours in the game. I could never make it to the spaceship though I did have a pretty good colony or two.

Sorry here is the rant of my recent colony I tried playing for hours and hours:

I bought ideology and came back to rimworld because it sounded fun and wanted a simple tribal start. Everyone said arid shrublands is easy so sure. i picked pheobe on normal difficulty because I was looking for a relaxed time. Everyone says arid shrublands is the easiest.

Holy shit. 4 animals on the entire map + 1 herd of elephants. Almost no trees whatsoever, and researching is so damn slow that I have only had stonecutting and complex furniture done in 2 years. Electricity by itself would take 3-4 years of non-stop research...

Meanwhile, there is no way to heat or cool anything because campfires make a room boil (and there is no wood) and passive coolers don't work (and there is no wood). I have a giant cactus farm, but don't worry, somehow it takes 2 seasons to fully grow when it says 15 days on the card and it is 100% fert. So that doesn't help much. So there is no way to cool except to go into the mountains. Fine, except oh wait, when it is 60C outside, it is still 50C in the heart of the mountain when everything has doors...

I have half the map covered in agriculture and the heat is so intense (35-60C and never ever ever drops below that) means that I have to use every bit of spare wood for cooking and every single day is a fight to have enough food. I have to rotate out cooks because they will pass out in the kitchen.

Then I am hit with heatwave after >70C heatwave. Crippling and incapacitating all of my colonists for a week at a time until everyone is starving. Don't even think of cooking during a heatwave. Then it will get to over 80 in the room to cook one meal and the colonist will instantly go down. Not to mention the frequent heat storms during the heatwave to set everything on fire, but of course there I'd no technology like "a bucket of water" so my colonists have to let it all burn or die of heatstroke trying to pat it out lovingly with their bare hands.

2 raiders in 3 years, 0 chance to supplement my 5 colonists in any way at all. Each of those 2 raids had the people instantly killed, so no chance to recruit.

I can't hunt because my tech is so bad and my colonists are so slow that shooting an elephant once means they charge across the map and wipe out all 5 colonists in 30s

I can't raid because every single day is a fight for food for the day and the colonist tech is so bad they would get destroyed instantly.

I can't research armor because that would take years and years and I need to sink every minute in every day trying to get electricity so the next heatwave doesn't wipe me out.

Pretty much I am stuck in the most difficult fight for my colony every minute of every day and it simply isn't fun at all. Not eventful at all either. There is no story, just a slow grind of no technology and brutal, never ending heatwave conditions. This is what I assumed desert would be like, not arid shrublands...

That isn't even mentioning the weekly "mad hare"... some world that this is, 1 mad rabbit will beat 2 people, 1 with a spear and one with a revolver. What on earth. Then I am down to 3 people for at least 3 days while they recover. No way they will go down my completely open spike corridors either, they will just wait outside until I need someone to harvest agave outside of the walls where 1 single scratch takes your colonist down to 20% movement speed and it can just run them down...

/rant

Sorry, I hear people say that arid shrublands are the easiest biome, but holy hell would I disagree. If your farm isn't churning out rice within the first few days, you are simply completely dead.

 

In Belgium, we are forced by law to use Cca data cables because of "lower fire risk" while I hear literally everywhere that CCA data cables have a much higher fire risk.

Everything here has to comply with the euroclass chart level cca or higher which is confusing because they seem to be combustibility(ca) ABCDEF rating. Making the minimum required in Belgium (and the most prevalent) Cca.

I think for example that getting this for PoE (sorry, in Dutch) would be fine because it does say that it is pure copper, but it also says that it is CCA which is confusing.

Not really a question or anything, just very confusing considering Cca and Eca are the 2 cable types used for residential homes which happen to correspond also to Copper clad aluminum and Enhanced Circuit Integrity. Adds extra probably completely unnecessary stress.

 

Hey everyone,

I am completely stripping my house and am currently thinking about how to set up the home network.

This is my usecase:

  • home server that can access the internet + homeassistant that can access IoT devices

  • KNX that I want to have access to home assistant and vice versa

  • IoT devices over WiFi (maybe thread in the future) that are the vast majority homemade via ESPHome. I want them to be able to access the server and the other way around. (Sending data updates and in the future, sending voice commands)

  • 3 PoE cameras through a PoE 4 port switch

  • a Chromecast & nintendo switch that need internet access

Every router worth anything already has a guest network, so I don't see much value in separating out a VLAN in a home use case.

My IoT devices work locally, not through the cloud. I want them to work functionally flawless with Home assistant, especially anything on battery so it doesn't kill its battery retrying until home assistant polls.

The PoE cameras can easily have their internet access blocked on most routers via parental controls or similar and I want them to be able to send data to the on-server NVR

I already have PiHole blocking most phone homes from the chromecast or guest devices.

So far it seems like a VLAN is not too useful for me because I would want bidirectional access to the server which in turn should have access from the LAN and WiFi. And vice versa.

Maybe I am not thinking of the access control capability of VLANs correctly (I am thinking in terms of port based iptables: port X has only incoming+established and no outgoing for example).

I figure if my network is already penetrated, it would most likely be via the WiFi or internet so the attack vector seems to not protect from much in my specific use case.

Am I completely wrong on this?

 

I got immich with SSO up and running. It runs like a dream compared to Photoprism and is simple enough for me, but also has necessary features like user accounts.

There is one thing I couldn't find in the docs:

I already have a library of 5000 photos and 150 videos on my server that sync to my phone with Syncthing to 4 different directories (one for each phone I took the photos on) in Immich. Right now I have that directory as an external library, but I don't think this is the "right way."

My goal:

  • No duplicates between phone app and desktop app
  • Don't have to re-upload every image from my phone as my network is 100/30 mbps
  • Am able to manage my photos from the Immich app and web app (deleting photos that will propagate between devices)

Can I just map the "Upload" folder to that syncthing photo base folder and get parity between my phone and my server? Or do I have to re-upload everything from my phone? Or am I waiting for a feature that doesn't quite exist yet? I noticed some feature discussions about photo hashing and de-duplication.

I tried asking in a discussion on the repo, but nobody answers those much.

 

For the past few months or so, steam precaching has been out of control. I have to download between 10 and 30 GB of shader precache data per day. That is extremely ridiculous. Steam's shader caches are quite often almost as large as the game itself. For example: the image here is a game that is ~7GB for the full game, downloading 10GB of shader precache. If I download an average of 30GB of shaders per day, then that is almost 1TB of data downloaded written per month just in shaders...

Not to mention that games I play regularly like CS2 get a precache update literally every 2 days that is 5-10GB and if I manage to cancel it, there is 0 difference in performance at all.

Also fossilize replay that takes 20%-50% CPU load, sometimes for an hour and is the single highest user of disk IO on my entire system. I would be concerned about SSD wear if it was during the early times of ssd just because of the massive amount of writes.

I'm all for downloading shader precaching, but at normal intervals of after updates, not just randomly every few days when there hasn't been a game update in months or years. I don't want to delete all of my games because I only have 100/30 internet, so it would take me a long time too redownload games.

Has anyone else been seeing these ridiculous intervals and datasets of shader cache? Could there at least be a selective pre-caching setting only for games that I play regularly so I am not caching shaders for games that I haven't played in 2 years?

 

Hey everyone,

There is no real "homenetworking" community like there was on reddit so I thought I would try my luck here.

I live in a 130m^2 house (~1500sqft) that is being completely stripped. That means I am putting in 12-14 Ethernet jacks in the rooms that might need it and have to completely redo my home network setup.

It is a house from the 1950s in belgium, so 21cm thick internal brick walls, a bit thicker concrete floors on the 2 levels. It is essentially a square (8m x 9m outer dimensions), and most of the advice on the internet is built for sprawling American wood houses which have completely different absorption of wireless signals. It has central stairs and essentially 4 rooms, 2 on either side with the kitchen in the back being bigger.

The little advice that I have seen is "brick walls -> get a bunch of access points" but that doesn't sit right with me.

  1. Currently we are using a Proximus (our ISP) modem/router in the northwest most far corner or the house and still get weak signal (enough for lower quality videos like Instagram reels) all the way in the southeast corner on the 2nd floor. It goes through 2 brick walls, a concrete floor, and a door and we can still use WiFi 6. Intuitively I would then set up something like an Asus rt-ax58u or a zenwifi XT8 mounted to the staircase wall or in the hallway in the center of the house. I don't know if that would be strong enough to reach everything we need, but it seems better to me than a router in each corner and blasting channel noise at our neighbors' houses since in belgium there isn't much side-garden if any.

  2. I have a home server running a variety of local and internet-facing services for myself and family. Due to ease of wiring, I would prefer running modem -> TP-SG1SG016DE -> Wireless Router and using an Asus router. Would the TPlink kind-of-managed-switch be able to isolate the modem fron the rest of the network and just run it to my router to use the LAN of the router for the rest of the ports on my switch? It has port isolation functionality, so I assume so. Then I don't have to run double Ethernet to the hall.

I want to go with Asus because I hear that they generally have more features than other brands. I for sure need port forwarding, QoS, disabling PnP, assigning static IP, and NAT loopback if possible so that local access of services doesn't have to go through cloudflare and can go directly to my reverse proxy. My TPlink Archer A7 that I use now can't do NAT loopback and it makes any file transfers limited by my 5:1: asymmetrical upload speed. Also having VLANs for any cameras would be great, but I think you can do something similar via parental controls on an ASUS (restricting a certain device IP's internet access.

Would the Asus rt-ax58u or a zenwifi XT8 have the festures that I would need for my simpleish home server?

Thanks for the help!

Edit: Tl;dr since nobody reads this long of a post:

  • I am running Ethernet (cat6) to every room. Modern laptops as well as phones have no Ethernet port, so I need wifi

  • I am looking at 1 wireless router, no "mesh" bs at all. The advice of overstuffing a small house full of a dozen access points is overkill and detrimental to performance without power and channel usage tuning.

  • I have specific features I want in a router, can one of the listed ones do all of that like NAT loopback?

 

Hello everyone,

I am trying to get my new A380 working on jellyfin for transcoding. My setup is headless so I have no X server or wayland installed.

I am running debian 12 bookworm with backported ZFS and kernel:

Linux Kiruna 6.4.0-0.deb12.2-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.4.4-3~bpo12+1 (2023-08-08) x86_64 GNU/Linux

According to everything I found, there is no need for any extra drivers as Intel card drivers are baked into the kernel and functional on 6.2+

I have followed the documentation regarding intel GPUs and added both /dev/dri and /dev/dri/renderD128 to my devices in jellyfin and restarted.

Executing vainfo in the container space returns this:

Trying display: drm
libva info: VA-API version 1.19.0
libva info: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_19
libva error: /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so init failed
libva info: va_openDriver() returns 1
libva info: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_1_19
libva error: /usr/lib/jellyfin-ffmpeg/lib/dri/i965_drv_video.so init failed
libva info: va_openDriver() returns -1
vaInitialize failed with error code -1 (unknown libva error),exit

vainfo on the main device sudo vainfo --display drm --device /dev/dri/card0 returns the same thing even though this command should work on headless servers.

executing docker exec -it jellyfin /usr/lib/jellyfin-ffmpeg/ffmpeg -v verbose -init_hw_device vaapi=va -init_hw_device opencl@va

for checking OpenCL gives this:

ffmpeg version 5.1.3-Jellyfin Copyright (c) 2000-2022 the FFmpeg developers
  built with gcc 11 (Ubuntu 11.4.0-1ubuntu1~22.04)
  configuration: --prefix=/usr/lib/jellyfin-ffmpeg --target-os=linux --extra-libs=-lfftw3f --extra-version=Jellyfin --disable-doc --disable-ffplay --disable-ptx-compression --disable-static --disable-libxcb --disable-sdl2 --disable-xlib --enable-lto --enable-gpl --enable-version3 --enable-shared --enable-gmp --enable-gnutls --enable-chromaprint --enable-libdrm --enable-libass --enable-libfreetype --enable-libfribidi --enable-libfontconfig --enable-libbluray --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libopenmpt --enable-libdav1d --enable-libwebp --enable-libvpx --enable-libx264 --enable-libx265 --enable-libzvbi --enable-libzimg --enable-libfdk-aac --arch=amd64 --enable-libsvtav1 --enable-libshaderc --enable-libplacebo --enable-vulkan --enable-opencl --enable-vaapi --enable-amf --enable-libmfx --enable-ffnvcodec --enable-cuda --enable-cuda-llvm --enable-cuvid --enable-nvdec --enable-nvenc
  libavutil      57. 28.100 / 57. 28.100
  libavcodec     59. 37.100 / 59. 37.100
  libavformat    59. 27.100 / 59. 27.100
  libavdevice    59.  7.100 / 59.  7.100
  libavfilter     8. 44.100 /  8. 44.100
  libswscale      6.  7.100 /  6.  7.100
  libswresample   4.  7.100 /  4.  7.100
  libpostproc    56.  6.100 / 56.  6.100
[AVHWDeviceContext @ 0x55e4877d54c0] Trying to use DRM render node for device 0.
[AVHWDeviceContext @ 0x55e4877d54c0] libva: VA-API version 1.19.0
[AVHWDeviceContext @ 0x55e4877d54c0] libva: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so
[AVHWDeviceContext @ 0x55e4877d54c0] libva: Found init function __vaDriverInit_1_19
[AVHWDeviceContext @ 0x55e4877d54c0] libva: /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so init failed
[AVHWDeviceContext @ 0x55e4877d54c0] libva: va_openDriver() returns 1
[AVHWDeviceContext @ 0x55e4877d54c0] libva: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/i965_drv_video.so
[AVHWDeviceContext @ 0x55e4877d54c0] libva: Found init function __vaDriverInit_1_19
[AVHWDeviceContext @ 0x55e4877d54c0] libva: /usr/lib/jellyfin-ffmpeg/lib/dri/i965_drv_video.so init failed
[AVHWDeviceContext @ 0x55e4877d54c0] libva: va_openDriver() returns -1
[AVHWDeviceContext @ 0x55e4877d54c0] Failed to initialise VAAPI connection: -1 (unknown libva error).
Device creation failed: -5.
Failed to set value 'vaapi=va' for option 'init_hw_device': Input/output error
Error parsing global options: Input/output error

I also have under environment this option:

- DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel

because I am using the Linuxserver.io version of jellyfin.

Starting a show with hardware encoding then enables (VAAPI or QSV) results in "This client isn't compatible with the media and the server isn't sending a compatible media format." so hardware encoding definitely isn't working.

Does anyone have any idea if this is because I don't have a display driver installed? According to FFMPEG it shouldn't need an X server environment

Solution 5 months later:

After a lot of debuging, giving up, and starting again recently. I noticed that intel GuC was loading on start but HuC was not. I ended up having to download the entire linux firmware git repo, extracting the i915 folder and dropping it in my /usr/lib/firmware/.

Now it works perfectly!

 

Hey everyone!

We are renovating our atelier to be a temporary house while we completely strip and redo the main house for a few years.

One thing I am really struggling with is how to make a large 255cm x 65cm dirty concreate workbench into a kitchen countertop for 2 years or so.

We are based in Belgium, so wood prices are about 2x what they are in the US (250cm x 125cm OSB board is 50€ or so).

The height is already quite high for a countertop (for me and my girlfriend it is perfect) so adding a thick slab of butcher block or something would make it unusable.

I don't really know what my options are. Maybe a wood veneer? Some sort of cheap-ish tile?

We used some iron-on white to finish the edge of our custom sink cabinet made from some old office cupboards, maybe there are larger ones like that that would work for concrete?

We are trying to stay below 2cm thickness. Idealy 0.5cm or so, but that would be difficult.

If anyone has any ideas to throw out, we would be open to it! It is just temporary, so it doesn't have to last more than a few years

Thanks!

Edit: I realized I didn't have any good pictures of the bench itself since it always took a back seat, but here are a few bad ones to give an idea from in the beginning https://imgur.com/a/KgiqHrC

 

Hey guys, I have been looking at building a home gym (possibly outdoors) in my new house we are renovating.

I want to get back into lifting as it has been about 4 years since I did it seriously.

I was looking at bars and the market here is ridiculout it seems. I can't find a single stainless steel bar for under 475€($520). The Ohio bar is one of the cheaper ones at 550€ instead of $370. Of course I get why it is more expensive for an import bar, but I literally can't find any bar here non-imported that says that it is stainless steel that isn't calibrated and insanely expensive (550€+)

The difference here betweeen cerakote and stainless is even greater (>100€ in some cases).

I was hoping to just get a second hand rack, some basics weights, and a barbell for around 1000€ or so, but it looks like I would have to spend at least 2000€ to get any kind of setup. Cage here are 850€ or so on the lower end just by themselves.

I am looking at strengthshop.eu, roguefitness.eu, fitness-seller.nl, but I don't really know what are the best bang for your buck options.

It looks like one of those sites has a 340€ stainless steel ATX bar, but I don't know if that is a reliable brand.

Anyone in the EU with any advice?

 

I just started playing rimworld a week ago.

My first colony all died. I was researching drug policy and starting geothermal and blowback weapons, I was getting raided every couple of days and had 0 wind so I had to prioritize those. Suddenly, the plague infects 5 of my 6 people. 2 people survive with the least skills. Cassandra: Adventure difficulty. I followed all of the healing and rest guides and 1 person with the plague survived. This first time I got a few turtles and had major problems with 300+ turtles eating all of my food and unable to slaughter them as fast as they were spawning

I started a new colony also with Cassabdra: Adventure difficulty. I just reached the exact same point. Drug policy not done, this time not even geothermal or blowback done (so I would say early game). Plague. This time only 2 out of 6 die. Not bad. I survived.

NOPE: 2 days later, nuclear fallout and everyone has to stay inside for what? Months? Luckily I have only 1 turtle so I have 1000 rice and 1000 various meats built up in my much larger freezer with a open door chimney. Should be able to wait it out.

NOPE: the second day of fallout I had a multi-day solar flare knocking out all of my fridges.

Luckily the power came back before all of the meat spoiled and I got a mad muffalo for extra food.

I still don't know how to protect my chickens in the pen because I can't set a zone, but they seem to by chance sleep under the roof every few days and reduce their radiation. I don't have the available power or components to switch to indoor farming with sunlamps (and hydroponics not researched yet) so I might be screwed if my food runs out.

I read online "plague is a very unlucky roll early-mid game" and I got it twice in a row lol. Plus a toxic fallout immediately after. Sometime this game just decides to come and get you.

view more: next ›