this post was submitted on 05 Jun 2025
625 points (99.4% liked)

Programmer Humor

24658 readers
15 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
625
submitted 3 weeks ago* (last edited 3 weeks ago) by lena to c/programmer_humor@programming.dev
 

https://www.githubstatus.com/

Edit: seems like they fixed it, it works for me

you are viewing a single comment's thread
view the rest of the comments
[–] LovableSidekick@lemmy.world 6 points 3 weeks ago (3 children)

Interesting - I've been retired a few years but the way we used github was git commit, git push, usually at the end of the day. How has the workflow changed so people constantly need it to do any work?

[–] jj4211@lemmy.world 5 points 3 weeks ago (1 children)

Unfortunately, the ecosystem around github has evolved so that most folks centralize their testing and deployment code into being executed on github infrastructure. Frankly a perversion of the decentralized design of git.

Fortunately for my team, it doesn't matter because our process requires stuff that can't be done from github infrastructure anyway, so we have kept the automatic testing and deployment on premise even as github is the 'canonical' place for the code to live.

[–] LovableSidekick@lemmy.world 1 points 3 weeks ago* (last edited 3 weeks ago)

Wow, that's such a classic Microsoft approach - "Embrace and Extend."

[–] DerArzt@lemmy.world 3 points 3 weeks ago

GitHub added CI/CD pipeline functionality (called GitHub Actions). If it's down I can't merge code or deploy code anywhere since company policy requires analysis builds to run, and our deploys use the GitHub Actions to ship the code.

[–] pinball_wizard@lemmy.zip 2 points 3 weeks ago (1 children)

GitHub actions is crazy convenient, but it's a huge pain to run a copy locally. I try not to depend on it too much, but sometimes it is simplest to just go refill my coffee while it figures itself out.

(And it's almost never down. This week was unusual, to me.)

[–] LovableSidekick@lemmy.world 2 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

I still use github for personal projects but have never looked into what the Actions do, since github serves my minimal needs as-is. But it also did when I was working. I would think if people find that depending on certain features ultimately disrupts their work, the smart thing would be not to use those features.

[–] pinball_wizard@lemmy.zip 2 points 3 weeks ago (1 children)

I would think if people find that depending on certain features ultimately disrupts their work, the smart thing would be not to use those features.

Yes. That would be wiser. But it would also mean setting up a Jenkins server.

[–] LovableSidekick@lemmy.world 3 points 3 weeks ago* (last edited 3 weeks ago)

No problem. Jenkiins! Get your ass in here!