Answer:
web service api changed! fix asap. Thanks.
Answer:
Web service api changed! fix asap. Thanks!
Answer:
Ok, il problema sono le API di Google: le sta dismettendo per creare un servizio a pagamento e sta riducendo il numero di richieste che possono essere inviate all’API.
Soluzione: usarò altre API.
31 CSS Code Snippets To Make You A Better Coder | Design your way - http://goo.gl/1dQnE - via @HTML5aldente
My first Google Chrome extension: https://chrome.google.com/webstore/detail/goanabmlmgfinmjohhepcpffcnkeobjm
invoke foo.apply(w,[x,y,z]); it’s equivalent to invoke foo(x,y,z); with this equal to w.
Example:
foo = function(a,b,c) {
return (a+b+c)*this.x;
}
foo.apply({x:4},[1,2,3]);
// returns 24 (1+2+3)*4 = 6*4 = 24
Rotate foo 90 deg clock wise:
div.rot90{
-webkit-transform : rotate(90deg);
-moz-transform : rotate(90deg);
-o-transform : rotate(90deg);
}
Full example:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tip CSS3, 2D transforms: rotate</title>
<style>
body{
font:24px 'museo 300';
}
div{
width:100px;
height:100px;
background:#668EB1;
color:#FFF;
margin:20px;
padding:10px;
border-radius:0 40px 0 0;
}
div.rot90{
background:#F79300;
color:#000;
-webkit-transform : rotate(90deg);
-moz-transform : rotate(90deg);
-o-transform : rotate(90deg);
}
</style>
</head>
<body>
<div>Hello, world.</div>
<div class="rot90">Hello, world.</div>
</body>
</html>
jQTouch Cheat Sheet: use it with phonegap to create iPhone and Android apps based on HTML5, CSS and JavaScript).
A typeface born in a little town called San Vito lo Capo in Sicily (Italy).
My Opinion: a beautiful font!