Most Popular Programming Languages 1965 - 2022

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

Комментарии • 2,5 тыс.

  • @DataIsBeautifulOfficial
    @DataIsBeautifulOfficial  Год назад +929

    Roses are red, 'Super Thanks' works just fine
    Unexpected ‘{‘ on line 39

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

      Python and C++ programmer here xD

    • @lhard123l
      @lhard123l Год назад +28

      @@Czlog python doesnt have this sh*t

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

      Since programming is a rather complex matter, Your graph could be more complex too ;-)
      What about LOGO, Oberon, Occam and FORTH?

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

      @@Manorainjan None of those ever became popular enough to make the top 11 list. Personally, I love Wirthian and derived languages (particularly Modula-2 and Ada), and Logo and Forth. I also like Scheme

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

      @@timlocke3159 "None of those ever became popular enough to make the top 11 list."
      You don't say. I wouldn't have made that connection myself. Or would I? ;-)
      Maybe that's why I opened with: "Since programming is a rather complex matter, Your graph could be more complex too."
      BTW: His video "World's Largest Cities by Population 1950 - 2035" has 20 lines.

  • @spectrm6014
    @spectrm6014 Год назад +2171

    Can we just take a moment to appreciate how C has been in the chart since the 70s till the modern era of programming?

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

      @Jonas Jonaitis I agree.

    • @Omar_Al_Seddik
      @Omar_Al_Seddik Год назад +154

      @@tabooretka Around 80% of all embedded devices are created using C according to analytics insight.

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

      Bad habits....

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

      C is the best language to learn and can do anything you can think of. In contrast python is a trash language.

    • @miroslavbrabec94
      @miroslavbrabec94 Год назад +61

      @@Patrick1985McMahon For many cases is C/C++ very unsuitable (too expensive). I am sure you know it.
      That's why Python is where it is in the rankings.

  • @madhououinkyoma
    @madhououinkyoma Год назад +1380

    The Programming Wars
    The Era of Fortran (pre-1965 to 1980)
    The Rise of Pascal (1980 to 1985)
    The C and Ada Wars (1985 to 1987)
    The Absolute Reign of C (1987 to 2001)
    The Ascent of the Javas (2001 to 2018)
    The Python Empire (2018 and beyond)

    • @darukutsu
      @darukutsu Год назад +130

      Rust or bust (2030+)

    • @ArhemonT1000
      @ArhemonT1000 Год назад +94

      С++ (1970-immortal) 😁👌

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

      @@ArhemonT1000 Elaborate.

    • @AntonMochalin
      @AntonMochalin Год назад +45

      It's in fact JS/TS empire

    • @ElCidPhysics90
      @ElCidPhysics90 Год назад +33

      Yeah, the rise of python surprised me. I knew it was popular but not that popular.

  • @jamesflynn3619
    @jamesflynn3619 Год назад +1042

    How amazing that some programming languages are so old and are still in regular use today.

    • @austnsauce2543
      @austnsauce2543 Год назад +33

      Agreed. I find it interesting how difficult it is to move on from old languages given the reliance we have on old programs

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

      true i experience this in my company pretty often. We had our projects (first websites and later even apps) since like 2005 and from then we moved to new languages with the time. So there are many files in old code, that would need a lot of time to remake in new languages. The problem is, the code is written in an old style and difficult to read for younger developers like me. Our old developers don't work here anymore or are in managing positions. It's often a bit of pain to work on these old files xD

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

      and to see a FURRY here OwO

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

      During the pandemic if you knew Cobol made bank.

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

      The longevity of Java and JavaScript is pretty incredible considering these languages have not been updated or supported in over a decade.
      Cobol and Fortran are run on a lot of legacy systems that haven't changed much in decades such as banking computers, atms, credit card systems as well as on military equipment.

  • @George4943
    @George4943 Год назад +321

    I wrote my first program in 1962. Knew every language on the list until 2000. It has been quite the 60 years. Been an instructor through professor. Programmer to systems analyst. A few years teaching, a few years doing; rinse and repeat.

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

      Respect!

    • @HunterShows
      @HunterShows Год назад +26

      Oh, so _you're_ the guy who taught today's programmers...

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

      I can beat you by one year - 1961. It was for the IBM 1401. Remember these languages: Assembler, SPS, RPG Currently picking up Python. I knew it was popular but didn't realize how popular until I saw this presentation - Cool stuff. Oops, forgot autocoder.

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

      @robertcross7571 Quite hard early. Early languages had a similarity to math notation. FORTRAN = FORmula TRANslation. The main evolving difference was the logic control statements.
      Each language had a syntax to be learned.
      Those early languages allowed for what became known as spaghetti code. "Structured Programming" became the latest rage. Teaching that course was a learning experience. In the 80's I came to realize that a while loop with test at top was the only logic structure needed in a language. It is all done with flags to implement IF, IF_THEN, CASE, and all the others. Find out how to do the "do while" and I had learned the only logic structure technically needed. The math analog lasted virtually unchanged so it became a matter of learning syntax (and when possible macros so I could write my code in pseudocode). Each language learned more quickly. At the end of my career a new one took 2 days to learn and 2 weeks to write production programs.
      A typical program of mine is:
      DO WHILE (powered on)
      .CASE
      (1) IF (conditions) DO END
      ...
      (N)
      ENDCASE
      END DO
      And of course, being as I am, I consider the strange case of the robots built by evolution:
      While (Alive)
      If not content, do something else.
      End

    • @Franchise_vi
      @Franchise_vi 7 месяцев назад +4

      You're a bad programmer if you didn't get rich like Bill Gates or Elon Musk, because in those days there was less competition and anyone could get rich just by coming up with a simple idea

  • @willgordge6003
    @willgordge6003 6 месяцев назад +104

    If you account for the fact that python, c++, java, and so many other are C-family languages, that all major operating systems are written in C, and that C is used in 90% of embedded systems, it goes to show how it is truly, undisputedly, the greatest and most important programming language ever created. Viva C.

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

      Very true.

    • @platinumtaterbug
      @platinumtaterbug Месяц назад +1

      Yes, most languages these days are C-based.

    • @Lupinicus1664
      @Lupinicus1664 Месяц назад +2

      Quite, although it's all Assembly underneath 😉

    • @muzzletov
      @muzzletov 29 дней назад +1

      Semantics != syntax

    • @muzzletov
      @muzzletov 29 дней назад +1

      @@Lupinicus1664no, it’s machine code, that’s what you mean. Because, what you’re saying is, it’s all typescript underneath.

  • @donaldwycoff4154
    @donaldwycoff4154 Год назад +640

    I've been paid to work in C and C++ since the mid 80's. My career as a software developer probably would never have started if it wasn't for Turbo C and Turbo C++. At the time, they said Ada was going to be the One Language to Rule Them All. The dean at my college said we should consider other professions because by 1990, computers would be writing all the software; and Artificial Intelligence would never work commercially. Today (last couple weeks) I was told C and C++ are dead, and RUST is the new One Language To Rule Them All. Yeah, once again, we got "Sauron's Ring" salesman again. Anyway, I could list all the languages I have been paid to program in, but funny thing: programming languages each have their Big Day. And eventually most programming languages fail to deliver once the hype wears off. I'm amazed C and C++ have lasted so long, and I'm glad they have. C++ is my absolute favorite, and for better or worse, C and C++ have delivered a hell of a lot. Due to its complexity, I don't think young devs will get the opportunity to master C++ in a fun/meaningful way. Could be I'm the end of the line. On the other hand, C and C++ are still here, and we've had quite a number "Sauron's Ring" languages wax and wane in that period. Maybe C and C++ will stick around kind of like the Tooth Fairy. Even COBOL still pays well for the extremely few people who mastered it. For the record, I've never been paid to work in COBOL, and that was a personal choice. Could never get into that language.

    • @DataIsBeautifulOfficial
      @DataIsBeautifulOfficial  Год назад +42

      Interesting! Thanks for sharing.

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

      You're not. C++ is still very actively modernized. Smart pointers are now mainstream (new/delete is considered code smell!), and they are adding support for modules, finally fixing the include problem. They've also added things like lambda expressions and such. It's a totally different C++ from yesteryear.

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

      @@LunaticEdit Interesting to hear about modules. Hadn't heard of that. I'd be surprised if they retire m4 (the pre-processor) after 40+ years. There are so many meta-programming improvements I'd like to see, beyond what I've seen up though cxx20. And why don't we have an int*XX where XX can be the number of bits we want in the integer (outside the scope of a struct)? FORTRAN was doing that in the 60's.

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

      Currently learning c++, hoping that I can “master” it (even though that’s impossible, c++ is too big) but I’m doing pretty well for now. Been about a year, I’d say I’m intermediate. Refuse to say that any language is nicer than c++ except rust (which I don’t think will beat c and c++, but is a very nice language)

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

      I still love C. I've found with a good compiler it produces fast and relatively tight executables

  • @timetraveler_0
    @timetraveler_0 Год назад +161

    BASIC - When more and more kids started learning programming
    C - That's all we got for seriously fast work
    C++ - I'm done with pointers
    Java - When they realized you can write once and run it on any device
    PHP - World Wide Web is the future!
    Python - When the scientific community started coding
    JavaScript - When bootcamp trained frontend 'devs' entered the game

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

      True

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

      C was fast but it wasn't safe. That wasn't so bad before networking but now we know we need safer languages. We would have been better off if we'd rejected C and C++ and kept using Ada, Modula-2, Oberon, etc.

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

      C is still great for low-level embedded programming and pointers are one of the reasons why. It is easy to make careless errors with pointers, but I have seen many people get into trouble because they don't know what they are doing or because they are trying to show off by doing unnecessary fancy stuff.

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

      @@sexygeek8996 Well, so were Modula-2, Ada and Oberon but they did it safely and they had safer strings where you couldn't write over memory after the strings with malicious code.

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

      @@timlocke3159 C wasn't meant to be safe. It was meant to be simple, trust the programmer and give him (or her) real power.

  • @timlocke3159
    @timlocke3159 Год назад +83

    I hadn't realized how popular Pascal was and for how long before C took off. Ada too.

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

      Pascal was the C before C. I learnt it and it has some really interesting syntax.

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

      @@NafaniaXD I actually hate C style syntax. It has too many arcane symbols. I prefer keywords. Pascal uses IF...THEN BEGIN...END but in it's successors, like Modula-2, BEGIN was removed so it became IF...THEN...END, which is nicer than Pascal.

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

      It was the common training language so practically everyone who majored in computer science had to take it as an intro course before going onto other languages.

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

      Pascal (Delphi specifically) is what got me into the programming industry with no college degree. I just so happened to run into a small business owner who used delphi, and I just so happened to to have learned windows development on my mom's copy of Borland delphi. It's been many moons since I've used pascal, but I still owe my career to knowing it.

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

      @@LunaticEdit Delphi was interesting. One of its architects went to Microsoft and contributed to .Net

  • @StalkedByLosers
    @StalkedByLosers Год назад +269

    I remember I took over an internship in 2005 from a previous intern. The sponsors asked me to write it in their preferred Java based language which I had a course under my belt already. They said the previous intern did good but it was in a language they never heard of or could understand called Python. This was back in 2005.
    Fast forward 10 years after spending most my career in firmware C and some C++ for desktop apps I dove into Python because how easy it was and it was the ONLY way I could get OpenCV to install amd actually work. My Python got me a new job at a namebrand company, and that got me my job today. In 7 years my salary is now 200% what it was and I don't regret my Python transition today one bit. I still think about that intern that was using Python v1 for her internship deliverable, she probably makes way more than me. If she is reading this I want to say ;Hey sorry for making fun of you.

    • @lawrencedoliveiro9104
      @lawrencedoliveiro9104 Год назад +20

      Python is that rare thing: a technically advanced language which has become popular through its merits and the testimonials of its users, not because some big corporation was pushing it.

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

      i also code in python for 7y and i would like to ask you something, do you feel that python is way harder to master compared to C or easier? because i only dev in C for 2 years but i feel C easier to master.

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

      ​@@vuvu7005 bruh

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

      @@brennethd5391 "i feel C easier to master"

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

      you being very honest that's a good way to start....! Hope someday your message will reach out to her.

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

    PL/1 was the first language I ever learned, in the late 1970s. Surprised it didn't make it into the list, as IIRC it originated at IBM and was quite widely used. The version I used allowed you to descend into Assembler within the PL/1 source. With a macro pre-processor and pointers, it was very powerful and expressive.

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

      was wondering the same thing. was a lot more user-friendly than c. always regretted that the latter became THE language and PL/1 died out. As for c++, don't get me started....

  • @Malbeur
    @Malbeur Год назад +122

    So interesting. I started programming in 2010, and the first three languages I learned were the top three most popular at the time (Java, JavaScript, and PHP). My dad learned in the mid 80s and he was taught Pascal, the most popular of his time. We are products of our time.

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

      True

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

      In 1981 I learned FORTRAN on the fly for a graphics course, then data structures in Pascal. But I loved C most of all, the way she’s bite if you weren’t careful ;)

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

      @@johngriswold yeah, clearly C was popular since it got so many spin-off languages and stayed relevant for many many years.

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

      Oof, sorry to hear you had to learn on three such crappy languages.

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

      @@BlunderMunchkin I appreciate the sympathy! I'm working in Go now so there's a happy ending.

  • @sorensolveig599
    @sorensolveig599 Год назад +58

    In 1985 my college required FORTRAN for engineering majors (#5 in the list at the time) but nearly all students (including I) also took an elective for "C" (which was #1 in the list at the time). Very interesting how these languages evolved over time.

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

    Interesting to see how some languages accompany the rise of related tech. Javascript and PHP for example rose as internet and web sites became more and more prevalent. Objective C I believe rose with the expansion of iPhone and Apple technology. While some others such as FORTRAN that is limited to desktop/ mainframe saw it's proportion decline.

  • @blasm1713
    @blasm1713 Год назад +141

    The most popular programming language is still DNA.

    • @oguzhan.yilmaz
      @oguzhan.yilmaz 7 месяцев назад +1

      Well actually ☝️🤓

    • @billp5793
      @billp5793 7 месяцев назад +9

      Really great point! Still is amazing to me how some people think it just happened by random chance! Clearly by intelligent design! Yes..God!

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

      What's that ?

    • @oguzhan.yilmaz
      @oguzhan.yilmaz 7 месяцев назад +6

      @@Ronadhoba you don't know what is DNA? Basically your hair's, eye's color's code, your base height code and the keywords are A,C,G,T

    • @nofood4u936
      @nofood4u936 6 месяцев назад +1

      DNA isn't really programming tho, it doesn't get interpreted/compiled by anything - it just acts as a blueprint for making other proteins which do their job by themselves. And just to dispel the creationists who assume anything that supports their preformed beliefs is true: DNA is closer to an array of data constantly being modified and selected for using the genetic algorithm.

  • @galactic_3787
    @galactic_3787 Год назад +17

    Oh man great video again! It's hard to believe that are still people using Fortran nowadays! My teacher of Computational astrophysics does it!

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

      In parts of aviation, Fortran is still strong, and I am not sure if there is an actual alternative to Fortran.

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

      I am in astrophysics, and I do use Fortran daily :) Nothing really beats it for large numerical simulations (well, you can use C/C++)

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

      Part of Fortran diminishing status is not that it was superseded by anything better for what it is doing. It is that in 70-s 90% of computering was numerical scientific/engineering computations. Fortran is still one of the best tools for that. It is that since programming and computing has evolved in many different areas

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

      @@dmitripogosian5084 oh you're in astro too?

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

      @@galactic_3787 Yes, cosmology mostly

  • @DarkGT
    @DarkGT Год назад +60

    Java just refuse to die off. Even Oracle tries to make people stop using it.

    • @Erfedwe
      @Erfedwe Год назад +22

      But, Minecraft! :)

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

      the only good thing on Java is that it can run on any device , but dont expect speed

    • @_piulin_
      @_piulin_ Год назад +11

      @@Killerspieler0815 So can any other interpreter language, as long as the interpreter is installed on the target system. But Java is faster than most other interpreter languages.

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

      @@Killerspieler0815 If you think Java is slow, good luck with python.
      Also no, Java isn't particularly good at running on every device. The argument that it is comes from a time where most languages were compiled. But the real blocker to running on different devices isn't the programming language, or even if it is compiled or not, but frameworks, UI ones in particular.

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

      Java will not die off quickly. Similar to C/C++, a lot of existing systems are based on this technology. And even if the language dies, it will still prevail as a platform for other languages. There is a reason, Java being the most efficient interpreter language.

  • @rayraycthree5784
    @rayraycthree5784 Год назад +33

    I was programming in Fortran in HS in 1969-70, punching out card decks, loading them into a card reader for an IBM 360 and then debugging all the syntax errors. Helped a lot later in university EE courses. After graduation, wrote embedded uP assembly code for a major project by learning while doing. As an EE also had to code PLDs and then FPGAs along the way which is a very different programming experience.

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

      Another ex punch card jockey!

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

      @@A_R_B_G I'm facing a similar issue as of now. Did you reroute the HS2 optical IF-byte with the connected line parentheses ? Thanks!

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

      Did you punch sequence numbers so that in case you were to drop your deck, you could sort the cards back into order?

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

    I'm an old dinosaur... when I started my career we still programmed sort machines with patch boards and wires. If you needed your input sorted in a certain order before running your program, you needed to run the data cards thru the sorter first before using them as program input. I remember the excitement of our shop getting it's first IBM 3270 terminal and CICS software to be able to write and store programs electronically instead of punching them out on cards and storing them in file drawers. The senior programmers hogged that terminal up and didn't let us junior programmers use it. I worked on the first generation of supermarket bar code POS systems... did the systems programming, application programming, and field service tech work with them. Back then they ran a whole supermarket on a store controller with a 5M disk! We downloaded data to all the stores at night over a 2400 baud modem... took all night. Whole corporations used to be run on an IBM 360/370 with 16M of core... and probably one string of 8 DASD 3350 drives with 500M a piece, and a few 2400 series tape drives.

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

      How about a 16K 360/30 running BOS using 2311 drives with 7.25 MB capacity and RPGI because not enough hardware to run COBOL. We upgraded to 32K to run DOS and COBOL.

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

      @@alexisbono24 I loved the 2311 drives... you could watch the seek heads going back an forth... made the system seem alive.

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

      @@rhymereason3449 We had rows of those and it was cool to watch operators lift the lid and use their hand on the top disk platter as a brake because they were in too big a hurry change the disk. Skin dust caused lots of R/W errors so the manufacturers started applying a friction material on the top platter. Only took a few skin burns to stop that practice.

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

      @@saabyurk LOL... that's pretty wild! We had an operator who was 6'7" and about 350 lbs. He was surly with a bad temper... but management was afraid to fire him. He'd throw full boxes of computer paper across the room when a job would abend and tick him off. Once he cracked the console keyboard with his fist, and another time he put his foot through the glass door on the 1401 printer. Management would just replace the things he broke...

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

    I have always regretted not majoring in comp sci in college.. I would 100% pick that without hesitation if I could go back. Programming seems fun and a very rewarding field to get into. I got my master's in a very different field recently. Got a remote job with a relatively light workload. Just started learning Python a month ago.

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

      What was your qualification?

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

      Never too late to go for it

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

      You would have been taught Fortran in a C/C++ world.

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

      Python can change your life for the better

  • @daniel_lucio
    @daniel_lucio Год назад +157

    I learned Basic at the age of 8 on a ZX Spectrum (Sinclair Basic) in the 80's, then in college in the 90's I learned Assembly 8086 and C/C++, then many others came but Mr Clive Sinclair's Basic lives in my heart anyway 40 years after first contact. There is one more that I really like, LUA, a language developed in Brazil, many MS-DOS and Win9X era games were created with it.

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

      @@simon_patterson In my case, in south america, far away from Clive's land, Britain

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

      I learnt BASIC on my uncle's ZX Spectrum in the 2010s lol

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

      @@simon_patterson cool!!

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

      Same, started with Basic when I was 7 or 8, can't recall, on a Commodore VIC-20.

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

      It's said, any-one who ever came in touch with BASIC was lost for any other programming language. It's true for me. Python, C, you name it, always had the obstacle of not-knowing why you had to put these include=... in the first lines. In BASIC we just took off and we were going.

  • @raineyjayy
    @raineyjayy Год назад +22

    I'm so glad this channel is back making content. Data is so good

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

    VBA has been underrated. Its practically on every office PC computer. Most use it with macros and don't even know it.

    • @jasonanthony166
      @jasonanthony166 7 месяцев назад +2

      It's still my favourite language ... but that just shows my age!

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

      Microsoft never updates VBA. That's why we love VBA. We'd hate it if Microsoft tried to make it like C#.

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

    The one thing that jaded me as I grew up in this era was the perpetual promise that there would be "one" language to run everywhere. One-size-fits-all solutions are almost always snake oil and sales pitches, but always seem to bend the ear of CEO's who read magazine covers but don't listen to tech people. Java was just one of the efforts that enjoyed the most success at realizing it, although it was and is a support headache. The universal presentation layer wouldn't truly evolve until the web/HTML/DOM model and browser capabilities truly started hitting their stride.

  • @Tailspin80
    @Tailspin80 Год назад +17

    I built a database development business on Visual Basic / Access between 2000 and 2020. Fashion moved on and I retired but for 20 years I had many happy clients and a good living.

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

    Surprised how long APL last. Such a fun and interesting language.

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

      Yeah, agreed. There are still some great APL implementations available today, and it's a fun language to play with as a hobbyist. Dyalog APL is free for non-commercial use.

  • @timlocke3159
    @timlocke3159 Год назад +72

    It was interesting to see BASIC take off in the 8-bit computer era, especially after the arrival of the 1977 Trinity of the Apple II, Commodore PET and Tandy TRS-80, each of which had a BASIC in ROM. The PET had Microsoft BASIC from the start but the Apple II and Tandy TRS-80 upgraded to Microsoft BASIC within a year.
    Then it died down as the last 8-bit computers came out and were then replaced with the 16-bit Apple Macintosh, Atari ST and Commodore Amiga, which, while BASIC was available for them, it wasn't used much as better languages had become available.
    BASIC was great because every 8-bit home computer had it built in and it was easy to learn so even the average person could figure it out. Sadly the languages that replaced it weren't easy enough for the average person to use and now only a very small percentage of computer users can write any code.

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

      insight appreciated.

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

      Learned Basic at 9 years old through ZX Spectrum Sinclair Basic, it was my first programming language, later, in college (90's), C/C++/Assembly 8086

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

      Basic was easy to learn and readily available because it came with every computer at that time, but it really is a lousy language.

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

      @@sexygeek8996 For sure but it was pretty popular for a 10 year period.

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

      Heck, I wonder why BASIC didn't dominate the late 70s into the 80s. It literally shipped with every home computer, and every business PC. That alone makes me wonder how they were counting popularity.

  • @rasowa2958
    @rasowa2958 Год назад +38

    Nice touch with putting C on the screen from the very beginning. I expect 20 years from now it will be still in the top 10. We will always need language that offers maximum performance that is easily readable and compact.

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

      Rust is much more readable than C and is less prone to memory management errors.

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

      @@wyqtorLets see how many decades it takes for Rush to make it to the top ten.

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

      @@Axel_Andersen Did you not watch the video? It’s already in the top 10

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

      @@wyqtor Less prone to memory management errors usually comes with being somewhat memory inefficient (or not efficient as it can be)

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

      @@orangeguy5374 I did but it did no register, sorry, my bad.

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

    I program in assembly language and machine language since 1983. I will never stop.
    When you directly program the microprocessor, and build your own graphic interface, files access, etc. that's so cool! :)

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

      I agree, with assembler you can build your own libraries and virtually create your own language. I have programmed in various different assembler languages since 1975.

    • @glee21012
      @glee21012 25 дней назад

      C is portable assembly. C++ adds classes to it and other powerful features. You are missing out. I did assembly also, ain’t going back.

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

    I started programming with assembly language with an 8080 micro processor. I then learned C while schools were teaching Pascal and ADA. I then learned C++ and started using VHDL (Hardware language similar to ADA in concept) and then onto verilog (another HW language similar to C). Retired now, so trying to pick up on Python. It seems like some of these languages are tied to Systems or graphical interfaces. I remember a fellow who specialized in Smalltalk which is used in the Chip testing industry. What's nice about C is you can get down to the machine level or write at a higher level. C++ brings in the object oriented aspects.

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

    This explains why I learned Fortran, COBOL, BASIC, C and Pascal in my younger days. I guess Assembly was just a bonus for the Engineering students.

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

      Given the inefficiency of most processors at that time, anyone who really needed speed used assembly.

    • @u.v.s.5583
      @u.v.s.5583 Год назад +1

      I never really learned COBOL, but am guilty of the remainder of the list.

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

      @@u.v.s.5583 Same here. Our professors were very excited about Pascal and Modula-2, but we all wanted to use C instead. Gotta love the late 80's CS scene.

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

    Beautiful and instructive animation. Would be perfect to cite the multiple surveys used as data sets.

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

    For me personally, C is the most beautiful language. Both Linux' and Windows' kernel are written in C. I've written a lot of embedded software in C. It's wonderful. Over 50 years old and still the backbone of every product we use today, be it a server, a handheld, or a pc.

  • @dylanparrish-subda7141
    @dylanparrish-subda7141 Год назад +16

    I graduated college with a CS degree in 2017, and I spent 4 years working in COBOL doing object plug-in with a NetCOBOL compiler as my first job and went to another COBOL position after that. Not what I expected out of university as someone born in the 90s. 😂
    Love these graphics!

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

      Damn

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

      Nice. At least you have a rare skillset and can fill the empty positions left by the old retiring folk.

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

      @@DataIsBeautifulOfficial Repent, sinner- Heil GOD

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

    I saw my whole pre teens and programming career flash before my eyes. My first startup was in 2008 built in JavaScript and PHP. Interesting those 2 were in almost parity at the time.

  • @golden.lights.twinkle2329
    @golden.lights.twinkle2329 Год назад +13

    I'm surprised neither PL/1 nor RPG made it on this list. They were ubiquitous during the 1970s and 1980s. I was a computer consultant during that time and there was almost no demand for Fortran skills at all.. I don't believe Fortran was the most popular language for anywhere near as long as you portrayed. COBOL was much more heavily used, and is still in use even today.

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

      Just about every large business through the 80s used COBOL on their mainframes with RPG for Reports. PL1 was big on IBM minis. C was big on all the other minis (DEC, DG) . Actuaries loved APL on a PC connected to the mainframe with an IRMA board

    • @crosswingrobots
      @crosswingrobots 7 месяцев назад +2

      Agreed - PL/I is clearly missing from the data set.

    • @pagodakid
      @pagodakid 3 месяца назад +2

      Loved using RPG for 5 years. Made so many tasks easy to code.

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

    Loved writing code in Pascal and C back in the early 80s.

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

      Learned Turbo Pascal in the mid 90's and really loved it!

  • @mattiamarchese6316
    @mattiamarchese6316 7 месяцев назад +2

    That moment in 2014 when all the C-like languages were alongside each other.

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

    I learned a little Basic in the 60s and FORTRAN and COBOL in college in the 70s. I really liked COBOL. My COBOL professor was awesome - I still use some of the basic computer stuff and logic I learned in his class.

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

      It seems like everyone who grew up in the 60's and 70's says that. My business teacher said the exact same thing in class to us (minus him liking his COBOL professor).

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

      COBOL was the worst language I learned, b/c I already knew C and Pascal, and then it is a nightmare.

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

      open source GnuCOBOL

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

    Wow brings the dead back to life! I paused at 1979 when I started programming and realised I worked in almost all languages on the list (Fortran mostly, hated cobol!) Then to see the rise of Ada which I was a huge proponent of but despaired of a good compiler and was eventually suffocated by its own beautiful weight. Now, as I program almost exclusively in php and scripting languages I am appalled that I haven’t even heard of about half the entries on the 2022 list! I do miss my old friends like pascal and lisp! :-)

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

    Seeing JavaScript briefly claim the top spot in Q3 2018 and suddenly everything that’s wrong with the world suddenly makes sense.

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

    I self-taught BASIC during elementary school years. Then learned Pascal in AP computer science class in high school. That's when I had the most fun with computers, making my own games. Now, I'm just awe-spired by the level of technology we have today. I miss my Apple IIgs.

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

    what an artistic work I don't have words. outstanding

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

    I learned BASIC on the Vic-20 when I was 9 or 10, then got into QuickBASIC v4.5 (not QBASIC, I paid for the compiler), then started using x86 Assembly for slow parts, C, then C++, Eiffel, LISP, Java, Perl, Bash shell, SQL, C#, Javascript, PL/SQL, PHP, Clean, Python, Ruby, Erlang, Haskell... I think I got the order right. Working mostly in Python and JS nowadays.

  • @waynehawkins654
    @waynehawkins654 8 месяцев назад +2

    Great watch. Be keen to see where C# is now. See it was dropping at the end. But with all the work with .NET Core, Blazor and the MAUI and the current version of C#, is this a future for many or something else. Plenty of jobs wanting C# so it must be in the top 3.

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

    I've been programming for a living for the last 20 years, and there's a lot of change to the languages during that time. A lot of the languages look and/or work completely different today from 2 decades ago. Javascript has changed a lot and is being used for a lot of things not even conceived of then. PHP still has the same usage, but the language has changed to such a significant degree that it is not really the same language anymore. Even a very old and conservative language such as C has undergone some substantial changes.

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

      No, PHP is not the same anymore. Although, code written 25 years ago will still run on PHP 8, with some changes. That is how backward compatible the core developers have kept it.

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

      @@mucholangs I wish that was the case, but there has also been a lot of deprecation in the last few years.

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

      @@racketman2u Most deprecation have easy drop-in replacements. E.g. ereg vs preg_match.
      Unless you have a particularly complex code, you could make changes quickly.
      Also, unless, you're using a framework, getting old code to run on newer versions of PHP is trivial.

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

      Yes and that type of rapid arbitrary changing is terrible for anyone who has developed expertise in a language. Forcing people to relearn is a ratioanlist weapon that puts talented programmers out of jobs.

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

    I studied programming between 2001 and 2004, I learned clipper, c++, cobol and visual basic, but in the end I dedicated myself to infrastructure, greetings from Chile

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

    I used C64 basic then DOS Qbasic. Learned pascal in 1990 and I'm still using it (delphi) for everything :)

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

    It's very interesting to see how the importance of the programming languages changed over the course of time. Especially when you think about what caused these changes:
    New hardware
    New software
    Introduction of the internet
    New usages of data...

  • @anoretu1995
    @anoretu1995 Год назад +96

    They all have different uses. C# and Java is popular in the backend while Javascript is more like frontend thing and Python for data analyses, math or algorithms.

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

      You should disambiguate your use of the term "front-end". A desktop app is also a front end, but most are written in C or C++.

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

      @@davidfrischknecht8261 you should get laid

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

      @@davidfrischknecht8261 Desktop apps are from ancient times.

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

      Python is great for backend unless youre doing banking

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

      @@davidfrischknecht8261 Not really, if you look at your apps like discord, vscode, netflix, spotify, slack, or microsoft office, they are all just electron apps written in javascript, I'd say this is more popular than C++ honestly, even though C++ does have huge importance in the browser, gaming and adobe suite.

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

    Writing in assembler is like building a house by gluing sawdust together.

  • @kerrywsmyth
    @kerrywsmyth 6 дней назад

    One of the biggest "what-if's" in my life was in 1988, when I was 12 years old, I discovered the giant manual in my Atari XE console was Titled, "BASIC Programming." I cracked it open and started to learn it and was fascinated. When my dad (who was an electrical engineer at the time) came home, I showed him. He was amazed I was able to learn what he learned on punch cards when he was in College. We messed with it day and night for months. Then we got bored and moved on to other things. Fast forward to 1995 and all I am seeing everywhere is this new Internet thing. I was in the military and busy with other things. I really wished that I had seriously pursued programming professionally.

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

    Interesting. I had in multiple occasions heard that there would still be around old systems coded in old languages, and each time specifically COBOL was mentioned, so I had assumed that at some point it would have been the most popular programming language. But apparently it never was most popular; Fortran was, but I don't remember it ever been mentioned. Were those two, COBOL and Fortran, then each used in different kinds of fields?

    • @jrstf
      @jrstf Год назад +11

      COBOL used exclusively for business programming. Fortran largely used for scientific programming. COBOL has always been a strong contender for the world's worst language.

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

      @@jrstf If relational databases had been around in the 1960s the COBOL applications wouldn't have been so bad. The simple COBOL syntax was used to manipulate huge data in limited core memory. More modern languages would have had a tough time with that as well.

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

      COBOL is used a lot in banking systems, and those systems don't like to change. There's was a saying floating around in my part of the world (don't know if it still holds) that if you want to get a lot of money early in your career, you learn COBOL and apply for a job in one of the large banks (preferably German). The drawback is less opportunities later on and the non-sexiness of it all.

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

      COBOL is banking, FORTRAN is scientific number crunching (it is FORmula TRANslator after all)

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

      @@dmitripogosian5084 IBM created the PL/1 language to bridge business and math, which should have replaced COBOL. PL/1 was innovative and influenced later languages like C and Perl. PL/1 was the first language to use classes and a preprocessor, supported pointers and was also suitable for systems programming. PL/1 has practically disappeared, partly because IBM mismanaged it.

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

    I really love your graphs they're wonderful !
    I used to watch the previous one and was amazed to see you did a new one :)
    May I ask if there is a source we can read to keep updated about these changes or you did the stats yourself for the video ?

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

    *Wolfram L* is the _most satisfying_ programming language for the casual programmer (science, engineering, maths, economics, finance, etc)

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

      I don't see it around much. Probably because it's not available for free.

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

      @@timlocke3159
      on top of it as always.

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

      @@timlocke3159 it's definitely a niche language (been around for 30+ years). but those who _ever_ got some grasp of it love it for life and to death, including myself. It's been FREE on the Raspberry Pi for years.

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

      You should try Julia. It's also free and you can type Greek letters and all sorts of symbols for the names of your variables. Even emojis! 😀

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

      @@wyqtor That sounds like an amazing sales pitch on why not to use it.

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

    What a trip. Excellent recap of my professional life. Superb animation.

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

    Interesting timeline. I started COBOL programming in the late 70’s and loved every minute of it. Moved overseas in the late 80’s and into an IT Management role. Judging by the video, I made the right move. Still, Cobol paid well, as a contractor, in the UK in the 80’s.

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

    The fact that Python is booming now makes it feel like it just came out of nowhere but it actually took it's sweet a** time 😂

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

      Ya been around since the late 90s didn't become popular until around 2010 or so.

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

      Could be because people also use it for data analytics (which is a hot industry since 2010) and not just programming. Same with R.

    • @damiku-8866
      @damiku-8866 Год назад

      Yeah, it took a very long time, but then found a few very hot niches. I’ve been a data engineer since 2014 and Python is absolutely the best at that. Not necessarily the best language, just the language with the best support for that particular function. You could use Scala if you’re a masochist or if you really need industrial strength stuff, especially with Spark, but Python is more than good enough.

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

    Surprised how fast TypeScript became popular

  • @DIYDaveOK
    @DIYDaveOK Год назад +42

    As a software developer for about 35 years now, the most interesting chànge in that graph is the rise and fall of Java. It was a darling of the industry for so long, but is often seen as a support and maintenance albatross.

    • @DataIsBeautifulOfficial
      @DataIsBeautifulOfficial  Год назад +17

      I think ties to Oracle really hurt it in the end.

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

      @@DataIsBeautifulOfficial Very valid point. I know a lot of network admins that have waged and won battles to get rid of Java because supporting it, especially on the desktop, became such a nightmare because so many apps depend on the "right" version of the JVM, have independent keystores, create curious unexpected dependencies, and then add Oracle on top of it sure didn't help. A great deal of automotive diagnostic tools are Java-based and that's it's own special nightmare for shops who may have very limited IT knowledge or resources.

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

      @@DIYDaveOK Who is running Java on the desktop? Java is the perfect language for server-side processing.

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

      @@AmazingChinaToday Very few people now, but it used to be used in the places where you now see Javascript web stuff, and Electron apps.

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

      @@DataIsBeautifulOfficial it was buyed as a pack from Sun

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

    I am so glad my college focused on RPG and Cobol. Done a lot for me in life.

  • @useronetwothree-z6f
    @useronetwothree-z6f 10 дней назад +1

    c/c# is like the center of programming, its like the basic building blocks if u get what i mean

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

    Thank you for this history.
    I found it weird not to see languages like Modula-2, Forth, Haskell or PowerShell and I was expecting Pascal to be a lot more prominent in the mid-80s as Turbo-Pascal was the go-to solution on PCs, or C/C++ from the early-90s for it was pushed by the Turbo C++ "revolution" (and everyone seemed to turn to C and Unix/Linux at the time), when it replaced Pascal in computer schools. From what I know, computer schools mostly teach Python nowadays, because its performance is close enough from pre-compiled code and when an application can support being written in Java or JavaScript, who cares about code efficiency anyway? When you see you can code Windows 95 desktop with a few applications entirely in JavaScript in a browser window and it lags less than the original one, why bother?

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

      The Pascal shown in the video is mostly Modula-2 as this is what was used in uni and some business. Turbo Pascal for PC was at the end of the 80s and was a tiny fraction.

  • @marz_mitzi
    @marz_mitzi Год назад +37

    in memory;
    Pascal - 2002
    BASIC - 2000
    Assembly -1999
    Fortran - 1997
    ADA - 1995
    COBOL - 1995
    APL - 1992
    ALGOL - 1989
    hands down to the oldest remaining one (on the list)
    C: 1972- present

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

      Bold of you to say cobol and assembly died pre-2k but they're still used today...
      And still dominates most of critical infrastructure.

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

      @@kopazwashere Assembly I get, since somethings still require that deep down fiddling at the machine language level. At least called from other languages (and not for the whole applicaton).
      But its surprising that Cobol still is relevant these days. That old hack of a language that surely can be replaced with much more efficient tools?

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

      @@Magnus_Loov Nope, Cobol is still being updated and used. Not only on Mainframes, but Windows, Linux, Mac... GnuCOBOL. Many government, banks, big finance use COBOL and there are pretty good salaries now that we are retired...

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

      Assembly is still in use and I guess it will never die since it is the most close thing to machine language. And probably C and C++ will live forever as well.

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

    The dominants:
    Fortran - Primitive, coding into machine (almost assembly)
    C - Embadded systems
    Java & JavaScript - Web era
    Python - Machine Learning
    I wonder what next.

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

      C is also at the heart of all our modern operating systems, it might not be the most uses language nowadays, it is still silently powering all of our modern devices !

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

      What comes next is machines writing the code for you. Scary stuff.

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

      Fortran is higher level or on par with C. C is all about pointers, Fortran is much more about arrays. Especially F90 and later.

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

    Two insights:
    1. Before the 2010s languages were popular for longer periods of time. Sometime even decades, while nowadays the preferences shift quickly.
    2. R rose in popularity around 2015 but lost the favour of the Devs very fast.

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

      I want to be a fullstack web developer.which language wil be better java or python.

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

      @@jagdishpradhan5580 python

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

      @@jagdishpradhan5580 Neither. JavaScript.

  • @Craniachannel
    @Craniachannel Месяц назад +2

    I am a scientist, still using Fortran for daily numerical computation, and Python (Matlab too) for visualization and machine learning things. There is nothing can beat Fortran (off course C/C++ also) for scientific computing; probably Julia is the closest candidate.

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

    Now that was interesting! I started my time travel at 1976 with assembler. And going along, partly just out of curiosity, with Basic, Pascal, Modula-2, Eiffel, Fortran, C, C++ Obj-C, Tcl, Java, JavaScript, Ocaml, NewtonScript, ... And even two of my own languages that made it into commercial products.
    Writing software still is fun for me. For the stuff I do now (for me) it is C for embedded things.

  • @ΣυνέσιοςΠαρτσάφας

    My first touch with programming was through game maker 8. Its based on C++ and c#. I rarely used the actual code, but really abused variables and learned a lot for if/else commands, creating events, checking collisions, changing sprites and animations, and applying actions (self, other, specific object/s). My best was making a 25lvl mario game which was published in game maker website and had 55% rating in 2012.
    I saw a video in Python about making a 3d game and actually could understand a lot of the commands used, as well as the fact that it seemed quite flexible at a first glance. Usually i see people hate Python, as it is first taught in universities (computer science, maths) and it is not fully properly explained.
    I want one day to start programming (javascript, python, c++, C#), so that i can make games (by far the hardest thing in programming)
    I had a minor touch with GL Basic, but i never liked the design and the interface (not for me) and didnt spend a lot of time learning the commands.
    In high school we also learned micro worlds pro (greek version of a beginner programming) which was too simple and boring for me!

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

      Game maker language doesn't have much in common with C#... Its more like a custom JavaScript

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

    Great video... but I think it had some notable exceptions... pretty sure RPG and PL/1 had much larger adaption in the mid-70's than C, Algol, APL, and Lisp which were primarily in the Universities, DOD, and research facilities. . Back then IBM's PL/1 was on a lot of mainframes as it was both a business and scientific language. And RPG was used by a lot of smaller shops running mid-sized systems.

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

      Yes, I was wondering why the percentages didn't come close to adding up to 100% in the early years.

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

      PL/1 was the language I learnt first in 1973. Then Fortran, then HP Basic and C++ 20 years later.

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

      Indeed. PL/I was the main language then.

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

      Late to the party but I don't get it either. This video isn't my experience of 35 years in the industry. It says 'most popular' and not 'most used'. Ciobol was by far huge even when I graduated me of course it was never popular. Pl/1 and rpg also huge. But I worked in business and this seems to encompass scientific and education too.

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

    A most popular database would be nice

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

    This is so cool to see! Would love to see some disc golf statistics in a video!

  • @movme
    @movme 18 дней назад

    I dove into Fortran IV for a school year starting in 1968 and also did a quarter of Assembly. Also learned a bit of BASIC. That was followed by programming my HP calculator for many years. I did a lot of serious HyperCard programming on my Mac for a number of years until a while after Apple dropped that, but produced some very useful tools for my architectural work. And I did lots of programming in a superset of Pascal that was built into my CAD program so I could create my own drawing tools to simplify my architectural work that I did for 40 years. Started looking at Swift but didn't follow through because life was too busy.

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

    I was working as a software engineering contractor to the Naval Underwater Systems Center in the late 70s when the U.S. military declared that all subsequent software projects would be done In Ada. They launched a lot of educational projects to get everyone up to speed on the language. I was even a "reviewer" of the language as it was being more formalized. Strange, though, that you don't see Ada used just about anywhere today. As they say, "The best laid plans of mice and men and the U.S. military . . ." go POOF! It seems that you can't just declare that some programming language will be "used by all". Maybe they should have involved some actual, on-the-job, programmers in the decision. :)

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

      Wow, thanks for sharing! Interesting.

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

      i dont understand why Ada fell out of favor. it is a good language. did/does what Rust claims today.

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

      @@paherbst524 I appreciated Oracle pl/SQL which is based on Ada. In comparison tsql is meh.

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

    It could also be nice to see a pie chart of the use percentage.

    • @user-dh8oi2mk4f
      @user-dh8oi2mk4f Год назад +2

      I don't think the languages are mutually exclusive. Most of the time, the numbers added up to way more than 100.

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

      Pie charts are more like lie charts 💀

  • @Marcel-f1
    @Marcel-f1 Год назад +6

    Can you show the source?
    Is TIOBE Index?
    If not, can you show the source for "Javascript" for example?
    Great work by the way

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

    For a long time you were out brother. Nice to see you back ❤️

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

    Well this popped up and brought back some fun times. As a graphic design student back in the 1990s I had to take some computer science classes. Most fellow classmates hated them, but I discovered that I took to technology like a fish to water. I took an elective Visual Basic course which I loved. When I would tell others in my art and design classes how much fun it was, they would look at me as if I had two heads. 😂 Thanks for the great memories. Still using computers every day for design work. 😊

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

    It would be interesting to see a comparison of number of in-use instances of systems developed with each language, on the OS, server and end-user apps market. I suppose C, C++, and Java would still be at the top.

  • @mike1024.
    @mike1024. Год назад +9

    What are the units for these numbers?
    Edit: Nevermind, I had read the description but got confused when the percentages didn't add to 100. I see now that each language had a percent as a popularity value.

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

    Incrível o Delphi quando conheci o Delphi 10 e Java na época dos estudos no Tecnico.

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

      I always wondered why Delphi isn't way more popular than it should be ...

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

    Started at the end of the 70s thru to late 90s, it would be interesting to compare this graph with one of the types of computers available, the rise of PCs and Windows saw the explosion of Visual Basic, the rise of the internet then saw Java etc. Never thought Fortran was that popular.

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

    COLBOL. Used with the old timey data bases, IMS, DB2, CICS. Probably over $2 trillion of code written and still running.

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

    Fortran was the first programming language I learned, followed by COBOL, RPG, and assembly. Later, I used Forth, Basic, and dBase. Pascal was rather easy. I picked up C along the way. Taught HTML for a bit to high school students. Learned Python to help a student in college.

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

      Condolences on having to program in RPG. I used RPG II for awhile at IBM. It was not an enjoyable experience.

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

      I skipped the COBOL and RPG. The first being too tedious, and the second too finicky.

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

    TypeScript and Go are climbing the ladder right now.

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

      Rust in kernel 6.1 natively waiting for the popularity boom and industry switch.

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

    I would have groupped Pascal and Delphi as Pascal programmer have probably evolved to Delphi programmer. Same for Basic and VisualBasic, I'm not sure the disctinction make sense.
    Nice video anyway, and always facinating to see how trends evolves over long period of time.

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

      In that case, c, c++, and objective c could all have been grouped.

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

      @@qbasicmichaelI would argue it's different as Pascal was abandonned in favor of Delphi as far as Borland support goes. And in the opensource world, Lazarus is an extension of FPC (and needs FPC to work). C/C++ have enough differences, and C++ never took over C.

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

    Idea for you. You can make a video about most popular code editors. Im think that would be nice :)

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

      Thanks for the idea!

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

      @@DataIsBeautifulOfficial Thank you for listening to the audience, I think this video will be interesting not only for me. Im will wait, happy soon holidays

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

    It's impressive that the borrow checker is such a recent invention

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

    Can we expect GO to take Python's place maybe in a decade?

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

    Python swallowed everything in its path. 😂

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

    I have been a programmer for nearly 60 years and this was really interesting thanks. I have used many of the languages shown but Pascal was always my favourite. It would be interesting to show the rise and fall of hardware manufacturers and computer operating systems against these languages' popularity on the same chart.

  • @Still.In.Saigon
    @Still.In.Saigon Год назад +1

    Damn, a time machine. It was a beautiful trip. Thanks for your hard work

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

    Amazing for how long assembly was still popular only moving out of the top 11 around 1999. I was hoping to see RPG come into view, having programmed in several versions for over 20 years.

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

    I love the Groovy language but no one seems to think it’s cool. It’s so economical and easy to get stuff done. But mainly I work with python these days.

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

    Java: 17 years of dominance
    C: 15 years
    Fortran: 14 years
    Pascal: 5 years
    Python: 3 years?
    JavaScript: Technically is leading right now if you include TypeScript and all the Github traffic.

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

      JavaScript is barely leading if you add up with TypeScript. But I hope it finally dies and TypeScript (or even better, Dart) fully replaces it. The spread to server and desktop via NodeJS and Electron was the worst thing that could happen.
      And Python will probably rule for 10+ years since it's easy, dynamically typed BUT still type-safe (unlike JS which is a complete mess).

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

      Not the same score man 🤣

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

      If you add Typescript to Javascript, you have to add all the JVM based languages to Java as well. That would be a very strong competitor. Nonsensical in anyway.

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

      @@_piulin_ TypeScript, Golang, and Rust are probably the future, but for now JS is almost everywhere, which pisses me off when professors just teach Python then C, or Java then C.

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

      @@tmicecave It's aimless if all the surveys are ignored. StackOverflow, Github, and other sites should be taken into account when teaching students programming but probably not so much when you're already employed as a developer.

  • @moonlight-td8ed
    @moonlight-td8ed Год назад +5

    Python lovers ❤️❤️🌝

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

    I was shocked to see how popular Pascal was. It was what they taught us in computer science classes in the 80s, but I always thought it was just a training language. I was delighted to graduate to *C,* a _real_ language.

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

      C isn't a 'real' language. It is just glorified assembler language. We always knew that from the outset and about the only thing keeping this creepy old language afloat is the equally creepy old operating system that is Linux. C++ is a crime against humanity - used it for many years but really it is an abomination. Pascal, and especially UCSD Pascal and Borland Turbo Pascal, were far and away superior languages prior to the mainstream adoption of object oriented languages. A real language would be something like Java or C#. Python is fundamentally a scripting language while Javascript is the traditional client code-behind for web pages. Truth is, there are currently no languages I'd consider especially good. C# was promising but fails because it remains, in essence, a Windows-only language and has been adulterated by continuous 'updates' which have somehow managed to degrade the language. Worst of the new breed (other than Python) is Rust. This is the most awful language, created by people who have no knowledge of history.

    • @Ivan-fc9tp4fh4d
      @Ivan-fc9tp4fh4d Год назад +2

      I wrote an entire real-time operating system for the robot in Pascal. Commercially produced. :)

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

      @@davidgapp1457: _"C isn't a 'real' language. It is just glorified assembler language."_
      Oh my. Well the only reason assembler lacks much value today is because of the extreme flexibility and usefulness of C.
      *David:* _"... the equally creepy old operating system that is Linux."_
      _"Creepy"?_ Seriously? I don't get that.
      _"Old"?_ Well, maybe old compared to many computer things. But I still remember when Linux came on a pile of floppy disks which I viewed as too difficult to install even as I lusted for Unix. It was Cygwin that finally gave me access to unix-like computing.
      *Dave:* _"C++ is a crime against humanity - ... it is an abomination."_
      Perhaps hyperbolic, but I'm inclined to agree. It's soothing to hear someone else say it.
      *Dave:* _"A real language would be something like Java or C#. "_
      I had high hopes for Java, but I now list it in the category of _big disappointments._ Has C# broken free from it's ugly Windows cage?
      *Dave:* _"Javascript is ..."_
      Careful. Don't say anything good about that gross abomination. Every bad programming practice that we were warned against in college is routinely practiced in javascript.
      *Dave:* _"... Rust. This is the most awful language, ..."_
      Don't have perspective yet. I'm accepting input.

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

      I have great respect for if you did that, @@Ivan-fc9tp4fh4d.

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

      I was always sad to see the popularity of languages which co-opted the mathematical equality operator to represent assignment ...

  • @thomassciurba5323
    @thomassciurba5323 5 месяцев назад

    I’m a retired embedded SW Engineer, started programming as a hobbyist in the mid 1970. I have dabbled in most of those languages and at one time or another was proficient in about half but what carried me through a 35 year career was Assembly, C and C++.

  • @mariano_buitrago
    @mariano_buitrago 8 месяцев назад +1

    Pascal was my primary language during engineering school in the early 1980s. I wish I could have caught the C/C++ wave just a bit later.

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

    Why is php still alive? What psychotic force is keeping that thing relevant??

    • @blzspti909
      @blzspti909 6 месяцев назад +2

      the internet, 70% of websites run on PHP

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

      PHP is one of the best languages. I use it everyday. It’s a meme that it’s bad/hard to use. Script kitties, and keyboard monkeys think PHP is bad.

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

      lamp ?