OmniStack My Dev Journey is a long-term repository documenting my complete learning path across multiple programming languages, frameworks, and tech stacks. From low-level fundamentals to full-stack development, this repo contains notes, code snippets, projects, experiments, and concept breakdowns for every technology I learn.
Additional stacks will be added as I keep growing. This repository serves as my central learning hub, tracking my progress as I explore different technologies and become a well-rounded developer.
git clone https://github.com/Aryan27-max/omnistack-my-dev-journey.git
cd omnistack-my-dev-journey
winget install -e --id MSYS2.MSYS2
pacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-g++
gcc --version
g++ --version
winget install -e --id Python.Python.3
python --version
pip --version
winget install -e --id Oracle.JDK.21
java -version
javac -version
winget install -e --id OpenJS.NodeJS.LTS
node -v
npm -v
npm install -g typescript
tsc -v
npm create vite@latest my-react-app --template react
cd my-react-app
npm install
npm run dev
npx create-next-app@latest my-next-app
cd my-next-app
npm install
npm run dev
mkdir express-app
cd express-app
npm init -y
npm install express nodemon
nodemon index.js