frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Logicomix and 6 months at my new job

https://avocadoslaw.substack.com/p/logical-thoughts-on-logicomix
1•m_aiswaryaa•1m ago•0 comments

Fixing my ridiculous fridge with a tiny Funnel site

https://tailscale.com/blog/funnel-fridge
1•Brajeshwar•1m ago•0 comments

Companies Are Using Reddit to Manipulate ChatGPT and Google AI Search

https://www.404media.co/companies-are-using-reddit-to-manipulate-chatgpt-and-google-ai-search/htt...
1•SpyCoder77•2m ago•0 comments

Why are so many Show HNs being flagged?

1•866-RON-0-FEZ•2m ago•1 comments

Show HN: Testbump – automated test driven versioning

https://github.com/ivoputzer/testbump
2•ivoputzer•3m ago•0 comments

Dotnet-slopwatch – detect when AI coding agents "fix" problems by cheating

https://github.com/Aaronontheweb/dotnet-slopwatch
1•bastijn•5m ago•0 comments

A victory for digital common sense: Bavaria's deal with Microsoft falls through

https://www.abendzeitung-muenchen.de/bayern/sieg-fuer-die-digitale-vernunft-bayern-deal-us-softwa...
2•eigenspace•6m ago•1 comments

SemiAnalysis: TCO of Space Datacenters

https://newsletter.semianalysis.com/p/to-boldly-go-the-case-for-space-datacenters
1•samber•9m ago•0 comments

CI caching is not one cache

https://zozo123.github.io/gha-cache-field-guide/
1•zozo123-IB•11m ago•0 comments

GPS satellites have broadcast a "numbers station" in their public signals

https://mastodon.social/@sjmurdoch/116681186650836098
1•pavel_lishin•12m ago•0 comments

Show HN: Division Swarm, the OS for Multi-Agent Systems

https://github.com/division-sh/swarm
1•vn0m•13m ago•0 comments

Signal Struggles on Trains Widespread

https://www.ofcom.org.uk/phones-and-broadband/coverage-and-speeds/signal-struggles-on-trains-wide...
1•berlianta•13m ago•0 comments

Qwen 3.7 Plus

https://artificialanalysis.ai/models/qwen3-7-plus
1•theanonymousone•13m ago•0 comments

Partial Graphics Programs

https://devblogs.microsoft.com/directx/partial-graphics-programs/
1•ibobev•14m ago•0 comments

AgilitySDK 721 Preview and an addition to LinAlg in Shader Model 6.10

https://devblogs.microsoft.com/directx/announcing-agilitysdk-721-preview-and-more-shader-model-6-...
1•ibobev•15m ago•0 comments

I built an API that stops AI hallucinating colour

https://colourmemory.com/start
1•DigbyO•16m ago•0 comments

Show HN: Nib, collaborative font editor on the web

https://nibfont.com/
1•johnnydamacha•16m ago•0 comments

Intel's new CEO cut management layers in half. The stock is up nearly 500%

https://fortune.com/2026/06/03/intel-ceo-lip-bu-tan-ai-semiconductors-innovation/
1•Brajeshwar•16m ago•0 comments

(PewDiePie) any LOCAL AI model close to Claude Code?

1•knowmygpa•18m ago•0 comments

Do we fear the serializable isolation level more than we fear subtle bugs?

https://blog.ydb.tech/do-we-fear-the-serializable-isolation-level-more-than-we-fear-subtle-bugs-5...
2•b-man•19m ago•0 comments

Meta enters enterprise AI race with new business agent

https://www.reuters.com/business/meta-launches-enterprise-focused-ai-business-agent-automate-dail...
1•tartoran•19m ago•0 comments

Show HN: NoiR Code – because QR sounds similar to "noir"

https://noir-code.suncake.xyz/
1•Sunkek•19m ago•1 comments

AI Has Ruined the Job Market

https://www.theatlantic.com/ideas/2026/06/ai-job-market-hiring/687403/
1•FinnLobsien•19m ago•1 comments

AI to double data centre power and water consumption by 2030, UN researchers say

https://www.reuters.com/business/energy/ai-double-data-centre-power-water-consumption-by-2030-un-...
2•tartoran•20m ago•0 comments

Running a full blockchain stack locally (2024, 22 minutes) [video]

https://www.youtube.com/watch?v=H-R5FqrCYQs
1•Olshansky•20m ago•0 comments

Majorana 2, made more reliable with Microsoft Discovery agentic AI

https://news.microsoft.com/source/features/innovation/majorana-2-microsoft-discovery-agentic-ai/
1•EvgeniyZh•20m ago•0 comments

Show HN: Extract (YC P25) – Fast, accurate document parsing

https://extract.page
1•soamikapadia•20m ago•0 comments

Tilt: A toolkit for fixing the pains of microservice development

https://tilt.dev/
2•Olshansky•21m ago•0 comments

DaVinci Resolve 21

https://www.blackmagicdesign.com/products/davinciresolve/whatsnew
2•pentagrama•22m ago•0 comments

Thoughts on Building with Agents

https://debarshibasak.github.io/readables/blogs/building-with-agents.html
3•linuxarm64•22m ago•0 comments
Open in hackernews

Native-first Markdown editor: Works like a standard textarea

https://frutjam.com/plugins/markdown-editor
1•nezanuha•1h ago

Comments

nezanuha•1h ago
Most Markdown editors replace the textarea entirely. You lose native form submission, you need axios or fetch to collect the value, and you're locked into a custom API just to get or set content.

This plugin takes a native-first approach. Just initialize it — your textarea becomes a full advanced Markdown editor while still working exactly like a native textarea.

Backend developers: your form submits as normal.

new MarkdownEditor('#editor');

$_POST['content'], request.form['content'], params[:content] — nothing changes on your end.

Frontend developers: get and set content the same way you always have.

// get document.getElementById('editor').value

// set document.getElementById('editor').value = '## Hello' // editor UI updates automatically

No axios. No interceptors. No custom APIs. Just native textarea behavior you already know.

Configure as needed:

new MarkdownEditor('#editor', { mode: 'hybrid', toolbar: ['bold', 'italic', 'code', 'table', 'image', 'preview'], fileInput: { uploadUrl: '/api/upload', accept: ['webp', 'avif'] } });

Two modes: Plain (raw Markdown) or Hybrid (WYSIWYG-style, renders live as you type).

Also includes: real-time preview, undo/redo with cursor restore, GitHub-style list continuation, image uploads to your own server, modular toolbar, RTL support, dark mode, ARIA accessible, zero CSS bleed, ~116KB minified. ESM / UMD / CJS / IIFE / CDN.

npm install markdown-text-editor Docs: https://frutjam.com/plugins/markdown-editor