U

UNj

Learning Resources

JS https://javascript.info React https://reactjs.dev/learn PHP https://www.php.net/manual/en Redux https://redux.js.org/introduction/getting-started TS https://www.typescripttutorial.net https://www.typescriptlang.org SASS https://sass-lang.com/documentation GIT https://learngitbranching.js.org/?locale=en https://git-scm.com/book/en/v2 Python https://docs.python.org Rust https://doc.rust-lang.org/stable/rust-by-example MySQL https://mystery.knightlab.com https://sql...
Read post

Commands

PNPM pnpm up --latest Winget winget list winget upgrade winget upgrade --all https://docs.microsoft.com/en-us/windows/package-manager/winget/ Angular npx -p @angular/cli ng new <project-name> --package-manager=pnpm npm run ng g c <component-name> npm run ng g s <service-name> https://angular.io/cli Tauri npm create tauri-app npm run tauri dev npm run tauri build https://tauri.app/v1/guides/getting-started/setup/vite https://tauri.app/v1/guides/development/devel...
Read post

Git Commit Guidelines

fix: A bug fix feat: The new feature you're adding to a particular application build: Build related changes (eg: npm related/ adding external dependencies) chore: Regular code maintenance. A code change that external user won't see (eg: change to .gitignore file or .prettierrc file) docs: Everything related to documentation style: Feature and updates related to styling refactor: Refactoring a specific section of the codebase. A code that neither fix bug nor adds a feature. (eg: You can use this...
Read post

Next Set Up

npx degit https://github.com/JonasCSilva/next-template.git <project-name> ...
Read post