Planet Emacslife
Sacha Chua: 2022-11-21 Emacs news
https://sachachua.com/blog/2022/11/2022-11-21-emacs-news/
Sacha Chua: 2022-11-21 Emacs news
https://sachachua.com/blog/2022/11/2022-11-21-emacs-news/
Planet Emacslife
Robert Enzmann: Moving My Emacs Configuration to a Literate Programming Document
https://robbmann.io/posts/emacs-literate-announcement/
Robert Enzmann: Moving My Emacs Configuration to a Literate Programming Document
https://robbmann.io/posts/emacs-literate-announcement/
robbmann
Moving My Emacs Configuration to a Literate Programming Document
I’ve got a (relatively) stable version of my Emacs configuration as a literate document now.
Planet Emacslife
T. V. Raman: Announcing Emacspeak 57.0 (Tilden)
https://emacspeak.blogspot.com/2022/11/announcing-emacspeak-570-tilden.html
T. V. Raman: Announcing Emacspeak 57.0 (Tilden)
https://emacspeak.blogspot.com/2022/11/announcing-emacspeak-570-tilden.html
Blogspot
Announcing Emacspeak 57.0 (Tilden)
Announcing Emacspeak 57.0—Tilden! Easy things are often amusing and relaxing, but their value soon fades. Greater pleasure, deeper ...
Planet Emacslife
Andrea: Emacs as your code-compass: who is the person who refactored most in this project?
http://ag91.github.io/blog/2022/11/23/emacs-as-your-code-compass-who-is-the-person-who-refactored-most-in-this-project
Andrea: Emacs as your code-compass: who is the person who refactored most in this project?
http://ag91.github.io/blog/2022/11/23/emacs-as-your-code-compass-who-is-the-person-who-refactored-most-in-this-project
ag91.github.io
Emacs as your code-compass: who is the person who refactored most in this project? - Where parallels cross
Planet Emacslife
Tory Anderson: viewing epub in emacs
https://tech.toryanderson.com/2022/11/23/viewing-epub-in-emacs/
Tory Anderson: viewing epub in emacs
https://tech.toryanderson.com/2022/11/23/viewing-epub-in-emacs/
Toryanderson
viewing epub in emacs
Intro I finally arranged my employer to purchase Mastering Emacs1, which provided it in pdf and epub. PDF2 has long since been my standard thanks to being able to view it nicely on all my devices, but I thought I would give epub a try, too. It’s major feature…
Planet Emacslife
Protesilaos Stavrou: Emacs: my new ‘altcaps’ package
https://protesilaos.com/codelog/2022-11-26-emacs-altcaps/
Protesilaos Stavrou: Emacs: my new ‘altcaps’ package
https://protesilaos.com/codelog/2022-11-26-emacs-altcaps/
Protesilaos Stavrou
Emacs: my new ‘altcaps’ package
The ‘altcaps’ package for Emacs helps the user to apply alternating letter casing to convey sarcasm or mockery.
Planet Emacslife
Jiacai Liu: Oh My GitHub 1.0 is out!
https://en.liujiacai.net/2022/11/26/oh-my-github-1-0/
Jiacai Liu: Oh My GitHub 1.0 is out!
https://en.liujiacai.net/2022/11/26/oh-my-github-1-0/
en.liujiacai.net
Oh My GitHub 1.0 is out!
I'm glad to announce my package Oh My GitHub v1.0 is out. Besides bug fixes, it introduce a very practical feature: create pull request without leaving Emacs.
AFAIK, there already exists a similar package called github-pullrequest does this job, but its…
AFAIK, there already exists a similar package called github-pullrequest does this job, but its…
Planet Emacslife
Emacs Redux: Editing Links in org-mode
https://emacsredux.com/blog/2022/11/26/editing-links-in-org-mode/
Emacs Redux: Editing Links in org-mode
https://emacsredux.com/blog/2022/11/26/editing-links-in-org-mode/
Emacs Redux
Editing Links in org-mode
Links in org-mode by default are displayed as “descriptive” links, meaning they hide their target URLs (or a destination in general). While this looks great, it makes it a bit tricky to figure out how you can edit their URL. There are two easy options: Just…
Planet Emacslife
Irreal: Using Pcase and Name-let for Pattern Matching and Tail Recursion
https://irreal.org/blog/?p=10978
Irreal: Using Pcase and Name-let for Pattern Matching and Tail Recursion
https://irreal.org/blog/?p=10978
Planet Emacslife
Bozhidar Batsov: Reading Files in OCaml
https://batsov.com/articles/2022/11/27/reading-files-in-ocaml/
Bozhidar Batsov: Reading Files in OCaml
https://batsov.com/articles/2022/11/27/reading-files-in-ocaml/
Planet Emacslife
Protesilaos Stavrou: Emacs: aLtCaPs version 1.1.0
https://protesilaos.com/codelog/2022-11-28-altcaps-1-1-0/
Protesilaos Stavrou: Emacs: aLtCaPs version 1.1.0
https://protesilaos.com/codelog/2022-11-28-altcaps-1-1-0/
Protesilaos Stavrou
Emacs: aLtCaPs version 1.1.0
Information about the latest version of my text-transformation package for GNU Emacs. It helps convey sarcasm or mockery.
Planet Emacslife
Christian Tietze: Org-Mode Outline Levels 9+
https://christiantietze.de/posts/2022/11/org-mode-more-outline-levels/
Christian Tietze: Org-Mode Outline Levels 9+
https://christiantietze.de/posts/2022/11/org-mode-more-outline-levels/
Christian Tietze
Org-Mode Outline Levels 9+
Emacs's outline-mode only has font settings aka "faces" for 8 outline levels; then they wrap, so level 9 looks like level 1 and so on. org-mode inherits these faces, and thus also only defines 8 styles. ...
Planet Emacslife
Erik L. Arneson: Pattern Matching and Tail Recursion in Emacs Lisp
https://arnesonium.com/2022/11/pattern-matching-tail-recursion-emacs-lisp
Erik L. Arneson: Pattern Matching and Tail Recursion in Emacs Lisp
https://arnesonium.com/2022/11/pattern-matching-tail-recursion-emacs-lisp
Erik L. Arneson — Writer and Software Developer
Pattern Matching and Tail Recursion in Emacs Lisp
Functional programming offers a bunch of really cool programming patterns. Two that I really enjoy are tail recursion and pattern matching, especially how they are implemented in OCaml. However, I spend a lot of time writing Emacs Lisp now, and I was wondering…