• 1 Post
  • 24 Comments
Joined 22 days ago
cake
Cake day: March 13th, 2025

help-circle
  • mina86@lemmy.wtftoLinux@lemmy.mlWorld on warcraft on Linux
    link
    fedilink
    English
    arrow-up
    17
    arrow-down
    1
    ·
    edit-2
    2 hours ago

    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.


  • 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.wtfOPtoLinux@lemmy.mlIs Ctrl+D really like Enter?
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    5 days ago

    Yeah, it’s a bit philosophical.

    • In graphical applications, Ctrl+M, Ctrl+J and Return/Enter are all different things.
    • In a terminal in raw mode, Ctrl+M and Return/Enter are the same thing but Ctrl+J is something different. You can for example run bind -x '"\C-j":"echo a"' in bash and Ctrl+J will do something different.
    • In a terminal in canonical mode, they are all the same thing. There probably are some stty options which can change that though.





  • You want readlink -f rather than ls -l. ++OK, actually not exactly. readlink won’t print path to the symlink so it’s not as straightforward.++

    Also, you want + in find ... -exec ... + rather than ;.

    At this point I feel committed to making readlink work. ;) Here’s the script you want:

    #!/bin/sh
    
    want=$1
    shift
    readlink -f -- "$@" | while read got; do
    	if [ "$got" = "$want" ]; then
    		echo "$1"
    	fi
    	shift
    done
    

    and execute it as:

    find ~ -type l -exec /bin/sh /path/to/the/script /path/to/target/dir {} +
    








  • Another interesting part is that HTML5 supports embedding SVG. That is, you can put SVG code directly in your HTML5 document and it’s going to render correctly. You can also style it through your website’s CSS file and manipulate the elements via JavaScript.

    Though as others pointed out, it’s technically not HTML but XML. For example, you have to close all the elements and quote all the attribute values. But when you embed it inside a HTML document, those rules get relaxed to adhere with HTML. (I.e., you cannot write <circle r=5> in SVG (it must be <circle r="5" />) but you can when you embed it in HTML).


  • Which is why I haven’t wrote ‘EOF character’, ‘EOT’ or ‘EOT character’. Neither have I claimed that \x4 character is interpreted by the shell as end of file.

    Edit: Actually, I did say ‘EOF character’ originally (though I still haven’t claimed that it sends EOF character to the program). I’ve updated the comment to clear things up more.