this post was submitted on 29 Jul 2024
389 points (99.5% liked)

Programming

22979 readers
456 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
top 50 comments
sorted by: hot top controversial new old
[–] Outsider9042@aussie.zone 124 points 1 year ago (9 children)
[–] mesamunefire@lemmy.world 24 points 1 year ago

I hope they get true federation up running soon.

[–] ace@lemmy.ananace.dev 11 points 1 year ago

GitLab has been working on support for ActivityPub/ForgeFed federation as well, currently only implemented for releases though.

load more comments (7 replies)
[–] GrappleHat@lemmy.ml 99 points 1 year ago (7 children)

The chances of a deal are said to be weeks away, if not non-existent.

What kind of non-sentence is that?

[–] holycrap@lemm.ee 36 points 1 year ago (1 children)

It's an existing sentence if it's not non-exisent.

[–] leisesprecher@feddit.org 19 points 1 year ago

Big if true and big.

[–] tatterdemalion@programming.dev 24 points 1 year ago (1 children)

Seems like a perfectly cromulent English sentence to me.

[–] GrappleHat@lemmy.ml 13 points 1 year ago (1 children)

Looked up "cromulent" in the dictionary. Wasn't disappointed!!

load more comments (1 replies)
[–] ElCanut@jlai.lu 10 points 1 year ago

The kind of sentence you write when you're still 20 words from the target your editor set for the article

[–] pelotron@midwest.social 10 points 1 year ago

It's what they most not the least

load more comments (3 replies)
[–] AlexWIWA@lemmy.ml 56 points 1 year ago (2 children)
[–] koalaSunrise@programming.dev 15 points 1 year ago (4 children)

I literally made an account the day before and transferred from GitHub, then wake up and see this. FFS just my luck.

load more comments (4 replies)
[–] Olhonestjim@lemmy.world 13 points 1 year ago

You should all incorporate and buy it.

[–] Aatube@kbin.melroy.org 39 points 1 year ago (4 children)

I feel like sourcehut really ought to be mentioned more. It federates issue and PRs by email and has a wonderful interface while not having any ads—which is why hosting one's own repo (and their CI and IRC but nothing else) requires $2 a month, unfortunately.

[–] lysdexic@programming.dev 11 points 1 year ago (3 children)

I don't think it makes any sense to mention source hut because none of the features you mentioned are killer features (or relevant. Why should I care about implementation details of feature tracking?) and it completely fails to address GitLab's main value proposition: it's CICD system.

Anyone can put up any ticketing system. They are a dime a dozen. Some version control systems even ship with their own. CICD is a whole different ballgame. It's very hard to put together a CICD system that's easy to manage and has a great developer experience. Not even GitHub managed to pull that off. GitLab is perhaps the only one who pulled this off. A yams file with a dozen or so lines is all it takes to get a pipeline that builds, tests, and delivers packages, and it's easy to read and understand what happens. On top of that, it's trivial to add your own task runners hosted anywhere in the world, in any way you'd like. GitLab basically solved this problem. That's why people use it.

load more comments (3 replies)
load more comments (3 replies)
[–] Spzi@lemm.ee 30 points 1 year ago (10 children)

FYI you can self-host GitLab, for example in a Docker container.

[–] wewbull@feddit.uk 34 points 1 year ago

Or you could make your life a lot easier and use Forgejo

[–] WolfLink@sh.itjust.works 14 points 1 year ago (1 children)

You can also just make bare got repositories on any server you can ssh into.

[–] Kissaki@programming.dev 21 points 1 year ago (1 children)

make bare got repositories

got it

load more comments (1 replies)
load more comments (8 replies)
[–] aport@programming.dev 29 points 1 year ago (4 children)

GitLab still doesn't even support leaving comments on a commit message. Like, what? GitLab and GitHub have all these fancy shiny features but still suck at offering basic code review functionality.

I never understood the appeal.

[–] allywilson@lemmy.ml 30 points 1 year ago (2 children)

I mean, I get it, but that's also not a thing of git, right? Just because GitHub does something doesn't mean every other hosting provider needs to. If your code review process is to comment upon specific commits, maybe it's the code review process that's wrong?

load more comments (2 replies)
load more comments (3 replies)
[–] starshipwinepineapple@programming.dev 22 points 1 year ago* (last edited 1 year ago) (4 children)

Ive been meaning to move to codeberg, self hosted forgejo, or sourcehut so this will only accelerate that if things get worse.

[–] morbidcactus@lemmy.ca 13 points 1 year ago (2 children)

I just flipped my home git to forgejo from gitlab, gitlab just had a bunch of features I wasn't using, forgejo was easy to setup and it has a nice interface. I'm just using it for source control right now, still probably huge overkill but eh

load more comments (2 replies)
load more comments (3 replies)
[–] barsquid@lemmy.world 19 points 1 year ago (5 children)

GitLab is a security nightmare, good luck to whoever purchases that.

[–] werefreeatlast@lemmy.world 13 points 1 year ago

Elon has entered the chat....how many labs of this git kind can you make for him within 3 months? Can git be somehow monetized?

[–] Eezyville@sh.itjust.works 12 points 1 year ago (1 children)

Could you elaborate? I use Gitlab bit i'm not a security expert.

[–] barsquid@lemmy.world 12 points 1 year ago (1 children)

Here is the one where I decided to never trust their code: https://arstechnica.com/security/2024/05/0-click-gitlab-hijacking-flaw-under-active-exploit-with-thousands-still-unpatched/

As if that isn't bad enough, I am pretty sure they have had other incidents.

[–] 0x0@lemmy.dbzer0.com 13 points 1 year ago (8 children)

I used to host a Gitlab instance at work. It was dog slow so I started digging into it and discovered they had a serious memory leak in some of their "unicorns," aka Ruby tasks. Instead of fixing the source of the leak they tacked on a "unicorn killer" that periodically killed tasks. The tasks were supposed to be atomic anyway, so this is technically fine (and maybe a good thing in the long run for correctness a la Netflix's Chaos Monkey) but I found myself kind of disgusted by the solution. I dropped it and went for a much sparser Git repo web server.

load more comments (8 replies)
load more comments (3 replies)
[–] ulkesh@beehaw.org 18 points 1 year ago

Don’t worry everyone! It’ll get bought by some investment firm or by a large company (Microsoft [to shutter it], Google, etc) and everything will be just fine.

Right?

sigh

[–] wersooth@lemmy.ml 18 points 1 year ago

An other one bites the dust :'(

[–] UndercoverUlrikHD@programming.dev 11 points 1 year ago* (last edited 1 year ago)

ಠ╭╮ಠ

[–] onlinepersona@programming.dev 9 points 1 year ago* (last edited 1 year ago) (2 children)

Fuck. No other source forge supports groups or orgs with hierarchical projects 🫤 Gitea and Forgejo went hard on being github clones, so they're off the list. Are there any other alternatives? I don't want to have to bash together scripts to make something...

Anti Commercial-AI license

load more comments (2 replies)
load more comments
view more: next ›