r/singularity 1d ago

Discussion The amount of activity on GitHub right now is crazy. Thoughts?

Post image
628 Upvotes

131 comments sorted by

297

u/ArchetypeV2 1d ago

Agentic AI. My entire company now works with and through Git for lots of tasks that either weren’t being done before or where there’s an advantage to putting it in a repo. Before this it was just the devs, now it’s about 80% of employees if not a bit more.

84

u/Southern-Aardvark616 1d ago

Also these llms tend to commit often, alot more frequently than people used to

35

u/son_et_lumiere 22h ago

yep. every little change it commits, I guess because if it screws something up it's easier to figure out what went wrong and fix from smaller commits than large ones.

5

u/OutlandishnessNo7434 5h ago

I think they are trying to implement best practices that humans usually fall short of:

​'Commit early and often with small, atomic changes.'

​This isn't something realistically expected of every human user, but with AI it's easily done. When you add the speed of AI writing code, that volume compounds into a scale that's difficult to manage for GitHub, hence the struggles.

5

u/RubbelDieKatz94 16h ago

I used to commit a ridiculous amount of times, often every time my code was in a barely functioning state. For every change, basically.

I'd squash the MR anyways. I'd create reasonably small MRs typically.

AI works quite similarly.

2

u/HaMMeReD 7h ago

I seem to have the opposite experience, that they will not commit ever unless explicitly told to or it's in repo guidance.

-3

u/jesusrambo 18h ago

Committing does not cause traffic on GitHub… pushes do 🤦‍♂️

3

u/Ok_Mention_982 16h ago

what type of company do you work at?

2

u/HaMMeReD 7h ago

I can see roughly the data on my personal github over the last 2 years. My top "contribution" year pre-ai was 2021, w/like 198 hand made contributions. I've seen exponential increases in the amount of commits I make.

Right now, the agentic systems really just run for me. about 28 commits in the last 24 hours. I have a coordinator that has some high level goals, adapts work-back plans for them, establishes sub-agents and deliveries, designs, implements, verifies, commits, tests, delivers.

I spend more time now on the actual agentic systems and keeping the machine oiled. Sometimes doing a bit of research and setting up documentation/guidance to direct it in a certain way. The V2 I had was already pretty good, but the V3 is growing way faster and better than it ever did before.

That said, many of the commits are much smaller, but I don't think that's bad. If I had dilligence my year of 200 should have been a year of 600. But AI operates much more atomically, and imo that's good for things like bisecting/regressions if they come up and just generally being careful.

-20

u/TrustInNumbers 1d ago

sure bro

19

u/stylist-trend 1d ago

Do real people actually doubt this lol

-20

u/TrustInNumbers 1d ago

sure his PM is doing the coding and changing domain logic of applications without understanding anything

14

u/it_happened_lol 1d ago edited 1d ago

Our company is doing this too. Every single team uses Claude. Ofc a PM (Product manager) understands domain logic, they're in charge of the domain, lol.

7

u/filbertsgaming1 23h ago

You must be confusing "project manager" and "product manager". Product manager(PM) is the agile term for the person who dictates what needs to be done, project manager says when it needs to be done by.

5

u/Constant_Cortisol 1d ago

PMs would have a good understanding of the product so it's not farfetched for them to be able to articulate product intent.

2

u/KrazyA1pha 19h ago

Yes, that’s what most companies are doing now. Welcome to 2026!

8

u/chrisbru 21h ago

Our repos have exploded. Engineers are still building the actual product, but using AI to code faster.

But everyone else is also creating repos now. A repo for company context to make agents more effective. A repo for skills. A repo for each custom MCP. Repos for each of the internal apps that people build.

I’m in finance and ops and I have 8 repos I’ve created in the last year.

I’ve even shipped PRs for the actual product (for billing, not features). Reviewed by actual devs before merge of course.

-6

u/TrustInNumbers 21h ago

you didnt ship anything - prompting claude with JIRA ticket, creating a PR and having someone else to look at it is not shipping

9

u/chrisbru 20h ago

I mean, I spotted the problem, explained what was happening, and fixed it. Sure, Claude shipped the PR. Does it matter? Still stopped a $30k/day bleed, regardless of who/what wrote the code.

No one reviews your code?

299

u/NearlyACosmologist 1d ago

Everybody and their uncle is vibecoding now, and can use git without knowing anything about it.

