this post was submitted on 02 Nov 2024
502 points (98.6% liked)

Programmer Humor

32376 readers
1421 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 18 points 4 days ago (3 children)
[–] [email protected] 19 points 4 days ago (2 children)
[–] [email protected] 18 points 4 days ago (1 children)

Sorry, but you weren’t the type I thought you were all the time

[–] [email protected] 3 points 4 days ago (1 children)

The type is dynamic. It can be whatever you wish.

[–] [email protected] 8 points 4 days ago* (last edited 4 days ago)

You say : the type is dynamic

We hear : the type is imaginary

[–] [email protected] 4 points 4 days ago

You didn't need that opening parenthesis in python

[–] [email protected] 5 points 4 days ago* (last edited 4 days ago)

Try lua as a middle ground. It's object based but more classical with the syntax.

[–] [email protected] 0 points 4 days ago (1 children)
[–] [email protected] 21 points 4 days ago* (last edited 4 days ago) (3 children)

It’s the best scripting language I know of, but man I hate dynamically types languages. I am so used to rust and C/C++ that reading any large script or program will drive me insane

And the whitespace instead of {} tokens…

[–] [email protected] 13 points 4 days ago (1 children)

The whitespace doesn't bother me at all, but holy hell! Any time I'm trying to understand a Python program/library that's anything above a couple thousand lines of code, I instantly feel a burning hate for dynamic typing.

I love Python for scripting- in large part because of dynamic typing. IMO it's just not a language made for building large infrastructures.

[–] [email protected] 3 points 4 days ago

Exactly.

I use it a lot on my systems for very simple scripts because I am significantly more experienced in python compared to bash.

I remember getting given a 10k line python script which “was the documentation” for an API i had to interact with using powershell. I hated life so much because of that stupid project.

[–] [email protected] 1 points 4 days ago

I've had the joy of working on a python project with strict type checking enforced in CI and wow is it a different experience. Am a big fan.

[–] [email protected] 0 points 4 days ago

I can handle dynamically typed, but the whitespace thing kills me. I kind of really like PowerShell.