It seems like there are about 22 27 46 219 320 493 1840 active subscribers here. I have a few questions for you all.

  • Which programming languages do you regularly use?
  • Which are your favorite to work with and why?
  • Which do you have interest in trying and why?
  • PM_ME_VINTAGE_30S@vlemmy.net
    link
    fedilink
    arrow-up
    2
    ·
    1 year ago

    I most regularly use Python, followed by MATLAB C++. Python has been practically mandatory for writing code for my undergrad research. My classmates usually know “a little” Python, and it’s pretty easy to pick up on the fly. I’m trying to phase out MATLAB for Python seeing as I’ll be graduating soon and my student license will run out. I know about Octave, but work done in Python is probably easier to integrate.

    My favorite is C++. It’s the first language I learned and it feels like home. It gives me enough abstractions to get actual work done, but it also has the low-level tools I need to shoot myself in the foot for working with Arduino or other microcontrollers.

    I’m looking into Rust for audio programming. Although audio programming is done almost exclusively in C++ these days, Rust’s safety features without performance penalties look like a promising language to write fast and reliable code suitable for real-time operation. Joining Lemmy and seeing how it compared to Kbin has cemented my interest in the language because so far, despite the bugs I’ve run into, Lemmy and Jerboa has been fast above all.

  • davefischer@beehaw.org
    link
    fedilink
    arrow-up
    2
    ·
    1 year ago

    C & Postscript. Been using both since the mid-80s. The programming I do for work is CNC related. I don’t learn new things.

  • greysemanticist@lemmy.one
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 year ago

    Regularly Use

    • bash
    • python
    • golang
    • rust
    • elm

    Favorite

    • rust because it provides a pretty good expressive type system for letting the compiler keep you honest.
    • elm helps me avoid client-side programming hell with JavaScript.

    Interested

    • zig because of its promise of “compile it for anything” and small language philosophy.
  • heyheyitsbrent@lemmy.ca
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    C#, JS, SQL, and (AB) PLC Ladder Logic.

    I really like working in the dotnet ecosystem; it’s well maintained and supported. I’m fairly weak in JS and find it a bit frustrating at times. Mostly because it seems that packages are obsolete or abandoned by the time I’m done reading the docs. I know enough SQL to be dangerous.

    Everyone seems to like Rust, maybe I should see what all the fuss is about.

  • sotolf@beehaw.org
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    I’m mostly a hobby programmer, and I mostly use nim for most of the stuff I do, it just works very well with how I think and things just work, which I’m really happy about. The type system is really nice, with the right kinds of granularity for things that I want to do.

    For now I’m mostly focused on learning the langauge that I use, and I have been playing around with a lot of different stuff, maybe some kind of forth would be nice to do some real down to the metal stuff, but I very seldomly have to do that. I did play around with factor for a long time, and it’s a very interesting language, it just never really felt comfortable for me, more like a fun puzzle game in a way.

  • subito@beehaw.org
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago
    • I work with Java, but like messing around in C# and Kotlin
    • Definitely Kotlin
    • I’m thinking of getting into Rust or Go one day, because they seem cool
  • DanNZN@thelemmy.club
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    I mostly use C# which is honestly also my favorite. I would like to get more into Python for some machine learning stuff.

  • r3d5un@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    Python and C# for the most part. I’m also putting serious effort towards learning Rust, but I likely won’t be able to use it at work. It’s a good learning experience, and I can tell that my code after learning basic Rust in C# and Python is better than before.

      • r3d5un@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        The “correctness” of my code would probably the greatest single difference I’ve noticed in my own habits.

        For example, I’ve become very strict with myself about using type hints and relying on appeasing type checkers and such. The way I structure my projects has changed, where I separate functionality from data to a larger degree, mimicking struct and impl where it makes sense to do so. I’ve pretty much stopped using dict, and rely on dataclasses instead when writing Python. I’ve given up on forcing everything to be OOP (even C#), which has made my code easier to read and maintain. There are probably other things as well, though I can’t list them at the top of my head.

        Some of it is probably just good practice, a result of having matured after being exposed to new languages. Some of it probably wouldn’t be considered pythonic or idiomatic, but I’m not sure I care anymore. My code is more reliable (and often faster), and that’s what matter in the end.

  • leetnewb@beehaw.org
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    I don’t have any professional experience or ambitions, but:

    Use nim for personal projects. It feels like there is less boilerplate than others I’ve tried and it felt more natural to me than python. Faster than python and compiles. Plus has a javascript backend option. Pretty neat language all in all and does an ok job from scripting to web.

    Interest in trying? Probably Kotlin. Seems like another language with wide utility.