mina86

joined 4 months ago
[–] mina86@lemmy.wtf 49 points 2 months ago* (last edited 2 months ago)

It’s trivial. Use Linux Mint or Debian, enable non-free repositories if required, and that’s pretty much it.

I’ve never had issues with Nvidia drivers. Your mileage may vary.

[–] mina86@lemmy.wtf 4 points 2 months ago (1 children)

It is a product of its time. If the same research was made 30 years ago, I bet there would be a stark difference to results today. LTO wasn’t as feasible. Compilers were less capable of removing redundant checks. Branch prediction in x86 processors was still a hot new thing. And on top of it all, there was less knowledge about language development.

[–] mina86@lemmy.wtf 5 points 2 months ago (3 children)

If this was easy, then people would’ve done this a long time ago.

People have done it. It’s called Edge, Opera, Vivaldi etc. And looking at it historically, Safari is a branch from the same tree as well.

[–] mina86@lemmy.wtf 5 points 3 months ago

Who cares what anyone on r/macos thinks.

[–] mina86@lemmy.wtf 4 points 3 months ago

If everything else fails, there’s always an option of defining your own keymap and enabling it in initrc.

[–] mina86@lemmy.wtf 1 points 3 months ago (1 children)

Also, nano may not always be installed.

mcedit, gedit, pico. For majority of people lack of any simple non-vi-based text editor is a corner case not worth worrying about. Definitely not enough of a problem to start ‘How to learn Emacs’ tutorial with ‘Learn Vim’.

[–] mina86@lemmy.wtf 3 points 3 months ago (4 children)

Why is 0th step of learning Emacs, learning Vim? The whole premiss that you need to know Vim or you’re unable to work on other people’s computers is ludicrous. Nano is perfectly capable editor for the times I need to use computers without Emacs.

[–] mina86@lemmy.wtf 35 points 3 months ago* (last edited 3 months ago) (1 children)

Admittedly, I’m probably not the best person to ask for recommendation of a noob-friendly distro, but I feel people are overthinking this. If someone produces a list which includes distros I’ve never heard of, I think they spent too much time on ‘Top 10 Noob Friendly Distros in 2025’ websites.

If you really care about my recommendation, just start with Mint.

PS. I should also add, this isn’t criticism of you or any other new user who does search online for recommendation. This is more a comment on state of the Internet where there are so many websites which seem to pad their list with obscure distros where really all such articles should give recommendation for one of the same three distributions. Which three I don’t exactly know.

[–] mina86@lemmy.wtf 1 points 3 months ago* (last edited 3 months ago) (1 children)

src/* will skip hidden files. You want rsync -avAXUNH src/ dst which copies contents of src into dst. Notice the trailing slash in src/. Without the slash, src is copied into dst so you end up with a src directory in dst. The AXUNH enables preserving more things. You might also add --delete if you’re updating the copy.

PS. I should also mention how I end up with -avAXUNH. Simple:

$ man rsync |grep ' -. *preserve'
       --hard-links, -H         preserve hard links
       --perms, -p              preserve permissions
       --executability, -E      preserve executability
       --acls, -A               preserve ACLs (implies --perms)
       --xattrs, -X             preserve extended attributes
       --owner, -o              preserve owner (super-user only)
       --group, -g              preserve group
       --times, -t              preserve modification times
       --atimes, -U             preserve access (use) times
       --crtimes, -N            preserve create times (newness)

and then include all that. a covers some of those options and those don’t have to be set explicitly:

$ man rsync |grep ' -a ' |head -n1
       --archive, -a            archive mode is -rlptgoD (no -A,-X,-U,-N,-H)
[–] mina86@lemmy.wtf 4 points 3 months ago (1 children)

Have you looked at Bitlbee? Not a client for Emacs as such, but an IRC gateway to various protocols. It lets you use your IRC client to talk to XMPP.

[–] mina86@lemmy.wtf 6 points 3 months ago (3 children)

What others wrote except don’t use dd. Use rsync or make a backup with tar. dd will waste time reading unallocated regions of the disk.

view more: ‹ prev next ›