What's your Favourite Programming Language? (sound check Q) - Computerphile

  Рет қаралды 757,325

Computerphile

Computerphile

5 жыл бұрын

For the past year, we've been asking this as a sound-check question. Here are the results!
Professor Graham Hutton (Haskell)
Joseph Best (BBC Basic)
David CX (Java / Python)
Lorraine Underwood (PHP)
Rob Miles (Python)
Charles Arthur (Python)
Sarah Spencer (Javascript)
Matt Denton (C)
Matt Lloyd (C/Python/PHP)
Ian Dickinson (C)
Tom Sheridan (Python)
Spencer Owen (Forth)
Rob Morley (PHP)
Professor Brian Kernighan (C/AWK/Python)
Rebecca Tickle (Javascript)
Dr Robert Smith (Common Lisp)
Aaron Jackson (Lisp / Matlab)
Professor David Brailsford (C)
Kate Green (HTML LOL)
Dr Steve Bagley (6502 Assembler)
Dr Max Wilson (Javascript)
Jason Fitzpatrick (Basic)
Professor Ross Anderson (Exim / Python)
Adrian Marinescu (Matlab)
Matt Phillips (68000 Assembler)
Dr Mike Pound (C#)
Professor Phil Moriarty (LabView)
/ computerphile
/ computer_phile
This video was filmed and edited by Sean Riley.
Computer Science at the University of Nottingham: bit.ly/nottscomputer
Computerphile is a sister project to Brady Haran's Numberphile. More at www.bradyharan.com

Пікірлер: 4 400
@willful759
@willful759 5 жыл бұрын
"If I try to write pseudocode I accidentally write python" Python in a nutshell
@Bobbias
@Bobbias 5 жыл бұрын
I laughed so hard when I heard that, because I recently started learning python and yeah, it really does feel like that sometimes.
@kristijanross977
@kristijanross977 5 жыл бұрын
best comment ever
@jerreu7136
@jerreu7136 5 жыл бұрын
My computer science teacher recently said: “We'll be using python, it's a programming language where you write in english“
@theblackwidower
@theblackwidower 5 жыл бұрын
It's why I never understood the point of psuedocode. Why when you can just write code. I asked my profs this, I don't remember them ever giving me a straight answer.
@bignerd1323
@bignerd1323 5 жыл бұрын
@@theblackwidower I'd assume that it's to simplify the problem. I'd much rather worry about syntax after I figure out what I need my code to do. Maybe it's like writing a draft for a story without worrying about grammar?
@ignaciodemiguel3683
@ignaciodemiguel3683 4 жыл бұрын
"Do you have a favorite programming language?" "Si"
@JosueRodriguez08
@JosueRodriguez08 4 жыл бұрын
Loool
@RainMan52
@RainMan52 4 жыл бұрын
this does not have enough likes
@ezglpm8881
@ezglpm8881 4 жыл бұрын
1:18
@joma0305
@joma0305 4 жыл бұрын
"Si senior!"
@jinxscript
@jinxscript 4 жыл бұрын
😭😭😭😭😂
@botboy0
@botboy0 4 жыл бұрын
my favourite programming language is powerpoint
@oscwavcommentaccount
@oscwavcommentaccount 4 жыл бұрын
lol
@oscwavcommentaccount
@oscwavcommentaccount 4 жыл бұрын
you can make a fake gui in powerpoint. And its easy!
@The-Cat
@The-Cat 4 жыл бұрын
This comment got me laughing out loud at work
@tanmaypanadi1414
@tanmaypanadi1414 4 жыл бұрын
It's more of a c# if you unzip the .ppt file
@Pa-ow1nj
@Pa-ow1nj 4 жыл бұрын
u got me hahaha
@lapischicken
@lapischicken 4 жыл бұрын
My favorite is minecraft command blocks, yes
@gayxor
@gayxor 4 жыл бұрын
mcfunction, is an actual language now
@youluvana
@youluvana 4 жыл бұрын
What about the language from Computercraft mod for Minecraft that's based on Lua?
@lukakresoja5297
@lukakresoja5297 4 жыл бұрын
@@youluvana I fear no man , but that thing , it scares me
@IONATVS
@IONATVS 4 жыл бұрын
HA! A *real* programmer woul build the computer from scratch in redstone, and program the whole thing directly in banks of machine code switches!
@IONATVS
@IONATVS 4 жыл бұрын
Ah yes, it came to me: RedPower2
@maacpiash
@maacpiash 5 жыл бұрын
111 things I noticed: - JavaScript was chosen almost exclusively by the youth. - A bit older (but not too experienced) people chose Python as first choice. Those who are even more older (a little more experienced) chose it as their second choice. - PHP was chosen more than I expected. - Java was mentioned less than I expected. - Old folks knew what they meant when they chose C. - Absolutely no mention of the newly popular languages like Go and Rust. - Dr. Mike Pound chose C# and that's good enough for me!
@PhilippBlum
@PhilippBlum 5 жыл бұрын
- Javascript has a really nice abstraction level and is not statically typed, so ideally for simple web applications. And of course: It runs natively in your browser. That is also why I love Javascript. But please people: Use Javascript for what it is designed for: the Browser. - Python: Really nice language to automate things. Little analyses etc. More in the direction of bash, but we all know, bash is ugly. So, you might want to use Python instead. - PHP: Amazing template language for web-servers. But people tend to use it, for whatever reason, for way more. Same as Javascript: A bad trend. Misusing a language is always bad. - Java: When you need interoperability, like for Android apps, the jvm is an amazing tool for it. - C: If you are on an Island, you want to have C. The only language you can do low and high-level stuff. But the best: You can write your compilers for the other languages :) Also one of my favorite languages. Okay, I also really like to do web stuff: So, I also love Javascript. True, Go & Rust wasn't mentioned. I think we will see more and more Rust & Go in the future.
@r3d0c
@r3d0c 5 жыл бұрын
@@PhilippBlum javascript can be used in backend environment using nodejs; nodejs is the best @ async event dealing
@PhilippBlum
@PhilippBlum 5 жыл бұрын
@@r3d0c I don't recommend Javascript for backend Software. The V8 is going to be faster & faster, but Javascript is a scripting language and I would stick to its features. It is designed for the frontend, to create interactive frontends. ES5 has only callbacks, that's it. ES6 has Future & Promises. So has Java etc. Javascript doesn't have a nice concurrency model. You can use WebWorker, but I would say that is even worse than Threading in Java. Go has a nice concurrency model. Java & Scala have at least a de facto standard with Actors.
@okie9025
@okie9025 5 жыл бұрын
@@PhilippBlum you won't be making backends in anything other than python or javascript if you're not 25 or older
@PhilippBlum
@PhilippBlum 5 жыл бұрын
@Meta d Why Javascript for mobile apps and not Java and Objective C for iOS?
@MyDeadAlbatross
@MyDeadAlbatross 5 жыл бұрын
I just finished writing a compiler in C on this desert island. *dies of thirst*
@Vicente75480
@Vicente75480 5 жыл бұрын
If you don't create your own universe from where to extract silicon, gold, etc to make your computer from scratch where you make your own programming language's compiler using machine code, you are a complete noob
@Muhammad-sx7wr
@Muhammad-sx7wr 5 жыл бұрын
@@Vicente75480 Lol, Assembly.
@tuneboyz5634
@tuneboyz5634 5 жыл бұрын
I don't think u died of thirst because 1) u commented here 3) how did u access KZbin on a deserted island?
@andrepascoa6687
@andrepascoa6687 4 жыл бұрын
@@tuneboyz5634 you must be fun in parties
@torinfaes6278
@torinfaes6278 4 жыл бұрын
Tune BoyZ, criticalthinking.out has been executed, ascension is imminent.
@rothbardfreedom
@rothbardfreedom 4 жыл бұрын
Here is a phrase I thought I would never hear: "Stylistic: Java"
@sebastiangudino9377
@sebastiangudino9377 4 жыл бұрын
He probably is talking about expresivity when it comes to large code, due to the way java fits without a problem the GoF Design Patterns
@azaria_phd
@azaria_phd 4 жыл бұрын
Nothing says "stylistic" like having to write 10 lines of weird code for what other languages do in two lines intuitively.
@sebastiangudino9377
@sebastiangudino9377 4 жыл бұрын
@@azaria_phd And do it slower
@CottidaeSEA
@CottidaeSEA 4 жыл бұрын
@@azaria_phd I think you should look into what modern Java looks like. It also sounds like you've got an awful lot of prejudice, because that's really only true in very specific cases even with versions like 1.6.
@CottidaeSEA
@CottidaeSEA 4 жыл бұрын
@@sebastiangudino9377 Slower compared to what exactly? It's barely slower than anything else. Sure, write code in C or C++ and compile it and you have better performance, but that's honestly about it.
@arthurg5966
@arthurg5966 4 жыл бұрын
4:44 he was writing in MILF???
@IronCandyNotes
@IronCandyNotes 4 жыл бұрын
:D
@ardahatunoglu
@ardahatunoglu 4 жыл бұрын
MILFilter
@colorofmus1s
@colorofmus1s 4 жыл бұрын
yeah. it was invented by pHub
@xyz2112zyx
@xyz2112zyx 3 жыл бұрын
XD
@teslainvestah5003
@teslainvestah5003 3 жыл бұрын
...in a mail filter in Exim...
@imodium438
@imodium438 5 жыл бұрын
C: I have struct variable named Chair. I can sit on the Chair with the function sit(). C++: I have an object of a Chair class derived from the abstract base class Furniture with a virtual method called action() that I override to sit on the chair and it's being managed by the ChairHandler class.
@johndoe973azazaz
@johndoe973azazaz 4 жыл бұрын
C#: i have var named chair, but it has nothing in it so its trash
@pow9606
@pow9606 4 жыл бұрын
Function? Your allowed to write code without putting it in a class. Surely you need the irrelevant class for your one function.
@pendergastj
@pendergastj 4 жыл бұрын
...is what you do if you cannot produce proper structured code
@gileee
@gileee 4 жыл бұрын
If that's how you want to program in c++ sure
@markhollas7585
@markhollas7585 4 жыл бұрын
C++ makes more sense so you can do more actions on may types of things that are furniture like. Sofa + laydown or Bench + handstand
@EEVblog
@EEVblog 5 жыл бұрын
My favourite programming language is Solder
@aakoss
@aakoss 5 жыл бұрын
Don't forget the Flux!
@Lightning-Shock
@Lightning-Shock 5 жыл бұрын
That's not a programming language, sir.
@nif0
@nif0 5 жыл бұрын
Works for me
@crazylegs85
@crazylegs85 5 жыл бұрын
That must certainly be an "assembly" type language.
@BrekMartin
@BrekMartin 5 жыл бұрын
Disassembler :D
@breathofthewild1749
@breathofthewild1749 4 жыл бұрын
"6502 assembler" lol what a badass
@Communist-Doge
@Communist-Doge 4 жыл бұрын
6800
@yungifez
@yungifez 4 жыл бұрын
lol
@yungifez
@yungifez 4 жыл бұрын
I never even knew that existed
@Saustyy
@Saustyy 3 жыл бұрын
@@yungifez 6502 ASM is used for NES/Famicom programming
@ishashka
@ishashka 3 жыл бұрын
I tried learning that a few years ago. It's less complicated than you might think but like with any asm accomplishing anything meaningful takes a lot of effort
@GBGSK
@GBGSK 4 жыл бұрын
A: "What's your favorite programming language?" B: "eerm.. English?" A: "What?" B: "..but i'm a *Typist* "
@lukakresoja5297
@lukakresoja5297 4 жыл бұрын
Did you mean _python_
@IONATVS
@IONATVS 4 жыл бұрын
Lots of typography used to be done with wordperfect formatting commands (which after Microsoft bought the competitor became one of the many buried functions in Word that you need to know how to find if you want to use). Though I understand LaTeX is preferred in academia these days
@sebastiangudino9377
@sebastiangudino9377 4 жыл бұрын
@@IONATVS I mean, latex and word are different products for doing different things, they are not a replacement for each other
@IONATVS
@IONATVS 4 жыл бұрын
@@sebastiangudino9377 wordperfect formatting code != Word, while they are included as a background feature in versions of word, and originally as a major selling point of the WordPerfect word processor, they are not a word processor, they are a fully-fledged formatting scripting language that you could edit directly to gain complete control of your layout--just like LaTeX, just with a different syntax and some smaller differences in featureset.
@sebastiangudino9377
@sebastiangudino9377 4 жыл бұрын
@@IONATVS Fair point!
@caynebyron
@caynebyron 5 жыл бұрын
Everyone on their own language: "I can do anything with it!!!"
@SeanNicholsEh
@SeanNicholsEh 3 жыл бұрын
Yep! It's almost like those Church-Turing guys were on to something! 😛
@carlosmspk
@carlosmspk 2 жыл бұрын
It's such a redundant argument. If you couldn't, it wouldn't be much of a programming language
@nextlifeonearth
@nextlifeonearth 2 жыл бұрын
Then you ask for performant code and then it's no longer "the right tool for the job".
@zhawn14
@zhawn14 5 жыл бұрын
I like how you can tell what that person does for a living by what language they specify; MatLab is a Math or Physics guy, JS is front end developer, BASIC is a computer geek from the 90s, C is an embedded systems guy or COMPE/CS Professor.
@zhawn14
@zhawn14 5 жыл бұрын
Also C or Visual Basic
@redeyeddino8486
@redeyeddino8486 2 жыл бұрын
@ambassador python for data scientist or machine learning/ deep learning person
@jessejordache1869
@jessejordache1869 Жыл бұрын
And Forth people are "those people who always bring up Forth".
@tykjpelk
@tykjpelk Жыл бұрын
And what kind of person is 68000 assembler?
@TurdInternational
@TurdInternational Жыл бұрын
@@tykjpelk Amiga/ST/Mac/MegaDrive people
@lukakresoja5297
@lukakresoja5297 4 жыл бұрын
What is your favorite programming language? -HTML *Intense latghter from every corner of the university*
@SuperYtc1
@SuperYtc1 4 жыл бұрын
Hey... I recognise you.
@samuelthecamel
@samuelthecamel 4 жыл бұрын
"He's probably joking, right?"
@davidlopezpena6132
@davidlopezpena6132 4 жыл бұрын
The worst of all, is that once, my networking theacher said "HTML is a programming language", and i felt the pain going through all my body
@eusebiafernandasiahaan8181
@eusebiafernandasiahaan8181 4 жыл бұрын
I hate HTML, but I love PHP, and hate JAVASCRIPT too... Is that something unusual?
@cuttlefishn.w.2705
@cuttlefishn.w.2705 4 жыл бұрын
As annoying as it is, I can't help but think optimistically about a programming language for basic... people.
@erikbmx478
@erikbmx478 4 жыл бұрын
3:12 love how he betters the question and the reporter just answers it.
@jkobain
@jkobain 2 жыл бұрын
I expected him to give an appropriate answer to such a question, and he didn't disappoint me at all.
@georgplaz
@georgplaz 5 жыл бұрын
I just solder my code with the proper gates and a little battery. Makes you really plan ahead
@retnikt1666
@retnikt1666 5 жыл бұрын
3:20 but there's plenty of sea at a desert island
@Outfrost
@Outfrost 5 жыл бұрын
But either way you can definitely enjoy a cup of java :^)
@davdevs
@davdevs 5 жыл бұрын
@@Outfrost ... as you type out your script...
@akj7
@akj7 5 жыл бұрын
Yes there's plenty of sea, plus ... plus, there's also lot's of fresh air.
@iBot.
@iBot. 3 жыл бұрын
The fact that C++ was never mentioned in this video brings me great sadness.
@carlosmspk
@carlosmspk 2 жыл бұрын
And Rust
@nextlifeonearth
@nextlifeonearth 2 жыл бұрын
@@carlosmspk I get the absence of rust, it's still very new in the big scheme of things. But C++ I am surprised by. The low and high level argument of C is even more true with C++. Unlike what the others claim that they can do whatever they want in their language, C and by extension C++ are the only languages where that's actually true. Most interpreters and compilers of those other languages are all written in either C or C++, which to me just means just using the language means you can't do "everything" in said language. You're already using another. Not being a self hosting language disqualifies it from being able to do "everything" in it.
@carlosmspk
@carlosmspk 2 жыл бұрын
@@nextlifeonearth Well, when I say that "I can do anything with Python" for instance, I'm referring to how I can assign any class to a list (vector) and Python allows it at runtime, how I can return whatever I want from a function. Overall it's much easier to prototype, that might be what they meant with "I can do anything" although some of the languages they mentioned don't really seem be this case I'm talking about. Yeah, Rust is new, but it is also "trending" so I expected some of them to say something like that or Go, or Swift
@martindjakovic7052
@martindjakovic7052 2 жыл бұрын
ikr
@KuleRucket
@KuleRucket 2 жыл бұрын
They are academics who probably work on their own tools or a small team at best. They don't build large scale systems.
@jonathancunnane1200
@jonathancunnane1200 4 жыл бұрын
My guy using the 6502 assembler language 😂
@first-last557
@first-last557 4 жыл бұрын
It'd be my favorite purely because I made a 6502 computer on breadboards, dammit
@ryzenrog1139
@ryzenrog1139 4 жыл бұрын
More basic than BASIC !
@bdnugget
@bdnugget 5 жыл бұрын
Excel is Turing complete, let's use that.
@YellowBunny
@YellowBunny 5 жыл бұрын
I prefer x86 mov only.
@evannibbe9375
@evannibbe9375 5 жыл бұрын
Excel doesn’t have loops and uses way too much overhead.
@jthecoder
@jthecoder 5 жыл бұрын
@@evannibbe9375 Google Sheets allows recursion to a specified depth, controllable in the sheet's properties ─ so let's all use that for commercial projects ;-D
@johannbauer2863
@johannbauer2863 5 жыл бұрын
PowerPoint, Minecraft and Html with Css are also turing complete, let's combine those 4 to create the ultimative language! ^.^
@jthecoder
@jthecoder 5 жыл бұрын
@@johannbauer2863 Boom!
@johnopalko5223
@johnopalko5223 5 жыл бұрын
The first language I ever learned, back in high school (1972), was FORTRAN. Punch cards via a data link to the IBM 360/50 at the Board of Education downtown. The first language I ever earned a living with was BAL (IBM 360/370 assembler). Then I spent a year as a COBOL programmer, but I don't like to talk about that. Then I spent the next 40 years writing in C. Alongside C, I used awk, lex, and yacc a fair amount. And shell scripting, of course. I've dabbled with C++, Java, and Python, but I keep going back to C. It's definitely my favorite.
@fletcherreder6091
@fletcherreder6091 5 жыл бұрын
I have yet to find a single person who likes to talk about their time in COBOL.
@fletcherreder6091
@fletcherreder6091 4 жыл бұрын
@@FarukAFeres Oh, I've heard lots of stories, just no happy ones. (My best friend's parents were both COBOL developers at a large insurance company.)
@FarukAFeres
@FarukAFeres 4 жыл бұрын
@@fletcherreder6091 Cobol was the thing here from 90 to few years ago... delphi is still a thing these days...
@fletcherreder6091
@fletcherreder6091 4 жыл бұрын
@@FarukAFeres People I went to school with are currently doing *active* COBOL development *in 2019*. Sometimes I wonder what's wrong with the US....
@FarukAFeres
@FarukAFeres 4 жыл бұрын
@@fletcherreder6091 i got some legacy projects in ASP classic so I can guess whats is like to have a legacy to carry on...
@sahilbasera834
@sahilbasera834 4 жыл бұрын
My favourite language : Stack Overflow
@No-op
@No-op 4 жыл бұрын
Copy Pasta Overflow
@DerpRob
@DerpRob 4 жыл бұрын
I got very happy once I finally heard someone say C# I also got very happy watching this whole video, it was as if I was being introduced to the world's diverse cultures but in programming form!
@adist98
@adist98 5 жыл бұрын
Not a single C++. Man.
@DaveWhoa
@DaveWhoa 5 жыл бұрын
raw beautiful C.
@Henrix1998
@Henrix1998 5 жыл бұрын
I guess if you don't mind about C++, you can as well move to C
@georgplaz
@georgplaz 5 жыл бұрын
But lots of php instead. Really concerning ._.
@MegaOgrady
@MegaOgrady 4 жыл бұрын
As a C# man, I feel sad about.the lack of C# in there
@artificial-intelligence-user
@artificial-intelligence-user 4 жыл бұрын
Talk about stylistically java. Very scary.
@michaelpound9891
@michaelpound9891 5 жыл бұрын
This comment thread is going to keep me going for hours :)
@brickbuffalo6147
@brickbuffalo6147 5 жыл бұрын
Michael Pound subscribed and waiting for content on your channel
@dandan7884
@dandan7884 5 жыл бұрын
i wonder why xd
@mctuble
@mctuble 5 жыл бұрын
I must say I was happy to find out that out of these people you are the one I enjoy watching the most and as I was watching no one was saying c# and then here you come.
@markosestavel3919
@markosestavel3919 5 жыл бұрын
How can I spend few hours with you, just listening you explaining something random... Music to my ears
@craigbeaumontable
@craigbeaumontable 5 жыл бұрын
Cool, the guy who choose the correct answer - c pound (c#) 😀
@playerguy2
@playerguy2 4 жыл бұрын
3:40 I remember seeing a question on yahoo answers: "I want to make blockchain in html" sadly I can't find it anymore.
@fders938
@fders938 3 жыл бұрын
lol
@walteralt7984
@walteralt7984 2 жыл бұрын
i think that would require some tags, in a chain maybe. i hope he figured it out
@alibarznji2000
@alibarznji2000 3 жыл бұрын
All the old guys choosing C, wise men they are
@David-210
@David-210 2 жыл бұрын
Yes indeed
@GameCyborgCh
@GameCyborgCh 2 жыл бұрын
C will outlive every other language
@alibarznji2000
@alibarznji2000 2 жыл бұрын
@@GameCyborgCh it will
@shambhav9534
@shambhav9534 2 жыл бұрын
Nobody chose the spaghetti C++, wise men, everyone are.
@embeddor2230
@embeddor2230 2 жыл бұрын
@@shambhav9534 Try writing a big generic system in C instead of C++, before judging it.
@minhquando100
@minhquando100 5 жыл бұрын
Huh I'm surprised no one said C++. I feel like it's a versatile version of C given that you can do low level programming and higher level object oriented programming with it fairly easily.
@joshsmit779
@joshsmit779 4 жыл бұрын
saame
@josephmarx4695
@josephmarx4695 4 жыл бұрын
C is better
@danilo2735
@danilo2735 4 жыл бұрын
@@josephmarx4695 Maybe, but i mean, c is better than everything else
@josephmarx4695
@josephmarx4695 4 жыл бұрын
Danilo Marques, true
@billowen3285
@billowen3285 4 жыл бұрын
How is c better than c++?
@lithostheory
@lithostheory 5 жыл бұрын
Scratch! of course!
@rcookie5128
@rcookie5128 5 жыл бұрын
have to upvote, this was my entry into programming as a teen :)
@bentton7311
@bentton7311 5 жыл бұрын
of*
@lithostheory
@lithostheory 5 жыл бұрын
@@bentton7311 of course! (thanks, edited it)
@agnomilted5206
@agnomilted5206 5 жыл бұрын
I actually like to use LEGO EV3
@artit91
@artit91 5 жыл бұрын
Scratch is smalltalk
@Zzzooooppp
@Zzzooooppp 4 жыл бұрын
6:00 "Anyway, here's Wonderwall"
@matiasthiele770
@matiasthiele770 4 жыл бұрын
LabView makes spaghetti code look like actual spaghetti
@theodorechandra8450
@theodorechandra8450 4 жыл бұрын
I have ptsd with simulink and labview
@ardahatunoglu
@ardahatunoglu 4 жыл бұрын
@@theodorechandra8450 did my masters thesis with LabVIEW, glad it's over. I left a working mess behind which is impossible even for me to debug after 1 week or two.
@scarbotheblacksheep9520
@scarbotheblacksheep9520 4 жыл бұрын
Max is the same way with spaghetti code.
@Leibniz_28
@Leibniz_28 4 жыл бұрын
Yeah, LabVIEW is the best invention for no one
@chrism7574
@chrism7574 4 жыл бұрын
If your labview looks like spaghetti, you're doing it wrong.
@Inoka01
@Inoka01 5 жыл бұрын
Professor Kernighan likes C? I couldn't imagine why.
@xmtxx
@xmtxx 5 жыл бұрын
You missed the AWK part (he created it). :)
@NateEngle
@NateEngle 5 жыл бұрын
@@xmtxx I can recall writing a couple of small things with awk but those regular expressions are really dense to decipher. Not as intentional a "write-only" language as Malbolge but I'd hate to have to pick up anything like that today.
@johannesberger8641
@johannesberger8641 5 жыл бұрын
@@xmtxx I tried doing something in AWK once. Once.
@johnopalko5223
@johnopalko5223 5 жыл бұрын
@@xmtxx Well, he was one of the authors. He's the "k" in the name.
@Matt23488
@Matt23488 5 жыл бұрын
Me: "Man, nobody across the great pond likes C#, it's not been mentioned once." Dr. Mike Pound: "C#" Me: "Hell yeah!" I actually did the Success Kid pose IRL when he said C#. It also made me super happy it was he who said it, since the videos featuring him tend to be the ones I'm the most interested in.
@Aeroxima
@Aeroxima 5 жыл бұрын
Same!
@johnnyggun7141
@johnnyggun7141 5 жыл бұрын
Exactly!
@subzeronitro4686
@subzeronitro4686 5 жыл бұрын
C# or JavaScript would be my number two
@georgplaz
@georgplaz 5 жыл бұрын
Don't take it as an approval that its a viable language. The .net platform was built by MS and its development will always depend on what their interests are
@h.celine9303
@h.celine9303 4 жыл бұрын
Precisely
@jscorpio1987
@jscorpio1987 4 жыл бұрын
So far, C++ is my favorite. It doesn’t deserve the bad reputation that some people like to give it. It’s actually a really sensible language that can do just about everything. If I were stranded on an island with only one programming language, C++ would be my language of choice. And if I got tired of it, I could use it to write a new programming language.
@varun_4125
@varun_4125 2 жыл бұрын
I started exploring C++ mainly because of OOP and why is c++ getting hate?
@yuverris
@yuverris 2 жыл бұрын
smh use rust
@phillipanselmo8540
@phillipanselmo8540 2 жыл бұрын
@@varun_4125 c++ is full of bloat
@gommito
@gommito Жыл бұрын
I C++ is getting hate because of its complexity. It has lots of legacy features, its backwards compatible with C and some of the things are more complicated than they should be. For example you have 6 or so different kinds of initializations all of them have different rules and some things are undefined but most of the popular compilers support it so its fine and yeah... On top of that STL was written by someone who tried to make it most unreadable possible. Even though I still like it because i like pain ;)
@joshgibson3618
@joshgibson3618 Жыл бұрын
Yes, that’s some pain!! C creates a little pain too!
@user-ij5lh2zy5l
@user-ij5lh2zy5l 4 жыл бұрын
The easiest language to debug was C, but the most difficult language to learn was C. Also, as the project grows, it seems that all languages are difficult. If you don't have a lot of food, it's easy to use a fork and knife, but I think it's hard to eat if you have more food and a mix of different cultures. I'm sorry I don't know English well.
@SealedKiller
@SealedKiller 2 жыл бұрын
I always say C is an easy language since it's a simple language. The hard part when it comes to C is actually using it for something.
@WarrenGarabrandt
@WarrenGarabrandt 5 жыл бұрын
Dr Mike Pound, my man. C#, represent! lol
@Chris-ye7ip
@Chris-ye7ip 4 жыл бұрын
C# and C++ are missing a lot
@iz5808
@iz5808 4 жыл бұрын
@@Chris-ye7ip they are missing flaws
@WarrenGarabrandt
@WarrenGarabrandt 3 жыл бұрын
@@iz5808 As much as I love C#, there are two big features that other languages (like C++) have that I miss. 1) multiple inheritance, 2) the switch statement test variable cannot be a string.
@b.bergeron8769
@b.bergeron8769 5 жыл бұрын
My favorite is Holy C
@taz0k2
@taz0k2 5 жыл бұрын
This!!
@acobster
@acobster 5 жыл бұрын
God's Temple must be kept clean.
@r0x304
@r0x304 5 жыл бұрын
Temple OS will live forever
@dilass
@dilass 5 жыл бұрын
Rest In Peace Terry
@anujmchitale
@anujmchitale 5 жыл бұрын
@@dilass He died?
@JadeSync
@JadeSync 4 жыл бұрын
The guy with awk for day to day stuff, python when awk doesn't scale well, and C for serious stuff is my spirit human
@skylo706
@skylo706 4 жыл бұрын
5:39 This is my man. And the one with 6502 Assembler
@NaamloosDev
@NaamloosDev 5 жыл бұрын
5:38 finally. I love C# and I was so sad nobody mentioned it
@NaamloosDev
@NaamloosDev 5 жыл бұрын
@Kernels oh my this is the first time someone found me on youtube, I'm famous bois
@CarrotCakeMake
@CarrotCakeMake 5 жыл бұрын
Everyone who said Java has never used C#.
@WarrenBowles
@WarrenBowles 4 жыл бұрын
Was curious if anyone would say it, scrolled down to the comments and found the timestamp. So glad to see it's Dr. Mike Pound!
@janikarkkainen3904
@janikarkkainen3904 4 жыл бұрын
I got discouraged as well, C# is my absolute favorite
@rez188
@rez188 4 жыл бұрын
C# is easy to write but the downgrade in performance is just too much. It also gets worse to write as the program gets larger due to the nature of OOP
@sdspivey
@sdspivey 5 жыл бұрын
Machine code, anything else is just laziness.
@asdasdasdasd714
@asdasdasdasd714 5 жыл бұрын
I like to rearrange electrons myself actually.
@DaveWhoa
@DaveWhoa 5 жыл бұрын
i manually measure individual qubits. and if i'm not satisfied with the result i entangle the bastards.
@xunxekri
@xunxekri 5 жыл бұрын
I use butterflies.
@Darticus42
@Darticus42 5 жыл бұрын
And laziness is useful
@sdspivey
@sdspivey 5 жыл бұрын
I only support Netscape v1.0
@afeather123
@afeather123 4 жыл бұрын
For me its Typescript, C# and Haskell (even though I haven't built anything big/real with it, I just find it really interesting and a lot of fun to write. It's been really great to use for this recursive algorithms class I'm taking!)
@1973Washu
@1973Washu 4 жыл бұрын
I love Commodore BASIC, I have many happy memories of programming my first computer in that language.
@DrachenYT
@DrachenYT 5 жыл бұрын
Leave it to Mike Pound to drop some love for C#
@DoorThief
@DoorThief 5 жыл бұрын
Favorite language: Bash It's the only one I know at the moment and it's like I'm an orchestrator at a symphony!
@magno5157
@magno5157 5 жыл бұрын
:(){ :|:; };:
@azufendusgarendum6583
@azufendusgarendum6583 4 жыл бұрын
Even though I really like JS Bash is so lovable to mr
@musicamonarchy3062
@musicamonarchy3062 4 жыл бұрын
im exaclty like u, right now!
@David-nn1cf
@David-nn1cf 4 жыл бұрын
Start C++ now, quit wasting your time on bash
@musicamonarchy3062
@musicamonarchy3062 4 жыл бұрын
@@David-nn1cf i have the R&K book, im thinking about starting C.
@mikloslipcsey7923
@mikloslipcsey7923 4 жыл бұрын
Pascal: my native programming language. Nice to see the Lazarus IDE and fpc still around. C is a close second.
@bensalemmohamedabderrahman5844
@bensalemmohamedabderrahman5844 4 жыл бұрын
pascal is very underrated
@andreamassetti8706
@andreamassetti8706 2 жыл бұрын
I actually love the variety of the answers
@_random_guy
@_random_guy 5 жыл бұрын
A: what's your favourite programming language and .. B: html becau.. A: and you're fired .
@shashwattripathi759
@shashwattripathi759 5 жыл бұрын
lol
@ericl8743
@ericl8743 5 жыл бұрын
Yeah it's not really a programming language and
@user-zb8tq5pr4x
@user-zb8tq5pr4x 5 жыл бұрын
@@ericl8743 woooooosh
@ericl8743
@ericl8743 5 жыл бұрын
@@user-zb8tq5pr4x I get the joke here. I was surprised the people in the video were saying HTML
@panastiwari
@panastiwari 5 жыл бұрын
I'll choose XML!
@yaidontknowwhattoput
@yaidontknowwhattoput 5 жыл бұрын
Great reactionary video. The neverending battle between nostalgia, competency and usefulness.
@FuzailShaikh
@FuzailShaikh 2 жыл бұрын
I’ve never used Swift but when it was released i went through the entire learning guide and just loved it
@ishashka
@ishashka 4 жыл бұрын
Of the ones I'm currently proficient in: C#, but when I finally learn Rust and some form of Lisp, they might become my favourites. I really like what I've heard of them.
@henrythafeg2908
@henrythafeg2908 5 жыл бұрын
The number of people who answered PHP is disturbing
@henryriehl2058
@henryriehl2058 5 жыл бұрын
The number of people saying C++ in this comment section is disturbing...
@johannbauer2863
@johannbauer2863 5 жыл бұрын
The number of people, who answered Brainfuck is shocking
@georgplaz
@georgplaz 5 жыл бұрын
It literally made me stop watching because I couldn't take it ._.
@jolynnathan8475
@jolynnathan8475 5 жыл бұрын
The number of people who think PHP even qualifies as a programming language is disturbing.
@Martin-wz5rm
@Martin-wz5rm 5 жыл бұрын
@@jolynnathan8475 lol you're right
@gerhardvandeventer8636
@gerhardvandeventer8636 5 жыл бұрын
When your stranded on a island: C or C++. Favorite: C# with out a doubt - its statically typed, has loads of libraries, and can do low level memory editing as well. Seems I like any 'C" languages ...
@ashleylentz2651
@ashleylentz2651 5 жыл бұрын
Does that mean you like Java too?
4 жыл бұрын
Python can do everything... slowly. My favourite is C++ for serious stuff, but I also love JavaScript for goofing around.
@shambhav9534
@shambhav9534 2 жыл бұрын
I just love using the C, Go pair. C lets me do whatever I want with no interference and Go keeps heavy safety restrictions.
@douglasg14b
@douglasg14b 5 жыл бұрын
Yes! The C# guy. Also .Net core is cross platform! To the ignorant people who think C# == proprietary and patented: .Net Core is FOSS, Microsoft cannot sue for the use of .Net or .Net Core. 小林恭司 describes it in more detail.
@dreamyrhodes
@dreamyrhodes 5 жыл бұрын
It's not. Mono is not fully compatible and there are patent concerns.
@NiekSchoemaker
@NiekSchoemaker 5 жыл бұрын
@@dreamyrhodes mono is actually owned by Microsoft, they acquired it with the switch to .net core 3 years ago. Net core is also open source unlike net framework
@dreamyrhodes
@dreamyrhodes 5 жыл бұрын
@@NiekSchoemaker Doesn't change the problem of patents in the code.
@dreamyrhodes
@dreamyrhodes 5 жыл бұрын
@@NiekSchoemaker That doesn't change the fact, that C# is proprietary and has patent issues.
@FlashpumpClimbing
@FlashpumpClimbing 5 жыл бұрын
@@dreamyrhodes .Net Core is cross platform, what are you on about? Explain to my linux server running my .Net Core site developed on my Mac...
@Krokoklemmee
@Krokoklemmee 5 жыл бұрын
I don't get the "I like x, because you can do anything with it" argument... I mean, that's literally the whole point of a general-purpose language...
@pthomasgarcia
@pthomasgarcia 5 жыл бұрын
True. But what other language is as general purpose in practice as Python? Maybe JavaScript.
@Krokoklemmee
@Krokoklemmee 5 жыл бұрын
@@pthomasgarcia C#, C, C++, Go, Java, Rust, Kotlin, and literally every general purpose language Again: that's the whole point
@marloncendron611
@marloncendron611 5 жыл бұрын
But maybe what they were trying to say is that they are more familiar to some specific language, and because of that, they can do anything they want with it, just because they know how to do it in this language. (sorry for my bad english ;-;)
@pthomasgarcia
@pthomasgarcia 5 жыл бұрын
@@Krokoklemmee Sure, you can write a script in C++ with some library, but who has time for that? Python is easily more convenient in this respect and plenty of others ... in practice. Edit: So the caveat to settle the matter is that you can do anything with Python EASILY.
@Zolbat
@Zolbat 5 жыл бұрын
@@pthomasgarcia js is more general purpose than python. I can (and have) sat down at a random pc, opened a text editor ad developed a small project without having to install or configure anything. Just a browser is all you need and you can do data visualisation, ui and (basic) computing more easily than with anything else.
@jackevans2386
@jackevans2386 3 жыл бұрын
5:28 68000 assembly language ! At last, a real programmer ! ! !
@steveman1982
@steveman1982 4 жыл бұрын
1:19 Nevermind his programming language preference. Can I have a go in that machine behind him?!
@pedrodossantos5890
@pedrodossantos5890 5 жыл бұрын
I like C the most, because it makes it look like you know what you're doing
@TheBodgybrothers
@TheBodgybrothers 5 жыл бұрын
Throw in an overflow here and an overflow there. Bam done.
@somedude4122
@somedude4122 5 жыл бұрын
@@TheBodgybrothers Believe it or not, overflows are one of the rarely encountered problems in C. The reason people don't use it is because it's cheaper and faster not to.
@TheBodgybrothers
@TheBodgybrothers 5 жыл бұрын
@@somedude4122 I code in c daily and see overflows a lot. So yeah, memory issues are still a thing if not managed correctly. Most security vulns work on overflows. The latest nintendo switch root used an overflow.
@somedude4122
@somedude4122 5 жыл бұрын
@@TheBodgybrothers Ah, I was thinking about integer overflows. You still shouldn't be dealing with stack overflows. I code embedded stuff and drivers, but overflows are very rare and I've only had it happen a couple of times in infinite loops.
@NateEngle
@NateEngle 5 жыл бұрын
C was the language I used during the most hardcore productive part of my programming career and I love the fact that its syntax has influenced so many other languages today. C on a PDP 11 was such a well-crafted seamless match in a way that probably can't ever happen again.
@rbrucebicknell5038
@rbrucebicknell5038 3 жыл бұрын
Ruby, expressive, concise, fun. And like many of these cats say about their favorite language, I can think in it.
@precentvm8455
@precentvm8455 4 жыл бұрын
I've just started BASIC, and I love it.
@bosnianowitzkifan41
@bosnianowitzkifan41 5 жыл бұрын
Why did Java get glasses???? Because it couldn't C#
@animowany111
@animowany111 5 жыл бұрын
I misread that as "why did Java get classes" at first, I was rather confused.
@probably9085
@probably9085 5 жыл бұрын
Stop
@georgplaz
@georgplaz 5 жыл бұрын
@@animowany111 and why did it get classes? Because it couldn't C :o)
@Muhammad-sx7wr
@Muhammad-sx7wr 5 жыл бұрын
I'll give your a C+.. for that;
@oscwavcommentaccount
@oscwavcommentaccount 4 жыл бұрын
@@Muhammad-sx7wr You mean C++ for that.
@miguelnavarrete8578
@miguelnavarrete8578 5 жыл бұрын
Mine is C++... I'll go home.
@rcookie5128
@rcookie5128 5 жыл бұрын
No, my fav too. C++ promoters unite!
@richardpalme5b
@richardpalme5b 5 жыл бұрын
@Arsalan Anwari I think you don't know about the D programming language.
@dasemmiyogurt6288
@dasemmiyogurt6288 5 жыл бұрын
@Arsalan Anwari B is a thing or was a thing I think.
@lincolnsand5127
@lincolnsand5127 5 жыл бұрын
@@dasemmiyogurt6288 It's useless though
@gast128
@gast128 5 жыл бұрын
C++ for me too though it has many dark spots.
@AndrewTSq
@AndrewTSq 2 жыл бұрын
I am back to this topic, and have to change to javascript.. had not really tried it before I answered last time, but boy is that something else!. Love it so much!.
@svenniepennie4237
@svenniepennie4237 2 жыл бұрын
I also really like javascript. Typescript too.
@gnul
@gnul 4 жыл бұрын
My favorites are C# for Web Apps, Web APIs & Cross-Plattform Apps, Python for AI stuff and Maths and C as well as C++ for low level stuff.
@lightskinche
@lightskinche 4 жыл бұрын
C++ isn't only for low-level stuff (That's C and assembly) C++ is a little close to the computer but is considered a high-level language, just on the lower side.
@EnderJBrito
@EnderJBrito 5 жыл бұрын
"What's your favourite programming language?" "*HTML*"
@tantumDicoQuodCogito
@tantumDicoQuodCogito 5 жыл бұрын
Markup language but not to program 😂🤣
@DerFailer
@DerFailer 5 жыл бұрын
but html5 is turing complete
@Pirosbor
@Pirosbor 4 жыл бұрын
@@DerFailer care to explain what that means, for an absolute noob such as myself?
@DerFailer
@DerFailer 4 жыл бұрын
@@Pirosbor Okay we need some definitions. "Turing Completeness- In computability theory, a system of data-manipulation rules (such as a computer's instruction set, a programming language, or a cellular automaton) is said to be Turing complete " -Wikipedia So a programming language is turing complete. There is a rule called Rule 110 it is known to be Turing complete. If you can implement That rule in a language it is also turing complete and there for a programming language. Someone implemented Rule 110 in HTML+CSS. So my comment was not correct HTML+CSS is turing complete and together a programming language.
@mgpps114
@mgpps114 4 жыл бұрын
FIRED😂
@slap_my_hand
@slap_my_hand 5 жыл бұрын
I'm an embedded developer. To get python running i need to buy a fast CPU, make a complex multilayer PCB, do the DDR3 layout, compile a linux distro and install the interpreter. To get C running i hook up a JTAG probe and hit "run".
@threestar4045
@threestar4045 5 жыл бұрын
What about the compiler?
@rdoursenaud
@rdoursenaud 5 жыл бұрын
You probably want to take a look at micropython !
@lawrencedoliveiro9104
@lawrencedoliveiro9104 5 жыл бұрын
But didn’t you have to install the “run” button? And connect it to ... whatever it’s connected to?
@beforth
@beforth 5 жыл бұрын
Or load a 25Kb Forth interactive compiler and start prototyping via serial connection.
@hmm-.-
@hmm-.- 5 жыл бұрын
And that's why I like Python's C-API.
@Bllinker
@Bllinker 4 жыл бұрын
I love how when Brian Kernighan is asked (1:58) he responds with "I have said in the past that if I were on a desert island (...)" and when Professor Brailsford is asked (3:10) he says "I think a better question is if you could only take one programming language to a desert island (...)".
@iain777uk
@iain777uk 3 жыл бұрын
My favourite programming language is C and P: Copy & Paste
@dharmang
@dharmang 5 жыл бұрын
C: learn everything about programming language and build your logic. Python: include **** job done xD
@user-zb8tq5pr4x
@user-zb8tq5pr4x 5 жыл бұрын
Python doesn't have a keyword "include"
@marcelosantos5220
@marcelosantos5220 4 жыл бұрын
import stuff stuff.doStuff() stuff done XD
@herrfriberger5
@herrfriberger5 4 жыл бұрын
@Evi1M4chine I certainly don't advocate the awful C-syntax and semantics, but "the point of programming" could be many very different things, including (re-) inventing a slightly better wheel. It's totally up to the programmer, or the one that hired him.
@mrtnbassmaster610
@mrtnbassmaster610 5 жыл бұрын
Cut and paste is the new programming language
@westly7rock
@westly7rock 5 жыл бұрын
lol wht
@ekremdincel1505
@ekremdincel1505 4 жыл бұрын
Lol
@musashi939
@musashi939 4 жыл бұрын
Cut and paste is the (not in the gof book mentioned) pattern. The language is called stackoverflow 😂😂😂
@StoneColdProfessor
@StoneColdProfessor 4 жыл бұрын
I'm glad to see there's some love for PHP out there!
@IterativeTheoryRocks
@IterativeTheoryRocks 4 жыл бұрын
Very interesting. My favourite has changed over time from basic to ml to python.
@AndrewFRC135
@AndrewFRC135 5 жыл бұрын
I love my low level languages. I work with embedded microprocessors down at the hardware level. So of course, C is my favorite language. You have absolute control of your memory management and can do a fair bit of optimization. I love pointers! And of course, if you need even more speed, you can always throw in an ASM routine here or there. But if I'm just goofing around in a Windows/Linux enviornment, I will normally pick C# or Python.
@Sheepyhead
@Sheepyhead 5 жыл бұрын
I'd say it's C#, in terms of syntax at least. Might be Python if it wasn't for the dynamic typing and lack of proper closures. Just add those brackets to Python and I'm all in
@rivox1009
@rivox1009 5 жыл бұрын
Many people like python because of those two things, and not in spite of them, so I don't think it will ever change. Let's just say that python reads and writes a lot more like spoken language, so it appeals to many. Adding brackets and whatnot would undermine this very principle. Ultimately, it's preferences.
@ScormGaming
@ScormGaming 5 жыл бұрын
They wanted some super light code... so the emptiness structures it. There's probably not going to be brackets, ever. It's a scripting language anyways.
@superdau
@superdau 5 жыл бұрын
I really like the lack of "clutter" in Python which makes it my favorite programming language syntax wise. But I'm equally fine with the brackets in all the C syntax like programming languages (like C, C++, PHP, Javascript).
@tommihommi1
@tommihommi1 5 жыл бұрын
python is executable pseudo code
@RobertMilesAI
@RobertMilesAI 5 жыл бұрын
I don't get the brackets and semicolons thing at all. All the style guides for these languages say it's bad style to have multiple statements on one line, and it's bad style to not indent your code. If you're always putting newlines between your statements and always indenting whenever you use brackets, which you should be, then the semicolons and brackets are redundant. If they're not useful, and they're certainly not beautiful, throw them out
@SeverityOne
@SeverityOne 2 жыл бұрын
Having done BASIC, Z80/8088/68000 assembler, Pascal, Modula-2, C, C++, PHP, Postscript, Java, JavaScript, TypeScript, Perl, (ba)sh, csh, awk and probably some others I'm forgetting: most definitely Java. I've dabbled a bit in Haskell, but not enough to have a firm opinion.
@vectoralphaAI
@vectoralphaAI Жыл бұрын
Damn huge percentage of people here in the video prefer Python as their programming language. And it makes sense. Python is a fantastic language.
@vectoralphaAI
@vectoralphaAI Жыл бұрын
@@anon8510 yeah it is. Fact.
@DannyHodge95
@DannyHodge95 5 жыл бұрын
Happy to see the Matlab/C# love
@Croxmata
@Croxmata 5 жыл бұрын
Matlab would be nice if it weren't so expensive or crash half the time. Fortunately, Julia replaced it in our labs. Definitely agree with the rest though.
@alcesmir
@alcesmir 5 жыл бұрын
@@Croxmata There is always GNU Octave if you like Matlab.
@jeffm6651
@jeffm6651 5 жыл бұрын
I love Java for its organization and in depth APIs. Been leaning more towards Python these days though.
@vectoralphaAI
@vectoralphaAI Жыл бұрын
Man Python is awesome.
@biquinary
@biquinary 2 жыл бұрын
For a long time C was my favourite, beating C++, python, javascript, c#, etc... sometimes by narrow margins. But after 15 years it has been unseated by Lua, a language I only learned recently. It's simple, extremely well-designed, as performant as you can expect from a scripting language, plus it's super easy to write C functions and call them in Lua to plug any gaps in the existing libraries. All you C heads out there have to give it a try, I promise it's worth it!
@ProjectKneepads
@ProjectKneepads 2 жыл бұрын
As a CS student, I learned a wee bit of JavaScript to start with, then moved on to C++ with a moderate piece of SQL and a small bit of assembly. I'm still learning C++, I've gone off on my own and learned some of the basics of vanilla C, and I'm learning Python right now. Of all I've learned so far, though, I think I prefer C because it is very explicit: It's very straightforward what types I'm working with, which makes it easier for me to read my own code and build on it. I like some features of C++, though, and Python is excellent for hammering out powerful code in a short amount of time without having to worry as much about data types.
@kaitwee
@kaitwee 5 жыл бұрын
is there going to be another video of everyone's most hated language?
@TheBodgybrothers
@TheBodgybrothers 5 жыл бұрын
Python would appear just as many times.
@fiftysecondsatfordys8990
@fiftysecondsatfordys8990 5 жыл бұрын
PHP
@NateEngle
@NateEngle 5 жыл бұрын
I don't know about most hated, but I always felt dirty after writing anything in COBOL.
@RonWolfHowl
@RonWolfHowl 5 жыл бұрын
It would just be the same list.
@jondreauxlaing
@jondreauxlaing 5 жыл бұрын
I remember having to do something in ColdFusion once. I also did a tiny bit of ASP (not .NET) and I remember that not being particularly fun. Also, BASH scripting is pretty infuriating in my opinion. Also, Javascript pre-ES6... bad memories...
@MrJosh6889
@MrJosh6889 5 жыл бұрын
At one time I would have said Python, but the more JavaScript I write the more I really like the language. If I want something cleaner and more formal I'd go with C#. It's what Java should be if it hadn't stagnated.
@djhalling
@djhalling 2 жыл бұрын
I'm glad somebody mentioned Forth. I'm not sure I'd want to use it for anything in reality, but it is an interesting language to program in.
@marceloventura6442
@marceloventura6442 4 жыл бұрын
(getting ready to get stoned) Ah, come on! Nobody answered R?!
@digipoke12345
@digipoke12345 4 жыл бұрын
I do love me some R, despite it seeming so strange at first. Great for data analysis.
@marceloventura6442
@marceloventura6442 4 жыл бұрын
@@digipoke12345 , it is actually an acquired taste. It's a functional language and it has two different object orientation systems, so it looks a little like a mess of a language to outsiders, but it is our mess to insiders. And it all boils down to the heritage code present in the package ecosystem. If one needs to work with a specifial data analysis and/or statistical method, there's a large chance it's already correctly implemented in some R package somewhere
@digipoke12345
@digipoke12345 4 жыл бұрын
@@marceloventura6442 It's functional? Had no idea, I'm very ignorant of FP (did a course for my undergrad but didn't learn/retain much), but I don't recognise any functional approaches.
@marceloventura6442
@marceloventura6442 4 жыл бұрын
@@digipoke12345 , yeah, it's a multiparadigm programming language. You have, of course, structured, you have 2 different OO dispatch systems and a functional system, like map(your_list, your_function) or map(your_list, your_list_of_function) or map(your_list_of_lists, your_function) etc.
@marceloventura6442
@marceloventura6442 4 жыл бұрын
@@digipoke12345 , yeah, it's a multiparadigm programming language. You have, of course, structured, you have 2 different OO dispatch systems and a functional system, like map(your_list, your_function) or map(your_list, your_list_of_function) or map(your_list_of_lists, your_function) etc.
@setsunaes
@setsunaes 5 жыл бұрын
C# is awesome, very elegant and it just keeps getting better.
@sayresyDevino
@sayresyDevino 5 жыл бұрын
Turbo Pascal
@sayresyDevino
@sayresyDevino 5 жыл бұрын
@Kurt Angerdinger 👍
@geoffmelnick1472
@geoffmelnick1472 5 жыл бұрын
its current incarnation of Delphi 10.2,
@NateEngle
@NateEngle 5 жыл бұрын
I liked Turbo Pascal well enough until I was doing a project that got larger than 64K. There was probably a more elegant solution to it later but at the time we had to fiddle with an awkward overlay system. Interesting how so many early influential languages and projects began as pranks (pascal, C, and UNIX) that just turned out to be too brilliant to drop.
@JohnAranita
@JohnAranita 4 жыл бұрын
I love Pascal because it was my first programming language in college, way back when. Today, I use HTML5 and CSS3 for my website.
@stuin01
@stuin01 4 жыл бұрын
Befunge is my favorite. Kotlin is my favorite for being slightly more practical, C++ is what I use most.
@NicoDsSBCs
@NicoDsSBCs 5 жыл бұрын
I hate to admit it`s C#. While I use C a lot more, and don`t often write for Windows anymore, and more on Linux. But C# is so nice and clean. It did make me forget how to write in C++. While 15 years ago that was my favorite.
@calaphos
@calaphos 5 жыл бұрын
Try kotlin. Its like C# for the JVM
@there_are_zero_good_nicknames
@there_are_zero_good_nicknames 5 жыл бұрын
@@calaphos dude... Java is the C# for JVM.
@NicoDsSBCs
@NicoDsSBCs 5 жыл бұрын
​@@FooBar89 I haven`t checked C++ for a long time. I still got my books from around 2000. Everytime I look into it I can`t believe how bad it looks. But compared to C that time, it was beautiful. I`m no professional programmer anymore. So I just use what`s easiest for me. So C in Linux. C# for Windows. I wished C# was open sourced way earlier so it could have made a bigger impact in Linux. I tried Mono once. It wasn`t fast/stable enough. Maybe it`s gotten better now.
@ayushsharma9270
@ayushsharma9270 5 жыл бұрын
C++ looks plain badass. No one calls C++ ugly, unless it is ugly, which it can be...
@NicoDsSBCs
@NicoDsSBCs 5 жыл бұрын
@@ayushsharma9270 True, I mean C++ of 20 years ago compared to C# now. I loved C++ back then. And there's actualy not much difference with C#. It's just the way you program for Windows that changed a lot. Actually I had to say C#(.NET) looks a lot nicer than MFC. So it's all Microsofts fault :) For anything else they're almost the same.
@leoneli.6379
@leoneli.6379 5 жыл бұрын
On daily basis: Javascript (flexibility, productivity, community). On an lsland: C (Better to have something strong to deal with low level).
4 жыл бұрын
Omg, with 80-90% of them you could just look at the person and guess more or less the correct answer. The first assembler guy was a big surprise for me though.
@vidhukant1073
@vidhukant1073 2 жыл бұрын
Some of my favourites would be JavaScript, Go, C and Haskell. I personally don't have much experience with C or Haskell (learning Haskell) but both of them are very interesting languages, functional programming is (currently) my favorite paradigm. I like C because I like the use of pointers, and manual memory management. I'm not at all proficient in C but these seem like very important and interesting concepts and I hope to learn more. Go is nice because it's syntax is very easy and similar to Python and C fused together, and it's easy to write, but it's very fast. JavaScript is my fav. because I just have a lot of experience with it, it's very fun to write, and it's very concise. It does have some serious issues but the ease of use and "accessibility" you get is just awesome. Let's see if any of my opinions change on this topic after maybe 5 years. I'm still relatively new to programming!
@bernardo013
@bernardo013 5 жыл бұрын
I really love R - especially for all of the packages that are contained within it and RStudio, one of the greatest GUIs I've ever used for a language.
@Ymparipyorailija
@Ymparipyorailija 5 жыл бұрын
Had to scroll for a while to find R. My answer as well. As a statistician, my opinion on every other programming language or statistical software is pretty much "Why on Earth should I use this when I have R?"
@GogiRegion
@GogiRegion 5 жыл бұрын
My favorite assembly is 68k, my favorite lower level is C, and my favorite higher level is C++. 68k assembly as much better syntax than any other assembly language, and as said in the video, Mega Drive programming is fun. C is just the best well rounded language. It can do pretty much anything and is really simple. Open source projects are pretty much perfect for C. C++ is my game or speed language. If I want to make a game or write a lot of code fast, I’ll use C++ as C with classes instead structs and vectors for some dynamic array management.
@UpcycleElectronics
@UpcycleElectronics 5 жыл бұрын
Admit it, you just like the promiscuous mnemonic innuendo of the 68k
@JacGoudsmit
@JacGoudsmit 5 жыл бұрын
Backwards is language assembly 68k :) (Runs away)
@TheJanhalsema1
@TheJanhalsema1 5 жыл бұрын
Have you looked at risc-v assembly, i've used both and am really enjoying writing risc-v assembly
@meettechniek
@meettechniek 5 жыл бұрын
Machine coding 68k. Typing hex-code on a EEPROM simulator that was brainpower translated from assembler on paper. I had no choice, cause I had no other computer than this own designed 68008 board.
@lawrencedoliveiro9104
@lawrencedoliveiro9104 5 жыл бұрын
The 68K architecture derives in many ways from the DEC PDP-11. I have programmed both. ;)
@dale116dot7
@dale116dot7 2 жыл бұрын
I agree with 68k assembly, one of my favourite processors to write for. I’ve done IBM 370, Z80, C167, PIC, HC05, HC08, HC11, 9S12X, and 6502 assembly as well as microcode for a few DSP hardware platforms (custom hardware, not an off the shelf DSP). 68k is well thought out, to me it resembles IBM 370 assembly. But for a desert island language? I agree with those that said ‘C’ and for the same reasons. But I really enjoy assembly. I do not really enjoy programming anything higher than ‘C’, and I quite dislike programming user interfaces, I prefer programming when the user interface is a driver pressing on the gas pedal and the rest of the system includes a few dozen sensors and actuators under the hood.
@bmp72
@bmp72 4 жыл бұрын
Assembly, just nice and simple instructions which are essentially the same for all processors
@user-hl7lr8ld2i
@user-hl7lr8ld2i 4 жыл бұрын
bmp72 ive never used assembly, can you tell me more in detail why you like it?
Mike Pound Q&A - Computerphile
19:59
Computerphile
Рет қаралды 130 М.
Ch(e)at GPT? - Computerphile
13:52
Computerphile
Рет қаралды 599 М.
Which one of them is cooler?😎 @potapova_blog
00:45
Filaretiki
Рет қаралды 10 МЛН
Каха ограбил банк
01:00
К-Media
Рет қаралды 8 МЛН
小女孩把路人当成离世的妈妈,太感人了.#short #angel #clown
00:53
Smart Sigma Kid #funny #sigma #comedy
00:19
CRAZY GREAPA
Рет қаралды 15 МЛН
What do Mathematicians Eat for Breakfast?
4:34
Numberphile
Рет қаралды 422 М.
Favourite Shortcut Key? (Soundcheck Question) - Computerphile
7:13
Computerphile
Рет қаралды 246 М.
Regular Expressions - Computerphile
17:19
Computerphile
Рет қаралды 239 М.
AI Safety Gym - Computerphile
16:00
Computerphile
Рет қаралды 119 М.
The Most Difficult Program to Compute? - Computerphile
14:55
Computerphile
Рет қаралды 1,4 МЛН
How Machine Language Works
19:48
The 8-Bit Guy
Рет қаралды 940 М.
Where GREP Came From - Computerphile
10:07
Computerphile
Рет қаралды 932 М.
Functional programming - A general introduction
11:47
Daedalus Community
Рет қаралды 87 М.
Which one of them is cooler?😎 @potapova_blog
00:45
Filaretiki
Рет қаралды 10 МЛН