frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Math for Journalists

https://observablehq.com/@nshiab/math-for-journalists
1•speckx•3m ago•0 comments

Aulico – Track all markets in one place using AI

https://www.aulico.com/
1•local_phi•4m ago•0 comments

Beginners Can Get Started in Futures Trading in 2025

https://propfirmfutures.com/
1•malavika_manoj•4m ago•1 comments

Ask HN: Interrupt Processing at the Microoperations Level?

1•shivajikobardan•5m ago•0 comments

Nano Banana – AI Image Editing, Powered by Google Gemini

https://nanobanana.cool
1•Jenny249•5m ago•1 comments

Enable --strict by default

https://github.com/microsoft/TypeScript/issues/62333
2•Vinnl•5m ago•0 comments

Automated daily Quordle solver using an LLM

https://flowtwo.io/daily-quordle-solver.html
1•thejoeflow•5m ago•0 comments

Encyclopaedia Brittanica, Inc. v. Perplexity AI, Inc [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.nysd.649196/gov.uscourts.nysd.649196.1.0.pdf
1•1vuio0pswjnm7•7m ago•0 comments

ARM is great, ARM is terrible (and so is RISC-V)

https://changelog.complete.org/archives/10858-arm-is-great-arm-is-terrible-and-so-is-risc-v
1•colejohnson66•7m ago•0 comments

Show HN: Send SMS from your own Android phone via API

https://www.simgate.app/
1•nikola470•8m ago•0 comments

White House Exerts Enormous Influence over FBI, Lawsuit Says

https://www.nytimes.com/2025/09/10/us/politics/trump-fbi-lawsuit.html
3•JumpCrisscross•8m ago•0 comments

Track the level of the piss tank on the International Space Station in real time

https://bsky.app/profile/iss-piss-tracker.bsky.social
2•mooreds•9m ago•0 comments

RSL: A New Standard to Make AI Pay for the Content It Consumes

https://hostvix.com/rsl-a-new-standard-to-make-ai-pay-for-the-content-it-consumes/
1•dweinus•9m ago•2 comments

Next.js 15.5: some perf improvements but serious regressions

https://www.catchmetrics.io/blog/nextjs-webpack-vs-turbopack-performance-improvements-serious-reg...
4•martinald•10m ago•0 comments

An ER Trip in Ireland Taught Me Why Convex Is Saving Startups from Themselves

https://hackerpug.ghost.io/how-an-er-trip-in-ireland-taught-me-why-convex-is-saving-startups-from...
1•mooreds•12m ago•0 comments

Orc Protocol: Heavier than IRC, lighter than XMPP

https://github.com/RickCarlino/orc-protocol
3•rickcarlino•14m ago•0 comments

Designing user interfaces with bots not buttons

https://interconnected.org/home/2022/05/09/npcs
1•andsoitis•17m ago•0 comments

Show HN: YouStory – A personalized storybook agent that outperforms Gemini's

https://youstory.io/en
1•hr98w•17m ago•0 comments

Journey to 2-second Inter-node RL Weight Transfer

https://le.qun.ch/en/blog/2025/09/07/rl-weight-transfer/
1•cjbarber•18m ago•0 comments

How to build a server-less web app with charts

https://blog.engora.com/2025/09/building-server-less-web-apps.html
1•Vermin2000•18m ago•1 comments

Visual Studio Code August 2025

https://code.visualstudio.com/updates/v1_104
1•soheilpro•23m ago•0 comments

AI pricing is currently in a state of 'pandemonium' says Gartner

https://www.theregister.com/2025/09/10/ai_software_licensing_immature/
1•rntn•24m ago•0 comments

Toolkit to help you get started with Spec-Driven Development

https://github.com/github/spec-kit
1•harrisreynolds•26m ago•0 comments

Show HN: Random Meme Generator – A Fun, Lightweight Web App

https://my-memes-omega.vercel.app/
1•rocky101•28m ago•0 comments

Paying for 20 Years, banned overnight for 'cheating' I didn't do

6•succo•30m ago•0 comments

Why can recv() in client program receive messages even after calling shutdown()?

https://stackoverflow.com/questions/39698037/why-can-recv-in-the-client-program-receive-messages-...
2•susam•30m ago•0 comments

An Engineering History of the Manhattan Project

https://www.construction-physics.com/p/an-engineering-history-of-the-manhattan
5•rbanffy•34m ago•0 comments

Strategies for Converting OpenAPI Specs into MCP Servers

https://hackteam.io/blog/stop-converting-openapi-specs-mcp-servers/
1•gethackteam•34m ago•0 comments

Playing the Field with My A.I. Boyfriends

https://www.newyorker.com/magazine/2025/09/15/playing-the-field-with-my-ai-boyfriends
2•fortran77•35m ago•0 comments

API Testing Services – Ensure Quality, Performance and Security

https://www.kellton.com/services/api-testing-services
2•Priyasinhakt•35m ago•0 comments
Open in hackernews

Show HN: FSP2 Tested on excerpt "Romeo and Juliet" impressive compresion results

2•Forgret•2h ago
Hi HN, I want to share my updated FSP (Find Similar Patterns) v2 text compression algorithm. I tested it on a non-trivial excerpt from Romeo and Juliet, and it achieved impressive results: original size 437 bytes, compressed size 358 bytes, compression ratio 1.22. Unlike traditional methods like LZMA or Huffman, FSP v2 searches for repeating 3–5 character patterns, storing references (REF) alongside literal characters (LITERAL). This allows it to compress real-world text, maintain lossless decompression, and achieve compressed sizes smaller than the original. The algorithm works on any byte stream or text and can scale to larger files, potentially outperforming classical compression on texts with repetitive or near-repetitive patterns. Code and implementation details are available upon request.

GitHub: https://github.com/Ferki-git-creator/fsp

Website(more info): https://ferki-git-creator.github.io/fsp/

If I made a mistake somewhere, please tell me.

Comments

southwindcg•1h ago
Before we say too much about the performance of your algorithm, encoding/decoding speed and memory use must be considered, especially with very large inputs.

Note that on this particular small sample of text, Zstandard `zstd -13` compresses it to 288 bytes, and with default settings, 292 bytes. Brotli using default settings compresses it to 236 bytes.

Forgret•1h ago
Thanks, you’re absolutely right — performance needs to be tested on large inputs with proper speed and memory profiling. I’ll run FSP on bigger datasets and compare it directly with zstd, brotli, gzip, etc. If needed, I’ll improve the algorithm to reduce overhead and make it scale better. This was just an early proof-of-concept, but I agree the next step is serious benchmarking.
southwindcg•1h ago
You've got some stiff competition out there, with companies like Google and Facebook funding development of these algorithms. I think the days of individual coders surpassing the current state of the art are gone. It's in the interest of companies that move huge amounts of data to be as efficient at it as possible.

It's definitely interesting that your method competes with Zip and such though. Keep it up!

Forgret•1h ago
Thanks for the inspiration! I realize it’s probably crazy to think my algorithm could ever become universally needed, but I’m not giving up. Even if it doesn’t turn into something as large-scale as I once dreamed, I believe it can still lead to something useful — and the journey itself is worth it.