frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Covered Models (Claude.com)

https://support.claude.com/en/articles/15425695-covered-models
1•wglb•48s ago•0 comments

Attention is all you need: Rohan Kumar on using social media for fun and profit

https://sfalexandria.com/posts/rohans-attention/
1•wahnfrieden•2m ago•0 comments

The End of the Coder?

https://cacm.acm.org/news/the-end-of-the-coder/
3•pseudolus•4m ago•0 comments

Are insecure code completions in PyCharm a vulnerability?

https://sethmlarson.dev/are-insecure-code-completions-a-vulnerability
1•12_throw_away•5m ago•0 comments

Fruit Machine (Homosexuality Test)

https://en.wikipedia.org/wiki/Fruit_machine_(homosexuality_test)
1•thunderbong•9m ago•0 comments

Anthropic's Fable Jailbreak (Circumvent safety nets)

https://github.com/0xSufi/fable-jailbreak/
1•binyu•10m ago•0 comments

How AI Agents Reshape Knowledge Work

https://research.perplexity.ai/articles/how-ai-agents-reshape-knowledge-work
1•gmays•16m ago•0 comments

Ask HN: Releasing code under AGPLv3, but want to block LLM reconstruction?

3•zionsati•17m ago•0 comments

Become a Happier Person

https://www.psychologytoday.com/gb/blog/self-made/202606/become-a-happier-person
2•geoffbp•18m ago•0 comments

Show HN: Headroom – Claude Code usage limits, live in the macOS menu bar

https://headroom.walls.sh/
1•patwalls•23m ago•0 comments

Pynder – crowdsourcing and tracking scam call data

https://pynder.net/
1•schwwaaa•25m ago•0 comments

Show HN: Built a public demo to explore SpaceX's IPO filing using multimodal RAG

https://www.calypso.so/demos/spacex-ipo-filing
3•gabamnml•25m ago•1 comments

I Built a Hazel Alternative for Mac with AI Rule Generation

https://medium.com/@jamal_davis/i-built-a-hazel-alternative-for-mac-with-ai-rule-generation-heres...
1•Gotoorbitapp•27m ago•0 comments

Auto-geo – open-source CLI for GEO that helps get your brand mentioned by LLMs

https://github.com/shadowresearch/auto-geo
1•jessen-gibbs•32m ago•1 comments

The Parable of the Talents

https://slatestarcodex.com/2015/01/31/the-parable-of-the-talents/
1•shadow28•35m ago•0 comments

Manus registered my domain in their own name and won't release it

1•AeonCa•36m ago•1 comments

Co-Existence and the End of Co-Intelligence

https://www.oneusefulthing.org/p/co-existence-and-the-end-of-co-intelligence
1•paulpauper•36m ago•0 comments

The Labor Share Fell. So What?

https://marginalrevolution.com/marginalrevolution/2026/06/the-labor-share-fell-so-what.html
1•paulpauper•36m ago•0 comments

I've Solved Content Discovery Conditions May Apply

https://philosophybear.substack.com/p/ive-solved-content-discovery-conditions
1•paulpauper•37m ago•0 comments

Windows 11 sucks slightly less due to June update

https://www.engadget.com/2191909/windows-11-sucks-slightly-less-now-thanks-to-a-june-update/
7•NordStreamYacht•43m ago•0 comments

China-linked operatives used ChatGPT to influence data centers debate

https://www.axios.com/2026/06/10/openai-china-ai-data-center-tariffs-chatgpt
3•alephnerd•44m ago•1 comments

The Social Reckoning (official teaser trailer) [video]

https://www.youtube.com/watch?v=gM4LkaXwGuY
1•Fricken•48m ago•0 comments

WebODM: The Missing Guide

https://webodmbook.com
1•pierotofy•48m ago•0 comments

Plants Could Be Used to Grow Medicines in Space

https://today.ucsd.edu/story/plants-could-be-used-to-grow-medicines-in-space-study-shows
1•gmays•54m ago•0 comments

Starlink: The Constellation, Live

https://sheets.works/data-viz/starlink
1•jonbaer•55m ago•0 comments

Ask HN: Someone started a company same name, same city, industry

1•bxclltkfz•55m ago•0 comments

AdBreak – Jailbreaking the Kindle

https://kindlemodding.org/jailbreaking/AdBreak/
1•nivethan•56m ago•0 comments

The First 100 Wikipedia Pages

https://en.wikipedia.org/wiki/Wikipedia:First_100_pages
2•bananamogul•57m ago•2 comments

Return on Tokens (Rot)

https://www.notboring.co/p/return-on-tokens-rot
1•thedreammachine•58m ago•0 comments

Stop the Surveillance State [pdf]

https://epic.org/wp-content/uploads/2026/04/EPIC-Stop-the-Surveillance-State-5.pdf
1•Cider9986•58m 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 ?