Organic Maps migrates to Forgejo due to GitHub account blocked by Microsoft.
-
So wait.
GitHub is Microsoft?
If you like VSCode you can try VSCodium which supports almost all features of VSCode but should be fully FOSS without Microsoft proprietary blobs.
-
Good question. Commits are easy - they are part of git core functionalities so are included in every copy of the repository (for example developers' local copies) but github specific contents like comments, issues, PRs..?
This should also be part of git repo (but maybe not downloaded through typical git clone as it might be too large though). Has developers of git ever considered doing this?
-
is forgejo the same thing as codeberg? it looks similar.. just curious
Forgejo is such a terrible name
-
The only person on this list that lives in Russia is Alexey Naumenko. So what are you yappin about.
mapsme: founded by Yury Melnichek, later joined by Alexander Borsuk and Viktor Govako
organicmaps: founded by Roman Tsisyk (completely unrelated to mapsme) and later joined by Alexander Borsuk and Viktor Govako
So the founders are not the same, but some devs from the old project joined organic maps.
Not really nice of you to edit the message after it was replied to.
Changing your github profile location does not mean neither factual relocation, nor changing citizenship.
yappin
Just adding context, because thir wording makes everyone think like "out of the blue, by some stupid coincidence one of the developers possibly seemed to be somewhere around some misteruous sanctioned region" -
Not really nice of you to edit the message after it was replied to.
Changing your github profile location does not mean neither factual relocation, nor changing citizenship.
yappin
Just adding context, because thir wording makes everyone think like "out of the blue, by some stupid coincidence one of the developers possibly seemed to be somewhere around some misteruous sanctioned region"Not really nice of you to edit the message after it was replied to.
My last edit was at: Saturday, March 29th, 2025 at 9:34:06 AM GMT+01:00
Your comment was posted at: Saturday, March 29th, 2025 at 9:45:53 AM GMT+01:00
-
This should also be part of git repo (but maybe not downloaded through typical git clone as it might be too large though). Has developers of git ever considered doing this?
The original developer of Git is Linus Torvalds and he wrote it for the use of developing Linux. He handed off the project to Junio Hamano after a short while who still leads it. They use a process where you submit patches by mail, for Linux and for Git itself too.
To make this easier they have the commands
git format-patch
,git send-email
andgit applymbox
later changed togit am
to apply them. They also addedgit request-pull
to generate a short plaintext email like message to request a pull.The Pull Request as a bigger concept of data and discussion that should be kept around came from GitHub and was put over top of Git. The concept has been rebuilt by various competitors separately. But it doesn't match the Linux and Git development model so they never used GitHub Pull Request, even though there is a GitHub mirror of Linux and a GitHub mirror of Git. For them the discussions happens in the mailing list.
So it's very unlikely they would start including the stuff that was added by others over top, that they don't need.
-
So wait.
GitHub is Microsoft?
Yes, also remember to completely avoid Typescript and C# since they are also Microsoft. And Rust since heavy ties to Amazon. Actually, just to spare you the time, avoid programming altogether and do something like farming, since no Big Tech influence there. /s
-
We need something like Forgejo, but decentralized, like Lemmy. I don't want to create a new account for every Forgejo instance.
-
Could you like, stop policing other peoples speech? I am sure they know they can say shit on the internet, they just choose not to.
how about you police my policing, and then i will police my whole ass
-
We need something like Forgejo, but decentralized, like Lemmy. I don't want to create a new account for every Forgejo instance.
Forgejo is in fact working on being decentralized, just like the underlying git structure is. There are some first federation things in there, but the full implementation is still pretty far out.
-
There is some serious crapitalist hate for organic maps. I never heard of it util is was taken off the play store for a bit. I side loaded it that day.
Why would it get removed? Can't have any competition for Google Maps or what?
Well, it won't get removed on F-droid -
You can make git clone and get all the code and commits.
Issues are a GitHub feature and they cannot be downloaded by a simple git commandYou can import it on an alternative like gitlab. The process of moving something from github to gitlab is just as smooth as if everything was contained in the repo itself.
-
Yes, also remember to completely avoid Typescript and C# since they are also Microsoft. And Rust since heavy ties to Amazon. Actually, just to spare you the time, avoid programming altogether and do something like farming, since no Big Tech influence there. /s
I do like the work Microsoft has done with typescript itself, but more and more I'm seeing they are trying to tie up the language to VSCode, treating other editors as "second class citizens" for it and that has started to make me reconsider things.
-
Not really nice of you to edit the message after it was replied to.
My last edit was at: Saturday, March 29th, 2025 at 9:34:06 AM GMT+01:00
Your comment was posted at: Saturday, March 29th, 2025 at 9:45:53 AM GMT+01:00
Those people could be Polish or Ukrainian or born somewhere completely different
They have russian state-specific latin names transliterations
Except for Roman Tsisyk, there's nothing specific in name.But most probably the guy from moscow got caught with russian ip which busted the whole gh organization. I don't think gh has any other sanctioned regions users id methods
-
how about you police my policing, and then i will police my whole ass
BANG BANG BANG ASS POLICE OPEN UP
-
We need something like Forgejo, but decentralized, like Lemmy. I don't want to create a new account for every Forgejo instance.
Wouldn't it be the other way around, having someone centralized so with one account you can report bugs in any public project?
-
Yes, also remember to completely avoid Typescript and C# since they are also Microsoft. And Rust since heavy ties to Amazon. Actually, just to spare you the time, avoid programming altogether and do something like farming, since no Big Tech influence there. /s
I retired and doing hobby projects in Python and java, so I get choices (including not playing) but wtf, big tech figured out how to take over open source?
That's particularly evil.
-
how about you police my policing, and then i will police my whole ass
AssCopsAreBastards
-
Every other ci in existence you just write a command. Then if it doesn't work you run the command on your machine and fix it.
Actions are "magic" which means you have to fake the ci runner with tools and reverse engineer the action to run local debugging and if it failed you might not even fully know what was running with digging into the actions source.
GitHub provides you the tools and their "easy" until they aren't.
It's very Microsoft though. It feels like trying to write a Windows app and trying to get your random
Net environment definition to line everything up and compile in VS then hoping the same thing happens when you deploy.You can just write bash scripts in your actions if you want them to be easily replicatable on your local machine, so you don't really lose anything with that system.