Tippon

joined 2 years ago
[–] Tippon@lemmy.dbzer0.com 2 points 1 month ago

That's cool, I'll give it a try, thanks :)

[–] Tippon@lemmy.dbzer0.com 2 points 1 month ago (2 children)

I've never used MSG, do you just add it during cooking, or do you have to do anything special to it? I've seen it compared to salt, but that's about it.

[–] Tippon@lemmy.dbzer0.com 3 points 1 month ago (4 children)

Ah, that's a shame. It would be really handy to be able to prepare a batch in advance. I'll just have to try small batches and see how much I use. Thanks for replying :)

[–] Tippon@lemmy.dbzer0.com 3 points 1 month ago (6 children)

How do they have to be stored like that? Instant mash is one of my go tos when I'm feeling particularly bad, but they don't exactly taste amazing on their own.

[–] Tippon@lemmy.dbzer0.com 16 points 1 month ago

About 20 years ago, I lived in a shared house in the city. I worked nights, so if I left a download running when I went to bed, it would affect the others in the house. I saw a post online where someone was giving away a cable modem, and not knowing much about how they worked, I had an idea that I wanted to try.

The cable internet came into the house through a coax cable, rather than the phone line, and was split with a dumb splitter between the router and the TV. I used a spare splitter to run a cable to my room and plugged my modem in.

I tried it first on my day off so that I could check with my housemates if it caused any problems. It connected and everything worked with no issues, except that it only connected at about dial up speeds. We were going out for the night so I left it connected with some downloads running to see if it would stay connected. When we got home, the downloads that should have taken a few days were done. A speed test showed that I was getting around 35Mbps, when the fastest speed we could pay for was 4Mbps.

We later found out that apparently the street was sharing a connection (to the cabinet I think, it's been a while), and because my modem wasn't registered, it was just getting whatever was left over. At night, when everyone was in bed and their devices were off, it was going a lot faster. It didn't last long, only a few months, but we took advantage of it while we could :)

[–] Tippon@lemmy.dbzer0.com 6 points 1 month ago (2 children)

People: Oh how cool, I can monitor my chicken nuggets from my couch ~5m away.

This would genuinely be handy for me though. I've got a nine year old, and have similar aged kids over quite regularly. If I'm dealing with the kids, I can't always hear the air fryer finishing. A notification to the phone that's in my pocket would be really helpful.

As you say though, there's always shit tacked on :(

[–] Tippon@lemmy.dbzer0.com 7 points 1 month ago (1 children)

Look for the QxR group. Lots of their releases include special features, and often as a separate folder.

[–] Tippon@lemmy.dbzer0.com 7 points 1 month ago

Isn't this the future you want? Not a car in sight, just trucks and trains frolicking freely, as nature intended 😉

[–] Tippon@lemmy.dbzer0.com 8 points 1 month ago (4 children)
[–] Tippon@lemmy.dbzer0.com 2 points 1 month ago (1 children)

I had a very similar system, but with an old R9 380, and upgraded to a 5700x and 64GB RAM. I picked up an RTX 3060 too. Now, I agree with your doubts - the upgrades didn't make much difference for day to day usage, and did feel like a waste sometimes. However, I like to take photos, and was using Photoshop with the AI features (before I realised how shit they are), and the upgrades made a huge difference.

My older games were mostly running smoothly with everything set on the highest graphics settings anyway, but now run perfectly even with half a dozen Firefox windows full of family tree research tabs open. I've played games while Firefox is using 32GB without issue. Minecraft can run at around 1,000 fps, which means that I can turn the settings up or have lots of mods installed.

I bought another motherboard and built the old parts into a computer for my kid, which is more powerful than my media server. The media server has about a dozen different Docker containers running things like the Arr suite, Immich, Navidrome, and a few others. I've got two small Minecraft servers and a magic mirror running on it too. I'm using these to learn more about Linux and networking, and generally improve my knowledge.

You'll enjoy the upgrades, and will have to do them eventually anyway, so you might as well enjoy them now 😁

[–] Tippon@lemmy.dbzer0.com 8 points 1 month ago (1 children)

I've tried a sling type camera bag on the bike, and it was a pain in the arse. It wasn't heavy enough to risk my balance, but it kept sliding around and trying to settle under my elbow. It was quite distracting and annoying. I don't bother with it now, and just put the whole lot in my rucksack instead.

 

Hi all :)

This is more of a curiosity question than anything else.

About two or three weeks ago, I added two buildings and the businesses inside them through the OSM website. I haven't had a chance to do anything else yet.

I installed Organic Maps earlier to try it out, but noticed that my buildings weren't there. I tried OSMAnd+ and Street Complete too, but they still weren't there. They are there in Every Door though.

Is this normal? Does it take a while for updates to filter through to apps, or have I done something wrong?

 

EDIT: Sorry, I was tired when I posted this, and didn't realise that it made no sense to anyone else. I've got a set of panniers for the bike that attach under the seat, and they hold the smaller things, like my clothes and toiletries.

I remembered after I'd already attached my camping equipment to the top of the seat, meaning that it would have to be removed to fit the other luggage.

 

I run Mylar on my Xubuntu server to manage my comic collection. I found out recently that there's a tool that can convert the embedded .jpgs to .webp to save space, but it only works on cbz files and not cbr (zipped vs rar for those who don't know). I wanted to convert all of my cbr to cbz so that I could run the tool on all my comics, so I needed to search hundreds of subdirectories for them and move them to the same folder to be processed.

Under Windows, I'd just type *.cbr into the search bar built into Explorer from the root comic directory, hit enter to get a list of files, select them all, and move them to the new folder. On Xubuntu, it's nothing like as simple.

I found the search option in Thunar which opened Catfish, typed in *.cbr, and got a no files found message. After looking through the very limited options, I started searching for a way to do it. About thirty minutes later I'd found dozens of links telling me to use different, Terminal only, tools, but nothing about how to search subdirectories from the Catfish GUI. Purely by accident, I found a post from 2012 that mentioned the fact that Catfish doesn't use wildcards, so just search with .cbr, something that's not mentioned in the official docs.

I tried it, and it searched the subdirectories too, and found my files! Except there was no way to copy or cut and paste, just open, show in file manager, copy location, save as, or delete. No good options for almost 500 files across several dozen locations.

I ended up asking Chat GPT how to do it, and doing it through the Terminal, using this:

'find . -type f -name "*.cbr" -exec mv {} /path/to/destination ;'

This is pretty basic functionality, and I had to resort to getting help to use the Terminal :(

view more: ‹ prev next ›