https://discord.cloudflare.com logo
Join DiscordCommunities
Powered by
# workers-discussions
  • c

    catgirl

    12/05/2020, 4:22 PM
    Thinking either Python or Golang
  • c

    catgirl

    12/05/2020, 4:22 PM
    I’m anxious about Golang as I haven’t seen a lot of web stuff for it and Google has a history of discontinuing products
  • c

    catgirl

    12/05/2020, 4:22 PM
    Also not sure how many companies want Go vs Python devs
  • k

    kristian

    12/05/2020, 4:44 PM
    omg lol
  • k

    kristian

    12/05/2020, 4:45 PM
    that was not what i was expecting to wake up to this morning
  • i

    itsmatteomanf

    12/05/2020, 4:46 PM
    I wasn't expecting it to come out as well... I guess an NDA was broken somewhere.
  • a

    albert-zhao

    12/05/2020, 4:49 PM
    yeah this is an awkward way for the world to hear about Pages. Will update when it's available for everyone to use 🙂
  • i

    itsmatteomanf

    12/05/2020, 4:50 PM
    Yeah. At least put Access in front of the Docs now. Those TODO aren't the best ahahah
  • c

    CodeCo

    12/05/2020, 4:50 PM
    😂
  • i

    itsmatteomanf

    12/05/2020, 4:50 PM
    Although, I'm more excited than I was before. I'm still hopeful for the week coming up.
  • c

    CodeCo

    12/05/2020, 4:54 PM
    I'll be switching away from a Wrangler action to pages on a handful of my sites once it's out.
  • c

    catgirl

    12/05/2020, 5:26 PM
    Is Cloudflare still gonna test on production 😂
  • c

    CodeCo

    12/05/2020, 5:33 PM
    Everyone has a development environment. Some are lucky enough to have it separate from production.
  • c

    catgirl

    12/05/2020, 5:34 PM
    haha
  • i

    itsmatteomanf

    12/05/2020, 5:44 PM
    I guess they should have put Access in front at least.
  • c

    catgirl

    12/05/2020, 5:49 PM
    haha
  • c

    catgirl

    12/05/2020, 5:50 PM
    how about we promise to keep it a secret for our good friends at the workers team 😉
  • c

    catgirl

    12/05/2020, 5:55 PM
    Our friends @User @User @User and anyone I failed to mention are super cool
  • i

    itsmatteomanf

    12/05/2020, 6:35 PM
    Well, the person in question literally mentioned Cloudflare, so I guess the secret is out ahah
  • a

    ai

    12/05/2020, 6:55 PM
    Reminds me of when someone found out about Cron Triggers, also through the docs.
  • a

    ai

    12/05/2020, 6:56 PM
    I would say we should use a fork but people found Durable Objects through a doc fork too.
  • c

    catgirl

    12/05/2020, 7:08 PM
    😂
  • c

    CodeCo

    12/05/2020, 7:15 PM
    Announce features before they're even made.
  • c

    CodeCo

    12/05/2020, 7:15 PM

    https://tenor.com/Gxh8.gif▾

  • u

    Unkn0wnCat

    12/05/2020, 7:38 PM
    100 forks of the docs for random features so no one leaks the real ones
  • i

    itsmatteomanf

    12/05/2020, 8:12 PM
    We as MVPs, for almost all weeks of announcements (in particular the big ones) have a private topic where we try to guess. Last year's I got all of them at the Birthday week ahah
  • j

    James

    12/07/2020, 1:31 AM
    If anyone has a suggested workaround for https://github.com/cloudflare/kv-asset-handler/issues/158, I'd appreciate it! I'm a bit of a performance fanatic, so if I could dynamically route requests for
    image.png
    to
    image.avif
    or
    image.webp
    where supported (as per the
    accept
    ) header with
    kv-asset-handler
    , that would be 👌
  • i

    itsmatteomanf

    12/07/2020, 1:37 AM
    Couldn't you simply rewrite the path if the specific
    accept
    header is there?
  • j

    James

    12/07/2020, 1:46 AM
    I could reconstruct a new
    FetchEvent
    , attach a new
    Request
    with an updated URL, and pass that into
    kv-asset-handler
    I guess - that's pretty hacky though. As far as I know (and had no luck trying), you can't just override an existing
    event.request.url
    for example, since that's read-only.
  • i

    itsmatteomanf

    12/07/2020, 1:51 AM
    It would just be
    new Request(new URL(...), event.request)
    , it's basically the same code used in the default catch for not found assets. It's remapping to
    ${new URL(req.url).origin}/404.html
    .
1...131415...2509Latest