anumau011.hashnode.devIntroduction Of Gen AIGPT (Generative Pre-trained Transformer) is a specific architecture that utilizes next-token prediction as its training objective. Workign of transformer step 1: Tokenization [ encoding ] llm unders4d ago·3 min read
anumau011.hashnode.devUnderstanding Generative AIPROMPT ENGINEERING A prompt is just the initial tokens. For example, if you give an LLM the initial tokens [1, 2, 3], it will predict the output for you. The next tokens would be [1, 2, 3, 4, 5, 6]. A prompt written by an LLM is not very good because...Feb 16·3 min read
anumau011.hashnode.devRecommended Folder Structure React Native Expoproject-root/ │ ├── app/ # If you're using Expo Router (v2+) │ ├── _layout.tsx # Main layout (like stack navigation) │ ├── index.tsx # Home screen (default route) │ ├── auth/ ...Oct 15, 2025·4 min read
anumau011.hashnode.devGit SetupINSTALATION : GO TO https://git-scm.com/ DOWNLOAD AS PER YOUR OS GOTO FOLDER WHICH YOU WANT TO UPLOAD OPEN TERMINAL/CMD IN THAT FOLDER. BASIC COMMANDS YOU FOLLOW Set Name and Email Globally (Applies to all your Git projects) git config --global user....Aug 19, 2025·1 min read
anumau011.hashnode.devPrisma Orm DatatypeThere are two part of PRISMA ORM PRISMA CLI “Prisma CLI Generate a Prisma Client for database access” PRISMA CLINET “USE TO ACCESS THE DATABASE READ AND WRITE" INSTALLATION npm install prisma npm install @prisma/client npx prisma init --datasou...Aug 19, 2025·1 min read