• AWS – AWS Global Infrastructure – Regions, Availability Zones, Edge Locations

    AWS – AWS Global Infrastructure – Regions, Availability Zones, Edge Locations

    AWS Global Infrastructure Table Of Contents: What Is AWS Global Infrastructure? What Is AWS Region? What Is AWS Availability Zone ? Edge Locations & AWS Global Network. AWS Wavelength (For 5G Applications) (1) What Is AWS Global Infrastructure? AWS Global Infrastructure refers to the physical and network components that power Amazon Web Services (AWS). It is designed to provide high availability, scalability, security, and low-latency performance for businesses worldwide. (2) What Is AWS Region ? An AWS Region is a geographically isolated area where AWS hosts cloud infrastructure. Each region consists of multiple data centers (called Availability Zones) to provide

    Read More

  • AWS – AWS Learning Path.

    AWS – AWS Learning Path.

    AWS Learning Syllabus Table Of Contents: AWS Foundation AWS Global Infrastructure – Regions, Availability Zones, Edge Locations AWS Identity & Access Management (IAM) – Roles, Policies, Permissions Amazon EC2 – Virtual Machines, Auto Scaling, Load Balancing Amazon S3 – Data Storage, Security, Versioning, Lifecycle Policies AWS Lambda – Serverless Computing AWS CloudWatch & CloudTrail – Monitoring and Logging AWS Cost Management – Budgets, Pricing, Cost Optimization Data Storage & Databases Amazon S3 – Data lakes, Storage Classes, Permissions AWS Glue – ETL (Extract, Transform, Load) for data pipelines Amazon RDS – SQL databases (PostgreSQL, MySQL) Amazon DynamoDB – NoSQL database

    Read More

  • How The Dense LSTM Layers Handles Input ?

    How The Dense LSTM Layers Handles Input ? Table Of Contents: How Are Words Passed to Neurons in an LSTM(128) Layer? Step 1: Input from the Embedding Layer Step 2: Passing Each Word to the LSTM Layer Step 3: What Happens Inside Each LSTM Neuron? Step 4: Understanding the Output of LSTM(128) Final Conclusion Key Takeaway (1) How Are Words Passed to Neurons in an LSTM(128) Layer? (2) How Individual LSTM Neurons Connected To Each Other. (3) What Is The Output Of LSTM(128) Number Of Neurons. (4) Step 1: Input from the Embedding Layer (5) Step 2: Passing Each Word

    Read More

  • How To Check If The Dependency Is Installed Or Not?

    How To Check If The Dependency Is Installed Or Not? Table Of Contents: Add The Dependancy First. (1) Add Dependancy First Add dependency in path: androidappbuild.gradle dependencies { // The version of react-native is set by the React Native Gradle Plugin implementation("com.facebook.react:react-android") if (hermesEnabled.toBoolean()) { implementation("com.facebook.react:hermes-android") } else { implementation jscFlavor } // Add Firebase BoM (Bill of Materials) implementation platform('com.google.firebase:firebase-bom:33.9.0') // Add Firebase Analytics (or other Firebase services) implementation 'com.google.firebase:firebase-analytics' // If using Firebase Authentication (for OTP) implementation 'com.google.firebase:firebase-auth' // For Trucaller Authentication implementation "com.truecaller.android.sdk:truecaller-sdk:3.0.0" //implementation files('libs/truecaller-sdk-3.0.0.aar') } (2) Command To Check The Dependency Is Installed Or Not. cd

    Read More

  • Mobile Number Authentication Using Truecaller.

    Mobile Number Authentication Using Truecaller. Table Of Contents: Create A Truecaller Developer Account (1) Create A Truecaller Developer Account https://sdk-console-noneu.truecaller.com/sign-up (2) Create A New Project (3) Add Credentials You can find your package name from below location. Form your Android project. app/build.gradle You need to generate Debug signing certificate SHA-1: cd android ./gradlew signingReport Once you input your app details and create the app, you will be able to see a unique “ClientID” for your app which you need to include in your project to authorise all verification requests. (4) Application Setup Step-1: Ensure Minimum SDK Version (Mandatory if API

    Read More

  • How To Run App In Emulator & Physical Device At A Time?

    How To Run App In Emulator & Physical Device At A Time? Table Of Contents: Check Connected Devices. (1) Check Connected Devices adb devices (2) Run this command to list available emulators: emulator -list-avds (3) Start the emulator using the emulator name: emulator -avd <your_emulator_name>

    Read More

  • How To Install The Application On Physical Device?

    How To Install The Application On Physical Device? Table Of Contents: Build A Debug APK. Check For The Device Id. Install The App On Specific Device. Check if the App is Installed. Add Changes In AndroidManifest.xml File. (1) Build A Debug APK cd android ./gradlew assembleDebug The APK will be generated at: android/app/build/outputs/apk/debug/app-debug.apk (2) Check For The Device Id adb devices (3) Install The App On Specific Device. Now, install the APK on a specific device by using its device ID: adb -s P122C3000278 install androidappbuildoutputsapkdebugapp-debug.apk (4) Check if the App is Installed. adb -s P122C3000278 shell pm list packages

    Read More

  • How To Access Contacts In React Native?

    How To Access Contacts In React Native? Table Of Contents: Install Required Libraries. (1) Install Required Libraries Install the react-native-contacts library to access the contact details. npm install [email protected] (2) Add Required Permission For Android device add permission in AndroidManifest.xml File. androidappsrcmainAndroidManifest.xml <uses-permission android:name="android.permission.READ_CONTACTS" /> <uses-permission android:name="android.permission.WRITE_CONTACTS" /> For IOS: Add these keys to Info.plist: <key>NSContactsUsageDescription</key> <string>Allow access to your contacts to display them in the app.</string> (3) Implement This In Code import React, { useEffect, useState } from "react"; import { View, Text, FlatList, TouchableOpacity, StyleSheet, SafeAreaView, TextInput, PermissionsAndroid, Platform, Alert, NativeModules } from "react-native"; import Icon from "react-native-vector-icons/FontAwesome";

    Read More

  • How To Setup WebRTC For Audio & Video Calling?

    How To Setup WebRTC For Audio & Video Calling ? Table Of Contents: Install Required Libraries. Referred Websites https://webrtc.org/getting-started/overview (1) Install Required Libraries npm install react-native-webrtc – save (2) Add Required Permission On – AndroidManifest.xml Add these below permissions in in android/app/src/main/AndroidManifest.xml: <uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera.autofocus" /> <uses-feature android:name="android.hardware.audio.output" /> <uses-feature android:name="android.hardware.microphone" /> <uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.RECORD_AUDIO" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <uses-permission android:name="android.permission.INTERNET" /> <! – Bluetooth permissions for headsets – > <uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" /> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" /> <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" /> <! – Screen-sharing on Android 14+ – > <uses-permission

    Read More