spelk, to emacs
@spelk@emacs.ch avatar

#Irreal highlighted @jbaty blog post on the "gravitational pull of emacs" a cyclic moving away for simplicity's sake and a gradual pull back as personal comforts of customisations coax and inevitable return to #emacs

Emacs as Crack
https://irreal.org/blog/?p=12216

The gravitational pull of Emacs
https://baty.net/2024/06/the-gravitational-pull-of-emacs/

I've noticed a similar tidal motion back and forth, but instead of simple note-taking apps I flow between Emacs and other simpler #FOSS editors, like #Featherpad or #Notepadplusplus

Ultimately the draw & utility of #OrgMode sucks me back into Emacs and has me nuzzling comfortably back in my custom config.

This is probably a result of trying to walk the tight rope of balance between literally "getting things done" (not the GTD system) and "making life easier" with settings & customising.

I suppose, one day, the customisations might reach a stable state & the use of other editors becomes unnecessary. Balance achieved. Enlightenment.

But you know, in tech, everything moves on eternally so the balance undulates softly over time. Not to mention our lives and needs also shift over time.

So perhaps this do-si-do dance we do, will always be?

deadblackclover, to emacs
@deadblackclover@functional.cafe avatar

Emacs Doesn’t Have Plugins

https://irreal.org/blog/?p=12210

itsfoss, to linux
@itsfoss@mastodon.social avatar
Zabuzzman,

@itsfoss was my first, and it will be my last 😄

fsf, to emacs
@fsf@hostux.social avatar

Assigning your copyright to the FSF helps defend the GPL and keep software free. Thanks to Ignacio Ruiz Cejudo, Johan Sternerup, Rens Oliemans, Robert Burks, Sergei Golovin, and Toshihiro Umehara for assigning their copyright to the FSF! More: https://u.fsf.org/3ht

publicvoit, to orgmode

Sharing Selected Data With Users
https://karl-voit.at/2024/06/02/org-headings-to-logseq/

I do have a special use-case for sharing parts of my Org-mode content with my wife.

