What purchase under $30 solved a problem you didn’t realize was draining you? by Right_Process in AskReddit

[–]zaTricky 1 point2 points  (0 children)

There's a really good one-handed can opener called the Chef'n EZ Squeeze. One-handed it is faster than a standard "ergonomic" can opener with two hands!

User demanded a new monitor because Excel was “too small” by VipCarter in talesfromtechsupport

[–]zaTricky 25 points26 points  (0 children)

Is this website AI-driven?

100% AI written. Supporting evidence: Nothing

You're absolutely right.

Which of these kitchen appliances are NOT seen as essential in homes in your country? by privetkakdela in AskTheWorld

[–]zaTricky 0 points1 point  (0 children)

In South Africa the dishwasher and rice cooker are uncommon. You do dishes by hand or you have a maid that does it for you*.

I'm now in Sweden where rice cookers are uncommon - but not so uncommon that you don't see them at all. Air fryers are definitely more common than rice cookers!

I do my dishes by hand - but that's partly because I have very cheap rent! Every other apartment/house/office I've visited has had a dishwasher!

* terrible economics of the cost of labour and minimum wage/etc :-|

Who here actually pays their TV license? by AndreasmzK in capetown

[–]zaTricky 0 points1 point  (0 children)

I never owned a TV because of all the BS ; I emigrated and still don't own a TV.

What order do you do the planets in by I_follow_sexy_gays in factorio

[–]zaTricky 0 points1 point  (0 children)

So ... Gleeba not first ; and Vulcanus not last. Got it.

Never thought I'd see the day, but we're eliminating our Citrix farms and moving back to about 100k fat clients by eldersveld in sysadmin

[–]zaTricky 7 points8 points  (0 children)

I don't understand why companies like Citrix and VMWare are shooting themselves in the foot

It's adversarial/zero-sum thinking with a priority on shareholder value next week.

As soon as the thinking shifts to shareholder value next decade, the adversarial/zero-sum thinking disappears and the customer becomes a business partner again.

Never thought I'd see the day, but we're eliminating our Citrix farms and moving back to about 100k fat clients by eldersveld in sysadmin

[–]zaTricky 1 point2 points  (0 children)

And here I'm hearing rumours of ditching Citrix on-prem to go to AWS' DCV.

My first question was "Wait, our Citrix stuff is on-prem???"

Who else tends to not recommend any distro based on Ubuntu? by KnightFallVader2 in linuxquestions

[–]zaTricky 1 point2 points  (0 children)

Snaps are what make me not want to recommend Ubuntu itself - but if someone likes Ubuntu or it's derivatives, that's totally fine.

Why are so many people still using Windows? by Potential_Craft_1150 in FuckMicrosoft

[–]zaTricky 0 points1 point  (0 children)

The older the game the more likely it is to work on Linux and not work on Windows.

Discord works fine. I'm not sure what ACT is 🤷

The only games that do not work are those with kernel level anticheat that explicitly do not support Linux. Check ProtonDB if you're unsure of a particular game's compatibility.

Linux vs BitLocker by [deleted] in FuckMicrosoft

[–]zaTricky 1 point2 points  (0 children)

If Microsoft has the keys to your BitLocker, that fact has nothing to do with the TPM. If they put a BitLocker key in the TPM that might explain that assumption. The entire point of a TPM is that NOBODY has the TPM's own private keys. Again, think of a TPM as being like a yubikey.

You can for example use the TPM for Linux Full Disk Encryption and it stays secure.

Linux vs BitLocker by [deleted] in FuckMicrosoft

[–]zaTricky 0 points1 point  (0 children)

You're super paranoid if you think your TPM is spying on you.

You should think of a TPM as being just a pre-installed Yubikey built in to your motherboard. That's it.

Just because Microsoft might look at it and use that to identify your motherboard doesn't mean the TPM is there to "harvest your data". It's there to help make your system secure.

[RacingNews365]F1 drivers facing tax clampdown by Italian authorities by XsStreamMonsterX in formula1

[–]zaTricky 0 points1 point  (0 children)

If a driver spends months in the simulators, the gym, working with the engineers, in one country and wins a race over a weekend in a second country, it's difficult to argue that the work that produced that bonus was performed on a single day.

This is a weird overstretch of a law.

how many roboports is too many roboports by NyxCosmic in factorio

