Stuff needed for coding | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Stuff needed for coding

I’ve started coding, but I need to know what else I need to have to start coding

27th Feb 2019, 9:11 PM
Kevin
2 Answers
+ 4
Open chrome and inspect a page, with developer tools the front end code that is creating the page is visible. We see the HTML and the CSS making it sexy, like all this (gesture). We can even change things in real time. It’s like x-ray vision for the web. Bet you wish it worked on me too? You can even copy and paste code, like Picasso and Steve Jobs said, good artists copy, great artists steal. Just don’t be a dick about it. Think more like reading other peoples code is a great way to learn. Next, you can’t write code with Word processors. You need a text editor. For PC, Sublime or notepad++, if you are on mac there are a few more good ones, Sublime again, texmate, MacVim and others. Sublime is the new hotness in the developer community and you won’t go wrong with it. When programming you’ll spend most of your time thinking, not writing code, so just pick a damn text editor and get on with it. Then we need two more things, a way to run it on your computer, known as local development and a way to get it up to
27th Feb 2019, 9:32 PM
Troy🌹
Troy🌹 - avatar
+ 2
Then we need two more things, a way to run it on your computer, known as local development and a way to get it up to wherever you get some server hosting. To run your code locally, just means running it on your computer. To set this up you can download WAMP for windows or MAMP for mac. The AMP stands for Apache, mySQL and PHP. These programs set up the server stack on your computer, then you put your code in the correct directory and your computer acts as the server. Now your site runs without being connected to the internet and you can test stuff before moving it to your live site. To move your code use an FTP program, we recommend CyberDuck, which works on Mac and PC. This program gives you an interface to move files to your server. We’ll talk about where to get your domain name and server next. Stick around.
27th Feb 2019, 9:33 PM
Troy🌹
Troy🌹 - avatar