this post was submitted on 07 Aug 2025
143 points (100.0% liked)

memes

23378 readers
163 users here now

dank memes

Rules:

  1. All posts must be memes and follow a general meme setup.

  2. No unedited webcomics.

  3. Someone saying something funny or cringe on twitter/tumblr/reddit/etc. is not a meme. Post that stuff in /c/slop

  4. Va*sh posting is haram and will be removed.

  5. Follow the code of conduct.

  6. Tag OC at the end of your title and we'll probably pin it for a while if we see it.

  7. Recent reposts might be removed.

  8. Tagging OC with the hexbear watermark is praxis.

  9. No anti-natalism memes. See: Eco-fascism Primer

founded 4 years ago
MODERATORS
 

Text of postDo you disagree with how the company you work for is run? Are they on the BDS list? Are they a fossil fuel company or SUV manufacturer? Is strike action not an option? Try hiding under a rock! Alternatively, adopt ‘slow-down’ tactics among your colleagues. These methods of industrial action are intended to slow down the efficiency of companies without risking disciplinary action. ‘Slow-down’ might take the form of playing everything ‘by the book’ and taking procedural processes VERY SERIOUSLY. In practice, corners are cut, so why not become that sticker for the rules and make sure everything is signed off exactly how the bosses intended? In an industrial dispute in 2011, right-handed Australian workers at the airline Qantas started using their left-hands. So get out from beneath that rock, and if you’re stuck by circumstances working for a bad-guy, get creative with your resistance - and organise offline with your colleagues. Crab Museum takes no responsibility for you getting the sack, but it's worth thinking about what power we still have over the world around us.

you are viewing a single comment's thread
view the rest of the comments
[–] 30_to_50_Feral_PAWGs@hexbear.net 27 points 1 day ago (1 children)

Italian Striking by forcing the CHUDdy devs on my team to learn a (not-very-)convoluted Git branching strategy and apply it to every single software project in our repositories, regardless of the scope of the feature, enhancement, or defect tickets that come in. One line change? Sorry, you gotta make a milestone for your target version, make a release candidate branch that will be your eventual merge target, make an issue and track it against the milestone, make a branch for the issue and a merge request that targets the release candidate branch, and keep your work the fuck out of Main/trunk until it has been reviewed by a team lead.

Oh, you didn't add trace loggers in this one function? You failed code review, go back and create another issue, a branch for the issue, and a merge request targeting the release candidate branch. Oh, you forgot to update the version string in the Maven POM file to indicate that this is a -SNAPSHOT release? Undeploy your non-Prod code and fix it. Yes, that means another issue, a branch, and a merge request targeting the release candidate branch. The control plane should not be reporting a non-snapshot version on a pre-release, god damn it!

...except this is all ultimately just good housekeeping because it makes sure those motherfuckers are very intentional about what they do in that codebase, given that we had a revolving door contractor situation for a few years that left us with more tech debt than any small team could ever hope to address.

[–] XxFemboy_Stalin_420_69xX@hexbear.net 9 points 1 day ago* (last edited 1 day ago) (3 children)

sounds more like making life miserable for your coworkers than anti-boss action tbh (with the caveat that i know exactly nothing about how coding/software development works)

[–] Nakoichi@hexbear.net 16 points 1 day ago (1 children)

Yeah but it says in the first like 5 words they're chuds so it would annoy chuds and slow productivity. Win-win.

[–] SwitchyandWitchy@hexbear.net 8 points 1 day ago* (last edited 1 day ago)

The coworkers being chuds is the implied justification for this, but I do want to caution against individual action. It's very easy to find yourself out of luck and good will when taking action against both the company and coworkers, even if the latter isn't the main target.

It's always better to find a route that results in at least passive support from your coworkers. In my experience this usually isn't difficult and just takes patience, since the bosses inevitably screw things up and make more work for everybody by cutting corners and searching for more productivity while keeping pay and benefits as low as they can get away with.

(with the caveat that i know exactly nothing about how coding/software development works)

spoilerWhat I described above is just how most public open-source projects operate their public source code repositories. It's not even overkill for a private company's setup; depending on the org, it might not even be quite enough. At my company, I have seen -- and personally shot down -- far worse branch management strategies (e.g., git-flow, which may have its own SCP entry).

Granted, it's probably overkill for a personal project unless you're collaborating with someone else and/or actively trying to track deliverables or target milestones or some such. Or, as I like to call it, "mitigating my own unmedicated ADHD symptoms by tracking EVERY GODDAMNED THING so I don't need to think back and remember it three weeks from now when I actually see this half-abandoned project again." Sometimes it even works!