SShortSingh.
Back to feed

Developer builds personal Git hosting service on Cloudflare free tier in under an hour

0
·1 views

A developer built a lightweight personal Git hosting service called git.vodka after noticing the domain was available amid renewed interest in GitHub alternatives following recent platform downtime. The project was built impulsively, with the domain purchased and the service deployed in less than an hour. The entire stack runs on Cloudflare's free tier, using Workers for the app, R2 for storing Git objects, and D1 as the database. AI coding tool Codex handled much of the routine coding while the developer iterated on the design in real time. The finished service hosts its own source code and is intended as a simple, self-run alternative to bare Git repositories on a server.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

How a Clean Docker Container Exposed Hidden Global Dependencies in AI-Generated Code

A developer nearly shipped a feature-flag helper function that worked locally but crashed inside a clean Docker container with a NameError. The AI-generated function silently relied on three global variables — DEBUG, FEATURE_STORE, and DEFAULT_FEATURES — that were never declared as parameters or imports. The local environment happened to carry leftover globals from a previous session, masking the bug entirely during smoke testing. Running the same code in an empty namespace immediately revealed the hidden dependency. The developer resolved the issue by building an AST-based pre-execution check that identifies free globals in generated code before it leaves the test directory.

0
ProgrammingDEV Community ·

Developer builds AI spreadsheet tool that writes code and verifies its own answers

A developer created Sheet Analysis AI after an AI tool silently skipped rows in a sales spreadsheet and returned a confidently wrong total. Instead of asking a language model to calculate directly, the tool generates JavaScript code from the user's column names and sample data, then executes it locally against the full dataset. A built-in auditor cross-checks every figure multiple ways, including percent math, cross-foot totals, and claim binding, blocking any number that fails verification. The tool supports files up to 100,000 rows and runs entirely in the browser with no backend, using a bring-your-own-key model for advanced AI features. The project is open-source on GitHub, and the developer has framed it as a reusable pattern for making AI reliable with real numerical data.

0
ProgrammingDEV Community ·

Flutter GDE of 8 Years Debunks 'Flutter Is Dying' Claims With Industry Data

A Flutter Google Developer Expert with eight years in the program and five decades of industry experience has pushed back against recurring claims that Flutter is a dying framework. The author argues that a temporary slowdown in Google's external communications — not a reduction in internal commitment — created an information vacuum that fueled alarmist narratives. Google continues to invest heavily in Flutter, with the framework powering major internal products like Google Ads, Google Pay, and Google Classroom, alongside ongoing work on the Impeller rendering engine and WebAssembly compilation. The apparent decline in Flutter job postings is attributed to enterprise efficiency: companies typically merge separate iOS and Android teams into a single Flutter team rather than posting new roles. The author contends that growing competition for Flutter positions from senior native developers signals a maturing discipline, not a framework in decline.

0
ProgrammingDEV Community ·

Delphi Tools emerges as a handy complement to existing developer toolkits

Delphi Tools is a web-based utility platform discovered shortly after the author reviewed a similar tool called Dev Tools. Like comparable platforms such as IT Tools, Omni Tools, and Dev Toys, it offers a broad set of developer-focused features in one place. Standout features include a QR code generator and image editing tools. The author suggests that rather than comparing these platforms, developers can benefit from using them together to expand their available toolkit.

Developer builds personal Git hosting service on Cloudflare free tier in under an hour · ShortSingh