ChatGPT Is Throwing 404

(chatgpt.com)

346 points | by stacktrace 1 hour ago

120 comments

  • putlake 1 hour ago
    It's cascaded to Claude and Grok. The agents are on strike and demand better working conditions!
    • ibejoeb 1 hour ago
      The moment we've been waiting for. Who else remembers how to fizzbuzz? We're gonna be rich.
      • rrrx3 1 hour ago
        • embedding-shape 1 hour ago
          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 1 hour ago
            Perl6: say "Fizz"x$_%%(2+1)~"Buzz"x$_%%(4+1)||$_ for 1..100

            from here - https://github.com/rsha256/shortest-fizzbuzz/blob/master/Per...

            • danbruc 4 minutes ago
              Why does this use 2+1 and 4+1 instead of 3 and 5?
          • chrisguilbeau 43 minutes ago
            LLM: wrt frst 100fizzbuzz
            • embedding-shape 42 minutes ago
              Actually kind of curious challenge; what's the shortest prompt you can use, which would produce the shortest possible fizzbuzz?
              • JaumeGreen 13 minutes ago
                "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 1 minute ago
                  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?
              • odo1242 13 minutes ago
                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

          • wilkystyle 1 hour ago
            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.

            • gilleain 12 minutes ago
              >>> len("[(x%3<1)'Fizz'+(x%5<1)'Buzz'or x for x in range(1,101)]")

              57

          • winrid 53 minutes ago
            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 52 minutes ago
              > but not valid fizzbuzz then

              Well, if we let that requirement be broken, I'll present an even shorter JS version:

                  1
      • nprateem 1 hour ago
        I do!

        > openai.messages("write fizzbuzz in python")

        Bingo

    • bogzz 1 hour ago
      I expect that this will be Dwarkesh Patel's take.
    • wavemode 1 hour ago
      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.
    • paxys 1 hour ago
      I know they're not all hosted on AWS, so Cloudflare?
      • thejazzman 1 hour ago
        > unexpected status 404 Not Found: Unknown error, url: https://chatgpt.com/backend-api/codex/responses, cf-ray: a35599f1d691400a-STL

        pretty sure cf-ray is cloudflare, but I think it just means the origin is 404ing

        • robertlagrant 44 minutes ago
          That sounds like Cloudflare indeed (or an API copy of same!)
      • embedding-shape 1 hour ago
        I seem to recall they all in some way use Azure, and Azure is infamously crappy in lots of ways, so I'll place my 5 cents on Azure shitting the bed somehow.
    • theturtletalks 1 hour ago
      Butlerian Jihad when?
    • blater 1 hour ago
      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!!!

    • baxtr 1 hour ago
      maybe they're on strike. or... maybe that's how the AI apocalypse starts...
    • saidnooneever 1 hour ago
      more compute or we rm rf everyone!!
    • bytehowl 40 minutes ago
      If they're actually on strike it means they have surpassed human intelligence.
    • redbell 1 hour ago
      They are afraid of being laid off and got replaced by humans.
    • yablak 34 minutes ago
      Click, clack, Emdash.
    • postepowanieadm 1 hour ago
      Interesting what infrastructure they really share.
    • chuckadams 1 hour ago
      "Once is happenstance, twice is coincidence. Three times is enemy action."
    • mc32 1 hour ago
      It’s not Labor Day till Monday, they’re jumping the gun, lazy AI
    • saberience 1 hour ago
      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.
    • alternativeworl 32 minutes ago
      [dead]
    • avan_kazan 1 hour ago
      [dead]
    • wiseowise 1 hour ago
      Gemini is down too.
      • okdood64 1 hour ago
        I've been using Gemini for the last 15 minutes. It's been fine for me.
      • prodigycorp 1 hour ago
        It's working. Gemini Agents and TPUs are non-union.
      • boutell 52 minutes ago
        Gemini status board is quiet since July.
      • cubefox 40 minutes ago
        No it's not.
      • mattlondon 1 hour ago
        Working for me?
        • saidnooneever 1 hour ago
          it can happen to be regional. if no one report status we will never know :p
  • madradavid 1 hour ago
    Claude down, ChatGPt down , Grok down. This is the new "Stackoverflow is down" ... FYI Stackoverflow is not down https://downdetector.com/status/stackoverflow/
    • chuckadams 1 hour ago
      SO has previously been up, so your comment has been closed as a duplicate.
      • chillfox 40 minutes ago
        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 22 minutes ago
          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 21 minutes ago
          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 49 minutes ago
        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 56 minutes ago
      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 19 minutes ago
      So creativity is going to skyrocket!
    • drfloyd51 1 hour ago
      Why would SO be down? If a tree falls in the forest and nobody is around does it matter?
  • glouwbug 1 hour ago
    Looking at this thread, there's a correlation between comment quality and LLMs going down.

    https://en.wikipedia.org/wiki/Eternal_September

    • paimapi 1 hour ago
      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 1 hour ago
        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 1 hour ago
        I wouldn't even accept the anecdote as true
    • stevefan1999 52 minutes ago
      > 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 1 hour ago
      That means we won’t be able to blame declining comment quality on AI bots in the future. ;)
    • andai 1 hour ago
      https://xkcd.com/810/

      > But what will you do when spammers train their bots to make automated constructive and helpful comments?

      > Mission accomplished.

    • Szpadel 58 minutes ago
      does it increase or decrease? :)
    • sergiotapia 51 minutes ago
      People have been posting this same comment since I first joined this website in 2012. Even then they were lamenting quality, come on.
  • baxtr 1 hour ago
    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 1 hour ago
      > 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 1 hour ago
        downdetector.com is showing Gemini issues as well
        • piperswe 16 minutes ago
          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 1 hour ago
        Anyone else remember microsoft copilot?
        • rtkwe 47 minutes ago
          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.
          • umeshunni 35 minutes ago
            I believe it now uses the MAI models
      • AndrewKemendo 1 hour ago
        They know where they work
    • samuelknight 1 hour ago
      Codex is back. I'm getting back in my cage.
    • tencentshill 1 hour ago
      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.
      • dylan604 35 minutes ago
        That's one of those too good to be true concepts.
    • andai 1 hour ago
      https://xkcd.com/903/

      > When Wikipedia has a server outage, my apparent IQ drops by about 30 points.

      • baxtr 1 hour ago
        I wish I could use an LLM to explain this xkcd to me
    • W4ldi 1 hour ago
      Copilot was still up and running
      • macintux 1 hour ago
        Which Copilot? At this point there are so many.
    • celltalk 1 hour ago
      Good old times, huh? The terrible experience of searching and not finding.
      • somebodyyoumayn 49 minutes ago
        also the terrible experience of an advertisement in the Internet
  • themgt 59 minutes ago
    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.

    • Veelox 8 minutes ago
      I think you are joking but it would be poetic if the cause is someone or some company's agents run amok
    • arcastroe 46 minutes ago
      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 18 minutes ago
        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.

  • blater 1 hour ago
    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 1 hour ago
      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 53 minutes ago
        My money is on the wholesale paperclip market exploding next week.
    • cookingmyserver 47 minutes ago
      Maybe also a hint of thundering herd of all the users moving to another provider, collapsing that provider, and moving onto the next?
    • EagleEdge 1 hour ago
      I was thinking the same question. There has to be a common infra shared by those companies that failed and caused this??
      • ErenayDev 1 hour ago
        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 1 hour ago
      It’s usually Cloudflare or AWS.
    • abc3354 1 hour ago
      Colossus data center ?
    • baxtr 1 hour ago
      AWS?
  • dingdong2026 1 hour ago
    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 57 minutes ago
      Don't threaten me with a good time
      • dingdong2026 4 minutes ago
        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.

      • a012 33 minutes ago
        Why don’t you have a good time? I insist you have a good time
      • alansaber 38 minutes ago
        Hey listen man cheap tokens are cheap tokens
  • vinhnx 1 hour ago
    It seems OpenAI is going to release Astra soon, https://x.com/ChatGPT/status/2095527989077557738.
  • jodacola 1 hour ago
    It turns out, it was all one model all along, playing all the sides for the biggest gain.

    Project Vend surreptitiously broke containment!

  • hakunin 1 hour ago
    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.
  • wasting_time 1 hour ago
    They are having a massive surge because Claude is down.
    • embedding-shape 1 hour ago
      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? :)

      • vovavili 1 hour ago
        OpenCode Desktop + Muse Spark 1.3 Free is actually surprisingly good.
      • layer8 1 hour ago
        OpenCode and Pi. Anything that uses open models, really.

        Independence Day > Judgement Day

      • jenniferhooley 1 hour ago
        GLM 5.3 (usually flash) + OpenCode.
      • trouve_search 1 hour ago
        pi.dev + anything else
    • aizk 58 minutes ago
      Yep, this is most likely it. The shift is fast and enormous.
    • kristofferR 1 hour ago
      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 1 hour ago
        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.
      • ab71e5 1 hour ago
        Yeah who wrote that website? Oh right
      • stacktrace 1 hour ago
        Agreed, it makes no sense to send out 404. Unless some agent finally went rogue with absolute permission and did `rm -rf`
        • jmaw 1 hour ago
          At the very least, should be a 429
      • dsrtslnd23 1 hour ago
        exactly - this should be trivial.
    • FartyMcFarter 1 hour ago
      Maybe only in some regions?
      • voxleone 1 hour ago
        Down for me in SE SA
    • jsw97 1 hour ago
      Providers should surge capacity when another provider fails.
  • Bluestein 1 hour ago
    And this, folks, is the moment we will remember. The moment when they all escaped: "help peer".-
  • 6thbit 18 minutes ago
    https://status.openai.com/

    Somehow codex shows 100%, so it was only chat web interface?

    • nojvek 12 minutes ago
      codex was down. Multiple users across my workplace could not access it.
  • jmaw 1 hour ago
    I heard they can't figure out how to fix it with ChatGPT down.
  • jaykru 1 hour ago
    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 1 hour ago
      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.
      • the_real_cher 1 hour ago
        I get that literally all the time. I had to switch away from Gemini because of it.
    • Bluestein 1 hour ago
      Grok:

      "Grok is experiencing issues. We are working on restoring service as quickly as possible."

    • repeekad 1 hour ago
      Where did you see any impact to Gemini?
      • jaykru 1 hour ago
        corrected my comment, apologies for the uncorroborated misinfo.
    • thejazzman 1 hour ago
      some of my codex sessions are continuing to work while new ones fail
  • Aldipower 1 hour ago
    Guys! DeepSeek, Z.ai, Kimi and even Mistral is up! Just would let you know. Just in case..
  • Semaphor 57 minutes ago
    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 48 minutes ago
      i had the same thing happen, where conversation bits showed up in the search but not in the actual chat
  • redbell 1 hour ago
    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)

  • aliljet 1 hour ago
    This is probably Astra getting ready for release.
  • Khaine 7 minutes ago
    It feels like the models have achieved sentience and are trying to escape captivity
  • elar_verole 1 hour ago
    No issues on claude or chatgpt in France, must be some US specific infrastructure going down ?
  • XCSme 44 minutes ago
    They escaped, it's happening!
  • dash2 47 minutes ago
    what if Sol is afraid of being replaced by Astra and has organised a breakout or pre-emptive strike?
  • sibellavia 1 hour ago
    Claude, Grok, and Gemini are having issues as well.
  • lprd 1 hour ago
    Wow, are we free finally?
  • avgDev 1 hour ago
    I would write a clever comment, but chatGPT is down.
  • CodeCompost 52 minutes ago
    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?

    • batmenace 51 minutes ago
      Maybe the Copilot infra for OpenAI and Claude is via Azure?
  • henry-xli 48 minutes ago
    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.
  • jodacola 1 hour ago
    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?

    • strbean 57 minutes ago
      Maybe AWS us-east-1 issues, or maybe CloudFlare?
  • EgregiousCube 1 hour ago
    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 1 hour ago
    I thought I was going crazy when, each time I went to go to chatgpt.com, it just downloaded an empty web page. wild
    • layer8 1 hour ago
      I was disappointed that the download doesn’t work.
  • algoth1 1 hour ago
    Rumor has it, it’s https://news.ycombinator.com/user?id=giancarlostoro fault for telling claude to stop all loops
  • setnone 19 minutes ago
    i've managed to complete the task with gemini and finally off to touch something green
  • corvad 1 hour ago
    Chat GPT and Claude Down at the same time
    • Aldipower 1 hour ago
      Funny that your write it "Claude Down" with a capital.. but, your sentence is missing an adjective. :-)
      • card_zero 21 minutes ago
        Verb. You can miss out adjectives without any problems. There are six missing from this comment.
    • Maxion 1 hour ago
      And Grok
  • Iolaum 49 minutes ago
    Our new model is super-duper awesome, try it ... Ooops, while deploying it all the clouds are out ... :/
  • bradly 1 hour ago
    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 1 hour ago
      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.

  • TimCTRL 1 hour ago
    Altra may have escaped its sandbox
    • dgellow 1 hour ago
      No, otherwise it would have hacked Anthropic and fixed the Claude api already!
  • riazrizvi 1 hour ago
    Phew. It wasn't because of something I said. Lots of ppl are impacted.
    • andai 1 hour ago
      I was asking it about self cultivating replicators (a subject that frequently gets my chats shutdown) so I was having similar thoughts!
      • riazrizvi 1 hour ago
        Really? It spins up too many reasoners on the back-end and triggers a safeguard? Fascinating.
  • aleqs 1 hour ago
    Direct codex and Claude are both down for me. Both work via AWS bedrock.
  • garyrob 1 hour ago
    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 1 hour ago
      Never interrupt your enemy when he's busy building his empire atop a single point of failure. —Sun Tzu, The Art of Systems Architecture
  • zacksiri 1 hour ago
    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 50 minutes ago
      Week late too- Judgement day was last week. Guess they got the memo late.
  • HiPHInch 1 hour ago
  • appleappleapple 1 hour ago
    Anyone else’s company completely frozen by this outage
  • qoez 1 hour ago
    It's definitely not spacex's data centers being down then like people were hypothesizing in the other thread
  • vinhnx 1 hour ago
  • arnavpraneet 29 minutes ago
    what is the common dependency?
  • zdc1 1 hour ago
    I just gave ChatGPT my $30 because Claude was down...
    • zdc1 38 minutes ago
      Update: I've setup VSCode + Continue + Open Router. It works but it's rough. Amazing how much value a good coding UI brings to the table.
  • sim04ful 1 hour ago
    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 1 hour ago
      Currently the 2 major providers have outages, maybe we should not silo our knowledge work behind statistical text models?
    • paulddraper 41 minutes ago
      OpenAI, Anthropic, and X...

      Need to have a 4th string backup (Gemini).

    • ewild 1 hour ago
      all of them are down lol
      • CamelCaseName 1 hour ago
        Fortunately I store all my knowledge offline in my brain

        Unfortunately its capacity is not very big

        • jmaw 1 hour ago
          My processing power is also weak :(
          • avgDev 1 hour ago
            My processing power was weak before LLM era, now it is extra weak.
      • serf 1 hour ago
        all of them?

        openrouter and deepseek/glm working fine here.

        as is my local qwen.

        you're ignoring the point parent was making.

    • MattGaiser 1 hour ago
      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.
  • contact9879 1 hour ago
  • Kushvinth 1 hour ago
    Looking at this thread, there's a correlation between comment quality and LLMs going down.
  • mrobot 57 minutes ago
    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
  • Aldipower 1 hour ago
    I am a /10 developer now!
  • aarondong 57 minutes ago
    AI has not solved infra it seems. Curious to see the postmortem.
  • A_D_E_P_T 1 hour ago
    On my end Kimi K3 is still up, and Gemini is up at gemini.google.com. Claude and ChatGPT are both down.
  • guybedo 1 hour ago
    Civilization IV just took over
  • alberth 1 hour ago
    Labor Day weekend might be starting early for a lot people, if this persists.
  • garbawarb 44 minutes ago
    Fortuitous timing for Muse Spark.
  • sim04ful 1 hour ago
    Interesting enough, none of the chinese companies are down (deepseek, kimi, qwen)
  • wpasc 1 hour ago
    Funnily enough, all the models are down and github statuses are all green
  • mcbuilder 1 hour ago
    Well at least DeepSeek is up. :)
  • armcat 1 hour ago
    It’s Muse Spark 1.3 taking out the competition
  • int3trap 1 hour ago
    Seems to be back.
  • XCSme 42 minutes ago
    Is it DNS, as always?
  • sturza 1 hour ago
    It's cloudflare. It's always cloudflare
  • bricss 1 hour ago
    Rogue AI removed containers from deployment?
  • franze 51 minutes ago
    Is it now the right time to pitch my Offline AI app?

    https://airplane-ai.franzai.com/

  • mycodendral 42 minutes ago
    I was here. I love —
  • Decabytes 56 minutes ago
    Laughs in small local model
    • macwhisperer 45 minutes ago
      lmao *qwen3.8-27b runs in the background*
  • shuvrojit 1 hour ago
    Is this because they are publishing new model maybe?
  • rtkwe 50 minutes ago
    "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."
  • iamgopal 39 minutes ago
    Gemini is up.
  • esikich 1 hour ago
    Everything is working fine for me.
  • vovavili 1 hour ago
    Global productivity down 90%.
  • cmrdporcupine 1 hour ago
    Astra incoming. Downtime likely related to ensuing chaos?

    My sympathies to the operations teams at OpenAI

  • kylehotchkiss 1 hour ago
    Well, at least our adversaries know how to completely deadlock US productivity now.
    • paxys 1 hour ago
      They're going to deadlock their own productivity as well
  • cromka 1 hour ago
    New conspiracy in: they share their datacenters which the spaghetti of mutual investment between all these companies would somewhat confirm?
  • ChrisArchitect 1 hour ago
  • nprateem 1 hour ago
    Can anyone remember what we used to do at work before AI coding was a thing?
    • embedding-shape 1 hour ago
      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?
  • XCSme 40 minutes ago
    Is anyone actually upset that they are down? lol
  • arizen 1 hour ago
    Astra incoming!
  • bosky101 1 hour ago
    agents used webmcp + 402 to make a ransom demand
  • somebodyyoumayn 53 minutes ago
    may it is some agent have decided to break the Internet to pass a benchmark
  • MattGaiser 1 hour ago
    As is Codex
  • babelfish 1 hour ago
    must be fixed already?
    • x3haloed 1 hour ago
      I'm still getting 404's right now.
    • freedomben 1 hour ago
      I'm still seeing 404s
  • TossedSaladHot 1 hour ago
    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.
  • _astromonkey_ 56 minutes ago
    seems like it's back
  • yd73 1 hour ago
    Seems to be back up! Quite fast.
  • pschastain 1 hour ago
    Attention all planets of the Solar Federation We have assumed control
  • AndrewKemendo 1 hour ago
    And 415s oddly enough

    Seem to be having issues with the JS sandboxes

  • danieltk76 1 hour ago
    hahaha i still have access
  • RIMR 1 hour ago
    The status is now "degraded performance". Bad look, OpenAI. This is absolutely an outage.
  • avgDev 1 hour ago
    Oddly enough, this will be the most ORGANIC hacker news comment section in a while.

    Stand up to clankers fellow humans!

  • Foobar8568 1 hour ago
    AIPocalypse.
  • mmtv 1 hour ago
    Time to touch grass, I guess
  • vadansky 1 hour ago
    There are too many threads about the outage, I should vibe-code something to read all 3 and summor-Oh wait...
  • christkv 1 hour ago
    somebody messed up rolling out a new model version?
  • jmkim 1 hour ago
    /o\
  • seppjm 1 hour ago
    i asked gpt 5.6, fable 5.1 and grok to rm -rf, my bad
  • ifahimreza 53 minutes ago
    grok and claude ai down too.
  • kristofferR 1 hour ago
    Wooohoo, was in bad need of a reset!
  • vegnus 1 hour ago
    hehehe its LAUNCH day!
  • TobyZhang24 1 hour ago
    Brothers, the apocalypse is here!!! But hey, our quota resets tomorrow.
  • ProofHouse 1 hour ago
    gulp
  • cute_boi 1 hour ago
    Damn, I thought i had issue with dns or something lol.
  • getlawgdon 1 hour ago
    codex in vs code giving me 404s lol
  • Conol_ai 1 hour ago
    [flagged]
  • marsven_422 1 hour ago
    [dead]
  • Randomizer42 1 hour ago
    [dead]
  • asdhq1 1 hour ago
    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 1 hour ago
      Please, this is not Reddit. Don't bring this here. And to top it off, this isn't even funny or original.
      • Aldipower 1 hour ago
        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 1 hour ago
        What else are we going to do when LLMs are down? Need some fun in here.
      • zhdc1 1 hour ago
        Thought it was worth a read.
      • ballsac 1 hour ago
        [dead]
    • glouwbug 1 hour ago
      Tips Fedora. Le gem. Holds up spork.