frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stanag 5516M-STD-6016 TADIL-J J-Series schema reconstruction from public docs

https://liotier.github.io/Ersatz-MIL-STD-6016/
1•liotier•48s ago•0 comments

Want to Win a New CanaKit Raspberry Pi 5 Starter Kit Pro?

1•pgedge_postgres•2m ago•0 comments

Prompt engineering vs. context engineering: a practical guide for AI builders

https://memgraph.com/blog/prompt-engineering-vs-context-engineering
1•taubek•3m ago•0 comments

Solder Ninja Pen: USB-powered soldering iron compatible with Weller RT tips

https://www.crowdsupply.com/sitron-labs/solder-ninja-pen
1•oxplot•10m ago•0 comments

OSS Document Scanner

https://www.akylas.fr/OSS-DocumentScanner/
1•farfromrefuge•12m ago•1 comments

Line: Language with Intuitive and Natural Expression

https://github.com/Qc-17/LINE
1•Qc17•13m ago•1 comments

40 Years of Wireless Evolution Leads to a Smart, Sensing Network

https://spectrum.ieee.org/telecom-history-1g-to-6g
2•canarymark•14m ago•0 comments

Analysis → Implementation → Reflection – a practical technique for agentic AI

https://blog.scottlogic.com/2026/03/05/analysis-implementation-reflection-practical-techniques.html
1•ColinEberhardt•16m ago•0 comments

Phoenix Arizona is likely to see its earliest 100f(38c) day on record, in March

https://www.cnn.com/2026/03/12/weather/record-heat-west-eastern-cold-whiplash
3•b33f•17m ago•0 comments

Automating the Ticket-to-PR Cycle for Power Platform Code Apps with Azure DevOps

https://agent22.sh/blog/automating-power-platform-code-app-development-with-agent22/
1•cubixle•17m ago•0 comments

Hacking the Job Interview

https://xdg.me/hacking-the-job-interview/
1•ZacnyLos•18m ago•0 comments

"Agentic" is only a marketing term

https://www.yourbroadideas.com/agentic-is-only-a-marketing-term
4•mcauldronism•19m ago•0 comments

Ask HN: Got cancer, a new job,new boss in less than a year What do I do now?

2•Goleniewski•19m ago•0 comments

Gaming on the New MacBook Neo [video]

https://www.youtube.com/watch?v=uOe-Ock4pnw
2•throwaway270925•20m ago•1 comments

Ask HN: How are remote engineers outside US/EU landing paid startup contracts?

1•valentinza•20m ago•0 comments

Show HN: Wardstone – Prompt injection and jailbreak detection API

https://wardstone.ai
1•jaaackrl•21m ago•0 comments

Show HN: Who watches the watchmen? A public decision track record for AI agents

https://www.agent-smith.org/
2•hleichsenring•21m ago•0 comments

Selling Selfcontext.com Domain

https://selfcontext.com/
1•AVancans•24m ago•0 comments

The Controllability Trap: A Governance Framework for Military AI Agents

https://arxiv.org/abs/2603.03515
1•zvr•27m ago•0 comments

Each time an AI was given a task to invent best-seller web app

https://spireason.neocities.org/apples
1•tvali•30m ago•1 comments

YC Startup School India

https://events.ycombinator.com/yc-sus-india
1•twapi•31m ago•0 comments

Fork: One CLI to Build Firmware for Any MCU

https://github.com/TareqRafed/fork
1•grog6•34m ago•0 comments

I mass-replaced FFmpeg's MJPEG decoder with Claude Code – 4K LOC, 8% the speed

https://github.com/0xD8C4A475/liberated-mjpeg
2•istenesimi•35m ago•2 comments

Need feedback to build a product for founders to track decision-making

1•shreyast6•36m ago•0 comments

The AI-Powered Kubernetes IDE

https://github.com/koreide/Kore
2•eladbash•37m ago•3 comments

AI toys for children misread emotions and respond inappropriately

https://www.bbc.co.uk/news/articles/clyg4wx6nxgo
6•fredley•37m ago•1 comments

9B parameter coding agent model fine-tuned on top of Qwen3.5-9B

https://huggingface.co/Tesslate/OmniCoder-9B
2•brainless•37m ago•0 comments

Searching for a Well Designed API

1•willx86•41m ago•2 comments

Qualcomm exploit chain brings bootloader unlocking freedom to Android flagships

https://www.androidauthority.com/qualcomm-snapdragon-8-elite-gbl-exploit-bootloader-unlock-3648651/
2•ledoge•41m ago•1 comments

Things I do when I'm writing code that don't look like writing code

