Tuesday, June 19, 2007

Howto design a web site - early site wireframes

Early wireframes created by frog design for the onair.adobe.com website.


Microsoft Surface: The future of computing ?


The coffee table that will change the world. Read more

Thursday, June 14, 2007

Flex MP3 Player Tutorial

Simple MP3 player tutorial at vipercreations.com

For this tutorial we're going to use the audioManager actionscript class from dhtmlnirvana to play all the sounds.

There are several ways you can do this, but this is probably the simplest.

What we are going to do is create a drop down box which is the song list. The data for the song list is got from an external XML file using an HTTP service.

When the user selects a new song from the dropdown box, the song that is currently playings stops and the new one begins. Our actionscript class knows which song to play using an internal array of songs.

Tuesday, June 12, 2007

Easy flash ebooks creation

Flipping Book provides as set of componets that makes the creation of Flash based e-books easy.

Online Demos available

Monday, June 11, 2007

MX Toolbox

http://www.mxtoolbox.com/ provide a number of useful mx tools:
  • mxlookup
  • blacklists check
  • diagnostics tools
  • etc

Sunday, June 10, 2007

Eclipse: Help Wanted: Test the new download page and packages

From Ian's blog

Something we would like to accomplish during the Europa release is to make it easier for our user community to download Eclipse. The existing download model requires you to start with the SDK and then start adding projects and features. However, for the millions of Eclipse users the SDK is a bit of overkill, if you are really just are using Eclipse as a Java IDE. Or if you want to use Eclipse as a C/C++ IDE it is not that obvious what to download when you visit our download page.

Free Web Designs for Download

An interesting article where author has collect web sites that offer free web design templates.
A visually appealing website design will not result in lots of recurring visitors if you don't have good content. In contrast bad, old-fashioned, or boring designs may well be accepted by a loyal readership if you have good content. To have both good content and a good design is invaluable.

iconlet.com - icon search engine

iconlet.com is google like icon search engine available at http://www.iconlet.com

Saturday, June 9, 2007

Something is missing

I'm just not that i was few minutes ago.

Friday, June 8, 2007

Web 2.0 Design

How web 2.0 web sites must look like!

Three great tutorials at http://www.designphase.net/

eclipsequest.com - eclipse search engine

eclipsequest.com is a search for eclipse related material. This search engine results are from eclipse related websites and/or blogs.

Example queries:

Absolute path to plugin's resource

We want the absolute path to "demo/test.txt" in our plugin with id "com.example.plugin"

code

String pluginId = "com.example.plugin";
String pluginRelativePath = "demo/test.txt";
Bundle bundle = Platform.getBundle(pluginId);
URL url = bundle.getEntry(pluginRelativePath);
URL resolvedUrl = null;
try {
resolvedUrl = FileLocator.resolve(url);
} catch (IOException e) {
// TODO: handle exception
}