#Beginner to coding
29 messages · Page 1 of 1 (latest)
Do you have a programming language in mind?
Well, what do you want to do?
Web dev and game dev
I would probably recommend javascript then
What I would recommend is either to start with harvard's cs50x course if you want a more well rounded foundation for your coding journey, or to just find a javascript tutorial and follow along
What good tutorial?
What what good tutorial?
What good free tutorial that can help me understand
!r js
Here are some resources you may find helpful.
These are what we recommend
Although I can't personally atest to any of them as I don't know javascript
I don't know javascript very well, perhaps that's an advantage?
I'd tell someone on a PC to hit F12 to get to a console.
Then I'd have them do:
alert('Hello World');
``` and then when they dismiss the alert I'd get them to try:
```js
let myvariable = 'Hello World 2.0';
alert(myvariable);
``` and then when they dismiss the alert I'd get them to try:
```js
console.log(myvariable+' is '+myvariable.length+' characters long.');
``` followed right after by a big leap:
```js
for(x=0;x<myvariable.length;x++){
console.log(myvariable[x]);
}``` and then I'd see how much of it was making any sense? LOL
How is that gonna help them in the long term?
If it makes sense it's a start to learning.
You can also use Python. It is very simple and is a great language for beginners.
!r ethical hacking
Here are some resources you may find helpful.
!r html and css
Could not find any resources for html and css
!r web development
Could not find any resources for web development
!r py
Here are some resources you may find helpful.
Installing Python
Interacting With Python
Basics Tutorials
Using Real Python
At the bottom of each Real Python article, there are links to the next article that you should probably check out. It's a useful way to continue your learning journey.
!r webdev