Sunday, September 11, 2016

on Leave a Comment

How to use cheat in GTA SA using GTA sa cheater on Android

Hello Guys today iam going to tell you how to patch cheat code in GTA SA.

First download GTA sa cheater app

Download link:GTA SA:cheater

After downloading install app and open it
GTA Sandres for android
Click in Continue button
then your game's saved file is seen
GTA trainer
Select any file you want to patch
After selection
GTA 5
Check  desire option after that select save buton. Now you are ready to run.


Still having problem watch this video.



Thursday, September 8, 2016

on Leave a Comment

5 Ways to strong the security of your wireless network

More covienent you feel less secure you are.Alots of security problem arises in wireless network sometime password is stolen sometime WPS pin

5 way strong  your wireless network is given below

1.Change WPS pin (Disable WPS  pin if possible)

WPS stand for wireless protected setup.This feature is avaliable almost all new router.This feature connect client device easily using pin but as already i said more convient you feel less secure you are.Developer has figure out kicking your convienent and some penetrating tool like Dumper for pc and Androdumper,WPS tester are avaliable which check the vunerablty of router lots of people don't know about this and  
and  even noob are cracking password.These penetrating testing tool don't generate pin they already has default pin of different router in their database.So while setuping router change your default pin or disable WPS if possible.

2.Replace your old router 
If you are still using old router its time to change.Your old router may have security issue cause its old technology or older firmware which may has loophole through which computet nerd can get in.


3.Use WpA2  type security.

4.Use MAC(Media access code)
feature which is available in almost every router.Add MAC address of your client device in White list and only those device which are added in Whitelist can access your wireless device.This is most secure method cause despite of knowing your password they can't able to connect in wireless  because only whitelist added device are allowed to access the wireless device.

5.check router log regularly simply loging router control pannel.Every activity perform through  you wirless device is shown here.

Sunday, May 22, 2016

on Leave a Comment

How to create WiFi hotspot from CMD

Today i'm going to show you how to create wifi hotspot using CMD. Although there are alots of software available which can create wifi hotspot esaily with single click but this tutorial show how these application function.

so lets begin

1.Open command promt(CMD) simply press start button and R and type cmd or search in all program

2.Then type following command

wlan show drivers
This command show about your wireless device.

3.Then type

netsh wlan set hostednetwork mode=allow ssid=yourhotspot name key=password

hit enter key

This command create wifi hotspot.

4.Again type

 netsh wlan start hostednetwork

 and hit enter .

This command start wifihotspot which we create earlier.

5.if you want to stop wifi then type following command:

netsh wlan stop hostednetwork

hit enter.

or

6.if you want to check how many user are connected then type following command:

netsh wlan show hostednetwork

and press enter.

This command show your SSID,Max no.of client.Athentication,cipher,no.of client,channel etc.

Skip 5 and 6 no.

7.Now its time to share internet connect.

Open open network and sharing center

Click on change adapter settings

8.Right click adapter which you use to connect the internet and click on properties 

9.Then you will see Sharing tab option click on it.

10.Check the box allow other network users to connect through this computer's internet connection and select the network connection name which is used by your wifi hotspot and press apply button.

Now you have successfully share internet connection. 

Wednesday, May 18, 2016

on Leave a Comment

HTML tags

Some basic tag any web programmer:

1.Hn(header)
The header of HTML documents is controlles by<Hn> and </Hn> tags.The value of b range from 1 to 6.The H1 is largest size of header and H6 is smallest of all.

Syntax:
<Hn>header</Hn>
    Where n=1,2,3,4,5 and 6
Example
<H1>web</H1>
<HTML>
<BODY>
<H1>Web</H1>
</HTML>
                   
 Header alignment us also called used. Header us aligned to left by Default, but it a can be aligned center ,right or justify.

Syntax:
<Hn> align=”left/center/right/justify”>….</Hn>

2.P(Paragraph)

It si used to move sursor in new line leaving blank space.It is used in beginning of text.In this way,it is used to separate different paragraph.

Example:
<P>------</P>
<p align=”left/center/right/justify”>-------</p>


3.BR(break)
This tag moves the cursor in new line without leaving blank spaces.

Example:
Store<br>
Web<br>


4.HR(horizontal ruler)
It is used to draw horizontal line to separate section. Its attributes are:
Color: color name

No shade:unshaded dark gray line without the hollow and slightly three dimensional appearance.
Size: number
Width: number or %
Align: Left/right/center

Example:
<HR size=”8 color=”blue”>:It draws 8 pixels thick blue line
5.CENTER
This tag is used to place text in central position. The text written within <center> and </center> is aligned to the central part of document.

Syntax:
<CENTER>----</CENTER>

Example:
<center><H1>WECOME<H1><CENTER>

6.Text
The  text color for whole page can be defines within <body> tag.

Example:
<BODY TEXT=”blue”>

7.LINK,VLINK and ALINK
The color of anchor text is also defines within <BODY> tags. The default color of LINK  is blue, default color of VLINK is purple and ALINK color is red for Netscape Navigator and Microsoft internet Explore.

Example:
<BODY TEXT=”green” LINK=”yellow” VLINK=”red” ALINK=”green”>
8.TOPMARGIN and LEFTMARGIN
These are attributes of BODY tags used to set top and left margins of document. Some browser ignore these attributes.
Example:
<BODY TOPMARGINE=”25” LEFTMARGINE=”30”>

9.BGCOLOR and BACKGEOUND
These are also BODY attributes used to display background color and background images.

Example:
<BODY BGCOLOR=”build”>
<BODY BACKGROUND=”rain.gif”>

Sometime we use BGPROPERTIES attributes with BACKGROUND to prevent scrolling of images with text. This is a browser-sensitive attributes.
<BODY BACKGROUND=”weak.gif” BGPROPERTIES=”FIXED”>


on Leave a Comment

Basic concept of HTML

HTML is a tag base scripting language, interpreted by browser. Hyper text is nonlinear text. It has a capacity of open a door of other related information or files.

Basic structure of HTML

<HTML>
<Head>
<title>
</title>
</Head>
<body>
</body>
</HTML>


1.<HTMl>……..</HTML>
This tag are backbone on which other tags are located.Other tag like <HEAD>..</HEAD>,<TITLE>….</TITLE> etc tag are located between <HTML>  and  </HTML>.
<HTML> tag is places in beginning and </HTML> is places in end of HTML document.


2.<TITLE>…</TITLE>
Under this tag title of webpage is written.Which is display in top of the web browser .
Example:
<TITLE>
MY PAGE
</TITLE>
3.<BODY>….</BODY>
The <BODY> is the main body of HTML document in which multimedia link, several images are placed.

SEE HTML TAG




HTML code for basic webpage
<html>
<HEAD>
<title>
welcome to my page
</title>
<body>
<BODY BGCOLOR="#FF0000" TEXT="#000000" TOPMARGIN="25" LEFTMARGIN="30">
<body background="androidw.jpg">
<CENTER>
<H1><U>EXAMPLE</U></H1>
</CENTER>
<HR>
<li><a href="#EXAMPLE">EXAMPLE</a></li>
</ul>
<h2><a name="EXAMPLE" id="EXAMPLE"></a>EXAMPLE</h2>
<BR>EXAMPLE<BR>EXAMPLE2<Br>EXAMPLE
</body>
</head>
</html>

Output is: