frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Craigslist: The Eternal Startup That Refused to Grow Up

https://brajeshwar.com/2025/craigslist/
1•furkansahin•7m ago•0 comments

From candles to electrons: changing lighting sources in the United Kingdom

https://ourworldindata.org/data-insights/from-candles-to-electrons-changing-lighting-sources-in-t...
1•kamaraju•9m ago•0 comments

Cznull

https://cznull.org/
1•jsonchao•12m ago•1 comments

Disney's Abrupt Decision to Suspend Jimmy Kimmel's Show

https://www.wsj.com/business/media/jimmy-kimmel-decision-behind-the-scenes-e1ecbbf2
1•doener•14m ago•1 comments

FreeBSD vs. SmartOS: Who's Faster for Jails, Zones, and Bhyve VMs?

https://it-notes.dragas.net/2025/09/19/freebsd-vs-smartos-whos-faster-for-jails-zones-bhyve/
1•todsacerdoti•16m ago•0 comments

FreeBSD vs. SmartOS: Who's Faster for Jails, Zones, and Bhyve VMs?

https://it-notes.dragas.net/2025/09/19/freebsd-vs-smartos-whos-faster-for-jails-zones-bhyve/
1•Bogdanp•16m ago•0 comments

Abu Dhabi set to become the first AI-Powered government by 2027

https://www.cio.com/article/3812023/abu-dhabi-set-to-become-the-worlds-first-fully-ai-powered-gov...
1•mpweiher•17m ago•0 comments

Is It Time to Un-Sass?

https://css-tricks.com/is-it-time-to-un-sass/
2•rapawel•20m ago•0 comments

1 in 5 organizations vibe coded applications are vulnerable to systematic risks

https://www.wiz.io/blog/common-security-risks-in-vibe-coded-apps
1•galnagli•20m ago•0 comments

How to Integrate Account Abstraction (ERC-4337 and ERC-7579)

https://medium.com/etherspot/how-to-integrate-account-abstraction-erc-4337-erc-7579-with-etherspo...
1•emvesper•21m ago•0 comments

Show HN: Instorier – A story-first website builder. AI-optional, bootstrapped

https://instorier.com/
1•danielskogly•26m ago•0 comments

Cocktail Party Ideas

https://danluu.com/cocktail-ideas/
1•SoKamil•30m ago•0 comments

Python 3.14-Rc3 Released Ahead of Next Month's Official Release

https://www.phoronix.com/news/Python-3.14-rc3-Released
1•Qem•32m ago•0 comments

DiceCTF 2024 qualifications Calculator Writeup

https://www.justus.pw/writeups/dicectf-2024/calculator.html
1•furkansahin•33m ago•0 comments

Command Line Interface Guidelines

https://clig.dev/
1•NullCascade•35m ago•1 comments

Hyundai Design Boss Asks: 'Why Do We Need a Screen?'

https://www.motor1.com/news/772618/hyundai-no-touchscreens-future-design/
3•nixass•37m ago•1 comments

Hired Through GitHub

https://zed.dev/blog/hired-through-github-part-1
1•logdahl•38m ago•0 comments

Show HN: Progressive and Transparent Lotteries on Ethereum

https://cryptomillions.substack.com/p/introducing-cryptomillions
2•allmanac•39m ago•0 comments

Samsung Color E-Paper Smart Signage

https://www.samsung.com/us/business/smart-signage/others/32inch-eemdx-series-color-e-paper-qhd-sm...
2•anuvrat1•42m ago•1 comments

The Panic of 1873

https://en.wikipedia.org/wiki/Panic_of_1873
2•Mistletoe•46m ago•0 comments

Filmmaker Tries to Unmask Private Torrent Tracker Owners Through Cloudflare

https://torrentfreak.com/filmmaker-tries-to-unmask-private-torrent-tracker-owners-through-cloudfl...
2•caution•46m ago•0 comments

Igniting VLMs Toward the Embodied Space

https://arxiv.org/abs/2509.11766
1•NeoInHacker•47m ago•0 comments

Dolphin Progress Release 2509

https://dolphin-emu.org/blog/2025/09/16/dolphin-progress-report-release-2509/
2•turbohz•49m ago•0 comments

PowerShell

https://www.duckduckgo.com
1•ptrvan•53m ago•1 comments

Memory Allocation in Go

https://nghiant3223.github.io/2025/06/03/memory_allocation_in_go.html
1•begoon•57m ago•0 comments

Show HN: FLM- Audio, our 7B spoken dialog chatbot with native full-duplexity

1•BAAIBeijing•58m ago•0 comments

Figma Rendering: Powered by WebGPU Blog

https://www.figma.com/blog/figma-rendering-powered-by-webgpu/
1•tosh•1h ago•0 comments

Ask HN: What's solution to periodic Deep Research using LLM?

1•j1000•1h ago•0 comments

Ruby Central's Attack on RubyGems [pdf]

https://pup-e.com/goodbye-rubygems.pdf
12•jolux•1h ago•1 comments

Nvidia just spent over $900M on Enfabrica CEO, technology licenses

https://www.cnbc.com/2025/09/18/nvidia-spent-over-900-million-on-enfabrica-ceo-ai-startup-technol...
1•michaelnoguera•1h ago•1 comments
Open in hackernews

Testing a new rate-limiting service – feedback welcome

2•0megion•1h ago
Hey all,

I’m building a project called Rately. It’s a rate-limiting service that runs on Cloudflare Workers (so at the edge, close to your clients).

The idea is simple: instead of only limiting by IP, you can set rules based on your own data — things like:

- URL params (/users/:id/posts → limit per user ID)

- Query params (?api_key=123 → limit per API key)

- Headers (X-Org-ID, Authorization, etc.)

Example:

Say your API has an endpoint /user/42/posts. With Rately you can tell it: “apply a limit of 100 requests/min per userId”.

So user 42 and user 99 each get their own bucket automatically. No custom nginx or middleware needed.

It has two working modes:

- Proxy mode – you point your API domain (CNAME) to Rately. Requests come in, Rately enforces your limits, then forwards to your origin. Easiest drop-in.

``` Client ---> Rately (enforce limits) ---> Origin API ```

- Control plane mode – you keep running your own API as usual, but your code or middleware can call Rately’s API to ask “is this request allowed?” before handling it. Gives you more flexibility without routing all traffic through Rately.

``` Client ---> Your API ---> Rately /check (allow/deny) ---> Your API logic ```

I’m looking for a few developers with APIs who want to test it out. I’ll help with setup .

Comments

galaxy_gas•1h ago
I can't see myself ever using this unless self hosted as library with no phonehome . remote internet API call every time when I am getting millions of rps is intolerable
0megion•58m ago
That is fair. Maybe Proxy mode would be a way to go in this case? Instead of calling another API, you can pass through your requests, and only a small amount can reach your origin.
galaxy_gas•1m ago
CF Worker its pay per req isnt it ? This seems impossibly expensive to proxy