this post was submitted on 20 Jul 2024
557 points (97.4% liked)

Programmer Humor

19171 readers
1452 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 1 year ago
MODERATORS
 

cat looking inside box meme

  • yeah our project uses typescript
  • look inside
  • any
you are viewing a single comment's thread
view the rest of the comments
[–] lemmyvore@feddit.nl 8 points 1 month ago (1 children)

Typescript only prevents typing bugs... why did they have so many typing bugs?

[–] AlecSadler@sh.itjust.works 6 points 1 month ago (3 children)

Typo'd property names when accessing was the biggest one. Assuming a property was one data type instead of another and not casting or handling it appropriately. Accidentally calling something like it's a method when it isn't.

I ran a bunch of plugins on my end to help with some of that, but many of the older or stubborn devs refused and would refuse anything but, like, vim with no add-ons.

[–] bleistift2@sopuli.xyz 6 points 1 month ago (1 children)

I believe you don’t have to actually use (meaning “compile from”) typescript to profit from it. If you maul the compiler options hard enough, you might get it to analyze JavaScript and provide type checking.

[–] AlecSadler@sh.itjust.works 6 points 1 month ago

That's what I did locally.

But a lot of this JavaScript wasn't even transpiled/compiled for prod, just uploaded to a bucket and referenced directly. It was painful.

[–] bleistift2@sopuli.xyz 4 points 1 month ago

Elderly team mates with the flexibility of concrete, yay!

[–] lemmyvore@feddit.nl 3 points 1 month ago

Oof. I guess you can use typescript to make up for lack of IDE but it sounds like you had bigger problems anyway.