Pages

Monday 28 October 2013

How to identify Intel processor generation?


  1. Click Start
  2. In the searching box, type dxdiag.exe
  3. Click the dxdiag.exe
  4. The DirectX Diagnostic Tool opens
  5. See the processor information
For example: Intel(R) Core(TM) i7-3520M CPU @ 2.90Ghz (4 CPUs), ~2.9GHz

The number 3520M is more than 3000 and less than 4000, so it is 3rd generation.

If the number is more than 2000 and less than 3000, then it is 2nd generation.

If the number is more than 4000 and less than 5000, then it is 4th generation.


The picture below is 4th generation Intel Core processor :

The picture below is 3rd generation Intel Core processor :

The picture below is 2nd generation Intel Core processor :

More information, please click here:



How can I find out which graphics card I have in my PC?


  1. Click Start.
  2. On the Start menu, click Run.
  3. In the Open box, type "dxdiag" (without the quotation marks), and then click OK.
  4. The DirectX Diagnostic Tool opens. Click the Display tab.
  5. On the Display tab, information about your graphics card is shown in the Device section. You can see the name of your card, as well as how much video memory it has.

Friday 25 October 2013

解除 滑鼠按键限制/左键锁/右键锁

只要复制(copy)下面的代码(code),然后储存(save)进你的书签(bookmark)(放进网址的位置),书签(bookmark)的名就随你喜欢,自己给吧~
使用方法:遇到那些麻烦的网站,直接点击(click)你所储存的书签(bookmark)就可以了。Well Done :)

解除滑鼠限制/Remove cursor restriction

javascript:(function() { function R(a){ona = "on"+a; if(window.addEventListener) window.addEventListener(a, function (e) { for(var n=e.originalTarget; n; n=n.parentNode) n[ona]=null; }, true); window[ona]=null; document[ona]=null; if(document.body) document.body[ona]=null; } R("contextmenu"); R("click"); R("mousedown"); R("mouseup"); R("selectstart");})()

解除滑鼠右键锁/Remove right click lock

javascript:(function() { function R(a){ona = "on"+a; if(window.addEventListener) window.addEventListener(a, function (e) { for(var n=e.originalTarget; n; n=n.parentNode) n[ona]=null; }, true); window[ona]=null; document[ona]=null; if(document.body) document.body[ona]=null; } R("contextmenu"); R("click"); R("mousedown"); R("mouseup"); })()

解除滑鼠左键选取/Remove left click lock

javascript:(function() { function R(a){ona = "on"+a; if(window.addEventListener) window.addEventListener(a, function (e) { for(var n=e.originalTarget; n; n=n.parentNode) n[ona]=null; }, true); window[ona]=null; document[ona]=null; if(document.body) document.body[ona]=null; } R("click"); R("mousedown"); R("mouseup"); R("selectstart"); })()

这里有一个网站可以让你练习一下,这个网站“你无法按右键选单、你无法选取此行文字”(The website below have lock the right click, You can go to the website below and try to use it.)
http://orzhd.com/briian/2008/IEFirefox_39AF/Disable_right_mouse_click_Script.htm

锁右键 与 禁止选取文字(教学)HTML

锁右键(HTML)

功能:右键无法使用,点击右键时会跳出alert
(blogspot) 选择 布局 >> 添加小工具 >> HTML/Jawascript
然后把下面的code放进去:



注:你可把这句子This function is disabled.换成你想要的句子
点击保存。完成:)

禁止选取文字(HTML)

功能:禁止选取文字导致别人不能偷取你的文章,左键依然可用。
(blogspot) 选择 布局 >> 添加小工具 >> HTML/Jawascript
然后把下面的code放进去:



点击保存。完成:)
back to top