What is the BEST Backend Language For You?

Поделиться
HTML-код
  • Опубликовано: 4 ноя 2024

Комментарии • 451

  • @kolya6955
    @kolya6955 Год назад +144

    The only thing you need is "Choose the programming language that can pay your bills."

  • @Landon_Hughes
    @Landon_Hughes Год назад +219

    The best backend language is the one you are most comfortable with ✊
    A web app or mobile app is nothing without users and your users don’t care at all about what language your backend is written in.

    • @mustafaturgut9930
      @mustafaturgut9930 Год назад +15

      well big companies LOVES (naturally) the features in the video

    • @ameer6168
      @ameer6168 Год назад +23

      unless you want performance and wants to save money for your company

    • @roccociccone597
      @roccociccone597 Год назад +16

      Not really. I’d never write my backend in python or JavaScript. Neither is made for this use case and it shows when it comes to service stability and resource usage. Go is probably the best language for a backend. It’s easy to use and basically the fastest or one of the fastest ones so you don’t really have to worry about performance. It’s stable and also uses very little resources to achieve this performance. Rust is not a language for this kind of use case and Java and C# are some where in between so they’re fine to use but unless you already are invested in their stacks I’d probably not use them for new projects.

    • @p19shelt
      @p19shelt Год назад +1

      ​@roccociccone597 barley any HTTP libraries worth learningtho.

    • @roccociccone597
      @roccociccone597 Год назад

      @@p19shelt Gin, Echo, Chi and iris are all great options. If you want something fully integrated like django there's beego. Gin is probably the best and most used one. Plenty of projects use Gin, it's kind of like the express of the Go world. Beego is often used on more corporate applications. You can also get started with the basic built in net/http library as most of the others just provide some kind of wrapper for it. If throughput is the most important using the x/net/http2 library instead of the net/http one is a good starting point.

  • @noroi_289
    @noroi_289 Год назад +64

    I'm more than happy with PHP + Laravel right now.

    • @unlimitedbytes-random
      @unlimitedbytes-random Год назад +12

      Laravel is a really awesome framework.

    • @banwa_non
      @banwa_non Год назад +5

      ewwww

    • @daghetto101
      @daghetto101 10 месяцев назад +10

      @@banwa_nonProblem ya goof?

    • @ruksharalam173
      @ruksharalam173 8 месяцев назад +3

      I checked out Laravel's doc and even though I'm not a PHP dev. it looks nice and fun.

    • @irsyadmuhammad4430
      @irsyadmuhammad4430 7 месяцев назад

      Tenancy supremacy

  • @josemata8865
    @josemata8865 Год назад +175

    C# is the beautiful mix between a fast, robust and modern syntax language.

    • @krocznik2394
      @krocznik2394 Год назад +21

      c# is the christian cousin to c++

    • @s1nistr433
      @s1nistr433 Год назад +35

      ​@@krocznik2394 No that's Holy C

    • @krocznik2394
      @krocznik2394 Год назад +7

      @@s1nistr433 hahaha i was refering to the pointer handling but this made me laugh

    • @woozie_10
      @woozie_10 Год назад +2

      ​@@krocznik2394It's Java's son

    • @randomperson5454
      @randomperson5454 Год назад

      FR@@HatakeyKakashi

  • @aboliguu1168
    @aboliguu1168 Год назад +705

    I prefer to write my backend in pure C 🗿

    • @AntonioNoack
      @AntonioNoack Год назад +47

      According to the weird statistics at 4:08, Java is twice as fast though 😂
      (Java performs well, but usually it's the other way around, C being twice as fast)

    • @conaticus
      @conaticus  Год назад +123

      🗿

    • @sunnybeta_
      @sunnybeta_ Год назад +9

      🗿

    • @oserodal2702
      @oserodal2702 Год назад +19

      ​@@AntonioNoackJava can be faster than C with some very special cases, where the JVM can optimize away stuff that the C compiler can't.

    • @alex59292
      @alex59292 Год назад +54

      I write my backend in asm x86 🗿

  • @LuisFelipe-pq9lr
    @LuisFelipe-pq9lr Год назад +43

    I was in doubt about C# or others but seeing that he takes the 3rd position in all the parameters and has a medium of 7.6, made me realize that it is super good and is a jack of all trades, good for apps, web, gaming and others, the best thing is that its easy for me to learn as I already know Java and C

    • @migo70
      @migo70 10 месяцев назад

      Lots of people write the language off because of the early days, Microsoft have really stepped up there game from .NET 5+ imo

  • @ZockaRocka
    @ZockaRocka Год назад +32

    For me personally, i think GoLang is a very good language to build backend. If you already know a bit of coding conventions and techniques, its pretty easy to learn. the learning curve is actually somewhat linear. on top of that, the performance is really good and the ecosystem is way more advanced than one might think. its in a pretty good shape. there are NOT ALOT of backend libs/ frameworks, but those which exist are very good and in no way worse to any backend lib/framework of typescript, there are just fewer of them.

    • @datguy4104
      @datguy4104 10 месяцев назад +4

      The main reason there aren't many huge libs/frameworks is because the stdlib can very easily get you from start to finish, and it isn't even a "technically it can but..." kind of way, but a very real "it has everything you need" kind of way. Packages and libraries in Go are very much just for QoL and developer experience vs need. These kinds of videos always leave that bit out.

    • @Jam-ht2ky
      @Jam-ht2ky 9 месяцев назад +1

      @@datguy4104 100% agree with you, ive personally never been in position where i need to write a lot of code to compensate for missing packages or features, the error handling feels natural and the code is really hard do get nested and hard to understand

  • @philipmrch8326
    @philipmrch8326 Год назад +150

    0:22 - This is a misconception. JavaScript is very much asynchronous with its use of Promises and callbacks. You're confusing multithreading with asynchronous - they are not the same! Asynchronous just means that x process happens "somewhere else" (which doesn't have to be another thread and often actually is not another thread). I/O is inherently asynchronous - so it's a perfect candidate for Promises where you send a request and receive a response - which is then processed in a callback (or code after an await) that is queued to run in the event loop.

    • @dixztube
      @dixztube Год назад +18

      Ya I see this mistake often. And workers aren’t that hard. I think js gets a bad rep but it does have its issues especially with the community making all these packages every month and I think too much abstraction in areas that are key to learn for beginners.

    • @jakes-dev1337
      @jakes-dev1337 Год назад +2

      People hate on js but the proof is in the pudding. It works, and it's easy to write and read.

    • @MortvmMM
      @MortvmMM Год назад +5

      @@dixztube workers are hard to synchronise and to communicate between eachother. they also don't support async communication

    • @lucass8119
      @lucass8119 Год назад

      @@jakes-dev1337 The only reason JS has any footing at all is because of Browsers. All in all, its a poorly designed language. Its easy to write, but filled to the brim with footguns. Writing and testing JS makes C++ look safe. It's easy to read, but its dynamic typing makes it impossible to understand what's going on. It doesn't require a compiler, but the amount of time you'll waste debugging makes compilation time look like nothing. Even old technologies like PHP put JS to shame.

    • @alkadoHs
      @alkadoHs Год назад

      I was wondering too! Thanks for making it clear

  • @acidopcodes
    @acidopcodes Год назад +13

    Always remember, someone somewhere is writing their backend in ASM

  • @a-yon_n
    @a-yon_n Год назад +28

    Grammar-wise I like Node.js + TypeScript being my first choice. But Golang is so good at built-in tooling and resource-saving. I’m currently working on two sister projects with similar functionalities in both languages. The same program Node takes me 30MB RAM (ts-node is even worse, over 120 MB), but Go only consumes 13 MB. The difference is clear.

    • @sunnyarora3557
      @sunnyarora3557 Год назад

      How can we measure RAM usage of language and why does it matter as we have plenty of it now?

    • @ItsNothingAmazing
      @ItsNothingAmazing 11 месяцев назад

      You use Node.js for backend? I'm guessing Express.js

    • @mkmalikcom
      @mkmalikcom 11 месяцев назад

      ​@@sunnyarora3557there are many benchmarking tools.
      And to your second question, we have a bunch of ram for personal computers, on the server, we need more as we aim to serve the million users. The less resources it consumes, the more users can be served.

    • @lowzyyy
      @lowzyyy 10 месяцев назад

      @@sunnyarora3557because you pay for the server memory probably

    • @raphtlw
      @raphtlw 9 месяцев назад

      @@sunnyarora3557higher memory means more gc pauses = slower requests per second

  • @StephenMoreira
    @StephenMoreira Год назад +15

    I just recently started using C# earlier this year I have very much enjoyed it to my surprise.

    • @ahmedarif3542
      @ahmedarif3542 4 месяца назад

      Can your share experience about C# and .net for the backend, im exploring to start backend but have confusion which backend framework should i pick?

    • @AruhiArora
      @AruhiArora 4 месяца назад

      Yes, please can you please tell Is C# still good for backend development? I am deciding between C# and Python.

    • @StephenMoreira
      @StephenMoreira 4 месяца назад

      @@AruhiArora I like it, very feature rich. I do it for work, i personally doing NestJS for my other products.

    • @LeutnantJoker
      @LeutnantJoker 2 месяца назад

      ​@AruhiArora for God's sakes take c#. Python for backend is insane

  • @ramanavenkat715
    @ramanavenkat715 Год назад +18

    Consistent winner C# & I love that ❤

  • @merlin6962
    @merlin6962 Год назад +15

    0:24 it's asynchronous by definition, but it doesn't support parallel execution.

  • @ggnorton7
    @ggnorton7 Год назад +52

    It’s Go. I’m not a Go developer, but cmon, let’s be realistic here

    • @senzmaki
      @senzmaki Год назад +5

      I picked up Go in like 3 dys, it's minimalist af

    • @roccociccone597
      @roccociccone597 Год назад +2

      It is. But as a go dev some things still are not quite there yet. It’s already perfectly usable, but for smaller projects it’s a little less easy to setup if you’re new to it.

    • @s1nistr433
      @s1nistr433 Год назад +4

      It's a really "love it or hate it language", the language doesn't have proper OOP, doesn't have null safety and has a small community
      On the other hand it is easy to write, minimal and extremely fast. It's great if you like minimal programming language and functional programming instead of classes

    • @roccociccone597
      @roccociccone597 Год назад +8

      @@s1nistr433 not having OOP is not a reason for why a language is good or not.

    • @imakhlaqXD
      @imakhlaqXD 3 месяца назад

      @@roccociccone597 i have been working with GO can you plesase tell me what u feel is missing, for building big application. Apart from syntax level stuff(null safty etc) and generally people use it to build small microservices.

  • @banwa_non
    @banwa_non Год назад +7

    Developer Experience and Community Support are the most important for me, so I go with Javascript for FE and Python for BE.

    • @apexashwin
      @apexashwin Год назад

      Ewww two slow disgusting languages

  • @reikooters
    @reikooters Год назад +44

    Used C# professionally for 10 years. Very easy to use and has gotten a lot better over time, especially over the last 4 or so years. Only complaint is that since they never break backwards compatibility, there are many ways of doing some things and the older/bad/nonperformant APIs that you shouldn't use any more are still there. They sometimes mark them as obsolete (which doesn't break the code but generates a compiler warning with links to documentation for better ways) but its rare.
    I've started checking out Go this past week as a way of having some perspective of how other languages do things, but haven't really built anything with it yet. I did try using Rust before all the drama, but took a break from it, and now with the drama it kinda makes me not want to go back. May try Rust again if I end up not liking Go. If I was to start again having no programming knowledge, I'd probably go with Go based on the simple syntax.

    • @MAMW93
      @MAMW93 Год назад +1

      don't forget moving some packages out of System namespaces into Microsoft namespaces.

    • @TJackson736
      @TJackson736 Год назад +1

      Its much better to leave deprecated APIs in for too long than the exact opposite scenario - where you are given two weeks to change which APIs you use.

    • @spuzzdawg
      @spuzzdawg Год назад +1

      My biggest gripe with C# is Microsoft changing their mind about what direction they want to take the .Net framework in every 2 seconds. Might not affect web development that much but is a big issue for desktop development.

    • @reikooters
      @reikooters Год назад

      @spuzzdawg I usually either do web, console apps, or windows/linux services. Have built a couple of desktop apps, but was before .net core. I think when I considered .net core for a desktop app there was no drag and drop interface for core yet. Are you using MAUI?

    • @roccociccone597
      @roccociccone597 Год назад

      @@spuzzdawgmy biggest gripe with c# is Microsoft

  • @usedtobe672
    @usedtobe672 Год назад +14

    For me, you rankings summarize what I think about C#: there will always be a better language for use case X, but in general, it is THE most consistent/general-purpose language (top 3 in every ranking you made).
    C# is the workhorse for the .NET ecosystem, which has really robust, enterprise-grade level, frameworks for almost any kind of application (excluding OS, critical systems and hardcore embedded programming): Web (both Front-end and Back-end), IoT, Native cross-plat devices, Machine Learning, Game development, etc.
    I think the ever-changing nature of C# is what it makes it all possible. One language for all these kinds of applications cannot be conservative about changing and adding features.

  • @John-qw8zx
    @John-qw8zx Год назад +18

    You forgot Elixir, which is pretty good

  • @parlor3115
    @parlor3115 Год назад +21

    This list is poorly researched. He's claiming C# is slower than GO. In case you didn't know, there is a new C# runtime. One that is open source and cross platform and is as fast and sometimes faster than GO.
    Edit: Forget it. He says PHP has built-in support for multi-threading.

    • @roccociccone597
      @roccociccone597 Год назад +6

      I checked some benchmarks even with this new runtime c# is consistently slower with the occasional win. Nothing much changed.

    • @MuhammadHosny0
      @MuhammadHosny0 7 дней назад

      @@roccociccone597false

  • @ExediceWhyNot
    @ExediceWhyNot Год назад +51

    Conaticus: "In this video, I will provide some unbiased information about each of this languages to help you decide."
    Also Conaticus in every other video: "I hate JavaScript"
    Seriously though, I feel like this type of content is what suits your channel the most. Keep it up!

    • @s1nistr433
      @s1nistr433 Год назад +5

      JavaScript is by far the best bad programming language of all time

    • @ExediceWhyNot
      @ExediceWhyNot Год назад +3

      @@s1nistr433 truly wise words

    • @doublesushi5990
      @doublesushi5990 Год назад

      🤣@@ExediceWhyNot

  • @SXsoft99
    @SXsoft99 Год назад +7

    the thing about PHP is you need to know how to configure it, if you do then until you hit the lever where you start using load balancers it reks requests
    also it's funny how people call not having full type enforcement a vulnerability

  • @AnotherSmartMonkey
    @AnotherSmartMonkey Год назад +7

    Very good video ! The only thing is that even if there are good language options for backend I have the feeling that the frontend will always dictate which language we will use for backend. And today frontend is all about javascript :)

    • @MrMudbill
      @MrMudbill Год назад +2

      Backends are harder to change once written. A new frontend can be made that may still depend on the previous era backend. In my job, I have a React frontend and a Java Tomcat backend. Originally the frontend was written in Java as well. I imagine a modern JS based frontend might go for a JS based backend as well, but that may change in the future.

    • @doxologist
      @doxologist Год назад +4

      I disagree heavily with this. You can do anything with JS. But you shouldn't do everything with JS. Pick the right tool for the job. Imagine Discord running their backend in JS lol

    • @MrMudbill
      @MrMudbill Год назад +3

      @@doxologist How many monthly active users do you really have though? If you have as many as Discord, then yes, I agree. But very few are that big, and require that extra power. It's okay to use a less performant option if it means faster development cycles.

    • @dodibtw
      @dodibtw 13 дней назад

      not really. If you seperate backend and front end into two different services then they can be fully independent and you can write your backend however you want as long as it outputs the demanded response

    • @AnotherSmartMonkey
      @AnotherSmartMonkey 12 дней назад

      @@dodibtw That's because you never worked in a startup. When you have few developers, you can't have this kind of luxury. You need to have people that are good at a lot of things, not experts in 1 area. It's why startups mostly wants full stack devs. Most startups go js backend and frontend it's to reduce this learning curve gap that full stack can have if they do frontend, backend and 2 different languages seem's more challenging then only js. Also, it's harder to find multi-language devs then only a guy that dit js

  • @shawnlee6775
    @shawnlee6775 Год назад +14

    did you use ruby 3 for the performance test? it is supposed to be 3 times faster than v2, and if memory doesnt fail me, it is faster than python

    • @julian_handpan
      @julian_handpan Год назад +5

      Poor research from the dude! He thinks that the community and support is better in js 😂

  • @doxologist
    @doxologist Год назад +24

    I agree with 95% of this. I would give Rust's developer experience a 6/10 at the very least, solely due to Cargo. I understand the learning curve is steep, but the actual DevX for rust is pretty good:
    1. It has the most informative compiler of any language
    2. Extremely easily to build on different architectures
    3. Cargo has everything you'd need to install 3rd party packages for in JS and Python
    4. Testing and Benching built in
    It mainly loses points on its ridiculous build times.

    • @nsing323
      @nsing323 Год назад +1

      Also community is loving Rust year on year(StackOverflow Surveys)

  • @hilligans1
    @hilligans1 Год назад +6

    3:40 Javas threads use system threads so why would it be less efficient than "traditional multithreading" whats the difference

  • @CamaradaArdi
    @CamaradaArdi Год назад +12

    Rust ecosystem is pretty big for all practical purposes. There's a crate (library) for almost everything that I've ever needed. I would like to see an example where rust doesn't have a nice library for something that other programming languages do.

    • @ahmadrezadorkhah9574
      @ahmadrezadorkhah9574 Год назад +4

      Exactly. It might be small but pretty efficient and got everything any developer requires

    • @dogeplayz.
      @dogeplayz. Год назад +1

      async traits still make me want to vomit, but otherwise i agree

    • @CamaradaArdi
      @CamaradaArdi Год назад

      @@dogeplayz. Yeah async traits aren't there yet. I just try to program around them and avoid them as much as possible

    • @CamaradaArdi
      @CamaradaArdi 10 месяцев назад

      @@dogeplayz. They are finally here!

  • @hasanaliyev5231
    @hasanaliyev5231 10 месяцев назад +3

    you said that GO is the fastest language in this list having Rust in it

  • @NotHumanPerson
    @NotHumanPerson Год назад +25

    Rust has an almost complete ecosystem and once you have learned the borrow checker you don’t have to deal with stuff like js bs

  • @sdcmldyr
    @sdcmldyr 11 месяцев назад +6

    The best backend language is the one that pays your bills

  • @bity-bite
    @bity-bite Год назад +13

    C# FTW! 🚀

  • @oszi7058
    @oszi7058 Год назад +39

    I probably will go with golang, easy syntax just learn it once, high performance which saves cost, time and improves user experience. I considered using rust but when i compared the time i need to learn rust and everything around it to write a better api than in golang it would probably take me 2 years, theprimeagon tried it and he's amazing at rust and still golang was better because rust has so many small things that you can optimize and if you dont do it its just better to use golang

    • @zed5790
      @zed5790 Год назад +12

      Man idk wtf wrong with these performance folks. Performance is cheap, memory is cheap and CPU is cheap too! Like it does not matter for someone's todo app or a site with 23 monthly users. Unless your application needs high throughput, you probably never need that performance.
      The most costly thing in development is development time itself and go is fine for a todo app but when you wanna build a large application, it'll take far more time to build when compared to other well established languages.
      Like just stop with X hAs BeTTeR peRfOrManCE tHeN Y. It's nonsense.

    • @LucasGabriel-xz8nk
      @LucasGabriel-xz8nk Год назад

      @@zed5790 they know that, I think the one that doesn't get it is you lol

    • @oszi7058
      @oszi7058 Год назад

      @@zed5790 but we also know deep down every developer wants their todo app to have a trillion users

    • @LucasGabriel-xz8nk
      @LucasGabriel-xz8nk Год назад

      @@zed5790 they try to teach us to work with critical applications and environments, because learning how to program a slow app isn't hard, so it is not worthy saying that "using javascript for you todo app is okay" because it's very obvious

    • @oserodal2702
      @oserodal2702 Год назад

      ​@@zed5790Yeah, but it also depends on your use case/end goal. If you have a unicorn idea and want to serve users and go public with it as fast as possible, it would be advantageous to go with Javascript or Python, depending on your use case. However, if you want to learn memory management, working close to the metal, creating a language-agnostic tool/library, and other stuff that dynamic languages can't provide you, Python and Javascript aren't the solution for that.
      All in all, this is more of a test on your software engineering skills. You compare these languages over their advantages and disadvantages from their language design and overall ecosystem and decide from there.

  • @_ethqnol_
    @_ethqnol_ 3 месяца назад

    One thing to note about PHP is that like JavaScript does with TypeScript, there's actually an extension/dialect of PHP called Hack which is written by Meta/Facebook, and supports nice features like static typing, and also JIT optimization. Apparently its slightly faster than PHP 7 :0

  • @coder_one
    @coder_one Год назад +6

    Fresh content filled with outdated information, among other issues:
    PHP and Python both support static typing, but it's optional and less advanced than in languages designed with static typing from the beginning. Even in Ruby, you can introduce type annotations through dependencies (the author completely neglects this in their material).
    Ruby, starting from version 3, is notably faster. The introduction of the Ractor concurrency model (an actor model for Ruby) allows achieving true concurrency, greatly enhancing performance (the author remains silent on these matters in their material).
    The absence of extensive frameworks in Golang stems from the fact that the Go language boasts a rich standard library. Minimal abstractions, such as Gin or Fiber, suffice to achieve what larger frameworks in other languages offer. The Go programming approach eliminates the need for mammoth frameworks (the author fails to address this in their material).
    Statements like PHP having a concurrency model or Java being nearly as efficient as PHP are outright misconceptions that hardly deserve a response.
    In summary, this content appears to be authored by someone inexperienced in the programming world or, perhaps, lacking expertise...

  • @rahulagarwal968
    @rahulagarwal968 Год назад +6

    Golang has so many web frameworks like Gin,Mux,Fiber Echo,Chi etc. How to choose one ? And apart from API development, what I have to learn in Golang to get a job.

    • @MrTheRocketmaster
      @MrTheRocketmaster Год назад +4

      Just knowing a language or framework doesn't make you automatically employable. A language is just tools to translate your solution to some problem. Therefore you have to be able to solve problems - this is what is valuable. Tutorials on classes, functions or for loops don't teach that. You need to research the area of interest, be it web, operating systems, embedded systems, etc. Learn what typical problems people have/solve in your area of interest and reserch the hell out of them. Data storage and retrieval, performance bottlenecks, data structures, all of that good stuff.

  • @mitkram99
    @mitkram99 Год назад +48

    C# is the best general-purpose programming language ever created. Simply the best!

    • @event-sourcing
      @event-sourcing Год назад +3

      In my early days I thought it was not a great environment to be in because of "m$". I've now been primarily a .NET (C#) developer for 5 years and it's been great. Been using a Mac for 3 of those years and the entire time been using Linux-based containers for development and development. =)

    • @and_rotate69
      @and_rotate69 Год назад +1

      Most bs thing i ever read today (i read a lot of stupid stuff)

    • @sitter2207
      @sitter2207 Год назад +2

      @@event-sourcing i was staying away from c# due to fear of vendor lock, i really hate microsoft and windows

    • @thejezzi5219
      @thejezzi5219 Год назад

      @@sitter2207 I wonder why nobody every forked dotnet and freed it from microsoft

    • @Ihavetoreturnsomevideotapes
      @Ihavetoreturnsomevideotapes Год назад

      Java hold my 🍺

  • @AbbaJabbaDabba-f2o
    @AbbaJabbaDabba-f2o 17 часов назад

    PHP is a really good prototyping language. It allows you to quickly build your app without too much of boilerplate or dependency issues. PHP 8 has significantly better performance thanks to the JIT compiler.

  • @Ashwin_1198
    @Ashwin_1198 Год назад +18

    TLDR; C# is best

  • @mosesnandi
    @mosesnandi Год назад +5

    PHP all the way! Did you see that? It’s faster than NodeJS

  • @PeterPan-ev7dr
    @PeterPan-ev7dr 8 месяцев назад +2

    Nim is by far my favorite, can compile into C code. Otherwise I'll just stay with C.

  • @AngelLoredo53
    @AngelLoredo53 11 месяцев назад +3

    Why not talk about Cpp? It is extremely popular and used in backend work by some of the largest companies out there

  • @Soleryth
    @Soleryth 7 месяцев назад +1

    Nice video and you did a fair ranking/rating job overall.
    What are the music you used for the video? They sound amazing

  • @medaliboulaamail6491
    @medaliboulaamail6491 Год назад +4

    You didn't take into account the jit java compiler when it's warned up not even go can match it's speed

    • @manaslovesbirds
      @manaslovesbirds Год назад

      These guys talk about ancient Java. We now have extremely performant Java based frameworks (Micronaut/Quarkus) and tech like Graalvm, etc. Although I would agree that Java sucks in terms of verbosity and boilerplate department.

  • @ristekostadinov2820
    @ristekostadinov2820 Год назад +6

    I haven't worked with PHP for a while, but i know that they have added types in the last 1 or 2 years. Now idk how if the interpreter can be setup to be strict when it comes to types.

    • @unlimitedbytes-random
      @unlimitedbytes-random Год назад

      The interpreter is very strict when it comes to types. If you pass a wrong type to a function it will just result in an "RuntimeError". Also you have the option to use `declare(strict_types=1);` to enforce type safety even more. But still it's not perfectly implemented yet. It will take a little bit more time until it's fully type safe.

  • @MarcoDamaceno
    @MarcoDamaceno Год назад +4

    Ok, but I disagree with you on Ecosystem & Community ranking. Ruby could fit well in the second or third position. Rails can give you all the tools you need and Ruby has other tools beyond Rails. Don't forget that all of that modern programming approach such as convention over configuration, Git, tests, migrations and many others were created or popularized by Ruby community and spread to other languages.
    Another point I disagree is Developer Experience. I don't know about you but I prefer write as close as possible to my natural language than to the machine one. Python ok, but JavaScript? Go? Ruby behind PHP? lol
    And Ruby is not a dead language.

  • @-uz
    @-uz Год назад +4

    you always manage to post stuff I actually find interesting👌

  • @asherrfacee
    @asherrfacee 7 месяцев назад

    I haven’t seen any reasonably complex performance tests that show any significant difference in speed between c# and go.
    Go is compiled to native which gives it quicker startup speed, but c#’s runtime optimizations are impressive giving it an advantage in long running processes.

  • @WilliamCobb
    @WilliamCobb Год назад +2

    Helpful video, thank you!

  • @draakisback
    @draakisback 10 месяцев назад +3

    You start by saying that you're going to provide an unbiased look at these languages and then at the end you say "this is my opinion". In general these lists that try to rate programming languages, they're not very constructive; you're comparing apples to oranges. Also, I love how you mention later versions of Python, PHP etc but you completely ignore Ruby 3.0. in Ruby 3.0, they made the JIT considerably faster and added much better multi-threaded support via libraries like reactor. Also this assumption that a smaller community means less security, it's just not correct. Look at JavaScript for example, they have one of the largest communities out of any programming language and yet I wouldn't consider it to be more secure because of that. In fact, given how many libraries try to do the same thing, you could very easily run into a case where you pick a library that ends up being malicious without realizing it. This happens all the time.

  • @PuFF1kPuF
    @PuFF1kPuF Год назад +14

    I use C for backend, and it is great.

    • @datguy4104
      @datguy4104 Год назад

      Shill me on it. What are the top couple frameworks, if there are any.

    • @DYnosCode
      @DYnosCode Год назад

      Hi Sir can you help me learn how to do backend things in c language please

    • @datguy4104
      @datguy4104 Год назад

      @@DYnosCode Sir you are to be reading the docs please sir thank you sir

    • @PuFF1kPuF
      @PuFF1kPuF Год назад

      @@datguy4104 none, you write everything from scratch according to specs

    • @PuFF1kPuF
      @PuFF1kPuF Год назад

      @@datguy4104 Yes, I read a lot of documentation about specs

  • @DevRocky1
    @DevRocky1 Год назад +2

    c# is so comfy and u can used for almost anything

  • @manemobiili
    @manemobiili 10 месяцев назад +3

    Ruby certainly isn't 7th in Developer Experience, or in any other comparison.

  • @pacmanboss256
    @pacmanboss256 Год назад +9

    is there a single advantage of using javascript instead of typescript

    • @conaticus
      @conaticus  Год назад +5

      Personally I think not, most developers find that after using TypeScript for a while it is hugely more efficient to work with because of how helpful the compiler errors are

    • @FormalSnake
      @FormalSnake Год назад +2

      @@conaticus It has way better intellisense compared to JavaScript, I can create a type and it shows up in autocomplete. The typing also makes it more secure, since you cannot accidentally pass a wrong type into a function.

    • @oszi7058
      @oszi7058 Год назад +5

      No build step, most likely the one advantage

    • @Helvanic
      @Helvanic Год назад

      @@oszi7058 There often is one, since people use babel for features that are not yet implemented in node.

    • @luis10barbo
      @luis10barbo Год назад

      @@oszi7058 yup, iirc this one was the decising factor for svelte to ditch typescript, going to JSDOC

  • @xEveryth1ngx
    @xEveryth1ngx Год назад +3

    PHP had types for a while now

  • @hanzofuma
    @hanzofuma Год назад +8

    I like C# as a language but I hate using it. Because Microsoft loves to chain you to use their ecosystem from text editor to database to Azure otherwise you will suffer a lot.

    • @jonathanbout
      @jonathanbout Год назад +1

      This was the case until a few years ago, and is still with .NET Framework. Since .NET has gone open source and multi-platform it really isn't tied to microsoft anymore

    • @meowrbius
      @meowrbius Год назад +5

      Everyone says this and then proceeds to go with Typescript and VS code lol

    • @hanzofuma
      @hanzofuma Год назад

      @@meowrbius Well at least Typescript isn't that vendor locked like C# you can write TS from any editor with all the good tooling. but for VS Code Yes I even left it for this reason. Microsoft makes great open source LSP's but then it makes a greater one closed source based on the open source one that only works on VsCode instead of contributing to the open version that anyone can use Nope let's make it closed source.

    • @roccociccone597
      @roccociccone597 Год назад

      @@meowrbius nah, Neovim brother. I do use TS for frontend stuff but my backends are mostly golang

    • @banwa_non
      @banwa_non Год назад

      @@meowrbius Not everyone uses TS. We use JS Doc but we do use VS Code though.

  • @Trolju
    @Trolju Год назад +5

    Great video, but I don't like developer experience category, go should have more points and javascript it self should be below 8, typescript improves dx but its not vanilla js. Lsp in go is so much better than in vanilla js

  • @deadlinedis1949
    @deadlinedis1949 24 дня назад

    I see no one mentioning Django. But you know it reigns!!!!

  • @nicolascanala9940
    @nicolascanala9940 Год назад +6

    You focused way too much on the negatives of PHP. It's an extremely mature ecosystem and can be scaled just fine with tools like Swoole. It has a bad rep from legacy versions which have been fixed, and it's currently thriving. It's a highly productive stack, especially when using frameworks like Laravel.

  • @Jetpans
    @Jetpans 10 месяцев назад +1

    I agree with most, thinking about doing some projects in C# seeing this and all the comments supporting it.
    I strongly disagree with developer experience of javascript, I can not stand it. I enjoy writing Java waaaay more than I enjoy writing JS, the weird Object structure and unintuitive methods and functions are horrible. Python is in my opinion the best developer experience, thought it is slow and dangerous, but it allows for very complex tasks to be done in a readable one liner, whereas in JS you have many unintuitive syntax chains.

  • @marcusrehn6915
    @marcusrehn6915 Год назад +2

    The choice of language should be decided by your team.

  • @marjoncajocon4219
    @marjoncajocon4219 4 месяца назад +1

    im using python for almost one yr for back-end and it is very easy, if performance is in need i use c to help python run faster

  • @Faraday2122
    @Faraday2122 Год назад +1

    Idgaf about back end but since I enjoy your videos I'll watch

  • @Lilmations1
    @Lilmations1 Год назад

    i'm genuinely curious , is Golang worth learning? i mean would i actually make money/get jobs from learning golang?

  • @kshitijsingh4800
    @kshitijsingh4800 Год назад +5

    While I love C#, it’s easy to overlook the amount of good practices go imposes by design, such as the lack of a try catch, etc
    In my experience the developer experience has by far been the best in go

    • @roccociccone597
      @roccociccone597 Год назад +1

      I think C# is quite bloated. It has too many ways of doing the same thing. That just results in less readable code in general.

  • @gamerneversleep4200
    @gamerneversleep4200 Год назад +2

    i think every language is great

  • @Sancarn
    @Sancarn 10 месяцев назад

    The best thing about ruby is it's metaprogramming. If you're not using it you're missing out.

  • @philipmrch8326
    @philipmrch8326 Год назад +5

    C#

  • @michaelucho
    @michaelucho Год назад +7

    I'm surprised that there is no mention of C or C++? They are still widely utilized and popular among many developers and programmers. In the TIOBE lists that are used in this video. C is at number 2 and C++ at number 3. I do think Rust will become more popular in the near future. Of course if you want an "easy ride" Rust might not be your cup of tea. Also "Zig", if it "takes off ", might also be something worth looking into. I do most of my programming in C.

    • @InvixYT
      @InvixYT Год назад +7

      You do backend website development in c or c++??

    • @maazali9604
      @maazali9604 Год назад +1

      ​​@@InvixYTYou can write a web server and send http responses in C quite easily it's like 200 lines. Having to do stuff manually is a bit crude though.

    • @InvixYT
      @InvixYT Год назад +2

      @@maazali9604 no I'm sure you can. But why would you tho. I can't think of anyone that actually does.

    • @maazali9604
      @maazali9604 Год назад +1

      @@InvixYT I guess if you want to handcraft http responses and full control of the server? Other than that there is really no point.

    • @InvixYT
      @InvixYT Год назад

      @@maazali9604 yeah exactly, me neither

  • @sadiulhakim7814
    @sadiulhakim7814 6 месяцев назад

    I appreciate this ranking.

  • @Saru-Dono
    @Saru-Dono Год назад +6

    This sounds entirely AI generated

  • @_b001
    @_b001 11 месяцев назад +3

    I think the community support for PHP is much bigger than C# and Java. Remember more than half of the internet runs on wordpress and PHP.

  • @geoffreyzziwambazza7862
    @geoffreyzziwambazza7862 11 месяцев назад +1

    Python is easiest, but for some reason I prefer Java. I actually know more using Python, but I enjoy debugging Java. It might just be the abyss of self-hate I have deep in my soul.

  • @StandaBlabol
    @StandaBlabol Год назад +1

    It is much more complicated.
    Java alone is nothing special. But Java + Spring + Maven central is far most developed ecosystem. I am writing really weird backends that for example authenticates with RADIUS, sending notification SNMP traps or communucates with CORBA. In java, easy.
    And for microservices the best candidate is golang with coroutines.

    • @ramdoni3935
      @ramdoni3935 Год назад

      in go not coroutines is Goroutine

  • @SteveBClark
    @SteveBClark Год назад +1

    I like this kind of stuff special from you side😊

  • @KangoV
    @KangoV 11 месяцев назад

    It's great playing around with SIMD (AVX-256 and AVX-512) with the new Java vector API. AI/ML without external dependencies. Also coming soon will be the ability to offload to the GPU seamlessly without needing to write CUDA/OpenCL. Very exciting times.

  • @Diabeticode
    @Diabeticode 5 месяцев назад +1

    What’s the track played during the video?

  • @ahmadrufai8891
    @ahmadrufai8891 Год назад +9

    C#💪💪

  • @eej1.07
    @eej1.07 10 месяцев назад +1

    By a small ecosystem I guess you mean not bloated with thousands of things that do the same thing in different ways, Python and JS is the worst you go through dependency hell and npm packages are the heaviest things in the universe

  • @jatinkumar7287
    @jatinkumar7287 9 дней назад

    I work on laravel and it doesn't have multi threading, it is fast and its eloquent queries are great but i would rather choose go if u want performance but if u want easy to setup and a good compromise language framework laravel works pretty fine.

  • @GigAHerZ64
    @GigAHerZ64 10 месяцев назад +3

    1:36 "boilerplates"? What year is it, 2012?
    BTW, you mention that with JS you can have front-end and backend in same language. Why you skip the same feature on C#?

  • @Ashwin_1198
    @Ashwin_1198 Год назад +4

    can I write backend using C?

    • @conaticus
      @conaticus  Год назад +10

      you can, if you like suffering 💀

    • @joseph0x45
      @joseph0x45 Год назад +2

      probably, but should you?

    • @yolocat-dev
      @yolocat-dev Год назад +2

      at **least** c++ if you go down that dark path

  • @p19shelt
    @p19shelt Год назад +1

    Shouldn't ecosystem n community and scalability be the same list?

  • @anamoyeee
    @anamoyeee Год назад +1

    i wish i could just do everything in python buts it's just SO SLOW

  • @Freddy78909
    @Freddy78909 3 месяца назад

    I think Rust's complexity and rules will keep it from every truly being a top language

  • @hmb8801
    @hmb8801 Год назад +2

    PHP is still king. I like it.

  • @RayfuzuLearning
    @RayfuzuLearning Год назад +1

    Another masterpiece of a video.

  • @thyssenbot
    @thyssenbot Год назад +4

    Please include Blazor in this. Once you try it, you will realize that there is really no need to try any other framework (may be Rust for performance is super critical).

  • @teleprototype
    @teleprototype Год назад +1

    Does Assembly count as a back-end language?

  • @filippavlovic18
    @filippavlovic18 Год назад +1

    Looks like on average, c# is the best since its 3rd in every single leaderbaord

  • @ralphgenoguin9132
    @ralphgenoguin9132 6 месяцев назад

    I'll choose the most consistent ofc, C#

  • @MACAYCZ
    @MACAYCZ 10 месяцев назад +1

    And where is C/C++?

  • @kqvanity
    @kqvanity 9 месяцев назад

    Can you please mention the metrics outlined at the video.

  • @md-ayaz
    @md-ayaz 5 месяцев назад +1

    Scala is not on list. Why?

  • @heavymetalmixer91
    @heavymetalmixer91 Год назад +7

    I'm sad C++ didn't get a space in the video :(

    • @MortvmMM
      @MortvmMM Год назад

      C++ is used for lower level stuff. You need the right tool for the right job

    • @heavymetalmixer91
      @heavymetalmixer91 Год назад +7

      @@MortvmMM The same goes for Rust, so that's not an excuse.

    • @MortvmMM
      @MortvmMM Год назад +1

      @@heavymetalmixer91 true altough Rust is just hype at the moment, I'm asuming he added it for views

    • @doublesushi5990
      @doublesushi5990 Год назад

      ^IQ was used@@MortvmMM

  • @LeChuck.x17
    @LeChuck.x17 9 месяцев назад +1

    TypeScript, Python, Go, Rust, Swift, Kotlin, C#, C++, Solidity.
    These programming languages cover a wide range of applications: web development (backend and frontend), mobile, desktop, embedded systems, ML/AI, data analysis, and data science, game development, cybersecurity, networks and systems, automation and scripting, blockchain, AR/VR, DevOps, etc.
    They have promising futures, and numerous job opportunities are available. You just need to choose a couple of these languages, and you're good to go.
    Decide which field you want to specialize in, and choose a language accordingly. Also, keep in mind that some languages are more saturated in the market; for instance, TypeScript is in a highly competitive market with millions of programmers, while Go, Rust, and Solidity are less saturated.

    • @ashron4472
      @ashron4472 8 месяцев назад

      You mean java has no future?

  • @Ismail_AlFa9ir3anTa3rif
    @Ismail_AlFa9ir3anTa3rif 2 месяца назад +1

    dont switch between dark mode and light mode

  • @allesarfint
    @allesarfint Год назад +1

    What does "scalable" even means? Anything is scalable if you have enough powerful hardware or just don't care about how much money you are giving to Amazon.

    • @conaticus
      @conaticus  Год назад

      certain technology is always going to be cheaper and easier to scale than other tech

  • @Kiroto50
    @Kiroto50 Год назад +2

    You mention Java but no Kotlin I'll go cry in the corner

    • @floppypaste
      @floppypaste Год назад

      yeah, Kotlin is very good for backends that don't need the last inch of performance from rust or go. Kotlin also profits from a very very large ecosystem and has great DX in my opinion

  • @ezetenduwilliams7322
    @ezetenduwilliams7322 7 месяцев назад

    Its easy to like any language but the truth is most huge companies back end are written in Java... Java is one of the best languages for building enterprise applications. The only problem with it is that it's hard to learn.

  • @konga8165
    @konga8165 Год назад

    Rust's Developer Experience is way better than 3/10. It's a million times better than Ruby, PHP, and Java. It's also better than Go, Python, and JavaScript in a lot of ways. It's type system saves you from so many headaches and cargo is awesome.

  • @Nma61919
    @Nma61919 Год назад +2

    Java / Spring ❤