From 18edf5bf828497e0b002557dbdeb97f914fb1d26 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 1 Feb 2026 21:30:13 +0200 Subject: Update content for html --- about/resources.html | 200 ++++++++++----------- gemfeed/.tmux-edit-send.HGCGOt.md | 1 + ...tmux-popup-editor-for-cursor-agent-prompts.html | 18 ++ gemfeed/atom.xml | 20 ++- index.html | 2 +- uptime-stats.html | 2 +- 6 files changed, 140 insertions(+), 103 deletions(-) create mode 100644 gemfeed/.tmux-edit-send.HGCGOt.md diff --git a/about/resources.html b/about/resources.html index 91b7294f..8bac8f0e 100644 --- a/about/resources.html +++ b/about/resources.html @@ -50,112 +50,112 @@ In random order:


Technical references



I didn't read them from the beginning to the end, but I am using them to look up things. The books are in random order:


Self-development and soft-skills books



In random order:


Here are notes of mine for some of the books

@@ -164,31 +164,31 @@ Some of these were in-person with exams; others were online learning lectures only. In random order:


Technical guides



These are not whole books, but guides (smaller or larger) which I found very useful. in random order:


Podcasts



@@ -197,33 +197,33 @@ In random order:


Podcasts I liked



I liked them but am not listening to them anymore. The podcasts have either "finished" (no more episodes) or I stopped listening to them due to time constraints or a shift in my interests.


Newsletters I like



@@ -231,16 +231,16 @@

Magazines I like(d)


@@ -248,10 +248,10 @@ This is a mix of tech I like(d). I may not be a current subscriber, but now and then, I buy an issue. In random order:


Formal education



diff --git a/gemfeed/.tmux-edit-send.HGCGOt.md b/gemfeed/.tmux-edit-send.HGCGOt.md new file mode 100644 index 00000000..c056abcc --- /dev/null +++ b/gemfeed/.tmux-edit-send.HGCGOt.md @@ -0,0 +1 @@ +to the blog post ./2026-02-02-tmux-popup.....tpl can you also add an ascii diagram of the workflow of the tool diff --git a/gemfeed/2026-02-02-tmux-popup-editor-for-cursor-agent-prompts.html b/gemfeed/2026-02-02-tmux-popup-editor-for-cursor-agent-prompts.html index 9979c31d..fba191d1 100644 --- a/gemfeed/2026-02-02-tmux-popup-editor-for-cursor-agent-prompts.html +++ b/gemfeed/2026-02-02-tmux-popup-editor-for-cursor-agent-prompts.html @@ -24,6 +24,7 @@
  • Why I built this
  • What it is
  • How it works (overview)
  • +
  • ⇢ ⇢ Workflow diagram
  • Challenges and small discoveries
  • Test cases (for a future rewrite)
  • (Almost) works with any editor (or any TUI)
  • @@ -70,6 +71,23 @@ bind-key e run-shell -b "tmux display-message -p '#{pane_id}' \"~/scripts/tmux-edit-send /tmp/tmux-edit-target-#{client_pid}\""
    +

    Workflow diagram


    +
    +This is the whole workflow:
    +
    +
    +┌────────────────────┐   ┌───────────────┐   ┌─────────────────────┐   ┌─────────────────────┐
    +│ Cursor input box   │-->| tmux keybind  │-->| popup runs script   │-->| capture + prefill   │
    +│ (prompt pane)      │   │ prefix + e    │   │ tmux-edit-send      │   │ temp file           │
    +└────────────────────┘   └───────────────┘   └─────────────────────┘   └─────────────────────┘
    +                                                                                 |
    +                                                                                 v
    +┌────────────────────┐   ┌────────────────────┐   ┌────────────────────┐   ┌────────────────────┐
    +│ Cursor input box   │<--| send-keys back     |<--| close editor+popup  |<--| edit temp file     |
    +│ (prompt pane)      │   │ to original pane   │   │ (exit $EDITOR)      │   │ in $EDITOR         │
    +└────────────────────┘   └────────────────────┘   └────────────────────┘   └────────────────────┘
    +
    +
    And this is how it looks like after sending back the text to the Cursor Agent's input:

    Prefilled prompt text
    diff --git a/gemfeed/atom.xml b/gemfeed/atom.xml index 8960e1cf..7d0a7d2d 100644 --- a/gemfeed/atom.xml +++ b/gemfeed/atom.xml @@ -1,6 +1,6 @@ - 2026-02-01T21:02:02+02:00 + 2026-02-01T21:29:22+02:00 foo.zone feed To be in the .zone! @@ -31,6 +31,7 @@
  • Why I built this
  • What it is
  • How it works (overview)
  • +
  • ⇢ ⇢ Workflow diagram
  • Challenges and small discoveries
  • Test cases (for a future rewrite)
  • (Almost) works with any editor (or any TUI)
  • @@ -77,6 +78,23 @@ bind-key e run-shell -b "tmux display-message -p '#{pane_id}' \"~/scripts/tmux-edit-send /tmp/tmux-edit-target-#{client_pid}\""
    +

    Workflow diagram


    +
    +This is the whole workflow:
    +
    +
    +┌────────────────────┐   ┌───────────────┐   ┌─────────────────────┐   ┌─────────────────────┐
    +│ Cursor input box   │-->| tmux keybind  │-->| popup runs script   │-->| capture + prefill   │
    +│ (prompt pane)      │   │ prefix + e    │   │ tmux-edit-send      │   │ temp file           │
    +└────────────────────┘   └───────────────┘   └─────────────────────┘   └─────────────────────┘
    +                                                                                 |
    +                                                                                 v
    +┌────────────────────┐   ┌────────────────────┐   ┌────────────────────┐   ┌────────────────────┐
    +│ Cursor input box   │<--| send-keys back     |<--| close editor+popup  |<--| edit temp file     |
    +│ (prompt pane)      │   │ to original pane   │   │ (exit $EDITOR)      │   │ in $EDITOR         │
    +└────────────────────┘   └────────────────────┘   └────────────────────┘   └────────────────────┘
    +
    +
    And this is how it looks like after sending back the text to the Cursor Agent's input:

    Prefilled prompt text
    diff --git a/index.html b/index.html index ffefa209..eadb47ee 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@

    Hello!



    -This site was generated at 2026-02-01T21:02:02+02:00 by Gemtexter
    +This site was generated at 2026-02-01T21:29:22+02:00 by Gemtexter

    Welcome to the foo.zone!

    diff --git a/uptime-stats.html b/uptime-stats.html index 29394fd1..f9a674f4 100644 --- a/uptime-stats.html +++ b/uptime-stats.html @@ -13,7 +13,7 @@

    My machine uptime stats



    -This site was last updated at 2026-02-01T21:02:02+02:00
    +This site was last updated at 2026-02-01T21:29:22+02:00

    The following stats were collected via uptimed on all of my personal computers over many years and the output was generated by guprecords, the global uptime records stats analyser of mine.

    -- cgit v1.2.3