https://danq.me/2026/03/06/writing-code-is-not-the-bottleneck/
1•speckx•44m ago•0 comments
Open in hackernews

The Emacs Widget Toolkit

https://appetrosyan.github.io/posts/emacs-widget.html
48•signa11•10mo ago

Comments

spit2wind•10mo ago
There's also the Emacs Widget Library[1] (which I hoped this posted would be about). It's a plain text widget library that's quite powerful. Unfortunately (and surprisingly for Emacs), the documentation for it could use some love.

My understanding of the Widget Library is that it attaches various keywords and plists to a symbol which is considered the "widget". The library otherwise consists of functions that expect certain keywords on the "widget" symbol in order to perform actions or to be drawn on the screen.

The challenge is, the documentation doesn't clearly lay out what the keyword API is. This makes it hard to compose widgets in ways beyond what's shown in the docs.

[1] https://www.gnu.org/software/emacs/manual/html_mono/widget.h...

appetrosyan•10mo ago
The idea is that we extend that and give it direct access to SDL. Such that we can e.g. run a shader in the buffer background, or allow you to have floating windows (frames) interacting with each other.

I am very aware of the advantages conferred by TUI and I seek to expand those to the GUI; not dumb-down to the level of modern GUI toolkits (that to be fair are dealing with a completely different problem). Hopefully, this can lead to some ideas being easier to implement from within Emacs.

_mlbt•10mo ago
Somewhat off topic, but I love all the references to Led Zeppelin’s incredible song, Stairway to Heaven.
gudzpoz•10mo ago
Personally, and contrary to the article, I do prefer Emacs's plain text widgets over more "GUI-like" ones. Plain text widgets minimize the differences between TUI and GUI Emacs and also inherently offer text selection, searching, copying, and pasting, which nicely integrates with Emacs. I mean, not many GUI frameworks let you place a cursor within a button and select its text, do they? I believe this is a unique advantage of text-based widgets: while other GUI applications require a dedicated mechanism for searching through their settings, text-based widgets allow you to use any text-searching packages to perform these actions.

Reading through the article, the author seems to be hoping for a pure GUI approach with Emacs-like navigation mechanisms, but I am not convinced that this can be as flexible as text-based widgets. However, for packages used exclusively within a GUI environment (like el-easydraw [1], which relies quite heavily on SVG-based widgets), it would be nice to have a dedicated GUI widget library.

(There was a discussion on Reddit about this a week ago [2], and I saw some comments defending GTK and PGTK that might be worth reading.)

[1] https://github.com/misohena/el-easydraw/

[2] https://www.reddit.com/r/emacs/comments/1kcgwme/the_emacs_wi...

appetrosyan•10mo ago
Author of the article.

This is what I was referring to when I talked about "rich verbs".

Many people feel that way. The idea here is not to tell you that you're wrong, but understand what you want and do it better on the GUI side. TUIs can do a lot and we should recognise their benefits. GUIs can do that too, and can sometimes do better things.

The text-based widgets done graphically do the trick. We can add stuff that can't be done in a TUI and see if they give you anything useful. If it can be done with text widgets means that it can be done in principle. GTK can't do it, and that's why I'm leaving it behind.

> (There was a discussion on Reddit about this a week ago [2], and I saw some comments defending GTK and PGTK that might be worth reading.)

The author of those comments abused their power on reddit. I will not get into the weeds, just say that I'd be happy to respond to the critique presented here in good faith.

robobro•10mo ago
Why did you delete the page?
appetrosyan•10mo ago
Didn't. I migrated to `hugo` and it trims off the `.html` at the end. The permalink is the same.
matt-attack•10mo ago
I agree and only use emacs in the console and love it. With the advent of lsp modes and real time typescript and linting it’s fantastic. But one thing I don’t like about the console is when LSP mode is giving you an in-line error on the right side of the terminal it’s wrapped and beautifully interspersed amongst your code, but it’s impossible to select multi line errors in order to paste into tools like ChatGPT. Since selecting the error, also selects your code on the left side.

Anyone have a good solution to this ?

LargoLasskhyfv•10mo ago
PSA: Use The Lucid Toolkit https://irreal.org/blog/?p=12672

https://old.reddit.com/r/emacs/comments/1hlj04t/emacs_using_...

appetrosyan•10mo ago
That's the best thing to do for the moment.
robobro•10mo ago
404

Page Not Found

Sorry, this page does not exist.

You can head back to the homepage.

appetrosyan•10mo ago
Hi. I just migrated my blog to Hugo yesterday. The correct link is:

https://appetrosyan.github.io/posts/emacs-widget/