10 points

I like static typing more

permalink
report
reply

I remain baffled as to how the javascript-heavy modern web actually functions as well as it does, with all that dynamic insanity. Typescript isn’t a miracle cure.

permalink
report
parent
reply
7 points
*

Everytime I have to make a small python tool available to my teammembers it really drives home how crazy it is because everything is realistically one of one or two types, and have to document it as such and build in a thousand little statements to make sure other people don’t feed in the wrong type. What’s madening is that how python does type checking changes every so often, and libraries are sometimes incosistent with how they name their types when borrowing classes from other libraries.

permalink
report
parent
reply
4 points
*

It’s funny how Python spent the past like 6 years developing the type hinting system (which is a massive improvement from no typing don’t get me wrong) only to start re-introducing duck typing again with the Protocols.

The one thing I’ll always love about it is the ability to override builtins and do dumb things like call ‘sum(cats)’ where cats is a list of cat objects and have it like print out meow to the terminal for each cat in the list.

Shit like that makes it perfect for internal tools.

permalink
report
parent
reply
6 points

Those are in no way incompatible.

permalink
report
parent
reply
3 points
*

You just have to do it manually in Python or rely on systems like mypy to get ‘static’ checking.

It can be useful to rely on duck typing though if you don’t want to have to re-implement or inherit from an existing base class to use a higer order function.

If the function is written in a way where all it needs is specific methods or parameters from its input objects, you can really save on interface bloat.

But if someone is used to writing statically typed code and has to deal with that it can create a lot of confusion and I always end up writing a ton of override signatures either in my code or in a .pyi sidecar so whoever is using it can still get some form of feedback that what they’re doing is okay. Or at the very least putting that information in the docstring so people can read the docs as they’re using the function.

permalink
report
parent
reply

Of course not, the syntax is making the type system obvious tho

permalink
report
parent
reply
5 points

Static typing is for wusses who can’t handle dynamic, go-getter variables

permalink
report
parent
reply
5 points

static typing:

  • afraid to make mistakes
  • restricts your freedom
  • thinks i’m too stupid to know the types of my variables
  • years of programming yet no real world use found for Option<Option<Result<Int>>>

dynamic typing

  • bold, fearless
  • null pointer exceptions? catch them and return 0
  • can use eval, easily extendable
permalink
report
parent
reply
3 points

I don’t like static typing, it hurts my fingers, and I’m always worried it’ll fry my motherboard.

permalink
report
parent
reply
5 points

Of course, in Python, you can slice with [start:end:step], so it is valid to do list[:3:3] for double the happiness. Not that you’d ever practically do so.

permalink
report
reply
2 points
*

It’s functionally identical to list[0] so you could definitely just refactor your code to use list[:3:3]

permalink
report
parent
reply

I don’t think that’s equivalent. I think the former would return e0 and the latter would return [e0]

permalink
report
parent
reply

You’re right, it would return a list containing the first element of the sliced list.

So:

lst[:3:3] == [lst[0]]

Well, technically a sequence containing the first element of whatever sequence you sliced. Take advantage of implementing magic methods and you too can abuse slice notation with your classes.

permalink
report
parent
reply

you like slicing arrays, don’t you?

Proceeds to slice a list. (EDIT: as opposed to an array.)

permalink
report
reply
c, b, a = ('unpacking', 'prefer', 'I')
print(a, b, c)
permalink
report
reply
2 points

c, b, a =

chess battle advanced

permalink
report
parent
reply
4 points

permalink
report
reply

technology

!technology@hexbear.net

Create post

On the road to fully automated luxury gay space communism.

Spreading Linux propaganda since 2020

Rules:

  • 1. Obviously abide by the sitewide code of conduct. Bigotry will be met with an immediate ban
  • 2. This community is about technology. Offtopic is permitted as long as it is kept in the comment sections
  • 3. Although this is not /c/libre, FOSS related posting is tolerated, and even welcome in the case of effort posts
  • 4. We believe technology should be liberating. As such, avoid promoting proprietary and/or bourgeois technology
  • 5. Explanatory posts to correct the potential mistakes a comrade made in a post of their own are allowed, as long as they remain respectful
  • 6. No crypto (Bitcoin, NFT, etc.) speculation, unless it is purely informative and not too cringe
  • 7. Absolutely no tech bro shit. If you have a good opinion of Silicon Valley billionaires please manifest yourself so we can ban you.

Community stats

  • 1.7K

    Monthly active users

  • 5K

    Posts

  • 61K

    Comments