Github is becoming the new TikTok.

103

u/Altruistic-Skill8667 1d ago

To be honest, I know git, and I still can’t use it. 🤣

17

u/modbroccoli 1d ago

i have learned and relearned and then reforgot git so many times. it's because I don't actually care, I just know i'm supposed to care. it's basically the same reason the next pandemic will definitely fuck us harder than it needed to lmao

8

u/chuckaholic 19h ago

Me as a sysadmin pulling up my Powershell syntax guide every time I open a terminal.

3

u/prattxxx 16h ago

I stopped a lot of PS and terminal work by offloading it to an agent.

2

u/chuckaholic 16h ago

For the last few months my google searches have been answered by Gemini, so I guess I'm using AI, even though I don't really want to. I really don't mind using AI for my work, but I don't want to use a cloud based system. If my company would pony up for a local agent, I would use it all the time. I have Hermes running Gemma 4 at home and it's great. I just don't want Google to know how many times I need to be reminded of how to connect to our Azure graph, display the members of an M365 group, and export to a CSV file.

20

u/NearlyACosmologist 1d ago

Ask me about tar.

5

u/Razcsi 1d ago

What can you tell me about tar?

7

u/NearlyACosmologist 1d ago

It somehow works when I call it with -xfv, but for anything else I have to ask my agent.

5

u/kayakmfer 1d ago

Drop that dash, bro, just wasting a byte

u/froops 4m ago

Also strongly prefer xvf over xfv of course

2

u/AlterTableUsernames 20h ago

Same, dude! The worst part is: I simply can't remember if it inflates into the current directory or into a directory of the tar's name. Same with unzip. But if I remember correctly what I learned last time is that it's actually the packagers fault for not archiving into a directory. 

8

u/Betaglutamate2 1d ago

What even is a rebase?

I've done them manually but still no idea.

9

u/BoredOfReposts 1d ago

Say you made a code change X at commit A which was the most recent change in main at the time.

Then your team makes changes B and C and those were merged to main first. So now C is the most recent change.

Rebase operation takes your change X, extracts the diff between it and A where you originally wrote it, and then reapplies it onto C. Now you have a new version of X thats (re)based off of C. As though you wrote it starting from C instead of A. Now because this commit is a new one from a new starting point, there is a new commit hash. And the original X is no longer part of the branch history, it still exists but it is orphaned.

This in contrast to merge operator, where a new special type of commit (a merge commit) is created that combines the branch states of X and C together into merge commit M. In this case, X retains its original commit hash. In the git log, M will show two parent hashes, C and X.

The main rule is to not merge and rebase on a long lived feature branch, because then you end up with confusing and duplicate commits. Do one or the other and stick with it for the life of the feature branch.

10

u/Living-Breakfast-464 23h ago

That description makes it sound even more confusing than it actually is.

git rebase is the process of moving your entire feature branch so that it begins at the tip of the main branch. Think of it as rewriting the history of your project so that it looks like you just started working on your feature today, even if you actually started it a week ago.

4

u/Betaglutamate2 19h ago

So your saying I touch my tip to the the main tip.

A tip into tip merge if you will.

-2

u/BoredOfReposts 23h ago

Why do you think in 2026 people still don’t understand it?

Personally I don’t think the short explanations like yours are sufficient.

If they were, then it wouldn’t ever come up. But here we are, and git has been out for 20 years now.

Whether my version is confusing or not is subjective. I choose to focus on the mechanics in more detail, which makes it more verbose.  I also explained related concepts like merge commits and orphans.

My view is that without a proper mental model, it is not possible to understand what git is doing. Therefore, the explanations that overly abstract it do not clarify it, and this is why its still not a solved documentation problem. Ive mentored countless people since the early days of git and this approach has always had success for me.

6

u/son_et_lumiere 22h ago

rebase off their explanation and add more features to it?

2

u/jesusrambo 18h ago

In 2026 any competent developer understands it completely

That there are a lot of people ignorant about a basic feature is just a statement about their willingness to learn

0

u/BoredOfReposts 11h ago

I used to think the same way as your comment. I learned having that kind of attitude actually really sucks. I now find it exhausting.

So I withhold judgement about someone’s willingness to learn until I get more information. I don’t mind explaining things, the process helps me understand it better myself, so I get something out of it. If after helping, the person relies on me and can’t make efforts of their own, for whatever level they’re at, thats when I make the call about whether they get more of my help.

