-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmost-recent.html
427 lines (420 loc) · 31.1 KB
/
most-recent.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 2025-03-10 Mon 20:54 -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>2025-03-10 Emacs news</title>
<meta name="author" content="Sacha Chua" />
<meta name="generator" content="Org Mode" />
<style type="text/css">
#content { max-width: 60em; margin: auto; }
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #e6e6e6;
border-radius: 3px;
background-color: #f2f2f2;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: auto;
}
pre.src:before {
display: none;
position: absolute;
top: -8px;
right: 12px;
padding: 3px;
color: #555;
background-color: #f2f2f299;
}
pre.src:hover:before { display: inline; margin-top: 14px;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-authinfo::before { content: 'Authinfo'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.equation-container {
display: table;
text-align: center;
width: 100%;
}
.equation {
vertical-align: middle;
}
.equation-label {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { }
</style>
<link rel="stylesheet" type="text/css" href="https://sachachua.com/assets/css/style.css"></link>
<link rel="stylesheet" type="text/css" href="https://sachachua.com/assets/css/org-export.css"></link>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://sachachua.com/assets/js/misc.js"></script>
</head>
<body>
<div id="preamble" class="status">
<a name="top" id="top"></a>
</div>
<div id="content" class="content">
<header>
<h1 class="title">2025-03-10 Emacs news</h1>
</header><ul class="org-ul">
<li>Emacs 30:
<ul class="org-ul">
<li><a href="https://www.tecmint.com/emacs-text-editor/">How to Get Started with Emacs 30.1 on Linux</a> (<a href="https://mastodon.social/@derdreschi85/114121937553257811">@[email protected]</a>)</li>
<li><a href="https://www.linux-magazin.de/news/gnu-emacs-30-1-laeuft-auf-android/">GNU Emacs 30.1 läuft auf Android</a> (<a href="https://nrw.social/@hgdrn/114123491964124630">@[email protected]</a>)</li>
</ul></li>
<li>Upcoming events (<a href="https://emacslife.com/calendar/emacs-calendar.ics">iCal file</a>, <a href="https://emacslife.com/calendar/">Org</a>):
<ul class="org-ul">
<li>Emacs.si (in person): Emacs.si meetup #3 2025 (v #živo) <a href="https://dogodki.kompot.si/events/333236a9-d51f-4646-9630-4d42a820f1f0">https://dogodki.kompot.si/events/333236a9-d51f-4646-9630-4d42a820f1f0</a> Tue Mar 11 1900 CET</li>
<li>Atelier Emacs Montpellier (in person) <a href="https://lebib.org/date/atelier-emacs">https://lebib.org/date/atelier-emacs</a> Fri Mar 14 1800 Europe/Paris</li>
<li>M-x Research: TBA <a href="https://m-x-research.github.io/">https://m-x-research.github.io/</a> Wed Mar 19 0900 America/Vancouver - 1100 America/Chicago - 1200 America/Toronto - 1600 Etc/GMT - 1700 Europe/Berlin - 2130 Asia/Kolkata – Thu Mar 20 0000 Asia/Singapore</li>
<li>Emacs APAC: Emacs APAC meetup (virtual) <a href="https://emacs-apac.gitlab.io/announcements/">https://emacs-apac.gitlab.io/announcements/</a> Sat Mar 22 0130 America/Vancouver - 0330 America/Chicago - 0430 America/Toronto - 0830 Etc/GMT - 0930 Europe/Berlin - 1400 Asia/Kolkata - 1630 Asia/Singapore <a href="https://emacs-apac.gitlab.io/announcements/march-2025/">announcement</a></li>
<li>EmacsSF (in person): coffee.el in SF <a href="https://www.meetup.com/emacs-sf/events/306610734/">https://www.meetup.com/emacs-sf/events/306610734/</a> Sat Mar 22 1100 America/Los_Angeles</li>
</ul></li>
<li>Upcoming events:
<ul class="org-ul">
<li><a href="https://protesilaos.com/codelog/2025-03-08-live-stream-emacs-linux-life/">Protesilaos Stavrou: Live @ 2025-03-15, 14:00 Europe/Athens: ‘Ask Me Anything’ about Emacs, Linux, and Life in general</a></li>
</ul></li>
<li>Emacs configuration:
<ul class="org-ul">
<li><a href="https://mbork.pl/2025-03-10_Persisting_variables_across_Emacs_sessions_revisited">Marcin Borkowski: Persisting variables across Emacs sessions revisited</a></li>
<li><a href="https://sophiebos.io/posts/first-emacs-config/">Building Your First Emacs Config | Sophie Bosio</a> (<a href="https://fosstodon.org/@bignose/114106381819098367">@[email protected]</a>)</li>
<li><a href="https://github.com/jamescherti/minimal-emacs.d">minimal-emacs.d - A Customizable Emacs init.el and early-init.el that Provides Better Defaults and Optimized Startup (Release 1.2.0)</a> (<a href="https://www.reddit.com/r/emacs/comments/1j50ydx/minimalemacsd_a_customizable_emacs_initel_and/">Reddit</a>)</li>
<li><a href="https://emacs.peregrinator.site/projects/literate-emacs-configuration/">peregrinator's literate Emacs configuration</a></li>
<li><a href="https://www.reddit.com/r/emacs/comments/1j66vml/my_autobootstrapping_emacs_config_powered_by/">my auto-bootstrapping emacs config, powered by straight.el</a></li>
</ul></li>
<li>Emacs Lisp:
<ul class="org-ul">
<li><a href="https://www.wisdomandwonder.com/emacs/14192/refactoring-a-simple-example-of-simultanously-user-friendly-and-debuggable-code">Grant Rettke: Refactoring a Simple Example of Simultanously User-Friendly and Debuggable Code</a></li>
<li><a href="https://github.com/meedstrom/el-job">el-job: An async library for some high-performance needs</a> (<a href="https://www.reddit.com/r/emacs/comments/1j55pac/eljob_an_async_library_for_some_highperformance/">Reddit</a>)</li>
<li><a href="https://www.youtube.com/watch?v=2OUqLcq5ZCc">How to extract the Filename from an Emacs buffer and include it in a Yasnippet</a> (06:10)</li>
</ul></li>
<li>Appearance:
<ul class="org-ul">
<li><a href="http://yummymelon.com/devnull/announcing-calle-24.html">Charles Choi: Announcing Calle 24</a> - use SF Symbols for icon bar</li>
<li><a href="https://www.youtube.com/watch?v=LRTqjj7s1bc">Installing color scheme in Emacs</a> (06:27)</li>
</ul></li>
<li>Navigation:
<ul class="org-ul">
<li><a href="https://www.danliden.com/notes/20250308-registers-1.html">Navigating between points with registers</a></li>
<li><a href="https://www.youtube.com/watch?v=xEXqcLLLjvA">Better registers in Emacs #coding #programming #emacswiki</a> (06:17)</li>
<li><a href="https://donaldh.wtf/2025/03/nested-projects-in-eglot/">Nested projects in Eglot</a> (<a href="https://hachyderm.io/@donaldh/114121692781710728">@[email protected]</a>) - project-rootfile-try-detect</li>
<li><a href="https://www.reddit.com/r/emacs/comments/1j4kql4/release_v200_disproject_dispatch_project_commands/">[Release v2.0.0] Disproject: Dispatch project commands with Transient</a></li>
</ul></li>
<li>Dired:
<ul class="org-ul">
<li><a href="https://baty.net/posts/2025/03/toggle-hidden-files-in-dired-buffers/">Jack Baty: Toggle hidden files in Dired buffers</a></li>
<li><a href="https://mbork.pl/2025-03-03_Applying_some_modification_to_selected_files_in_a_directory">Marcin Borkowski: Applying some modification to selected files in a directory</a></li>
</ul></li>
<li>Org Mode:
<ul class="org-ul">
<li><a href="https://plaindrops.de/blog/2025/tagwood/">Collecting and Categorizing Web Links in Org-mode | Plain DrOps</a> (<a href="https://masto.plaindrops.de/@spacecadet/114105518125904827">@[email protected]</a>)</li>
<li><a href="https://www.reddit.com/r/orgmode/comments/1j2b2gx/update_orgsupertag_25_a_new_way_think_about_tag/">(Update) org-supertag 2.5: A new way think about Tag system</a> (<a href="https://www.reddit.com/r/emacs/comments/1j2b2rh/update_orgsupertag_25_a_new_way_think_about_tag/">r/emacs</a>, <a href="https://www.reddit.com/r/orgmode/comments/1j2b2gx/update_orgsupertag_25_a_new_way_think_about_tag/">r/orgmode</a>)</li>
<li><a href="https://thanosapollo.org/posts/org-gnosis-overview/">Thanos Apollo: Emacs Note Taking & Journaling using org-gnosis [Video]</a> (<a href="https://www.youtube.com/watch?v=5SkLa7jGjl0&feature=youtu.be">YouTube</a>)</li>
<li><a href="https://sachachua.com/blog/2025/03/getting-an-org-link-url-from-a-string-debugging-regex-groups/">Sacha Chua: Getting an Org link URL from a string; debugging regex groups</a></li>
<li><a href="https://www.reddit.com/r/emacs/comments/1j6ka5i/my_first_emacs_lisp_code/">My First Emacs Lisp Code - org-create-and-open-file-link</a></li>
<li><a href="https://olddeuteronomy.github.io/post/orgmode-for-reproducibility-testing/">The Emacs Cat: Using Emacs Org Mode for Reproducibility Testing</a></li>
<li><a href="https://www.reddit.com/r/emacs/comments/1j4370o/loving_emacs_writing_studio/">Loving Emacs Writing Studio</a> (<a href="https://irreal.org/blog/?p=12828">Irreal</a>)</li>
<li>Import, export, and integration:
<ul class="org-ul">
<li><a href="https://www.reddit.com/r/emacs/comments/1j7febh/my_static_website_is_generated_from_org_mode_and/">My static website is generated from Org Mode, and I'm quite pleased with how it turned out</a></li>
<li><a href="https://lucio.albenga.es/web/posts/2024/como-crear-y-publicar-tu-sitio-web-con-emacs-y-org-mode.html">/home/lucio.albenga.es - Como crear y publicar tu sitio web con Emacs y Org Mode</a> (<a href="https://mastodon.social/@victorhck/114133879297004001">@[email protected]</a>)</li>
<li><a href="https://one.tonyaldon.com/">one.el</a> - static site generator for Emacs Lisp programmers (<a href="https://news.ycombinator.com/item?id=43256595">HN</a>)</li>
<li><a href="https://www.reddit.com/r/orgmode/comments/1j4ofmv/orgembd_an_emacs_package_for_embedding_various/">org-embd: An Emacs package for embedding various content in Org-mode</a> (<a href="https://www.reddit.com/r/emacs/comments/1j4rb9j/orgembd_an_emacs_package_for_embedding_various/">Reddit</a>)</li>
<li><a href="https://www.reddit.com/r/orgmode/comments/1j427ns/update_orgzettelrefmode_054_improved_highlight/">(update) org-zettel-ref-mode 0.5.4: Improved highlight mechanism and Improved sorting functionality</a></li>
<li><a href="https://github.com/chenyanming/paw_org_protocol">chenyanming/paw_org_protocol: Emacs Org Protocol Factory</a> (<a href="https://www.reddit.com/r/emacs/comments/1j6d9ri/open_source_and_release_paw_org_protocol/">Reddit</a>)</li>
</ul></li>
</ul></li>
<li>Denote:
<ul class="org-ul">
<li><a href="https://baty.net/posts/2025/03/denote-and-howm-sitting-in-a-tree/">Jack Baty: Denote and Howm, sitting in a tree</a></li>
<li><a href="https://baty.net/posts/2025/03/denote-search-a-simple-search-utility-for-denote/">Jack Baty: Denote-search, a simple search utility for Denote</a></li>
<li><a href="https://www.youtube.com/watch?v=u-eFNq8T8LY">Emulating Howm Notes with Denote and Consult - System Crafters Live!</a> (01:39:32)</li>
<li><a href="https://yejun.dev/posts/blogging-using-denote-and-hugo/">Blogging using Denote and Hugo</a> (<a href="https://www.reddit.com/r/emacs/comments/1j4002h/blogging_using_denote_and_hugo/">Reddit</a>)</li>
</ul></li>
<li>Coding:
<ul class="org-ul">
<li><a href="https://amitp.blogspot.com/2025/03/emacs-tree-sitter-custom-highlighting-2.html">Amit Patel: Emacs Tree-sitter custom highlighting, part 2</a></li>
<li><a href="https://amitp.blogspot.com/2025/03/emacs-tree-sitter-custom-highlighting-3.html">Amit Patel: Emacs Tree-sitter custom highlighting, part 3</a></li>
<li><a href="https://andreyor.st/posts/2025-03-10-dynamic-font-lock-for-fennel/">Andrey Listopadov: Dynamic font-lock for Fennel</a></li>
<li><a href="https://www.youtube.com/watch?v=wZldeJ8hUHo">Erlang shell in Emacs</a> (01:19)</li>
</ul></li>
<li>Math:
<ul class="org-ul">
<li><a href="https://github.com/esquellington/LatexInComments">esquellington/LatexInComments: Emacs package to render LaTeX math blocks in code comments as overlays</a> (<a href="https://mastodon.gamedev.place/@ocivitf/114100992495669037">@[email protected]</a>)</li>
</ul></li>
<li>Shells:
<ul class="org-ul">
<li><a href="https://www.masteringemacs.org/article/replacing-tmux-gnu-screen-emacs?utm_source=newsletter&utm_medium=rss">Mickey Petersen: Replacing tmux and GNU screen with Emacs</a> (<a href="https://www.reddit.com/r/emacs/comments/1j4znu5/replacing_tmux_and_gnu_screen_with_emacs/">Reddit</a>)</li>
</ul></li>
<li>Mail, news, and chat:
<ul class="org-ul">
<li><a href="https://baty.net/posts/2025/03/using-gnus-for-email/">Jack Baty: Using Gnus for email</a></li>
<li><a href="https://github.com/seanfarley/message-view-patch">seanfarley/message-view-patch: Colorize patch emails in mu4e and gnus</a> (<a href="https://sigmoid.social/@csantosb/114127941893518375">@[email protected]</a>)</li>
<li><a href="https://irreal.org/blog/?p=12833">Irreal: The Power Of Elfeed</a></li>
<li><a href="https://files.mastodon.social/cache/media_attachments/files/114/110/981/438/426/074/original/0dd33521dd9bb6f6.mp4">twtxt.el update: threads, long feeds, fixes</a> (<a href="https://activity.andros.dev/@andros/statuses/01JNKNAFVCRNAGXQCX3NTXY7RW">@[email protected]</a>)</li>
</ul></li>
<li>Evil mode:
<ul class="org-ul">
<li><a href="https://bicycleforyourmind.com/much_ado_about_emacs_008">Much Ado about Emacs 008 - Bicycle For Your Mind</a> - evil-mode, general</li>
</ul></li>
<li>EXWM:
<ul class="org-ul">
<li><a href="gemini://sdf.org/sinza/log/20250304-still-happy-with-emacs.gmi">gemini://sdf.org/sinza/log/20250304-still-happy-with-emacs.gmi</a> - Emacs, Debian, and Exwm (<a href="https://bitbang.social/@sinza/114106270688543421">@[email protected]</a>)</li>
<li><a href="https://www.youtube.com/watch?v=jYOSHKixtmY">Emacs, czyli edytor tak wszechstronny, że może zostać Window Managerem - „Hakki” | JL 2024</a> (24:23)</li>
</ul></li>
<li>AI:
<ul class="org-ul">
<li><a href="https://i.redd.it/lgvc9l19bgne1.jpeg">DeepSeek, Open Router, Kagi, and Perplexity now supported by chatgpt-shell</a> (<a href="https://www.reddit.com/r/emacs/comments/1j6f7xh/deepseek_open_router_kagi_and_perplexity_now/">Reddit</a>)</li>
<li><a href="https://v.redd.it/b37jdx6p6hne1">Speaking to Claude via Whisper and asking it to write an Emacs function</a> (<a href="https://www.reddit.com/r/emacs/comments/1j6i8e7/speaking_to_claude_via_whisper_and_asking_it_to/">Reddit</a>)</li>
<li><a href="https://emacs.dyerdwelling.family/emacs/20250307133856-emacs--ollama-buddy-version-0-5-1/">James Dyer: Ollama-Buddy V0.5.1 - Session/History/Role Management, Real-Time Token Tracking and More!</a></li>
<li><a href="https://lmno.lol/alvaro/deepseek-open-router-kagi-and-perplexity-join-the-chat">Alvaro Ramirez: DeepSeek, Open Router, Kagi, and Perplexity join the chat</a></li>
<li><a href="https://github.com/demajh/emacs_ai_extensions">demajh/emacs_ai_extensions: AI extensions for Emacs.</a> (<a href="https://www.reddit.com/r/emacs/comments/1j7c8sk/ai_extensions_for_emacs/">Reddit</a>)</li>
<li><a href="https://www.youtube.com/watch?v=-8LZW4K2O7A">What AI chat I currently use in emacs</a> (05:13)</li>
<li><a href="https://www.youtube.com/watch?v=fB3-ie6zs4Y">Aidermacs in Action: Emacs AI Pair Programming w/ Aider & Ediff</a> (02:11, <a href="https://www.reddit.com/r/emacs/comments/1j5j1s9/aidermacs_in_action_emacs_ai_pair_programming_w/">Reddit</a>)</li>
</ul></li>
<li>Community:
<ul class="org-ul">
<li><a href="https://blog.freepackets.net/blog/2025-02-17.emacs/">How I use Emacs</a></li>
</ul></li>
<li>Other:
<ul class="org-ul">
<li><a href="https://baty.net/posts/2025/03/i-went-a-little-nuts-with-remember-mode-in-emacs/">Jack Baty: I went a little nuts with Remember mode in Emacs</a> (<a href="https://www.reddit.com/r/planetemacs/comments/1j3ehpi/jack_baty_i_went_a_little_nuts_with_remember_mode/">Reddit</a>, <a href="https://irreal.org/blog/?p=12826">Irreal</a>)</li>
<li><a href="https://emacsredux.com/blog/2025/03/03/the-role-of-the-escape-key-in-emacs/">The role of the Escape key in Emacs</a> (<a href="https://www.reddit.com/r/emacs/comments/1j2ih60/the_role_of_the_escape_key_in_emacs/">Reddit</a>, <a href="https://irreal.org/blog/?p=12824">Irreal</a>)</li>
<li><a href="https://irreal.org/blog/?p=12822">Irreal: Is Emacs Privacy Friendly?</a></li>
<li><a href="https://github.com/janestreet/ecaml">janestreet/ecaml: Writing Emacs plugin in OCaml</a> (<a href="https://hachyderm.io/@bbatsov/114121757077157757">@[email protected]</a>)</li>
<li><a href="https://handyman5.github.io/posts/solved-terminal-emacs-screen-tearingcorruption-with-unicode-characters/">Solved! Terminal Emacs screen tearing/corruption with Unicode characters | Adam Compton</a></li>
<li><a href="https://www.youtube.com/watch?v=Oz_3F5K0PTU">Plain Text Supremacy With Emacs</a> (02:46) - Download a transcript from youtube and transform it using jq</li>
</ul></li>
<li>Emacs development:
<ul class="org-ul">
<li>emacs-devel:
<ul class="org-ul">
<li><a href="https://lists.gnu.org/archive/html/emacs-devel/2025-02/msg00851.html">What Questions are Worth Asking Emacs-Newcomers?</a></li>
<li><a href="https://lists.gnu.org/archive/html/emacs-devel/2025-02/msg00302.html">File sharing (macOS and GNU/Linux)</a> - continued discussion</li>
<li><a href="https://lists.gnu.org/archive/html/emacs-devel/2025-02/msg01243.html">context-menu-mode and S-<down-mouse-1></a></li>
<li><a href="https://lists.gnu.org/archive/html/emacs-devel/2025-03/msg00563.html">Re: master 02681b0fbf0 1/2: Don't claim that xftfont is being considered</a> - Xft vs Cairo</li>
<li><a href="https://lists.gnu.org/archive/html/emacs-devel/2025-03/msg00537.html">Re: master a5f8ce9f1ea: Re-port to 32-bit systems without alignment prim</a> - Restoring Sun C 5.8 support?</li>
<li><a href="https://lists.gnu.org/archive/html/emacs-devel/2025-03/msg00271.html">Re: alert.el status?</a> - Help wanted to get alert.el working with Android</li>
<li><a href="https://lists.gnu.org/archive/html/emacs-devel/2025-03/msg00261.html">Treesit ranges and embedding for GNU LilyPond</a> - starting work on treesit-based major mode for LilyPond, Scheme-related challenges</li>
</ul></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=ce03bf252ae9bff28a6def163cb3f4fa102e691a">Make second arg to defvar-local optional</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=57cef07710d91988b6332ad3ed2f5c4b4b371585">Restore find-function-mode-map (bug#76700)</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=203747b87fbf976fda887d0652b05685447b8d65">Allow changing theme settings without reloading it</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=00e284fc52b44fc3cb435a5d17ce58af1b753a34">VC: New hook to strip CVS template lines when committing</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=c82495dea767334c4b4423cf0358c76ca1edc4b4">Let repeated windmove override motion restrictions interactively</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=0972a54a5ac52f731c0ea7c8538c8f3b7b6b36b4">Add static-when, static-unless like static-if</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=efd483cf0ecde3b0545a9eb39cc3fa9483fad76c">mouse-face properties on tab-bar tab captions (bug#76394)</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=c1ddf612d592fcaa3fae66b24933e2aab78406f1">Add shell-mode bookmark support for local and remote shells (bug#65039)</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=6aa60038ee999d25184a639ce0ac76b614e3afb6">Add new user option to exclude projects from being remembered</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=679966b5a091106d37a2e2e769d9e87f3fb92a63">New user option checkdoc-arguments-missing-flag</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=7ba62284137ba162df16f55c75bda4d56da7dfe7">Make byte-compile-cond-use-jump-table obsolete</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=3a8ce5ac9c4652eb87bf0bce835d82083061a28b">Add ns-click-through option to control activation click handling</a></li>
<li><a href="https://git.savannah.gnu.org/cgit/emacs.git/commit/etc/NEWS?id=5dd8b7e75259663415523f3ebe35ba2f97b5b103">Don't accept strings in package-(install|upgrade)</a></li>
</ul></li>
<li>New packages:
<ul class="org-ul">
<li><a target="_blank" href="http://melpa.org/#/aidermacs">aidermacs</a>: AI pair programming with Aider (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/amber-glow-theme">amber-glow-theme</a>: A warm and inviting theme (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/berry-theme">berry-theme</a>: A vibrant berry-colored theme (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/bilibili">bilibili</a>: Watch videos of BiliBili (哔哩哔哩) in org mode (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/c2-mode">c2-mode</a>: Major mode for C2 programming language (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/calle24">calle24</a>: Emacs Toolbar Support for SF Symbols (MELPA)</li>
<li><a target="_blank" href="https://elpa.gnu.org/packages/cond-star.html">cond-star</a>: Extended form of `cond' construct (GNU ELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/denote-journal-capture">denote-journal-capture</a>: Better Integration for Denote Journal and Org Capture (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/denote-project-notes">denote-project-notes</a>: Link Denote notes to a project (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/ember-twilight-theme">ember-twilight-theme</a>: Ember Twilight theme (MELPA)</li>
<li><a target="_blank" href="https://elpa.gnu.org/packages/gnome-dark-style.html">gnome-dark-style</a>: Sync theme with GNOME color-scheme (GNU ELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/marron-gold-theme">marron-gold-theme</a>: A rich marron-gold theme (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/noether">noether</a>: A modeline which plays hide and seek (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/ox-beamer-lecture">ox-beamer-lecture</a>: Beamer Lecture Back-End for Org Export Engine (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/roseline-theme">roseline-theme</a>: Roseline theme (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/sexy-theme">sexy-theme</a>: Sexy color theme (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/sixcolors-theme">sixcolors-theme</a>: Just another theme (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/solarized-gruvbox-theme">solarized-gruvbox-theme</a>: Solarized Gruvbox theme (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/spider-man-theme">spider-man-theme</a>: A Vibrant Spider-Man Inspired Theme (MELPA)</li>
<li><a target="_blank" href="http://melpa.org/#/thankful-eyes-theme">thankful-eyes-theme</a>: Theme for color blindness and visual impairments (MELPA)</li>
</ul></li>
</ul>
<p>
Links from <a href="https://www.reddit.com/r/emacs">reddit.com/r/emacs</a>, <a href="https://www.reddit.com/r/orgmode">r/orgmode</a>, <a href="https://www.reddit.com/r/spacemacs">r/spacemacs</a>, <a href="https://www.reddit.com/r/planetemacs">r/planetemacs</a>, <a href="https://mastodon.social/tags/emacs">Mastodon #emacs</a>, <a href="https://bsky.app/hashtag/emacs">Bluesky #emacs</a>, <a href="https://hn.algolia.com/?query=emacs&sort=byDate&prefix&page=0&dateRange=all&type=story">Hacker News</a>, <a href="https://lobste.rs/search?q=emacs&what=stories&order=newest">lobste.rs</a>, <a href="https://programming.dev/c/emacs?dataType=Post&page=1&sort=New">programming.dev</a>, <a href="https://lemmy.world/c/emacs">lemmy.world</a>, <a href="https://lemmy.ml/c/emacs?dataType=Post&page=1&sort=New">lemmy.ml</a>, <a href="https://planet.emacslife.com">planet.emacslife.com</a>, <a href="https://www.youtube.com/playlist?list=PL4th0AZixyREOtvxDpdxC9oMuX7Ar7Sdt">YouTube</a>, <a href="http://git.savannah.gnu.org/cgit/emacs.git/log/etc/NEWS">the Emacs NEWS file</a>, <a href="https://emacslife.com/calendar/">Emacs Calendar</a>, and <a href="https://lists.gnu.org/archive/html/emacs-devel/2025-03">emacs-devel</a>. Thanks to Andrés Ramírez for emacs-devel links. Do you have an Emacs-related link or announcement? Please e-mail me at <a href="mailto:[email protected]">[email protected]</a>. Thank you!</p>
</div>
<div id="postamble" class="status">
<style type="text/css">
.back-to-top {
position: fixed;
bottom: 2em;
right: 0px;
text-decoration: none;
color: #000000;
background-color: rgba(235, 235, 235, 0.80);
font-size: 12px;
padding: 1em;
display: none;
}
.back-to-top:hover {
background-color: rgba(135, 135, 135, 0.50);
}
</style>
<div class="back-to-top">
<a href="#top">Back to top</a> | <a href="mailto:[email protected]">E-mail me</a>
</div>
<script type="text/javascript">
var offset = 220;
var duration = 500;
jQuery(window).scroll(function() {
if (jQuery(this).scrollTop() > offset) {
jQuery('.back-to-top').fadeIn(duration);
} else {
jQuery('.back-to-top').fadeOut(duration);
}
});
</script>
</div>
</body>
</html>