8

I was browsing the jobs secion on SO, and came across a position looking for a 'Python Software Engineer.' WHAAAAA? PYTHON IS A FUCKING SCRIPTING LANGUAGE! SINCE WHEN IS IT SUITABLE FOR SOFTWARE ENGINEERING?

Comments
  • 26
    Yay, another semantic war in 3... 2... Have yourselves a popcorn 🍿
  • 1
    @HCC5GDKc7 you mean hot corn?
  • 21
    You make me wanna establish a company and hire Brainfuck software engineers.
  • 13
    Not sure if trolling, but...

    I looked up definitions of "software engineering" and it does not say directly or indirectly that interpreted programming languages are not suitable. Any (or most) programming language can be used for scripting.
  • 4
    @arraysstartat1 also terms like "scripting", "interpreted", "compiled" aren't really fixed for a language. It depends on a context
  • 7
    Why isn't py suitable for engineering?
  • 5
    Python can be compiled to machine code.
  • 1
    Python just comes across as one of those languages you would use for rapid prototyping before writing the final product in a more suitable language with better static type safety and other gizmos to ensure more errors are caught before actually running the code. However, I freely admit that Python may have evolved without me noticing…
  • 16
    *A PHP dev walks into the room*

    Well I'm out of here.

    *exists stage left*
  • 5
    @SomeNone Python has type hints, which can be checked by editors and linters. Typical interfaces (custom ABCs, Mappings, Iterables) are supported - see the "typing" library for more details.
    The type hints can not be enforced at runtime.
    There is a compatible (but imho ugly) syntax for Python 2, too.
  • 3
    @SomeNone Your rant reads as if you're not supposed to engineer software using a scripting language.
  • 2
    @HCC5GDKc7 exactly. By this guys logic C# isn't suitable for "engineering" because it has a REPL and can be scripted through it, or pass scripts into it. But it also is suitable because it's compilable. So...
  • 2
    @SomeNone "may have evolved"

    Dropbox and Instagram would probably agree with you there.
  • 0
    @sbiewald Python 2 will be dead in 2020 anyway
  • 3
    @pk76 Moreover, the vast majority of web applications couldn't possibly have been engineered, by OP's logic. It's ridiculous.
  • 0
    @kescherRant Yes and no. RHEL 8 and Debian 10 will keep Python 2 alive for a few years, unfortunately.
  • 1
    Sounds like that company might have dodged a bullet then
  • 1
    import popcorn

    popcorn.make().heat()
  • 0
    JavaScript anyone?
  • 1
    @magicMirror
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    AttributeError: 'function' object has no attribute 'make'
    Oh, so that's a constructor, apparently. Too bad you didn't know that before runtime.
  • 0
    @Lor-inc And even if it wasn't, popcorn.make would probably take an argument of type corn, which you wouldn't know how to implement without looking at the code, so you'd create a class instance anyway. Just like in a strictly typed language. Because no matter what we do we still have interfaces, we just aren't defining them explicitly, making everyone's job much harder.
  • 0
    @Lor-inc this is python my friend. where everything is an 'import' away....
  • 0
    @kescherRant For April 2020 the release of Python 2.7.18 is scheduled, but the support end is the 1st January.
    2.7.18 will be the real last official release.
Add Comment