Showing posts with label tutorial. Show all posts
Showing posts with label tutorial. Show all posts

Tuesday, August 6, 2019

HOW TO TRANSFER Amazon PAY BALANCE TO BANK


HOW TO TRANSFER PAY BALANCE TO BANK :beginner:


1. Order Any Product On COD [ Order Only Prime Eligible Product & Return Policy Product ]

2 . When Your Order Out for Delivey then You Will Get A Pay Link On SMS & Email

3. Login Your Amazon Pay Balance Account In Any Browser

4. Paste Pay Link In Browser In Which You Login Your Amazon Pay Balance Account & Pay for the Order

5. After Payment You Will Get A Payment Code. Keep it Because Delivery Boy Need this Code

6. After Delivery Of Order , Simply return and choose refund to your Bank

7. Yes it works..

Friday, February 15, 2019

How Facial Recognition is Tracking You?


How Facial Recognition is Tracking You?



Big Tech is pushing facial recognition to police. Buthe costs of surveillance could have a larger impact on people of color and women

"Imagine a government tracking everywhere you walked over the past month without your permission or knowledge," It is happening said Microsoft's chief legal officer

Tuesday, February 12, 2019

Free VPS/RDP in 5 Minutes


Free VPS/RDP in 5 Minutes :beginner:




1. Go to serveroffer.lt and browse their website for one minute or so until you get a message like this https://i.imgur.com/cy9Dayf.png
2. Answer them nicely.
3. They will ask you on what package you want
4. I choose one of there services, Like I told something like: VDS-10 It's too much, I think VDS-3 or VDS-4 if possible
5. Try with other servers if you want
6. They will also ask for an account, just create it with fake info (fake real info)
7. They will also ask about the OS, I choose a Debian 9 because Windows obligates me to have a Desktop service running and it's a waste of resources
8. You will receive your server details in your e-mail

Note : There Trial Services is Out of Stock Right Now. But This Trick is surely working. :+1:

Tuesday, February 5, 2019

Introduction to JavaScript Cookies

Introduction to JavaScript Cookies


The user's information is stored by cookies. Normally when a user visits a website, there is no information in the web server . But it is possible to store any user's information through cookies.

Cookie is a normal text file. Whenever a user visits a website, its information is stored as a cookie (text file). This information is stored on the user's computer.

In the future whenever the user requests for that website again, with the user's request, that user's cookie is also sent to the web server.


 
Thus web server gets the information of that user. Based on this information, the web server is aware of the preferences of that user. Also, the web server can make the necessary changes to web pages based on this information.

JavaScript provides you with the ability to create, read, change, and delete cookies. Document.cookie property is available in JavaScript for this.



Creating Cookies with JavaScript


The general syntax for creating cookies in JavaScript is being given below.

document.cookie = "name = value; expiry-date; path ";
name = value - Whenever you store any information in the cookie, you do this in the name and pair of value. For example, if you want to store the user's ID, you will define "id = 101" for this.
expiry-date - You also set the expiry date of cookies. The date that you define, comes to the date that the cookie will automatically delete. The expiry date is set by expires attribute.
path - By this parameter, you define what the cookie is related to which path. If no path is given then it means that the cookie is related to the current page.

EXAMPLE
Creating a cookie in JavaScript is being explained by the example below.


<!– settingCookies.html –>
<html>
<script type=”text/javascript”>
// Setting cookies
document.cookie = “userName=John;expires=Fri, 26 May 2017 09:00:00 UTC;path=/”;
document.cookie = “Id=101;expires=Fri, 26 May 2017 09:00:00 UTC;path=/”;
document.write(“Cookies are set..”+”<br>”);
</script>
</html>
The above script generates the given output below.
Cookies are set…

Reading Cookies with JavaScript

You can easily read cookies set in JavaScript. For this you assign a document.cookie property to a normal variable. This property returns all cookies set on that page to a pair of name and value.
An example of this is being given below.
<!– readingCookies.html –>
<html>
<script type=”text/javascript”>
document.write(“Reading cookies…”+”<br>”);
// Reading cookies
var myCookie = document.cookie;
document.write(myCookie);
</script>
</html>
The above script returns all cookies set as output to pair in name and value.

Changing Cookies with JavaScript 

