Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "programming-languages"
-
People with programming languages named after them:
Haskell Curry
Ada Lovelace
Agner Erlang
Blaise Pascal
Taylor Swift30 -
Today I learned how to use curly braces in Python for those coming from C style programming languages. I love that this was the accepted answer.10
-
Why did the chicken cross the road?
Assembler Chicken: First, it builds the road ......
C Chicken: It crosses the road without looking both ways.
C++ Chicken: The chicken wouldn't have to cross the road, you' d simply refer to him on the other side.
COBOL Chicken: 0001-CHICKEN-CROSSING.
IF NO-MORE-VEHICLES
THEN PERFORM 0010-CROSS-THE-ROAD
VARYING STEPS FROM 1 BY 1 UNTIL
ON-THE-OTHER-SIDE
ELSE
GO TO 0001-CHICKEN-CROSSING
Cray Chicken: Crosses faster than any other chicken, but if you don't dip it in liquid nitrogen first, it arrives on the other side frazzled.
Delphi Chicken: The chicken is dragged across the road and dropped on the other side.
Gopher Chicken: Tried to run but got beaten by the Web chicken.
Intel Pentium Chicken: The chicken crossed 4.9999978 times.
Iomega Chicken: The chicken should have ' backed up' before crossing.
Java Chicken: If your road needs to be crossed by a chicken, then the server will download one to the other side. (Of course, those are chicklets.) See also WMI Monitor.
Linux Chicken: Don't you *dare* try to cross the road the same way we do!
Mac Chicken: No reasonable chicken owner would want a chicken to cross the road, so there's no way to tell it how to cross the road.
Newton Chicken: Can't cluck, can't fly, and can't lay eggs, but you can carry it across the road in your pocket.
OOP Chicken: It doesn't need to cross the road, it just sends a message.
OS/2 Chicken: It crossed the road in style years ago, but it was so quiet that nobody noticed.
Microsoft's Chicken: It's already on both sides of the road. What's more its just bought the road.
Windows 95 Chicken: You see different coloured feathers while it crosses, but when you cook it still tastes like........ chicken.
Quantum Logic Chicken: The chicken is distributed probabilistically on all sides of the road until you observe it on the side of your choice.
VB Chicken: USHighways! <TheRoad.cross> (aChicken)
XP Chicken Jumps out onto the road, turns right, and just keeps on running.
The Longhorn Chicken had an identity crisis and is now calling itself Vista.
The Vista Chicken dazzled itself with its own graphics.20 -
Popularity of programming languages according to the DRRDSI (DevRant Rubber Duck Selling Index):
1. JS
2. Java
3. Python
4. C#
5. PHP
6. C++
7. Ruby
8. SQL
9. Swift20 -
programming languages are not designed to talk to computers, they are designed to be readable by other programmers.
please code like it.7 -
Clickbait will never change.
It's the most stable and constant source of mild annoyance.
2019 internet:
"These 3 programming languages will net you the highest salary"
"Ten home improvement tips using nothing but recycled underwear"
"How to cut onions like a real chef"
2020 internet:
"3 programming languages to learn while being bored in self-quarantine"
"Ten ways to use underwear as facemasks during the pandemic"
"Onions might cure corona, click here to learn how to cut them"
2030 internet:
"These 3 programming languages will increase your chances of survival in the wastelands"
"Ten ways to patch up your shelter against radioactive ashes using old underpants"
"Hydroponic onions are a good source of nutrients. Here's how you cut them with your camping knife"13 -
And for my birthday my girlfriend told me "your age++"
I don't know who told her that (she knows nothing about programming languages) but that was cute.3 -
Something helpful if you've just started learning programming it'll help you understand most popular programming languages why it's used and how much you can expect as a payment.
https://i.imgur.com/MD1JweO.png19 -
I find this a bit disturbing.
Programming languages shouldn’t be rated, that’s what I feel.
Thoughts ?28 -
"There are only two kinds of programming languages: those people always bitch about and those nobody uses." - Bjarne Stroustrup6
-
Was at a user group meeting today and somebody mispelled "programming languages"
He said: "problemming languages"
I died6 -
"I became an expert in 3 programming languages in 6 months with this new online course! Click here to order now!!"2
-
At a friend's party, I met one of the guys I've known from High school, and talk about what we've become:
Him: ...so yeah, now I study CS, I code some C, I dislike Java, blablablablabla I'm coding some OS and embedded software, blablablabla, and you, what do you code in?
Me: Oh, I learned everything I know by myself, still learning, and I'm mostly doing some PHP and Javascript. Doing websites and apps is cool.
Him: but those aren't programming languages? I mean, you can't manage memory, and blablablabla-
Me: Ó_Õ * Quickly dashed my ass off to talk with some ladies and boozed myself to forget what I just heard *30 -
So I was browsing devrant and a friend asked what all languages do I know? I said, python, c, c++
He looked at me like 😐
Took me a moment to realise he was asking languages not programming languages 😅13 -
My father just told me that I'm not a good programmer, because there are kids out there, who are younger than me and know more programming languages.
Besides the fact that the number of programming languages one knows has nothing to do with programming skills, I just said: "I wanna see that kid.", because I already knew his answer.
"Well, I never said there are many of these kids."
*facepalm*9 -
C#? Should have used Java
Java? So much boilerplate, use node
JavaScript? Terrible language, get some types
Typescript? Lipstick on a pig
PHP? Gross
React? Should have used Angular
Angular? Should have used Vue
Vue? Why aren't you using jQuery + HTML
VSCode? Use vim instead
Stfu, no one gives a shit about your biased closed minded opinion. Your users really don't care what technology you use, so long as they're happy.14 -
A business analyst turned to one dev and she asked him:
- Can you teach me programming?
- Yeah, sure. Do you have any idea which language do you want to learn?
- Nonono, I dont want to learn languages, I want to learn programming.4 -
A developer's worst nightmare is having amnesia.
Imagine being an expert in 6 programming languages and you suddenly lost your memory.
YOU'RE IN DESTINATION FUCKED ALREADY.5 -
Hello fellow ranters,
I created a poll to find out the distribution of used programming languages among us:
https://goo.gl/forms/...
I am curious, because obviously PHP is not very admired, and probably JS is the most used language around here. Lets see!
There is no information collected beside your answers. It would be awesome if you take this survey kind of seriously and do not add toooo many childish options ;)
You should have an insight into the answers after you participated. Maybe I will post some results after some time.26 -
Function definition in various programming languages
//JavaScript/PHP
function myfunc()
{
}
//Swift
func myfunc()
{
}
//Kotlin
fun myfunc()
{
}
//Rust
fn myfunc()
{
}
//Next...
f myfunc()
{
}25 -
If programming languages had honest slogans, what would they be?
-C : Because fuck you.
-C++ : Fuck this.(- Dan Allen )
-Visual Basic : 10 times as big but only 5 times as stupid.
-Lisp : You’re all idiots.
-JavaScript : You guys know I’m holding up the internet, right ?
-Scala : That was a waste of 4 weeks.
-Go : Tell me about it, Scala.
-Python : All we are saying, is give un-typed a chance.
-R : Whoa, I was supposed to be a statistics package!
-Java : Like a Roomba, you guess it’s OK but none of your friends use it.
-PHP : Do Not Resuscitate.
-Perl : PHP, take me with you.
-Swift : Nobody knows.
-HTML : No.
-CSS : I said no.
-XML : Stop.
Source:@Quora: https://quora.com/If-programming-la...6 -
Programming Languages aren't designed to be read by machines, they're meant to be read by humans. Act like it. #realdevscomment4
-
It's frustrating when you know so many programming languages and your boss likes you to use drag and drop website builders.10
-
Me: What programming languages do you know ?
Person: I know HTML and CSS and little SQL.
Me: ¯\_(ツ)_/¯ *cries inside*3 -
I am thinking if there could be one universal efficient programming language that could perform multiple tasks then it had been cool... Maybe it may cause programming languages singularity !!!57
-
Scripting languages, markup languages, database querying languages, etc. Are all types of programming languages. A program is a set of instructions for a computer to follow.
HTML is a programming language, fight me.48 -
Guy i just met: So you are a programmer??
Me: Yaa, i known a few programming languages.
Guy: So can you like, make games and shit??
Me: ...6 -
This is how y'all look when you bitch about programming languages in which your experience with it does not go beyond trivial hello world shit.4
-
If programming languages had honest slogans, what would they be?
C: If you want a horse, make sure you feed it, clean it and secure it yourself. No warranties.
C++: If you want a horse, you need to buy a circus along with it.
Java: Before you buy a horse - buy a piece of land, build a house in that land, build a barn beside the house & if you are not bankrupt yet, buy the horse and then put the horse in the barn.
C#: You don’t want a horse, but Microsoft wants you to have a horse. Now it’s up to you if you want Microsoft or not.
Swift: Don’t buy an overpriced Unicorn if all you wanted was a horse.
JavaScript: If you want to buy a horse & confidently ride it, make sure you read a book named "You don't know horse".
PHP: After enough optimization, your horse can compete the top most horses in the world; but deep down, you'll always know it's an ass.
Hack: Let's face it, even if you take the ass from the ass lovers and give them back a horse in exchange, not many will ride it.
Ruby: If you want a horse, make sure you ride it on top of rail roads, even if the horse can't run fast on rails.
Python: Don't ride your horse and eat your sandwich on the same line, until you indent it on the next line.
Bash: Your horse may shit everywhere, but at least it gets the job done.
R: You are the horse. R will ride you.
Got this from Quora.
https://quora.com/If-programming-la...7 -
Friend: "i really don't understand why our school didn't teach us HTML as first programming language, you can do some stunning looking website with it"
Me: 🤔10 -
Since you guys liked my icons, I decided to make a few based on some popular programming languages7
-
When u are new into programming.... Ur zeal is very high .... You wanna learn all programming languages at the same time...#haba1
-
I really hate it when online sources aimed at educating people looking to get into programming attack specific languages. I'm ok with them recommending some good starting languages (ex. JavaScript, Python, etc.) but I find it extremely inappropriate and damaging when they list languages they consider "bad." Languages like JavaScript, PHP and Java constantly get called out even though they power a huge chunk of the web and services hundreds of millions of people use every day. IMO it's a huge disservice to tell beginners not to even look at these languages. We should be teaching the language isn't really what's important - it's what you build with it.5
-
Tell us your "Programming Languages Story"
Mine:
Java -> HTML&CSS -> PHP -> Python -> JavaScript
Yeah, I know, I'm confused 😂.55 -
I was curious what's the current demand ranking of programming languages and found this. Calling SQL a programming language and putting iOS instead of Swift makes the ranking not credible in my opinion.20
-
Programming Languages are Like Cars:
Assembler: A formula I race car. Very fast but difficult to drive and maintain.
FORTRAN II: A Model T Ford. Once it was the king of the road.
FORTRAN IV: A Model A Ford.
FORTRAN 77: a six-cylinder Ford Fairlane with standard transmission and no seat belts.
COBOL: A delivery van. It's bulky and ugly but it does the work.
BASIC: A second-hand Rambler with a rebuilt engine and patched upholstery. Your dad bought it for you to learn to drive. You'll ditch it as soon as you can afford a new one.
PL/I: A Cadillac convertible with automatic transmission, a two-tone paint job, white-wall tires, chrome exhaust pipes, and fuzzy dice hanging in the windshield.
C++: A black Firebird, the all macho car. Comes with optional seatbelt (lint) and optional fuzz buster (escape to assembler).
ALGOL 60: An Austin Mini. Boy that's a small car.
ALGOL 68: An Aston Martin. An impressive car but not just anyone can drive it.
Pascal: A Volkswagon Beetle. It's small but sturdy. Was once popular with intellectual types.
liSP: An electric car. It's simple but slow. Seat belts are not available.
PROLOG/LUCID: Prototype concept cars.
FORTH: A go-cart.
LOGO: A kiddie's replica of a Rolls Royce. Comes with a real engine and a working horn.
APL: A double-decker bus. It takes rows and columns of passengers to the same place all at the same time but it drives only in reverse and is instrumented in Greek.
Ada: An army-green Mercedes-Benz staff car. Power steering, power brakes, and automatic transmission are standard. No other colors or options are available. If it's good enough for generals, it's good enough for you.
Java: All-terrain very slow vehicle.10 -
Phone-interview with a recuiter from a big consultning company.
Her: So, what programming languages are your strongest?
Me: That would be Java, as it's been used through university courses and privatley I've been making some C# projects
Her: Allright cool. What about object oriented languages?
Me:... Erhm.. That would again be Java and C#...5 -
Can we just stop hating on some programming languages? What's the point? All languages have their pros and cons. Deal with it.20
-
According to Google these are the hardest programming languages, guess that brainfuck is just a walk in the park then.12
-
When job requirements say:
Programming Languages:
CSS
Scrum
Git
jQuery
JSON
...who tf writes these requirements!?9 -
Programming is not about learning many languages, it's about making a way to simplify a task. With increasing it's productivity and minimizing task duration.2
-
Am I the only one who thinks that with all the scripting languages starting programming becomes to easy and so learning really good programming is getting nearly impossible because every tutorial is made for total n00bs and every forum is full of: hey my hello world programs isn't working?
Ps:I have no problem with people starting programming with languages like c# and python, I think just there are too many people saying that they are programmers just because they wrote hello world.
Pps: sry 4 my English.4 -
Top 5 World’s Most Hated Programming Languages
1. Perl
2. Delphi
3. VBA
4. Objective-C
5. PHP
Which one do you hate most?16 -
Imagine if programming languages were also written in different regional languages like Java in german,hindi,spanish.
Recruiters will reject you by saying u don't know java in Spanish.We need a java expert in Spanish.😁😁13 -
My friend and I were calling each other programming languages trying to degrade each other based on the cons of a language... Then he called me PHP 😢😢12
-
Jon Skeet's profile picture fits so nicely into this.
Source: https://aprogrammerlife.com/top-rat...4 -
Just read an article that really grinds my gears. Its about coding in other languages. Not programming languages, but literally other languages.
Btw I learned to code in Spanish and I'm not against coding in programming languages using variable names in other languages.
That's fine.
What pissed me off was that the author claimed that we should be able to code Fucking JavaScript in SWAHILI or other languages available. What kind of PC bullshit is that!
Coding is barely fucking readable and now we have to make standards for Multilanguage support. Just learn the less than 60 reserved words you lazy fuck and code with them! I leaned to code with shitty tutorials in Spanish and theres no 1000x resources out there and this author claims you can't code unless you know english.
Granted. It's easier but wtf not just learn it. When I coded in Java in Spanish, I didn't know wtf a Class was or ags meant. So what. I memorized that shit. How? By coding!
Why bring this PC shit to programming? The author thinks there are few programmers bc we don't support fucking SWAHILI in JavaScript. Fuck no!
Now if you want to support this initiative. Think of this,
...legacy code
...in 32+ languages.
Have fun debugging this thing.14 -
If I have a wish,
I would wished for all the programming languages in this world to have their array...
...start from -1.6 -
!student
Principles of Programming Languages teacher:
No one in industry uses git.
The same guy who refused to take semester project submissions as github links.
Also "Python is never pass by reference/id()"5 -
Wait... You mean to tell me that other programming languages that aren't python exist?!?!
Fucking blasphemy!!!11 -
When you know so many programming languages that you start typing something like:
int i as integer1 -
I just realized that the upvote and down vote button are a nod to incrementing and decrementing in programming languages : I++.
sneaky @dfox :)1 -
Ok. Let do a little tag game.
Whoever is taggedhas to learn a programming language specified by the tagger.
You then have to code a small programm in that language here on devrant in 24h. If you fail, schtroustrupp will hate you...
I start by tagging... Who am i gonna tag...
Mhh...
Lets start with @Linux
You have 24h to code a program in gerCompiler (i need to advertise my projects, yknow)33 -
How many of you learned your programming languages from courses/study and how many of you from just grabbing a project and bullshitting your way through until it stuck12
-
There are two types of programming languages, one that everybody hates and one that nobody uses.
Finally understood this after learning Haskell.1 -
Do You agree about "Professional Programmer should atleast know 5-7 Programming languages" ? as said by Bjarne Stroustrup17
-
I've always asked my self , How they developed programming languages??
C# --> Based on - C++
C++ --> Based on - C
C --> Based on - whaaaat????
Assembly?? How they developed assembly???
0101010101 -__-13 -
That feeling when you get job offers because programming is a mere interest in LinkedIn. I don't even know any advanced languages yet!
Holy fuck I look forward to this career!5 -
A friend of mine wanted to name her flowers, and was supprised when I had so many nice suggestions. I just suggested names of linux distributions, programming languages and python packages 😅
-
Are there statistics here in devRant that shows how many users here are PHP developers, C# devs, Frontend devs, Full stack LAMP devs, DevOps, etc? Something like that. 🤔10
-
Computer Scientists:
Programming close to the hardware requires different strengths. That‘s why we created a manifold of systems programming languages
Also computer scientists:
Lets do everything the browser does in javascript lol -
Each and every time I sit on a technical test I am reminded I don't know the theoretical background of the programming languages I claim I know.3
-
Today a teacher asked us about our hobbys. A classmate said 'programming' and after the lesson I asked him which languages he uses. He answered:
"Languages? What languages? I used that software you can program shortcuts with."1 -
https://arxiv.org/abs/2006.03511
New reasearch paper about machine learning applied to translate code into different programming languages.
Would you see a use case for this at your work?25 -
When someone says they use Scratch only and say its easy than other programming languages.. I want to scratch their eyes out4
-
The more I study IT and programming languages, the more I'm leaving Windows for Unix. Windows feels so heavy, I don't know why.5
-
What's the best Slav programming language?
Hint: czech motorcycle, typically red
Stolen from Life of Boris Q&A -
Not really a rant, but:
Me, programming in unity using C#: well if I add that library, My life will get a little bit easier, but the final APK will be 2MB heavier because of it.
WebDev who never used compiled programming languages: can't you just minify it?
Me:7 -
If programming languages are food items , CSS will be the dessert.
What do you guys think about other languages ?9 -
Another draw I found while cleaning my room. I made this on my last semester of the career at university.
Yeah, another Php. Remember the “Php elephant thong guy”? (Reference to another rant I posted) Here I’m fighting him with several programming languages. I remember that I made this because he only coded on php and jQuery, and I said to him “you’ll need to learn another languages if you want to apply to a new job”.
Which programming languages can you identify?
P.D. I don’t like PHP that much, I’d rather use Python or C#2 -
I wonder if youtube channel 'thenewboston' admin (Bucky) a genius or the god of all programming languages??? Respect bro!!! 😎😎😎1
-
Why can't I pick a programming language and just stick with it? Anyone else constantly exploring new languages?12
-
Javascript is becoming the mostly used language in the entire stack of technology. You can create mobile apps, websites, desktop apps etc... using javascript. Will this be the end of native programming languages?17
-
Have you ever tried to teach programming to a newbie?
Arghh..., well, now I do and I hate when they yawn. When my brain is working on 100%, when I'm trying to explain something with the hope that they understand what I'm talking about and they just ... YAWN!3 -
Doesn't matter if you know a lot of programming languages. There is no greater satisfaction than when you write your first "hello world" in a new language.6
-
Happy New Year!
This year I am going to learn new programming languages and they are: Python, Java/JavaScript, C/C#/C++ and the Linux Terminal.
I can't wait!11 -
Hello guys. Today I bring you my personal top 3 programming languages
🥇 Go
🥈 TypeScript
🥉 Java
🏅Honorable mention: Free Pascal
Thanks for reading8 -
IMAO, a new programming language/technology is like a new cute girl at your school/workplace. We give it a lot of attention and tend to ignore older programming languages/technologies2
-
Many articles about the best languages to learn, here's one about the worst
Source: https://uk.dice.com/technews/...6 -
I made a js script using google and pieces of an already made script without knowing a bit of js.
Amazing how all programming languages are so similar.1 -
Don't be specific on any programming languages, focus more on OOP approach, and say you know about OOD/A rather than, you know Java, C# and this and that.1
-
I read books on programming. The thing I most like about programming books is that they allow you to learn about topics that you would have never have thought to explore. When people look things up online, they tend to search very specific things, most times actual code. The internet is an incredible source for developers, don't get me wrong. But books allow you to learn about programming in a conceptual way which in turn will make learning new languages easier and allow your understanding of the languages you already know to be deeper.
-
Learn how to shoot yourself in the foot in various programming languages 😃
http://toodarkpark.org/computers/...4 -
Anyway, so I've been learning the basics of Python and Kotlin since a week, I just wanted to ask if I could get IDEs and resources for both of them.
Also I know more IRL languages than programming languages, just saying.4 -
I want to learn so much programming languages, go with so many personal projects.
But I have no time !
Sad Me. who is else have this situation3 -
What programming languages are used late at night ? - stack overflow blogs
https://stackoverflow.blog/2017/04/... -
I want to properly get into other programming languages like Java and C#, but I keep going back to Python because it's so much more familiar and I'm comfortable with it. :(
What do? Do others have this kind of problem too?15 -
I've been trying to diversify programming languages I know.
It's been rough; I just don't like a lot of the high level programming languages and low level ones are often tough to learn to for someone without formal CS background.
Then I tried Go, and you should too!9 -
C, C++, and Java are legacy programming languages.
So, for the ones who fear that the language will go away in mere 10-15 years. Chill. These languages will stay forever.18 -
Referring to this, about best programming languages,
https://devrant.com/rants/1322105/...
I’m more disturbed about Go didn’t make the list. At all.1 -
Have you guys seen the cool write up fossBytes did on the new devRant 'Most Annoying Programming List'. Many news sources picked up the story. Way to go devRant!
http://fossbytes.com/devrant-releas...2 -
Go, Rust, C#, Swift, Java, Ruby, Python, Delphi/Object Pascal, Ada.
Those are the "approved" memory safe languages of the us gov. Seriously, go fuck yourself.
https://readwrite.com/the-nsa-list-...24 -
At college you learn like dozen of languages but end up getting job in Java/C#
Welcome to India 🤗🤗1 -
Has anyone used python within cyber security?
I really want to get into cyber security. I'm curious what programming languages are used within that industry.4 -
If abusing programming languages was an actual crime, we would have reached type 3 civilization long ago.2
-
i suddenly understand people ranting about programming languages. sure, it gets the job well done but vba syntax just makes me feel uncomfortable2
-
I want to dive a bit into GUI-Programming on Linux.
Can you recommend me any Languages/Frameworks/Librarys ?
I thought about giving Vala a try, but wanted to hear your thoughts.5 -
If all programming languages but one got deprecated, that one should be Rust. Honestly, whoever designed it is a fucking genius.9
-
I was programming in java, C# and similar languages for years now and I never knew how the buffer overflow exploits would work, then I started C and saw the fixed size char arrays. After puking on my keyboard I realized that most of the vulerable programs were indeed written in C or similar languages.11
-
Anyone here worked a whole lot with low level programming?
I have always worked with high level languages like Python and C++, but I’ve also had an interest in working with embedded systems, real close to the metal.
Any directions on where I should go to start learning low level programming? Sites, languages, etc?
Appreciated devRant fam!😊12 -
My colleague sucks in all programming languages known to mankind, and he's one the best programmer I know.
Stop thinking "programming = programming language", languages are nothing ! Programming is about logic, architecture, paradigms, and that's about it.
Programming languages are the front-end of programming.2 -
Most popular programming languages.
It's just funny they used different images for the language specially for Swift, Typescript, C# and specially Python
https://amp.businessinsider.com/the...4 -
The fact that the world of technology and programming is entirely built on English temrinology irritates me.
The Anglo-American conspiracy never stops manifesting itself, even through programming languages.10 -
Trying to learn Spanish for last 10 years and in the time, I have used at least 20 programming languages.
Nothing is as easy as it is.15 -
Dear programming languages,
If you had to be case sensitive, then why the fuck can't you settle on whether to use an S or an s for a
S/string declaration.4 -
Hello guys. Im new to programming I know some basic c and c++ . I was hoping if someone could help me with some sites to learn new programming languages. Thank you.7
-
Should I learn Haskell? Would it help me with other coding languages as well?
My main language is JavaScript, also I would like to learn functional programming.2 -
Studying human languages.
They are so much more complex than a programming language and full of irregularities and stuff you can't really learn but have to 'feel'. This helped me a lot developing methods to learn new things quite easily and knowing foreign languages are kinda useful when I have to communicate with people too.3 -
not getting into html/css/js when i was younger. i'd be way farther ahead in my knowledge of other programming languages if i had :,<
-
I encountered some strange programming languages here =>
https://codegolf.stackexchange.com/...
Then scroll to the bottom.6 -
Learn more languages (programming and verbal wise), expand my knowledge beyond web technologies and build something with hardware, also get paid more.
-
Stop making fun of different programming languages
C is fast
Java is popular
Ruby is cool
Python is beautiful
Haskell is Intriguing
Javascript is ________14 -
I was just looking new and lesser known programming languages. Then I came to Rust.
"Rust manages memory at compile time"
What?😵 How is that even possible?9 -
I love reading code samples where the author was clearly very talented and up to the task, but had clearly used a different language up until that point, so they write with a strong accent. The C# codebase I'm working on right now for example had clearly been written by Delphi programmers6
-
I guess having a standardised documentation, an open-source encyclopedia about programming languages, frameworks, etc...
-
Go is the language JavaScript programmers retire to when they get old. Like the Florida of programming languages.2
-
The source is in german im sorry about that.. but its also a little bit awkward.. they said something like "c variants like. net, html and python" huh? its from 13,oct 2017 16:16
https://heise.de/newsticker/...12 -
We don't use programming languages to create websites, we use programming languages to generate DOM.
This could explain 90% of rants -
When someone says that a company is Java/Python/Ruby "shop", they are implying that company sells those programming languages instead of its products. Would you call macys/nordstorm a cottonshop? See how ridiculous that sounds!2
-
If all programming languages came with a paired condiment, what would some be?
I reckon C would be some kind of hot sauce that was just ground naga chili or something3 -
Most of the people here are SoOoO insecure and self conscious about their programming abilities they have to complain about other languages they don’t know anything about.5
-
Programmers hating languages different of their own. Programming language is first and mainly a TOOL.
-
src: https://gamedesigning.org/career/...
As a front-end developer, can anyone recommend any tools and tutorials on how to get started in game development ?11 -
Different types of comments that I know in programming languages
C, C++, Java, C# , JavaScript, Golang
// whatever and /* whatever */
CSS
/* whatever */
Python, Ruby, BASH, Powershell, perl, TCL
# whatever
Almost all markup languages
<!-- whatever -->
I was amazed by how many languages i know along the way!9 -
My dream project is happening right now! Become the ultimate programmer and learn all the programming languages2
-
While everyone is hating proper programming languages... Let's talk about quotes in batch files.
What the actual fuck did Bill smoke while developing this boolshit?2 -
It's the kind of evening where I'll look into niche programming languages but never make anything with them.
Send language suggestions12 -
With 5 years of programming experience, the only thing I can confidently do without searching online is print `hello world` in four different languages...
-
Just as a point of interest, who here enjoys Linguistics? (other than your programming languages, just wondering if one is relatable to the other)7
-
There is one problem common in all programming languages: THE DATE! Why don't we use timestamp for all???1
-
Top 5 World’s Most Difficult Programming Languages
https://search.app.goo.gl/Yk8Mm
Never heard of any one of them,
how many u knew?6 -
How do I become a consultant? Do I need to master some programming languages and programming patterns and get "know-how" beyond of the general population of software engineers?10
-
My list of programming languages that started out promising but turned out to be bad:
* Scala
* Kotlin
* Rust
* Haxe
* Swift11 -
developing some programs for a new client to generate fractal images. any suggestions on programming languages I should use? my first instinct was Python.4
-
Programming languages so rare that they will only help you in your current employment but not in any way or form your future.
-
Spend two years focusing on formal modeling using VDM. Find no one knows what it is. Welp back to Java and C it is then.
-
Today i saw a discussion in some facebook comments if js/php are programming languages. What do you mean? Would you describe these as a programming language? Any why?11
-
"There are only two kinds of programming languages: those people always bitch about and those nobody uses."---Bjarne Strostrup
-
So I just started learning Swift, and I think it's modern, beautiful and a bit weird. Like the Portuguese of programming languages.
I think it should be used more.3 -
I just visited an article out of curiosity "10 hot programming languages for building web apps".
First one was html. Closed the tab in under 5 seconds and hurt my brain.2 -
For those who don't know this fantastic programming chrestomathy: http://rosettacode.org/wiki/...
Simply search your programmatic problemand get solutions (plenty of languages). Enjoy! -
Mark Russinovich, the chief technology officer of Microsoft Azure, says developers should avoid using C or C++ programming languages in new projects and instead use Rust because of security and reliability concerns.30
-
Trying to be a minimalist, I've always kept to learning a single programming language for each paradigm or type. Now my boredom (probably mild burnout) is making things get out of hand. I want to learn so many languages.
How many programming languages have you learned so far?16 -
I don't have a single particular goal. but the first goal I have is to learn the rest of the programming languages that I want to learn, and get better with those
-
to everyone who judges programming languages based on syntax, it's appeal and familiarity: fuck you!5
-
Hey guys, just for research:
which programming language would you recommend a non programmer, who wants to learn programming?14 -
I hate when people compare programming languages without understanding much, e.g. "Do they have semicolon or not?" "Lol there are lots of parentheses in Lisp". I even hear someone said "Haskell and PHP are alike because they both use the $ sign"
Come on, don't be that shallow, programming languages are much more then syntax and their logos. Learn more about their paradigms, ideologies, the reasons behind those designs. -
! Rant
FYI for those who are interested, this course starts again today: https://coursera.org/learn/... -
Windows is THE platform for writing software and you know it. Also JS is the king of all programming languages because it's just the best.9
-
Help. How good are O'Reilly and dummies books to learn some programming languages and other IT stuff?2
-
I always thought, programming languages, as to be understood by a computer, need to be logical.
Then I tried to learn Javascript.
F*** it.6 -
I wanna seriously start learning another programming language, and I have three that I really wanna learn but I can't decide which one would be best to learn first. For some background, I vehemently prefer web development over anything else development-related. I have almost solely been developing frontend, and I am extremely interested in getting more into backend development. So, which one should I pick and why?
- Rust
- Ruby
- Go15 -
If we want to learn machine learning & artificial intelligence programming for IOS, which is the tools , languages, modules ?2
-
I would purchase a udemy course and grind away. I still do this today. In my option one of the best resources to learn new programming languages.
-
Spending more resource on problem solving rather than investing on programming languages. Train people with useful projects rather than small snippets.. Both of these will prepare them for the harsh reality..
-
!rant
Just a small question: how do you guys handle documentation, version control, what technologies do you use (programming languages and frameworks if any)?3 -
I feel that I don't sympathize with any programming language, I jump from one to the other (because I find some disadvantage using some of them) and I end up not learning any completely and the personal projects end up just being ideas. Is this search for perfect language a form of impostor syndrome? What should I do?10
-
What are you, a "Jack of all" or a "King of one" when it comes to programming languages?
And why did you decide to be that?6 -
Do you guys think someday programming languages will have reached their absolute limit? Where any more abstraction or additions would be more of a detriment than a plus?2
-
! rant and also sorry if duplicate.
Just a shout out the devRant team and devRant community! Just found this article on FossBytes -- http://fossbytes.com/devrant-releas...3 -
PHP is not one of the first six languages I associate with DevOps work.
https://dzone.com/articles/...1 -
Start with C as first real programming language. It might have a higher entrance barrier but in future you'll blaze through new languages with ease4
-
i made projects in Verilog HDL for fpga and stuff for the past few months in uni and did not get time for projects in languages like c or python.
now my dumb brain can't think in a normal programming language when I'm switching back to C.
P.S. if you didn't know verilog, it works a little different from normal programming languages. everything in Verilog runs parallelly.4 -
Hello fellow devs! I am thinking of learning an new language the following year ( not programming 😂 ). Which languages do you think is the best for a programming career ?
I am currently thinking between mandarin(chinese) and Arabic ! Any suggestions ?4 -
Leave JAVA TF alone. You ungrateful bastards. Leaving your long time love for these small ass small houses of programming languages1
-
I want a little study that correlates as much as possible programming languages with alcoholic beverages their coders consume mainly, and how alcoholic are they too on average.2
-
2019 Dev Resolutions
- Learn the rest of the languages I want to use
- make a game
- make money off something I program
- contribute to a project
- learn and use git
- get a good schedule for programming
- use a few languages in one project
- be better than I am now
- not be so hard on myself
- publish software/website/game -
if you could get instantly proficient in only one programming language ( and instantly suck with other languages), what would that language be?
-
Is it a good idea to learn two programming languages at the same time? I have a learning schedule created like I learn 2 languages alternatively in a week. For example, Python on Monday, Wednesday, Friday and Java on Tuesday, Thursday and Saturday. Is this a right approach to learn a new programming language or practice already learnt programming language? Any suggestions or developers following similar pattern of learning, please share your sample schedule.14
-
Why 'AND' and 'OR' have opposite meanings in programming, mathematics compared to the human languages?
Just to mess with thr newcomers..?2 -
Calling C a "high level language" is complete bullshit. 99,9% of all code is written in C or higher level languages than C.
What a "high level language" is not objectively definable. So this arbitrary division divides programming languages in two halves of astronomically different sizes.
It may have been a good decision in the 70s but it's completely off nowadays. I propose to draw the line between languages with manual and languages with automatic memory management.10 -
Programming languages / frameworks you dominate? Me:
-Rails / RoR
-C/C++
-PHP / laravel
-Javascript / jQuery / Backbone etc..
- Python / django1 -
The more I work with programming languages the more i feel like it's a big mistake to build functionality into the language. Especially functionality to extend the language, we developers have no fucking clue of how to write DSL languages that interact well with other developers code. We can not deal with the power!
Keep languages simple and extensibility very restricted, domain functionality belongs in libraries.
Also #deathtoframeworks5 -
Kinda want to start learning hardware (Arduino, RasberryPi etc), any tips?
How it works programming languages and stuff, anyone who can lead me on into it2 -
Just curious as to what security measures/programming languages the IRS uses on their website on form submissions and stuff.
-
Studied 4 programming languages for 6 months each. But now i decided to build my skills in a one. I need to pack myself for future. Which should be that one?12
-
Is there a way to search/filter all collabs on devRant based on tags like say programming languages ?4
-
I study programming now(C++ and some assembly) and I really like it, pretty soon I will learn more new languages, can I get any advise from the pro dev around here?
-
!Rant
What do you think of Common Lisp vs the Cool Kids(programming languages) of the present ?
Is it worth to learn it ?2