Content feed Comments Feed

Mechanical tumor, external heart, elastic cell - CPU Load Meter

Interactive media artist Mio I-zawa’s “mechanical tumor” is a quivering hunk of fleshy, organic-looking material that expands and contracts depending on the amount of stress your computer is experiencing ....
Your Ad Here

Dell Latitude Z: 16-inch notebook weighs 4.5 pounds, charges wirelessly

Dell’s got something for the business set today in the 16-inch Latitude Z, a $2000 notebook that measures just over half an inch thick, weighs 4.5 pounds, and charges wirelessly ....
Your Ad Here

The Very First Lighter Phone SB6309

Although I fully admit to chuckling quite a bit after first seeing this cellphone with a built-in cigarette lighter, I can see some practicality with it. After all, I can’t tell you how many times I’ve heard of my smoking friends losing their lighter. I’ve been asked numerous times if I happen to have a lighter on me, despite that they’re fully aware I don’t smoke. Having a lighter built into your cellphone would come in incredibly handy. After all, your phone is almost always somewhere within reach.....
Your Ad Here

Useful Advices

Posted by Wonderful-Tricks

Please read below. Very useful.

1) Do not drink APPY FIZZ . It contains cancer causing agent.

2) Dont eat Mentos before or after drinking Coke or Pepsi coz the person will die immediately as the mixture becomes cyanide.. Please fwd to whom u care



3) Don't eat kurkure because it contains high amount of plastic if U don't Believe burn kurkure n u can see plastic melting. News report from Times of India

4) Avoid these tablets they are very dangerous
* D cold
* Vicks action- 500
* Actified
* Coldarin
* Cosome
* Nice
* Nimulid
* Cetrizet-D
They contain Phenyl- Propanol -Amide PPA.Which Causes strokes, and these tablets are banned in U.S.

5) Cotton Ear Buds.... (Must read it)

Please do not show sympathy to people selling buds on roadside or at Signals..... Just wanted to warn you people not to buy those packs of ear buds you get at the roadside. It's made from cotton that has already been used in hospitals.They take all the dirty, blood and pus filled cotton, wash it, bleach it and use it to make ear buds.. So, unless you want to become the first person in the world to get Herpes Zoster Oticus (a viral infection of the inner, middle, and external ear) of the ear and that too from a cotton bud, DON'T BUY THEM!

6) Don't put your mobile closer to your ears until the recipient answers, Because directly after dialing, the mobile phone would use it's maximum signaling power, which is: 2watts = 33dbi. Please Be Careful. Please use left ear while using cell (mobile), because if you use the right one it may affect brain directly.This is a true fact from Apollo medical team.

Please forward to all this may be helpful for someone..... ......

Labels Cloud Widget For Blogger as you have seen labels in cloud formats i.e in big font and some in small font appearing in like an cloud in sky.This is very old hack and trick or widget used by most of the bloggers or you can say them as an labels showing in tags format,if you have many labels in blogspot then it will have an good widget for you as will get more attention from your readers.



As before i had an early post on how to to flash animated label cloud widget for blogger blog if you want your labels in moving or animated format get it from there.

Now i will tell you how to install label cloud widget for blogger.

Log in into blogger
Click Layout.
Click Edit HTML tab
Click Download Full Template and back up the template first.

Find the closing skin tag ]]></b:skin>

And place the below code right BEFORE that.

/* Label Cloud Styles
----------------------------------------------- */
#labelCloud {text-align:center;font-family:arial,sans-serif;}
#labelCloud .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}
#labelCloud ul{list-style-type:none;margin:0 auto;padding:0;}
#labelCloud a img{border:0;display:inline;margin:0 0 0 3px;padding:0}
#labelCloud a{text-decoration:none}
#labelCloud a:hover{text-decoration:underline}
#labelCloud li a{}
#labelCloud .label-cloud {}
#labelCloud .label-count {padding-left:0.2em;font-size:9px;color:#000}
#labelCloud .label-cloud li:before{content:"" !important}

Now Find for </head> and place the below codes before it

