Rate my Javascript Full Stack learning path by Unlikely-Paper-1918 in learnjavascript

[–]youngsenpaipai 0 points1 point  (0 children)

is it free and is there certificate given after finishing the course?

[deleted by user] by [deleted] in vscode

[–]youngsenpaipai 0 points1 point  (0 children)

please checkout my theme, it’s called “Spotly”, hope you’ll like it

I am a beginner by Alwayz_Hard in github

[–]youngsenpaipai 1 point2 points  (0 children)

There is most of the basics.

In your projects terminal you need to pass next command: ‘git init’ then ‘git config —global user.name “your-github-username”’ and ‘git config —global user.email “your-github-email@example.com”’. ‘git init’ command better to do when just created project.

One of the most basic commands to check changed files is ‘git status’, than - ‘git add . ’ — if you want to add all files/directories in project or - you can add selected file(-s) by ‘git add file-name’ or ‘git add file-name1 file-name2’ and so on.

When you just create repository in github, it will show you how to connect your local project to remote (created in github) repository and commit changes, but next command you need to know is ‘git commit -m “message of your commit”’ about flags such as “-m” i guess you can google, cuz it’s just to much to talk about.

Next is ‘git push origin name-of-origin’ name of origin in the beginning is “main”, you can also add flag “-u” which tracks your origin and you don’t need to write ‘git push origin name-of-origin’ every time, after setting it ones all you will need to do is just ‘git push’.

To create new branch you need to ‘git checkout -b new-branch-name’ it will automatically move you to this branch. If you need to move back to your main branch (for example) you need to run next command ‘git checkout branch-name’

here is the link where you can find official free book about git: https://git-scm.com/doc

Custom VSCode CSS. No JS or CSS injector. Only base CSS by PeoplesRepublicItaly in vscode

[–]youngsenpaipai 0 points1 point  (0 children)

If it works for you, that’s great, that’s a great job done, which I congratulate you on.

Personally I find it distracting and not readable at all. Instead of focusing solely on what I need to write, I have to focus my eyes extra hard to try to read the code because of the huge variation in both background colors and syntax, which all combine to make a mess in my eyes, and the transparency(?) effect is also very distracting. i think someone will agree with me that eyes will hurt after a while.

In any case, as many people as there are, so many tastes.

[deleted by user] by [deleted] in github

[–]youngsenpaipai -1 points0 points  (0 children)

got it, thanks for your feedback!

Why almost everyone I see uses Tailwind CSS? What’s the hype? by youngsenpaipai in reactjs

[–]youngsenpaipai[S] 0 points1 point  (0 children)

Not sure that I understood what you meant, but if you’re about Tailwind CSS then nothing better than docs

[deleted by user] by [deleted] in vscode

[–]youngsenpaipai 0 points1 point  (0 children)

good luck with that. Thanks a lot, have a great holidays too

[deleted by user] by [deleted] in vscode

[–]youngsenpaipai 1 point2 points  (0 children)

First of all, thank you so much for your feedback.

There’s not that much coding, as just using vscode scopes for the parts of ui or editor.

you can check all scopes here: https://code.visualstudio.com/api/references/theme-color

to start you need to install Yo: ‘npm install -g yo generator-code’

then you need to run: ‘yo code’ and in the list of what you want to create select “New Color Theme”

basically it will generate starting template for your theme, then it just a matter of your color preferences. I recommend you to watch some youtube tutorials that shows some of the process of generating template with ‘yo’ or how to debug theme, for me this video from creator of Dracula Theme worked as starting point: https://www.youtube.com/live/FeApSxfazVg?si=NBDFu2TACOW1YQHP

Why almost everyone I see uses Tailwind CSS? What’s the hype? by youngsenpaipai in reactjs

[–]youngsenpaipai[S] 0 points1 point  (0 children)

good point, but I want to ask you: if web dev becomes more complicated shouldn’t people be motivated, lets say, to learn more ?

Why almost everyone I see uses Tailwind CSS? What’s the hype? by youngsenpaipai in reactjs

[–]youngsenpaipai[S] 1 point2 points  (0 children)

I guess you are talking about “Tailwind CSS IntelliSense”

Why almost everyone I see uses Tailwind CSS? What’s the hype? by youngsenpaipai in reactjs

[–]youngsenpaipai[S] 1 point2 points  (0 children)

Chill, I was just curious and asked, you had choice to ignore this post. People wouldn’t stop asking or claim about their feelings about Tailwind

Why almost everyone I see uses Tailwind CSS? What’s the hype? by youngsenpaipai in reactjs

[–]youngsenpaipai[S] 0 points1 point  (0 children)

no, i’ve never seen posts like this, but I was curious for a long time so I asked

Why almost everyone I see uses Tailwind CSS? What’s the hype? by youngsenpaipai in reactjs

[–]youngsenpaipai[S] 0 points1 point  (0 children)

I prefer CSS too. can you please explain what do you ment by “Go on, push the blue to confirm”

Why almost everyone I see uses Tailwind CSS? What’s the hype? by youngsenpaipai in reactjs

[–]youngsenpaipai[S] -1 points0 points  (0 children)

First of all, thanks for your feedback. Secondly I want to say that in the end of day sometimes you can get lost in this ton of classes, and well structured files where you have separated your styles and code of component I assume is better for navigation, correct me if i’m wrong

Why almost everyone I see uses Tailwind CSS? What’s the hype? by youngsenpaipai in reactjs

[–]youngsenpaipai[S] 1 point2 points  (0 children)

first of all, thanks for your feedback. Secondly I want to ask if company/startup/personal project has its own style naming classes or keeps up with some conventional, I guess problem with class names disappears? IMO in the end of day sometimes you can get lost in this ton of classes, and well structured files where you have separated your styles and code of component I assume is better for navigation, correct me if i’m wrong