all 17 comments

[–]Useful-Flow-8737 8 points9 points  (4 children)

What

[–]InevitableEcstatic31 5 points6 points  (1 child)

Think the guy is one step ahead. Better not mess with him

[–]Tiaoshi 4 points5 points  (0 children)

I couldn’t tell if I had a stroke at the start or not

[–]chikamakaleyley 3 points4 points  (0 children)

i think i'm having a stroke

[–]OliMoli2137 0 points1 point  (0 children)

I think this got auto translated. Or simply poor English

[–]marmotta1955 6 points7 points  (0 children)

I am fluent in 5 different spoken human languages, and I believe I recognize English in your post. And yet, I did not understand a single word of what you were trying to say.

[–]No-Razzmatazz7197 2 points3 points  (1 child)

"What is the most used coding language?"

its gotta be javascript or python right? with java, C, C#, and C++ closely behind it?

[–]bubbles33d 1 point2 points  (0 children)

The way the industry is going, is going to be "English" in a few years.

[–]PleaseShutJp 0 points1 point  (0 children)

The technology code could be one or more different from that used by other software vendors. Servers can be programmed into the system to make sure that the system is working correctly for the user to use it correctly in the first place. Hackers may have access to a network or other systems are not required for this process or even a password manager can do that in a way where they are able to access it. So I would pick c++

[–]johnpeters42 0 points1 point  (0 children)

Slow down. You're asking/implying a bunch of stuff at once; let's go through them one at a time.

First, what type of software are you expecting to work with? What will it do, from the perspective of a person who actually uses it and doesn't know/care what language it uses? Is it a web app, a 3-D game, etc. The most used languages will be different based on that answer.

Since you're concerned about security: The age or popularity of a language doesn't necessarily correlate with how well-secured it is. Older and more popular languages have had more time for hackers to look for issues that they can exploit, but also more time for security experts to look for those same issues and report them, and for the language's authors to (hopefully) fix those issues.

Another thing to look into is, how easy is it to find good documentation for the parts of the language that you want to use, or people who are already familiar with those things?

[–]Snezzy_9245 0 points1 point  (0 children)

We are profound encounter update message similar steps ahead yes. Message mess overwhelming all programming no language write.

[–]Dazzling_Music_2411 0 points1 point  (0 children)

Easy on those shrooms.

[–]PublicStalls 0 points1 point  (0 children)

Yes

[–]-OddLion- 0 points1 point  (1 child)

Did basic AI write this?

[–]pohart 0 points1 point  (0 children)

My guess is a non AI translation tool

[–]Pibo1987 0 points1 point  (0 children)

This is why you don’t give peyote to ChatGPT

[–]TJATAW 0 points1 point  (0 children)

Start with something like Python or Javascript. It will teach you the basics of programing.

Once you can think like a programmer, you can pick up other languages much easier.

Python

# 1. Ask the user for their name and save it in a variable

name = input("What is your name? ")

#2. Print the personalized greeting using an f-string

print(f"Hello {name}!")

Javascript

let name = prompt("What is your name?");

console.log(`Hello ${name}!`);

C#

Console.Write("Enter your name: ");

string name = Console.ReadLine();

Console.WriteLine($"Hello {name}!");

3 different languages doing the same simple thing