6

Hello @everyone,

What is your favorite programming language?

And what else would fit to website programming besides HTML5 PhP CSS and MySQL?

Comments
  • 7
    JavaScript obviously?
    https://goo.gl/3s80lm
    JavaScript - Wikipedia
  • 1
    #!/usr/bin/perl

    use strict;
    use warnings;

    print <<EOF;
    content-type: text/html

    <html>
    <body>
    Hi!
    </body>
    </html>
    EOF
  • 6
    Js, web dev need html and css, then you can combine them with most language you like (php, c#, js, java, etc)
  • 5
    PHP 💜
  • 3
    Rust in 2019
  • 6
    I like TypeScript very much, because it makes frontend coding much more productive and less prone to type errors.

    For backend is PHP (mostly OOP with Composer) my favourite. It is very neat and easy to run on lots of systems. BUT I hate how poorly structured the system API is. It was probably a kindergarden kid who yelled random names which they then used for the API functions...

    C gave me a great understanding about how memory management works.
  • 2
    I'm hoping to learn Elm this next year. Because it only uses pure functions, it always knows where you went wrong. This makes debugging more clear compared to, say, JavaScript.
  • 1
  • 0
    Bootstrap - Angular - Java
  • 6
    @PrivateGER That's a pretty old PHP version... 🤔😉
  • 0
    @Cryteku i never, NEVER understood the case for angular. It's like you're mixing business logic with markup? How do you debug that?
  • 1
    For me it's pretty much standard node.js/React+redux+saga on frontend and Rest framework on backend
  • 1
    I just started learning React and I love it. Not a language tho, it's a JavaScript framework. If you don't know JavaScript I definitely recommend it, it's used everywhere and the elders say that there are more js libraries and frameworks than stars in the sky.
  • 1
  • 0
    It is https://elm-lang.org/ for frontend and https://elixir-lang.org/ for backend. Being both functional PLs, it teaches you how to write better code. For elm, you will never see "undefined is not a function" error ever again.
  • 0
    Clojure, C
Add Comment