I’m looking for a programming language that can help me build a desktop application for Windows, macOS, and Linux that’s not big but not small either. Additionally, I’d like to be able to build a website with the same language. I’ve been considering Ruby, Python, Golang and JavaScript. Python seems to be mainly used for scripting and ai, so I’m not sure if it’s the best fit. JavaScript has a lot of negative opinions surrounding it, while Ruby sounds interesting. Can anyone recommend a language that meets my requirements?

    • sping@lemmy.sdf.org
      link
      fedilink
      English
      arrow-up
      14
      ·
      edit-2
      26 days ago

      But use type annotations everywhere and make sure your code is always checker clean (with checkin or PR CI hooks). And don’t turn off any lint checks through laziness, e.g. docstring checks. Even for a solo dev it’s always worth having everything typed, checker clean, and docstrings (even if they only effectively say “this thing really is what you’d assume”). It all saves time and effort in the long and even medium term.

      I’ve worked on serious large scale Python projects and frankly it’s been very pleasant and productive, but only with the above conditions.

      • Eager Eagle@lemmy.world
        link
        fedilink
        English
        arrow-up
        10
        ·
        edit-2
        26 days ago

        I’m writing a web app on Python + HTMX. Little to none javascript involved.

        If it’s something simple you can check out FastAPI. For more complicated projects involving data models and relationships, check out Django.

      • Baldur Nil@programming.dev
        link
        fedilink
        arrow-up
        7
        ·
        edit-2
        25 days ago

        So many websites out there are built on Django, Flask, etc. (YouTube must have spent a decade using Python, Instagram, Threads etc. all use Python and optimize as they need).

      • MyNameIsRichard@lemmy.ml
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        26 days ago

        It can do back ends with django and flask but the only choice for front ends is javascript or something like htmx

  • Miaou@jlai.lu
    link
    fedilink
    arrow-up
    11
    ·
    25 days ago

    All three are scripting language. Don’t touch JavaScript, but consider typescript instead. Your requirements are vague, but python should probably be your first choice. It honestly does not matter which one you choose

  • dneaves@lemmy.world
    link
    fedilink
    arrow-up
    10
    ·
    26 days ago

    To be fair, all three can probably do what you’re asking for, in building a desktop application. So the real question comes as which flavor of language do you want to write. The only language of the three I can’t speak on is Ruby, as I haven’t used it.

    Python is a “scripting language”, but by that token technically so is Javascript. It’s an immensely popular language due to its simple syntax, yet complex features as you get better with it. Python can build large-ish applications: web apps, desktop apps, terminal apps, and yes also of course AI, bulk data processing, etc. For GUI applications, I’ve personally used pyqt (4? 5? 6?)

    Much of the same can be said for Javascript. As you said, there are “negative opinions” about JS, but everyone has their opinions (most factually-based) on the goods and bads of languages (although, yes, JS does get more negative opinions than others). Yet, Javascript is still a widely used language, and you’ll probably end up needing learning it anyway if you decide to go into web development.

    What I personally suggest is this:

    • See the learn x in y minutes pages for Python, Javascript, and Ruby. Make sense of the quick-tour of the languages.
    • Make a simple project using each of the three languages. Something that just reads something from STDIN, does some work, prints stuff, as an example. This helps you get to know the basics of the syntax, tooling, and quirks of a language, and helps you narrow down which language you’d like to be working further with.
    • Pick one of the languages you’re leaning in favor of and go build your application. If you come to a point where you feel like the language you choose is no longer suitable for what you wanted to do, you can always retry with another language, and then you will know at least a fair part of more than one language.
    • diy@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      3
      ·
      26 days ago

      I think I’ll just focus on learning one thing at a time to get a better feel for the basic concepts, rather than worrying about what’s the best approach and then try out some, thanks a lot for the response! It really helped me decide to just get started instead of dwelling on the details.

  • Azzu@lemm.ee
    link
    fedilink
    arrow-up
    8
    ·
    26 days ago

    There’s no answer to this. All can do what you want in varying degrees. With Opal you can compile Ruby to JavaScript for your frontend for example. Or with electron you can use JavaScript as desktop application.

    You gotta say much more about the actual requirements to make any meaningful comparison.

  • bizdelnick@lemmy.ml
    link
    fedilink
    arrow-up
    11
    arrow-down
    4
    ·
    25 days ago

    Take a look at Dart+Flutter.

    Python would be OK. Ruby is nearly dead nowadays. JS itself is used rarely, better consider using TS (however I don’t recommend using them for anything other than web frontend). Go is a great language but it’s unpopular in GUI development.

    • Slimy_hog@programming.dev
      link
      fedilink
      arrow-up
      4
      arrow-down
      2
      ·
      edit-2
      25 days ago

      Interesting bunch of takes…

      Take a look at Dart+Flutter.

      Google just laid off those teams so I doubt this is a good thing to learn if you want something useful in the long-term

      Ruby is nearly dead nowadays

      Demonstrably false. My career has been in the Ruby/Rails world and I just went through a job hunt where I found tons of Ruby positions

      JS itself is used rarely, better consider using TS (however I don’t recommend using them for anything other than web frontend)

      Full-stack JS/TS is very popular in the web-dev world.

      Go is a great language

      I disagree, but this is 100% a personal opinion of mine 😄

  • whotookkarl@lemmy.world
    link
    fedilink
    arrow-up
    6
    ·
    edit-2
    25 days ago

    Spend a week or two with each if you can, even if you don’t stick with any you’ll be able to tell what parts you did or didn’t prefer or found difficult or easy that might help make a more informed choice. You might prefer the language features or syntax of one, but the tool chain or frameworks of another.

  • mox@lemmy.sdf.org
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    edit-2
    24 days ago

    desktop application for Windows, macOS, and Linux

    Nothing does cross-platform desktop apps as well as Qt.

    Definitely not Electron, which is very wasteful of system resources and has endless desktop integration bugs. Not Flutter. Not WxWidgets. Not Gtk. Not any of the various Java or Rust frameworks. Not Dear ImGui. Nothing. (Well, I haven’t tried Lazarus yet, but it requires a language that’s not on your list, so is probably not relevant here.)

    Some of the newer frameworks might shape up eventually, but it would take years of focused effort. This is an area of computing that is difficult to do well.

    I’ve been considering Ruby, Python, Golang and JavaScript

    Of those languages, I would choose Python with either PySide or PyQt. If my interface needs were very simple, I might also consider Qt Quick, which makes GUIs with JavaScript and a declarative language called QML.

    • diy@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      25 days ago

      Thanks i will look into PySide and PyQt. I also think all kde apps are build with Qt

      • liliumstar@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        3
        ·
        25 days ago

        I can vouch for PyQt, it works quite well for what it is. Be aware you might have to dig into the C++ docs if you’re trying to do something non-trivial.

        If you like, you can use Qt Creator to build the GUI template, and then basically import into Python and build all the logic.

  • slazer2au@lemmy.world
    link
    fedilink
    English
    arrow-up
    5
    ·
    26 days ago

    Without saying what you want the app to do you can’t pick the language, it’s like saying what should I make my house out of? wood, concrete, or ice.
    Electron is a well known framework for multiplatform apps. It could be your starting point.

  • MajorHavoc@programming.dev
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    25 days ago

    Just a bit more perspective for you:

    https://survey.stackoverflow.co/2023/#technology-most-popular-technologies

    More than half of professional developers use at least some JavaScript, and almost half of us also use Python.

    So both of those are likely to be worth the effort to learn.

    That said, as a diehard Python programmer, if I was forced to pick a single language to focus on, it would be JavaScript. JavaScript runs almost everywhere, and it specifically is the only decent option in a few places, such as Web app browser code.

    But also, while I’m fluent in a couple dozen languages, my preferred go-to language is still Python.

  • Hammerheart@programming.dev
    link
    fedilink
    arrow-up
    3
    ·
    26 days ago

    Im biased here, ive been learning python for almost 16 months and only dabbled in Javascript and never did any Ruby, but for a first language, i think python is fantastic. Its “easy” enough to keep you feeling like your skill is actually improving, while still being able to do pretty much anything (where performance is not a high priority). I also just think javascript is ugly to look at.

  • roadrunner_ex@lemmy.ca
    link
    fedilink
    English
    arrow-up
    3
    ·
    26 days ago

    If “build the server and client in the same language” is a hard requirement, I believe your only choice is JavaScript…

    The tone of the post makes me think you’re newer to programming, so I’ll leave it at that, as extensions to this question can overwhelm quickly, but yeah, JavaScript is a fine language for what you’re doing

    • RonSijm@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      24 days ago

      If “build the server and client in the same language” is a hard requirement, I believe your only choice is JavaScript…

      You can probably also use Java. And I’ve used dotnet / c# for it. You can build the server in ASP-core, and a desktop client in Avalonia, or a website in Blazor

    • diy@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      1
      arrow-down
      1
      ·
      edit-2
      26 days ago

      Thank you alot for the response. And yes, I don’t have a lot of programming experience

  • ClemaX@lemm.ee
    cake
    link
    fedilink
    arrow-up
    3
    ·
    25 days ago

    Maybe you should consider a server & client architecture to use the right tool for the right job on each platform.

  • Turun@feddit.de
    link
    fedilink
    arrow-up
    5
    arrow-down
    2
    ·
    edit-2
    25 days ago

    Definitely JS if you want to also have a website. Use electron to turn your website into an executable for the desktop. Python+qt is ok for Desktop apps, but does not work for a website.

    Languages that compile to wasm would also be an option, (e.g. https://egui.rs with rust), but as far as i am aware none of the languages you’ve listed are in that set. (Only go would even be a contender between python, ruby, js and go)