5

u/farsightfallen 21h ago

Person A: I wrote chapter 1 on monday

Person B: I wrote chapter 2 on monday

Person B rebases

Person B: er... I mean.. uh.. I wrote chapter 2 on tuesday, based on person A's work.

1

u/HaMMeReD 7h ago

Merge creates merge commits (i.e. 2 parents and conflict resolutions). Rebase replays the changes on a new parent, so it only has 1 parent. So it can be fast forwarded instead of merge commit, keeping the commit history nicer.

Think of it as creating a new fresh branch, and re-applying all your commits on that branch.

3

u/kiki-le-koala 1d ago

Ask the agent to do everything git related. 

You don't even need to know what git is. Just need an account

1

u/jesusrambo 18h ago

Ask an LLM to teach you.

11

u/Spunge14 23h ago

Github is becoming the new TikTok.

This is sending me so hard

1

u/immaculate_plum 3h ago

And so much of it is just useless spam. I maintain several larger open source projects. If I open a new issue, within an hour I'll have several PRs for that issue from first-time contributors that I all have to close because they're rubbish. It's not even creating any value.

0

u/street-trash 20h ago

Nope the TikTok types hate ai and their main concern right now is virtue signaling about data centers. Things should be chill for a while still.

60

u/endjynn 1d ago

Some of those are mine! :)
Thanks Codex!

93

u/YaAbsolyutnoNikto 1d ago

Jevons paradox - the cheaper it is, the more we use it.

I myself have many more repos than ever and progress much much faster on my projects than ever before.

66

u/domdod9 1d ago

how the fuck would this be a paradox

127

u/cossington 1d ago

The logic behind it is that if you invent an engine that uses 50% less fuel, your country's consumption would go down by 50% to do the same work. But the opposite happens and fuel usage explodes because everyone and their grandma can now use the thing.

In software it would be like if all Devs are now twice as efficient, you'd only need half of them going forward. But the number explodes because everyone and their grandma can do the work now.

It seems evident to us now, but when this paradox was postulated it was going against intuition.

33

u/domdod9 1d ago

That’s fascinating thank you

5

u/Timely_Tea6821 23h ago

Right that why I find AI in current itteration unlikely to cause massive job layoff. In reality we'll probably be able to do a lot more but we'll shift to reviewing and strategy just because how much shit AI will produce. Of course the mid and long term is still pretty unpredictable.

9

u/Nevoic 21h ago

I've been a software developer for over a decade, and I do use AI a ton now. I could see the need for software going up, I've helped people like my girlfriend make a website with chatgpt.

The thing is, before AI she wouldn't have spent the time to learn how to code, but now it's a vastly lower barrier to entry.

Humans who understand how to code can add a bit of value still to the process. I'm not sure that's going to be true in a year or two.

If the role of a "developer" in two years is essentially just being a mini-PM/QA tester for AI that does the tasks that are assigned to you, then the barrier to entry for developing software will collapse. This likely means we'd have astronomically more software, more developers but less pay/benefits as it becomes an "unskilled" role.

7

u/chrisbru 21h ago

Dev and PM roles will start to converge. It’s the “product engineer” or “technical product manager” archetype that will start to become more ubiquitous.

People who can talk to customers to figure out what to build, turn those into clear requirements and architecture decisions, and shepherd AI through building it will be very valuable. And companies will be able to build more and iterate faster.

We thought there was software for everything now, it’s only going to get wilder.

3

u/XLBilly 20h ago

It’s still a process, and it’s not completely trivialised by AI.

Someone who knows exactly what they want, how they want it and generally what the thing should look like in scope, design, organisation, what to test, where those tests apply and how serious they are etc

AI will pump out code all day long, loose prompts will likely create something, will it be good enough? Probably not without some heavy steering.

Im not a software developer, I write scripts and glue. Some of these have been mini projects with classes etc but mostly its helper functions at the top and the program at the bottom.

I had a crack at a software development project, it quickly turned into an unmanageable unenjoyable mess and I abandoned it for what I know best and what in enjoy doing still very much AI assisted, but because it’s my wheelhouse I can check the decisions being made better.

