z00s

joined 1 year ago
[–] z00s@lemmy.world 3 points 1 week ago

I think that's polarising because using a weird incorrectly does not change its meaning; it's far more subtle than that

[–] z00s@lemmy.world 11 points 2 weeks ago (1 children)
[–] z00s@lemmy.world 2 points 2 weeks ago (1 children)

But still, why would someone swat over something like this? Seems insane

[–] z00s@lemmy.world 10 points 2 weeks ago (1 children)

I can't believe that these are the best two people that the US can produce right now.

[–] z00s@lemmy.world 6 points 2 weeks ago (2 children)

Whatever OS the space monsters living under the ice cap use

[–] z00s@lemmy.world 1 points 2 weeks ago (1 children)

"minimal abstinence outside of hospital". That means she was still drinking.

[–] z00s@lemmy.world 107 points 2 weeks ago (11 children)

I wonder how realistic that is; almost all of the science people I've met run Linux

[–] z00s@lemmy.world -3 points 2 weeks ago* (last edited 2 weeks ago) (5 children)

The only genuine hint to the real reason of the refusal was "minimal abstinence outside of hospital".

Let me ask you bud, if you needed a liver transplant to continue living, would you have even one drink per week, or would you just quit completely?

Very biased article.

Plus, regardless of her husband being compatible, it still costs the state tens of thousands for the operation. In no way would it be ethical to put a new liver in someone who refuses to completely abstain from alcohol.

[–] z00s@lemmy.world 2 points 3 weeks ago

😂 absolute gold

[–] z00s@lemmy.world 3 points 3 weeks ago

"Epic tootage"

I think that was a Miles Davis album

 

Ok, going for full controversy here. zsh = "zoosh" ssh = "shoosh" sudo = sue-dough

Before you achktually me, I know it's supposed to be "sue-DO", because the acronym stands for "superuser do", but for the life of me, when I see those letters together it just seems wrong to pronounce it that way.

 

A few years ago I felt kinda lame whenever I had to "make a wish" blowing out birthday candles or whatnot and the only thing I could think of under pressure was "world peace".

Since then, I've kept a wish ready to blurt out if I ever see a falling star or toss a coin into a fountain etc

For me, it's sending my mind, with all my current knowledge and experience, back in time into my body at the moment I graduated high school, so I could re-live my life with more confidence, less anxiety and get straight into doing the cool bits of my life much earlier.

What would be your "back pocket wish"?

 

Last night I was nearly tearing my hair out trying to get a crappy inkjet printer installed when I turned to ChatGPT for help; 5 minutes later it was done (driver issues).

I realised that I use it a lot for all sorts of things but haven’t really seen any posts on here about it, and was wondering if other people do the same.

I’ve used it to create bash scripts, write small, niche python programs (eg sort photos into separate folders based on their orientation), and create cron jobs among other things.

In particular, I find it useful when I want to use a command line program that has a complicated set of options / syntax, but I might only ever want to use it once, or very infrequently. So I tell it what I want to accomplish, and ask it to give me the correct command to run with the options I specify in plain language.

Example:

User

Give me the correct rsync command to recursively copy all files in /home/user/Documents that are image files of any type but were created more recently than 1/1/2024. The destination is /home/user/foo

ChatGPT

rsync -avm --include='*/' --include='*.jpg' --include='*.jpeg' --include='*.png' --include='*.gif' --include='*.bmp' --include='*.tiff' --include='*.svg' --exclude='*' --prune-empty-dirs --min-age=$(date -d '2024-01-01' +%s) /home/user/Documents/ /home/user/foo/

User

Break down the command and explain each part of it in dot point format.

ChatGPT

- rsync`: Invokes the rsync program, which is used for efficiently transferring and synchronizing files across systems or within a system.

  • -avm:
    • -a: Archive mode, which preserves permissions, symlinks, modification times, group, and ownership. Implicitly includes recursion.
    • -v: Verbose mode, which provides detailed output of what rsync is doing.
    • -m: Prune empty directory chains from the file-list.
  • --include='*/': Include directories themselves, which is necessary for recursion.
  • --include='*.jpg' --include='*.jpeg' --include='*.png' --include='*.gif' --include='*.bmp' --include='*.tiff' --include='*.svg': Include files that match these image file extensions.
  • --exclude='*': Exclude all other files that do not match the previously stated include patterns.
  • --prune-empty-dirs: Exclude empty directories that result from the inclusion/exclusion pattern.
  • --min-age=$(date -d '2024-01-01' +%s): Exclude files that are older than the timestamp for January 1, 2024. This uses date -d to convert a date string into a timestamp, which rsync uses to filter files.
  • /home/user/Documents/: Source directory from which files are being synchronized.
  • /home/user/foo/: Destination directory to which files are being synchronized.`

