publicvoit, to reddit
@publicvoit@graz.social avatar

Pre-warning to my followers: I'm going to leave for good and I'm blogging about the reasons - mostly because reddit management gone crazy (latest: my isn't working any more for reddit) & also because of https://karl-voit.at/2020/10/23/avoid-web-forums/

If you did not already, organize yourself a decent / aggregator and follow good content from there. My blog has also feeds to follow: https://karl-voit.at/how-to-use-this-blog/

I presume you could use Mastodon as a feed aggregator as well: https://duckduckgo.com/?t=ffab&q=mastodon+as+rss+aggregator&ia=web

publicvoit,
@publicvoit@graz.social avatar

I'm Leaving #Reddit for Good and This Is Why
https://www.karl-voit.at/2024/05/23/leaving-reddit/

👋

I'm going to miss the community, I'm not going to miss the platform.

#publicvoit #PIM #orgmode #emacs #NixOS #Graz #decentralization

mjgardner, to emacs
@mjgardner@social.sdf.org avatar

This is what I hear in my head if I switch back to or .

source: https://mastodon.social/@workchronicles/112372770022713839

mousebot, to emacs
@mousebot@todon.nl avatar

imagine if all the org functions that involve moving point around to do stuff programmatically had a common name prefix, e.g. org-nav- or org-move-. (as it is i have no idea how to discover what they are, which functions even exist...)

tacosandlinux, to emacs
@tacosandlinux@emacs.ch avatar

Anyone know of a similar theme for ? Nano comes to mind, any other themes?

https://mastodon.social/@kepano/112491699394197281
kepano@mastodon.social - Recently made lots of improvements for eink mode in Minimal theme
https://minimal.guide/features/eink

bmp, to emacs
@bmp@mastodon.sdf.org avatar

This package https://github.com/positron-solutions/dslide for making presentations with an document. You can also check the video demon https://yt.artemislena.eu/watch?v=AE82bIKNVjk (don't worry this is just Invidious front-end for Youtube and not a nefarious link).

birv2, to emacs
@birv2@pkm.social avatar

Whoa. I feel like I've just arrived. My blog post on my #emacs learning in public adventures (https://bob-irving.com/117-2/) was reposted by @sachac ! I've been following her weekly emacs updates and found myself there. Like I said, whoa!

It's nice to be part of a pretty technical community that supports stumbling bumbling n00bs like me.

publicvoit, to mastodon
@publicvoit@graz.social avatar

I'd like to use a workflow where each #Mastodon message that gets bookmarked by me is automatically screenshotted to PNG, archived in a local directory and its text content + image descriptions get added to a text file (preferably #orgdown) together with a link to the screenshot and the original message URL.

Somebody willing to volunteer? 🙇

#emacs #orgmode #PIM

al3x, to emacs
@al3x@hachyderm.io avatar

Question for users & experts:

I have tried to use replace-regexp to replace ) at the end of
a set of lines with B).

For the matcher I entered: )$.
For the replacement I entered B)

And it did not work. Why?

(I tried the second time entering B) as a replacement and it worked though)

e11bits, to emacs
@e11bits@fosstodon.org avatar

I rediscovered abbreviations after watching this video by Protesilaos Stavrou. It shows how you can define abbrevs in code and even use interactive functions with them. It also gave me the idea to see, if having some personal abbrevs can be useful. Like having meemail, merepo, memastodon and so forth. So typing merepo will be replaced by https://github.com/e11bits while typing. https://protesilaos.com/codelog/2024-02-03-emacs-abbrev-mode/

birv2, to linuxmint
@birv2@pkm.social avatar

Taking my new (to me) ThinkPad 450 out for its first stroll. Using it while waiting for the car to be serviced. #linuxmint, #firefox, #emacs, all working like a charm. Keyboard and touchpad are almost perfect, battery life is super long. Screen is a little dim but hey. For under $100US I'm not complaining. This is exactly why I got it and set it up with linux, etc. Oh, also doing some journaling with #orgmode and it seems to be syncing to my home computer with #syncthing. Just about perfect!

badrihippo, to emacs
@badrihippo@fosstodon.org avatar

Just learnt how to use in ! :emacs: 🚀

marick, to emacs
@marick@mstdn.social avatar

I am being a good little programmer and adding docstrings to some Elixir code. I hate looking at it. It so gets in the way of the code; see below.

I want an keypress that hides all lines between two regexps (One for @…doc…”””; one for the ending “””.) Weirdly, I can’t find anything. I used to be good at Elisp/Emacs programming, but I pretty much stopped doing that around 30 years ago. So looking for something similar I can hack on (or package that obviates the need to).

Any pointers?

louis, to emacs
@louis@emacs.ch avatar

Caught it by accident. Emacs 30 likely to have Native Compilation turned on by default:

https://lists.gnu.org/r/emacs-devel/2024-03/msg00042.html

Stallmann is somewhat against it. Let's see how it will turn out.

abcdw, to emacs
@abcdw@fosstodon.org avatar

EmacsConf 2023 Stickers came to my forest 🥳

