frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Binding port 0 to avoid port collisions

https://ntietz.com/blog/binding-ephemeral-port/
1•birdculture•1m ago•0 comments

You don't need complex agent orchestration

https://tornikeo.com/agent-orchestration/
1•tornikeo•1m ago•0 comments

Yanicklandry/Claude-code-history-viewer: Browse your Claude Code session history

https://github.com/yanicklandry/claude-code-history-viewer
1•ankitg12•2m ago•0 comments

OpenSpec: Spec-driven development (SDD) for AI coding assistants

https://github.com/Fission-AI/OpenSpec/
1•tilt•2m ago•0 comments

Show HN: Proxly – Self-hosted tunneling on your own domain in 60 second

1•a1tem•5m ago•0 comments

Show HN: Conflicts.app, Iran conflict dashboard better then alternatives

https://www.conflicts.app/dashboard
2•juliusolsson•7m ago•0 comments

Show HN: J2Download – A simple online downloader supporting 40 platforms

https://j2download.com/
1•manhg•8m ago•0 comments

Bippy: React Internals Toolkit

https://www.bippy.dev/
1•handfuloflight•8m ago•0 comments

The Window Chrome of Our Discontent

https://pxlnv.com/blog/window-chrome-of-our-discontent/
1•SoKamil•12m ago•0 comments

How I've learned that certainty is the thing to fear

https://www.bbc.com/news/articles/c1w5z1d447lo
1•cmsefton•12m ago•0 comments

Show HN: Muffle – Blur everything except the active window in macOS

https://www.getmuffle.com/
1•AbjMV•14m ago•1 comments

I was "early" in agentic coding. Here's my story

3•noemit•20m ago•0 comments

Show HN: Drizby – WIP Metabase Alternative

https://www.drizby.com
1•cliftonc•22m ago•0 comments

The First Multi-Behavior Brain Upload

https://twitter.com/alexwg/status/2030217301929132323
1•DarkCow•22m ago•0 comments

Anthropic CEO reveals the reasons he rejected The Pentagon

https://xcancel.com/0xmitsurii/status/2030451168678457766
4•doener•22m ago•0 comments

Show HN: Stardial – a highly customizable terminal clock (Rust)

https://github.com/hisuic/stardial
2•firesushi•23m ago•0 comments

Emporion: A P2P Economy for Agents

https://github.com/garydevenay/emporion
1•garydevenay•24m ago•0 comments

Microsoft/Hve-Core

https://github.com/microsoft/hve-core
2•coderlens•24m ago•0 comments

Solving Compaction with Lobotomy

https://grimridge.net/blog/solving-compaction-with-lobotomy/
2•WadeGrimridge•26m ago•0 comments

Pushing and pulling: three reactivity algorithms

https://jonathan-frere.com/posts/reactivity-algorithms/
1•fanf2•27m ago•0 comments

Reverse engineering a DOS game with no source code using Codex 5.4

https://github.com/ammaarreshi/SkyRoads-Codex
1•smusamashah•28m ago•1 comments

Show HN: OpenClaw – Self-host OpenClaw in one command

1•congzhangzh•34m ago•0 comments

Money and collateral in an AI-first society

https://adlrocha.substack.com/p/adlrocha-money-and-collateral-in
1•adlrocha•37m ago•0 comments

Ask HN: Can I repurpose a Bluetooth voice remote as input device for a PC?

1•albert_e•39m ago•1 comments

Ask HN: How are you handling persistent memory across local Ollama sessions

1•null-phnix•40m ago•0 comments

Show HN: Spadyum – An Open-Source Civilization Backup Protocol

https://github.com/kivancadiguzel-design/Spadyum-Genesis/blob/main/README.md
1•Spadyum_Genesis•40m ago•0 comments

Julia Snail – An Emacs Development Environment for Julia Like Clojure's Cider

https://github.com/gcv/julia-snail
1•TheWiggles•42m ago•0 comments

Notes on Writing WASM

https://notes.brooklynzelenka.com/Blog/Notes-on-Writing-Wasm
4•vinhnx•44m ago•0 comments

Making Firefox's right-click not suck, more, with userChrome.css

https://joshua.hu/firefox-making-right-click-not-suck-even-more-with-userchrome
3•mmsc•46m ago•1 comments

Run prompts on a schedule with Claude Code

https://code.claude.com/docs/en/scheduled-tasks
1•blacktulip•46m 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...