1. You don't need preetier, as VS Code comes with many formatters built in, but if you prefer preetier offers more customizability and its ruleset can be easily shared via config files 2. Live Preview by Microsoft is generally better than Live Server, even if only by smaller RAM usage 3. VS Code has a feature like Auto Rename Tag you just have to find correct emmet function from command pallette 4. All Code Runner does is adds one singular icon... everything else is built in functions that you can access by clicking F5
You do not need 'auto rename tag' because *Emmet* has a whole bunch of super useful built-in commands for adding - removing - updating - navigating between tags! Ctrl + Shift + P -> type Emmet: 'update tag' if for renaming, 'remove tag' is obvious, 'wrap with abbreviation' is for surrounding a tag or text with another one and 'go to matching pair' is to jump between opening and closing tags.
Thank you Adam. I'll add some of those VSCode extensions. It's totally off topic, but how could I add a gif on canvas? I tried to add using ctx, but it doesn't move I expected. Only if you have time, could you please give me an idea? Thank you.
You’re welcome! If you are referring to drawing an animated gif it seems that it is not possible. You can animate images with a sprite sheet or multiple images as I have in my past tutorials. Here is a stackoverflow article that might help stackoverflow.com/questions/3062229/animated-gif-in-html5-canvas
@@CodingWithAdam I tried to use an animated gif. It's good to know that's not possible. I think I need to start using a sprite sheet to make an animation. I mentioned before that my first tutorial was yours and the codd I wrote actually worked. That was 2021. Now 2023 and I still have the same passion as 2021. That time I didn't understand classes or even objects. I'm glad that I've kept going. Thank you.
im a 15 years old and i learned css and html and now im learning javascript / and i have a bad laptop with 32bit and i I suffered to download vscode and the extensions doesnt work but im proud Edit: im now finished my javascript and i have a computer. what should i learn next
CÓDIGO NÃO RODA, SOU INICIANTE, E MEU VSCODDE NÃO RODA NEM UM SIMPLES ('HELLO WORLD'), ESTOU APRENDENDO PYTHON, MAS JA TENTEI OUTRAS LINGUAGENS DIGITAR A MESMA INHA DE CÓDIGO EM CADA LINGUAGEM, E ACONTECE A MESMA COISA. NÃO ACHO SOLUÇÕES NA INTERNET ALGUÉM AJUDA PRO FAVOR...ALGUEM AJUDA POR FAVOR NÃO SEI MAIS OQ FAZER.
Sorry to hear that. Here is an excellent tutorial by Mosh. He is an excellent teacher and you will learn a lot. This is a free course he has put together. Let me know how it goes and keep on coding you will get it. Feel free to write back and let me know how it goes. ua-cam.com/video/_uQrJ0TkZlc/v-deo.htmlsi=LCkRFPJOPidE2S1a
Se estiver tentando executar o código pelo terminal e não estiver aparecendo erro nenhum, pode ser que o arquivo do código do programa não tenha sido salvo, mas se estiver recebendo uma resposta de que o comando não é reconhecido ou algo do tipo, talvez o problema seja que o interpretador ou compilador da linguagem não tenha sido instalado ou não esteja configurado da forma correta nas variáveis de ambiente do sistema. No caso do python, você precisa do interpretador do python para executar os programas. O interpretador é um programa que traduz o seu código em python para um código em linguagem de máquina (0's e 1's). Quando você digita o nome de um programa no terminal (pode ser pelo CMD no caso do Windows ou pelo terminal do VS Code), é possível passar parâmetros, no caso do interpretador (que é um programa) você pode passar o nome do arquivo que você quer executar, por exemplo: python nomedoarquivo. py (sem espaço entre nomedoarquivo. e py) Nesse exemplo, python é o nome do executável do interpretador (python. exe, sem espaço) e ele precisa estar configurado nas variáveis de ambiente do sistema. Para configurar as variáveis de sistemas, é preciso inserir, na variável PATH, o caminho da pasta onde está o executável do seu interpretador. Se o nome do executável python. exe fosse alterado para outronome. exe (sem espaço), então seu comando para executar o código do arquivo nomedoarquivo. py no terminal seria: outronome. exe nomedoarquivo. py Lembrando que para isso funcionar você precisa estar com o terminal na pasta onde o seu arquivo python que você quer executar está. Para fazer isso, você pode usar o comando cd para navegar entre pastas. Também vale lembrar que é necessário que o arquivo tenha sido salvo antes de tentar executá-lo.
Of course, I am 23 years old and have been programming for about 14-15 months already. I know people who are starting at 29-30 years old; everyone progresses at their own pace, so no stress 😎
Of course 20 is not to late. I have known people that have change careers at the age of 40 or older to become software developers. It’s never too late to follow your passion! 😃 As the other comment mentioned everyone progresses at different speeds. Don’t stress if someone is further ahead. Take your time to learn and practice coding!
I like the idea of sharing productive tools and extensions BUT why blowing up a light-weight purpose text editor? VS-Code is not supposed to be a IDE. With plugins it is not performant editor and not as smart as IDE. Change my mind.
I have no f*cking clue of who tf thought that creating this PETs extension on VSCode was a good ideia. but god bless this person and his family.
lol I agree!!!
not the extension we deserve, but the one we need right now
@@SirMrMystery Exactly
Thanks for the tips. You can rename the html tags just pressing F2 on windows.
You’re welcome! Thanks for the tip!
finally, someone not shouting at my face and explaining beautifully.
Thank you! 😁
VSCode Pets is def a must have.
It really is!!! 😁
Thanks for sharing this great content...
I found the "VSCode Essentials" Extension necessary as a web developer.
You’re welcome! Thank you!
Quality content over here, good work man keep it up, earned a new sub🤝
Thank you!!! Im really glad you enjoyed the video!
haha! I didn't see the VS Code pets coming. Left me in joyful tears 🤣.
Awesome, I’m glad you enjoyed that! 😁
I like All VSCode Extensions Thanks 😇😅
You’re welcome!
You’re welcome!
1. You don't need preetier, as VS Code comes with many formatters built in, but if you prefer preetier offers more customizability and its ruleset can be easily shared via config files
2. Live Preview by Microsoft is generally better than Live Server, even if only by smaller RAM usage
3. VS Code has a feature like Auto Rename Tag you just have to find correct emmet function from command pallette
4. All Code Runner does is adds one singular icon... everything else is built in functions that you can access by clicking F5
I use Code Runner to run code on CMD. It is very useful when I don't want to use the inbuilt terminal.
Great video 👍
Thank you 😊
Thank you! 😁
This was surprisingly really useful
Thanks!
Thank you so much was super helpful!
You’re welcome! Glad the video was helpful!
Thanks Adam! Very useful!
You’re welcome!
Thank for the interesting video.
You’re welcome!!!
Great Video .. Keep going
Thank you! 😁
You do not need 'auto rename tag' because *Emmet* has a whole bunch of super useful built-in commands for adding - removing - updating - navigating between tags! Ctrl + Shift + P -> type Emmet: 'update tag' if for renaming, 'remove tag' is obvious, 'wrap with abbreviation' is for surrounding a tag or text with another one and 'go to matching pair' is to jump between opening and closing tags.
or enable "linked editing" in settings.
Thank you very much
You’re welcome!
Good, did you try to use the extension Simpler Flutter Tasks
Thanks I have not I will take a look at that.
и мне же это и вправду очень нравится. я же рада видеть этот лучший контент. реально норм же тут тема
Thank you! I’m glad you enjoyed the video! 😁
Thank you Adam. I'll add some of those VSCode extensions. It's totally off topic, but how could I add a gif on canvas? I tried to add using ctx, but it doesn't move I expected. Only if you have time, could you please give me an idea? Thank you.
You’re welcome!
If you are referring to drawing an animated gif it seems that it is not possible. You can animate images with a sprite sheet or multiple images as I have in my past tutorials. Here is a stackoverflow article that might help stackoverflow.com/questions/3062229/animated-gif-in-html5-canvas
@@CodingWithAdam I tried to use an animated gif. It's good to know that's not possible. I think I need to start using a sprite sheet to make an animation. I mentioned before that my first tutorial was yours and the codd I wrote actually worked. That was 2021. Now 2023 and I still have the same passion as 2021. That time I didn't understand classes or even objects. I'm glad that I've kept going. Thank you.
which color theme you are using in this video ?
Thanks very nice
Thank you! You’re welcome!
Thank you :)
You’re welcome!
im a 15 years old and i learned css and html and now im learning javascript / and i have a bad laptop with 32bit and i I suffered to download vscode and the extensions doesnt work but im proud
Edit: im now finished my javascript and i have a computer. what should i learn next
That’s great keep on learning! Don’t let your bad laptop stop you from learning.
No need to learn anything, AI will do for you 😀😀
vscode pets is the best one
Totally agree! 😀
how does his code looks so colorful?
Helpful !
Glad the video was helpful!
Try bootstrap icon,
It will awesome man!
Thanks for the suggestion!
appreciate that
You're welcome!
Where do we get an extension to dock third party software such as putty for example?
The last one
It’s the best one! 😁
What name of extension that say done wiht the second
I like Live Preview
I agree it’s an awesome extension!!!
how can get this ( M, u , 1 or colourful circle) after my file names under left side menu of explorer/editor
I am 23 started learning JAVA 😅
That’s great!!!
how can i use prettier o downloaded then what, i cant find how i can use this
Checkout my video on how to install and configure prettier ua-cam.com/video/__eiQumLOEo/v-deo.htmlsi=DRwA3ffixYQR7MS8
Spell corrector can't correct all the spells at once
Добрый вечер. подскажите, пожалуйста, какая тема Vscode используется в этом видео?
cool video)
Thank you!
You forgot the "Incredibly in Your Face" extension ;)
Great suggestion!
Is it just me or git lens is very invasive after the demo period....?
CÓDIGO NÃO RODA, SOU INICIANTE, E MEU VSCODDE NÃO RODA NEM UM SIMPLES ('HELLO WORLD'), ESTOU APRENDENDO PYTHON, MAS JA TENTEI OUTRAS LINGUAGENS DIGITAR A MESMA INHA DE CÓDIGO EM CADA LINGUAGEM, E ACONTECE A MESMA COISA. NÃO ACHO SOLUÇÕES NA INTERNET ALGUÉM AJUDA PRO FAVOR...ALGUEM AJUDA POR FAVOR NÃO SEI MAIS OQ FAZER.
Sorry to hear that. Here is an excellent tutorial by Mosh. He is an excellent teacher and you will learn a lot. This is a free course he has put together. Let me know how it goes and keep on coding you will get it. Feel free to write back and let me know how it goes.
ua-cam.com/video/_uQrJ0TkZlc/v-deo.htmlsi=LCkRFPJOPidE2S1a
Se estiver tentando executar o código pelo terminal e não estiver aparecendo erro nenhum, pode ser que o arquivo do código do programa não tenha sido salvo, mas se estiver recebendo uma resposta de que o comando não é reconhecido ou algo do tipo, talvez o problema seja que o interpretador ou compilador da linguagem não tenha sido instalado ou não esteja configurado da forma correta nas variáveis de ambiente do sistema. No caso do python, você precisa do interpretador do python para executar os programas. O interpretador é um programa que traduz o seu código em python para um código em linguagem de máquina (0's e 1's). Quando você digita o nome de um programa no terminal (pode ser pelo CMD no caso do Windows ou pelo terminal do VS Code), é possível passar parâmetros, no caso do interpretador (que é um programa) você pode passar o nome do arquivo que você quer executar, por exemplo:
python nomedoarquivo. py (sem espaço entre nomedoarquivo. e py)
Nesse exemplo, python é o nome do executável do interpretador (python. exe, sem espaço) e ele precisa estar configurado nas variáveis de ambiente do sistema. Para configurar as variáveis de sistemas, é preciso inserir, na variável PATH, o caminho da pasta onde está o executável do seu interpretador. Se o nome do executável python. exe fosse alterado para outronome. exe (sem espaço), então seu comando para executar o código do arquivo nomedoarquivo. py no terminal seria:
outronome. exe nomedoarquivo. py
Lembrando que para isso funcionar você precisa estar com o terminal na pasta onde o seu arquivo python que você quer executar está. Para fazer isso, você pode usar o comando cd para navegar entre pastas. Também vale lembrar que é necessário que o arquivo tenha sido salvo antes de tentar executá-lo.
Does anybody has annoying blue border line in each corners?
You missed copy mate extension
auto rename is not built into vscode. set linked editing preference to true
PlatformIO gents, if you're doing microcontroller work.
Thanks for the suggestion! 😀
You shouldn't be doing UA-cam you should be doing sports commentary.😂
Thank you! If software development does not work out I have a fallback career😁
vscode-pets ? what the hell man😂
😂🤣
Lol I just discovered VS Code Pokemon lol.
🤣
Pets are just crazy.... (★‿★)
It’s a fun extension 🐶🐕🐓😁
Can a 20 year old still learn to be a programmer?
Of course, I am 23 years old and have been programming for about 14-15 months already. I know people who are starting at 29-30 years old; everyone progresses at their own pace, so no stress 😎
Of course 20 is not to late. I have known people that have change careers at the age of 40 or older to become software developers. It’s never too late to follow your passion! 😃
As the other comment mentioned everyone progresses at different speeds. Don’t stress if someone is further ahead. Take your time to learn and practice coding!
Dude my teacher got into programming at the age of 31. Now he has a decent remote job.
20 is still a young age to start learning programming 😂
heck yeah bro
i'm the 6700.th like
That’s awesome! Thank you for the like! 😁
It's not too late to learn to be a programmer from the age of 20,
29, time to start
I like the idea of sharing productive tools and extensions BUT why blowing up a light-weight purpose text editor? VS-Code is not supposed to be a IDE. With plugins it is not performant editor and not as smart as IDE. Change my mind.