10 VSCode keyboard shortcuts that’ll save you hours while coding.
Thread below 🧵
SPLIT TERMINALS
We can create and display multiple terminals at the same time with the following command:
EMMET ABREVIATIONS
If you’re writing HTML, you should know how tedious and time consuming it is to write certain elements. Emmet allows you create HTML elements (and even boilerplate) with some few keyboard shortcuts:
ADDING INDENTATIONS
Some languages require indentation to properly parse your code. Others need it to make the code more readable. You can create indentations in VSCode (@code) with the following command:
SHOW AND HIDE TERMINALS
Terminal is an integral part of software development process and it is integrated to VS Code for easy access. You can toggle the terminal with the following commands:
FORMAT DOCUMENT
You can format an entire block of code or text with the following commands;
SWITCH BETWEEN TERMINALS
After you might have created multiple terminals, you can switch between them with the following commands:
VSCODE EXTENSION MANAGER
We can add, search and remove different Visual Studio Code extensions from the sidebar. You can do so with the following commands:
ACCESS SETTINGS
You can access the settings area in VSCode with the following shortcut:
DUPLICATING LINES
Visual Studio code helps the users to duplicate the lines above and under the given line. This is useful while coding in HTML because HTML often involves repeating the same code over and over again. Use the following combinations:
CREATE MULTIPLE CURSORS
Multiple cursors help us drop multiple cursors at various instances of the code. This lets us add text at all the places without having to copy and paste the text again and again. Use the following key combinations:
This is my all time favorite site when it comes to learning the basics of CSS. The Tutorials are in-depth and also easy to follow. They also have a runtime environment where you can see the output.
5 effective ways you can improve your coding skills
A short thread 🧵
🎯Have good command of one programming language.
One thing I have noticed is that it’s far easier to learn a new language when you fully comprehend one. Instead of hoping from one language to another, fully commit to “mastering” just one.
🎯 Constantly practice what you learn.
Build projects based on them. There is absolutely no better way to learn than doing it yourself, and consistently. It doesn’t matter if it’s big or small, what matters is you do it. Practise makes perfect.
Complete web development roadmap for newbie developers, along with resources.
Thread below 🧵
🎯 LEARN HTML
HTML is the markup language of the web. With it, you can make texts underlined, bold, italicized etc. You can also create navigations, forms and many more web elements.
CSS (Cascading Style Sheets) is used to style/design HTML elements. Without CSS, the whole web page would look boring. CSS can also be used to create simple, yet eye-catching animations.
7 essential technical skills every software developer should have.
Thread below 👇
🔹OOP Language (C++, Java)
This is a programming paradigm that helps you model web entities after real life objects. Here you can specify properties and methods which controls how the elements looks and behaves.
It's also very powerful and allows you to virtually anything.
🔹DATABASES AND SQL
Data are stored in databases and SQL (Structured Query language) is the language used to manage relational "tabular" databases.
It is important you know SQL, along with a database like like Oracle ,
MySQL, Microsoft SQL Server, PostgreSQL