frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Instead of LLMs we need self-updating SLMs

https://crib.social/notice/B6jGNsfie10RYn20lU
1•gslepak•38s ago•0 comments

Show HN: CuSBF – Faster GPU Bloom Filter for Sequence Data

https://github.com/tdortman/cuSBF
1•tdortman•1m ago•0 comments

Objective metrics that change the most as we age

https://www.empirical.health/blog/biomarkers-that-change-with-age/
1•brandonb•1m ago•0 comments

90% cheaper repo inference with GPT-5.4 nano

https://charlielabs.ai/blog/90-percent-cheaper-repo-inference-with-gpt-54-nano/
1•mrbbk•1m ago•0 comments

Vibe-coding side projects While Watching TV

https://marindedic.com/swipertab/
1•Realman78•4m ago•1 comments

Attractive faces draw our gaze but fail to hijack our peripheral attention

https://www.psypost.org/attractive-faces-draw-our-gaze-but-fail-to-hijack-our-hidden-attention/
1•Vaslo•5m ago•0 comments

DeepSeek's 10T USD grand strategy

https://twitter.com/i/status/2057909493250539891
4•ssivark•5m ago•0 comments

Context Window Packing – Agent Patterns Catalog

https://www.agentpatternscatalog.org/patterns/context-window-packing/
1•ankitg12•6m ago•0 comments

Show HN: Claude Code's $200 plan is a 17× subsidy on the raw API

https://github.com/Coral-Bricks-AI/coral-ai/tree/main/claude-code-token-xray
3•Hiteshjain118•6m ago•0 comments

Pitfalls of Estimating Parameters from Aggregates

https://world.hey.com/apetrov/pitfalls-of-estimating-parameters-from-aggregates-e23c264b
1•apetrov•6m ago•0 comments

Gemini, Gophers, and Fingers. Oh My Alternative Internets Beyond HTTPS

https://brennan.day/gemini-gophers-and-fingers-oh-my-alternative-internets-beyond-https/
2•ChrisArchitect•7m ago•0 comments

The Road to (and from) Damascus

https://sophisms.substack.com/p/the-road-to-and-from-damascus
1•speckx•9m ago•0 comments

Russia: Up to 30% of companies use corporate software purchased before 2022

https://www.kommersant.ru/doc/8673186
2•doener•12m ago•0 comments

Texas Sues Discord, Seeks Mandatory Age Verification

https://reclaimthenet.org/texas-sues-discord-seeks-mandatory-age-verification
5•anonymousiam•16m ago•1 comments

New York, New Jersey Subpoena FIFA in World Cup Ticket Probe

https://www.espn.com/soccer/story/_/id/48885837/new-jersey-new-york-subpoena-20926-fifa-world-cup...
1•mikhael•17m ago•0 comments

Workers Missing After Deadly Nippon Dynawave Paper Mill Explosion in WA State

https://nbsla.ca/9-workers-missing-nippon-dynawave-paper-mill-explosion/
1•mikhael•18m ago•0 comments

Linkano – Create durable links between what you work on

https://micro.mjanssen.nl/2026/05/27/linkano-create-durable-links-between.html
2•marc0janssen•18m ago•1 comments

The versatility of the word ass in the English language

https://yelluwcomedy.substack.com/p/the-versatility-of-the-word-ass-in
1•pryelluw•18m ago•0 comments

Ask HN: Does anyone care enough about bots to switch social networks?

2•Chirpper•20m ago•0 comments

We Left Framer

https://babou.ai/blog/why-we-left-framer
3•nickls•20m ago•0 comments

GPT 5.5 aces 20x20 multiplication that o3 couldn't handle

https://twitter.com/cozyblaze265065/status/2057739317649588558
1•marojejian•20m ago•2 comments

Modifying RL to train models on production traces

https://trajectory.ai/field-notes/scaling-sdpo
1•neilkale•22m ago•0 comments

RPCS-1 – Configure AI agents that don't oscillate, overload, or freeze

https://rpcs1.dev
1•play420•22m ago•1 comments

Show HN: GTFS·X – a free, web-based transit schedule (GTFS) editor

https://www.gtfsx.com/
1•markegge•23m ago•0 comments

AWS RDS Extended Support, you still have few levers to pull

https://www.cloudyali.io/blogs/rds-extended-support-cost-levers
1•heldsteel7•25m ago•0 comments

Ask HN: I refused to charge a monthly subscription for my AI app. Was I wrong?

2•dj_studocai•25m ago•1 comments

