frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Using group theory to explore the space of positional encodings for attention

https://blog.janestreet.com/using-group-theory-to-explore-positional-encodings-attention/
1•ingve•34s ago•0 comments

Technical Overview of an AI RAG System with React, Python, Laravel, Redis

https://gist.io/@alessandrofuda/c0513948003265e3548f288fef0e8ea1
1•aledevv•1m ago•0 comments

Show HN: Bumpy – versioning/changelog tool, fixed 120 open changesets issues

https://github.com/dmno-dev/bumpy
1•theozero•4m ago•0 comments

I got tired of hand-syncing AI coding rules across four tools

https://github.com/sampleXbro/agentsmesh
1•samplexBro•5m ago•0 comments

Show HN: I built a way to see if your SDK is AI-friendly

1•nguyenhu•11m ago•0 comments

Building a Threadiverse Community Platform

https://fedify.dev/tutorial/threadiverse
1•dahlia•12m ago•0 comments

Australia threatens tech companies with 2.25% tax if they don't pay publishers

https://www.theregister.com/2026/04/28/australia_news_bargaining_incentive/
2•defrost•16m ago•1 comments

How Do Perpetual Futures Differ from Spot Trading in Crypto?

https://www.bitdeal.net/cryptocurrency-exchange-development
1•harrisonrichrd•22m ago•0 comments

Meta prepares to undo acquisition of Singapore-based Manus after China ban

https://www.businesstimes.com.sg/international/global/meta-prepares-undo-acquisition-singapore-ba...
2•doppp•22m ago•0 comments

Freelancer for hire – full stack, ML, DevOps

1•Hopfield•24m ago•0 comments

Talos OS images are now bit-by-bit reproducible

https://github.com/siderolabs/talos/releases/tag/v1.13.0
1•matesz•25m ago•0 comments

I Use AI in 2026

https://fedepaol.github.io/blog/2026/04/25/how-i-use-ai-in-2026/
1•fedepaol•26m ago•0 comments

Come From

https://wiki.c2.com/?ComeFrom
1•pramodbiligiri•28m ago•0 comments

Steal Claude Code Architecture

https://teamcal.ai/blog/claude-code-architecture
1•rajl•31m ago•0 comments

How to build advanced features for AI chatbots on SSE

https://zknill.io/posts/everyone-said-sse-token-streaming-was-easy/
1•zknill•34m ago•0 comments

Show HN: VibeBrowser – Give your AI agent your real logged-in browser via MCP

https://www.vibebrowser.app/mcp
1•denis4inet•35m ago•0 comments

Show HN: Financial Database API for Vibe Coders

https://xfinlink.com
1•lyonghee97•43m ago•1 comments

Hotta GameDriverX64.sys shipping in Neverness to Everness preload

https://github.com/LaggyTMD/nte-driver-analysis
1•LaggyTMD•44m ago•0 comments

Anthropic Claude Code HERMES.md billing flaw

https://consumerrights.wiki/w/Anthropic_Claude_Code_HERMES.md_billing_flaw
1•Palmik•45m ago•0 comments

Scraping 241 UK council planning portals – 2.6M decisions so far

29•mebkorea•50m ago•34 comments

Show HN: BeVisible.app - Blog that runs itself

https://www.bevisible.app
2•evanyang•52m ago•0 comments

Xiaomi MiMo Orbit: 100T Token Grant for Builders

https://100t.xiaomimimo.com/
1•whtsky•54m ago•0 comments

SwiftBash: Pure-Swift, sandboxed bash interpreter

https://github.com/cocoanetics/swiftbash
2•ingve•54m ago•0 comments

Text Is the New Binary

https://andreabaccega.com/blog/text-is-the-new-binary/
2•veke87•56m ago•0 comments

Bugs in the original 1977 Cave Adventure Fortran source

https://colossalcave.cc/bugs.php
2•ultra-nick•59m ago•1 comments

A case report of someone who self-managed Fatal Familial Insomnia

https://pmc.ncbi.nlm.nih.gov/articles/PMC1781276/
1•abinaryquibit•1h ago•1 comments

Asimov v1: Open-Source Humanoid Robot

https://github.com/asimovinc/asimov-v1
1•Philipp2398•1h ago•0 comments

I built a coach for people who are tired of being yelled at by Stockfish

https://chessmentorai.com/en
1•sepiropht•1h ago•0 comments

Set a Meeting Budget

https://alexhans.github.io/posts/meeting-budget.html
2•alexhans•1h ago•1 comments

Ask HN: When might we not have to do laundry or fold clothes or cook

2•samarthv•1h ago•0 comments
Open in hackernews

The Knight Programming Language

https://github.com/knight-lang/knight-lang/tree/master
20•tosh•2d ago

Comments

eigenspace•1d ago
Always interested to read about a new programming language, but there's barely anything to read here.

Would you like to maybe say something about your language that you think people can engage with?

ronbenton•1d ago
From what I can tell, the person who posted this is not the author of the language
layer8•1d ago
The spec is here: https://github.com/knight-lang/knight-lang/blob/master/specs...
pgt•1d ago
This reminds me of the META [^1] II paper [^2]:

> META II is a domain-specific programming language for writing compilers. It was created in 1963–1964 by Dewey Val Schorre at University of California, Los Angeles (UCLA). META II uses what Schorre called syntax equations.

The interesting part of META II is that it can be defined in itself on one page (refer page 8 of the paper).

[^1] Wikipedia https://en.wikipedia.org/wiki/META_II

[^2] Paper: https://dl.acm.org/doi/epdf/10.1145/800257.808896

fjfaase•1d ago
I developed a similar language as an intermediate language for a C-compiler that I wrote. It uses reverse Polish notation instead of Polish notation [1], because it is easier to compile reverse Polish notation to machine code. I call the language Stack-C. See [2]. There are 32 bit and 64 bit compilers for x86 assembly and there is a memory safe interpreter for the language with a (rather limited) built-in debugger.

[1] https://en.wikipedia.org/wiki/Polish_notation

[2] https://github.com/FransFaase/MES-replacement/blob/main/Stac...

layer8•1d ago
The author doesn’t seem to have taken into account why C introduced trigraphs. The requirements [0] on mandatory ASCII characters to be supported are too steep, consider [1].

[0] https://github.com/knight-lang/knight-lang/blob/master/specs...

[1] https://en.wikipedia.org/wiki/ISO/IEC_646#Variant_comparison...