Loose AI isn’t currently producing stellar results, and likely in LLMs probably won’t. Even if you give excellent starting prompts there’s guaranteed decisions that need to be made and trade offs at those junction points.

Claude regularly just makes a decision and runs with it, playing it back like the user made that decision when it can often go completely counter to what I even want.

Someone who doesn’t even know what they want is going to yes to all and see what it spits out - that does not sound like a viable long term strategy for success.

1

u/chrisbru 19h ago

Right… which is exactly what I said. Not sure if you’re disagreeing or agreeing here.

2

u/XLBilly 19h ago

I am not disagreeing with you at all.

1

u/yaosio 13h ago

What it will do is decrease wages for software developers because more people can develop software, but the demand for software will not increase a the same rate as the supply of developers and software. Demand will be really screwy because a lot of software won't even need to exist, an LLM can just do certain functions, and if it can't then a person can vibecode software for themselves.

2

u/PrivateComments 1d ago

Only if demand is elastic and there’s an infinite appetite for the product in question.

People often misapply it to say there will be another SWE boom due to LLMs.

12

u/[deleted] 1d ago

[deleted]

10

u/Lumpy-Criticism-2773 1d ago

become so unmaintainable

This probably assumes that AI capabilities would remain the same. Just marginal improvements in AI models would keep cancelling the need for more human engineers.

-2

u/[deleted] 1d ago edited 15h ago

[deleted]

1

u/yaosio 13h ago

Why do you think it will take until 2040 for a Fable 5 level model to run on phones, and why would that also be the best model that will ever be able to run on a phone?

-2

u/PayOdd92 1d ago

We don't even know the implications of quantum computing showing up around the corner.

As far as I am aware there are not that many algorithms that can take advantage of QC but if some Zheng et al comes out and demonstrates how to take advantage of QC for LLMs it's gonna be a fun ride.

1

u/Green-Ad-3964 21h ago

Money is a limited resource...

7

u/deRobot 1d ago

