How to verify signature in an Aadhaar card online

Nowadays Aadhaar is the important proof for all the government related applications when you download Aadhaar form UPI website you will get a PDF formatted Aadhaar card with signature not verified,you can see the signature not verified section just left side of the bar code in Aadhaar card.so let we check How to verify signature in an Aadhaar card online

see the given steps to verify signature in an Aadhaar card online

1) Install adobe acrobat reader dc in your system ( you can download online)

2) Open PDF of the Aadhaar card in adobe acrobat reader ( Right click on your files)

How to verify signature in an Aadhaar card online step 1

3) Right click on Signature Not verified Section

How to verify signature in an Aadhaar card online step 2

4) Click On Signature Properties

How to verify signature in an Aadhaar card online step 3

5) Click on certificate

How to verify signature in an Aadhaar card online step 4

6) Click on trust tab =>Add to trusted certificates and click ok

How to verify signature in an Aadhaar card online step 5

After adding this you can see a message in the sign properties section “signature is VALID Signed by DS UNIQUE Identification Authority Of India 02
A valid signature in an Aadhaar card will look like below it shows a tick mark with signature valid Message on it.

valid signature in an Aadhaar card

Moving WordPress website from one domain to another domain

Sometimes we need to move WordPress website from one domain to another domain, in this tutorial we will explain what are the main steps we have to do before moving WordPress website from one domain to another domain . so let have a look on it steps by step.suppose we move WordPress site from https://www.tutorialshore.com to http://percentagetool.com

Steps 1

Change wp_option table siteurl and home value

WordPress website from one domain to another domain

Step 2

Login to Admin side open Permalink Settings
Settings => Permalink Settings

Click Save Changes

WordPress website from one domain to another domain step2

python f string or python Formatted string literals

python f string is a new string formatting method in python, f string is much simpler and readable way of formatting strings in Python.The f-strings start with f prefix and use {} symbol to evaluate values.The python f-strings stands for python Formatted string literals.

Syntax

print(f"{var} constant.") 
# Python f string 
link = 'percentagetool.com'
print(f"{link } is a simple online website for percentage calculations.") 

Out Put 
percentagetool.com is a simple online website for percentage calculations

# Python f-string 

link = 'tutorialshore.com'
alexa=14999
print(f"{link} is a website with alexa rank {alexa}") 

Out Put 
tutorialshore.com is a website with alexa rank 14999
#using function in python f string 

def sum(x, y):

    return x + y

p = 8
q = 4

print(f'sum  of {p} and {q} is {sum(p, q)}')


Out put

sum  of 8 and 4 is 12