HN user

nthypes

276 karma
Posts32
Comments57
View on HN
twitter.com 4mo ago

Trump directs all federal agencies to cease use of Anthropic products

nthypes
5pts1
martinfowler.com 5mo ago

The Future of AI Software Development

nthypes
202pts142
mercurialsolo.substack.com 5mo ago

We Are the Average of Our Models

nthypes
1pts0
developer.chrome.com 5mo ago

Google Chrome: WebMCP is available for early preview

nthypes
4pts0
nodejs.org 5mo ago

Single Executable Applications in Node.js (v25. 5.0)

nthypes
1pts0
www.cve.org 5mo ago

Multiple vulnerabilities in React Server Components (CVE-2026-23864)

nthypes
2pts1
news.ycombinator.com 6mo ago

Multi-tenant SaaS is dead for mid-market (and why K8s namespaces are the future)

nthypes
1pts0
news.ycombinator.com 6mo ago

Ask HN: Why did forum culture die?

nthypes
8pts5
news.ycombinator.com 7mo ago

How is Google's AI Mode so fast and so good?

nthypes
5pts0
news.ycombinator.com 8mo ago

A logging loop in GKE cost me $1,300 in 3 days – 9.2x my actual infrastructure

nthypes
9pts4
imgur.com 8mo ago

GCP charged $1.3k for stdout logs (9x my cluster cost). Refund denied twice

nthypes
2pts2
news.ycombinator.com 8mo ago

I spent $900 on AI coding agents in 8 weeks

nthypes
3pts2
news.ycombinator.com 8mo ago

I spent $638 on AI coding agents in 6 weeks.

nthypes
1pts8
news.ycombinator.com 9mo ago

Ask HN: Who is Buying? (October 2025)

nthypes
6pts1
twitter.com 1y ago

Agent Mode Is Available on VSCode

nthypes
5pts0
www.scmp.com 1y ago

800x Speed Boost on Nvidia GPUs

nthypes
10pts5
twitter.com 2y ago

Health Checking Urinals in Shanghai Public Bathrooms

nthypes
1pts0
news.ycombinator.com 2y ago

Does Sturgeon's Law Apply to Datasets?

nthypes
2pts0
github.com 2y ago

Google to Discontinue Skaffold

nthypes
7pts2
kwharrison13.com 2y ago

The Unbundling of Venture Capital

nthypes
1pts0
taylor.town 2y ago

Frugly vs. Freemium

nthypes
234pts62
codeplot.co 2y ago

Codeplot – Infinite Board for Python Data Exploration

nthypes
1pts1
antl3x.co 2y ago

Today I Decided to Create a Tool That I Always Wanted

nthypes
1pts1
github.com 2y ago

Show HN: Codeplot – A Dynamic, Interactive Canvas for Python Data Visualization

nthypes
3pts0
news.ycombinator.com 2y ago

Ask HN: Do you prefer to learn by watching videos or by reading books/articles?

nthypes
4pts6
github.com 2y ago

Functional Domain Modeling with TypeScript

nthypes
2pts0
blog.normalcomputing.ai 2y ago

RegEx Guided LLM Generation

nthypes
1pts0
uing.app 3y ago

Show HN: UING – Complex Queries on Local CSV Files Using LLM

nthypes
1pts0
github.com 4y ago

Receive and send money through GitHub comments

nthypes
2pts0
github.com 4y ago

Send and receive money through GitHub comments

nthypes
3pts1

Meta is no different. I know a company that had their OAuth app on Meta rendered completely unusable just because one of their employees (a dev) had their personal Facebook account banned by Meta for no reason. They tried to escalate it multiple times but got nowhere, lol. Meta is even worse because accounts need to be 'personal'; if you have a Business Manager, the users added to it are all tied to their personal Meta/Facebook accounts. This is ludicrous.

GPT-5.4 5 months ago

Just to clarify,the pricing above is for GPT-5.4 Pro. For standard here is the pricing:

$2.5/M Input Tokens $15/M Output Tokens

GPT-5.4 5 months ago

Gemini 3.1 Pro

$2/M Input Tokens $15/M Output Tokens

Claude Opus 4.6

$5/M Input Tokens $25/M Output Tokens

GPT-5.4 5 months ago

$30/M Input and $180/M Output Tokens is nuts. Ridiculous expensive for not that great bump on intelligence when compared to other models.

Published: 2026-01-26 Updated: 2026-01-26 Description Multiple denial of service vulnerabilities exist in React Server Components, affecting the following packages: react-server-dom-parcel, react-server-dom-turbopack, react-server-dom-webpack. The vulnerabilities are triggered by sending specially crafted HTTP requests to Server Function endpoints, and could lead to server crashes, out-of-memory exceptions or excessive CPU usage; depending on the vulnerable code path being exercised, the application configuration and application code. Strongly consider upgrading to the latest package versions to reduce risk and prevent availability issues in applications using React Server Components.

Last month, a single container in my GKE cluster (Sao Paulo region) entered an error loop, outputting to stdout at ~2k logs/second.

I discovered the hard way that GKE's default behavior is to ingest 100% of this into Cloud Logging with no rate limiting. My bill jumped nearly 1000% before alerts caught it.

Infrastructure (Compute): ~$140 (R$821 BRL) Cloud Logging: ~$1,300 (R$7,554 BRL)

Ratio: Logging cost 9.2x the actual servers.

https://imgur.com/jGrxnkh

I fixed the loop and paused the `_Default` sink immediately.

I opened a billing ticket requesting a "one-time courtesy adjustment" for a runaway resource—standard practice for first-time anomalies on AWS/Azure.

I have been rejected twice.

The latest response: "The team has declined the adjustment request due to our internal policies."

If you run GKE, the `_Default` sink in Log Router captures all container stdout/stderr.

There is NO DEFAULT CAP on ingestion volume which is an absurd!

A simple while(true); do echo "error"; done can bankrupt a small project.

Go to Logging -> Log Router. Edit _Default sink.

Add an exclusion filter: resource.type="k8s_container" severity=INFO (or exclude specific namespaces).

Has anyone successfully escalated a billing dispute past Tier 1 support recently?

It seems their policy is now to enforce full payment even on obvious runaway/accidental usage.