AI and That Guy at the Bar

https://dotart.blog/cobbles/ai-and-that-guy-at-the-bar
2•miniBill•26m ago•0 comments

What 1k Harness Experiments Taught Me About Self-Improving Agents

https://www.henrypan.com/blog/2026-05-25-self-improvement-harness/
2•megadragon9•27m ago•1 comments

Show HN: World Flavor Atlas. Radzikowski and Chen's food embeddings in 3D

https://tomacco.github.io/world-flavor-atlas/
2•drinkcocacola•27m ago•0 comments

Auto-itera – autonomous experimentation engine for AI engineering decisions

https://github.com/clfhaha1234/auto-itera
2•clfhaha1234•28m ago•0 comments
Open in hackernews

Show HN: Hm – a task runner with a Python DSL, growing into a CI/CD system

https://github.com/harmont-dev/harmont-cli
5•suis_siva•50m ago
Hi HN! My name is Marko and I am working on a CI/CD system at harmont.dev, a CI/CD system that sucks slightly less. As I've been working on the cloud, I realized that the CLI might be generally useful as a task runner, even if you don't care for our CI/CD, and that's what I'm sharing here!

Every CI system I've used at Tesla, Bun, and mesa.dev has had the same problems: stateless and slow (GHA), or stateful and horizontally unscalable (Jenkins), with YAML on top of either. The straw that broke the camel's back for me was the realization that all my Claudes are waiting upwards of an hour. So I quit my job to work on harmont, which aims to solve all of these pain points I've had.

In its current state, the project is very similar to Dagger in spirit with the core difference of harmont having what I believe to be a more pleasant API as well as being smaller in scope.

I'm looking for opinions and feedback. What might be the most interesting with the CLI is the DSL -- I've tried to make it ergonomic and friendly. To get started:

  curl -fsSL https://get.harmont.dev/install.sh | sh
  
  mkdir foo
  cd foo
  uv init
  cat >> pyproject.toml <<EOF
  [dependency-groups]
  dev = [
    "pytest",
    "ruff",
    "ty",
  ]
  EOF
  
  # Create the pipeline
  mkdir .harmont
  cat > .harmont/pipeline.py <<EOF
  import harmont as hm
  from harmont.python import PythonToolchain
  
  @hm.target()
  def project() -> PythonToolchain:
      return hm.python(path=".")
  
  @hm.pipeline(
      "ci",
      default_image="ubuntu:24.04",
      triggers=[hm.push(branch="main")],
  )
  def ci(project: hm.Target[PythonToolchain]) -> tuple[hm.Step, ...]:
      return (
          project.test(),
          project.lint(),
          project.fmt(),
          project.typecheck(),
      )
  EOF
  
  hm run
Currently our API has pretty good support for Rust, Typescript and Python. There are other languages that are "supported" in the examples, but those are mostly demo APIs and are likely to change, aggressively. The project is early, but usable and I'd love to get your feedback.

What's coming next:

  - COW filesystems: In a future release of hm, we mount FS layers on top of preceding layers, copy-on-write. I ran some experiments and they resulted in up to 40% faster runs on `uv run ruff`-style commands.
  - Development containers: `hm dev` enables you to spin up your application in however many instances you need -- if you have a local application, there is nothing stopping you from spinning it up once, twice, or 10 times.
  - The cloud: In parallel to the CLI, I've been working on the cloud, which I am hoping to private-access release in the coming month. It follows the same model as the CLI, but uses a very different execution engine (supporting RAM caches too, for you Bazel enjoyers =).
  - Additional language SDKs -- The private-access cloud is written in Haskell, Elixir and Rust. We already have harmont rules for Rust (which I would suggest you check out in Harmont's very own dogfood pipeline: https://github.com/harmont-dev/harmont-cli/blob/main/.harmont/ci.py), but we're adding more languages!
  - Plugin system: I recognize that not everyone will want to join the Harmont cloud but may find some utility in the Harmont task runner. At some point, I had a plugin system in place that allowed you to download and use harmont without any cloud-specific bloat, but unfortunately I tore that out, because the code wasn't great. Definitely working on bringing that back.
Full disclaimer: I am the founder of Harmont, Inc. PBC. We are committed to the CLI remaining open-source and as bloat-free as possible and doing the best we can with the cloud for the community.

PS: I've gotten questions about the name. It is a reference to https://en.wikipedia.org/wiki/Roadside_Picnic (awesome sci-fi book, worth a read =) )