U.S. sanctions cloud provider 'Funnull' as top source of 'pig butchering' scams (Score: 151+ in 16 hours)
Link: https://readhacker.news/s/6viJM
Comments: https://readhacker.news/c/6viJM
Link: https://readhacker.news/s/6viJM
Comments: https://readhacker.news/c/6viJM
Krebs on Security
U.S. Sanctions Cloud Provider ‘Funnull’ as Top Source of ‘Pig Butchering’ Scams
The U.S. government today imposed economic sanctions on Funnull Technology Inc., a Philippines-based company that provides computer infrastructure for hundreds of thousands of websites involved in virtual currency investment scams, commonly known as “pig…
Ask HN: What is the best LLM for consumer grade hardware? (Score: 152+ in 7 hours)
Link: https://readhacker.news/c/6vjDa
I have a 5060ti with 16GB VRAM. I’m looking for a model that can hold basic conversations, no physics or advanced math required. Ideally something that can run reasonably fast, near real time.
Link: https://readhacker.news/c/6vjDa
I have a 5060ti with 16GB VRAM. I’m looking for a model that can hold basic conversations, no physics or advanced math required. Ideally something that can run reasonably fast, near real time.
Microsandbox: Virtual Machines that feel and perform like containers (Score: 152+ in 6 hours)
Link: https://readhacker.news/s/6vjYt
Comments: https://readhacker.news/c/6vjYt
Link: https://readhacker.news/s/6vjYt
Comments: https://readhacker.news/c/6vjYt
GitHub
GitHub - microsandbox/microsandbox: Self-Hosted Plaform for Secure Execution of Untrusted User/AI Code
Self-Hosted Plaform for Secure Execution of Untrusted User/AI Code - microsandbox/microsandbox
Beating Google's kernelCTF PoW using AVX512 (🔥 Score: 153+ in 3 hours)
Link: https://readhacker.news/s/6vkxv
Comments: https://readhacker.news/c/6vkxv
Link: https://readhacker.news/s/6vkxv
Comments: https://readhacker.news/c/6vkxv
anemato.de
Beating the kCTF PoW with AVX512IFMA for $51k
PoW is gone 🦀🦀
MinIO Removes Web UI Features from Community Version, Pushes Users to Paid Plans (Score: 150+ in 7 hours)
Link: https://readhacker.news/s/6vk2N
Comments: https://readhacker.news/c/6vk2N
Link: https://readhacker.news/s/6vk2N
Comments: https://readhacker.news/c/6vk2N
BigGo
MinIO Removes Web UI Features from Community Version, Pushes Users to Paid Plans - BigGo News
MinIO, a popular open-source object storage solution, has made significant changes to its community version that have sparked controversy among users. The company has removed key web-based management features from the free version, directing users to
Triangle splatting: radiance fields represented by triangles (Score: 151+ in 17 hours)
Link: https://readhacker.news/s/6viWJ
Comments: https://readhacker.news/c/6viWJ
Link: https://readhacker.news/s/6viWJ
Comments: https://readhacker.news/c/6viWJ
The 'white-collar bloodbath' is all part of the AI hype machine (Score: 156+ in 8 hours)
Link: https://readhacker.news/s/6vk2X
Comments: https://readhacker.news/c/6vk2X
Link: https://readhacker.news/s/6vk2X
Comments: https://readhacker.news/c/6vk2X
CNN
The ‘white-collar bloodbath’ is all part of the AI hype machine
If the CEO of a soda company declared that soda-making technology is getting so good it’s going to ruin the global economy, you’d be forgiven for thinking that person is either lying or fully detached from reality.
Show HN: Onlook – Open-source, visual-first Cursor for designers (Score: 203+ in 1 day)
Link: https://readhacker.news/s/6vhjP
Comments: https://readhacker.news/c/6vhjP
Hey HN, I’m Kiet – one half of the two-person team building Onlook (https://beta.onlook.com/), an open-source [https://github.com/onlook-dev/onlook/] visual editor that lets you edit and create React apps live on an infinite canvas.
We launched Onlook [1][2] as a local-first Electron app almost a year ago. Since then, “prompt-to-build” tools have blown up, but none let you design and iterate visually. We fixed that by taking a visual-first, AI-powered approach where you can prompt, style, and directly manipulate elements in your app like in a design tool.
Two months ago, we decided to move away from Electron and rewrite everything for the browser. We wanted to remove the friction of downloading hundreds of MBs and setting up a development environment just to use the app. I wrote more here [3] about how we did it, but here are some learnings from the whole migration:
1. While most of the React UI code can be reused, mapping from Electron’s SPA experience to a Next.js app with routes is non-trivial on the state management side.
2. We were storing most of the data locally as large JSON objects. Moving that to a remote database required major refactoring into tables and more loading states. We didn’t have to think as hard about querying and load time before.
3. Iframes in the browser enforce many more restrictions than Electron webview. Working around this required us to inject code directly into the user project in order to do cross-iframe communication.
4. Keeping API keys secure is much easier on a web application than an Electron app. In Electron, every key we leave on the client can be statically accessed. Hence, we had to proxy any SDK we used that required an API key into a server call. In the web app, we can just keep the keys on the server.
5. Pushing a release bundle in Electron can take 1+ hours. And some users may never update. If we had a bug in the autoupdater itself, certain users could be “stranded” in an old version forever, and we’d have to email them to update. Though this is still better than mobile apps that go through an app store, it’s still very poor DX.
How does Onlook for web work?
We start by connecting to a remote “sandbox” [4]. The visual editing component happens through an iframe. We map the HTML element in the iframe to the location in code. Then, when an edit is made, we simulate the change on the iframe and edit the code at the same time. This way, visual changes always feel instant.
While we’re still ironing out the experience, you can already:
- Select elements and prompt changes
- Update TailwindCSS classes via the styling UI
- Draw in new divs and elements
- Preview on multiple screen sizes
- Edit your code through an in-browser IDE
We want to make it trivial for anyone to create, style, and edit codebases. We’re still porting over functionalities from the desktop app — layers, fonts, hosting, git, etc. Once that is done, we plan on adding support for back-end functionalities such as auth, database, and API calls.
Special thank you to the 70+ contributors who have helped create the Onlook experience! I think there’s still a lot to be solved for in the design and dev workflow, and I think the tech is almost there.
You can clone the project and run it from our repo (linked to this post) or try it out at https://beta.onlook.com where we’re letting people try it out for free.
I’d love to hear what you think and where we should take it next :)
[1] https://news.ycombinator.com/item?id=41390449
[2] https://news.ycombinator.com/item?id=40904862
[3] https://docs.onlook.com/docs/developer/electron-to-web-migra...
[4] Currently, the sandbox is through CodeSandbox, but we plan to add support for connecting to a locally running server as well
Link: https://readhacker.news/s/6vhjP
Comments: https://readhacker.news/c/6vhjP
Hey HN, I’m Kiet – one half of the two-person team building Onlook (https://beta.onlook.com/), an open-source [https://github.com/onlook-dev/onlook/] visual editor that lets you edit and create React apps live on an infinite canvas.
We launched Onlook [1][2] as a local-first Electron app almost a year ago. Since then, “prompt-to-build” tools have blown up, but none let you design and iterate visually. We fixed that by taking a visual-first, AI-powered approach where you can prompt, style, and directly manipulate elements in your app like in a design tool.
Two months ago, we decided to move away from Electron and rewrite everything for the browser. We wanted to remove the friction of downloading hundreds of MBs and setting up a development environment just to use the app. I wrote more here [3] about how we did it, but here are some learnings from the whole migration:
1. While most of the React UI code can be reused, mapping from Electron’s SPA experience to a Next.js app with routes is non-trivial on the state management side.
2. We were storing most of the data locally as large JSON objects. Moving that to a remote database required major refactoring into tables and more loading states. We didn’t have to think as hard about querying and load time before.
3. Iframes in the browser enforce many more restrictions than Electron webview. Working around this required us to inject code directly into the user project in order to do cross-iframe communication.
4. Keeping API keys secure is much easier on a web application than an Electron app. In Electron, every key we leave on the client can be statically accessed. Hence, we had to proxy any SDK we used that required an API key into a server call. In the web app, we can just keep the keys on the server.
5. Pushing a release bundle in Electron can take 1+ hours. And some users may never update. If we had a bug in the autoupdater itself, certain users could be “stranded” in an old version forever, and we’d have to email them to update. Though this is still better than mobile apps that go through an app store, it’s still very poor DX.
How does Onlook for web work?
We start by connecting to a remote “sandbox” [4]. The visual editing component happens through an iframe. We map the HTML element in the iframe to the location in code. Then, when an edit is made, we simulate the change on the iframe and edit the code at the same time. This way, visual changes always feel instant.
While we’re still ironing out the experience, you can already:
- Select elements and prompt changes
- Update TailwindCSS classes via the styling UI
- Draw in new divs and elements
- Preview on multiple screen sizes
- Edit your code through an in-browser IDE
We want to make it trivial for anyone to create, style, and edit codebases. We’re still porting over functionalities from the desktop app — layers, fonts, hosting, git, etc. Once that is done, we plan on adding support for back-end functionalities such as auth, database, and API calls.
Special thank you to the 70+ contributors who have helped create the Onlook experience! I think there’s still a lot to be solved for in the design and dev workflow, and I think the tech is almost there.
You can clone the project and run it from our repo (linked to this post) or try it out at https://beta.onlook.com where we’re letting people try it out for free.
I’d love to hear what you think and where we should take it next :)
[1] https://news.ycombinator.com/item?id=41390449
[2] https://news.ycombinator.com/item?id=40904862
[3] https://docs.onlook.com/docs/developer/electron-to-web-migra...
[4] Currently, the sandbox is through CodeSandbox, but we plan to add support for connecting to a locally running server as well
GitHub
GitHub - onlook-dev/onlook: The Cursor for Designers • An Open-Source Visual Vibecoding Editor • Visually build, style, and edit…
The Cursor for Designers • An Open-Source Visual Vibecoding Editor • Visually build, style, and edit your React App with AI - onlook-dev/onlook
Photos taken inside musical instruments (🔥 Score: 154+ in 2 hours)
Link: https://readhacker.news/s/6vm9C
Comments: https://readhacker.news/c/6vm9C
Link: https://readhacker.news/s/6vm9C
Comments: https://readhacker.news/c/6vm9C
DPReview
Probe lenses and focus stacking: the secrets to incredible photos taken inside instruments
Photographer Charles Brooks embarked upon a quest to photograph the inside of musical instruments, creating images that look like monumental buildings.
Making C and Python Talk to Each Other (❄️ Score: 150+ in 3 days)
Link: https://readhacker.news/s/6vakC
Comments: https://readhacker.news/c/6vakC
Link: https://readhacker.news/s/6vakC
Comments: https://readhacker.news/c/6vakC
Substack
Making C and Python Talk to Each Other
How to Use Python in C
Surprisingly Fast AI-Generated Kernels We Didn't Mean to Publish (Yet) (🔥 Score: 150+ in 3 hours)
Link: https://readhacker.news/s/6vm6y
Comments: https://readhacker.news/c/6vm6y
Link: https://readhacker.news/s/6vm6y
Comments: https://readhacker.news/c/6vm6y
The Darwin Gödel Machine: AI that improves itself by rewriting its own code (Score: 150+ in 12 hours)
Link: https://readhacker.news/s/6vjMB
Comments: https://readhacker.news/c/6vjMB
Link: https://readhacker.news/s/6vjMB
Comments: https://readhacker.news/c/6vjMB
sakana.ai
Sakana AI
The Darwin Gödel Machine: AI that improves itself by rewriting its own code
Silicon Valley finally has a big electronics retailer again: Micro Center opens (Score: 150+ in 4 hours)
Link: https://readhacker.news/s/6vmp4
Comments: https://readhacker.news/c/6vmp4
Link: https://readhacker.news/s/6vmp4
Comments: https://readhacker.news/c/6vmp4
Micro Center
Scenes from the Micro Center Santa Clara Grand Opening
Check out the crowds, the fans, and the GPUs at the newest Micro Center store.
Jerry Lewis's “The Day the Clown Cried” discovered in Sweden after 53 years (Score: 151+ in 10 hours)
Link: https://readhacker.news/s/6vm92
Comments: https://readhacker.news/c/6vm92
Link: https://readhacker.news/s/6vm92
Comments: https://readhacker.news/c/6vm92
The National
Controversial 'lost' Jerry Lewis film discovered in Sweden after 53 years | The National
A Swedish actor, who stole a copy in 1980, plans to release The Day The Clown Cried, saying 'it must be seen'
Valkey Turns One: Community fork of Redis (Score: 153+ in 9 hours)
Link: https://readhacker.news/s/6vmp5
Comments: https://readhacker.news/c/6vmp5
Link: https://readhacker.news/s/6vmp5
Comments: https://readhacker.news/c/6vmp5
Momento
Valkey Turns One: How the Community Fork Left Redis in the Dust - Momento
Valkey is not only thriving, but now outperforming Redis 8.0 in real world benchmarks.
Open-sourcing circuit tracing tools (Score: 150+ in 1 day)
Link: https://readhacker.news/s/6vhtP
Comments: https://readhacker.news/c/6vhtP
Link: https://readhacker.news/s/6vhtP
Comments: https://readhacker.news/c/6vhtP
Anthropic
Open-sourcing circuit-tracing tools
Anthropic is an AI safety and research company that's working to build reliable, interpretable, and steerable AI systems.
Show HN: Icepi Zero – The FPGA Raspberry Pi Zero Equivalent (❄️ Score: 150+ in 2 days)
Link: https://readhacker.news/s/6vdz7
Comments: https://readhacker.news/c/6vdz7
I've been hacking away lately, and I'm now proud to show off my newest project - The Icepi Zero!
In case you don't know what an FPGA is, this phrase summarizes it perfectly:
"FPGAs work like this. You don't tell them what to do, you tell them what to BE."
You don't program them, but you rewrite the circuits they contain!
So I've made a PCB that carries an ECP5 FPGA, and has a raspberry pi zero footprint. It also has a few improvements! Notably the 2 USB b ports are replaced with 3 USB C ports, and it has multiple LEDs.
This board can output HDMI, read from a uSD, use a SDRAM and much more. I'm very proud the product of multiple weeks of work. (Thanks for the pcb reviews on r/PrintedCircuitBoard )
(All the sources on github under an open source license :D)
PS. See some more pics on reddit https://www.reddit.com/r/FPGA/comments/1kwxvk8/ive_made_my_f...
Link: https://readhacker.news/s/6vdz7
Comments: https://readhacker.news/c/6vdz7
I've been hacking away lately, and I'm now proud to show off my newest project - The Icepi Zero!
In case you don't know what an FPGA is, this phrase summarizes it perfectly:
"FPGAs work like this. You don't tell them what to do, you tell them what to BE."
You don't program them, but you rewrite the circuits they contain!
So I've made a PCB that carries an ECP5 FPGA, and has a raspberry pi zero footprint. It also has a few improvements! Notably the 2 USB b ports are replaced with 3 USB C ports, and it has multiple LEDs.
This board can output HDMI, read from a uSD, use a SDRAM and much more. I'm very proud the product of multiple weeks of work. (Thanks for the pcb reviews on r/PrintedCircuitBoard )
(All the sources on github under an open source license :D)
PS. See some more pics on reddit https://www.reddit.com/r/FPGA/comments/1kwxvk8/ive_made_my_f...
GitHub
GitHub - cheyao/icepi-zero: ECP5 Development Board in the Raspberry Pi Zero form
ECP5 Development Board in the Raspberry Pi Zero form - cheyao/icepi-zero
AI Responses May Include Mistakes (Score: 151+ in 4 hours)
Link: https://readhacker.news/s/6vmW3
Comments: https://readhacker.news/c/6vmW3
Link: https://readhacker.news/s/6vmW3
Comments: https://readhacker.news/c/6vmW3
Mary Meeker's first Trends report since 2019, focused on AI (Score: 151+ in 15 hours)
Link: https://readhacker.news/s/6vm5D
Comments: https://readhacker.news/c/6vm5D
See also https://www.axios.com/2025/05/30/mary-meeker-trends-report-o....
Link: https://readhacker.news/s/6vm5D
Comments: https://readhacker.news/c/6vm5D
See also https://www.axios.com/2025/05/30/mary-meeker-trends-report-o....
Bondcap
BOND | BOND
BOND is a global technology investment firm that supports visionary founders throughout their entire life cycle of innovation & growth.
Beware of Fast-Math (Score: 151+ in 6 hours)
Link: https://readhacker.news/s/6vn4s
Comments: https://readhacker.news/c/6vn4s
Link: https://readhacker.news/s/6vn4s
Comments: https://readhacker.news/c/6vn4s