Hacker News
Agent-stack – one command to make any repo token-efficient for Claude Code
Article URL: https://github.com/drmahdikazempour/agent-stack
Comments URL: https://news.ycombinator.com/item?id=48350102
Points: 1
# Comments: 0
G7 Agrees on Shared Language Around Open-Source AI, Open Weights AI
Article URL: https://www.phoronix.com/news/G7-On-Open-Source-AI
Comments URL: https://news.ycombinator.com/item?id=48350096
Points: 1
# Comments: 0
JavaScript Crossword
Article URL: https://lyra.horse/fun/jscrossword/
Comments URL: https://news.ycombinator.com/item?id=48350078
Points: 3
# Comments: 0
Show HN: Pictolab (online HDR image editor)
Source code: http://github.com/anchpop/pictolab
I love HDR, but until recently dynamic HDR content was hard to render in the browser. But now, with browsers shipping support for WebGPU and canvases with extended color spaces, it's actually feasible.
So what I wanted to was make an image editor capable of doing the simple edits I often need to do, but with full HDR support, which is rare in browser editors. Turning up the brightness on an HDR-capable monitor is a great way to see what your monitor can do :P
I tried to go overboard in every way I could. So brightness/saturation/hue adjustments use the okLCH color space, and there's an option to do a "content-aware resize" with seam carving, which is fast because it's parallelized using Sam Westrick's triangle-blocking algorithm [0].
Also, the site supports importing HEIC photos as taken with an iPhone, which is surprisingly hard to do correctly. Libraries like libheic don't fully support the format used by iPhones, so if used naively the HDR colors come out wrong. I'm working on a blog post about this, but the short version is that you have to use ISO 21496-1 gain map composition (which isn't even what apple documents). I'm pretty sure that pictolab is the *only* website that allows you to convert HEIC to JPEG or AVIF without messing up the HDR.
There is also a local background-removal model. Enjoy!
[0]: https://shwestrick.github.io/2020/07/29/seam-carve.html
Comments URL: https://news.ycombinator.com/item?id=48350064
Points: 2
# Comments: 1
Penguin travels every year to visit man who rescued him (2016)
Article URL: https://www.cbc.ca/news/trending/dindim-o-lindo-pinguim-1.3487668
Comments URL: https://news.ycombinator.com/item?id=48349803
Points: 1
# Comments: 0
Show HN: Grenzwer – Medical Viewer
I shared an earlier version of this project some time ago. Since then, I have implemented quite a few changes and improvements.
The project is a cross-platform medical viewer written in C++. It also builds for the web via Emscripten/WebAssembly, so the same codebase can run both natively and in the browser.
Some of the main updates since the previous version: - Added an MPR mode. Previously, the viewer only had volume rendering; it can now display sagittal, coronal, and axial planes. - Added navigation tools for MPR views, including zoom, pan, window/center adjustment, HU probe, coordinate display, and crosshair mode. - Added measurement tools for distances and angles. - Added presets for the transfer function. - Integrated a progressive irradiance cache for the 3D rendering mode, which significantly improves performance on lower-end devices. - Added new CT and MRI datasets to the website, so it is easier to try the viewer without preparing your own data.
I am currently working on integrating a DICOM loader, so users will be able to load their own DICOM studies directly.
What do you think about the direction of the project?
Comments URL: https://news.ycombinator.com/item?id=48349798
Points: 1
# Comments: 0
Show HN: A "gym" for art value studies using images from your Pinterest boards
This is my little app. I was sick of copying images from Pinterest and doing the posterising in photoshop when I was doing value studies as painting practice so I made a site which does the entire workflow in one bit. Happy painting!
Comments URL: https://news.ycombinator.com/item?id=48349780
Points: 1
# Comments: 0
1979: Will Word Processors Start a Home Working Revolution?
Article URL: https://www.youtube.com/watch?v=b6URa-PTqfA
Comments URL: https://news.ycombinator.com/item?id=48349777
Points: 2
# Comments: 0
TCNs as Alternative to Transformers?
over the last months I've experimented with many alternatives to transformers, such as one i created github repo about:
https://github.com/bggb7781-collab/lrnnsmdds
Architectures I've experimented with and my personal notes as pros and cons:
1. RNNS: Like Mamba, RWKV and my attempt above: likely the best alternative to transformers but hard to parallelize and I've personally encountered weird logical "bugs": a. Severe bias over repeated text and the ending of the text corpus (go figure...). b. Speed similar to transformers.
Pros: a. Very limited RAM utilization and very good ability to generalize and learn, perplexity reaches to extremely low levels (~1.05 for 2+ for GPT in comparison). b. Relatively easy to understand as it uses backprop, feed-forward, matrices, very similar to transformers.
2. HDC: hyperdimensional computing: for the time being mostly sci-fi...
3. SNNs: spiking neural networks - i ended up having several vibecoded implementations in C#, F#, C. Ultimately despite novel ideas, not very succesful. May be could be succesful but at the moment mostly failure...still potential.
4. TCN: temporal convolution networks...best case it seems.
pros: after than rnn/transformers, good generalization, could be the next great reduction of resources in AI-gen!
screenshot of my last tcn attempts:
https://postimg.cc/R3r71PL2 - ultimately, there is a potential!
Comments URL: https://news.ycombinator.com/item?id=48349760
Points: 2
# Comments: 0
The ITL Robotic Safe Cracker. (ITL-2000) (1001) [video]
Article URL: https://www.youtube.com/watch?v=nDgC8JOQhiM
Comments URL: https://news.ycombinator.com/item?id=48349708
Points: 1
# Comments: 1
Emergence World: A Laboratory for Evaluating Long-Horizon Agent Autonomy
Article URL: https://www.emergence.ai/blog/emergence-world-a-laboratory-for-evaluating-long-horizon-agent-autonomy
Comments URL: https://news.ycombinator.com/item?id=48349677
Points: 1
# Comments: 0
Deep Dive into Kubernetes Gateway API
Article URL: https://www.romaglushko.com/blog/k8s-gateway-api/
Comments URL: https://news.ycombinator.com/item?id=48349619
Points: 2
# Comments: 0
"At Meta, 90% of my coworkers were Chinese, non-Chinese were routinely excluded"
Article URL: https://twitter.com/jeremybernier/status/2058243373161722185
Comments URL: https://news.ycombinator.com/item?id=48349617
Points: 8
# Comments: 0
Practical Uses of Monads in Haskell
Article URL: https://nauths.fr/en/2026/05/28/practical-use-of-monads.html
Comments URL: https://news.ycombinator.com/item?id=48349616
Points: 2
# Comments: 0
Show HN: AionDbB
A rust multimodal database
Comments URL: https://news.ycombinator.com/item?id=48349572
Points: 3
# Comments: 1
Ruby Client for the Model Context Protocol (MCP)
Article URL: https://github.com/zarpay/manceps
Comments URL: https://news.ycombinator.com/item?id=48349546
Points: 2
# Comments: 0
Show HN: Web-based wc3 warlocks brawl
Article URL: https://warlocks.app/
Comments URL: https://news.ycombinator.com/item?id=48349535
Points: 2
# Comments: 0
World Cup Sponsorships: Online Communities Changing the Game
Article URL: https://graphika.com/posts/world-cup-sponsorships-online-communities-changing-the-game
Comments URL: https://news.ycombinator.com/item?id=48349531
Points: 2
# Comments: 0
Markdown Tables Generator – Tablesgenerator.com
Article URL: https://www.tablesgenerator.com/markdown_tables
Comments URL: https://news.ycombinator.com/item?id=48349530
Points: 4
# Comments: 1
US healthcare still stupidly expensive, with pathetic outcomes, study finds
Article URL: https://arstechnica.com/health/2026/05/us-healthcare-still-stupidly-expensive-with-pathetic-outcomes-study-finds/
Comments URL: https://news.ycombinator.com/item?id=48349527
Points: 4
# Comments: 2
