Tuesday 21 August 2012

Reset MySQL password in windows7


Hello friends.If you have forgotten your MySQL root password and some useful database is there in MySQL then you must need root password to access those files. To reset your root password you need not to uninstall your MySQL from pc. Here I will show how to reset root password for MySQL installed in win7.


Steps:


  1. Go to START / CONTROL PANEL and click on Administrative Tools and select Services.
  2. Scroll down and stop Mysql service.
  3. Now go to START / ALL PROGRAMS / ACCESSORIES and right click on Command Prompt – Select RUN as Administrator
  4. Repeat the above step. so that now you have two command-prompts.
  5. In both the command prompt navigate to C:\Program Files\Mysql\Mysql server 5.1\bin>
  6. In first Command prompt window type: mysqld.exe –skip-grant-tables and pressENTER
  7. Go to second Command prompt window and type: mysql.exe –u root mysql and press ENTER, you should be granted access and be in mysql> prompt
  8. Now while at the mysql> type there UPDATE mysql.user SET Password=PASSWORD(‘new password’) WHERE User=’root’ and press ENTER
  9. If everything worked, you should receive QUERY OK …
  10. Now type FLUSH PRIVILLEGES; and press ENTER, you will receive another Query OK
  11. Now you have to just reboot your machine and once you are back you should be able to log on with your new password
Enjoy..

#comment below for any problem in above steps.

Friday 17 August 2012

Internet Dowload Manager 6.11 beta build 4 full version 100% free


Here I am giving you Internet Download Manager version 6.11 beta build 4 full version 100% free.

Instructions:

  • Download it. Extract it. 
  • Install IDM and run patch as administrator. 
  • Don't forget to run as administrator otherwise registry will not be updated with IDM registration data.


#comment below for any problems in installation

Download Vaio Gate supported in every PC and Laptop


Today Sony vaio laptop is providing a special facility to their users to have a vaio gate for a very good user interface. whereas in other laptops we have to use some docks which might not have a smart user friendly interface compared to vaio gate.
Here I am giving you the setup file for vaio gate which will work on any pc or laptop and every can have experience like vaio.


Enjoyy..!!

#comment below for downloading problem

Cyberwar between Indian and Pakistani Hackers on their Independence Day


Too many Pakistani websites were hacked by Indian Hackers on the Idepedence Day of India(15th august).
Pakistani hackers also defaced some Indian websites on 14th august.Many well-known Indian Hackers defaced more than 2000 pakistani websites including some famous organization and government sites and posted a  picture of Indian National Flag with the song "Vande Mataram" on the website and given the message as given below:

"Congratulations, you have got the attention of the Indians. To those who are thinking, who we are, never think it that way, because we are many without any name, the only name and Identity we have is INDIA, and yes we are Indian Hackers, it was not supposed to happen all the sudden this way, but hey who knew? We belong to India, we are one blood. We have one cause. STOP breaching Indian servers, you we bet, the whole Pakistan, Bangladesh, or whosoever breaches Indian Security will have to pay a big time with will be permanent, and irreversible. We will snatch off your Hosting companies and the PKNIC server which will then only manufacture and register Malwared domains. We have a message for Pakistan and Bangladesh Security and Officials who had been victim. We never intended to attack; we were forced by your counterparts, hackers who think that they are the only active session in our domains. We have a clear message, target them and inform them NOT to attack our cyber sectors, doing so will result destruction to your domains as well. We have NO intention to trigger a cyberwar, but we have to if it's NOT done and as well as give them some other Jobs, so that they don't play around country wars. We will however continue our attack, once triggered by your hackers, and won't STOP, until and unless an official message is delivered to us. We don't want negotiation; we want straight facts on grounds. There are your hackers claiming Kashmir, and we don’t understand how come compromising Indian sites fetch you Kashmir? Talk about this to OUR President and PM’s, don’t make the cyber space crap, and we don’t think we are handing out Kashmir to 3rd party people who themselves cannot feed their own country land; you know the facts we are talking about, so better NOT TO start it all over again. Their are no names here, so forget who compromised and which teams compromised your servers, failing to cooperate with us will clearly cause serious problems, for examples, data leakage, Information disclosure, presidential disclosure, email dumps with string straight passwords, and other various serious attacks. We hope so you collaborate. Thanks, the INDIANS, the UNITED KNOWN TIGERS to many within INDIA."


The remarkable thing is that all Indian hackers group and many Individual hackers worked together to protect their cyberspace.

Here you will find all the hacked sites of Pakistan :  Click Here

Circling Text effect in HTML using Java-script




Hi. Today I will show you how to make circling text effect in your webpage. It is a simple java-script that will allow your characters to follow cursor.
Below is the sample code. Just copy it to notepad and save it as any html file. then run it in your browser.

Change the values of x and y diameter and also speed,letter-spacing to achieve different effects.

#You can see live demo here : DEMO 

#CODE#
<html>
<head>
<title> Avixittech </title>
<style type="text/css">
/* Circle Text Styles */
#outerCircleText {
/* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: RED;

position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}

</style>
<script type="text/javascript">


;(function(){

// Your message here (QUOTED STRING)
var msg = "H@cKeD bY AvI";

var color = "#FFFF";
/* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 24;

// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 1.5; var circleX = 3;

// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;

// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 9;

// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.5;

////////////////////// Stop Editing //////////////////////

if (!window.addEventListener && !window.attachEvent || !document.createElement) return;

msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,

mouse = function(e){
 e = e || window.event;
 ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
 xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},

makecircle = function(){ // rotation/positioning
 if(init.nopy){
  o.style.top = (b || document.body).scrollTop + 'px';
  o.style.left = (b || document.body).scrollLeft + 'px';
 };
 currStep -= rotation;
 for (var d, i = n; i > -1; --i){ // makes the circle
  d = document.getElementById('iemsg' + i).style;
  d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
  d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
 };
},

drag = function(){ // makes the resistance
 y[0] = Y[0] += (ymouse - Y[0]) * speed;
 x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
 for (var i = n; i > 0; --i){
  y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
  x[i] = X[i] += (x[i-1] - X[i]) * speed;
 };
 makecircle();
},

init = function(){ // appends message divs, & sets initial values for positioning arrays
 if(!isNaN(window.pageYOffset)){
  ymouse += window.pageYOffset;
  xmouse += window.pageXOffset;
 } else init.nopy = true;
 for (var d, i = n; i > -1; --i){
  d = document.createElement('div'); d.id = 'iemsg' + i;
  d.style.height = d.style.width = a + 'px';
  d.appendChild(document.createTextNode(msg[i]));
  oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
 };
 o.appendChild(oi); document.body.appendChild(o);
 setInterval(drag, 25);
},

ascroll = function(){
 ymouse += window.pageYOffset;
 xmouse += window.pageXOffset;
 window.removeEventListener('scroll', ascroll, false);
};

o.id = 'outerCircleText'; o.style.fontSize = size + 'px';

if (window.addEventListener){
 window.addEventListener('load', init, false);
 document.addEventListener('mouseover', mouse, false);
 document.addEventListener('mousemove', mouse, false);
  if (/Apple/.test(navigator.vendor))
   window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
 window.attachEvent('onload', init);
 document.attachEvent('onmousemove', mouse);
};

})();

</script></head>
<body> Move your Mouse :P
</br>
Enjoy..!!
</body>
</html>

*Hit a comment if you like this.