
To translate a document, just go to Tools » Translate Documents and choose the language of your choice. Google automatically detects the language the current document is written in.

Labels: Linked


Labels: Linked

I only got 873671 torrents, but according to the website the tracker tracks over 2 million torrents. The discrepancy is most likely due to many torrent files including the TPB tracker but has not been uploaded to the web site.The good news is that BTARENA, previously a well-known torrent blog, has put up a copy of this torrent. You can browse, download and share torrents which are available in TPB through BTARENA. The site works perfectly except the search feature, which will be fixed as the admins claim.
Labels: News
Mozilla takes user privacy very seriously. Being a test pilot means that you will be the one to test the product, and it is not you that will be tested. We are only interested in your feedback on the product features, not information about you. Depending on the particular test, the Test Pilot extension may automatically collect some data about the product being tested, but you have control of deciding whether to submit this data.Currently, there's no feature to test-pilot. But a survey is going on.
Labels: Tips

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>apple text effect</title>
<style type='text/css'>
body {
font-size: 14px;
line-height:1.3em;
text-align:center;
}
a, a:visited {
outline:none;
}
.clear {
clear:both;
}
#wrapper {
width:960px;
margin:0 auto;
text-align:left;
}
</style>
</head>
<body>
<div id='wrapper'>
</div>
</body>
</html>
This is pretty simple. In case, you are wondering why I put text-align:center for body and then text-align:left for #wrapper, you can find out why.<div id='wrapper'> we put the following code:<h1 class="drop-shadow"> <div class="text">Apple Leopard Text Effect</div> <div class="shadow">Apple Leopard Text Effect</div> </h1>Here, we created two divs inside
<h1> and the two divs contain the same text. The class-names of the divs explains it all — the first div contains the text and the second div will work as the shadow.<style> tag we add the following lines of CSS.h1 {
font-family: "Lucida Grande";
font-size:1.5em;
color: #444444;
}
div.text {
color: #444444;
display:block;
height:1px;
max-height:1px;
position:relative;
z-index:5;
text-transform: uppercase;
}
div.shadow {
color: #f4f4f4;
display:block;
position:relative;
text-transform: uppercase;
z-index:1;
}
First, we have styled the <h1> tag with simple properties — a simple color, font-family set to Lucida Grande and increased font-size. Next, we styled two divs. The positions for both the divs are set to relative. This is important. Also notice that the z-index for the first div is higher than the second one. This is because we want the first div to appear over the second one.<h1> tag, we let go of both of them. That is we should have,<h1 class='drop-shadow'>Apple Leopard Text Effect</h1>Now, we add jQuery to our html file.
<script type='text/javascript' src='jquery.js'></script>Next, we add this javascript snippet within
<head> tag.<script type='text/javascript'>
$(function() {
if($.browser.mozilla) {
$("h1.drop-shadow").each(function(){
var text = $(this).html();
$(this).html("<div class='text'>"+text+"</div><div class='shadow'>"+text+"</div>");
});
}
});
</script>
The snippet first checks whether the browser is firefox or not. (Note that $.browser has been deprecated since jQuery 1.3. Here I am using an earlier version.) If the browser is Firefox, the snippet then parses each <h1> tag with class-name drop-shadow and replaces the text with two divs.Labels: Apple, css, javascript, Tutorials

copy /b image.jpg + torrent_file.torrent new_image.jpgNow, just rename new_image.jpg to new_image.torrent and you have got it!





Labels: Cool Stuff

Labels: Softwares

sudo apt-get install ubuntuone-client-gnome