To make any cookie change in javascript, you create it back with the other values. For example, you can change the cookies created above this way.
<!– chaingingCookies.html –>
<html>
<script type=”text/javascript”>
// Changing cookies
document.cookie=”userName=Sara;expires=Fri, 26 May 2017 9:00:00 UTC;path=/”;
document.cookie=”Id=103;expires=Fri, 26 May 2017 9:00:00 UTC;path=/”;
document.write(“Cookies are changed…”;
</script>
</html>
The above script generates the given output below.
Cookies are changed…

Deleting Cookies with JavaScript 

You can recreate that cookie to delete any cookie by JavaScript. You do not value the cookie when you create it again. Also pass in the expires parameter as an old date value.
For example if you want to delete the created userName and Id cookies created above, then you will do this. 
<!– deletingCookies.html –>
<html>
<script type=”text/javascript”>
// Deleting cookies
document.cookie=”userName=;expires=Wed, 3 May 2017 09:00:00 UTC;path=/”;
document.cookie=”Id=;expires=Wed, 3 May 2017 09:00:00 UTC;path=/’;
document.write(“Cookies are deleted…”);
</script>
</html>
The above script generates the given output below.
Cookies are deleted… 

A Complete Example of Cookies with JavaScript

<!– javascriptCookieExample.html –>
<html>
<script type=”text/javascript”>
document.cookie = “userName=John;expires=Fri, 26 May 2017 09:00:00 UTC;path=/”;
document.cookie = “Id=101;expires=Fri, 26 May 2017 09:00:00 UTC;path=/”;
document.write(“Cookie are set..”+”<br>”);
document.write(“Reading cookies…”+”<br>”);
var myCookie = document.cookie;
document.write(“Showing cookies..”+”<br>”);
document.write(myCookie+”<br>”);
document.write(“Changing cookies..”+”<br>”);
document.cookie=”userName=Sara;expires=Fri, 26 May 2017 9:00:00 UTC;path=/”;
document.cookie=”Id=103;expires=Fri, 26 May 2017 9:00:00 UTC;path=/”;
document.write(“Cookies are changed…”+”<br>”);
document.write(“Showing cookies..”+”<br>”);
var myCookieAgain = document.cookie;
document.write(myCookieAgain+”<br>”);
document.write(“Deleting cookies..”+”<br>”);
document.cookie=”userName=;expires=Wed, 3 May 2017 09:00:00 UTC;path=/”;
document.cookie=”Id=;expires=Wed, 3 May 2017 09:00:00 UTC;path=/”;
document.write(“Cookies are deleted…”);
</script>
</html>
The above script generates the given output below.

Cookies are set..
Reading cookies..
Showing cookies..
userName=John,Id=101
Changing cookies..
Cookies are changed.
Showing cookies…
userName=Sara,Id=103
Deleting Cookies.
Cookies are deleted.






Tuesday, January 29, 2019

What Is Python (Programming)?


What Is Python (Programming)?:beginner:




Python is a general-purpose language. It has wide range of applications from Web development (like: Django and Bottle), scientific and mathematical computing (Orange, SymPy, NumPy) to desktop graphical user Interfaces (Pygame, Panda3D).

The syntax of the language is clean and length of the code is relatively short. It's fun to work in Python because it allows you to think about the problem rather than focusing on the syntax.

Wednesday, November 28, 2018

useful carding links


:beginner: Useful Carding Resources


:beginner:
:cyclone:Zip Code Search


:cyclone:Zip Code Search


1⃣http://www.findlinks.com/
2⃣http://zipinfo.com/search/zipcode.htm
3⃣http://www.addresses.com/
4⃣http://www.mongabay.com/igapo/


:cyclone:Send Fax Online

1⃣efax.com
2⃣j2.com
3⃣send2fax.com
3⃣rapidfax.comfax1.com
4⃣k7.net


:cyclone:Credit Reports

1⃣https://www.mycreditkeeper.com
2⃣https://secure.creditreport.com
3⃣https://qspace.iplace.com


:cyclone:Phone Redirect

1⃣http://www.tollfreeforwarding.com
2⃣http://www.Spoofcall.com


:cyclone:USA phone number search

1⃣http://www.reversephonedetective.com


:cyclone:MMN search

1⃣ancestry.com


:cyclone:DOB search

1⃣privateeye.com

:cyclone:Sock5&Proxy

1⃣http://www.socks24.org/
2⃣http://www.sockslist.net

Tuesday, November 27, 2018

Carding Class starts from tommorow

:warning: Carding Class alert Only for paid cadidates only

:warning:

:ideograph_advantage: Amazon.in Working Method(without amex) Course Price: Rs400

:ideograph_advantage: Recharge method Course Price: Rs500

:ideograph_advantage: Most of All site method
Course Price: Rs400:fire:

:ideograph_advantage: Cc to Btc Course Price: Rs400

:ideograph_advantage: Flipkart carding method(without amex) Course Price: Rs500

:ideograph_advantage: paytm cashout method(without amex) 70k+ cashout
Course Price: Rs400

:ideograph_advantage: Bank transfer (100% Successful Rate)
Course Price: Rs400

:ideograph_advantage: PayPal Carding tutorial
Course Price: Rs400

:ideograph_advantage: Indian private Giftcard Site carding tutorial
Course Price: Rs400

:ideograph_advantage: Pizzahut method No need buy cc
Course Price: Rs400

After Payment I'll Add You In My Private Carding Channel Where I'm Teaching Carding Noob To Pro And Updating Methods Time To Time.



Payment:
Paytm: 7838712485


For more premium account Please contact us:[price may be increase or decrease]

Sonyliv - 65


Amazon prime video - 30
Hotstar- 130


Erosnow-50

Savvn (1month)-30

Brazzers-70

Realitykings-60

Evilangel- 70

Mofos -60

Fakehub-70

Julesjordan-60

Babes. com- 70

Digitalplayground-70



Sunnyleone also avlb - 60

All Id and passwords are provided by www.bloginstall.com. Kindly comment below if all accounts are working or not.

If working then comment thanks

else comment not working with email id and passwords.