Actually AIM, No

This pops up every time I sign into Meebo now. Hey, AIM, I don't use your crappy IM product for a reason. Harassing me further is only encouraging me to abandon my AIM account altogether.

This pops up every time I sign into Meebo now. Hey, AIM, I don't use your crappy IM product for a reason. Harassing me further is only encouraging me to abandon my AIM account altogether.

*swoon*Guess who. And when they turn around, they see Bill Murray and hear the words "No one will ever believe you."Last question. I have to know, because I love this story and want it to be true. There have been stories about you sneaking up behind people in New York City, covering their eyes with your hands, and saying:
I know. I know, I know, I know. I've heard about that from a lot of people. A lot of people. I don't know what to say. There's probably a really appropriate thing to say. Something exactly and just perfectly right. [long beat, and then he breaks into a huge grin] But by God, it sounds crazy, doesn't[long pause]
I will likely be using Twilio for SMS integration in future projects. What really sold me was this infographic that they used to demonstrate how easy it is to programmatically send an SMS. Interestingly though, they didn't appear when I did a Google search for how to programmatically send a text message.
One thing is certain, though: In the unlikely event that Earth is invaded by E.T., resistance will indeed be futile. Says Shostak, “If they have the technology to come here and try to take over, it’s going to be Bambi Meets Godzilla. And we’re Bambi.”
I'm finally starting to realize just some of the really neat stuff you can accomplish with just HTML and CSS. Recently, I needed to make a simple calendar widget to display what day something occurs. I ended up with this, which I think looks pretty snazzy:

<div class="calendar">
<span class="month">Jul</span>
<span class="day">31</span>
</div>Obviously, this doesn't get us much, but it does set the stage for customizing things with CSS. Here's a quick rundown to get the right layout:
html { font-family: Helvetica, Arial; }
.calendar { width: 54px; height: 60px; font-size: 0.8em; background: #eee; border: 1px solid; }
.calendar > span { display: block; }
.calendar > .month { text-align: right; padding: 2px 5px 2px 0; }
.calendar > .day { text-align: center; font-weight: bold; font-size: 2.3em; }I got the 54 pixel width by playing around until I found something I liked. The background and border are temporary placeholders, just so that we can get a feel for how everything will look. That yields us this:

.calendar > .month { background: #6086a6; color: #fff; font-weight: bold; }
.calendar > .day { background: #fff; }
This gives us a little more in the aesthetics department, and a couple of years ago, we'd either have to stop here, or start slicing things up and using images for backgrounds. But now with CSS3, we can add rounded corners, gradients, and a bunch of other great effects. Further, the nice thing about this approach is that it degrades gracefully in older browsers. They don't get the pretty effects, but like I said, that widget is good enough, and it provides them a gentle push to upgrade.
First, let's round off those sharp corners.
.calendar {
-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
}
.calendar > .month {
-webkit-border-top-left-radius: 5px; -moz-border-radius-topleft: 5px;
-webkit-border-top-right-radius: 5px; -moz-border-radius-topright: 5px;
border-top-left-radius: 5px; border-top-right-radius: 5px;
}
.calendar > .day {
-webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px;
-webkit-border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px;
}Now, if you aren't familiar with CSS3, you might not know what the "-webkit" and "-moz" prefixes are. CSS3 still hasn't been completely nailed down, but the browser makers wanted to start implementing features without waiting for the standards committees to finalize everything. So, they added their own implementations. Safari, Chrome, and other webkit based browsers use "-webkit". Mozilla based browsers (Firefox) use "-moz". Opera uses "-o" (and it's omitted here for length, and also because nobody uses Opera). Internet Explorer... sucks doesn't really do CSS3 at this juncture. Technically it uses it's own special filter syntax, and with a little bit of googling, you can find it too.
Anyways, back to our widget. We have to add the top and bottom radii to the .month and .day elements because their backgrounds will bleed over the calendar rounded corners and look ugly. Additionally, the border doesn't work so great with the rounded corners, so get rid of it. We can do something better than it anyways, the box-shadow.
.calendar {
box-shadow: 0 0 5px #05587e; -moz-box-shadow: 0 0 5px #05587e;
-webkit-box-shadow: 0 0 5px #05587e;
}That gives us a nice glowy look all the way around the widget.

Looking better! But there is still a little more we can do. Let's change the background to a gradient.
.calendar > .month { text-shadow: 0 1px #000;
background: -webkit-gradient(linear, left top, left bottom, from(#acc0d1), to(#6086a6));
background: -moz-linear-gradient(top, #acc0d1, #6086a6);
}
.calendar > .day { text-shadow: 0 1px #fff;
background: -webkit-gradient(linear, left top, left bottom, from(#405b72), to(#e6e6e6), color-stop(.08,#f9f9f9));
background: -moz-linear-gradient(top, #f9f9f9, #e6e6e6);
}This gives us the nicer looking backgrounds. Additionally, the text-shadows make the text feel slightly more 'etched'. It probably isn't something you'd want to use all over the place, but here it looks good.

There you have it! With a bit of CSS3, you can really turn up the heat on your HTML, and even ditch the tedium of sizing and uploading gradients.
I uploaded the whole source to github, which might be a little overkill for something this small, but I'm trying to start doing more thing in the public square.
This is why [non-Microsoft] software development on Windows kind of sucks. Every new and neat thing will always be treated as a second-class citizen.