Luckily enough, because today is my last day here (in this climbing season), going to Georgia now.

thees, to emacs
@thees@emacs.ch avatar

this is the best guide to transient menu development for I've read so far => https://github.com/positron-solutions/transient-showcase

kaneuchi, to emacs Japanese
@kaneuchi@mstdn.jp avatar

いい記事。

Using Emacs for Swift development https://danielde.dev/blog/emacs-for-swift-development

godmaire, to emacs
@godmaire@mstdn.social avatar

I did it. I made my first emacs package. It's small and just a wrapper around a CLI, but it's mine.

https://codeberg.org/godmaire/charm-freeze.el

zrzz, to emacs

In when you run find-file and the filename you specify includes wildcards the default behavior is to open all of the matching files. I find this too unpredictable so it's almost never what I want.

What I'd like instead is to bring up the matching files in dired just as if I'd used C-x d instead. This is not supported out of the box so I came up with the following advice:

(defun my-find-file-noselect-wild-dired (orig filename &optional nowarn rawfile wildcards)<br></br>  "Run dired when find-file is given a wildcard path"<br></br>  (if (and wildcards<br></br>           (not (file-name-quoted-p filename))<br></br>       (string-match "[[*?]" filename)<br></br>           (> (length (file-expand-wildcards filename t)) 1))<br></br>      (dired-noselect filename)<br></br>    (funcall orig filename nowarn rawfile wildcards)))<br></br><br></br>(advice-add 'find-file-noselect :around #'my-find-file-noselect-wild-dired)<br></br>

The file-name-quoted-p function checks for a /: prefix which is a magical tramp path to quote the filename. It's part of the normal wildcard path so I figured I'd include it too.

bram85, to emacs
@bram85@emacs.ch avatar

A small snippet of for your init file to show the current time in the modeline if fullscreen is enabled.

(defun bram85-show-time-for-fullscreen (frame)  
 "Show the time in the modeline when the FRAME becomes full screen."  
 (let ((fullscreen (frame-parameter frame 'fullscreen)))  
 (if (memq fullscreen '(fullscreen fullboth))  
 (display-time-mode 1)  
 (display-time-mode -1))))

(add-hook 'window-size-change-functions #'bram85-show-time-for-fullscreen)  
louis, to emacs
@louis@emacs.ch avatar

Today marks the 555th day of uninterrupted uptime of our Emacs.ch instance. 🥳

That's also 555 days of admin work and a spending of roughly $1200 for IaaS. Donations of our users make that much more sustainable.

With consistently well over 400 monthly active users, we established a friendly and supportive Fediverse community in the Fediverse united in a passion for the world's most humane "text editor". And you helped to make that happen. 🎈

Emacs is not just a program, it is the incarnation of freedom, self-development, respect, tolerance and companionship in the software world. It will never go away and will never turn against its users.

Let's continue to grow and strengthen our community! If you'd like to contribute, please visit our donation page: https://liberapay.com/emacs-ch

Together, we can keep the spirit of Emacs alive and thriving for years to come. Thank you for being a part of this incredible journey! 🙏

thees, to emacs
@thees@emacs.ch avatar

Shared some notes on using a elisp function with timers instead of a cron + script based status_command for STDIN based status bars:

https://me.literatelisp.eu/a-minimal-elisp-statuscommand.html

masukomi, to emacs
@masukomi@connectified.com avatar

Two things

  1. OMWTFBBQ this is amazing!
  2. BEST comment responding to someone’s geeky “look what i made” post

The comment, “oh Nicholas, you do such beautiful things!” - /u/tealeg

make-tab-box.el is a package for #Emacs that lets you generate these tabbed boxes.

nebucatnetzer, to emacs
@nebucatnetzer@emacs.ch avatar

Does someone know how to solve this?
I would like to git grep only in the current extension with .

https://github.com/minad/consult/discussions/1016

birv2, to emacs
@birv2@pkm.social avatar

Installed on my 2 linux machines last night. Seems to be working so far, though I haven't yet figured out exactly how it all works -- what syncs with what, how often, etc. But they can see each other and share.

Next is trying to get it going on my Win10 machine. For some reason, that makes me nervous! But if I can get all 3 synced, and working on all of them, I'll be pretty jazzed.

greg, to emacs
@greg@gregnewman.io avatar

Spent way too much time today trying to figure out why consult-imenu will not work for me in and made zero progress.

Last night I had to tear down my configs for tree sitter because typing / in a js buffer would crash emacs. At least I got that fixed and can work on react code tonight.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • mdbf
  • ngwrru68w68
  • InstantRegret
  • magazineikmin
  • thenastyranch
  • rosin
  • khanakhh
  • tacticalgear
  • Youngstown
  • slotface
  • Durango
  • kavyap
  • DreamBathrooms
  • JUstTest
  • ethstaker
  • GTA5RPClips
  • modclub
  • tester
  • anitta
  • osvaldo12
  • cisconetworking
  • everett
  • cubers
  • Leos
  • provamag3
  • normalnudes
  • lostlight
  • All magazines