Archive for May, 2010

Docs.com

At first glance docs.com seems much better than google docs, the uploaded documents look exactly the same as on the desktop. And it’s not in Silverlight as I predicted a year ago :) . The UI looks exactly the same as Office 2010.

It seems that the specs for the Powerpoint Web editor are public, you can now build your own ppt editor over the cloud :) .

Microsoft Dev Meeting in Bucharest

This evening: http://ronua.ro/CS/forums/t/7485.aspx

CSS New Features

Wouldn’t it be really great if CSS had the following:

div.leftcol % div.col // inherit from class div.col
{
float:left;
}

and also:

.header
{
font-size:12px;
h1 {
color: red;
}
}

equivalent to:

.header {
font-size: 12px;
}
.header h1 {
color: red;
}