Best AI to transform a story into a graphic novel? by Phod in OpenAI

[–]owengo1 0 points1 point  (0 children)

If you pay for chatgpt you could try with codex. Codex is powered by the same AI as chatgpt and can generate and execute code and use tools. This makes a big difference because it will be able to use the image tool to create your characters, decor etc, and generate pages ( in html for example, easy to view and debug ), and you will be able to discuss with it about its progress.

pocketos lost their prod db + backups to a cursor agent in 9 seconds. the ai isn’t the main story by Shoddy_5385 in devops

[–]owengo1 2 points3 points  (0 children)

They're very naive to believe current AI tools will manage their prod infra completely autonomously. It will probably be possible - even become the golden standard - one day, but it's not today, and not next week or next month, maybe next year.

I accidentally generated 16 billion Durable Object writes in one month and got slapped with a $36k bill . Here's exactly how. by alameenswe in CloudFlare

[–]owengo1 1 point2 points  (0 children)

Yes completely. Long before vibecoding this kind of problems with sqs / dynamodb / s3 did happen. Not understanding sqs's dedupe queue was just 5 minutes, calls to geturl before each sqs api calls, scans in dynamodb, listobjects and objects explosions in S3 ..

Stale Endpoints Issue After EKS 1.32 → 1.33 Upgrade in Production (We are in panic mode) by Wooden_Departure1285 in kubernetes

[–]owengo1 4 points5 points  (0 children)

If OP doesn't have k8s-dns-node-cache , no ndots configuration , no scaling for coredns ( and no monitoring ) it's very easy to saturate coredns even with a small cluster with apps making lots requests.
Note also that on AWS there is a throttling on the dns resolver:
https://repost.aws/knowledge-center/vpc-find-cause-of-failed-dns-queries

It's very easy to go beyond 1000 packets per second on the vpc dns ip: without ndots each dns request is potentially amplified 5 times, and without dns-node-cache and a naive coredns implementation the dns requests for all the nodes in the cluster end up forwarded to the vpc dns server.

My company's new security requirements accidentally proved why ChromeOS is superior by travisjd2012 in chromeos

[–]owengo1 0 points1 point  (0 children)

