Must have gadgets for window7
In window 7 there is 9 gadgets which are already available for use but other then these gadgets you can download them from windows personalized gadgets gallery
Window8 Powered Apps
Windows 8 gives you the important apps you need for your daily life, including a touch browser. And Windows Store delivers everything you expect for getting apps. You’ll find the apps you want. You can be confident that they’re very safe because MS screen them. You’ll enjoy the flexibility of browsing, downloading, and buying or trying.
SEND FREE TEXT MESSAGES TO ANY MOBILE NUMBER
There are lots of apps that can send free text messages but those usually aren't free or will send texts from numbers other than your phone. This free service can send free texts to any mobile number in the world coming from your own phone number.
Thursday, July 18, 2013
Deciding between PHP top frameworks.
4:02 AM
Parasharmaneesh
PHP frameworks are in market for a long time now.They help a PHP developer to write clean and reusable code. It follows the MVC pattern, ensuring a clear separation of logic and presentation. But there is a much discussion all around because some prefer performance, some prefer better documentation, some prefer amount of built-in functions etc.
Here we will discuss some top frameworks.
Yii vs CodeIgniter vs Zend vs Cakephp Comparison Chart
Statistically, currently yiiframework is the best php framework in the market and my favorite. The main features that makes Yii on top spot is its features and a bit faster than Codeigniter and Zend framework.
Statistically, Codeigniter comes on second spot. It’s a choice of most of php developer. It’s relatively easy to learn. Feature wise, Codeigniter is powerful frameworks such as Zend and Cake. Its major goal is to enable you to develop projects much faster than you could, by providing a rich set of libraries for commonly needed tasks, as well as a simple interface and logical structure to access these libraries.
Statistically, Zend Framework comes on third spot. It’s a powerfull PHP Framework which is more secure, reliable and allow Web 2.0 applications & web services. It is used in building big applications.
Statistically, CakePHP comes on 4th spot. It’s a popular framework for web application development. It comes comes with a lot of features: code generation, translations, database access, caching, validation, authentication etc.
Tuesday, July 16, 2013
Google as proxy server!
5:52 AM
Parasharmaneesh
You must be having trouble in accessing blocked sites at your office or school.To overcome this problem many of you must have used proxy servers.How about using google as proxy server.
Google provide couple of proxy servers that you can use access blocked sites at your workplaces.
1. Google Translate as a Proxy
To use Google Translate as a proxy, set the destination language as the actual language of the page and the source language as anything but the destination language.
e.g. http://translate.google.com/translate?sl=ja&tl=en&u=http://example.com/
2. Google Mobilizer as a Proxy
Next in the list is Google’s Mobilizer service. Google has discontinued the main mobilizer service on google.com (secure) but you can still access it through any country-specific Google domain like google.co.in or google.ie. The URL would be:
http://www.google.ie/gwt/x?u=http://example.com/ (example
3. Google Modules as a Proxy
The gmodules.com domain is part of the Google personalized homepage service and is primarily used for hosting gadgets that are available for the Google homepage.
http://www.gmodules.com/ig/proxy?url=http://example.com/ (example)
Tuesday, July 9, 2013
Create a ball game in HTML5 and JQuery
5:44 AM
Parasharmaneesh
<canvas id="myCanvas" width="200" height="100"
style="border:1px solid #000000;">
</canvas>
style="border:1px solid #000000;">
</canvas>
Using this html canvas tag and jquery we will make simple ball game.Firstly i will show you main parts of code.
Lets start with html code.Copy below code and save in file with .html extension.
<!DOCTYPE html>
<html>
<head>
</head>
<body >
<div style="border:solid 5px;height:100%">
<canvas id="mybar1" width="150" height="25" style="padding:5px;bottom:0px;left:10px;position:absolute">
Your browser does not support the HTML5 canvas tag.
</canvas>
<canvas id="myCanvas" width="1300" height="600">
</canvas>
</div>
<div id="watermark"><p><center>Game By Money</center></p></div>
</body>
</html>
Now lets add some life to code by adding some js.
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
var a=0;
var maxy=$("div").width();
var maxx=$("div").height();
var c=document.getElementById("mybar1");
var ctx=c.getContext("2d");
ctx.fillStyle="#FF0000";
ctx.fillRect(0,0,150,25);
var c=document.getElementById("myCanvas");
var context;
var x=maxy;
var y=maxx;
var dx=5;
var dy=5;
function init()
{
context= myCanvas.getContext('2d');
setInterval(draw,10);
}
function draw()
{
context.clearRect(0,0, maxy,maxx);
context.beginPath();
context.fillStyle="#0000ff";
// Draws a circle of radius 20 at the coordinates 100,100 on the canvas
context.arc(x,y,20,0,Math.PI*2,true);
context.closePath();
context.fill();
// Boundary Logic
if( x<0 || x>maxy) dx=-dx;
if( y<0 || y>maxx) dy=-dy;
var position=$("#mybar1").offset();
if (x < position.left + 150 && x + 40 > position.left &&
y < position.top + 25 && y + 40 > position.top) {
// The objects are touching
dy=-dy;
}
x+=dx;
y+=dy;
if(y>maxx)
alert("Game Over");
}
$(document).keydown(function(e) {
switch (e.which) {
case 37:
if(a>25){
a=a-25;
document.getElementById("mybar1").style.left = a + "px";
}
break;
case 39:
if(a+170<maxy){
a=a+25;
document.getElementById("mybar1").style.left = a + "px";
}
break;
}
});
</script>
Now we give some colors to game adding css.
<style type="text/css">
#watermark {
color: #d0d0d0;
font-size: 100pt;
position: absolute;
width: 50%;
height: 50%;
margin: 0;
z-index: -1;
left:350px;
top:0px;
}
Now we have understood all main parts of coding.
Below is the full code:
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#watermark {
color: #d0d0d0;
font-size: 100pt;
position: absolute;
width: 50%;
height: 50%;
margin: 0;
z-index: -1;
left:350px;
top:0px;
}
</style>
</head>
<body onLoad="init();" style="position: absolute;
height: 93%;
top: 0px;
bottom: 0px;
width: 98%;">
<div style="border:solid 5px;height:100%">
<canvas id="mybar1" width="150" height="25" style="padding:5px;bottom:0px;left:10px;position:absolute">
Your browser does not support the HTML5 canvas tag.
</canvas>
<canvas id="myCanvas" width="1300" height="600">
</canvas>
</div>
<div id="watermark"><p><center>Game By Money</center></p></div>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
var a=0;
var maxy=$("div").width();
var maxx=$("div").height();
var c=document.getElementById("mybar1");
var ctx=c.getContext("2d");
ctx.fillStyle="#FF0000";
ctx.fillRect(0,0,150,25);
var c=document.getElementById("myCanvas");
var context;
var x=maxy;
var y=maxx;
var dx=5;
var dy=5;
function init()
{
context= myCanvas.getContext('2d');
setInterval(draw,10);
}
function draw()
{
context.clearRect(0,0, maxy,maxx);
context.beginPath();
context.fillStyle="#0000ff";
// Draws a circle of radius 20 at the coordinates 100,100 on the canvas
context.arc(x,y,20,0,Math.PI*2,true);
context.closePath();
context.fill();
// Boundary Logic
if( x<0 || x>maxy) dx=-dx;
if( y<0 || y>maxx) dy=-dy;
var position=$("#mybar1").offset();
if (x < position.left + 150 && x + 40 > position.left &&
y < position.top + 25 && y + 40 > position.top) {
// The objects are touching
dy=-dy;
}
x+=dx;
y+=dy;
if(y>maxx)
alert("Game Over");
}
$(document).keydown(function(e) {
switch (e.which) {
case 37:
if(a>25){
a=a-25;
document.getElementById("mybar1").style.left = a + "px";
}
break;
case 39:
if(a+170<maxy){
a=a+25;
document.getElementById("mybar1").style.left = a + "px";
}
break;
}
});
</script>
</body>
</html>
Tuesday, June 18, 2013
Tuesday, January 15, 2013
synchronize audio in vlc
11:47 PM
Parasharmaneesh
Watching a video whose audio is about one second too slow. Here's a quick fix for the problem in VLC.
We've shown you how to do this by digging into VLC's preferences, but it turns out there are some very simple keyboard shortcuts to fix this problem. While you're watching the video, just press the
J
or K
keys to move the audio back or forward 50 milliseconds, respectively. Quick, easy, and no advanced fiddling required.