(Help me to promote me content elsewhere since I no longer promote it outside of Mastodon: https://karl-voit.at/2024/05/23/leaving-reddit/ )

shom, to emacs
@shom@fosstodon.org avatar

Org Release 9.7 brings many new features, I'm excited about:

  • Images and files in clipboard can be pasted
  • New customization org-image-max-width
  • Asynchronous code evaluatation in ob-shell
  • org-auto-align-tags is now respected universally

@daviwil might like this for literate config

  • ob-tangle.el: New flag to remove tangle targets before writing

Many more at: https://orgmode.org/Changes.html

yantar92, to announcement
@yantar92@emacs.ch avatar

Org 9.7, a major release, is out.

Org 9.7 will be a part of Emacs 30.

You can upgrade from GNU ELPA or install with M-x package-install RET org RET

Please, also re-install all the Org-related packages - some of the
changes require re-compiling packages that use Org mode APIs.

Release notes: https://orgmode.org/Changes.html

Announcement: https://list.orgmode.org/87jzj7adfd.fsf@localhost/T/#u

If you enjoy using Org, please consider supporting contributors via
<https://liberapay.com/org-mode/>. Donations do help a lot.

#announcement #emacs #orgmode

jbaty, to emacs
@jbaty@social.lol avatar
fsf, to emacs
@fsf@hostux.social avatar

Assigning your copyright to the FSF helps defend the GPL and keep software free. Thanks to Ignacio Ruiz Cejudo, Johan Sternerup, Rens Oliemans, Robert Burks, Sergei Golovin, and Toshihiro Umehara for assigning their copyright to the FSF! More: https://u.fsf.org/3ht

mousebot, to emacs
@mousebot@todon.nl avatar

  • added display of filtered languages on profile pages
  • added the ability to remove filtering of languages for a user (which for some reason cost a bonkers amount of effort, sigh.)
  • plus a few updates to the readme
morenonatural, to emacs Spanish
@morenonatural@todon.nl avatar
zyd, to Lisp
@zyd@emacs.ch avatar

This is a very important question: which indentation do you prefer for loop subclauses, A or B. #lisp

Screenshot of Common Lisp code using the Loop macro. This one is identified as option B. Each conditional subclause (in this case

screwtape,
@screwtape@mastodon.sdf.org avatar

@thuna_cing @zyd
Edit: I'm wrong about this being wrong. Reason in reply
@louis what active contributors do we know at the moment?
@kickingvegas @ldbeth

Edit: Scroll up. lisp-mode has incorrect loop indentation.

screwtape, to fediverse
@screwtape@mastodon.sdf.org avatar

Breaking up my failures-to-build with my discovery of using

I really like this eight minute if I do say so myself.

https://toobnix.org/w/2WYHBTHGvRQ8pUSVmKhKGg

@adanskana @sachac @louis
can I ask for some opinions on the clim / emacs / lisp useage as conveyed by videos?

This is pretty much just what I really do when near a computer for eight minutes.
Playlist:
https://toobnix.org/w/p/4bRcULzg6bBAyELkRqU6EQ?playlistPosition=1

zrzz, to emacs

Render eww.el bookmarks and history as HTML.

eww.el has commands to manage bookmarks and history but I wanted a version that uses HTML so that eww-lnum and other eww functionality works as usual. This also adds a new my-eww-global-history variable because the normal eww-history is buffer-local.

(defvar my-eww-bookmarks-html-file (expand-file-name "eww-bookmarks.html" eww-bookmarks-directory))<br></br>(defvar my-eww-history-html-file (expand-file-name "eww-history.html" eww-bookmarks-directory))<br></br>(defvar my-eww-global-history nil)<br></br><br></br>(defun my-eww-render-bookmarks-as-html ()<br></br>  (eww-read-bookmarks)<br></br>  (with-temp-file my-eww-bookmarks-html-file<br></br>    (dolist (bm eww-bookmarks)<br></br>      (insert (format "<a href="%s">%s</a><br>n" (plist-get bm :url) (plist-get bm :title))))))<br></br><br></br>(defun my-eww-bookmarks ()<br></br>  (interactive)<br></br>  (my-eww-render-bookmarks-as-html)<br></br>  (eww-open-file my-eww-bookmarks-html-file))<br></br><br></br>(defun my-eww-save-global-history ()<br></br>  (let* ((url (plist-get eww-data :url))<br></br>         (title (plist-get eww-data :title))<br></br>         (elt (cons url title)))<br></br>    (unless <br></br>        (string-prefix-p (concat "file://" (expand-file-name eww-bookmarks-directory)) url)<br></br>      ;; push new element to beginning, keep it unique<br></br>      (setq my-eww-global-history (cons elt (delete elt my-eww-global-history))))))<br></br><br></br>(add-hook 'eww-after-render-hook #'my-eww-save-global-history)<br></br><br></br>(defun my-eww-render-history-as-html ()<br></br>  (with-temp-file my-eww-history-html-file<br></br>    (dolist (h my-eww-global-history)<br></br>      (let* ((url (car h))<br></br>             (title (cdr h))<br></br>             (title-or-url (if (or (null title) (string-blank-p title)) url<br></br>                             title)))<br></br>        (insert (format "<a href="%s">%s</a><br>n" url title-or-url))))))<br></br><br></br>(defun my-eww-history ()<br></br>  (interactive)<br></br>  (my-eww-render-history-as-html)<br></br>  (eww-open-file my-eww-history-html-file))<br></br><br></br>

deech, to emacs
@deech@mastodon.social avatar

Oh nice! now has built in JSON (de)serialization.

https://github.com/emacs-mirror/emacs/blob/master/etc/NEWS#L53-L56

andy47, to emacs
@andy47@aus.social avatar

I am not sure that I like what I've become - I have started using . It feels ... dirty.

screwtape, to Lisp
@screwtape@mastodon.sdf.org avatar
carmenbianca, to emacs
@carmenbianca@todon.eu avatar

how do people use (sans evil-mode) without getting immediate RSI?

i tried regular emacs for a day after being shamed by my friend's dad for using evil-mode, and my hand still hurts.

i actually quite liked it, apart from, you know, the pain. that isn't normal.

bounga, to random
@bounga@ruby.social avatar

Hi @sachac just to let you know that your website seems to be down.

bounga,
@bounga@ruby.social avatar

@sachac yes it works! Thank a lot for your work. Every week I’m waiting for your post. You are really a gem for community.

laotang, to emacs
@laotang@emacs.ch avatar

people: Is there an easy way to customise org-capture (and perhaps org-agenda) to just use the same window and leave my window management alone?

I’m knee-deep into stack overflow posts and wasting way too much time here. This is one of my most longstanding annoyances of

(This is actually one of the reasons does not use org-capture for new notes.)

oatmeal, to emacs
@oatmeal@emacs.ch avatar

wait, what? consult-gnome-search

Nice way to interact with GNOME's search... I have tracker disabled, so not much to see. This action will open the app description in GNOME Software.

https://blog.hoetzel.info/post/consult-gnome-search

tekki, to emacs German
@tekki@swiss.social avatar

If Google Podcasts asks to export all subscriptions to YouTube Music and this one finds nothing to import, the only reliable solution is to move everything to elfeed in .

adanskana, to RSS
@adanskana@mastodon.social avatar

Can anyone recommend some good programming blogs (in the realm of lisps, emacs, guix, technical deep dives) that offer RSS feeds? I've already got https://wingolog.org/ from @wingo which is pretty much the exact genre of blog I'm looking for. https://ianthehenry.com/posts/ from @ianthehenry is also a good one (although the RSS feed doesn't seem to work with GFeeds :).
I just think it would be cute to have a selection of RSS feeds to browse through :)

[#rss #programming #blogs #lisp #emacs #guix

kommen, to emacs German
@kommen@hachyderm.io avatar

:emacs: for a while running a part of Germany’s Air Traffic Control system after the country’s reunification is what sweetend my breakfast today.

Plus, this is the plain truth: «In Germany, a Herr Doktor is always right»

https://www.emacswiki.org/emacs/EmacsStories#h5o-3

(via https://irreal.org/)

amirny2205, to random
@amirny2205@toot.io avatar

my .emacs \w EXWM

https://dpaste.org/YMpyg
https://paste.rs/lUuOT.lisp

you can install GNU/linux on flash drive(full-featured version) or use virtualisation,
WSL and cygwin are solutions, too

consider Tor browser through VPsN, Richard Stallman uses it exclusively; about:config in firefox adrress bar to javascript.enabled = false, or use EU (eww, emacs web browser)

M-x zone in case Stalin has connection to your LCD at your PC
https://stackoverflow.com/questions/13386943/how-do-i-turn-on-zone-while-idle-in-emacs-through-my-emacs

https://paste.rs/PUnwm.txt

hexogen E=mc2

zrzz,

@amirny2205 Nice. This is what I use for my buffer rename logic to handle some special cases and to truncate names to a reasonable length:

(defun my-exwm-rename-buffer ()<br></br>  (let* ((class (or exwm-class-name ""))<br></br>         (title (or exwm-title exwm-class-name "exwm"))<br></br>         (name<br></br>          (cond<br></br>           ((string-match "chromium" class) "Chromium")<br></br>           ((string-match "firefox" class) "Firefox")<br></br>           ;; these need the program name prefixed<br></br>           ((string-match "MuPDF" class) (concat "MuPDF: " title))<br></br>           ((string-match "Gimp" class) (concat "Gimp: " title))<br></br>           (t title))))<br></br>    (exwm-workspace-rename-buffer (substring name 0 (min 60 (length name))))))<br></br><br></br>(add-hook 'exwm-update-title-hook 'my-exwm-rename-buffer)<br></br>

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