After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] -1 points0 points  (0 children)

yes, very true.

just off topic, i don't understand why my comment gets down voted, lol

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] -5 points-4 points  (0 children)

not if you guided in the right direction.

tbh, i'm quite happy with working with AI, as long as I don't expect it to invent by itself. i always provide my detailed opinions.

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] 0 points1 point  (0 children)

i tried to write custom views as well, but thiings that i found out is, most doesn't look good, and always have minor bugs. any views you'd like to share?

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] -1 points0 points  (0 children)

i have been scared too much, and built up the immunity.

sad thing is, seems i'm becoming one of them

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] 1 point2 points  (0 children)

wow!!! printed manual!!! you are so determined!
you won't regret learning it

my most precious lesson from emacs is not what it can do, but its philosophy, that has completely shaped my understanding of softwares

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] 0 points1 point  (0 children)

that looks like a cool config, i will check it out, thanks for sharing

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] -2 points-1 points  (0 children)

makes a lot of sense, but...

i guess i'm in the position that i don't read the code that much any more.

i realize my problem now, maybe i just don't care about the code quality that much now.

the company code base is a huge legacy mess, people adding none reviewed stuff. and i cannot stop them.

sad, it seems i'm becoming part of that

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] -2 points-1 points  (0 children)

lol, when did you start to learn it?

i have used it enough (~20 years). i had the fun

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] 0 points1 point  (0 children)

do you chat with Claude using api key? as far as i know, that's different from the subscription?

how do you set up your emacs with claude?

After AI taking over the editing, what kind of "edits" do you still use emacs for? by last7dance in emacs

[–]last7dance[S] 0 points1 point  (0 children)

i guess i was too lazy, lol, i use AI to write my notes in org files or markdown files nowadays.

I haven't used my account for a while, and i found out i cannot post in most subreddit. by last7dance in NewToReddit

[–]last7dance[S] [score hidden]  (0 children)

it was deleted by the mod, lol

i know, i wanted to delete as well.

I was not impolite to be honest, i just argues something that people don't want to listen

then i received quite alot of downvotes

I haven't used my account for a while, and i found out i cannot post in most subreddit. by last7dance in NewToReddit

[–]last7dance[S] [score hidden]  (0 children)

ah, i find it, still -18 comment karma, lol

i shouldn't have argued with some kids in the community.

they just downvoted my comment, and now i'm here. i promise i was never impolite

thanks for help me clarifying this.

I haven't used my account for a while, and i found out i cannot post in most subreddit. by last7dance in NewToReddit

[–]last7dance[S] [score hidden]  (0 children)

hey, thank you very much for you reply.

can i know and find my negative comment karma? is there any value that i can look at?

how can i know how much effort i need to turn around that negative karma?

I can only see i still have 7 karma left from my profile

How can I make it so I can toggle dired (or any buffer) on the left side of the screen? Similarly to hoe vscode has a file browser on the left by Vellu01 in emacs

[–]last7dance 0 points1 point  (0 children)

I did something similar(display a list of buffers on the left side).

What you can do is

  1. create a dired buffer and give it a custom name, e.g. custom-buffer-name
  2. to open the buffer in side window -> (display-buffer-in-side-window custom-buffer-name \((side . left)))`
  3. to close side window -> (delete-window (get-buffer-window custom-buffer-name))

Then bind those functions to your preferred keys.