Monday, June 22, 2009

Easier way to know your hardware

Most of us would just recommend to physically open up CPU, dismantle the RAM and look for the mark. But is there a way to know without physically dismantling the RAM? Yes, there is.

I have been using a good free software to do this. Download the cpu-z software. Extract and launch the cpuz.exe. A window will come out.



cpuz to check memory details

From here you can see lots of information. if you want to see the RAM used, click SPD. With this information, your RAM is 512 MB, PC3200 (200Mhz)



Download Folder Size URL : http://www.cpuid.com/download/cpuz/cpuz_151.zip

Saturday, June 20, 2009

Folder Size for Windows 2.4

Setting it up

  1. First, make sure you're running Windows 2000 or XP. Sorry, it doesn't work in Vista.
  2. Download the installer (regular 32-bit) (XP x64).
  3. Run the downloaded file to start the install wizard. It has boring template text, so just keep clicking Next. Typical and Complete installs do the same thing, Custom lets you change where it gets installed.
  4. Now the Folder Size column is available to Explorer, but Explorer isn't displaying it yet. Open an Explorer window in Details view.
  5. Right click on the column headers to see a list of columns you can add. Choose Folder Size.
  6. Now we can replace the existing Size column with the new Folder Size column. Right click on the column headers and uncheck the Size column. Drag the Folder Size column header to where Size used to be.
  7. Make this the default view for all folders. Go to Folder Options from the Tools menu. In the View tab, click Apply to All Folders.

Changing settings

Look in the Windows Control Panels to find the Folder Size control panel. If you're in the confusing Category View in XP, where it says Pick a category, click on Switch to Classic View in the left-hand pane. And then view as Icons. Isn't that better?

Use the control panel to change the way sizes are displayed. Also stop the service to stop any background activity.

Removing

So it crashes every once in a while, and slows down your computer. That's no reason to uninstall it. Well, if you really want to, use the Add or Remove Programs control panel. You'll have to manually fix the columns in Explorer too.

Download Folder Size URL : http://foldersize.sourceforge.net/using.html


Thursday, June 11, 2009

’冷冷‘的夜晚

热的夜晚,没有一丝的风
又多蚊虫 不敢开窗换气
让人厌烦, 又是一个难眠夜晚

当结束一整天繁忙的工作时,
在静夜 惊醒时, 枕边已潮湿一片

Thursday, April 30, 2009

心情日记 II

今天星期四
总觉得时间过得好快
转眼间已到了四月的最后一天了
五月的天即将来临

时间过得快 真是快
弹指一挥一周又一周的时间就这样过了
真希望人生有许多奇迹发生

Thursday, April 23, 2009

Accessing non-static member variables from static methods

Many programmers, particularly when first introduced to Java, have problems with accessing member variables from their main method. The method signature for main is marked static - meaning that we don't need to create an instance of the class to invoke the main method. For example, a Java Virtual Machine (JVM) could call the class MyApplication like this :-
MyApplication.main ( command_line_args );

This means, however, that there isn't an instance of MyApplication - it doesn't have any member variables to access! Take for example the following application, which will generate a compiler error message.

public class StaticDemo
{
public String my_member_variable = "somedata"; public static void main (String args[])
{
// Access a non-static member from static method
System.out.println ("This generates a compiler error" +
my_member_variable );
}
}
If you want to access its member variables from a non-static method (like main), you must create an instance of the object. Here's a simple example of how to correctly write code to access non-static member variables, by first creating an instance of the object.public class NonStaticDemo
{
public String my_member_variable = "somedata";
public static void main (String args[])
{
NonStaticDemo demo = new NonStaticDemo();
// Access member variable of demo
System.out.println ("This WON'T generate an error" +
demo.my_member_variable );
}
}

Wednesday, April 8, 2009

心情日记

今天是四月八日
不知不觉 在新公司做了则整十一个月了
感觉时间过得好快
一切都已经好像好远了

今夜 躺在床上 却一点睡意也没有
薛之谦的认真的雪 - 反复听了好几次 觉得好好听
大家不妨去下载听听吧

Man Utd's next generation of wonderkids

Manchester United have set off on their pre-season United States tour with a number of young stars involved, but some other talents have lef...