Tuesday, December 1, 2020

C# : Occured when oauth 2.0 token is when no sent Correctly.

 {"error":"unauthorized","error_description":"Full authentication is required to access this resource"}


C# : Occured when oauth 2.0 token is when no sent Correctly.

RestSharp

Wednesday, July 29, 2020

Fix to HP Windows 10 Shutdown, Sleep & Hibernate Problem Easily for June / July 2020 Windows 10 update

Fix to HP Windows 10 Shutdown, Sleep & Hibernate Problem Easily for June / July 2020 Windows 10 update

After shutdown event, power lights, as well as CPU fan, remains ON.
After sleep event, power lights, as well as CPU fan, remains ON.
After hibernate event, power lights, as well as CPU fan, remains ON.

hp windows 10 sleep not working.
hp windows 10 wake up after sleep not working
hp Computer Won't Wake Up From Sleep Windows 10

1. Go to Device Manager.
2. Expand 'System devices.'
3. Right-click on 'Intel Management Engine Interface' and go to properties.
4. Now select 'Power Management Tab'.
5. Un-Tick 'Allow the computer to turn off this device to save power'.
6. Save the changes.

HPn255tu, HP n255 series

windows 10 sleep not waking up

Friday, June 19, 2020

Download lame_enc.dll LAME for Audacity MP3



For saving MP3 files in Audacity LAME dll is needed.

Search Results

Web results

lame_enc.dll download  link for windows
Audacity on Windows
Installing LAME on Windows download it from below website

Friday, June 5, 2020

How to create System partition in Android? Which is accidentally deleted when tried to increase size.



Tools needed can be downloaded from forum.xda-developers Section 3.

File Type: zipparted_gdisk_fdisk_mkfs.ext4-AARCH64.zip - [Click for QR Code] (1.95 MB, 3326 views)
File Type: zipparted_gdisk_fdisk_mkfs.ext4-ARM.zip - [Click for QR Code] (1.56 MB, 4212 views)

In this case the phone is Mi Redmi 2 Prime (wt88047) and file used is parted_gdisk_fdisk_mkfs.ext4-ARM.zip

Unzip and push files to phone.

adb push PATH/TO/PARTED /

adb only available when phone is ON. Here no android OS in phone. So TWRP is used. For open in twrp first phone is started in fastboot by pressing low volume and power button together. Then phone is turned on to fastboot.
Then in command promt (adb drivers must be installed ) go to adb & fastboot path and do the command. TWRP must be downloaded keep in the same path of fastboot.exe

fastboot boot twrp-3.3.1-0-wt88047.img
Now adb is available.

Then take adb shell and using  parted create a system partition.

adb shell
chmod a+x parted 
./parted /dev/block/mmc0blk0 
unit b 


Print the existing partition table before you do any work on partition and save it as a picture.
The code below prints the partition table.


(parted) print free


Here you can 23 is missing. It is the accidentally deleted system partition
Its start and end Must be noted to Create the partition.


23 - starting block 236503040B - end block 1310244863B


mkpart primary ext4 236503040 1310244863 
name 23 system
quit
This is how a system partition is created for a android phone.