Planet Emacslife
Sacha Chua: 2024-02-19 Emacs news
https://sachachua.com/blog/2024/02/2024-02-19-emacs-news/
Sacha Chua: 2024-02-19 Emacs news
https://sachachua.com/blog/2024/02/2024-02-19-emacs-news/
Planet Emacslife
Meta Redux: nREPL 1.1.1: Improved Completion with compliment-lite
https://metaredux.com/posts/2024/02/20/nrepl-1-1-1-improved-completion-with-compliment-lite.html
Meta Redux: nREPL 1.1.1: Improved Completion with compliment-lite
https://metaredux.com/posts/2024/02/20/nrepl-1-1-1-improved-completion-with-compliment-lite.html
Meta Redux
nREPL 1.1.1: Improved Completion with compliment-lite
Today I’ve released nREPL 1.1.1 with a couple of small bug-fixes and one more notable, if mostly invisible change. Historically nREPL’s completions op used internally a modified version of clojure-complete, that I eventually released as a library named incomplete.…
Planet Emacslife
Protesilaos Stavrou: Emacs: spontaneous live stream today (2024-02-22) at 14:30 Europe/Athens time
https://protesilaos.com/codelog/2024-02-22-emacs-live-stream/
Protesilaos Stavrou: Emacs: spontaneous live stream today (2024-02-22) at 14:30 Europe/Athens time
https://protesilaos.com/codelog/2024-02-22-emacs-live-stream/
Protesilaos Stavrou
Emacs: spontaneous live stream today (2024-02-22) at 14:30 Europe/Athens time
I am doing a live stream today where I will be maintaining some of my packages for Emacs.
👍1
Planet Emacslife
Lars Ingebrigtsen: Can you spot the date I said “I’m done”?
https://lars.ingebrigtsen.no/2024/02/22/can-you-spot-the-date-i-said-im-done/
Lars Ingebrigtsen: Can you spot the date I said “I’m done”?
https://lars.ingebrigtsen.no/2024/02/22/can-you-spot-the-date-i-said-im-done/
Random Thoughts
Can you spot the date I said “I’m done”?
Anyhoo… the reason I checked was because I was cleaning up my closet, which I’m told you have to do five times a century, whether it needs it or not. I got about er 11? of these refuse …
Planet Emacslife
Meta Redux: Weird Ruby: Nil Conversions
https://metaredux.com/posts/2024/02/23/weird-ruby-nil-conversions.html
Meta Redux: Weird Ruby: Nil Conversions
https://metaredux.com/posts/2024/02/23/weird-ruby-nil-conversions.html
Meta Redux
Weird Ruby: Nil Conversions
Most Rubyists probably know that nil in Ruby is an instance of the singleton class NilClass. Because nil is a object like any other, we can actually invoke methods on it, and it turns out that NilClass provides a few - mostly conversion methods to other Ruby…
Planet Emacslife
Meta Redux: Weird Ruby: Fun with String#split
https://metaredux.com/posts/2024/02/23/weird-ruby-fun-with-string-split.html
Meta Redux: Weird Ruby: Fun with String#split
https://metaredux.com/posts/2024/02/23/weird-ruby-fun-with-string-split.html
Meta Redux
Weird Ruby: Fun with String#split
String#split is a pretty-well known and commonly used method. Still, its behaviour in some cases might surprise you: irb(main):001:0> 'foo.bar'.split('.') => ["foo", "bar"] irb(main):002:0> '...'.split('.') => [] irb(main):003:0> 'foo...'.split('.') => ["foo"]…
Planet Emacslife
Troy Hinckley: Cycles all way down
https://coredumped.dev/2024/02/23/cycles-all-way-down/
Troy Hinckley: Cycles all way down
https://coredumped.dev/2024/02/23/cycles-all-way-down/
coredumped.dev
Cycles all way down
A while ago while working on Rust-based Emacs, I was loading a new elisp file and hit a stack overflow. Digging deeper I found the issue in trying to print a cyclic list (where the tail of the list points back to previous element). I knew this was a possibility…
Planet Emacslife
Emacs Redux: Changing The Emacs Configuration Directory
https://emacsredux.com/blog/2024/02/23/changing-the-emacs-configuration-directory/
Emacs Redux: Changing The Emacs Configuration Directory
https://emacsredux.com/blog/2024/02/23/changing-the-emacs-configuration-directory/
Emacs Redux
Changing The Emacs Configuration Directory
I’ve noticed recently that I’ve missed one small, but very handy addition to Emacs 29 - the --init-dir command-line options. According the release notes: Emacs now supports setting ‘user-emacs-directory’ via ‘–init-directory’. Use the ‘–init-directory’ command…
Planet Emacslife
Michal Sapka: Emacs: watching YouTube with Yeetube and mpv
https://michal.sapka.me/emacs/watching-youtube-with-emacs/
Michal Sapka: Emacs: watching YouTube with Yeetube and mpv
https://michal.sapka.me/emacs/watching-youtube-with-emacs/
Planet Emacslife
Jeremy Friesen: Update on the Campaign Status Document
https://takeonrules.com/2024/02/23/update-on-the-campaign-status-document/
Jeremy Friesen: Update on the Campaign Status Document
https://takeonrules.com/2024/02/23/update-on-the-campaign-status-document/
Planet Emacslife
Jeremy Friesen: Quick and Dirty Function to Sort My Feed
https://takeonrules.com/2024/02/24/quick-and-dirty-function-to-sort-my-feed/
Jeremy Friesen: Quick and Dirty Function to Sort My Feed
https://takeonrules.com/2024/02/24/quick-and-dirty-function-to-sort-my-feed/
Planet Emacslife
Jeremy Friesen: Emacs Function to Assign Org-Mode Property to Matching Criteria
https://takeonrules.com/2024/02/24/emacs-function-to-assign-org-mode-property-to-matching-criteria/
Jeremy Friesen: Emacs Function to Assign Org-Mode Property to Matching Criteria
https://takeonrules.com/2024/02/24/emacs-function-to-assign-org-mode-property-to-matching-criteria/
Take on Rules
Emacs Function to Assign Org-Mode Property to Matching Criteria
Yesterday, I wrote my Update on the Campaign Status Document. I had manually set the alignment of several Non-Player Characters (NPCs 📖) ; but I thought “Maybe I should instead clear those out and randomize?”
And I started thinking about how I might automatically…
And I started thinking about how I might automatically…
Planet Emacslife
Mario Jason Braganza: Org Mode Narrowing and Widening Buffers
https://janusworx.com/blog/org-mode-narrowing-and-widening-buffers/
Mario Jason Braganza: Org Mode Narrowing and Widening Buffers
https://janusworx.com/blog/org-mode-narrowing-and-widening-buffers/
Janusworx
Org Mode Narrowing and Widening Buffers
Narrow to focus, widen to review and plan. tldr: “C-x n s” to narrow and “C-x n w” to widen
Planet Emacslife
Bozhidar Batsov: Emacs: Dead and Loving It
https://batsov.com/articles/2024/02/26/emacs-dead-and-loving-it/
Bozhidar Batsov: Emacs: Dead and Loving It
https://batsov.com/articles/2024/02/26/emacs-dead-and-loving-it/
(think)
Emacs: Dead and Loving It
What is dead cannot die. – A Song of Ice and Fire (a.k.a. Game of Thrones)
Planet Emacslife
Arialdo Martini: Emacs: how to activate the functionality X for all files of type Y?
http://arialdomartini.github.io//emacs-hooks
Arialdo Martini: Emacs: how to activate the functionality X for all files of type Y?
http://arialdomartini.github.io//emacs-hooks
arialdomartini.github.io
Emacs: how to activate the functionality X for all files of type Y?
Random thoughts about programming