Category Archives: Uncategorized

国际网页Web设计流程

1.初始会商,主要是收集该站点的关键信息,包括站点的目标读者.要发布的内容.开发Web服务器平台;
 
2.概念开发,设计师根据收集的信息,开始构思,通常,设计师要把这些构思用草图的形式呈现给顾客,这个草图要有整个网站的结构,不同的布局.设计及导航;
 
3.内容综合,当决定了设计师的设计,设计师开始制作一些初始图样,这些图样用PHOTOSHOP那样的程序来创建,然后,设计师将图样打印出来配合文字;
 
4.HTML布局和导航,一旦客户同意了这些内容综合,设计师开始编制Web页面,导航器也被编制到页面中,使客户第一次真正体验一下;
 
5.图形制作,如果客户同意了站点的外观和感受,设计师将大量制作所需的图形,并进行优化;
 
6.内容流程,客户的书面材料利用各种网页技术(CSS、JAVA、FLASH),有机的和相关的图形整合在一起;
 
7.测试,在站点被提交给客户之前,设计师要彻底测试每个Web页面和联结,利用清单,进行修补;
 
8.交付,一旦签收,客户要经常进行他们的测试,找出排版和内容方面的错误,做完了这些次要的修正后,正式启用站点.
 
这套完整的计划可以用1-12个月来完成,平均完成时间为4个月.当站点启用后,要进行跟踪调查,以确定人们如何使用站点。经
 
过6-12个月的运行之后,重新收集数据,开始重新设计,然后这个Web设计过程再开始一遍

制作自己的xp安装光盘

现在网上出了n多修改过的xp版本。什么ghost版,什么精简版,什么番茄花园版,等等等等。。。
相对而言呢,还是喜欢原版的。因为没有乱其八糟的东西。自己需要什么,就安装什么。
其他人修改的,里面掺杂了什么,还是不太放心。
 
但是,原版的有一个问题,就是没有集成sata驱动。这样,对于我用的nf2主板,在安装系统时,就需要使用软盘来加载驱动。而软驱,似乎是浪费了一个槽位。
所以,需要把sata的驱动集成到安装光盘里面。以前转过一个自己修改安装文件来集成的方法,不过步骤似乎太繁琐。前几天偶然看到nlite,用这个东西集成方便很多。所以写下使用吧。
 
nlite 最新版本1.0rc6,下载地址http://www.nliteos.com/download.html
 

Continue reading

A Print CSS Primer

There has always been a gaping divide between the web and print on paper. Browsers have never been able to quite get pages to print out correctly. Wide pages run off the side of the page, header elements appear comically large, words wrap incorrectly. Print stylesheets are an elegant, simple solution. They require no extra "Print this page" link, don’t affect page download times, require no scripting, will work on password-protected files, and eliminate the need for duplicate print-only pages.
 
This here page is a very simple example of print stylesheets in action. This page is created using a simple, two-column tabular layout†, with a few key page elements: a title, this column (content), the column to the right (navigation), and a footer, all of which are important elements for the screen. But when you print this page out, you certainly don’t need the navigation (you’re not going to click on a piece of paper, duh), and here you don’t need the footer.
 
To get all the pages on your site to have nice printed versions, you need to create one extra css file (I cleverly called mine print.css) and add one line of code to your html document’s header:
 
<link rel="stylesheet" media="print" href="print.css" type="text/css" />
 
When a user selects the "Print" function from their web browser, your print.css file is substituted for the default stylesheet. The print.css file will be similar to your global stylesheet, but should contain the changes you wish to see on a printout. In this example, we want to remove the navigation and footer, so we add this line of code:
 
#navigation, #footer, .noprint { display: none; }
 
This line tells any html element with id="navigation" or id="footer" or class="noprint" to not show up for the printout (FYI, you get one id per document, but as many class elements as you want [reference]). This means that you could apply the class="noprint" to any part of the page you don’t want to see in print. For example, the following paragraph will not show up on the printout.
 
Booger.
 
In the html for this page, the elements to be removed (corresponding with the above css) look like this:
 
<td id="navigation"> and <p class="noprint">
 
Okay. For the sake of better typography, we’re also going to change the font of the main content for printout. Onscreen, I chose a sans-serif font (Verdana, Arial, Helvetica, sans-serif), but a font with serifs (Times New Roman, Garamond, serif) will look much better on paper. I also bumped the font size up to 12pt, set the text to be black on white, bumped the width of the content pane out to 100%, and removed the border, all with this simple CSS:
 
body, p, td, th, ul, a {
background-color: #fff;
color: #000;
font-family: "Times New Roman", Garamond, serif;
font-size: 12pt;
}
 
#content {
background-color: #fff;
width: 100%;
border: none;
}
 
That’s all there is to it! If your browser has a "Print Preview" function, check out its results. You can also look at a version of this same page which has the screen style set to print.css.

Visual Basic十年风云

 
我从来没有想到过,撰写这篇文章需要十年的光阴
 
有时我自清晨的睡梦中醒来,望着窗外高楼间透露的微稀曙光
 
耳畔都不免响起那些岁月烙印后的沧桑
 
那些原本可以避免或是终就注定的结局
 
我不是一个诗人,也不是一名作家
 
只是一位信息历程的过客, 静静沉醉在这不一样的感动
 
历史象河流,也象镜子,它让我们看到过去,也见证现在的自己……

Continue reading

修改vol的xp为oem的xp

现在大家用的xp 无非就是2种,vol或者oem的。个人倾向于使用oem的。因为vol的key经常会被封,导致无法升级,而oem的就没有这个问题了。但oem的需要修改bios。这就是各取所爱吧。
 
oem的光盘网上流传的最多的,就是联想的。但使用联想原版的有几个问题
1、安装过程中不能对硬盘进行重新分区
2、安装过程是全自动的,不能进行自己的设置。比如设置administrator的密码等。
3、安装完成后是联想的主题,n难看。。
 
所以我都是把零售版的vol光盘,修改一下变成oem的,然后使用。
用beyond compare对比vol和oem的i386文件夹,其实只有5个文件不同。分别是:
OEMBIOS.BI_
OEMBIOS.CA_
OEMBIOS.DA_
OEMBIOS.SI_
SETUPP.INI
 
所以,我们只需要把这5个文件替换一下,就可以实现了。具体来说就是用UltraISO打开vol的iso,然后把这5个文件替换进i386文件夹,修改卷标,保存就可以了。
5个文件我也提供下下载