2010年1月24日 星期日

Reduce click through services

現在人講求快速, 無論服務或內容在好, 如果要人一直要點下一頁在下一頁才能看到內容, 或是需要在額外複製貼上才能看到. 都是使用這不樂見的事. Google 搜尋好, 是因為大部份時間都在第一頁就找到我們要的東西, 不然使用者就離開了.

最近看到兩個服務, 都是目的在減少使用者點擊滑鼠數量所提供的服務.
1. BeautyG 表特機 http://beautyg.webbs.tw/
2. Greedland Comic AutoPager http://goo.gl/9FSk

開發新的軟體或服務, 要想想如何讓使用這更快取得他想要的, 這樣使用者才會常用

Posted via email from yinlin's posterous

2010年1月11日 星期一

Google Friend Connect

Use Google Friend Connect on your blog to connect people who interested your sites

 

Posted via email from yinlin's posterous

2010年1月8日 星期五

iPhone Coding Recipe: Live Character Counter, Word filter, and 1337 Translator For A UITextField | iCodeBlog

I’m sure you have seen a Twitter client such as Twittelator Pro or Tweetie 2 count down the characters as you type your Tweet. This is done by responding to the Editing Changed action on a UITextField. Today, I will show you how you can implement this functionality in your application as well as show you some other real world examples of responding to this action. Here are a few of the uses that we will discuss:

  • Countdown of characters allowed – Used when the user is limited by a certain number of characters
  • Word filter – useful in filtering out swear words or other unwanted text
  • Live translator – our example will translate english to 1337 :)

Should able to use in user input functions

Posted via web from yinlin's posterous

2010年1月1日 星期五

iPhone Coding Tutorial – Inserting A UITextField In A UIAlertView | iCodeBlog

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@”Enter Name Here” message:@”this gets covered!” delegate:self cancelButtonTitle:@”Dismiss” otherButtonTitles:@”OK!”, nil];

UITextField *myTextField = [[UITextField alloc] initWithFrame:CGRectMake(12, 45, 260, 25)];

CGAffineTransform myTransform = CGAffineTransformMakeTranslation(0, 60);

[alert setTransform:myTransform];

[myTextField setBackgroundColor:[UIColor whiteColor]];

[alert addSubview:myTextField];

[alert show];

[alert release];

[myTextField release];

Posted via web from yinlin's posterous

Do It (For Mac)

Do it: Create todo list application

http://jimmcgowan.net/Site/DoIt.html

Posted via email from yinlin's posterous