Wave extensions preview is now available
http://wave.google.com/help/wave/extensions.html
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
Reminder about your invitation from Uki Dominque Lucas
Dear Blog, This is a reminder that on September 14, Uki Dominque Lucas sent you an invitation to become part of their professional network at LinkedIn. Follow this link to accept Uki Dominque Lucas's invitation. https://www.linkedin.com/e/isd/736202449/DxAPBbC7/ Signing up is free and takes less than a minute. This is a reminder that on September 14, Uki Dominque Lucas sent you an invitation to become part of their professional network at LinkedIn. The only way to get access to Uki Dominque Lucas's professional network is through the following link: https://www.linkedin.com/e/isd/736202449/DxAPBbC7/ You can remove yourself from Uki Dominque Lucas's network at any time. -------------- © 2009, LinkedIn Corporation OmniPlan crashing... solutionFor last few days my OmniPlan 1.6.3 was crashing on my MacBook Pro. Deleting the app (prescribed uninstallation) and installing fresh version did not help. After the talk with the (very nice) customer support I deleted all of the ... com.omnigroup.OmniPlan.plist files the app starts with no problems. I am very happy!
As an Amazon Associate I earn from qualifying purchases.
As an Amazon Associate I earn from qualifying purchases.
Flex: skinning the UI
Here are a few useful links...
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#
find similar posts:
Flex3
GWT: how to make your Composite widget clickableby implementing HasClickHandlers
CSS sprites
CSS sprites are a great way to SPEED UP your application, and simplify the design changes. You save in two ways:
1) amount of HTTP calls, each call has a relatively large overhead compared to small icon file it fetches 2) putting many small files into single saves a lot of "weight" as well Take example of these icons, each about 37 kb... When combined into a single file they weight ONLY 49 kb, that is from about total of 250 kb, including all other icons I have put into it. You want to put your files into a narrow image to make it convenient for yourself, you will use your favorite graphic tool (Pixelmator, Photoshop) to measure where the icon starts. I made all my icons 30 pixel tall. Here I am interested in Facebook (heart icon) and I see that it starts at about 1264 pixels (X coordinate), since Y is ALWAYS at 0 pixels, and width and height are 30 pixel, that is all I need... Finally, I write a simple to understand CSS style:
Then GWT code to use that style, notice I use HTML, not Image for that icon.
And that is it... Updated (after receiving some feedback): I still like the CSS sprites solution because it gives full control to the graphic (HTML/CSS) designer, but GWT developers should definitely take a look at ImageBundle.
find similar posts:
CSS,
GWT,
Photoshop,
Pixelmator
Microsoft Tells Users Not to Install Google Chrome Frame | Search Engine Optimization & Internet Marketing (SEO & SEM) Blog
My advise to my customers, friends and family is... please DO install
Google Chrome!
How to separate UI from code in GWT1. Create a general structure in HTML with all DIVs that represent major widgets
2. Style the widgets in CSS
3. Build the widgets in Java. Note: widgets are composites of various HTML elements and can have their own CSS styling.
find similar posts:
CSS,
GWT,
JavaScript
As an Amazon Associate I earn from qualifying purchases.
Twitter gets $100 million more in financing...Twitter blog: http://blog.twitter.com/2009/09/new-twitter-funding.htmlInformation provided by CrunchBase
find similar posts:
Twitter
As an Amazon Associate I earn from qualifying purchases.
IE 8 Web Site Troubleshooting Guidance
Here's a link to an IE 8 document on troubleshooting compatibility issues between various IE versions. It's about 15 pages of real info and it's an easy read.
http://code.msdn.microsoft.com/IE8/Release/ProjectReleases.aspx?ReleaseId=3189 Here's the run down
MySQL Database backup (mysqldump) from command line
As the database grows in size the convenient GUI tools became too slow, at some point it is easier to log in to the database server and do it from the command line...
mysqldump --user MY_USER_NAME -p DB_NAME> /var/www/UNIQUE_NAME_AND_DATE.sql Enter password: MY_PASSWORD #compress, you can also use gzip tar cvzf UNIQUE_NAME_AND_DATE.sql.tar UNIQUE_NAME_AND_DATE.sql # delete sql rm /var/www/UNIQUE_NAME_AND_DATE.sql #download: http://www.DOMAIN_NAME.com/UNIQUE_NAME_AND_DATE.sql.tar # after transfer delete rm /var/www/UNIQUE_NAME_AND_DATE.sql.tar
find similar posts:
Linux/Unix,
mysql
How many characters can a single spaced page contain?
Average 8x10 paper, font 12 has less than approximately 3,000 - 4,000 characters.
find similar posts:
UI
As an Amazon Associate I earn from qualifying purchases.
Eclipse 3.5 (Galileo) and GWT, M2, SVN pluginsI gave another try to Eclipse 3.5 (Galileo) for Mac Cocoa, in the previous attempt I discovered the plugins were not working, you can read about it via the link on the bottom of this page. There are 3 plugins that I use: 1) Google GWT and AppEngine: http://dl.google.com/eclipse/plugin/3.5 2) SVN repository plugin: http://subclipse.tigris.org/update_1.6.x 3) Maven Integration for Eclipse http://m2eclipse.sonatype.org/ The installation went smoothly, all within 10 minutes. Previous attempt to use Eclipse Galileo:
find similar posts:
Eclipse,
Google AppEngine,
mvn,
SVN
As an Amazon Associate I earn from qualifying purchases.
As an Amazon Associate I earn from qualifying purchases.
Upgrade to Snow Leopard Mac OS X 10.6
The upgrade went OK, took about 1 hour (actually I fell asleep and left it to install itself).
Installation cleared about 12 Gb of space on my hard drive, which is a good thing for me. After the installation I had to do the following: - install new GlobeTrotter Connect for my AT&T card, thankfully I have WI-FI at home. See instructions in the earlier post. - restore Java 1.5.0 from my Time Machine to get GWT working again. See instructions in the earlier post. - Growl for Mail.app
find similar posts:
macOS
You must use a Java 1.5 runtime to use GWT Hosted Mode on Mac OS X.After the upgrade to Snow Leopard Mac OS X 10.6 I got the following error in GWT Eclipse console: You must use a Java 1.5 runtime to use GWT Hosted Mode on Mac OS X. I FIXED this issue by restoring Java 1.5 from my Time Machine in following steps: 1) Verify that Java 1.5.0 is missing from Snow Leopard 1.5.0 -> CurrentJDK CurrentJDK -> 1.6 uki@Uki:/System/Library/Frameworks/JavaVM.framework/Versions $ ls -alt total 48 drwxr-xr-x 11 root wheel 374 Sep 19 00:18 . drwxr-xr-x 11 root wheel 374 Sep 19 00:18 .. drwxr-xr-x 8 root wheel 272 Sep 19 00:17 A lrwxr-xr-x 1 root wheel 1 Sep 19 00:17 Current -> A lrwxr-xr-x 1 root wheel 5 Sep 19 00:17 1.6 -> 1.6.0 drwxr-xr-x 7 root wheel 238 Sep 19 00:17 1.6.0 lrwxr-xr-x 1 root wheel 3 Sep 19 00:17 CurrentJDK -> 1.6 lrwxr-xr-x 1 root wheel 5 Sep 19 00:17 1.3 -> 1.3.1 lrwxr-xr-x 1 root wheel 10 Sep 19 00:17 1.5 -> CurrentJDK lrwxr-xr-x 1 root wheel 10 Sep 19 00:17 1.5.0 -> CurrentJDK drwxr-xr-x 3 root wheel 102 Jul 20 18:35 1.3.1 uki@Uki:/System/Library/Frameworks/JavaVM.framework/Versions $ 2) Restore Java 1.5.0 from your Time Machine (if you have no backup, shame on you!) 3) Create a symbolic link (sudo ln -s 1.5.0/ CurrentJDK) uki@Uki:/System/Library/Frameworks/JavaVM.framework/Versions $ sudo ln -s 1.5.0/ CurrentJDK WARNING: Improper use of the sudo command could lead to data loss or the deletion of important system files. Please double-check your typing when using sudo. Type "man sudo" for more information. To proceed, enter your password, or type Ctrl-C to abort. Password: uki@Uki:/System/Library/Frameworks/JavaVM.framework/Versions $ ls -alt total 40 drwxr-xr-x 11 root wheel 374 Sep 19 06:38 . lrwxr-xr-x 1 root wheel 6 Sep 19 06:38 CurrentJDK -> 1.5.0/ drwxr-xr-x 11 root wheel 374 Sep 19 00:18 .. drwxr-xr-x 8 root wheel 272 Sep 19 00:17 A lrwxr-xr-x 1 root wheel 1 Sep 19 00:17 Current -> A lrwxr-xr-x 1 root wheel 5 Sep 19 00:17 1.6 -> 1.6.0 drwxr-xr-x 7 root wheel 238 Sep 19 00:17 1.6.0 lrwxr-xr-x 1 root wheel 5 Sep 19 00:17 1.3 -> 1.3.1 lrwxr-xr-x 1 root wheel 10 Sep 19 00:17 1.5 -> CurrentJDK drwxr-xr-x 3 root wheel 102 Jul 20 18:35 1.3.1 drwxr-xr-x 8 root wheel 272 May 7 2008 1.5.0 uki@Uki:/System/Library/Frameworks/JavaVM.framework/Versions $ 4) Verify that you have the right set up uki@Uki:/System/Library/Frameworks/JavaVM.framework/Versions $ java -version java version "1.5.0_20" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_20-b02-315) Java HotSpot(TM) Client VM (build 1.5.0_20-141, mixed mode, sharing) uki@Uki:/System/Library/Frameworks/JavaVM.framework/Versions $ The GWT will work now, I will switch to Java 1.6 AFTER GWT release next update. "Card not found" GlobeTrotter Connect in Snow Leopard OS X 10.6I was able to get it work in following steps: 1) go to the driver download page: 2) Type in the SNR number on the back of your modem (EN4883****) 3) It will take you to similar page to: http://www.option.com/en/support/software-download/wireless-data-cards/globetrotter-express-hsupa-w/ 4) Download the Snow Leopard 10.6 specific files:
Subscribe to:
Posts (Atom)
My favorite quotations..“A man should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.” by Robert A. Heinlein "We are but habits and memories we chose to carry along." ~ Uki D. Lucas Recommended pagesPopular Recent Articles
|