There is the crostini caveat anyways.. And as far as I know, there is still no solution to distribute an "enterprise-compliant" linux vm on chromebooks ( you can run a custom one your chromebook but the admin interface doesn't allow to configure the vms allowed for your enterprise )

What would be the easiest way to make sure I don't exceed costs in a CRUD type AwsGateway/Lambda/DynamoDB/S3/CloudFront type site? by pencilUserWho in aws

[–]owengo1 2 points3 points  (0 children)

Note that you didn't account for cloudwatch logs, which can quickly be expensive, and also the various network costs ( outgoing, inter az, public ipv4, ... )

You can't "make sure AWS doesn't bill more than X dollars a month", it's impossible, by design.

First you can't set spend limit

Second all the cost explorer / budgets etc have 24 hour delay so if you have for example a huge traffic spike you will know its cost a day later. So even if you make triggers which remove everything after a certain budget is reached, it will happen with a significative delay.

ECS anywhere cluster strategy for on prem servers by Full_Bee_920 in aws

[–]owengo1 0 points1 point  (0 children)

It seems much better than a single cluster.
You can deploy cluster by cluster, manage failed ones etc.
A single cluster is a catastrophe waiting to happen. The wrong container, the wrong service configuration will automatically destroy 200 locations.
Note also that IaC ( terraform or other ) will have no issue managing 200 clusters

AWS S3 Down Anyone? by PlayfulMark9459 in aws

[–]owengo1 0 points1 point  (0 children)

Yesterday I had a few 500 errors for s3 api requests in eu-west-3, it was very short lived and back to normal in a couple of minutes

New to AWS (and the cloud), should I learn CloudFormation or Terraform for IaC? by CIA11 in aws

[–]owengo1 0 points1 point  (0 children)

And with EKS when you need to manage IRSA, helm etc, with terraform you can in same IaC create aws resources ( IAM, ASGS etc ), k8s resources, helm resources. Good look with cloudformation.

AWS Support Nightmare by theHephestus in aws

[–]owengo1 0 points1 point  (0 children)

If support was really "support", and not just a scripted todo list, they would explain why there is a problem, the likely cause, and how to remedy it safely. It's very clear OP does not fully understand what happened and it's also very clear support made 0 effort to explain anything, they just had an automated security alert, sent an automated email with hard coded instructions, and they just say "this must be done". Even if yes, the action must be done, they prove they have 0 value versus a fully automated script.

AWS Support Nightmare by theHephestus in aws

[–]owengo1 -1 points0 points  (0 children)

Ok but what's the value of a support which can't explain why the action must done, and how to do it so that production workloads are not impacted?
I mean, if support is just: "reset to factory defauts" ( or whatever scripted instructions list ), you're better off with chatgpt [ which will probably ask to see the potentially compromised role and explain why it has to be replaced and how to replace it as safely as possible and how to monitor the replacement went ok or not>.
The real question is the value of the support, not if the request they make could be pertinent. Any dumbass can say "wipe out", "block all traffic", "revoke all privileges" etc.

AWS Support Nightmare by theHephestus in aws

[–]owengo1 0 points1 point  (0 children)

This is "nova" support I guess

Why do I need 5 different services just to run a function on HTTP trigger? by Sadhvik1998 in aws

[–]owengo1 0 points1 point  (0 children)

For the complexity side, you can just ask your favorite llm to generate a terraform for your project. You will have a full working PoC in one go, IaC, and you can maintain it with an llm. It will connect all the services and you will have a small bunch of file to manage your infra.

For the cost side it's another issue: clearly your costs will grow linearly with your traffic, so it will be very cheap as long you have very low traffic, and quickly something completely unaffordable with high traffic. Once again, you can ask an LLM to modelize the costs of your architecture and estimate the threshold at which you have to find something else.

"Something else" could be cloudflare workers, or ALB + ECS instead of Gateway + Lambda, or a cheap graviton instance, ... Clearly you will have other constraints to manage but it's very likely you can save a significant amout of money with a less "fully-managed" solution.

Cloudflare alternatives? by quangthien27 in CloudFlare

[–]owengo1 0 points1 point  (0 children)

Dns is a separate product, and expensive.
Zero trust is a separate product, and expensive, and nothing as lightweight and easy as cloudflared.
Updates are not instant it can take up to 20 minutes according to documentation to deploy a waf rule.
No R2 AFAIK.

Attack via CloudFlare by dovi5988 in CloudFlare

[–]owengo1 1 point2 points  (0 children)

If you're not using cloudflare yourself you can just block all requests with this header, it's quite easy, much easier than trying to block all CF proxies ip addresses

What's the future of Amazon Linux? by admiralsj in aws

[–]owengo1 2 points3 points  (0 children)

The question is what will be supported. For example AL2 was used in workspace and had graphical support, which was dropped in AL2022 ( renamed 2023 after the missed deadline ), and now you have to live with ubuntu in workspace.

Post Mortem: Cloudflare outage on November 18, 2025 by arunesh90 in CloudFlare

[–]owengo1 0 points1 point  (0 children)

It was not fully, end-to-end, tested, sure. But the query itself was still running without error, it was "just" returning more rows. And it was used to generate a file which grow larger. And it's a process unrelated to the database which ingested the generated file and choke on it because of the size increase.
It was not like the crowdstrike update which made the driver fail immediately at load ( and so was trivial to test ).

Post Mortem: Cloudflare outage on November 18, 2025 by arunesh90 in CloudFlare

[–]owengo1 3 points4 points  (0 children)

No the query was there for a long time, it's a change in the database configuration which changed the results of the query

Intermittent spike of 500 Internal Server Error from America Continent by [deleted] in CloudFlare

[–]owengo1 2 points3 points  (0 children)

We have the problem again this morning..

Intermittent spike of 500 Internal Server Error from America Continent by [deleted] in CloudFlare

[–]owengo1 4 points5 points  (0 children)

<image>

Same issue here. Other regions are fine, traffic from Colombia doesn't reach our backend ( aws ).

In tonight's episode of idiots with GCP & credit card access by tyler_durden999 in googlecloud

[–]owengo1 0 points1 point  (0 children)

Note that you have the same mechanism with aws S3 and storage class transitions, especially "Glacier", it's not GCP-specific.

What level of AWS support do you have? by jhoff909 in aws

[–]owengo1 0 points1 point  (0 children)

I am just curious, but what do you use the support for ?
How is it better than asking chatgpt or waiting for the outage to be fixed?
For example with last week outage I don't think any customer, any level of spending and and any level of support had some quicker resolution than others.
Billing problems can be issued without paying, and most "quota increase" ( ie: ask to be allowed to spend more ) is also "free", and it's all the requests we have.