Sunday, June 26, 2022

Build Mid level Gaming PC in 50K Budget - AMD Ryzen 5 5600G

Here I just shared my experience of building a PC with a minimum budget. Here my specifications,Processor : AMD Ryzen 5 5600G with Radeon Graphics (APU)Motherboard : Gigabyte B550RAM : Corsair Vengeance LPX 16GB Hard Disk : 256GB NVM SMPS : Intex 450W SMPSCabinet : Fingers PowerTower C8 Full TowerWhy did I choose APU ?Basically I'm building a PC for both purposes like Productivity...

Monday, December 20, 2021

How to Increase the dedicated VRAM/GPU memory using BIOS (Gigabyte B550)

Steps to Increase the AMD Ryzen and Intel GPU/Video Memory in Gigabyte B550 Motherboard using BIOS ( Windows 10 ) :I'm using AMD Ryzen 5 5600G ( Inbuild GPU) processor. But it suitable for both AMD and Intel Processors. # Start/Restart System, Press F12 to enter into the Select Boot Device....

Saturday, December 11, 2021

Sunday, November 28, 2021

Chrome Extension : Migrating to Manifest V3 from V2

Step for Migrating Manifest Version V2 to V3 #Changing Manifest Version Update the Manifest Version 2 to 3 in manifest.json file.//Manifest V2"manifest_version" : 2 //Manifest V3"manifest_version" : 3 (adsbygoogle = window.adsbygoogle || []).push({}); #Host PermissionsIn MV2, We added all the permissions and hosts in permissions property. But in MV3, we need to provide the host...

Thursday, October 21, 2021

Install/Setup Angular and Ionic CLI

Angular and Ionic have a command line interface to create and run apps. So we need to install both CLI’s. Before installing CLI’s, make sure your computer has installed NodeJS. Install Angular CLI :Run below command from Command prompt,npm install -g @angular/cliNote : -g options mean install globally....

Monday, October 18, 2021

Ionic OCR Plugin : Scan Text from Image using Capacitor with Example

I started this directly from the OCR native plugin installation. I assume you already have Angular and Ionic setup’s in your project. Checkout here to complete the installation setup.Install OCR Native Pluginnpm install cordova-plugin-mobile-ocrnpm install @ionic-native/ocrionic cap syncInstall Camera Native PluginWe need any one plugin to choose the image from the storage to perform a scan. Here...

Saturday, October 9, 2021

Ionic Cordova & Capacitor : How to Display Native Camera Plugin FILE URI path in Image tag

Here steps for display the camera plugin FILE URI image path inside image tag for both Ionic cordova and capacitors.  Cordova :Ionic 3 :Step 1: getPicture(sourceType: PictureSourceType) {    this.camera.getPicture({      quality: 50,      destinationType: this.camera.DestinationType.FILE_URI,      encodingType: this.camera.EncodingType.JPEG, ...