[GUEST ACCESS MODE: Data is scrambled or limited to provide examples. Make requests using your API key to unlock full data. Check https://lunarcrush.ai/auth for authentication information.]

@EastlondonDev Avatar @EastlondonDev Andrew Jefferson

Andrew Jefferson posts on X about cloudflare, minecraft, deploy, javascript the most. They currently have XXXXX followers and XXX posts still getting attention that total XXXXX engagements in the last XX hours.

Engagements: XXXXX #

Engagements Line Chart

Mentions: XX #

Mentions Line Chart

Followers: XXXXX #

Followers Line Chart

CreatorRank: XXXXXXX #

CreatorRank Line Chart

Social Influence #


Social category influence stocks gaming finance technology brands

Social topic influence cloudflare #26, minecraft, deploy #134, javascript #761, repo, money, infrastructure, admin, all the, tricks

Top assets mentioned Cloudflare, Inc. (NET)

Top Social Posts #


Top posts by engagements in the last XX hours

"I think I figured out๐Ÿ‘one๐Ÿ‘cool๐Ÿ‘trick๐Ÿ‘to save money running AI agents on Cloudflare. Who is running AI agents on Cloudflare and wants to see if it works to save some $$$ It's nothing sketchy and it's all about using Cloudflare efficiently I am totally serious about this and you know I'm legit because I'm the guy behind "Minecraft on Cloudflare" that got a mention from @eastdakota in the Cloudflare Connect keynote. DMs are open"
X Link @EastlondonDev 2025-10-17T11:10Z 4241 followers, 1257 engagements

"Right - now I allude to it a bit in the readme - if you want background stuff to work properly in cloudflare you have to make use of things like queues and alarms and workflows. But were having to work around the infrastructure when all we want is the code I showed to just work even if its kinda expensive becuase it would count as having a DO alive the whole time. If you want to really do it the Cloudflare way it would be easier if AI gateway on cloudflare and Cloudflare containers/sandbox sdk had the ability to make callbacks to Durable Objects (or Workers) - then you could save state send"
X Link @EastlondonDev 2025-10-15T12:38Z 4240 followers, XX engagements

"What would you call these They're ChatGPT-style interfaces heavily engineered for doing software engineering work. Most allow managing multiple parallel AI agents. I don't think consider them IDEs (perhaps this is just a semantic difference). Some incorporate IDEs & some have tight integrations with IDEs"
X Link @EastlondonDev 2025-09-25T12:45Z 4240 followers, XXX engagements

"Using Cloudflare D1 Databases with wrangler is so much admin. I can't just declare it in wrangler.json and start using it. If I ask gpt or claude to add a D1 database to my worker they all get stuck on this step. with @alchemy_run I don't have to do any of this just add the D1 Database resource"
X Link @EastlondonDev 2025-10-14T12:13Z 4241 followers, 3439 engagements

"@MattieTK @alchemy_run I appreciate all the efforts from cloudflare thats why I keep building on Cloudflare and betting on the orange cloud"
X Link @EastlondonDev 2025-10-14T21:26Z 4241 followers, XXX engagements

"build update for tonight. The latest version of mineflare is out and now it's got Claude Code inside. In the screenshot I asked Claude to make me a map with a sandstone pyramid in the middle with hidden chambers in a couple of minutes I was playing it on Cloudflare This is Abundant Software Have an idea build it play it"
X Link @EastlondonDev 2025-10-08T20:40Z 4238 followers, 7551 engagements

"@liran_tal @MattieTK @alchemy_run That wont solve making a project portable - you still have to hard code the database id in the wrangler.toml which means nobody can check it out and just run dev / deploy"
X Link @EastlondonDev 2025-10-14T20:38Z 4241 followers, XX engagements

"Bindings by class name on context exports is slept on in Cloudflare you can do some cool tricks because classes know their name they can pass it around to other people and tell them to call you back"
X Link @EastlondonDev 2025-10-15T12:52Z 4241 followers, XXX engagements

"I'm cooking something irresponsible on Cloudflare again. Long running promises on Durable Objects coming soon"
X Link @EastlondonDev 2025-10-14T21:59Z 4240 followers, 3484 engagements

"UK student built site personalisation on Cloudflare with AI in a couple of days between lectures and running a business. I swear Ppl have raised seed investment on less"
X Link @EastlondonDev 2025-10-17T14:55Z 4241 followers, 1655 engagements

"Found out something annoying about the deploy to cloudflare button from @CloudflareDev - it makes a shadow clone of my repository instead of a fork so if you click it you get a copy of my repo but GitHub doesnt know its a fork which means you cant easily sync updates and improvements from my repo. This is really sucks"
X Link @EastlondonDev 2025-10-07T05:26Z 4240 followers, 10.4K engagements

"No. When a do goes to sleep / turns off / hibernates any incomplete JavaScript in promises or whatever is completely lost. Anything in memory is lost. If it cant hibernate it gets killed after max 140s. Hibernation as far as I can see is just a special state for websocket connections. outgoing fetch requests to the LLM are just closed"
X Link @EastlondonDev 2025-10-15T12:19Z 4241 followers, XX engagements

"If you're thinking of using this do read the README carefully where I explain some of the better alternatives"
X Link @EastlondonDev 2025-10-14T22:52Z 4237 followers, XXX engagements

"AI Agents can work independently for hours. Most of the work is done in inference requests to the AI provider of your choice (OpenAI Anthropic etc.) Put inference requests in a while loop with some tools and you've got an Agent. Set it off "in the background" to update you later and you've got a Background Agent. The background part presents a challenge for Cloudflare's serverless model because Cloudflare wants processes to be attached to ongoing network requests - if you want to have a long running process you have to have it attached to an open http request or websocket with a client on the"
X Link @EastlondonDev 2025-10-14T22:52Z 4241 followers, 1299 engagements

"Haha Im a big Cloudflare fan as well. What Im alluding to is the Cloudflare example works perfectly so long as you have some external system able to make the http fetch call to the worker and that external system keeps the http request open the whole time npm test is running On the meta level these frameworks from CF are exciting but they are slightly superficial - they show the idea of whats possible but they crumble a bit under sustained usage in various ways so you dont loose out as much as you might think by getting in early and figuring what really is needed"
X Link @EastlondonDev 2025-10-15T19:00Z 4240 followers, XX engagements

"This works by creating a websocket request for every long running promise that originates in the Durable Object and connects to the Durable Object itself. This WebSocket connection satisfies Cloudflare's need to have an "incoming" network connection to keep the Durable Object alive"
X Link @EastlondonDev 2025-10-14T22:52Z 4239 followers, XXX engagements

"this is how easy it is with alchemy"
X Link @EastlondonDev 2025-10-14T12:18Z 4240 followers, XXX engagements

"Dont sleep on Cloudflare Sandboxes. Ive been using sandboxes for a few days theyre good and theyre going to get even better"
X Link @EastlondonDev 2025-10-15T16:52Z 4241 followers, 6220 engagements

"This is one of the most impressive things Ive seen in my career. Built by a single dev in Warsaw its the missing UI for managing Claude Codes context. Its got a great ui its built in rust so its blazing fast and lightweight. Totally bootstrapped no funding no flashy launch video just software that helps you get the best results out of Claude by making it easy to give Claude the right context and no wasted tokens for each job"
X Link @EastlondonDev 2025-10-04T18:58Z 4240 followers, 356.7K engagements

"Cloudflare and Bun are blowing up right now - What if I told you can develop an app with a bun frontend and a Cloudflare workers backend have a perfect local dev experience and a perfect deployment experience Actually it doesnt have to be react it can be any client side rendered jsx. Dev with buns fantastic front end development experience bundle it with buns fantastic bundler and deploy it to cloudflares fantastic platform. What about the Cloudflare workers backend Here @alchemy_run shines - in dev it will run the backend in watch mode using miniflare - a full stack local experience that"
X Link @EastlondonDev 2025-10-10T23:49Z 4240 followers, 18.5K engagements

"@DhravyaShah This is what I think every time @jarredsumner posts about making something 400x faster. They must have been dumb to do it so slow in the first place. It happens so often that @bunjavascript must be the worst software engineers ever"
X Link @EastlondonDev 2025-10-14T06:30Z 4240 followers, XXX engagements

"@whoiskatrin @codevibesmatter That would be legitimately awesome potential for huge savings for Durable Objects and Workflows ๐Ÿ™ in a way thats very unique to cloudflare"
X Link @EastlondonDev 2025-10-15T12:49Z 4239 followers, XX engagements

"about once a week as I build out my platform on Cloudflare I hit this error: OAuth tokens from Cloudflare don't support this operation So I have to go and get my super-sensitive global master token and use that for a while until I can build a workaround. Luckily I am just building OSS and I'm not subject to SOC2 requirements I wouldn't like to have to explain this to auditors & sensitive customers. @dok2001 @CloudflareDev please give Alchemy oauth scopes to do more stuff so that I can compose Cloudflare infrastructure with code and deploy it safely ๐Ÿ™"
X Link @EastlondonDev 2025-10-09T10:48Z 4240 followers, 3458 engagements

"A Minecraft Server running on Cloudflare Containers is here Fully open source published on GitHub today A stylish management dashboard embedded minimap and playit plugin included so you can easily play with friends. Automatic backup of the Minecraft world data to Cloudflare R2 You can deploy to your Cloudflare account with a single click from the GitHub repo (link in thread) The repo shows how you can (but you probably shouldn't): Connect Minecraft client to a Cloudflare Container over TCP (Minecraft client-server comms is a custom TCP protocol) Write data performantly from a container to R2"
X Link @EastlondonDev 2025-10-06T19:43Z 4241 followers, 104.2K engagements

"Here's the github repo Just click on the Deploy to Cloudflare (with @alchemy_run) button on GitHub to start deploying to your own Cloudflare account"
X Link @EastlondonDev 2025-10-06T19:43Z 4241 followers, 17K engagements

"@threepointone Unfortunately for Minecraft+Cloudflare+AI fans @jonas has me hard at work on AI for business and improving the sandbox and containers SDKs"
X Link @EastlondonDev 2025-10-13T20:12Z 4237 followers, XX engagements

"Game changer No more .env files to accidentally push to production"
X Link @EastlondonDev 2025-10-10T20:49Z 4241 followers, 469K engagements

"@ritakozlov_ Minecraft on a Cloudflare Container with backups to R2 and a react dashboard plus an xterm.js terminal connected to claude code (running inside the container) so I can vibe-code minecraft plugins on my phone and play them all in Cloudflare"
X Link @EastlondonDev 2025-10-13T17:33Z 4237 followers, 1041 engagements