tutorials for developers using Android, Google Web Toolkit (GWT), Arduino, and much more...
Wednesday, September 30, 2009
Wave extensions preview is now available
http://wave.google.com/help/wave/extensions.html
Tuesday, September 29, 2009
Guidelines for Website content and design
- Provide useful content and meaningful information for users. Write clear and cohesive pages that appeal to a specific topic of interest.
- Engage users in your pages, i.e. create meet-up, start blogging, connect to social networking, post how-to-dos, write professional articles, etc. You can also provide incentives that encourages users to participate in your site
- Create a list of keywords for your pages, and be sure to include them in your page. This will help search engines identify your site when users search for similar keywords.
- Create a labels or tags list for your pages in order to help users quickly find information on your site.
- Include useful links in your site to your own pages or external page.
- Use text instead of images to describe your topic. While an image is worth thousand words, using images alone as site content does not provide user with helpful information.
See more information on online social networking:
http://ukitech.blogspot.com/2009/09/why-online-social-media-is-relevant-to.html
Monday, September 28, 2009
OmniPlan crashing... solution
Flex: skinning the UI
http://www.adobe.com/devnet/flex/quickstart/skinning_components/
http://www.loscavio.com/downloads/blog/flex3_css_list/flex3_css_list.htm
http://www.adobe.com/devnet/flex/articles/skins_styles.html
http://www.alagad.com/blog/post.cfm/flex-simple-skinning-example
http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExplorer.html#
Sunday, September 27, 2009
GWT: how to make your Composite widget clickable
CSS sprites

.icon_favorite {
background: url("images/icons001.png") no-repeat;
background-position: -928px 0px;
width: 30px;
height: 30px;
cursor: pointer;
}
.icon_facebook {
background: url("images/icons001.png") no-repeat;
background-position: -1264px 0px;
width: 30px;
height: 30px;
cursor: pointer;
}
.icon_edit {
background: url("images/icons001.png") no-repeat;
background-position: -1299px 0px;
width: 30px;
height: 30px;
cursor: pointer;
}
Then GWT code to use that style, notice I use HTML, not Image for that icon.
HTML submitToFacebook = new HTML("");
submitToFacebook.setStyleName("icon_facebook");
submitToFacebook.setTitle("Click to post this recipe on Facebook");
...
HTML edit = new HTML("");
edit.setStyleName("edit_facebook");
edit.setTitle("Click to edit this recipe");
...
And that is it...
Saturday, September 26, 2009
Microsoft Tells Users Not to Install Google Chrome Frame | Search Engine Optimization & Internet Marketing (SEO & SEM) Blog
Google Chrome!
http://www.deondesigns.ca/blog/microsoft-tells-users-not-to-install-google-chrome-frame/
How to separate UI from code in GWT
Friday, September 25, 2009
Twitter gets $100 million more in financing...
IE 8 Web Site Troubleshooting Guidance
http://code.msdn.microsoft.com/IE8/Release/ProjectReleases.aspx?ReleaseId=3189
Here's the run down
- Developer Tools Explanation
- IE Team Debugging Process Explanation
- Common Issues