<script type='text/javascript'>
// Label Cloud User Variables
var cloudMin = 1;
var maxFontSize = 20;
var maxColor = [0,0,255];
var minFontSize = 10;
var minColor = [0,0,0];
var lcShowCount = false;
</script>

You can change all sizes and colors in above codes to alter the widget according to your needs.

Now Expand your widgets in your html i.e checkmark the option to expand widgets and search for below line

<b:widget id='Label1' locked='false' title='Labels' type='Label'/>

And replace it with below codes:-

<b:widget id='Label1' locked='false' title='Label Cloud' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>

<div class='widget-content'>
<div id='labelCloud'/>
<script type='text/javascript'>

// Don't change anything past this point -----------------
// Cloud function s() ripped from del.icio.us
function s(a,b,i,x){
if(a&gt;b){
var m=(a-b)/Math.log(x),v=a-Math.floor(Math.log(i)*m)
}
else{
var m=(b-a)/Math.log(x),v=Math.floor(Math.log(i)*m+a)
}
return v
}


var c=[];
var labelCount = new Array();
var ts = new Object;
<b:loop values='data:labels' var='label'>
var theName = &quot;<data:label.name/>&quot;;
ts[theName] = <data:label.count/>;
</b:loop>

for (t in ts){
if (!labelCount[ts[t]]){
labelCount[ts[t]] = new Array(ts[t])
}
}
var ta=cloudMin-1;
tz = labelCount.length - cloudMin;
lc2 = document.getElementById('labelCloud');
ul = document.createElement('ul');
ul.className = 'label-cloud';
for(var t in ts){
if(ts[t] &lt; cloudMin){
continue;
}
for (var i=0;3 &gt; i;i++) {
c[i]=s(minColor[i],maxColor[i],ts[t]-ta,tz)
}
var fs = s(minFontSize,maxFontSize,ts[t]-ta,tz);
li = document.createElement('li');
li.style.fontSize = fs+'px';
li.style.lineHeight = '1';
a = document.createElement('a');
a.title = ts[t]+' Posts in '+t;
a.style.color = 'rgb('+c[0]+','+c[1]+','+c[2]+')';
a.href = '/search/label/'+encodeURIComponent(t);
if (lcShowCount){
span = document.createElement('span');
span.innerHTML = '('+ts[t]+') ';
span.className = 'label-count';
a.appendChild(document.createTextNode(t));
li.appendChild(a);
li.appendChild(span);
}
else {
a.appendChild(document.createTextNode(t));
li.appendChild(a);
}
ul.appendChild(li);
abnk = document.createTextNode(' ');
ul.appendChild(abnk);
}
lc2.appendChild(ul);
</script>

<noscript>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<b:if cond='data:blog.url == data:label.url'>
<data:label.name/>
<b:else/>
<a expr:href='data:label.url'><data:label.name/></a>
</b:if>
(<data:label.count/>)
</li>
</b:loop>
</ul>
</noscript>
<b:include name='quickedit'/>
</div>

</b:includable>
</b:widget>

Now preview your template if goes all right save your template.I hope it would be working fine for you.If still you have any problem with this tutorial or need more details about the widget read the original post from here with all necessary details.

Credits:Anshul

Have a look at Office 2010

Posted by Wonderful-Tricks

Office 2007 SP2 is now officially available in Microsoft download center .Meanwhile, they have also previewed office 2010 , the predecessor of office 2007 . Office 2010 features are yet to be announced , but you would get a quick idea from these screenshots .



Office 2010 screenshots

Voice mail in Outlook 2010


Outlook 2010 screenshots



Office 2010 Word screenshots :




Office 2010 Word screenshots



Word 2010 splash screen :



Word 2010 splash screen



 Office 2010 Excel Screenshots:



Office 2010 Excel Screenshots





Office 2010 about page Screenshot:



Office 2010 about page Screenshot



Office 2010 beta releases will be available by mid 2009 and final release would be in 2010 .


Blogumulus by Wonderful-Tricks

Followers