frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Tax Nerd Who Bet His Life Savings Against DOGE

https://www.wsj.com/finance/investing/the-tax-nerd-who-bet-his-life-savings-against-doge-6b59eda2
1•pavel_lishin•15s ago•0 comments

Show HN: Ansible TUI – a zero-dependency terminal UI for running playbooks

https://github.com/congzhangzh/ansible-tui
1•congzhangzh•51s ago•0 comments

Building front end UIs with Codex and Figma

https://developers.openai.com/blog/building-frontend-uis-with-codex-and-figma/
1•davidbarker•57s ago•0 comments

Show HN: A Write Barrier That Blocks Structural Collapse in LLM Reasoning

https://github.com/PersistentVlad/persistent-reasoning-architecture/tree/main/appendix/A2_hierogl...
1•persistentVlad•3m ago•1 comments

DMS-100.net: The SL-100 Story

http://www.dms-100.net/telephony/nortel/dms-100/story/
1•john_strinlai•6m ago•0 comments

Show HN: Talkatui – WWE style live commentary for your AI coding sessions

https://github.com/vignesh07/talkatui
1•eigen-vector•7m ago•0 comments

Interview with Øyvind Kolås, GIMP developer

https://www.gimp.org/news/2026/02/22/%C3%B8yvind-kol%C3%A5s-interview-ww2017/
2•ibobev•7m ago•0 comments

Ask HN: Is LLM training infra still broken enough to build a company around?

2•harsh020•7m ago•1 comments

New York sues Valve for enabling "illegal gambling" with loot boxes

https://arstechnica.com/gaming/2026/02/new-york-sues-valve-for-enabling-illegal-gambling-with-loo...
2•strongpigeon•8m ago•0 comments

Hyperbolic Versions of Latest Posts

https://www.johndcook.com/blog/2026/02/25/hyperbolic-versions-of-latest-posts/
1•ibobev•8m ago•0 comments

Anthropic acquires Vercept to advance Claude's computer use capabilities

https://www.anthropic.com/news/acquires-vercept
2•tzury•9m ago•0 comments

Danske Bank adjusts the organisation with role redundancies

https://danskebank.com/news-and-insights/news-archive/press-releases/2026/pr26022026
1•janisz•10m ago•0 comments

How AI skills are quietly automating my workday

https://medium.com/@ricardskrizanovskis/how-ai-skills-are-quietly-automating-my-workday-220a1b7b4707
3•rkrizanovskis•11m ago•1 comments

DeepSeek withholds latest AI model V4 from US chipmakers including Nvidia

https://www.business-standard.com/technology/tech-news/deepseek-withholds-latest-ai-model-v4-from...
2•iamnothere•16m ago•0 comments

Exercise-induced activation of steroidogenic factor-1 neurons improves endurance

https://www.cell.com/neuron/fulltext/S0896-6273(25)00989-4
2•PaulHoule•18m ago•0 comments

The Linux Memory Manager

https://nostarch.com/linux-memory-manager
5•teleforce•19m ago•0 comments

Fueling Open Source with Vibes and Money

https://openpath.quest/2026/fueling-open-source-with-vibes-and-money/
4•whit537•20m ago•0 comments

How to Build Your Own Quantum Computer

https://physics.aps.org/articles/v19/24
2•bikenaga•20m ago•0 comments

Show HN: Open Graph Tag Checker

https://smmall.cloud/tools/open-graph-checker
1•a_band•20m ago•0 comments

Cryptography Engineering Has an Intrinsic Duty of Care

https://soatok.blog/2026/02/25/cryptography-engineering-has-an-intrinsic-duty-of-care/
6•some_furry•20m ago•0 comments

Nano Banana 2

https://nanobanana2-ai.io/
2•sinpor1•21m ago•0 comments

Ask HN: Designing TTL for a B-tree KV store – feedback on dual-index approach

https://github.com/hash-anu/snkv/discussions/41
3•swaminarayan•21m ago•1 comments

You're shipping faster than ever. Are you building the right thing?

https://www.clairytee.com/faster-wrong
2•StnAlex•22m ago•0 comments

The Limits of Legal Control in Technical Systems

https://leastauthority.com/blog/the-limits-of-legal-control-in-technical-systems/
1•iamnothere•22m ago•0 comments

Announcing new Cloud PC devices designed for Windows 365

https://blogs.windows.com/windowsexperience/2026/02/26/announcing-new-cloud-pc-devices-designed-f...
1•el_duderino•22m ago•0 comments

The Pentagon Feuding with an AI Company Is a Bad Sign

https://foreignpolicy.com/2026/02/25/anthropic-pentagon-feud-ai/
5•Jimmc414•23m ago•1 comments

AI buying agents concentrate demand on 2-3 products and ignore the rest

https://arxiv.org/abs/2508.02630
1•dmpyatyi•24m ago•1 comments

Perplexity Computer

https://www.perplexity.ai/hub/blog/introducing-perplexity-computer
2•shadow28•24m ago•0 comments

The Last Question

https://users.ece.cmu.edu/~gamvrosi/thelastq.html
2•simonebrunozzi•25m ago•0 comments

Version of "I Have Nothing to Hide"

https://theprivacydad.com/the-best-version-of-i-have-nothing-to-hide/
2•Brajeshwar•25m ago•0 comments
Open in hackernews

The Emacs Widget Toolkit

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

Comments

spit2wind•9mo 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•9mo 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•9mo ago
Somewhat off topic, but I love all the references to Led Zeppelin’s incredible song, Stairway to Heaven.
gudzpoz•9mo 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•9mo 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•9mo ago
Why did you delete the page?
appetrosyan•9mo ago
Didn't. I migrated to `hugo` and it trims off the `.html` at the end. The permalink is the same.
matt-attack•9mo 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•9mo ago
PSA: Use The Lucid Toolkit https://irreal.org/blog/?p=12672

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

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

Page Not Found

Sorry, this page does not exist.

You can head back to the homepage.

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

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