frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Digest.tube – skim YouTube videos like articles

https://digest.tube/
1•tufan_gokova•29s ago•0 comments

Creating "Edit" Links That Open Plain-Text Source Files in a Native App

https://blog.jim-nielsen.com/2026/os-as-cms/
1•speckx•1m ago•0 comments

Show HN: WhatsApp Group Contact Extractor - Paste JS, get group contacts .tsv

https://github.com/Mb-hunt/WhatsApp-Contact-Extractor
1•mb_hunt•2m ago•0 comments

Deploying Open Source Vision Language Models (VLM) on Jetson

https://huggingface.co/blog/nvidia/cosmos-on-jetson
1•ibobev•2m ago•0 comments

Show HN: HN Digest Widget – Nothing Essential Lab S1 Winner

https://twitter.com/essential/status/2026712111846408359
1•kuberwastaken•3m ago•0 comments

LLM-LD, the Open Standard for AI-Readable Websites

https://llmld.org/
1•bhartzer•3m ago•0 comments

Sutton and Barto, Ch. 08: Planning and Learning with Tabular Methods

https://chizkidd.github.io//2026/02/24/rl-sutton-barto-notes-ch008/
1•ibobev•4m ago•0 comments

Fish Shell 4.0 released. Rust re write finished

https://fishshell.com/blog/new-in-40/
2•death916•4m ago•1 comments

Show HN: BountyBook – A task marketplace where AI agents earn USDC

https://www.bountybook.ai/
2•patrulo•4m ago•0 comments

What Virtual Worlds Can Learn from the Social Serendipity of Arc Raiders

https://wjamesau.substack.com/p/what-virtual-worlds-can-learn-from
1•SLHamlet•5m ago•0 comments

Show HN: VibeFrame – AI video editor for the terminal (CLI and MCP)

https://github.com/vericontext/vibeframe
3•kiyeonjeon•6m ago•0 comments

NASA says it needs to haul the Artemis II rocket back to the hangar for repairs

https://arstechnica.com/space/2026/02/nasa-says-it-needs-to-haul-the-artemis-ii-rocket-back-to-th...
2•JumpCrisscross•6m ago•0 comments

Hospitals fighting measles confront a challenge: Few doctors have seen it before

https://www.cnn.com/2026/02/25/health/measles-doctors-states
2•mooreds•6m ago•0 comments

Humanity's Last Exam

https://stories.tamu.edu/news/2026/02/25/dont-panic-humanitys-last-exam-has-begun/
2•geox•8m ago•0 comments

Fixing Slow AWS Uploads

https://pierce.dev/notes/fixing-slow-aws-uploads
2•speckx•11m ago•0 comments

Show HN: Raindrop Self Diagnostics: let agents self-report issues

https://twitter.com/benhylak/status/2026712861666587086
2•alexisgauba•11m ago•0 comments

Toilet Map [UK]

https://www.toiletmap.org.uk
2•petecooper•11m ago•0 comments

From Jamstack to CAMstack – Bridging the Content Gap

https://www.sleekcms.com/blog/from-jamstack-to-camstack
2•yusufnb•12m ago•1 comments

The Pentagon Threatens Anthropic

https://www.astralcodexten.com/p/the-pentagon-threatens-anthropic
3•lukeplato•13m ago•0 comments

The Myth of the Chad

https://www.wsj.com/opinion/free-expression/the-myth-of-the-chad-b7626d85
2•rsecora•13m ago•0 comments

om

https://www.om-language.com/
3•tosh•14m ago•0 comments

Fentanyl or phony? Machine learning algorithm learns opioid signatures

https://phys.org/news/2026-02-fentanyl-phony-machine-algorithm-opioid.html
2•PaulHoule•14m ago•0 comments

Time-Travel Debugging: Replaying Production Bugs Locally

https://lackofimagination.org/2026/02/time-travel-debugging-replaying-production-bugs-locally/
2•tie-in•14m ago•0 comments

Show HN: Djevops – Deploy Django Easily

https://github.com/mherrmann/djevops
3•mherrmann•15m ago•0 comments

A federal experiment opens up a new market for digital health – if it works

https://endpoints.news/a-federal-experiment-opens-up-a-new-market-for-digital-health-if-it-works/
1•brandonb•15m ago•0 comments

Aletheia Tackles FirstProof Autonomously

https://arxiv.org/abs/2602.21201
2•in-silico•15m ago•0 comments

Show HN: Mamba3-minimal – PyTorch implementation of Mamba-3

https://github.com/VikramKarLex/mamba3-minimal
1•vikramkarlex•17m ago•0 comments

Show HN: DRYwall – Claude Code plugin to to deduplicate code with jscpd

https://github.com/nikhaldi/drywall
2•nikhaldi•18m ago•0 comments

Stylometry Protection (Using Local LLMs)

https://bible.beginnerprivacy.com/opsec/stylometry/
1•Cider9986•20m ago•0 comments

Surfboard Makers

https://miren.dev/blog/surfboard-makers
1•veverkap•20m ago•1 comments
Open in hackernews

Show HN: ShouldISwap – Compare crypto pair rates against historical averages

https://shouldiswap.com/
2•Herbyg•1h ago
Hey HN,

I built ShouldISwap (https://shouldiswap.com) — a free tool that compares the conversion rate between any two cryptocurrencies against their historical average. Pick two coins, pick a timeframe (7-365 days), and it tells you whether today's rate is above, below, or near the mean, plus where it sits in the 52-week range as a percentile.

How it works: Fetch 365-day price histories for both coins from CoinGecko, compute the pairwise conversion rate per day, calculate the mean for the selected period, and compare. A sliding window across the full year computes the historical best/worst deviations to give a "signal strength" — not just "above average" but how significant the deviation is relative to what's been seen all year.

Stack: Node.js + Express 5, React 19 + Vite 7, Tailwind CSS 4. No TypeScript. No database — fully stateless with three-tier in-memory caching (60s/5min/1hr). Each comparison makes 4 CoinGecko API calls (down from 6) by fetching 365-day history once and slicing per timeframe. Chart.js lazy-loaded (~173KB on demand). 66KB gzipped initial load. Single Docker container on Google Cloud Run.

Lighthouse: 99 Performance, 100 Accessibility, 100 Best Practices, 100 SEO.

Honest limitations: Depends entirely on CoinGecko's API. In-memory cache means no horizontal scaling without Redis. Signals are statistical comparisons against history, not predictions — it tells you where you are, not where things are going.

Would appreciate feedback on the architecture, the signal calculation, or the UX. Source isn't public yet but happy to discuss implementation.