Ask HN: Which alternative to Python for personnal use would you recommend?
31–38 of 38 posts
Re: Ask HN: Which alternative to Python for personnal use would you recommend?
#32Re: Ask HN: Which alternative to Python for personnal use would you recommend?
#33The bonus is that I'm using Typescript for front-end development anyway, so using TypeScript for my backend and scripts just simplifies everything I do into one language.
Re: Ask HN: Which alternative to Python for personnal use would you recommend?
#34Then I woudl say invest the time to learn Rust, as a long term strategy.
Re: Ask HN: Which alternative to Python for personnal use would you recommend?
#35I hope python have tools like cargo to release binary in one command
Re: Ask HN: Which alternative to Python for personnal use would you recommend?
#36Re: Ask HN: Which alternative to Python for personnal use would you recommend?
#37Earlier quoted context omitted.
An important note: If you plan on sticking to an editor that has LSP integration like Vim/VSCode and so, stay away from Ruby as Ruby's language server solargraph is just not good. Personally, this is my main reason for staying away from languages like Ruby, Kotlin etc.
I will keep it in mind, though a quick search returned a project that resemble LSP integration for Ruby : https://github.com/Shopify/ruby-lsp . Also RubyMine (IDE from Jetbrains) seems to have its own LSP integrated.
Re: Ask HN: Which alternative to Python for personnal use would you recommend?
#38If you're looking for a high-level scripting language for small projects that you keep to yourself, Ruby is the obvious alternative to Python. Lua not so much - it's fine when embedded but doesn't have the ecosystem for standalone use. However, if you want to make programs for others to download and use, I'd recommend a language that can be compiled into easily-distributable binaries. As long as the overhead of a gar…