-
Gurukul Wisdom – Privacy Policy
PRIVACY POLICY Gurukul Wisdom Effective Date: 01 March 2026 | Last Updated: 01 March 2026 1. Introduction Welcome to Gurukul Wisdom (“we”, “our”, or “us”). Gurukul Wisdom is a comprehensive exam preparation application designed for students preparing for government competitive examinations, including but not limited to UPSC, OPSC, SSC, Banking, and Railway examinations. This Privacy Policy describes how we collect, use, disclose, and safeguard your information when you use our mobile application Gurukul Wisdom (the “App”). Please read this policy carefully. If you disagree with its terms, please discontinue use of the App. By using the App, you agree to
-
Gurukul Wisdom – Current Affairs Topics
Gurukul Wisdom – Current Affairs Russian President Putin’s Visit To India. 20th G20 Summit 2025. Four New Labour Code In India. YUVA AI for ALL Initiative. 56th IFFI 2025. ICC Womens Cricket World Cup 2025. Electoral Rolls Special Intensive Revision (SIR). GSAT-7R India’s Heaviest Communication Satelite UNFCCC Climate Conference 2025(COP30). 8th Central Pay Comission (CPC). Lucknow City of Gastronomy. 46th ASEAN Summit. Nobel Prize 2025. PM Dhan-Dhanya Krishi Yojna. Tri-Service Military Excercise Trishul. Next Gen GST(GST 2.0). Gen Z Protest in Nepal. Vice Presidental Election of India. 25th SCO Summit 2025. Mission Sudarshan Chakra. PM Vikasit Bharat Rozgar Yojna. NISAR
-
Gurukul Wisdom – OPSC Subject Details
Gurukul Wisdom Subject Details 1. Current Affairs 2. History (✅) 3. Geography (✅) 4. Economy (✅) 5. Science & Technology 6. Political Science & Interstate Relations (✅) 7. Environment, Ecology & Biodiversity 8. Indian & Odisha Heritage and Culture 9. Governance & Social Justice 10. Internal Security & Disaster Management 11. Ethics, Integrity & Aptitude 12. Odiya Languages (✅) 13. English Languages (✅) 14. Essay Writing 15. CSAT (Aptitude Section) (✅)
-
GCP – Cloud Run In Action
GCP – Cloud Run In Action
-
GCP – Google Cloud CLI
GCP – Google Cloud CLI Step-1: Install Google Cloud CLI https://docs.cloud.google.com/sdk/docs/install-sdk Step-2: Initialize And Authorize The gcloud CLI Step-3: Run Core Commands Step-4: Check All Available Projects gcloud projects list Step-5: Switch Projects In ‘gcloud’ gcloud config set project sidekick-people-dev Step-5: Resolving Error Reset Application Default Credentials (important) gcloud auth application-default revoke gcloud auth application-default login Set Project To New Project: gcloud init How To Change The Region & Zone gcloud config set ai/region us-central1 gcloud config set run/region us-central1 gcloud config list Command To Check If You Are Logged In Or Not in ‘gcloud’ gcloud auth list
-
GCP – Stagging Layer Creation
GCP Stagging Layer Creation What Is Staging Area In Data Pipeline:
-
Gurukul Wisdom – Android App Building Commands
Android App Development Commands Clearing Metro Cache: npx react-native start – reset-cache
-
Gurukul Wisdom – List of Govt Exams
List Of Govt Exams In India (1) UNION PUBLIC SERVICE COMMISSION (UPSC) Civil Services Examination (IAS, IPS, IFS, IRS, etc.) Engineering Services Examination (IES/ESE) Indian Forest Service (IFoS) Examination Combined Defence Services (CDS) – I & II National Defence Academy & Naval Academy (NDA/NA) Central Armed Police Forces (CAPF) – (Assistant Commandants) Indian Economic Service (IES) Indian Statistical Service (ISS) Combined Medical Services (CMS) Geoscientist Examination (2) STAFF SELECTION COMMISSION (SSC) SSC CGL (Combined Graduate Level) SSC CHSL (Combined Higher Secondary Level) SSC MTS (Multi-Tasking Staff) SSC CPO (Central Police Organisation) SSC GD (General Duty Constable) SSC JE (Junior Engineer) SSC
-
Gurukul Wisdom – Installing Required Dependencies
Installing Required Dependencies Install The Required Libraries: # Core Navigation npm install @react-navigation/native @react-navigation/bottom-tabs @react-navigation/native-stack npm install @react-navigation/stack # React Navigation Dependencies npm install react-native-screens react-native-safe-area-context # Firebase npm install @react-native-firebase/app @react-native-firebase/auth @react-native-firebase/firestore # State Management npm install @reduxjs/toolkit react-redux redux-persist @react-native-async-storage/async-storage npm install react-native-safe-area-context # UI Components & Icons # Install only the icon families you need npm install @react-native-vector-icons/ionicons npm install @react-native-vector-icons/material-icons npm install @react-native-vector-icons/fontawesome npm install react-native-svg react-native-svg-transformer # Video Player npm install react-native-video # Progress Components npm install react-native-circular-progress # Form & Validation npm install formik yup # Utilities npm install axios moment lodash # Development
-
Gurukul Wisdom – Project Folder Setup In React Native
Project Folder Set Up Using React Native Project Directory Structure: GurukulWisdom/ ├── src/ │ ├── navigation/ │ │ ├── BottomTabNavigator.tsx │ │ └── RootNavigator.tsx │ ├── screens/ │ │ ├── Home/ │ │ │ ├── HomeScreen.tsx │ │ │ ├── components/ │ │ │ │ ├── ExamSelector.tsx │ │ │ │ ├── ContinueWatching.tsx │ │ │ │ ├── TodaysFocus.tsx │ │ │ │ ├── ProgressCard.tsx │ │ │ │ └── WhyThisWorks.tsx │ │ ├── Syllabus/ │ │ │ ├── SyllabusScreen.tsx │ │ │ ├── SubjectDetailScreen.tsx │ │ │ └── components/ │ │ │ ├── SubjectCard.tsx │ │ │ └── TopicItem.tsx
