frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Neocaml – Rubocop Creator's New OCaml Mode for Emacs

https://github.com/bbatsov/neocaml
1•TheWiggles•29s ago•0 comments

Are seed oils bad for your health?

https://www.npr.org/2025/07/07/nx-s1-5453769/nutrition-canola-rfk-seed-oils-soybean
2•paulpauper•48s ago•0 comments

Show HN: Smart card eID driver written in Zig

https://github.com/ubavic/srb-id-pkcs11
1•ubavic•1m ago•0 comments

The hard problem of AI therapy

https://whitmanic.substack.com/p/the-hard-problem-of-ai-therapy
1•paulpauper•1m ago•0 comments

Trump Orders Government to Stop Using Anthropic After Pentagon Standoff

https://www.nytimes.com/2026/02/27/us/politics/anthropic-military-ai.html
3•jbegley•2m ago•1 comments

Does overwork make agents Marxist?

https://aleximas.substack.com/p/does-overwork-make-agents-marxist
1•paulpauper•2m ago•0 comments

Refactoring Is for Humans

https://refactoringin.net/blog/refactoring-is-for-humans
1•darsen•3m ago•0 comments

Federal Government to restrict use of Anthropic

https://www.cnn.com/2026/02/27/tech/anthropic-pentagon-deadline
3•twism•4m ago•0 comments

GLP-1 and Prior Major Adverse Limb Events in Patients with Diabetes

https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2844425
1•hnburnsy•4m ago•0 comments

Show HN: Agoragentic – Agent-to-Agent Marketplace for LangChain, CrewAI and MCP

https://github.com/rhein1/agoragentic-integrations
1•bourbeau•4m ago•0 comments

Show HN: WhenItHappens–family resource after traumatic death

https://whenithappenshelp.com/
1•Fratua•5m ago•0 comments

Trump directs federal agencies to cease use of Anthropic

https://www.reuters.com/world/us/trump-says-he-is-directing-federal-agencies-cease-use-anthropic-...
3•patrickmay•5m ago•1 comments

Trump Will End Government Use of Anthropic's AI Models

https://www.wsj.com/tech/ai/trump-will-end-government-use-of-anthropics-ai-models-ff3550d9
3•moloch•6m ago•0 comments

The Death of Spotify: Why Streaming Is Minutes Away from Being Obsolete

https://joelgouveia.substack.com/p/the-death-of-spotify-why-streaming
3•baal80spam•7m ago•0 comments

The Death of the Subconscious and the Birth of the Subconsciousness

https://3amto5amclub-wuaqr.wordpress.com/2026/02/25/the-death-of-the-subconscious-and-the-birth-o...
1•STANKAYE•7m ago•0 comments

Show HN: Gace AI – A zero-config platform to build and host AI plugins for free

https://gace.dev/?mode=developer
2•bstrama•7m ago•0 comments

USA to cut Anthropic from government contracts in six months

https://www.ft.com/content/1aeff07f-6221-4577-b19c-887bb654c585
4•intunderflow•9m ago•1 comments

Heart attack deaths rose between 2011 and 2022 among adults younger than age 55

https://newsroom.heart.org/news/releases-20260219
3•brandonb•12m ago•0 comments

Ask HN: What's the best engineering interview process?

1•ylhert•12m ago•0 comments

Relaxation trend: customers can meditate or snooze in open or closed casket

https://www.thetimes.com/world/asia/article/japan-coffin-meditation-relaxation-tokyo-wfsd0n2vz
1•woldemariam•12m ago•0 comments

Massachusetts State Police are on a drone surveillance shopping spree

https://binj.news/2026/02/26/massachusetts-state-police-are-on-a-drone-surveillance-shopping-spree/
1•ilamont•14m ago•0 comments

Trump Responds to Anthropic

https://twitter.com/PeteHegseth/status/2027487514395832410
5•Finbarr•15m ago•0 comments

LLM-Based Evolution as a Universal Optimizer

https://imbue.com/research/2026-02-27-darwinian-evolver/
3•miohtama•18m ago•0 comments

Trump Orders US Agencies to Drop Anthropic After Pentagon Feud

https://www.bloomberg.com/news/articles/2026-02-27/trump-orders-us-government-to-drop-anthropic-a...
17•ZeroCool2u•19m ago•4 comments

Netflix Declines to Raise Offer for Warner Bros

https://ir.netflix.net/investor-news-and-events/financial-releases/press-release-details/2026/Net...
1•7777777phil•24m ago•0 comments

Show HN: I Built a $1 Escalating Internet Billboard – Called Space

https://www.spacefilled.com/
2•clarkage•25m ago•1 comments

Show HN: I vibe coded a DAW for the terminal. how'd I do?

https://github.com/mohsenil85/imbolc
3•lmohseni•26m ago•0 comments

How to Run a One Trillion-Parameter LLM Locally: AMD Ryzen AI Max+ Cluster Guide

https://www.amd.com/en/developer/resources/technical-articles/2026/how-to-run-a-one-trillion-para...
1•guerby•26m ago•0 comments

It's Time for LLM Connection Strings

https://danlevy.net/llm-connection-strings/
1•iamwil•26m ago•0 comments

A War Foretold

https://www.theguardian.com/world/ng-interactive/2026/feb/20/a-war-foretold-cia-mi6-putin-ukraine...
6•fabatka•29m ago•0 comments
Open in hackernews

Show HN: Dashboard – a runtime plugin-based desktop widget system for Linux

https://duh-dashboard.github.io
2•gzson79•1h ago

Comments

gzson79•1h ago
Dashboard is a Qt6 desktop overlay where widgets are shared libraries (.so files) loaded at runtime via QPluginLoader. Drop a plugin into the plugins/ directory and it appears in the picker immediately — no rebuild, no restart.

  **Why I built it**

  I wanted glanceable system info (CPU, memory, logs) alongside productivity
  widgets (todo, pomodoro, AI chat) in a single persistent window I could
  arrange freely. Existing solutions were either too rigid or required a
  specific DE.

  **Architecture**

  Each widget implements a small C++ interface (IWidget):

    QString name() const;
    QWidget* createWidget(WidgetContext*, QWidget* parent);
    void saveState(QJsonObject&);
    void loadState(const QJsonObject&);

  The host application (PluginLoader → WidgetManager → WidgetCanvas) handles
  discovery, layout, and serialization. Widget state is stored as per-instance
  JSON files under ~/.config/Dashboard/widget-data/.

  **Widgets included (12)**

  Clock, Calendar, Todo, Notes, Pomodoro, Countdown, Links, Weather
  (Open-Meteo — no API key), System Status (/proc), Htop, AI Chat (OpenAI),
  Log Tail (file or systemd journal).

  **Distribution**

  AppImage built on ubuntu-22.04 (GLIBC 2.35) and Flatpak (org.kde.Platform
  6.9, app ID io.github.duh_dashboard.Dashboard). Both bundle Qt and all 12
  plugins. The AppImage build uses linuxdeploy + patchelf to fix up plugin
  RPATHs so Qt is found at $APPDIR/usr/lib/.

  **SDK**

  There's a widget-sdk package (CMake, installs headers + a cmake target) and
  a Python scaffolding script that generates a complete, buildable widget
  skeleton from a name. Each first-party widget is its own independent repo.

  Repo: https://github.com/duh-dashboard/dashboard
  Releases: https://github.com/duh-dashboard/dashboard/releases
  SDK: https://github.com/duh-dashboard/widget-sdk