PC with Built-in Monitor

Shuttle D10, which was introduced a couple of months ago, is slated for a release in Japan this week.

As you can see on the picture, there's an embedded seven-inch display on the body of the desktop PC itself. It's a touch LCD display, but its resolution is a mere 800x400 pixels, so if you intend to seriously use the computer, you still have to attach a monitor to it.

Source:

Talk to your phone...


My fingers were aching after those long hours of messaging...
I sat wondering why dont someone find a mobile where i can just speak and my voice is converted to message [ SMS] and sent...

Today when i came across this, i was really struck . Yes they have found a mobile which can recognise the voice and convert them..

Now you can talk to your phone and it understands you.

vlingo is voice recognition for smart phones, the Blackberry to start. With it, I can speak a command (e.g., “open calendar"), dial by voice a phone number in my contact list, or dictate an e-mail or SMS message.

source:

JAVA.NEXT

Four languages which together represent "Java.next"
         Clojure, Groovy, JRuby, and Scala. 
Stuart Halloway has explored and compared all these four most interesting new JVM languages.               
Each of these languages aims to greatly simplify writing code for the JVM, and all of them succeed in this mission.

Clojure is a Lisp. 
Groovy is the "almost Java" choice. 
JRuby has the beauty of Ruby, and the mindshare of Rails. 
Scala, unlike the others, brings the notion that we need more static typing.

Read about them in 

Google's name...

Google changed name or is it just by mistake...
Watch the picture to see the missing "l"

















Google gives an explanation for the missing letter here in 

Source : 

Google Code Prettify

If u want code samples to be syntax-highlighted on your blog. Pure CSS would not work, unless the code samples were completely messed up with spans and divs to indicate which style to apply to every word, number or punctuation.

If u want something like this, where some part of the code needs to be highlighted ....



You can opt for google code prettify


The coding is very simple
<html>
<head>
<title>Example</title>
<link href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>
</head>
<body onload="prettyPrint()">
<h1>C</h1>
<pre class="prettyprint">void
main(char* argv[])
{
printf("Hello, Bob.\n");
}</pre>
<h1>Java</h1>
<pre class="prettyprint">public class Main {
public static void main(final String[] args) {
System.out.println("Hello, Bob.");
}
}</pre>
<h1>Shell</h1>
<pre class="prettyprint">echo "Hello, Bob."</pre>
</body>
</html>



Source :
http://jroller.com/dschneller/entry/google_code_prettify
http://binkley.blogspot.com/2007/04/googles-excellent-code-coloring.html