Quick Tips Regarding Web Usability and User Testing note

Posted by Captain Zhan Fri, 13 Apr 2007 02:28:00 GMT


We think of our site as great piece of art and literature and the user's reality is much closer to "billboard going by at 60 miles an hour."

Fact#1 We Don't Read, We Scan.

Fact#2 We Don't Consider all Options, We Go for What We Like.

Fact#3 We Don't Learn, We Guess.   
     let the instructions be done in a line of words.

Read more...

Posted in  | no comments

搞好网站的关键只有一个--实用性

Posted by Captain Zhan Fri, 13 Apr 2007 02:15:00 GMT


不用太多名词,什么Web2.0,什么RSS,这些我都不懂.
做好网站我觉得最要紧的就是网站要有实用性.
实用性分两点:

一:网站要有用户想要的东西.
就是网站的内容,不是空洞的,不是华而不实的,而是网民他想要的.网民来你的网站是因为他有一种需要,而你的网站能满足他的需求,因此他需要你的网站,因此你的网站有必要存在.
 
二:网站要以最方便,快速的方式提供它的服务.
你的站上有网民要的东西,这 Read more...

Posted in  | no comments

XHTML Quick Reference

Posted by Captain Zhan Sun, 25 Mar 2007 15:38:00 GMT


Basic XHTML Rules

    * 使用小写标签:
      <p class="introduction">Paragraph text</p>
    *使用双引号:
      <a href="calendar.php">
    *外部链接使用http://开头:
      <a href="http://www.cnn.com/";>Latest news.</a>
    * <br />,<img />等标签关闭前加一空格。:
Read more...

Posted in  | no comments

Learning Ajax 2, url, link and button

Posted by Captain Zhan Thu, 15 Mar 2007 13:17:00 GMT


with <Ajax on Rails>
S2.3. Bringing Rails into the Picture

complex url_for example:
url_for :only_path => false, :protocol => 'gopher:// ',
  :host => 'example.com', :controller =&g Read more...

Posted in ,  | no comments

如何在linux中查找文件

Posted by Captain Zhan Mon, 12 Feb 2007 16:02:00 GMT


本文修改自:
http://it.sohu.com/2004/06/09/32/article220453226.shtml

whereis 文件名

  寻找文件工具

  whereis 是一个小巧好用的文件寻找工具,它专门用来寻找可执行的程序、原始程序和使用手册。

如执行命令:whereis bzip2

Read more...

Posted in  | no comments

从Windows Xp 转到Linux (Ubuntu 6.06)上

Posted by Captain Zhan Fri, 09 Feb 2007 15:49:00 GMT

这文章是8个多月前写的。今天(20070929)更新。

忙了四天,基本上从Windows Xp 转到了Ubuntu 6.06这个Linux操作系统上了。

为什么要转到linux?
1.比起Windows,Linux更加Free,而得到更多的自由是我孜孜不倦的人生追求。
2.工作方向向开源,协同,草根方向发展,linux比windows更能代表这个方向。
3.在Windows上进程开多了,切换程序时反应很慢。希望在linux可以解决这个问题。
4.多年的Windows使用让人感觉它很枯燥,没有新鲜感,不再能带来刺激。
5.现在的linux系统已经比较成 Read more...

Posted in  | 4 comments

SEO要点

Posted by Captain Zhan Mon, 05 Feb 2007 16:13:00 GMT


1.选对关键词(a.关键词和网站相关;b.关键词是网友常用的搜索词)
2.域名带关键词
3.网站名带关键词
4.页面title带关键词
5.页面h1带关键词
Read more...

Posted in  | no comments

Learning Javascript 3

Posted by Captain Zhan Mon, 01 Jan 2007 19:04:00 GMT


with "Visual QuickStart Guide javascript and Ajax for the Web, Sixth Edition"

Chapter 3. Language Essentials

Arrays
var newCars = new Array("Toyota", "Honda", "Nissan");
newCars[2] returns "Nissan"

Loop
     for (var i=0; i<24; i++) {
        var newNum = Math.floor(Math.random() * 75) + 1;

        document.getElementById("square"  + i).innerHTML = newNum;
     }

Read more...

Posted in  | no comments

Learning JavaScript 2

Posted by Captain Zhan Sun, 31 Dec 2006 14:13:00 GMT


with "Visual QuickStart Guide javascript and Ajax for the Web, Sixth Edition"

Chapter 2. Start Me Up!
Scripts can be put in one of two places on an HTML page: between the <head> and </head> tags (called a header script), or between the <body> and </body> tags (a body script).
        <script language="javascript" type="text/javascript">
          document.write("Hello, world!");
       </script>

internal scripts
Read more...

Posted in  | no comments

Learning Javascript

Posted by Captain Zhan Sun, 31 Dec 2006 09:14:00 GMT


with "Visual QuickStart Guide javascript and Ajax for the Web, Sixth Edition"
By Tom Negrino, Dori Smith
target browsers:
Internet Explorer 6 or later; Firefox 1.0 or later; Netscape 7 or later; all versions of Safari; and Opera 7 or later.

Chapter 1. Getting Acquainted with javascript

What javascript Is
Despite the name, javascript and Java have almost nothing to do with one another.
Read more...

Posted in  | no comments

Older posts: 1 2 3