this post was submitted on 28 Aug 2025
70 points (100.0% liked)

Casual Conversation

1428 readers
42 users here now

Share a story, ask a question, or start a conversation about (almost) anything you desire. Maybe you'll make some friends in the process.


RULES

  1. Be respectful: no harassment, hate speech, bigotry, and/or trolling.
  2. Encourage conversation in your OP. This means including heavily implicative subject matter when you can and also engaging in your thread when possible.
  3. Avoid controversial topics (e.g. politics or societal debates).
  4. Stay calm: Don’t post angry or to vent or complain. We are a place where everyone can forget about their everyday or not so everyday worries for a moment. Venting, complaining, or posting from a place of anger or resentment doesn't fit the atmosphere we try to foster at all. Feel free to post those on !goodoffmychest@lemmy.world
  5. Keep it clean and SFW
  6. No solicitation such as ads, promotional content, spam, surveys etc.

Casual conversation communities:

Related discussion-focused communities

founded 2 years ago
MODERATORS
top 8 comments
sorted by: hot top controversial new old
[–] bekopharm@discuss.tchncs.de 8 points 1 month ago

Haha, rad :D

Got curious and checked our system and sadly the id does not even exist. Probably too long ago from when we used another system πŸ€”

[–] Toes@ani.social 4 points 1 month ago

Reminds me of when I tried to celebrate our 1000th ticket and nobody was amused with me.

Soulless bureaucrats

[–] Hamartiogonic@sopuli.xyz 4 points 1 month ago (2 children)
[–] chocrates@piefed.world 7 points 1 month ago

Pull request. Basically to make some code changes and are asking for them to be accepted

[–] oce@jlai.lu 2 points 1 month ago* (last edited 1 month ago) (1 children)

It's software development lingo, sorry for that.

When a software development team works on a project made of files containing code, each member can work independently on its own copy (called a "branch") of the "main" version of the code. Once a developer is happy of his modifications, he submits his changes to the team for review, before the changes can be merged to the "main" version.
This presentation of the modifications and review process is sometimes called a "merge request" or a "pull request". "Pull", because historically, other members would pull the version to their own machine for analysis. Nowadays, it can all be done on a web page (on GitHub for example). The PR has a tab for the modifications description and discussion, and a tab that highlights all the differences in the code between the "main" version and the new modified version.

When one creates such PR, a sequential number is automatically attributed, it serves as a quick identifier for the PR. And I was lucky to be the one to open the 1337th PR on this project. It's quite insignificant, just a little coolness factor.

[–] Hamartiogonic@sopuli.xyz 2 points 1 month ago (1 children)

Oh that’s pretty cool! The number and the system. Never really used github, branches or anything like that. My tiny software projects were never big enough to warrant heavy infrastructure like that, so I never looked into it.

[–] oce@jlai.lu 2 points 1 month ago

The infrastructure is pretty light, but the methodology with git takes time to learn. It's only really useful if there's more than one developer.