HackerTrans
TopNewTrendsCommentsPastAskShowJobs

kn100

950 karmajoined 7년 전
[ my public key: https://keybase.io/kn100; my proof: https://keybase.io/kn100/sigs/nOXeTQ4U0lvgpPLIV3dKe53E0DyUqFbkK3J-pw4GyGY ]

Submissions

Nix – A rather nice solution for homelabbing

kn100.me
2 points·by kn100·3개월 전·0 comments

comments

kn100
·4일 전·discuss
I'm using exactly this TTS engine for my intercom door system I built. The quality of the TTS is very good.
kn100
·지난달·discuss
I've been dailying a pixel fold 9 pro for a while now and love the thing. Seeing Apple finally join in is exciting as heck. I wouldn't hold your breath for a non visible crease though, nor for it to necessarily be class leading in its screen tech. I doubt any of it matters though, the Pixel Folds aren't exactly class leading in these regards either and the fold is just not a concern at all once you're using it. it's practically invisible from head on, and the "plastic screen protector" worries are really not an issue either. The durability of the inner screen is actually much better than you'd expect since it spends most of its pocketed life protected from external scratches. Mines still in great shape, even though I do not use a case nor any other form of protector.

Where apple has a significant opportunity here is the software side though. Google unfortunately doesn't seem to be too interested in exploring UI concepts with the Fold, leaving that to OnePlus and Samsung, both of which have imo better multitasking experiences than the Pixel Fold. Apple making an iPhone that becomes an iPad would probably be enough for them to win significant marketshare, but I hope they use this opportunity to do some interesting things with UI beyond what the iPad can do.
kn100
·2개월 전·discuss
Good post. I switched from Bitwarden to KeepassXC / KeepassDX / Syncthing across my Android phone, Linux PC, and Windows PC. This was the setup I had prior to using Bitwarden for the first time. The Keepass experience is significantly better these days! Importing from Bitwarden is trivial too. Recommended!
kn100
·2개월 전·discuss
Full disclosure: I've never owned a Bambu because I've never loved the idea of a "closed" ecosystem 3D printer, however I have used them, and am very familiar with the 3d printing space beyond Bambu.

For anyone considering alternatives: You should know that almost all other 3D printers expect you to know a little more about how they actually work than Bambus. Bambus are as close as you can get to a "just works" type experience, but modern alternatives from others are nowhere near as hard as they used to be.

The closest "easy" alternative is probably Prusa, but you'll pay significantly more for a Prusa machine than you would a Bambu. They're an excellent company, and the complete opposite of Bambu when it comes to Openness. If money is no object, Prusa is highly recommended.

Beyond Prusa, there's a lot of other options. https://auroratechchannel.com/#section2 This list is a good one.

I personally run an old Elegoo Neptune 4 pro - but my needs are quite low. If I were buying today, a Snapmaker U1 or the Creality K2 Plus is probably where I'd end up going.
kn100
·2개월 전·discuss
I reckon until the recent ai-gobbles-everything-up phenomena, this was mainly an Apple problem. Even fairly budget PCs come with at least 1tb of storage. Considering much beyond 2tb NAND gets scary pricing wise, I'm not that surprised we don't see much beyond that.
kn100
·3개월 전·discuss
You can get two in one out kvms for pretty cheap these days. I got mine which is a three in, one out KVM with support for three displays all at 4k120hz along with 4 usb ports for about 20 bucks (although that was at one of those Amazon returns stores. New it would have been around 120 bucks, but totally worth it. I have my work mac and my personal laptop on the left/right of a 4k144hz monitor (although as others have noticed usually you're limited to 120hz through a KVM, but that's fine for me), along with my home server connected for the odd time I need a direct connection to it. Would recommend.
kn100
·3개월 전·discuss
Oh and another fun thing! I eventually just emptied the OneDrive so Microsoft would stop bothering me. This was maybe six months ago or so. Microsoft confirms I am storing nothing there. Just a week or two ago I got yet another email begging for money because my OneDrive was apparently full. It was a genuine email, I went as far as checking the headers for SPF/DKIM. When I signed into onedrive, still empty!
kn100
·3개월 전·discuss
I got caught out by exactly this, and I'm not exactly tech illiterate. what made it even more annoying is by the time I'd realised what had happened, it was practically impossible to get the files back out of OneDrive (since I decided that this was enough Windows for me, and went back to Linux), since the webui does NOT handle downloading lots of small files well, and you just end up getting a partially complete zip file. I gave up in the end as nothing in there was particularly important. This is an incredibly annoying default.
kn100
·3개월 전·discuss
Thundermail is a great idea! I'd be more than happy to switch over assuming the migration path from say Gmail, Fastmail, etc was easy enough, and it supported custom domains.
kn100
·4개월 전·discuss
Recently built https://entrycast.com/ - there are other products kind of like it on the market already but I had some specific use cases I wanted personally, and decided rather than making it just for me, I'd for the first time in my life make it something others could buy too. No customers so far, but I don't really mind, to be honest!
kn100
·4개월 전·discuss
I would argue that we shouldn't let the perfect be the enemy of the good. Adding a cost to commenting that requires aging accounts I think might discourage fly by night operations and "experiments".
kn100
·5개월 전·discuss
Gnome Shell in particular offers a ridiculously coherent, sane window management. Nobody agrees with all the choices the Gnome Team took to get here, but it sure is nice there being one way of doing everything that makes sense contextually.
kn100
·5개월 전·discuss
defeated it by running gemini in split screen and voice dictating the response into the tool. got 80%.
kn100
·5개월 전·discuss
literally the only two reasons I still have windows on my laptop currently are fusion360 and apex legends. I was happily playing Apex Legends on Linux for years until EA decided to disable Linux support due to "cheating". While I understand their concerns, I can't say as a regular player the cheating problem is any better or worse than it was before they removed Linux support.

As for fusion360... Freecad is getting mighty good these days...
kn100
·6개월 전·discuss
and suddenly Bose is on the list of consumer products I will consider for my home. Good job!
kn100
·6개월 전·discuss
What a handy list the Germans have prepared
kn100
·2년 전·discuss
Here's a handy bash script I threw together to audit any docker containers you might be running on your machine. It's hacky, but will quickly let you know what version, if any, of xz, is running in your docker containers.

``` #!/bin/bash

# Get list of all running Docker containers containers=$(docker ps --format "{{.Names}}")

# Loop through each container for container in $containers; do # Get container image image=$(docker inspect --format='{{.Config.Image}}' "$container")

    # Execute xz --version inside the container
    version=$(docker exec "$container" xz --version)

    # Write container name, image, and command output to a text file
    echo "Container: $container" >> docker_container_versions.txt
    echo "Image: $image" >> docker_container_versions.txt
    echo "xz Version:" >> docker_container_versions.txt
    echo "$version" >> docker_container_versions.txt
    echo "" >> docker_container_versions.txt
done

echo "Output written to docker_container_versions.txt" ```