frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How animals communicate to work together across species boundaries

https://phys.org/news/2026-06-animals-communicate-species-boundaries.html
1•the-mitr•1m ago•0 comments

GLM-5.2 Beat Fable 5 at Website Design

https://twitter.com/Designarena/status/2068030598028087788
2•tosh•5m ago•0 comments

TOML Schema

https://toml-schema.org/
1•pramodbiligiri•11m ago•0 comments

Show HN: Make every bug perfectly reproducible

https://workers.io/
2•chaitanyya•12m ago•0 comments

Coding a Brick Tower

https://www.youtube.com/watch?v=DAMiS2PGTEE
1•dvrp•18m ago•0 comments

Show HN: Self-hostable academic paper manager (linxiv)

https://github.com/linxiv-dev/linXiv
2•jeuribe•18m ago•0 comments

Brain-computer interface trials are taking off

https://www.technologyreview.com/2026/06/19/1139270/brain-computer-interface-trials-are-taking-off/
1•joozio•25m ago•0 comments

Ask HN: Will we start seeing tools for LLM use?

1•bonigv•28m ago•1 comments

Federal regulators order grid operators speed power2energy-hungry AI datacenters

https://apnews.com/article/power-electricity-ai-plants-data-centers-grid-506e3d206871111f15c3c62f...
1•latentframe•35m ago•0 comments

Show HN: A Context Brain for You (and Your AI Agent)

https://gcontext.ai
1•bsampera•41m ago•0 comments

GitHub Copilot and Dev Productivity: An Observational Dose-Response Analysis

https://arxiv.org/abs/2606.00438
1•theanonymousone•42m ago•0 comments

Britain Learned and Unlearned Nuclear

https://worksinprogress.co/issue/how-the-uk-learned-and-unlearned-nuclear/
2•leonidasrup•45m ago•0 comments

Möbius Chess

https://mchess.io/v/m%C3%B6bius/
1•modinfo•46m ago•0 comments

Show HN: Passport Stamp Archive, browse real border stamps from around the world

https://ajin.im/is/building/stamps/
4•poppypetalmask•48m ago•0 comments

Doom Composer Bobby Prince Has Died

https://www.engadget.com/2198098/doom-composer-bobby-prince-has-died/
2•naves•52m ago•0 comments

Open source alternative to brain by perplexity

https://github.com/raphaelwkago-sketch/rudi
1•w4mwati•54m ago•0 comments

Show HN: Autonomy – Self-Harness/Self-Directed AI Agent Core Under Development

https://autonomy-landing-page.vercel.app/
2•agentic_vector•55m ago•0 comments

How R&D Affects Absorptive Capacity

https://camerongordon0.substack.com/p/how-r-and-d-affects-absorptive-capacity
1•iciac•1h ago•0 comments

How Does Bluetooth Work?

https://www.bbc.co.uk/programmes/w3ct8k71
3•vismit2000•1h ago•0 comments

Show HN: Pytest-tia – run only the tests your Git diff affects, with receipts

https://github.com/breadMSA/pytest-tia
2•BreadWasEaten•1h ago•0 comments

I created an open source app to check if a photo is from an AI or a Camera

https://github.com/Wavesonics/C2PAVerify
2•Wavesonics•1h ago•1 comments

Is It Possible to Block Childrens' Access to Social Media? [video]

https://www.youtube.com/watch?v=2jJeSgO_MGo
2•dev_hugepages•1h ago•0 comments

How Russian President Vladimir Putin plans to live forever

https://www.vox.com/podcasts/491360/vladimir-putin-live-forever-26-billion-cryo-pigs-longevity-guru
6•thunderbong•1h ago•1 comments

Ask HN: Using OPA/Rego to secure MCP tool execution. Does it make sense?

4•wmolino•1h ago•0 comments

Show HN: AI Voice Generator for Creators

https://speakora.io/
2•laimingj•1h ago•0 comments

I made SHORT SQUEEZE, a finance movie trailer created with AI

https://www.instagram.com/reel/DZy5nOKN7Pz/
2•pyipeng•1h ago•0 comments

Mastodon 4.6 Released

https://lwn.net/Articles/1078466/
4•daesorin•1h ago•0 comments

Voxtral Realtime WebGPU – A Hugging Face Space by Mistralai

https://huggingface.co/spaces/mistralai/Voxtral-Realtime-WebGPU
2•fagnerbrack•1h ago•0 comments

Release 4.0.0 · HuggingFace/Transformers.js

https://github.com/huggingface/transformers.js/releases/tag/4.0.0
2•fagnerbrack•1h ago•0 comments

Big tech engineers need big egos

https://www.seangoedecke.com/big-tech-needs-big-egos/
4•fagnerbrack•1h ago•0 comments
Open in hackernews

The Emacs Widget Toolkit

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

Comments

spit2wind•1y 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•1y 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•1y ago
Somewhat off topic, but I love all the references to Led Zeppelin’s incredible song, Stairway to Heaven.
gudzpoz•1y 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•1y 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.

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

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

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

Page Not Found

Sorry, this page does not exist.

You can head back to the homepage.

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

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

robobro•1y ago
Why did you delete the page?
appetrosyan•1y ago
Didn't. I migrated to `hugo` and it trims off the `.html` at the end. The permalink is the same.
matt-attack•1y 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 ?