This notebook is a collection of code snippets and technical "how to" instructions.
Search This Blog
Wave extensions preview is now available
by: Zainab Azizhttp://wave.google.com/help/wave/extensions.html
Guidelines for Website content and design
by: Zainab Aziz- 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
OmniPlan crashing... solution
by: Uki D. LucasFlex: skinning the UI
by: Uki D. Lucashttp://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#
GWT: how to make your Composite widget clickable
by: Uki D. LucasCSS sprites
by: Uki D. Lucas.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...
Microsoft Tells Users Not to Install Google Chrome Frame | Search Engine Optimization & Internet Marketing (SEO & SEM) Blog
by: Uki D. LucasGoogle Chrome!
http://www.deondesigns.ca/blog/microsoft-tells-users-not-to-install-google-chrome-frame/
How to separate UI from code in GWT
by: Uki D. LucasTwitter gets $100 million more in financing...
by: Uki D. LucasIE 8 Web Site Troubleshooting Guidance
by: Philhttp://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