Friday, July 27, 2012

फेसबुक इस्तेमाल करते हैं तो सावधान हो जाए |

अगर आप फेसबुक इस्तेमाल करते है तो सावधान हो जाये क्यों की फेसबुक इस्तेमाल करने वालो के कंप्यूटर को एक नए तरह के वाइरस से खतरा हो सकता है |इसमें फेसबुक इस्तेमाल करने वालो को एक इ-मेल भेजा जाता है और ये इ मेल देखने में बिलकुल कम्पनी के इ मेल जेसा दीखता है और इसका नाम "फोटो अलर्ट" रखा गया है|
जेसे ही कोई इस इ मेल में दिए गए लिंक को क्लिक करता है उसे फेसबुक की जगह दुसरे साईट पर भेज दिया जाता है और उस साईट पर जाते ही कंप्यूटर में वाइरस आ जाता है |
तो फिर अगर आप फेसबुक का इस्तेमाल करते हैं तो सावधान हो जाए क्यों की हो सकता है की आप के पास भी कोई ऐसा इ मेल आये और गलती से आप उसको ओपन करे और फिर परेशानी में पड़ जाए|



गूगल ने लॉन्च किया अपना साइनटिफिक केलकुलेटर |

कई बार हम कंप्यूटर पर काम कर रहे होते है और आचानक किसी वजह से केलकुलेटर की ज़रूरत पड़ जाती है तो फिर हमें कोई ऑनलाइन या घर में रखे केलकुलेटर को खोजना पड़ता है जिसमे कभी कभी हमें बहुत परेशानी उठानी पड़ती है और वक़्त भी बर्बाद होता है |इन सारी परेशानियों को दूर करने के लिए गूगल ने अपना केलकुलेटर लान्च किया है जिसके द्वारा आप अपने कंप्यूटर में छोटे छोटे गणित के सवाल या अपना निजी हिसाब किताब बहुत आसानी से कर सकते हैं |
 गूगल केलकुलेटर को खोलने के लिए सब से पहले आप को गूगल को खोलना पड़ता है फिर सर्च बॉक्स में Calculator टाइप कर के ओके दबा दे |

Cara Menghilangkan Tanda Panah pada Icon Desktop


Cara Menghilangkan Tanda Panah pada Icon Desktop. Ilmu komputer kita hari akan bertambah dengan mengetahui cara menghilangkan tanda pada pada icon desktop. Tanda panah ini sejak lama memang saya sendiri kurang suka melihatnya. Penampilan desktop menjadi kotor, tidak bersih dan kurang enak dipandang. Kalo sobat juga sama dengan saya tidak senang dengan tampilan icon ada anak panahnya dan berniat

Tutorial Javascript Validasi Form (Javascript Form Validation)

Hi all!!
Udah lama nih kita gak posting2 tutorial..Nah sekarang ane mau ngepost lagi nih,skalian ngejawab pertanyaan dari vrman mengenai validasi combobox. Nah dari pada cuma sebatas combobox sekalian aja ane kasih sample validasi untuk suatu form mulai dari validasi email, password, karakter digit, check box, radio, dll..
So, langsung aja nih source code nya buat validasi form menggunakan javascript :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="description" content="Demo Contoh Script Tutorial Ajax Chat Online Support" />
<meta name="keyword" content="tutorial ajax,script ajax,ajax,tutorial,script,contoh,php,javascript" />
<meta name="author" content="bobybibbob - catment.blogspot.com" />
<title>Tutorial Javascript Validasi Form (Javascript Form Validation) - catment.blogspot.com</title>
<script type="text/javascript">
<!--
/*validate*/
function isValid(form)
{
var valid=true;
var message='';
if(!form.alnum.value.match(/^[a-z]+$/i))
{
message='-Please insert alfanumerik with alfanumeric characters only.';
valid=false;
}
if(!form.digit.value.match(/^[0-9]+$/))
{
message+='\n-Please insert digit with numbers only.';
valid=false;
}
if(!form.username.value.match(/^[a-z0-9._]+$/i))
{
message+='\n-Please insert username with a-z, 0-9, _ and . charachters only.';
valid=false;
}
if(!form.email.value.match(/^([a-z0-9_]+[.])*[a-z0-9_]+@([a-z0-9_-]+[.])+[a-z]+$/i))
{
message+='\n-Please insert email with valid email address.';
valid=false;
}
if(form.pass.value=='' || form.pass.value.length<6)
{
message+='\n-Please insert password (Min. 6 Chars).';
valid=false;
}
if(form.pass_conf.value!=form.pass.value)
{
message+='\n-Confirm password not equal with password.';
valid=false;
}
if(form.combo.value=='')
{
message+='\n-Please select combo box.';
valid=false;
}
var valid_check=false;
for(i=0;i<form.check.length;i++)
{
if(form.check[i].checked==true)
{valid_check=true;}
}
message+=((valid_check==false)?'\n-Please select check box.':'');
var valid_radio=false;
for(i=0;i<form.radio.length;i++)
{
if(form.radio[i].checked==true)
{valid_radio=true;}
}
message+=((valid_radio==false)?'\n-Please select radio.':'');
if(form.textarea.value=='')
{
message+='\n-Please insert textarea.';
valid=false;
}
if(valid==false)
{alert(message);}
return valid;
}
/*--------*/
//-->
</script>
</head>
<body>
<form method="post" onsubmit="return isValid(this);">
<table>
<tr>
<td>Alfanumerik [A-Za-z0-9]</td>
<td><input type="text" name="alnum" /></td>
</tr>
<tr>
<td>Digit [0-9]</td>
<td><input type="text" name="digit" /></td>
</tr>
<tr>
<td>Username [A-Za-z0-9()._]</td>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="email" /></td>
</tr>
<tr>
<td>Password (Min. 6 Chars)</td>
<td><input type="text" name="pass" /></td>
</tr>
<tr>
<td>Confirm Password</td>
<td><input type="text" name="pass_conf" /></td>
</tr>
<tr>
<td>Combo box</td>
<td>
<select name="combo">
<option value="">--Select Combo Box--</option>
<option value="1">Opt 1</option>
<option value="2">Opt 2</option>
</select>
</td>
</tr>
<tr>
<td>Check Box</td>
<td>
<input type="checkbox" name="check" value="1" /> Opt 1
<input type="checkbox" name="check" value="2" /> Opt 2
</td>
</tr>
<tr>
<td>Radio</td>
<td>
<input type="radio" name="radio" value="1" /> Opt 1
<input type="radio" name="radio" value="2" /> Opt 2
</td>
</tr>
<tr>
<td>Text Area</td>
<td><textarea name="textarea"></textarea></td>
</tr>
</table>
<input type="submit" value="Submit" />
</form>
</body>
</html>

