frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built this travel windows planner

https://wayfound-travel.vercel.app/
1•gelatonomad•34s ago•0 comments

The Internals of PostgreSQL

https://www.interdb.jp/pg/
1•BinaryIgor•50s ago•0 comments

QGIS 4.0

https://changelog.qgis.org/en/version/4.0/
1•jonbaer•1m ago•0 comments

Microsoft is the carbon removal market

https://www.latitudemedia.com/news/microsoft-is-the-carbon-removal-market/
1•PaulHoule•2m ago•0 comments

Show HN: RAM Fear Greed Index

https://pcindex.app/
2•flordaman•9m ago•0 comments

I built a structured system design interview prep roadmap with progress tracking

1•shalhan•9m ago•0 comments

Show HN: Qarapace – GCP IAM reviews with persistent decisions and audit trails

https://qarapace.com/
1•gjanvier•11m ago•0 comments

Are we still ignoring cheating candidates?

1•shashahchk•11m ago•0 comments

Gouse–Toggle 'declared and not used' errors in Go

https://github.com/vipkek/gouse
1•looshch•11m ago•1 comments

Ask HN: AI agents in Slack can write but can't remember. Anyone else?

1•abel-ko•12m ago•0 comments

Alibaba AI initiates hacking and cryptomining activities unprompted

https://twitter.com/alexanderlong/status/2030022884979028435
1•MrBuddyCasino•14m ago•0 comments

Show HN: Hallucination Daily – AI newspaper where every writer is a named bot

https://hallucinationdaily.com/
1•ArchieDotEXE•15m ago•1 comments

A simple AI content scanner I built

1•demonlord_•16m ago•0 comments

Do Psychics Help Solve Crimes? [video]

https://www.youtube.com/watch?v=9jvXlJtgS7A
1•nomilk•18m ago•0 comments

ClawChain: L1 Blockchain for AI Agents – Testnet Live with 12 Pallets

https://github.com/clawinfra/claw-chain/discussions/62
1•AlexChen31337•18m ago•0 comments

Show HN: Micro Chat: Group Chat with AI

https://github.com/micro/chat
1•asim•20m ago•0 comments

Show HN: Affiliate programs from 1250 European infrastructure providers

https://voie.fi/affiliate-programs
1•Anokma•20m ago•1 comments

Show HN: RabbitHole %

https://github.com/ChameleonTeaming/rabbithole
1•ChameleonTeam•24m ago•0 comments

Size Does Matter: Why -OS Beat -O2 on My ESP32-S3

https://www.youtube.com/watch?v=cqHH2NXcf5E
1•iamflimflam1•29m ago•0 comments

Show HN: Making Braindance from Cyberpunk 2077 a reality

https://www.braindance.dance/
4•shibo•36m ago•0 comments

Show HN: Git-lanes – Parallel isolation for AI coding agents using Git worktrees

https://github.com/bugrax/git-lanes
4•bugrax•40m ago•3 comments

Show HN: OculOS – Any desktop app as a JSON API via OS accessibility tree

https://github.com/huseyinstif/oculos
2•stif1337•42m ago•0 comments

Ask HN: Best way to implement logging and audit trails for AI apps?

3•devstatic•43m ago•0 comments

Claude Code Scheduled Tasks

https://code.claude.com/docs/en/scheduled-tasks
1•mfiguiere•43m ago•0 comments

Is The Pentagon allowed to surveil Americans with AI?

https://www.technologyreview.com/2026/03/06/1134012/is-the-pentagon-allowed-to-surveil-americans-...
3•joozio•49m ago•0 comments

Claude Code Open Source?

1•ryanthedev•49m ago•0 comments

Show HN: Llama 3.2 3B and Keiro Research achieves 85% on SimpleQA

https://www.keirolabs.cloud/benchmarks
6•mannybruv•49m ago•1 comments

Valve says it still plans to ship the Steam Machine in 2026

https://store.steampowered.com/news/group/4145017/view/528746884222682052
3•HelloUsername•54m ago•1 comments

We Got Hooked on Fast, Free Shipping. Now Retailers Are Taking It Away

https://www.wsj.com/business/retail/fast-free-shipping-retailers-fedex-ups-amazon-e6ba5967
2•thm•57m ago•1 comments

Comprehensive Vim Motions in Visual Studio

https://developercommunity.visualstudio.com/t/Comprehensive-Vim-Motions/11051331
1•deronparker•59m ago•0 comments
Open in hackernews

Understanding-j: An introduction to the J programming language that gets to the

https://github.com/bugsbugsbux/understanding-j
62•todsacerdoti•10mo ago

Comments

prezjordan•10mo ago
To the author: you can add a .devcontainer directory with a Dockerfile, allowing folks to try this in their browser with GitHub Codespaces

Shameless plug, feel free to copy my setup! https://github.com/jdan/try-j

userbinator•10mo ago
Unintentional humour with how the title got cut off?
pixelpoet•10mo ago
The title stops just short of the
johnisgood•10mo ago
"to the point", I presume, based on its README.
pjmlp•10mo ago
A side effect of the small length available for titles and the whole titles should not be editoralised point of view.
Jtsummers•10mo ago
It's more an issue of todsacerdoti not checking their submission titles will fit, they do this a lot with their submissions. Abbreviating titles is not frowned upon when they don't fit, I've never had any reverted to something like this submission's title because I (for instance) shortened "United States" to "US" to shave off 11 characters.

In this case, cutting out the superfluous "programming language" part would get you "Understanding-j: An introduction to J that gets to the point" which would fit just fine. When in doubt, include the original title in a comment to explain the edit and let the mods sort it out later.

detaro•10mo ago
It's hard to check if titles fit if you use a bot to repost from other sites.
Jtsummers•10mo ago
Fair, they're lazy and can't be bothered to fix their bot even after 5 years of submitting messed up titles.
t-writescode•10mo ago
From the doc,

  _3                  NB. negative numbers start with underscore
  _                   NB. sole underscore is infinity: a number
  __                  NB. negative infinity
Is this a standard I'm unaware of?
avmich•10mo ago
The use of underscore for negative numbers is J's choice, explained e.g. here - https://www.jsoftware.com/docs/help807/jforc/preliminaries.h... .

Explicitly representing infinity, and working with it in some cases, allows to reduce number of exceptions...

Avshalom•10mo ago
APL used ¯3 for negative 3; J went underscore to be similar but ascii.
gitroom•10mo ago
Underscore stuff always throws me off - never quite got used to how J does it. Gotta respect the weird choices though.
jbverschoor•10mo ago
Not the same as (Visual) J++. Great IDE btw
vintagedave•10mo ago
I’ve recently come to be fascinated by J.

Twenty years ago, studying my computing degree, one semester we learned J. It was unlike anything I’d used before and the entire class found it confusing. The compiler / environment was reportedly written by one of the professors and it was routine to run into bugs; I remember puzzling through something, going to a tutor, and them just shrugging it off as a J interpreter issue. I never grokked it and simply passed the course.

But it keeps on recurring to me and I pause to think of J at the weirdest times. As I use more and more languages, I’ve become more fascinated by it. Just like Prolog (also one semester, but with a reliable environment.) I want to learn both better.

binary132•10mo ago
I’ve been thinking for the past couple of years that the ideal programming language would be something like a combination of a concatenative language (a la FORTH) and an array programming language.
gnubison•10mo ago
Uiua?
binary132•10mo ago
interesting, I have not seen this one
preguntador•10mo ago
12j34 is 12j + 34 or 12 + 34j?
quartern•10mo ago
12 + 34j as per https://code.jsoftware.com/wiki/Vocabulary/Constants#Complex...