Avatar

lemmyvore

lemmyvore@feddit.nl
Joined
13 posts • 2.8K comments
Direct message

Basically, whenever we find that a human ability can be automated, the goalposts of the “AI” buzzword are silently moved to include it.

permalink
report
parent
reply

I heard a different rumor, that the driver file they pushed was all zeros. I’m inclined to believe that one.

permalink
report
parent
reply

You know, you can validate data structures at runtime… and write unit tests… TS is not a substitute for those things.

permalink
report
parent
reply

Typescript only prevents typing bugs… why did they have so many typing bugs?

permalink
report
parent
reply

Even for unit tests it needs to be taken with a grain of salt because they should describe what should be there and at best Copilot can describe what is there.

The overlap may or may not be there but either way it’s a dicey proposition to allow Copilot to second guess the intent behind the code and make that guess the reference.

permalink
report
parent
reply

Separate root fs makes it easier for timeshift. Snapshots are a different beast from backups.

Also makes it easy to install another distro and pick up where you left off with the old home.

If you alocate 50-60 GB for system it should be ok. Things like Flatpak or Steam can put their files in home.

permalink
report
parent
reply

Depends on what you mean by “programming”.

If you mean it like the neighboring comment, who is probably a mathematician or physicist who just needs to feed it a science paper and run some models to verify the premise, but doesn’t care about the code itself, it’s a good tool. They aren’t programmers and learning programming or using a programmer would only delay them.

If you’re a professional programmer however your whole point is to create the most efficient specifications for the computer to do things. You cannot convey 100% of the spec to something like GPT so inevitably some is lost, so the end result is not the most efficient (or doesn’t even cover everything you needed).

You can of course use it to get a head start but there are also boilerplate and templating tools and frameworks that cover the same purpose.

Unlike the physicist, the code you make is the whole point, and it’s based in your knowledge of the subject matter, and you can’t replace it with GPT. Also, using GPT in this manner stunts your professional growth and damages you long term.

It would be somewhat worth it if at least it accelerated some part of your work, and it can find its way into the tooling, but straight out replacing your brain with it ain’t it.

For writing actual code and designing software it’s more trouble than it’s worth, it produces half-assed code that needs fixing.

TLDR figure out ASAP if you really mean to be a programmer or some other type of specialist that only deals with programming incidentally.

permalink
report
parent
reply

I guess? I’m surprised that the original model was on equal footing to the user prompts to begin with. Why was the removal of the origina training a feature in the first place? It doesn’t make much sense to me to use a specialized model just to discard it.

It sounds like a very dumb oversight in GPT and it was probably long overdue for fixing.

permalink
report
parent
reply

Search for “chris titus windows tool”. It’s a debloat tool that removes such annoyances. It also includes a button that runs the Shutup tool, that disables another bunch.

I’m a Linux user but I use these tools (and massgravel) on Windows VMs to make them behave.

permalink
report
parent
reply

Not OP but:

Separate the system and home partition, first of all. The strategies are usually different.

Many distros integrate Timeshift out of the box to create system partition snapshots before every update, and to be able to restore them from the boot menu. Using BTRFS for the system partition makes this even better.

This is usually all that people need in regards to the system, but you can also take regular backups (see below) of things like /etc, the list of installed packages and things like that.

For personal files I prefer Borg Backup because it is incremental, does compression, deduplication, encryption, checksums & recovery.

Borg works with repositories, which can be on local disk, on a removable disk, or remote. If remote, they are tunneled over SSH. It can also export/import tarballs for more exotic scenarios like moving snapshots between different repositories or backing up data to optical discs.

You can use Borg from the CLI and there are also UI apps that make it easier. Pika Backup is a simpler one, Vorta is a more advanced one. I’ve set up family members with Pika and after preparing it for them all they have to do is plug in the backup HDD, open Pika, and hit the big “backup now” button.

There are also online services that support Borg repositories specifically, and for anything that doesn’t you can export tarballs and back them up as regular files, completely transparently from the service.

rclone is a cli tool that supports a large number of online storage services. You can use it with borg snapshots or you can use it to back up your files directly — it resembles rsync somewhat and can also do encryption iirc.

permalink
report
parent
reply