Tuesday, July 03, 2007

天涯更改博客模板指南

1.首先登陆进入你的天涯博客,然后你可以看到如下的界面, 点击 管理。


2.然后可以看到如下界面,点击 模板。

3.然后进入如下界面, 点击 自定义模板.



4.然后进入如下界面,默认的图文编辑器里面是放的首页模板的html代码, 将编辑器里面的内容全选->然后点右键->复制, 接下来打开一个记事本,将内容粘贴到记事本里面,保存为一个文件.


5.除了首页模板以外,需要改动的还有内容查看模板, 在下拉菜单中选择内容查看模板. 这样,内容察看模板里面的代码就会显示到图文编辑器里面. 全选->复制->粘贴到记事本,保存为文件.




6.最终需要发送的就是在步骤4和5得到的2个文件.

7.接收到修改后的首页模板和内容查看页模板. 同样来到自定义模板的图文编辑器,步骤和1,2,3是一样的.这个时候,删除图文编辑器中的全部内容,你将看到:


8.打开我们发送的首页模板文件,复制,并粘贴到图文编辑器中. 粘贴完毕后,点击 保存修改,如下:


9.对 内容查看模板, 同样做 删除--> 粘贴新的内容 --> 保存修改


10. 完毕.

天涯更改博客模板指南

1.首先登陆进入你的天涯博客,然后你可以看到如下的界面:

Sunday, July 01, 2007

Find your apartment on map

I recently found my apartment at Campbell. Before that I drove around for two days and made tens of calls. I had to look for where the apartment is and always waisted my time. To make things easier, I made a map called apartment finder You could easily select the apartments near where you are working and print the information out.

Tuesday, December 05, 2006

Java Manifest file



Make sure you know that the space at the end of lines will be counted.
Go to http://www.fileinsider.com/product.htm to download a free validator.

Monday, December 12, 2005

Is this ok in C++?

class Vector2D{
...
/**
* Combine the two vectors into this vector
* @param other amount to add to this
*/
public void add(Vector2D other) {
{
//_x += other.getX();
//_y += other.getY();
_x += other._x;
~~~~~~~~~~~~~~ _x is private, however you can still call
other._x within the Vector2D class.

}
}
...
}

Saturday, October 15, 2005

Sudoku

www.fileinsider.com