this post was submitted on 02 Sep 2024
386 points (93.3% liked)

Linux

48905 readers
1527 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 
(page 3) 50 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 4 months ago

Ed users entered the chat

[–] [email protected] 3 points 4 months ago

Greybeard here. I can use vi, emacs, nano, etc. and use whatever is available if it suits the job. For many years I did dev in emacs on my computers and on other systems used vi for quick edits. Currently on my own laptop I have micro as default term editor now. For Rust development - code, though I have hopes for Lapce.

They're all just tools and so are people who get tribal about things.

[–] [email protected] 3 points 4 months ago (3 children)

Nano isn't even that simple. Ctrl+X to quit? I guess if you use phonetic sounds to figure out how to exit a program. At least Vim uses the idea of "use what the words start with."

I personally use micro in the terminal, and Kate if I want a GUI to write. Vim and Emacs are fine for those who want it, I have no stakes in the editor wars beyond "I just want my program to do what I want, and I want it to be simple to learn."

load more comments (3 replies)
[–] [email protected] 3 points 4 months ago

Emacs users laughing at VIM users.

Emacs - A pretty good OS you can use as a text editor.

[–] [email protected] 3 points 4 months ago (6 children)

is there not a single other person who uses helix?

[–] [email protected] 3 points 4 months ago (2 children)
load more comments (2 replies)
[–] [email protected] 2 points 4 months ago (3 children)

I gave it serious consideration when the death of Atom was announced and I was unsure where to move on to.

Looks like in the meantime a lot has been done (as far as I remember, TreeSitter and LSP weren't built in back then...? Not sure though), but the lack of a plugin system is still killing it for me.

TBH it looks like it has 75% of the features you want from a codeditor, which is much more than the use-case for Nano, but no way to go the remaining 25% of the way.

load more comments (3 replies)
[–] [email protected] 2 points 4 months ago

Well I tried! I ended up using micro though

load more comments (3 replies)
[–] [email protected] 3 points 4 months ago (8 children)

idk man, vims pretty chill, it even has a tutor in it already, what more could you want?

load more comments (8 replies)
[–] [email protected] 2 points 4 months ago

I just use this:

#!/bin/bash

keep_generating=1
while [[ $keep_generating == 1 ]]; do
    dd if=/dev/random of=$1 bs=1 count=$2 status=none
    echo Contents of $1 are:
    cat $1
    echo
    read -p "Try generating again? " -s -n1 answer
    while true; do
        case $answer in
            [Yy] )
                echo
                break
                ;;
            [Nn] )
                keep_generating=0
                break
                ;;
            *)
        esac
        read -s -n1 answer
    done
done
[–] [email protected] 2 points 4 months ago* (last edited 4 months ago)

I so would love to downvote this to oblivion

load more comments
view more: ‹ prev next ›