this post was submitted on 03 Jun 2026
502 points (99.8% liked)

People Twitter

10028 readers
1248 users here now

People tweeting stuff. We allow tweets from anyone.

RULES:

  1. Mark NSFW content.
  2. No doxxing people.
  3. Must be a pic of the tweet or similar. No direct links to the tweet.
  4. No bullying or international politcs
  5. Be excellent to each other.
  6. Provide an archived link to the tweet (or similar) being shown if it's a major figure or a politician. Archive.is the best way.

founded 2 years ago
MODERATORS
502
Managers (media.piefed.zip)
submitted 11 hours ago* (last edited 11 hours ago) by inari@piefed.zip to c/whitepeopletwitter@sh.itjust.works
 
you are viewing a single comment's thread
view the rest of the comments
[–] jtrek@startrek.website 59 points 6 hours ago (5 children)

One time at work I was tasked with writing a python script to compare two data sources. Like, you give it two CSVs and a primary key, and it tells you what data is in one but not the other, or mismatched, and so on. This worked fine and was in git, so anyone can use it.

My boss then asks if I can "put it on a website so anyone can use it".

This team has never done web development. Nothing for that is set up. Like, I could spin up a quick Django app or similar, but there's a lot of stuff to do and potentially fuck up.

I said "that sounds like a lot of research and ongoing maintenance costs. I think it'd be better to just check out and run the script"

Luckily for me he said "oh, okay"

[–] AeonFelis@lemmy.world 23 points 2 hours ago (2 children)
[–] kreekybonez@sh.itjust.works 1 points 13 minutes ago
[–] boonhet@sopuli.xyz 8 points 2 hours ago (1 children)

Funnily enough this comic hasn't been true for a long time because of ML.

[–] groet@feddit.org 5 points 1 hour ago

Well they did say it would be possible in 5 years ...

[–] ChickenLadyLovesLife@lemmy.world 10 points 2 hours ago (1 children)

I had a boss who read an article about APIs and then came to me and ordered me to start using them. I said I would research it and he went away and never mentioned it again. This was in 2010.

[–] driving_crooner@lemmy.eco.br 3 points 2 hours ago* (last edited 2 hours ago)

Pretty sure he read the famous Bezos email ordering everyone to implement and use APIs in Amazon

[–] Railcar8095@lemmy.world 24 points 5 hours ago

My past managers would have said "I don't understand why it is so difficult, and I'm not open to learn"

[–] yermaw@sh.itjust.works 37 points 6 hours ago (1 children)

Good guy manager trusts the person he pays to know this stuff to know this stuff.

[–] jtrek@startrek.website 17 points 6 hours ago

This is a good point. He's not a bad guy. He's just not very technical, and sometimes that's frustrating.

[–] MountingSuspicion@reddthat.com 8 points 6 hours ago (2 children)

How big were the CSVs? That sounds like a standard thing most spreadsheet apps can do already, unless the data size made traditional apps unusable.

[–] lightnsfw@reddthat.com 1 points 2 hours ago

I have an easier time doing that shit in powershell than I do in Excel which are the only tools I have available at work. I'm probably doing something wrong but I don't do it often enough to remember what that is. My PS script just works.

[–] jtrek@startrek.website 14 points 6 hours ago (1 children)

The biggest ones I've seen are 1.2GB.

Why this company uses gigabyte CSVs is a separate problem.

(Also sometimes they want to compare a CSV to what's in a database, which the script can also do but I didn't mention in the post)

[–] MountingSuspicion@reddthat.com 6 points 5 hours ago

That makes sense. I have been asked to write a program that does a standard spreadsheet function on multiple occasions, so I was just curious. Sometimes people just don't know the tools at hand, want to offload their work, or think an over complicated workflow is a better workflow. I can see how it was actually useful in your case though.