Archive for April 2020
How to use PTM in Nepal
Hello, friends in this article I
will help you how to use PTM in Nepal. To use a PTM in Nepal you must have
Indian number. If your relatives are in
India then you ill easily get an Indian mobile number but if your relatives are
not in India then you will not able to get any Indian number but in this
article, I will help you to get a free Indian mobile number as well as for another
country mobile number also. To use a PTM as mobile banking you must have an
Indian number without any Indian number you would not be able to login into
PTM. There is no special program that could transfer an Indian or other
country currency into your bank account. So due to this reason, I use PTM through
which you can transfer your money Earn through my app can be transferred to your
bank account. As I am a civil engineer so it is not in my hand to develops such a program.
So this article is very important
to those who use my app to earn money online. I recommend you to read the full
article then only follow my steps if you do any mistake then your account may
be a seal. PTM is mainly a maid for India only but we can use it in Nepal also. To
get the Indian Mobile number to follow my steps carefully:
1. Go to the
website link given below.
2. After
visiting that website you will saw many mobile numbers of the different countries
among which some are valid and some are invalid.
3. After
visiting that website search Indian number.
4. When you
saw an Indian number click on one of them. After clicking if another page is
open then that phone number is valid and can be used. If any page doesn’t open
then that number is invalid and can’t be used for another purpose also.
5. Then open
PTM app and then enter that number that you click.
6. Check
whether that number is used for PTM or not.
7. After that, if you get OTP on that page which just opens after you click on the Indian
number then use that number.
8. If you
doesn’t get any OTP of PTM then choose another Indian Number.
9. After getting OTP to enter the OTP in PTM and
then transfer that earn money into your bank account recently.
10.
Remember that this is an international website so anyone
can use your Number so I recommended you to do the above process as you have more
than 350 points in your account only, and transfer it into your bank account
immediately.
How do you feel while reading this article
don’t forget to comments? If you love this article share it you like this
article. Have a good day. If you want an article like this to follow us on a Facebook page: Arun_panthi_blog or on www.arunpanthi.blogspot.com or on www.midwesternuniversity.blogspot.com.
How to use PTM in Nepal
How to get Legend player in Dream league soccer 2019.
Hello Friend in this tutorial I
will help you to get legends players like Pele, Maradona, and other players with
rating 100. I love to play Dream league soccer. I have complete all the game of
Dream league soccer without losing even a single match. I have score 16-0 as a
maximum goal against Manchester City. In this article My Team name is Nepal. I
have also made my own team logo by myself if you want to get these kit please
contact me. Let start about how to get legends players in DLS-19. First of all, you have to do the following steps.
1)
Fist of all you have to download the data file (link
is given below).
Click on the given download button to download the zip file and extract them.
2) After downloading that file move that files to Android=>data=>and then paste it.
2) After downloading that file move that files to Android=>data=>and then paste it.
3)
Then the popup will appear on your mobile phone after
that click on replace all items and after that close, all the program running in
your mobile background and turn of Wi-Fi-Mobile data and another internet medium.
4)
Then open your DLS-19. After that, you will get legends
players.
If you love these players then share them with your friends so
that they could also get these legends players. This is corona-time so stay at
home to be safe. Thank you have a good day.
Here are the kits for Your Dream
team
1) For Home
2) For Away
How to get Legend player in Dream league soccer 2019.
Go the link and register to earn by doing simpler task of entering the numbers displayed on the screen
https://uefmoney.xyz/763769554439932/
U can earn and paid to ur bank account directly or western union or paypal/bitcoin any many more digital wallets.
https://uefmoney.xyz/763769554439932/
U can earn and paid to ur bank account directly or western union or paypal/bitcoin any many more digital wallets.
how to earn money online
Hello Friends in this article I will help you to show
how to earn money online. Different websites help to earn money. Some of them
are a good website and some are bad but I recommend a top website that will
help you to earn 10 cents in one click. If you want to earn money than click on
the link below
After opening this website registration should be done
then start to earn money with just one click. After registration goes to the
user area and then there will be 3 digit number type them and click on ok after
clicking on ok you will get 10cent for each click.if you have any problem then
contact me. If you love this article then share it with your friends
U can earn and pay to our bank account directly or
western union or PayPal/bitcoin any many more digital wallets.you can withdraw
money by bitcoin or by using a visa/master card or directly through your bank an account also .if you fill any difficulty regarding this uses of this website
contact me.
stay at home to be safe from the corona.
How to earn money online
Hello, Friends how are you? It is
corona time so stay at home and be safe from the corona. I know you are getting
bore due to lockdown so I have written this article to make your time pass. In
this tutorial, I will help you to construct the calculator using HTML. There are
several programming that helps you to construct different but I prefer you to
use HTML because it is simpler than another programming language. If you know how
to construct the calculator by another programming then please comment on the
comment section. If you are too bore while staying on the home during lockdown
there is a guest post section on my blog where you can publish the article that
you want to publish in this blog. Now friend let’s start the tutorial
Calculators are an electronic
devices that can perform simple to advance calculations. Many people use a calculator in daily life. Now a day’s people use a mobile calculator than a pocket
calculator. The calculator was first created in the 1960’s. The calculator is used to doing
addition, subtraction, multiplication, division, and other algebraic as well as a mathematical problem. Nowadays various types of calculator are available in the market. But in this tutorial, I will help you to construct the calculator using
HTML and CSS. There are several Apps/software where you can convert HTML code
but I prefer you to use anWriter free for mobile phone and sublime text for pc.
So I prefer you to use the same app for you also.
Now the code that is required to
construct the calculator is given below. If you are a good programmer then only
edit the code otherwise it will not work.
<!DOCTYPE html>
<html>
<head>
<title>
Scientific Calculator using HTML, CSS
and Js
</title>
<!-- CSS property to create interactive
calculator interface -->
<style>
/* Style to set the title of the calculator
*/
.title {
margin-bottom: 10px;
padding: 5px 0;
font-size: 20px;
font-weight:bold;
text-align:center;
width: 447px;
color:green;
border: solid black 2px;
}
/* Set the button style */
#btn {
width: 100%;
height: 40px;
font-size: 30px;
}
input[type="button"] {
background-color:green;
color: black;
border: solid black 2px;
width:100%
}
/* Set input textarea */
input[type="text"] {
background-color:white;
border: solid black 2px;
width:100%
}
</style>
<script>
/* Creating function in HTML for
backspace operation */
function backspace(calc) {
size = calc.display.value.length;
calc.display.value =
calc.display.value.substring(0, size-1);
}
/* Creating function to calculate
factorial of element */
function calculate(calc) {
/* Check if function include !
character then
calculate factorial of number */
if(calc.display.value.includes("!")) {
size =
calc.display.value.length;
n =
Number(calc.display.value.substring(0, size-1));
f = 1;
for(i = 2; i <= n; i++)
f = f*i;
calc.display.value = f;
}
/* If function include % character then
calculate
the % of number */
else
if(calc.display.value.includes("%")) {
size =
calc.display.value.length;
n = Number(calc.display.value.substring(0,
size-1));
calc.display.value = n/100;
}
else
/* Otherwise evaluate and
execute output */
calc.display.value =
eval(calc.display.value);
}
</script>
</head>
<body>
<div class = title >
Scientific calculator created by Arun
panthi
</div>
<form name = "calc">
<table id = "calc" border = 2>
<tr>
<td colspan=5><input
id="btn" name="display"
onkeypress="return
event.charCode >= 48
&& event.charCode <=
57" type="text">
</td>
</tr>
<tr>
<td><input id="btn"
type="button" value="1"
OnClick="calc.display.value+='1'">
</td>
<td><input id="btn"
type="button" value="2"
OnClick="calc.display.value+='2'">
</td>
<td><input id="btn"
type="button" value="3"
OnClick="calc.display.value+='3'">
</td>
<td><input id="btn"
type="button" value="C"
OnClick="calc.display.value=''">
</td>
<td><input id="btn"
type="button" value="<-"
OnClick="backspace(this.form)">
</td>
<td><input id="btn" type="button"
value="="
OnClick="calculate(this.form)">
</td>
</tr>
<tr>
<td><input id="btn"
type="button" value="4"
OnClick="calc.display.value+='4'">
</td>
<td><input id="btn"
type="button" value="5"
OnClick="calc.display.value+='5'">
</td>
<td><input id="btn"
type="button" value="6"
OnClick="calc.display.value+='6'">
</td>
<td><input id="btn"
type="button" value="-"
OnClick="calc.display.value='-'">
</td>
<td><input id="btn"
type="button" value="%"
OnClick="calc.display.value+='%'">
</td>
<td><input id="btn"
type="button" value="cos"
OnClick="calc.display.value='Math.cos('">
</td>
</tr>
<tr>
<td><input id="btn"
type="button" value="7"
OnClick="calc.display.value+='7'">
</td>
<td><input id="btn"
type="button" value="8"
OnClick="calc.display.value+='8'">
</td>
<td><input id="btn"
type="button" value="9"
OnClick="calc.display.value+='9'">
</td>
<td><input id="btn"
type="button" value="*"
OnClick="calc.display.value+='*'">
</td>
<td><input id="btn"
type="button" value="n!"
OnClick="calc.display.value+='!'">
</td>
<td><input id="btn"
type="button" value="sin"
OnClick="calc.display.value='Math.sin('">
</td>
</tr>
<tr>
<td><input id="btn"
type="button" value="."
OnClick="calc.display.value+='.'">
</td>
<td><input
id="btn" type="button" value="0"
OnClick="calc.display.value+='0'">
</td>
<td><input id="btn"
type="button" value=","
OnClick="calc.display.value+=','">
</td>
<td><input id="btn"
type="button" value="+"
OnClick="calc.display.value+='+'">
</td>
<td><input id="btn"
type="button" value="/"
OnClick="calc.display.value+='/'">
</td>
<td><input
id="btn" type="button" value="tan"
OnClick="calc.display.value='Math.Tan('">
</td>
</tr>
<tr>
<td><input id="btn"
type="button" value="E"
OnClick="calc.display.value+='Math.E'">
</td>
<td><input id="btn"
type="button" value="π"
OnClick="calc.display.value+='Math.π'">
</td>
<td><input id="btn"
type="button" value="^"
OnClick="calc.display.value+='Math.pow('">
</td>
<td><input
id="btn" type="button" value="("
OnClick="calc.display.value+='('">
</td>
<td><input id="btn"
type="button" value=")"
OnClick="calc.display.value+=')'">
</td>
<td><input
id="btn" type="button" value="log"
OnClick="calc.display.value='Math.log('">
</td>
</tr>
<tr>
<td><input id="btn"
type="button" value="sqrt"
OnClick="calc.display.value+='Math.sqrt('">
</td>
<td><input id="btn"
type="button" value="ln2"
OnClick="calc.display.value+='Math.LN2'">
</td>
<td><input id="btn"
type="button" value="ln10"
OnClick="calc.display.value+='Math.Log10'">
</td>
<td><input id="btn"
type="button" value="l2e"
OnClick="calc.display.value+='Math.LOG2E'">
</td>
<td><input
id="btn" type="button" value="l10e"
OnClick="calc.display.value+='Math.log10'">
</td>
<td><input
id="btn" type="button" value="exp"
OnClick="calc.display.value='Math.exp('">
</td>
</tr>
</table>
</form>
</body>
</html>
Thank you for reading my article please
don’t forget to give me feedback about it in the comment section. Stay at home to be
safe and healthy.
Scientific calculator created by Arun panthi