sonnenzeit
@sonnenzeit@feddit.de
- Comment on What Are Your Favorite Hidden Gem Android Apps with Less Than 1 Million Downloads and 4+ Star Ratings? 11 months ago:
Forkyz let’s you download and solve crossword puzzles.
It comes with an inbuilt list of sources for different languages but you can also manually add new ones. Many newspapers publish crosswords daily or weekly for free so there’s plenty of options.
- Comment on What Are Your Favorite Hidden Gem Android Apps with Less Than 1 Million Downloads and 4+ Star Ratings? 11 months ago:
There are separate options for shuffling songs and categories (albums, artists, folders, genre, etc) and you can toggle them independently of each other.
- Comment on What is your favourite font for code ? 11 months ago:
- Comment on Your Windows 10 PC will soon be 'junk' - users told to resist Microsoft deadline 1 year ago:
It should be offered as an option really.
One caveat is that you need to think ahead about how much space you want to assign to each partition. You could end up with your
/home/
partition being full while the system partition still has plenty. Or vice versa. You can manually readjust the boundaries but it requires some understanding and can’t be done on the fly by a non-technical user. By contrast if everything’s stored on the same partition you never have to worry about this.You can, by the way, manually recreate this set up even after the initial set up although it will require lots of free space to shuffle around files (or some external storage to temporarily hold them). Basically what you do is create a new empty partition, copy all your
/home/
stuff there and then configure your system to always mount that partition as the/home/
directory when it boots. Files are just files after all and the operating system doesn’t really care where they come from as long as the content is correct. Once you got it working you can delete the originals and free up the space to be used otherwise. - Comment on Your Windows 10 PC will soon be 'junk' - users told to resist Microsoft deadline 1 year ago:
Typically your personal files and app settings are stored somewhere in your user home folder, eg under
/home/bob/
. Ideally you’ve set up your system in a way so that the entire/home/
folder is stored on its own disk or partition at least. That let’s you boot up a different distro while using the same home directory. But even if you haven’t set it up separately from the rest of the system, you can still manually copy all those files.Not every single application setting is transferable between distros as they sometimes use different versions but generally it works well. Many apps also let you manually export profiles or settings and reimport them elsewhere later. Or they have online synchronization baked in.
- Comment on Hell freezes over, MS Paint adds support for layers and PNG transparency 1 year ago:
In case your browser isn’t completely locked down: there’s also image editors that run as web apps like photopea.
- Comment on Unity bosses sold stock days before development fees announcement 1 year ago:
Good point.
I guess just having a staggered temporal restriction is fine, don’t need to wait until you retire necessarily. You would still receive a portion of your salary package in the form of classic currency and plenty for a good life too. An example could look like this and I’m obviously making up the percentages and durations here, they would need to be fine tuned:
- 40% of salary as cash
- 10% of salary as stocks that can’t be sold within 6 months
- 10% of salary as stocks that can’t be sold within 12 months
- 10% of salary as stocks that can’t be sold within 18 months
- 10% of salary as stocks that can’t be sold within 24 months
- 10% of salary as stocks that can’t be sold within 30 months
- 10% of salary as stocks that can’t be sold within 36 months
- Comment on Unity bosses sold stock days before development fees announcement 1 year ago:
I guess it would be best to change the rules so that they cannot trade their company stocks at all while working there and a reasonable period beyond. I think some legislations already restrict floating stock like that but I’m no expert on the matter.
- Comment on X is no longer labeling ads for some users 1 year ago:
You do realize that a lot of employeess that stayed at Twitter after Musk’s take over did so because their work visas were tied to the occupation and otherwise they would have had to leave the country on short notice?
- Comment on More than $35 million has been stolen from over 150 victims since December — ‘nearly every victim’ was a LastPass user 1 year ago:
Man am I glad that I picked KeypassXC as my password manager some years ago. Super safe, easy to use, costs nothing, not dependant on internet/cloud, can export data to another app at any time, transparent because open source.
I’m using Syncthing to synchronize across devices which arguably too some fiddling to set up but I only had to fiddle once and haven’t touched the configuration since; it just works automagically in the background.
- Comment on The lengths we have to go to 1 year ago:
It’s so dumb that JSON doesn’t officially have comments.
So much this.
Used to work at a company where I sometimes had to manually edit the configuration of devices which were written and read in JSON. Super inconvenient if you have to document all changes externally. As a “hack” I would sometimes add extra objects to store strings (the comments). But that’s super dicey as you don’t know if it somehow breaks the parsing. You’re also not guaranteed the order of objects so if the configuration gets read, edited and rewritten your comment might no longer be above/below the change you made.
Always found it baffling that such a basic feature is missing from a spec that is supposed to cover a broad range of use cases.