memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit 4530844c7551d906768487aeb81b338ec857e616
parent c37f83c746bcaa46b3f2a218ac85fe0b28a3c2ae
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Sat, 20 Jul 2019 19:31:38 +0200

Note down meta-itches

I.e. itches started from scratching other itches.

Diffstat:
MREADME.md | 2+-
Aitches/emacs/development.org | 32++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -1,5 +1,5 @@ # Peniblec's Memory Leaks -## still reachable: 8646 words in 21 pages +## still reachable: 8765 words in 22 pages Hi! I am a software engineer interested in [a bunch of things]. diff --git a/itches/emacs/development.org b/itches/emacs/development.org @@ -0,0 +1,32 @@ +Stuff that could make work on Emacs itself more smooth. + +* Changelog +** action-stamps +I don't know any function to + +1. generate them from a Git commit, a *vc-change-log* buffer… +2. convert them back to a Git commit, a *vc-diff* buffer… + +They can almost be generated with: + +#+BEGIN_SRC sh +git show --no-patch \ + --date=format:"%FT%T%z" \ + --format=format:"%ad!%ae" +#+END_SRC + +Except that [[https://tools.ietf.org/html/rfc3339][RFC3339]] says: + +#+BEGIN_QUOTE + time-numoffset = ("+" / "-") time-hour ":" time-minute +#+END_QUOTE + +While ~%z~ yields "+hhmm" or "-hhmm". Also [[http://esr.ibiblio.org/?p=3872][ESR wants Zulu time]]. + +See bug#20609. + +* Bug tracker +** Asynchronous client +It would be wonderful if ~debbugs-gnu~ and ~debbugs-gnu-search~ used +their own thread/process to wait & process the server's response, +instead of forcing me to twiddle my thumbs for minutes.