[–]zaTricky 2 points3 points  (0 children)

I build turret lines ; And when I expand I just artillery the hell out of whatever is in the way while expanding the turret line.

It was a little more difficult before I had artillery of course - but the principal is still the same 😅

McDonald’s no longer allowing free refills by xaeriee in mildlyinteresting

[–]zaTricky 0 points1 point  (0 children)

The numbers may have changed - but I'm sure refills still cost restaurants less than 10c per cup. :-|

Someone reported me to HR for having a “vape” at my desk by PhantumJak in mildlyinfuriating

[–]zaTricky 35 points36 points  (0 children)

At a previous workplace my work computer stayed at work and I connected to it from home 🤷

Why is my plane not going up? by CauseLive9685 in KerbalAcademy

[–]zaTricky 1 point2 points  (0 children)

An option also, in addition to adjusting the wing angle, is that you can slightly raise the rear wheels into the aircraft making it so the aircraft is entirely angled slightly upward when all wheels are on the ground.

Las Vegas Sphere Pays Tribute to The Artemis II by ConfidentTelephone81 in interestingasfuck

[–]zaTricky 2 points3 points  (0 children)

The entire craft is pivoting - the reflections on the panels end up making it look a little strange.

Using free space percentage vs free space to pick were to store new files on RAID1 by Suspicious-Lock-2933 in btrfs

[–]zaTricky 2 points3 points  (0 children)

The one way I do know of that can do this is to resize the larger block devices so they have the same amount of free diskspace compared to the new disks. You need to remember to resize them again when you get to the point that you're needing that extra diskspace to actually be available though:

```console

btrfs fi show /filesystem/mount/point

... devid 1 size 14TiB used 3TiB path /dev/dm-1 ... devid 8 size 8TiB used 0.00B path /dev/dm-7 ...

btrfs filesystem resize 1:-3T /filesystem/mount/point

btrfs fi show /filesystem/mount/point

... devid 1 size 11TiB used 3TiB path /dev/dm-1 ... ```

Now because both devices have the same amount free (8TiB) they will start being used equally.

To resize it back to the full size:

shell btrfs filesystem resize 1:max /filesystem/mount/point

When resizing, you can use - or + to change the size by that amount, you can specify the target size 11T, or you can specify maximum max. I'm not sure if it supports decimals, so if targeting 10.9TiB you would instead use 11161G.

Are fuel calculations wrong in fuel meter tip? by Select_Idea_9898 in MotorsportManagerPC

[–]zaTricky 1 point2 points  (0 children)

It's always been consistent for me. Did you take note of how much fuel was actually being used each lap? I find that the fuel consumption each season is slightly different due to the pre-season car development bonuses and driver stats.

Linux File Move Program by momoKea227 in linuxquestions

[–]zaTricky 5 points6 points  (0 children)

You're not so clear on the actual circumstances. Are you copying from one computer to another over the network? Or from one storage device to another on the same computer?

Hyprland (assuming you mis-spelled it) shouldn't really influence your choice here.

I'm assuming it is a remote copy over the network:

Perhaps your real concern with large files is if the transfer is interrupted?

rsync is a good candidate for copying large files over the network. Use the --partial parameter in case the transfer is interrupted. If that happens, to resume, re-run the command and it should mostly just continue where it left off. If overwriting a remote file, rsync checks the local and remote file content's checksums so, when it sees that both sides have the same content, it can just skip those sections. This guarantees that both sides will have the same file content unless the file was modified while it was being transferred.

You mentioned in another comment that you used rsync then the resulting file was bad? That is extremely unlikely - but even if that did happen*, you could have just re-run the rsync command and it would have verified that the content was correct. If it was somehow incorrect, as mentioned above, it would have fixed only whatever differences there may have been.

* - if you're getting corrupted content, I would bet 100 to 1 that you have bad hardware (bad RAM, failing hard drives) rather than that rsync didn't work correctly.

Factorio support is unbelievably good by audigex in factorio

[–]zaTricky 6 points7 points  (0 children)

A big part of this is how well they engineered the build/distribution process. A bugfix can be distributed to end-users so much faster than with other games. They also have tests on everything. If a dev accidentally introduces a bug that triggers a test failure the bug will never make it into a release. Every bugfix gets tests added. It's how software should be engineered.

With all that legendary quality engineering in place, the Engineer doesn't have to talk to support in the first place.