Workflow: Terminal, Shell, Node.js, VSCode

Workflow: Terminal, Shell, Node.js, VSCode

The Coding Train

9 месяцев назад

72,334 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Reseptivaras
Reseptivaras - 19.11.2023 23:34

I prefer template strings, unfortunately there doesn't seem to be a good automatic way of automatically converting all strings to those

Ответить
jo pad
jo pad - 15.11.2023 13:00

1.7k+...Thanks

Ответить
Shahil Ahmed
Shahil Ahmed - 14.11.2023 15:59

As a Windows user (like myself :D), you can get a Linux-based shell by installing WSL (Windows Subsystem for Linux). It allows you to install Linux distributions such as Ubuntu as an application on your Windows system. Unlike a virtual machine, WSL employs some Windows magic (which I don't fully comprehend) to deliver a remarkably fast and native-like Linux shell experience. The only drawback is that it halves the available RAM (for instance, if your hardware has 16GB of RAM, the Linux shell will only have access to 8GB). VS Code seamlessly integrates with this setup. Excellent video! 💯

Ответить
Sefat Anam
Sefat Anam - 14.11.2023 14:42

i just need 3min to complete

Ответить
Victorious
Victorious - 14.11.2023 03:35

what I'd like to do is make a game like agario with websockets

Ответить
Jonah Koch
Jonah Koch - 11.11.2023 18:13

yes please update the git video😊

Ответить
Michele Centis
Michele Centis - 11.11.2023 16:42

Using volta instead of nvm for a while now.. take a look! so less stressful ^^

Ответить
beardymonger
beardymonger - 09.11.2023 11:47

Great stuff!! 🎉🎉
Please revisit your comment on "ls -all" it has minor misinformation in it, nothing major 🙂 after a single dash come flags, with were in that case "a" for all files and "l" for long. The second l is just a duplicate

Ответить
Matthew Foy
Matthew Foy - 09.11.2023 04:48

I would like for you to make a video going over your git repo and how you set it up!

Ответить
Maria Ramonova
Maria Ramonova - 08.11.2023 22:19

I just love love loooove your videos. What a joy to learn coding with you! But I didn't quite get it at the end, is there already more videos in this series, or will you upload those later?.. Either way, can't wait to see more on the topic of node.

Ответить
Felipe Miranda
Felipe Miranda - 08.11.2023 17:54

It has been a long time since I watched a coding train video. Thank you for the amazing work that you've been doing with this channel. You have changed my mind about how enjoy programming in general.

Ответить
Dezãto
Dezãto - 06.11.2023 01:40

I love your beard!

Ответить
EAX
EAX - 06.11.2023 00:10

Dude acting like Linux doesn't exist .

Ответить
Tarin
Tarin - 05.11.2023 21:05

I stopped being shown your videos :( I had to look you up and found out I missed three

Ответить
TAJIK_REMIX
TAJIK_REMIX - 05.11.2023 13:25

Bro how to create script for aviator Predictor? 🤔

Ответить
Compineering
Compineering - 05.11.2023 04:07

Great video!

Ответить
Luis M Canaval S
Luis M Canaval S - 05.11.2023 03:04

Vscode, like you vs the code 👨‍💻

Ответить
Ruan Weiers Britzke
Ruan Weiers Britzke - 05.11.2023 02:31

ZSH is the best

Ответить
JsonKody
JsonKody - 04.11.2023 22:30

btw tabs or spaces? ( ͡° ͜ʖ ͡°)

Ответить
Fabio Perez
Fabio Perez - 04.11.2023 15:53

what about “warp” terminal. its pretty cool as terminal. has a lot of features out obviously the box. you should check it out

Ответить
Oceano
Oceano - 04.11.2023 15:42

amazing !

Ответить
shaijyy
shaijyy - 04.11.2023 11:18

Please CONTINUE with Apple ][ dev vidssss

Ответить
Peyman Majidi Moein
Peyman Majidi Moein - 04.11.2023 10:58

cheers 📣📣🙌🏻🙌🏻😄😄🙋🏻‍♂🙋🏻‍♂

Ответить
Luxcium
Luxcium - 04.11.2023 09:35

I am on Linux so yeah 😅

Ответить
lucky_luke
lucky_luke - 03.11.2023 19:28

My setup for the past year has been powershell as my bash and nvim inside alacritty. Can recommend, but needs experience to be useful.

Ответить
乾淨核能
乾淨核能 - 03.11.2023 13:17

thank you!

Ответить
Anony Mousse
Anony Mousse - 03.11.2023 05:42

I'm on Slackware and I use bash and vim. I mostly watch you for entertainment and inspiration reasons, although I've learned some things from you as well. As far as using `ls` I personally prefer -A for showing hidden files so I don't see `.` and `..` in the list and I also make an alias ll='ls -l' because I often need a full listing of the metadata for files. You should make a video showing how to setup vim, maybe use it yourself a bit. If you enable mouse support and tabs it's not too dissimilar from a GUI editor. I think if you learn to navigate with line numbers and relative line counts using gg and jk you'll enjoy it more.

Ответить
Geoff Wagner
Geoff Wagner - 03.11.2023 00:47

processing-java is probably important to add to the setup, and setting the windows environmental variable i think i may have had to look somewhere else to find.maybe got edited out , maybe i'm remembering wrong. i do remember this i important tho, all i was thinking about 3/4 the way into this, your "command line processing"

Ответить
slim
slim - 03.11.2023 00:02

I missed you

Ответить
MogMovies
MogMovies - 02.11.2023 20:17

Earlier this year I started work on a discord bot themed on server RP’s with various effects on the user’s messages. I’m excited to see what more you can teach.

Ответить
Nguyen Tr
Nguyen Tr - 02.11.2023 20:05

Some other VsCode settings that I found useful in the JS workflow:

{
"editor.autoClosingBrackets": "beforeWhitespace",
"editor.autoClosingQuotes": "never",
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.guides.bracketPairs": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.stickyScroll.enabled": true,
"workbench.colorTheme": "Dracula",
"workbench.panel.defaultLocation": "left",
"workbench.sideBar.location": "right"
}

Ответить
Bevan's goin' places
Bevan's goin' places - 02.11.2023 19:11

Just came ti say I stopped watching your videos because I couldn't take the pain of you using inappropriate one character variable names anymore, I just can't take it!! STOP TEACHING BEGINNERS BAD HABITS!

Ответить
MZakyR
MZakyR - 02.11.2023 16:07

Who doesn't code outside p5 js

Ответить
zul hilmi
zul hilmi - 02.11.2023 15:59

heroes comback..
choo choo🚂😭🎉

Ответить
seriouslyWeird
seriouslyWeird - 02.11.2023 12:09

why node js whyyyyyyyyyyyyyyyy cries in 6798239847328 dependencies

Ответить
Moe5Tavern
Moe5Tavern - 02.11.2023 11:05

Where are the timecodes that you meantioned? 😃 and please update the Git video!

Ответить
Delta Force
Delta Force - 02.11.2023 10:41

i have learn too much the A* algorithm was very fascinated to do it !!

Ответить
Mel
Mel - 02.11.2023 10:12

I would like an up to date Git vid :D

PLEEEEEASE

Ответить
Ned Alturas
Ned Alturas - 02.11.2023 10:09

I love this series.

Ответить
DoYouWatchAnime
DoYouWatchAnime - 02.11.2023 09:41

git git git git git:)

Ответить
Cgnico
Cgnico - 02.11.2023 09:30

Thought it couldn't be that bad

Ответить
geringasG
geringasG - 02.11.2023 08:46

Love what you’re doing, love how you’re doing it. I’m excited to code along with this project!

Ответить
Juan Macias
Juan Macias - 02.11.2023 08:18

A really helpful extension is also "Code Runner" it'll run just about any code for you! I've used it for C, C++, Dart, JS (I have to use Bun for TS), Python!

Ответить
Juan Macias
Juan Macias - 02.11.2023 08:06

Git refresh <3

Ответить
pfever
pfever - 02.11.2023 06:22

This is just what I needed! Thank you!

Ответить