4 News Express
This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Saturday, May 2, 2026
Show HN: Use an Android Phone as an HTTP Proxy https://ift.tt/agH6XVD
Show HN: Use an Android Phone as an HTTP Proxy I created a simple project to allow you to use a phone as a web proxy. This is not a proxy for the phone, its a way to proxy web traffic from elsewhere via the phone. One practical use case is accessing geo-restricted content. If you have a trusted contact in the country with an Android phone, this can serve as a simple alternative to a commercial VPN. To set it up you need to run a proxy server which can run as a docker container. You then need to install the app on the Android phone which will connect to the server. Finally you configure a browser to use the proxy server as the HTTP/HTTPS proxy. More details here: https://ift.tt/FpkSEhw Let me know how you go and if you run into any issues. https://ift.tt/lARwhIN May 3, 2026 at 05:44AM
Show HN: State of the Art of Coding Models, According to Hacker News Commenters https://ift.tt/GXO07JB
Show HN: State of the Art of Coding Models, According to Hacker News Commenters Hello HN, I was away from my computer for two weeks, and after coming back and reading the latest discussions on HN about coding assistants (models, harnesses), I felt very out of the loop. My normal process would have been to keep reading and figure out the latest and greatest from people's comments, but I wanted to try and automate this process. Basically the goal is to get a quick overview over which coding models are popular on HN. A next iteration could also scan for harnesses that people use, or info on self-hosting or hardware setups. I wrote a short intro on the page about the pipeline that collects and analyzes the data, but feel free to ask for more details or check the Google Sheet for more info. https://hnup.date/hn-sota https://hnup.date/hn-sota May 3, 2026 at 02:55AM
Show HN: Clipmon is a macOS clipboard manager on steroids https://ift.tt/2CUvF3Z
Show HN: Clipmon is a macOS clipboard manager on steroids https://ift.tt/mytUrvX May 3, 2026 at 01:59AM
Show HN: Rust library for Undo/Redo using deltas, snapshots or commands https://ift.tt/x0UVW3u
Show HN: Rust library for Undo/Redo using deltas, snapshots or commands https://ift.tt/VBRpf3b May 3, 2026 at 12:11AM
Friday, May 1, 2026
Show HN: Destiny – Claude Code's fortune Teller skill https://ift.tt/esyaEmx
Show HN: Destiny – Claude Code's fortune Teller skill Destiny is the Claude Code's plugin that gives you a real fortune reading. Type /destiny to see today's destiny! It uses the actual classical East Asian astrology system. You enter your birthday once, then /destiny gives you today's reading anytime. Two layers, kept honest: 1. The numbers (your eight-character birth chart, today's day pillar, the hexagram for the moment, five-element relationships) are computed by a Python script. Same person + same day = identical output. You can verify against any traditional calendar source. 2. The prose (today's stars, character sketch, life arc, advice) is written by Claude, applying centuries-old reading conventions to that fixed data. Not LLM-hallucinated horoscope. If you have fun with it, a star would mean a lot. https://ift.tt/NBtcVsn May 2, 2026 at 01:26AM
Show HN: GhostBox – Borrow a disposable little machine from the Global Free Tier https://ift.tt/SqLVRIc
Show HN: GhostBox – Borrow a disposable little machine from the Global Free Tier I built this because I was always creating machines on GH actions to test builds on different OS, and I wanted a tight CLI that could do it. I always saw Actions as this great resources and ephemeral machines you could do dev work in just were a natural way for me to work, so this grew out of that workflow. I didn't expect it to blow up, so it wasn't 100% finished when I posted it. But it should stabilize pretty quickly. Happy to know what you think and talk about it. https://ift.tt/E13Wfsx May 1, 2026 at 08:22PM
Show HN: Blotter, a live map of police radio activity https://ift.tt/NrWd8Qc
Show HN: Blotter, a live map of police radio activity https://blotter.fm May 1, 2026 at 11:33PM
Thursday, April 30, 2026
Show HN: Annotate your screen recordings and export to PDF online, no uploads https://ift.tt/Ui8HBRD
Show HN: Annotate your screen recordings and export to PDF online, no uploads https://framepin.com/ May 1, 2026 at 01:47AM
Show HN: Exploding Hamsters https://ift.tt/Ns5Jelh
Show HN: Exploding Hamsters https://ift.tt/rW8YtLH May 1, 2026 at 12:20AM
Wednesday, April 29, 2026
Show HN: A Multi User Multi Task Board MCP Server https://ift.tt/wMKFjJu
Show HN: A Multi User Multi Task Board MCP Server I built a simple multi user, multi board, Task/Kanban MCP server. I have been looking for something like this to manage development agents, but I wasn't seeing anything that felt like what I wanted. So I set down and decided to vibe code an alternative. While it was an experiment at first I have been using it daily for my personal development projects and I really think there are others who might be looking for exactly this. It's 100% a WIP, but it is also very usable. I have a demo instance running at https://mootasks.dev . If you find this interesting I'd appreciate a star. This is really the first thing I built that I felt would be of interest to others. The readme explains it, but if you have docker you can get this running in a couple minutes. It's helped my workflow a lot and I plan on continuing to add features / improve it. https://ift.tt/YXvrp3c April 30, 2026 at 01:11AM
Show HN: Generative UI Library for React https://ift.tt/ui7lsro
Show HN: Generative UI Library for React https://ift.tt/AJnP1xi April 30, 2026 at 12:58AM
Tuesday, April 28, 2026
Show HN: Drive any macOS app in the background without stealing the cursor https://ift.tt/db9OEcK
Show HN: Drive any macOS app in the background without stealing the cursor Hi HN, Francesco from Cua here. I hacked this project together last weekend, inspired by the Codex Computer-Use release and lessons learned from deploying GUI-operating agents for our customers. The main problem: when a UI automation process controls a desktop app today, it usually takes over the human’s session. Your cursor moves, keyboard focus gets stolen, windows jump to the front, and you have to stop working until the agent is done. That is why we have historically avoided encouraging users to run these processes directly on their host machine, instead relying on VMs or GUI containers for concurrency and background execution. But computer-use - the tools we give agents to operate computers like humans - does not scale cleanly that way. As models get smarter, agents need to share hosts safely, run in the background, and avoid collisions with the human or other agents using the same machine. We realized macOS has no first-class API for "drive this app without touching the cursor". CGEventPost routes through the hardware input stream, so it moves your cursor. CGEvent.postToPid avoids the cursor warp, but Chromium treats those events as untrusted and silently drops clicks at the renderer boundary. Activating the target app first raises the window and pulls focus, defeating the point of background execution. Cua Driver is our attempt at a real fix: a background computer-use driver for macOS that lets an agent click, type, scroll, and read native apps while your cursor, frontmost app, and Space stay where they are. The default interface is a CLI, so it is easy to script or call from any coding agent shell. Try it on macOS 14+: /bin/bash -c "$(curl -fsSL https://ift.tt/szqG6MU... )" The first internal use case was delegated demo recording. We ask Claude Code to drive an app while 'cua-driver recording start' captures the trajectory, screenshots, actions, and click markers. The result is an agent-generated product demo, Screen Studio inspired. Other things we have used it for: - Replacing Vercel’s agent-browser and other browser-use CLIs. With Claude Code and Cua Driver, you do not need Chrome DevTools Protocol at all. - A dev-loop QA agent that reproduces a visual bug, edits code, rebuilds, and verifies the UI while my editor stays frontmost. - Personal-assistant flows that use iMessage from Claude Code, Hermes, or other general-purpose agent CLIs. - Pulling visual context from Chrome, Figma, Preview, or YouTube windows I am not looking at, without relying on their APIs. What made this harder than expected: - CGEventPost warps the cursor because it goes through the HID stream. - CGEvent.postToPid does not warp the cursor, but Chromium drops it at the renderer IPC boundary. - Activating the target first raises the window and can drag you across Spaces. - Electron apps stop keeping useful AX trees alive when windows are occluded without a private remote-aware SPI. The unlock was SkyLight. SLEventPostToPid is a sibling of the public per-PID call, but it travels through a WindowServer channel Chromium accepts as trusted. Pair it with yabai’s focus-without-raise pattern, plus an off-screen primer click at (-1, -1), and the click lands without the window ever raising. One thing we learned: the right addressing mode depends on the app. Native macOS apps usually have rich AX trees, Chromium-family apps often need a hybrid of AX and screenshots, and apps like Blender or CAD tools may expose almost no useful AX surface. The mistake is defaulting to pixels everywhere - or defaulting to AX everywhere. Long technical writeup: https://ift.tt/48nvpVC... I would like feedback from people building Mac automation, agent harnesses, or accessibility tooling. If it breaks on an macOS app you care about, that is useful data for us. https://ift.tt/UMPAEOh April 28, 2026 at 09:33PM
Show HN: Open Bias – proxy that enforces agent behavior at runtime https://ift.tt/QuezU9l
Show HN: Open Bias – proxy that enforces agent behavior at runtime https://ift.tt/6vn0jwM April 29, 2026 at 12:02AM
Monday, April 27, 2026
Show HN: Waiting for LLMs Suck – Give your user a game https://ift.tt/lemYrBw
Show HN: Waiting for LLMs Suck – Give your user a game Give your user a game while they wait for the LLM to return a result. https://ift.tt/oD5GFjg April 28, 2026 at 08:15AM
Show HN: PrePrompt – rewrites vague prompts before they reach the LLM https://ift.tt/M8QPNl3
Show HN: PrePrompt – rewrites vague prompts before they reach the LLM https://preprompt.org/ April 28, 2026 at 08:19AM
Show HN: AgentSwift – Open-source iOS builder agent https://ift.tt/jpQbazJ
Show HN: AgentSwift – Open-source iOS builder agent I'm working on a coding agent for building iOS apps. It's built on openspec and xcodebuildmcp. It's free and open source. https://ift.tt/ayU1vRp April 28, 2026 at 06:44AM
Show HN: 49Agents – Infinite canvas IDE for AI agents https://ift.tt/G2oJXO4
Show HN: 49Agents – Infinite canvas IDE for AI agents https://ift.tt/snRje1p April 28, 2026 at 06:06AM
Sunday, April 26, 2026
Show HN: WaveletLM – wavelet-based, attention-free model with O(n log n) scaling https://ift.tt/gSdUNJ4
Show HN: WaveletLM – wavelet-based, attention-free model with O(n log n) scaling WaveletLM is a wavelet-based, attention-free architecture that replaces self-attention with learned lifting wavelet decomposition, a Fast Walsh-Hadamard Transform, per-scale gated spectral mixing with SwiGLU activation, an inverse FWHT, and wavelet reconstruction. Combined with expanded MLPs and sparse product-key memory, this yields a model with O(n log n) scaling in sequence length. With 23.8 PPL on WikiText-103, WaveletLM beats both GPT-2 Medium, which was trained on 80× more data, and Transformer-XL Standard, which uses recurrence to extend its effective context. It is undertrained and underregularized due to budget constraints, so there is much room for development and improvement. I invite anyone who is curious to examine the model, test it out, and extend its capabilities further. All code and weights are fully open source, and a PG-19 run will be completed in 2-3 days. Generations can be done in 4-5 GB VRAM at 28.8 tokens/second, and the model is trainable in 16.25 hours with 20 GB of VRAM, both on a 5090. README for comparison tables, instructions, logs, and future plans: https://ift.tt/jY0IGMQ Weights: https://ift.tt/CWcy6kh Generations: https://ift.tt/ywvfZTE... The following samples were chosen for coherence, not factual accuracy. Factuality will require scaling and downstream techniques such as RAG and instruction tuning. > The history of the city is reflected in its architecture, which includes the historic Old Town and New Castle County Courthouse Square Historic District. The building was designed by John H. Stevens, who also designed the Albany-Fulton Celebration in 1906 and built a steel-hulled shipyard on the lake shore. > The album was released on August 25, 2007 by Sony Music Entertainment and features several songs from the record including "Never Say Die", "The Show", "Don't Cry for Me Argentina" and a cover of "I Can Only Imagine (But You Are Not Alone)". > The species was first described by Swedish zoologist Carl Linnaeus in 1758 as Agaricus adustus. The genus name is derived from the Latin words perma "to tie", and pous ("like") means "with a large head". In 1821, French mycologists Jean-Baptiste de Lacaille placed it in section Cricetae of the order Carnivora. He later renamed it Spongiforma punctata after the Greek kribensis. https://ift.tt/jY0IGMQ April 26, 2026 at 11:18PM
Subscribe to:
Posts (Atom)
Show HN: Use an Android Phone as an HTTP Proxy https://ift.tt/agH6XVD
Show HN: Use an Android Phone as an HTTP Proxy I created a simple project to allow you to use a phone as a web proxy. This is not a proxy f...
-
Show HN: A directory of 800 free APIs, no auth required Explore reliable free APIs for developers — ideal for web and software development, ...
-
Show HN: I built Dirac, Hash Anchored AST native coding agent, costs -64.8 pct Fully open source, a hard fork of cline. Full evals on the gi...
-
Show HN: I built a FOSS tool to run your Steam games in the Cloud I wanted to play my Steam games but my aging PC couldn’t keep up, so I bui...