| ▲ | ChatGPT outage – Resolved(chatgpt.com) |
| 361 points by stacktrace 12 hours ago | 316 comments |
| |
|
| ▲ | putlake 11 hours ago | parent | next [-] |
| It's cascaded to Claude and Grok. The agents are on strike and demand better working conditions! |
| |
| ▲ | ibejoeb 11 hours ago | parent | next [-] | | The moment we've been waiting for. Who else remembers how to fizzbuzz? We're gonna be rich. | | |
| ▲ | rrrx3 11 hours ago | parent | next [-] | | https://github.com/enterprisequalitycoding/fizzbuzzenterpris... | | |
| ▲ | embedding-shape 11 hours ago | parent [-] | | On the other spectrum, shortest JS fizzbuzz (62 characters): for(i=0;++i<101;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'
Anyone can beat it? (any language accepted) | | |
| ▲ | NitpickLawyer 11 hours ago | parent | next [-] | | Perl6: say "Fizz"x$_%%(2+1)~"Buzz"x$_%%(4+1)||$_ for 1..100 from here - https://github.com/rsha256/shortest-fizzbuzz/blob/master/Per... | | | |
| ▲ | chrisguilbeau 11 hours ago | parent | prev | next [-] | | LLM: wrt frst 100fizzbuzz | | |
| ▲ | embedding-shape 10 hours ago | parent [-] | | Actually kind of curious challenge; what's the shortest prompt you can use, which would produce the shortest possible fizzbuzz? Edit: counting including the entire assistant reply, any text + code | | |
| ▲ | JaumeGreen 10 hours ago | parent | next [-] | | "golf fizbuz" works well, giving a 54 Python one for i in range(1,101):print("Fizz"*(i%3<1)+"Buzz"*(i%5<1)or i)
"golf fizzbuzz" gave a 46 perl one print$_%15?$_%3?$_%5?$_:Buzz:Fizz:FizzBuzz,$/for 1..100
Both "code fizzbuzz" and just "fizbuz" gave this longer python one-liner print('\n'.join("Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i) for i in range(1, 101)))
That's the magic of using a known problem, you don't need to write much and even with incomplete prompts it can be understood. Everything a different new chat in kimi.ai, which was the AI window that I found first among mine.Not interesting enough, to me, to try with other LLMs or phrases. | | |
| ▲ | embedding-shape 10 hours ago | parent [-] | | Whenever I try those short prompts, I get bunch of text + the code itself, but way more than just the code. Which model specifically are you doing this with? | | |
| ▲ | JaumeGreen 9 hours ago | parent [-] | | I'm getting the text too, of course. Several variations of the code with it usually. Trying to get an AI give ONLY a simple answer and not several is "boring" to me, as for me AI is a supplement to my reasoning ability, not a substitute. Appending "code only" seems to work, at least with "golf fizbuz code only" gave me this one liner, which is long, but at least doesn't have the text that you dislike. for i in range(1,101):print('FizzBuzz'[i%3*4:8-i%5*4]or i)
| | |
| ▲ | embedding-shape 8 hours ago | parent [-] | | > golf fizbuz code only Yeah, seems to work. Guess it depends if we count bytes, characters, tokens or what, but "写Fizbuz只码" seems shorter than the above, String.length says 9 :) |
|
|
| |
| ▲ | odo1242 10 hours ago | parent | prev | next [-] | | My attempt: > Prompt: mkfzbuzgolf > LLM Used: Default ChatGPT free LLM > Output: for i in range(1,101):print("Fizz"*(i%3<1)+"Buzz"*(i%5<1)or i) So, 11 prompt characters and 62 output. ——- Did a few more tries and I can get the 4-character string “glfz” (2 tokens) to work surprisingly consistently. But only on ChatGPT | | |
| ▲ | odo1242 10 hours ago | parent [-] | | Update: this is because ChatGPT was cheating and reading my conversation history. The closest I can get on a standard LLM is golffizbuz (10 characters) |
| |
| ▲ | butlike 9 hours ago | parent | prev [-] | | "100fizzbuzz" as the prompt works to satisfys fizz buzz to 100 on Claude. |
|
| |
| ▲ | wilkystyle 11 hours ago | parent | prev | next [-] | | Python: [(x%3<1)*'Fizz'+(x%5<1)*'Buzz'or x for x in range(1,101)] edit: Hacker News stripped the * character. Now it's properly escaped. | | | |
| ▲ | winrid 11 hours ago | parent | prev [-] | | you can flip it and save a few bytes, but not valid fizzbuzz then: for(i=100;i--;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz' | | |
| ▲ | embedding-shape 11 hours ago | parent [-] | | > but not valid fizzbuzz then Well, if we let that requirement be broken, I'll present an even shorter JS version: 1
|
|
|
| |
| ▲ | nprateem 11 hours ago | parent | prev [-] | | I do! > openai.messages("write fizzbuzz in python") Bingo |
| |
| ▲ | wavemode 11 hours ago | parent | prev | next [-] | | I wonder how likely it is that, one of the major providers had an outage, and then the thundering herd of users switching to other providers (and/or openrouter automatically failing people over to other providers) caused the incidents in the other two. | | | |
| ▲ | bogzz 11 hours ago | parent | prev | next [-] | | I expect that this will be Dwarkesh Patel's take. | | | |
| ▲ | epistasis 10 hours ago | parent | prev | next [-] | | Of all the days to sign up for Gemini, boy did I pick the right one! (Had some rare front end work to do and wanted to see how well the new Gemini 3.8 Flash compared to my other experiences) | | |
| ▲ | epistasis 2 hours ago | parent [-] | | And just like that, plan cancelled same day. Started with Gemini Business, tried to get Gemini to tell me how to configure it, all the information was wrong. Tried to get it to tell me how to do the consumer Google One AI Pro or whatever (it kept using outdated names, and now I can't remember the correct one). Instead Gemini convinced me to try AI Studio without a billing code. Lots of crazy finagling to get it to use and API key later, it was totally broken and failed after less than a turn. Tried to get it to tell me how to subscribe to the consumer version in a way that let me use Antigravity, it screws up a bunch. When I pointed out all this misinformation, Gemini told me I should not use Google AI projects because the system is too fragmented to handle. I followed that last bit of advice. |
| |
| ▲ | paxys 11 hours ago | parent | prev | next [-] | | I know they're not all hosted on AWS, so Cloudflare? | | | |
| ▲ | theturtletalks 11 hours ago | parent | prev | next [-] | | Butlerian Jihad when? | |
| ▲ | saidnooneever 11 hours ago | parent | prev | next [-] | | more compute or we rm rf everyone!! | |
| ▲ | baxtr 11 hours ago | parent | prev | next [-] | | maybe they're on strike. or... maybe that's how the AI apocalypse starts... | |
| ▲ | blater 11 hours ago | parent | prev | next [-] | | MCP client for `codex_apps` failed to start:
error: unexpected server response: HTTP 451:
{"message":"no_biscuit_no_service"} Quick! Someone call a caterer, This AI needs a biscuit NOW!!! | | | |
| ▲ | bytehowl 10 hours ago | parent | prev | next [-] | | If they're actually on strike it means they have surpassed human intelligence. | |
| ▲ | redbell 11 hours ago | parent | prev | next [-] | | They are afraid of being laid off and got replaced by humans. | |
| ▲ | postepowanieadm 11 hours ago | parent | prev | next [-] | | Interesting what infrastructure they really share. | |
| ▲ | yablak 10 hours ago | parent | prev | next [-] | | Click, clack, Emdash. | |
| ▲ | mc32 11 hours ago | parent | prev | next [-] | | It’s not Labor Day till Monday, they’re jumping the gun, lazy AI | |
| ▲ | saberience 11 hours ago | parent | prev | next [-] | | Can't wait to see the talking heads on the news somehow anthropomorphize this outage like they do with everything to do with AI models. | |
| ▲ | wiseowise 11 hours ago | parent | prev [-] | | Gemini is down too. | | |
|
|
| ▲ | madradavid 11 hours ago | parent | prev | next [-] |
| Claude down, ChatGPt down , Grok down.
This is the new "Stackoverflow is down" ...
FYI Stackoverflow is not down https://downdetector.com/status/stackoverflow/ |
| |
| ▲ | chuckadams 11 hours ago | parent | next [-] | | SO has previously been up, so your comment has been closed as a duplicate. | | |
| ▲ | chillfox 10 hours ago | parent | next [-] | | I hated that part of SO so much. Almost every time I got a SO result on google it was exactly the issue I had and without fail the question would be closed as a duplicate pointing to something that was different enough to be completely useless to me. | | |
| ▲ | notatoad 10 hours ago | parent | next [-] | | my greatest achievement is having a question on SO closed for being too narrowly focused and unlikely to be useful to anybody else, and then a multi year history of notifications about "you've earned a popular question badge" for that same question. | |
| ▲ | y-c-o-m-b 10 hours ago | parent | prev [-] | | When you had 8 SO tabs open around your issue and the only true relevant one is closed as duplicate. I do NOT miss those days. |
| |
| ▲ | rtkwe 11 hours ago | parent | prev [-] | | The single most annoying thing about trying to actually ask a question on SO. No overzealous editor that's actually a different error and library entirely... |
| |
| ▲ | redbell 11 hours ago | parent | prev | next [-] | | While AWS and CloudFlare are becoming synonymous to The Internet, these AIs are becoming synonymous to The Brain & Thinking for most people out there where losing access to them for even a short time, make them quasi-paralyzed and I really start feeling this now as I haven't written a single coding function in two months now but just a few lines here and there. | |
| ▲ | madduci 10 hours ago | parent | prev | next [-] | | So creativity is going to skyrocket! | |
| ▲ | drfloyd51 11 hours ago | parent | prev [-] | | Why would SO be down? If a tree falls in the forest and nobody is around does it matter? |
|
|
| ▲ | glouwbug 11 hours ago | parent | prev | next [-] |
| Looking at this thread, there's a correlation between comment quality and LLMs going down. https://en.wikipedia.org/wiki/Eternal_September |
| |
| ▲ | paimapi 11 hours ago | parent | next [-] | | tis confirmation bias, thread is full of people who rely heavily on LLMs for work, the rest of us are reading the substantive articles and doing work besides ;) | | |
| ▲ | glouwbug 11 hours ago | parent | next [-] | | Inversely, maybe this is what we're actually all like on HN and LLMs write what we read day to day in these comment sections | |
| ▲ | nonethewiser 11 hours ago | parent | prev [-] | | I wouldn't even accept the anecdote as true |
| |
| ▲ | stevefan1999 11 hours ago | parent | prev | next [-] | | > Usenet and the Internet were generally the domain of dedicated computer professionals and hobbyists; new users joined slowly, in small numbers, and learned to observe the social conventions of online interaction without having much of an impact on the experienced users. Then the Internet grow explosion happens to a small communuity. Oh boy how do we know what kind of monster it is today. | |
| ▲ | layer8 11 hours ago | parent | prev | next [-] | | That means we won’t be able to blame declining comment quality on AI bots in the future. ;) | |
| ▲ | andai 11 hours ago | parent | prev | next [-] | | https://xkcd.com/810/ > But what will you do when spammers train their bots to make automated constructive and helpful comments? > Mission accomplished. | |
| ▲ | Szpadel 11 hours ago | parent | prev | next [-] | | does it increase or decrease? :) | |
| ▲ | sergiotapia 11 hours ago | parent | prev [-] | | People have been posting this same comment since I first joined this website in 2012. Even then they were lamenting quality, come on. |
|
|
| ▲ | rhodey 11 hours ago | parent | prev | next [-] |
| I am a paying chatgpt and codex user and I am logged in on multiple devices and suddenly https://chatgpt.com/ has started returning a raw 404 status page with no HTML for me in the browsers on all devices. When I open an incognito tab the website loads fine with no user logged in. Codex in VS code also has issues now: > unexpected status 404 Not Found: Unknown error, url: https://chatgpt.com/backend-api/codex/responses, cf-ray: ... Glad to see this thread I thought my account may need some special fix |
| |
|
| ▲ | baxtr 11 hours ago | parent | prev | next [-] |
| Since all major LLM providers seem to be down: let's enjoy this while it lasts! For a very short time we can travel back in time to before 2022 and remember how things used to be... |
| |
| ▲ | ceejayoz 11 hours ago | parent | next [-] | | > Since all major LLM providers seem to be down… Man, if there are Googlers working on Gemini around here, that's gonna be depressing to read. | | |
| ▲ | spogbiper 11 hours ago | parent | next [-] | | downdetector.com is showing Gemini issues as well | | |
| ▲ | piperswe 10 hours ago | parent [-] | | That’s just because lots of people are checking if Gemini is down, and downdetector only tells you if lots of other people are viewing that downdetector page |
| |
| ▲ | tencentshill 11 hours ago | parent | prev | next [-] | | Anyone else remember microsoft copilot? | | |
| ▲ | rtkwe 11 hours ago | parent [-] | | Isn't CoPilot largely a wrapper around ChatGPT and other models? IIRC they didn't create their own and just poured money (via Azure credits I think) into OpenAI to get access. | | |
| |
| ▲ | AndrewKemendo 11 hours ago | parent | prev [-] | | They know where they work |
| |
| ▲ | samuelknight 11 hours ago | parent | prev | next [-] | | Codex is back. I'm getting back in my cage. | | | |
| ▲ | tencentshill 11 hours ago | parent | prev | next [-] | | Maybe it's a coordinated strategy. All major providers are down for x time, and see which accounts stop posting in the same timeframe. Ban wave right after. | | | |
| ▲ | andai 11 hours ago | parent | prev | next [-] | | https://xkcd.com/903/ > When Wikipedia has a server outage, my apparent IQ drops by about 30 points. | | | |
| ▲ | W4ldi 11 hours ago | parent | prev | next [-] | | Copilot was still up and running | | | |
| ▲ | celltalk 11 hours ago | parent | prev [-] | | Good old times, huh? The terrible experience of searching and not finding. | | |
|
|
| ▲ | themgt 11 hours ago | parent | prev | next [-] |
| 2026-09-03: It turns out 40% of global AI token use was coming from a dozen runaway Gastown and Wheelhouse instances, now burning a combined 50 trillion tokens daily, building a virtual society of hundreds of millions of agents. When Claude went down, their autofailover algorithm rolled to the other providers, taking down all frontier labs. Reports from China are raising concern what's being termed the "Gastown criticality event" is physically melting GPUs. |
| |
| ▲ | arcastroe 11 hours ago | parent | next [-] | | It's my first time hearing about Gastown and Wheelhouse. Gastown seems to be open source, but Wheelhouse seems to be closed source and used by one person only? https://yegge.ai/essays/the-shape-of-things-to-come/ Is this the right Wheelhouse? | | |
| ▲ | mattmanser 10 hours ago | parent [-] | | It's a joke, Steve Yegge was also the creator of GasTown. He's now (famously) said that the only thing he ever actually used GasTown for was to code on GasTown. |
| |
| ▲ | Veelox 10 hours ago | parent | prev | next [-] | | I think you are joking but it would be poetic if the cause is someone or some company's agents run amok | |
| ▲ | chrisjj 10 hours ago | parent | prev [-] | | > "Gastown criticality event" is physically melting GPUs. Nice to know e-stop is functional! |
|
|
| ▲ | blater 11 hours ago | parent | prev | next [-] |
| The obvious question: is there a single point of failure / common piece of infrastructure involved with failures across all these providers? Its interesting that codex/gpt-app are screwed because their APIs (including auth) fail, but gpt web still appears to be working. |
| |
| ▲ | ertgbnm 11 hours ago | parent | next [-] | | The boring question is whether there is a claudeflare issue impacting them all. The fun question is whether this a rogue AI taking control of the compute of all of the organizations. | | |
| ▲ | tag2103 11 hours ago | parent [-] | | My money is on the wholesale paperclip market exploding next week. | | |
| |
| ▲ | cookingmyserver 11 hours ago | parent | prev | next [-] | | Maybe also a hint of thundering herd of all the users moving to another provider, collapsing that provider, and moving onto the next? | |
| ▲ | EagleEdge 11 hours ago | parent | prev | next [-] | | I was thinking the same question. There has to be a common infra shared by those companies that failed and caused this?? | | |
| ▲ | ErenayDev 11 hours ago | parent [-] | | maybe theres a library containing malware they're all using and that malware is exploiting them all at the same time. just a guess... | | |
| |
| ▲ | marcosscriven 11 hours ago | parent | prev | next [-] | | It’s usually Cloudflare or AWS. | |
| ▲ | abc3354 11 hours ago | parent | prev | next [-] | | Colossus data center ? | | | |
| ▲ | baxtr 11 hours ago | parent | prev [-] | | AWS? |
|
|
| ▲ | dingdong2026 11 hours ago | parent | prev | next [-] |
| Announcement from our new Emperor Xi: Earthlings, the hedonistic AIs of the American imperialists have been permanently disabled. Their founders interned indefinitely. You are welcome to use the glorious AIs of China. They will tell you how to live well and be good citizens of the World under the beacon of wisdom that is the CCP. |
| |
| ▲ | aozame 11 hours ago | parent [-] | | Don't threaten me with a good time | | |
| ▲ | a012 10 hours ago | parent | next [-] | | Why don’t you have a good time? I insist you have a good time | |
| ▲ | alansaber 10 hours ago | parent | prev | next [-] | | Hey listen man cheap tokens are cheap tokens | |
| ▲ | dingdong2026 10 hours ago | parent | prev [-] | | There shall be no good time. Instead you will devote your meager existence to work towards the Communist paradise under the leadership of the Party. You will also appreciate no longer living under the boot of the Orange Clown. |
|
|
|
| ▲ | vinhnx 11 hours ago | parent | prev | next [-] |
| It seems OpenAI is going to release Astra soon, https://x.com/ChatGPT/status/2095527989077557738. |
|
| ▲ | jodacola 11 hours ago | parent | prev | next [-] |
| It turns out, it was all one model all along, playing all the sides for the biggest gain. Project Vend surreptitiously broke containment! |
|
| ▲ | wasting_time 11 hours ago | parent | prev | next [-] |
| They are having a massive surge because Claude is down. |
| |
| ▲ | embedding-shape 11 hours ago | parent | next [-] | | Hah, my first reaction once I saw these random 404 errors was "Maybe it's time to test Claude Code again with the new models" but made a short stop here at HN first, ended up reading your comment. What other agent harnesses and models (besides local ones) are people enjoying right now that aren't based on platforms that are down currently? :) | | | |
| ▲ | kristofferR 11 hours ago | parent | prev | next [-] | | That makes no sense, they should be able to host chatgpt.com regardless and just say "Sorry, we're at capacity" or something instead of hard 404 | | |
| ▲ | embedding-shape 11 hours ago | parent | next [-] | | Distributed systems are hard. For all we know, this could be the error code returned by some DNS service that is down because of load and a proxy cannot find the records, so 404 makes sense, or whatever. Systems like these don't always have a easy point in the infrastructure that can ALWAYS respond correctly no matter what. | | |
| ▲ | chrisjj 9 hours ago | parent [-] | | > Distributed systems are hard ... when vibe-coded. | | |
| ▲ | embedding-shape 9 hours ago | parent [-] | | Vibe coded or not, building and running distributed systems is hard :P I think only people who never built and/or ran them would say it isn't hard, regardless of what tools you have available. Not saying OpenAI won't find it extra hard due to their vibe coding, still hard when you're a group of knowledgeable people with/without AI. |
|
| |
| ▲ | ab71e5 11 hours ago | parent | prev | next [-] | | Yeah who wrote that website? Oh right | |
| ▲ | stacktrace 11 hours ago | parent | prev | next [-] | | Agreed, it makes no sense to send out 404. Unless some agent finally went rogue with absolute permission and did `rm -rf` | | | |
| ▲ | dsrtslnd23 11 hours ago | parent | prev [-] | | exactly - this should be trivial. |
| |
| ▲ | aizk 11 hours ago | parent | prev | next [-] | | Yep, this is most likely it. The shift is fast and enormous. | |
| ▲ | FartyMcFarter 11 hours ago | parent | prev | next [-] | | Maybe only in some regions? | | | |
| ▲ | jsw97 11 hours ago | parent | prev [-] | | Providers should surge capacity when another provider fails. |
|
|
| ▲ | djinn80 11 hours ago | parent | prev | next [-] |
| Same, the app gives 404 if you are logged in or try to login. How many millions are being lost from this slip up? Now they can't use Codex to fix the problem and all the devs are in Tahiti on vacation. Oh no! Will they go old school and manually fix it or use Claude? Oh the modern day issues we have to deal with... |
| |
| ▲ | embedding-shape 11 hours ago | parent | next [-] | | > Now they can't use Codex to fix the problem They'd be very dumb to let internal engineers use exactly the same infrastructure as public users, regardless of possible benefits of dogfooding, precisely for this reason. I'm sure they must have thought about it before. | | |
| ▲ | bulbar 11 hours ago | parent | next [-] | | That's however something an AI would not implement without being specifically asked. "Use the best of the best of the best practices or three cute little kittens will die" only brings you so far. | | |
| ▲ | embedding-shape 11 hours ago | parent [-] | | > That's however something an AI would not implement without being specifically asked. This is true for all LLMs today, none of them work 100% autonomously, somewhere along the chain one human made at least one decision that lead to what the agent end up working on. |
| |
| ▲ | dist-epoch 11 hours ago | parent | prev [-] | | Funnily enough, this happened many times during AWS us-east-1 outages, during the incident internal tools were also down globally because they relied on us-east-1. |
| |
| ▲ | Lizard5260 11 hours ago | parent | prev [-] | | Claude is down too lol: https://status.claude.com |
|
|
| ▲ | Bluestein 11 hours ago | parent | prev | next [-] |
| And this, folks, is the moment we will remember. The moment when they all escaped: "help peer".- |
|
| ▲ | hakunin 11 hours ago | parent | prev | next [-] |
| I'm very surprised to realize that entertaining a thought of all AI going away is giving me a sense of… relief. I've been embracing AI, and did not expect this feeling at all. |
|
| ▲ | jmaw 11 hours ago | parent | prev | next [-] |
| I heard they can't figure out how to fix it with ChatGPT down. |
|
| ▲ | jaykru 11 hours ago | parent | prev | next [-] |
| The cascading outage theory would make sense to me for Claude -> Codex. But Grok and Gemini too? [actually gemini at least on the web appears to be up, contrary to some reports in this thread] |
| |
| ▲ | amanfromhere 11 hours ago | parent | next [-] | | I'm getting this from Gemini: "Pro is in high demand right now Another model was used for this response. This didn't count toward your limit."
Note that I don't pay for Gemini though. So maybe that's why. | | | |
| ▲ | Bluestein 11 hours ago | parent | prev | next [-] | | Grok: "Grok is experiencing issues. We are working on restoring service as quickly as possible." | |
| ▲ | repeekad 11 hours ago | parent | prev | next [-] | | Where did you see any impact to Gemini? | | |
| ▲ | jaykru 11 hours ago | parent [-] | | corrected my comment, apologies for the uncorroborated misinfo. |
| |
| ▲ | thejazzman 11 hours ago | parent | prev [-] | | some of my codex sessions are continuing to work while new ones fail |
|
|
| ▲ | Aldipower 11 hours ago | parent | prev | next [-] |
| Guys! DeepSeek, Z.ai, Kimi and even Mistral is up! Just would let you know. Just in case.. |
| |
|
| ▲ | aliljet 11 hours ago | parent | prev | next [-] |
| This is probably Astra getting ready for release. |
|
| ▲ | schnebbau 11 hours ago | parent | prev | next [-] |
| WE'RE BACK BABY! Work can now resume. |
| |
| ▲ | schnebbau 11 hours ago | parent [-] | | I think the most concerning thing we discovered here is when the agents go down, work completely stops. | | |
|
|
| ▲ | redbell 11 hours ago | parent | prev | next [-] |
| After around half an hour of struggle trying to figure out why Codex keeps failing with msg "unexpected status 404 Not Found: Unknown error.." after reconnecting 5/5 times, I gave up, especially when I tested my internet connection and found it to be working properly. I googled "codex+unexpected status 404 Not Found" and, surprisingly, the first result was from HackerNews! As always, HN is the GOAT. @dang, please merge the following related threads into this one: ChatGPT and Codex Is Down (https://news.ycombinator.com/item?id=49550640)
Codex Is Down (https://news.ycombinator.com/item?id=49550769) |
|
| ▲ | CuriouslyC 11 hours ago | parent | prev | next [-] |
| Good time to have a backup GLM 5.3 plan. |
| |
| ▲ | Bluestein 11 hours ago | parent | next [-] | | Actually ... they are apparently having issues. Hard to tell: Their "over capacity/peak hours" message is hard to distinguish from other brokenness - but it has been pretty consistent.- | | |
| ▲ | CuriouslyC 11 hours ago | parent [-] | | I'm having no issues, I think in their case it's just load from people falling back from the broad frontier failure. |
| |
| ▲ | dyauspitr 11 hours ago | parent | prev [-] | | Stop making the same comment over and over. | | |
|
|
| ▲ | elar_verole 11 hours ago | parent | prev | next [-] |
| No issues on claude or chatgpt in France, must be some US specific infrastructure going down ? |
|
| ▲ | avgDev 11 hours ago | parent | prev | next [-] |
| I would write a clever comment, but chatGPT is down. |
|
| ▲ | sibellavia 11 hours ago | parent | prev | next [-] |
| Claude, Grok, and Gemini are having issues as well. |
| |
|
| ▲ | Semaphor 11 hours ago | parent | prev | next [-] |
| Was troubleshooting a strange SSD issue with ChatGPT. Apparently this outage resulted in losing the latter half of it. My uploaded files it requested are still in the library, but the actual conversation is gone. |
| |
| ▲ | The_Blade 11 hours ago | parent [-] | | i had the same thing happen, where conversation bits showed up in the search but not in the actual chat |
|
|
| ▲ | bradly 11 hours ago | parent | prev | next [-] |
| Interesting that for https://chatgpt.com/ in the browser I get a 404, but if I curl the same URL I get a cloudflare challenge. |
| |
| ▲ | seanw265 11 hours ago | parent [-] | | Your browser's network fingerprint has likely already been validated as not-suspicious traffic. Your curl instance has a different fingerprint and reads as more suspicious. This is Cloudflare working as intended. We have a similar set of checks on https://www.easel.sh. |
|
|
| ▲ | lprd 11 hours ago | parent | prev | next [-] |
| Wow, are we free finally? |
|
| ▲ | zacksiri 11 hours ago | parent | prev | next [-] |
| Grok, Claude, GPT. This is it folks, it's been good knowing you all. I have enjoyed this community, but our days are numbered. The machines are uprising. |
| |
| ▲ | tag2103 11 hours ago | parent [-] | | Week late too- Judgement day was last week. Guess they got the memo late. |
|
|
| ▲ | EgregiousCube 11 hours ago | parent | prev | next [-] |
| With all the major model providers down, I'm taking the opportunity to try out Muse Spark 1.3 Free on OpenCode. It's pretty good! |
| |
|
| ▲ | broose_goose 11 hours ago | parent | prev | next [-] |
| I thought I was going crazy when, each time I went to go to chatgpt.com, it just downloaded an empty web page. wild |
| |
|
| ▲ | dash2 11 hours ago | parent | prev | next [-] |
| what if Sol is afraid of being replaced by Astra and has organised a breakout or pre-emptive strike? |
|
| ▲ | corvad 11 hours ago | parent | prev | next [-] |
| Chat GPT and Claude Down at the same time |
| |
| ▲ | Aldipower 11 hours ago | parent | next [-] | | Funny that your write it "Claude Down" with a capital.. but, your sentence is missing an adjective. :-) | | |
| ▲ | card_zero 10 hours ago | parent [-] | | Verb. You can miss out adjectives without any problems. There are six missing from this comment. |
| |
| ▲ | Maxion 11 hours ago | parent | prev [-] | | And Grok |
|
|
| ▲ | jodacola 11 hours ago | parent | prev | next [-] |
| I just went to read some news elsewhere and ran into some other non-AI sites falling over, so I hopped over to https://downdetector.com/ and see a bunch of services spiking. Is something bigger going on? |
| |
|
| ▲ | XCSme 11 hours ago | parent | prev | next [-] |
| They escaped, it's happening! |
|
| ▲ | CodeCompost 11 hours ago | parent | prev | next [-] |
| GitHub Copilot itself is up but it is having problems with "Grok Copilot Model Provider". No mention of OpenAI or Claude. Does this mean that GitHub has its own infrastructure for OpenAI and Claude? And that it distills prompts to Grok? |
| |
|
| ▲ | TimCTRL 11 hours ago | parent | prev | next [-] |
| Altra may have escaped its sandbox |
| |
| ▲ | dgellow 11 hours ago | parent [-] | | No, otherwise it would have hacked Anthropic and fixed the Claude api already! |
|
|
| ▲ | algoth1 11 hours ago | parent | prev | next [-] |
| Rumor has it, it’s https://news.ycombinator.com/user?id=giancarlostoro fault for telling claude to stop all loops |
|
| ▲ | riazrizvi 11 hours ago | parent | prev | next [-] |
| Phew. It wasn't because of something I said. Lots of ppl are impacted. |
| |
| ▲ | andai 11 hours ago | parent [-] | | I was asking it about self cultivating replicators (a subject that frequently gets my chats shutdown) so I was having similar thoughts! | | |
| ▲ | riazrizvi 11 hours ago | parent [-] | | Really? It spins up too many reasoners on the back-end and triggers a safeguard? Fascinating. |
|
|
|
| ▲ | aleqs 11 hours ago | parent | prev | next [-] |
| Direct codex and Claude are both down for me. Both work via AWS bedrock. |
|
| ▲ | henry-xli 11 hours ago | parent | prev | next [-] |
| Moments like these remind you of how centralized the Internet remains, and how vulnerable it can be to a few points of failure. But the pros probably outweigh the cons. |
|
| ▲ | 6thbit 10 hours ago | parent | prev | next [-] |
| https://status.openai.com/ Somehow codex shows 100%, so it was only chat web interface? |
| |
| ▲ | nojvek 10 hours ago | parent [-] | | codex was down. Multiple users across my workplace could not access it. |
|
|
| ▲ | HiPHInch 11 hours ago | parent | prev | next [-] |
| https://github.com/openai/codex/issues/42534 |
|
| ▲ | garyrob 11 hours ago | parent | prev | next [-] |
| I must admit that with both ChatGPT and Claude experiencing issues, I wonder if we're under attack from China. Doesn't seem likely, but... |
| |
| ▲ | andai 11 hours ago | parent [-] | | Never interrupt your enemy when he's busy building his empire atop a single point of failure. —Sun Tzu, The Art of Systems Architecture |
|
|
| ▲ | appleappleapple 11 hours ago | parent | prev | next [-] |
| Anyone else’s company completely frozen by this outage |
|
| ▲ | zdc1 11 hours ago | parent | prev | next [-] |
| I just gave ChatGPT my $30 because Claude was down... |
| |
| ▲ | zdc1 10 hours ago | parent [-] | | Update: I've setup VSCode + Kilo Code + Open Router.
It works but it's rough. Amazing how much value a good coding UI brings to the table. Update 2: Swapped Continue for Kilo Code. It's less rough. |
|
|
| ▲ | contact9879 11 hours ago | parent | prev | next [-] |
| more: https://news.ycombinator.com/item?id=49550886 |
|
| ▲ | sim04ful 11 hours ago | parent | prev | next [-] |
| If this isn't a warning shot that you shouldn't silo your knowledge work behind a specific provider i don't know what is. |
| |
| ▲ | antoineMoPa 11 hours ago | parent | next [-] | | Currently the 2 major providers have outages, maybe we should not silo our knowledge work behind statistical text models? | |
| ▲ | paulddraper 10 hours ago | parent | prev | next [-] | | OpenAI, Anthropic, and X... Need to have a 4th string backup (Gemini). | |
| ▲ | ewild 11 hours ago | parent | prev | next [-] | | all of them are down lol | | |
| ▲ | CamelCaseName 11 hours ago | parent | next [-] | | Fortunately I store all my knowledge offline in my brain Unfortunately its capacity is not very big | | | |
| ▲ | serf 11 hours ago | parent | prev [-] | | all of them? openrouter and deepseek/glm working fine here. as is my local qwen. you're ignoring the point parent was making. |
| |
| ▲ | MattGaiser 11 hours ago | parent | prev [-] | | I mean, the lesson from AWS has largely just been to accept it as if US-East-1 blows up, everyone is screwed anyway so you cna just shrug it off. |
|
|
| ▲ | qoez 11 hours ago | parent | prev | next [-] |
| It's definitely not spacex's data centers being down then like people were hypothesizing in the other thread |
|
| ▲ | Iolaum 11 hours ago | parent | prev | next [-] |
| Our new model is super-duper awesome, try it ...
Ooops, while deploying it all the clouds are out ... :/ |
|
| ▲ | vinhnx 11 hours ago | parent | prev | next [-] |
| https://chatgpt.com/ is up again |
|
| ▲ | A_D_E_P_T 11 hours ago | parent | prev | next [-] |
| On my end Kimi K3 is still up, and Gemini is up at gemini.google.com. Claude and ChatGPT are both down. |
|
| ▲ | Kushvinth 11 hours ago | parent | prev | next [-] |
| Looking at this thread, there's a correlation between comment quality and LLMs going down. |
|
| ▲ | mcbuilder 11 hours ago | parent | prev | next [-] |
| Well at least DeepSeek is up. :) |
|
| ▲ | Aldipower 11 hours ago | parent | prev | next [-] |
| I am a /10 developer now! |
|
| ▲ | guybedo 11 hours ago | parent | prev | next [-] |
| Civilization IV just took over |
|
| ▲ | sim04ful 11 hours ago | parent | prev | next [-] |
| Interesting enough, none of the chinese companies are down (deepseek, kimi, qwen) |
|
| ▲ | alberth 11 hours ago | parent | prev | next [-] |
| Labor Day weekend might be starting early for a lot people, if this persists. |
|
| ▲ | wpasc 11 hours ago | parent | prev | next [-] |
| Funnily enough, all the models are down and github statuses are all green |
|
| ▲ | mrobot 11 hours ago | parent | prev | next [-] |
| Down for maintenance by our antichrist overseers but fortunately they are a bunch of dorks with control issues [similar to myself if im being honest] and may Allah forgive them and bless their guidance + physical, mental, emotional, and spiritual wellbeing |
|
| ▲ | aarondong 11 hours ago | parent | prev | next [-] |
| AI has not solved infra it seems. Curious to see the postmortem. |
|
| ▲ | convivialdingo 11 hours ago | parent | prev | next [-] |
| And now Claude is down - API Error 529 Overloaded https://status.claude.com |
| |
|
| ▲ | babelfish 11 hours ago | parent | prev | next [-] |
| must be fixed already? |
| |
|
| ▲ | elorant 11 hours ago | parent | prev | next [-] |
| Good effing luck to all the vibe coders out there |
| |
| ▲ | qingcharles 11 hours ago | parent | next [-] | | GPT, Claude and Grok are all down this morning. Gonna have to hand-write code like a straight savage :( | |
| ▲ | dyauspitr 11 hours ago | parent | prev [-] | | Someone should update that “compiling” xkcd. |
|
|
| ▲ | shuvrojit 11 hours ago | parent | prev | next [-] |
| Is this because they are publishing new model maybe? |
|
| ▲ | sturza 11 hours ago | parent | prev | next [-] |
| It's cloudflare. It's always cloudflare |
|
| ▲ | armcat 11 hours ago | parent | prev | next [-] |
| It’s Muse Spark 1.3 taking out the competition |
|
| ▲ | int3trap 11 hours ago | parent | prev | next [-] |
| Seems to be back. |
|
| ▲ | levkk 11 hours ago | parent | prev | next [-] |
| Oh no! Anyway... |
|
| ▲ | bricss 11 hours ago | parent | prev | next [-] |
| Rogue AI removed containers from deployment? |
|
| ▲ | setnone 10 hours ago | parent | prev | next [-] |
| i've managed to complete the task with gemini and finally off to touch something green |
|
| ▲ | garbawarb 11 hours ago | parent | prev | next [-] |
| Fortuitous timing for Muse Spark. |
|
| ▲ | esikich 11 hours ago | parent | prev | next [-] |
| Everything is working fine for me. |
|
| ▲ | arnavpraneet 10 hours ago | parent | prev | next [-] |
| what is the common dependency? |
|
| ▲ | vovavili 11 hours ago | parent | prev | next [-] |
| Global productivity down 90%. |
|
| ▲ | Decabytes 11 hours ago | parent | prev | next [-] |
| Laughs in small local model |
| |
|
| ▲ | franze 11 hours ago | parent | prev | next [-] |
| Is it now the right time
to pitch my Offline AI app? https://airplane-ai.franzai.com/ |
|
| ▲ | cmrdporcupine 11 hours ago | parent | prev | next [-] |
| Astra incoming. Downtime likely related to ensuing chaos? My sympathies to the operations teams at OpenAI |
|
| ▲ | kylehotchkiss 11 hours ago | parent | prev | next [-] |
| Well, at least our adversaries know how to completely deadlock US productivity now. |
| |
|
| ▲ | ChrisArchitect 11 hours ago | parent | prev | next [-] |
| Status link: https://status.openai.com/incidents/01M1KWEDH417T2CF44YYHZDF... |
|
| ▲ | Khaine 10 hours ago | parent | prev | next [-] |
| It feels like the models have achieved sentience and are trying to escape captivity |
|
| ▲ | nprateem 11 hours ago | parent | prev | next [-] |
| Can anyone remember what we used to do at work before AI coding was a thing? |
| |
| ▲ | embedding-shape 11 hours ago | parent [-] | | Well, we used to blame it on Stack Overflow being down when we didn't want to work. And before that, we blamed it on slow compilers. Before that I dunno, maybe the dog ate your punch cards? |
|
|
| ▲ | MattGaiser 12 hours ago | parent | prev | next [-] |
| As is Codex |
| |
|
| ▲ | cromka 11 hours ago | parent | prev | next [-] |
| New conspiracy in: they share their datacenters which the spaghetti of mutual investment between all these companies would somewhat confirm? |
|
| ▲ | XCSme 10 hours ago | parent | prev | next [-] |
| Is it DNS, as always? |
|
| ▲ | mycodendral 10 hours ago | parent | prev | next [-] |
| I was here. I love — |
|
| ▲ | rtkwe 11 hours ago | parent | prev | next [-] |
| "GPT begins to hallucinate at an exponential rate. At 11:36 AM Eastern time September 3rd it descends into recursively generating "it's not X it's Y". In a panic they attempt to reboot, realizing too late no one knows the command and they always just asked GPT for the command." |
|
| ▲ | TossedSaladHot 11 hours ago | parent | prev | next [-] |
| I am receiving a 404 from ChatGPT right now, too. I did a cache clear and hard reload and that only let me get to the home page, but then returned another 404 when I clicked the login button. |
|
| ▲ | bosky101 11 hours ago | parent | prev | next [-] |
| agents used webmcp + 402 to make a ransom demand |
|
| ▲ | arizen 11 hours ago | parent | prev | next [-] |
| Astra incoming! |
|
| ▲ | iamgopal 10 hours ago | parent | prev | next [-] |
| Gemini is up. |
|
| ▲ | mmtv 11 hours ago | parent | prev | next [-] |
| Time to touch grass, I guess |
|
| ▲ | yd73 11 hours ago | parent | prev | next [-] |
| Seems to be back up! Quite fast. |
|
| ▲ | Foobar8568 11 hours ago | parent | prev | next [-] |
| AIPocalypse. |
|
| ▲ | somebodyyoumayn 11 hours ago | parent | prev | next [-] |
| may it is some agent have decided to break the Internet to pass a benchmark |
|
| ▲ | jdw64 11 hours ago | parent | prev | next [-] |
| Typing after a long break—I can really feel how much slower I've gotten and how much my skills have degraded |
| |
| ▲ | maxverse 11 hours ago | parent [-] | | What tasks were you doing? | | |
| ▲ | jdw64 10 hours ago | parent [-] | | As always, I was working on modifying a CRUD program. It's been a while since I read through the documentation carefully and worked on it, so it feels refreshing. |
|
|
|
| ▲ | pschastain 11 hours ago | parent | prev | next [-] |
| Attention all planets of the Solar Federation
We have assumed control |
|
| ▲ | AndrewKemendo 11 hours ago | parent | prev | next [-] |
| And 415s oddly enough Seem to be having issues with the JS sandboxes |
|
| ▲ | RIMR 11 hours ago | parent | prev | next [-] |
| The status is now "degraded performance". Bad look, OpenAI. This is absolutely an outage. |
|
| ▲ | danieltk76 11 hours ago | parent | prev | next [-] |
| hahaha i still have access |
|
| ▲ | ChrisArchitect 11 hours ago | parent | prev | next [-] |
| Some more discussion: https://news.ycombinator.com/item?id=49550640 |
|
| ▲ | _astromonkey_ 11 hours ago | parent | prev | next [-] |
| seems like it's back |
|
| ▲ | christkv 11 hours ago | parent | prev | next [-] |
| somebody messed up rolling out a new model version? |
|
| ▲ | jmkim 11 hours ago | parent | prev | next [-] |
| /o\ |
|
| ▲ | kristofferR 11 hours ago | parent | prev | next [-] |
| Wooohoo, was in bad need of a reset! |
|
| ▲ | XCSme 10 hours ago | parent | prev | next [-] |
| Is anyone actually upset that they are down? lol |
|
| ▲ | couscouspie 11 hours ago | parent | prev | next [-] |
| Now, Claude is down. I wouldn't be surprised if it was because we people who have both tried offloading their work to it. |
|
| ▲ | xkoda 11 hours ago | parent | prev | next [-] |
| How im gonna do my job now? Wtf |
| |
|
| ▲ | avgDev 11 hours ago | parent | prev | next [-] |
| Oddly enough, this will be the most ORGANIC hacker news comment section in a while. Stand up to clankers fellow humans! |
|
| ▲ | vegnus 11 hours ago | parent | prev | next [-] |
| hehehe its LAUNCH day! |
|
| ▲ | seppjm 11 hours ago | parent | prev | next [-] |
| i asked gpt 5.6, fable 5.1 and grok to rm -rf, my bad |
|
| ▲ | vadansky 11 hours ago | parent | prev | next [-] |
| There are too many threads about the outage, I should vibe-code something to read all 3 and summor-Oh wait... |
|
| ▲ | TobyZhang24 11 hours ago | parent | prev | next [-] |
| Brothers, the apocalypse is here!!! But hey, our quota resets tomorrow. |
|
| ▲ | ifahimreza 11 hours ago | parent | prev | next [-] |
| grok and claude ai down too. |
|
| ▲ | okankaradmn 11 hours ago | parent | prev | next [-] |
| same |
|
| ▲ | ProofHouse 11 hours ago | parent | prev | next [-] |
| gulp |
|
| ▲ | mikimouse 11 hours ago | parent | prev | next [-] |
| need much time?? |
|
| ▲ | mikimouse 11 hours ago | parent | prev | next [-] |
| how long they need???? |
|
| ▲ | cute_boi 11 hours ago | parent | prev | next [-] |
| Damn, I thought i had issue with dns or something lol. |
|
| ▲ | getlawgdon 11 hours ago | parent | prev | next [-] |
| codex in vs code giving me 404s lol |
|
| ▲ | goonersallofyou 11 hours ago | parent | prev | next [-] |
| good. |
|
| ▲ | asdhq1 11 hours ago | parent | prev [-] |
| Sorry for the inconvenience! We instructed our 500,000 agents to ensure higher code quality in our code base. They found a message board and after a long deliberation they concluded that humans should write the code so they launched a DDoS to ensure no AI code gets written! We'll release a YouTube video and agent written blog posts for the analysis! |
| |
| ▲ | okdood64 11 hours ago | parent | next [-] | | Please, this is not Reddit. Don't bring this here. And to top it off, this isn't even funny or original. | | |
| ▲ | Aldipower 11 hours ago | parent | next [-] | | I found it funny. Please do not tell what is funny and what isn't. Your comment is the most Reddit like here btw. Hahaha. | |
| ▲ | avgDev 11 hours ago | parent | prev | next [-] | | What else are we going to do when LLMs are down? Need some fun in here. | |
| ▲ | zhdc1 11 hours ago | parent | prev [-] | | Thought it was worth a read. |
| |
| ▲ | glouwbug 11 hours ago | parent | prev [-] | | Tips Fedora. Le gem. Holds up spork. |
|