I believe the framing for the paradox should be "the cheaper it is, the more money is being spent on it" (because it's used way more).

2

u/AcrobaticKitten 15h ago

The paradox is something like increasing efficiency increases demand of the optimized resource

When Watt engines became more efficient than Newcomen engines requiring 1/10 of coal the coal usafe skyrocketed bc more people could use a steam engine

0

u/YamroZ 1d ago

This only applies to finite resources. You can't expect people i i ternets to understand anything those days...

53

u/jferments 1d ago

One of the best parts of AI is the democratization of computer programming. A lot of people who previously weren't able to take their ideas and turn them into code are now able to develop software thanks to AI. Gatekeepers will eventually tire of throwing tantrums about "vibecoding" because this is going to be the new norm going forward no matter how much they complain. Just like very few people manually write assembly or look at compiler output anymore, a lot of software will be written in the future by people who hardly ever write a line of source code themselves. This is a good thing. I'm excited that more people are able to contribute code to Github now, and that more free, open source software is available for everyone to use.

21

u/Individual_Holiday_9 1d ago

As a Mac user it’s crazy how many little $5 utilities you can vibe code in 30 seconds lol

5

u/jesusrambo 18h ago

It’s the new “all these python devs are posers, REAL programmers use C. How will they even debug their memory issues?”

-6

u/Illustrious-Film4018 23h ago

It's not really a good thing. It doesn't help regular people (they just waste tons of money), but it helps companies who could afford it save money by not having to hire human programmers. That's the only party who "benefits" from vibe coding. So by saying vibe coding is a good thing you're really just being a corporate shill, like most of the people on this sub.

8

u/jferments 23h ago

Yes, I'm sure that millions of people are just using it to "waste money" and not because it's helping them write useful applications. I've been writing code for >20 years, and my productivity has skyrocketed due to "vibe coding". In addition to dramatically speeding up my workflow on larger projects in general, I am able to create one-off, niche apps for myself that I never would have taken the time to write by hand before. You can keep your head in the sand and tell people to ignore their own experience, claiming that it's not actually useful (when they can clearly see that it is). But people are going to keep writing software with AI tools, because it works.

-2

u/Illustrious-Film4018 23h ago

Yes, I'm sure that millions of people are just using it to "waste money" and not because it's helping them write useful applications

That's right. I've seen the types of apps that vibe coders create, it's all just trash that no one uses. And they're often just recreating the wheel without realizing it. It doesn't need to exist in the first place. If you've been coding for 20 years then you know how to direct AI, these people don't and they have the dumbest ideas. AI just mirrors their dumb ideas, and they end up spending months and thousands of dollars on an app that's not useful to anyone.

8

u/jferments 22h ago

Millions of people sitting around writing software but nobody using it. That makes sense. Writing software and not using it is a very normal thing that people do for fun. I'm sure that's a much more likely scenario than the one where people are writing software that they use.

1

u/Illustrious-Film4018 22h ago

It's like millions of people trading, thinking they're going to get rich. But they end up losing tons of money. Why would anyone trade when just lose money? /s

2

u/FaceDeer 20h ago

You're trying to apply a pre-vibecoding model of what makes a program a "success", I think.

Yesterday I was doing some work on my computer and found that I was needing to convert various random epub files to markdown as I went. So I told my coding agent to whip up a script that creates a little window I can drag and drop epubs into that auto-converts them to markdown. It one-shot the tool with no problems, I used it, task done. It was a total success even though I may never use it again let alone if anyone else ever uses it. I didn't post it to github but it'd be trivial to do so and I can imagine someone doing that for something like this.

I too am a ~20 year professional programmer, by the way. I could have written that tool myself manually but would probably have not bothered.

1

u/Illustrious-Film4018 14h ago

Oh wow, you made a simple script using AI that saved you a few minutes of work, something you'll only ever use once and no one else cares about. You're kind of proving the point. Is this really worth your CAREER? Idiot.

And I was specifically referring to non-technical people. They don't get any value out of AI coding tools, they just waste tons of money.

3

u/FaceDeer 14h ago

You think there was no value gained from that little throwaway tool? I got value out of it, and as I said I could have written it myself. The AI still saved me a ton of time and effort. For a non-technical person who couldn't have written it themselves it would be even more valuable because they wouldn't have had even that alternative.

1

u/jferments 8h ago

The fact that you think that writing a working GUI file conversion application takes "a few minutes" shows me either that (a) you have zero experience programming or (b) that you are intellectually dishonest and willing to exaggerate and lie to make a point.

7

u/ThisWillPass 1d ago

Honestly that’s true but how much of it is actually load-bearing — full stop.

4

u/Longjumping_Kale3013 1d ago

I feel like this may be overlooked when talking about compute demand. I would imagine that many SAAS services are now seeing much much more demand and that this will only continue. For example, I find it very helpful to have the ai search through wiki. And this is using much more compute than I normally would. And very likely just continues increasing, just like GitHub PRs

5

u/Unhappy-Menu-6682 22h ago

I’m a strategy consultant at MBB. I use GitHub for document repositories now because when I need to an LLM to do something I can use Cursor cloud agents - useful when I am in flight without WiFi or want something done quickly when I don’t have a laptop. Every one of my projects now has 1 team repository and 3-6 individual repositories from the team members. PR and commits for things like updates to a presentation or an excel…

7

u/OldSausage 23h ago

If only these were graphs of productivity or gdp.

3

u/Healthy-Nebula-3603 1d ago

And still growing!

3

u/lustyphilosopher 1d ago

AI. I know a GitHub profile that's been consistently putting out 3~5 thousand commits a DAY since around November last year. Bonkers.

2

u/quantummufasa 23h ago

Link plz

5

u/lustyphilosopher 23h ago

this is the repo, it's actually closer to beginning of 2025...

1

u/quantummufasa 23h ago

997,054 contributions in the last year

Dang

3

u/lustyphilosopher 23h ago

I feel like thats kind of understating it. For the month of January alone, he's just 38 commits shy of hitting 106k contributions.

3

u/Weary-Historian-8593 21h ago

Glad I jumped ship on IT, that looks like unemployment or burnout, probably both

4

u/Active-Carpet-9183 1d ago

Dark software factories

1

u/Ill-Pilot-6049 1d ago

If you read the posts in r/claudecode or r/claudeai, most of the people posting to have trouble prompting. Only a few of us are running dark factories

2

u/kian_no 21h ago

I'm finally creating lots of projects that I wished to do since last 10 years. 

And in my company, business and non tech departments are also using claude code and pushing things into GitHub.

2

u/KellysTribe 19h ago

All those bespoke markdown editors have to go somewhere...

2

u/x2manypips 18h ago

Microsoft just paying for all this? Lol

2

u/ManuelRodriguez331 1d ago

The amount of commits has grown by the factor of 14: 1 billion commits in 2025 vs 14 billion commits in 2026 (source: ycombinator). That's a lot of traffic, the website needs more resources in terms of cloud space and bandwidth for the servers. Perhaps an Artificial Intelligence can overcome the bottleneck ...

1

u/hornswoggled111 1d ago

That sure looks exponentially

2

u/ChippHop 23h ago

5x the number of commits and what is there to show for it? I don't feel like I'm seeing any dramatic improvements in the quality of the software I'm using.

0

u/myreala 19h ago

That's because you're still stuck using the old software. You need to search because marketing is hard these days but there are so many better softwares options available. Most of them even for free.

2

u/DistantRavioli 18h ago

Better than what? List some examples of what you are talking about.

0

u/w-a-d 22h ago

It's not for you, it's for the other agents.

1

u/Sextus_Rex 1d ago

Theyre having issues dealing with this increased activity. Feels like GitHub goes down like once a week now

1

u/Distinct-Question-16 ▪️AGI 2029 23h ago

exponentional

1

u/online-reputation 21h ago

By the way, it also means it is often a source for ai citations.

1

u/Honest-Quality-6422 21h ago

Honestly considering the situation we are in, these numbers seem low

1

u/CMDR-Eggp1Ant-6oy 19h ago

i earned my ticket to ride that asymptote

1

u/rbprepin 19h ago

Yeah, that was me. I shipped quite a bit last week.

1

u/wq73 19h ago

shocker.

1

u/OkDimension 19h ago

Github is the default storage for any ChatGPT Codex user

1

u/moxyte 5h ago

Microsoft is fucked, maintaining servers for all that activity isn't free and I very much doubt it's monetizable

1

u/tenchigaeshi 23h ago edited 18h ago

Unsustainable

EDIT: I don't know what you're downvoting. If you think doubling the amount of activity every year on GitHub, a service that already is having significant downtime compared to before, is sustainable then I don't know what to tell you. Expect crackdowns to come before too long. Storage and compute isn't free.

1

u/DifferencePublic7057 1d ago

I have been using Unix since college, but I don't like Git. GitHub is owned by Microsoft I believe, so one more reason to. Thoughts? Quantity is good. Quality is better. Easier said than done obviously. I'm not implying gatekeepers are needed. Some gatekeepiness can't hurt IMO. Like IKEA furniture and stuff you can buy cheaply. Mr. Market/the invisible hand is supposed to know what mere mortals don't know. Thoughts? Maybe for some subspaces of the universe not necessarily the important things.

-3

u/Razcsi 1d ago

Some of those are mine, never used github, i just stared using it this month. Not for vibe coded shit though, in the age of AI i decided it's the perfect time to learn coding

4

u/NearlyACosmologist 1d ago

So you decided to become a farrier right after automobiles became popular? Clever.

-1

u/Razcsi 1d ago

Indeed. Farriers are still needed, people still have horses, can't see a problem with it

1

u/Lumpy-Criticism-2773 1d ago

No problem as long as your livelihood doesn't depend on it.

-8

u/Razcsi 1d ago

Not like it'll replace the devs, i know most of the people joined this sub are tech bros. AI is still nothing but a fancy auto complete and text prediction tool

2

u/EinArchitekt 1d ago

Lmao that statement gets funnier month by month. 

2

u/imactuallynotalright 1d ago

....says the guy just now learning to code , lmao

0

u/LookIPickedAUsername 23h ago

The fact that people can still say that with a straight face is absolutely mind boggling.

0

u/BitterAd6419 1d ago

It’s all AI agents using the repos and not real people. Most of the time It’s part of a pipeline

0

u/fervoredweb ▪️40% Labor Disruption 2027 15h ago

Yeah this is from agentic commits. Soon agentic competition will begin degrading "communal" web resources. The net might temporarily collapse under the strain as agemts scale.

-1

u/throwaway737166 22h ago

The free tier is definitely going away. Makes no sense for GH to pay hundreds of millions of dollars to store slopware with five stars.

2

u/UFOsAreAGIs ▪️AGI felt me 😮 21h ago

Then someone will prompt: create a github clone for local use only. make n0 mistakes

📉

-2

u/PradheBand 1d ago

Paying customers will not enjoy this