IitzAnkitCodes01inankitsinghmehradev.hashnode.com·Mar 11, 2025 · 3 min readTeam Collaboration in GithubFor Main account( Initial Configurations ) —- Steps —- 1 - Create a Github Repo 2 - Open VS Code —(Make sure you have Git and Vs code in your system) Enter these commands- echo "# hello" >> README.md git init git add README.md or git init git add ....00
IitzAnkitCodes01inankitsinghmehradev.hashnode.com·Nov 24, 2024 · 2 min readSolve the mySql error in Xampp2024-11-13 13:31:29 0 [Note] Starting MariaDB 10.4.32-MariaDB source revision c4143f909528e3fab0677a28631d10389354c491 as process 25052 2024-11-13 13:31:29 0 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions 2024-11-13 13:31:29 0 ...00
IitzAnkitCodes01inankitsinghmehradev.hashnode.com·May 8, 2024 · 1 min readTailwind-CSS tutorial using PostCSS( It is a most popular framework of css ) [ Make sure you had already installed node.js( runtime-environment) in your system ] Step 1 - Install tailwind css in your system Command - npm install -D tailwindcss postcss autoprefixer npx tailwindcss init...01E
IitzAnkitCodes01inankitsinghmehradev.hashnode.com·May 7, 2024 · 1 min readRedux Toolkit tutorialStep 1 --> Create a store , in which we can store our data . import { configureStore } from '@reduxjs/toolkit' export default configureStore({ reducer: {}, }) Step 2 -->00
IitzAnkitCodes01inankitsinghmehradev.hashnode.com·Feb 21, 2024 · 1 min readCreate App in ReactStep 1 1 - Open terminal and give this command , npx create-react-app (folder-name) or npx create-react-app . . means , it doesn't create a folder , import files in a current folder , if we want to create an another folder , in which we can save the ...00