Untuk konsultasi, tanya-tanya tentang web programming, php, ajax, mysql, javascript, html, script bisa komen disini.
Untuk proyek atau tugas tentang web bisa komen disini.
Atau dapat langsung hubungi kami:
Email:
tawank.x@gmail.com
bobybibbob@gmail.com

YM:
tawank_x
bobybibbob

Thursday, July 26, 2012

HIDE DATA IN MOBILE WITHOUT ANY SOFTWARE!!!!


HIDE DATA IN MOBILE WITHOUT ANY SOFTWARE!!!


Have you ever desired to Secure  files in your phone? If yes,there here is very exciting remedy for you to cover up files in your cellphone and youdont even need any application for that.!!!!!!!

This technique can be used for any JAVA cellphone from Htc,Samsung,Motorola,LG or any other organization.


JUST FOLLOW SIMPLE STEPS
  1. Create any new folder or you can use any existing folder that is to be hidden.
  2. Rename the folder to any name but with the extension of .jad like if I want to hide my images folder then I will name it as IMG.jad
  3. Now create a new folder with the same name in the same directory but with the extension of.jar So, I would create the folder with the name IMG.jar
  4. And thats it!! My orignal images folder which has been renamed with .jad gets hidden and only folder with.jar extension is visible which is empty.So,my data is protected/hidden from unwanted eyes.

To unhide the orignal folder you have to remove the .jar extension from the new folder and your orignal folder with all the files and with .jad will become visible.!!!!!!!

Wating for your replies.....AADISH




Hide Files or Folders Using Command Prompt


Powered by Translate

Hide Files or Folders Using Command Prompt


Trick to hide files and folders using Command Prompt
The most important thing is that, once hidden with this method, the files/folders cannot be viewed by any search options even if you click "Show All Hidden Files and Folders".
Hiding the most wanted files and folders is very important nowadays and it's really a tedious job too. In order to make this tedious job an easy one, i'm going to deliver you a the trick now.
For Example: You have a folder named "collegephotos" and this folder is stored in (Disk Drive E). You think that it should not be seen by strangers who use your PC.

For that you need to follow the following instructions

  1. Press windowkey+R: Run command dialog box appears.
  2. Now type "cmd" and hit enter. A command prompt window displays.
  3. Now type "attrib +s +h E:\collegephotos" and hit enter.
  4. The folder "collegephotos" will be hidden (Note: It cannot be viewed by any search options)

    (To view this folder again, use the same command but replace '+' with '-' on both flags 's' and 'h')

HOW TO FIND REAL IP ADDRESS OF THE WEBSITE


HOW TO FIND REAL IP ADDRESS OF THE WEBSITE


Hii Guys....

I m Back With some new interesting trick....

Here is the new trick to find the I.P. address of a website!!

Here is the Trick...

in this trick we use the ping utility  of MS dos  to determine the real Ip address of a website.Before using this utility, make sure you are not mapping a host name to some IP address with HostName Commander, because if you do, the PING utility will show the address you’ve set up with HostName Commander, instead of the “real” IP address.

To run the PING utility, click on the Windows Start button, and choose Run from the Start Menu. If you use Windows 95,98, or Me, enter “command” (without the quotes) as the command line to run. If you use Windows XP,2000, or NT, enter “cmd” (again, without the quotes). Click OK and the command prompt window should appear on the screen.

Now enter the word “ping” (without the quotes) followed by a space, followed by the host name you want to determine the IP address of, and press Enter:
In This ex. the IP address of rgpv.ac.in is 182.18.149.117.

Hope you have liked this post ....please like n comment n share THANKS....AADISH