It’s also really good for explaining concepts / commands in plain language.

It’s like having a 24 hour on call Linux expert :)

#Things to note:

- Get the subscription. ChatGPT 3.5 is pretty useless. ChatGPT4 is fine, but I’m pretty sure you need the subscription to access it.

- Give it pre-instructions. I have told mine what distro, what shell I’m using and the make and model of my laptop. If you have a subscription you can add these as permanent pre-instructions, so to speak. That way it will be much more likely to give you correct answers.

- It’s not magic In order to get what you want, you have to be able to ask the right questions. It will boost your ability but won’t turn you in to a 1337 haxx0r

-Ask questions As always, don’t run any commands that you don’t understand. Ask it to break down any commands it tells you to run if you don’t understand them.

-Sometimes it goofs For various reasons, sometimes it will ask you to install a package that no longer exists, or will give you a command that doesn’t work. When that happens, I just feed the error message back into ChatGPT and it usually is able to correct itself.

-Ask “Is there a better or easier way to do this?” This is probably the most valuable question I’ve found to ask chatGPT. Sometimes it gets so far in the weeds looking for a solution to a problem that you need to pull back and start fresh.

 

Hi Lemmy,

I'm organising a funeral, and one of the ideas that has come up is for people to write memories on a balloon and let them go. However, I've also heard that they often end up in trees etc and are terrible for the environment.

Is there such a thing as environmentally safe balloons? Other suggestions are also welcome.

66
submitted 9 months ago* (last edited 9 months ago) by z00s@lemmy.world to c/linux@lemmy.ml
 

How to update the BIOS on a Dell laptop running Linux

For models not supported by lvfs

Completed successfully on a Dell Inspiron 3595 running Manjaro

This fix does not require Manjaro, it should work on any distro.

It took me a looong time to figure out how to do this for various reasons, and there are a lot of forum posts on the net about this exact problem. So for posterity I offer up this guide for any future googlers.

TLDR for advanced users: Use Ventoy to boot the Windows 10 installer and open the command prompt in the "Repair my PC" menu to launch the Dell BIOS update executable from a second USB.

  1. Grab two USBs that are at least 8 GB in capacity.
  2. Download the BIOS update file from the Dell support website.
  3. Copy it to the first USB. Mine was formatted as NTFS but I don't think it's critical to the process.
  4. Download Ventoy. If you've never heard of this, spend a minute reading about it. It's a cool tool.
  5. Flash Ventoy to your second USB.
  6. Acquire an .iso of Windows 10. I chose Windows 10 because Windows 7 didn't boot on my laptop (not sure why), and Windows 11 was too heavy for the CPU. I also tried Freedos but my laptop only has UEFI boot enabled, and no legacy option, which is apparently not supported. Note - you don't actually need to install or activate Windows in any way so I didn't feel it was necessary to be too picky about how I acquired the image.
  7. Copy the Windows 10 .iso file to your Ventoy USB.
  8. Boot from the Ventoy USB and select Windows 10. (F12 on most Dell laptops to interrupt the boot sequence)
  9. Click "Repair my PC" in the bottom left hand corner - DO NOT install.
  10. Click on the "Use command prompt" option which should be in the "Troubleshoot" menu.
  11. Insert your first USB with the Dell BIOS update file on it.
  12. Change directory to your first USB. It automatically mounted mine as D: Simply type the name of the drive to change to it.
  13. Type the name of the BIOS update file to execute. For example: Inspiron_3595_1.5.0.exe If you forget the name of the file, type dir to get a list of files in the current directory.
  14. Watch the magic happen and don't freak out if it reboots more than once - just let it do its thing until it's finished.
  15. (Optional) boot into the BIOS to confirm that the update has been successful (check the version number).

The entire process was fairly quick, less than 5 mintes, and it automatically rebooted twice. The only indication I had that it was finished was that on the third reboot it booted back into Linux. I went back into the BIOS later to confirm that the BIOS version number matched the version number on the Dell website (in this case, 1.5.0).

view more: next ›