淘宝批量好评书签小工具
淘宝以前评论时一直有批量选择好评的复选框,但是大概从一年前开始就消失了,每次评论都得一个一个点好评。其实写个脚本也不麻烦,但一直懒得写。最近有个单子商品数量实在是太多了,在向淘宝客服确认现在确实没这个功能后,写了下面这段代码:

  1. function(){
  2.     var objs = document.getElementsByTagName('input');
  3.     for (var i = 0; i < objs.length; i++) {
  4.         var obj = objs[i];
  5.         if (typeof(obj.type) != 'undefined' && obj.type == 'radio') {
  6.             if (obj.className == 'good-rate') {
  7.                 obj.checked = true;
  8.             } else if (obj.name == 'description' || obj.name == 'attitude'
  9.                        || obj.name == 'delivery' || obj.name == 'logistics') {
  10.                 if (obj.value == '5') {
  11.                     obj.click();
  12.                 }
  13.             }
  14.         }
  15.     }
  16. }

把下面这个链接拖拽到标签栏,需要全部选好评时点一下就行了:

淘宝批量好评

如果想只批量评价商品,而不评论店铺的话,使用下面这个版本:

  1. function(){
  2.     var objs = document.getElementsByTagName('input');
  3.     for (var i = 0; i < objs.length; i++) {
  4.         if (typeof(objs[i].type) != 'undefined' && objs[i].type == 'radio' && objs[i].className == 'good-rate') {
  5.             objs[i].checked = true;
  6.         }
  7.     }
  8. }

要拖拽的链接是下面这个:

商品批量好评

我自己有一个本地的淘宝收藏夹程序,程序完成时同时写了 Greasemonkey 脚本和做了 Bookmarklet,后来淘宝的页面经过一次改动,Greasemonkey 脚本失效了,而 Bookmarklet 简单可靠,一直能用,因此这次只写一个 Bookmarklet。
Current language: 中文 (简体)
解决开博尔 C5 网络播放器遥控接收范围过窄的问题
其实也算不上解决了,因为解决方式很暴力。不过对于由机器外壳设计时的硬伤所造成的问题,也想不出什么好办法了。

最开始其实我是怀疑遥控器的发射功率不够,但用万用表的电流档接一个 PD438B 光电二极管测试,这遥控器的发射功率比歌华机顶盒遥控器的还要大的多,因此肯定是接收端灵敏度或接收角度的问题了。

首先卸下底部的 4 个螺丝和后面的 3 个螺丝。底部有一个螺丝上有易碎贴,损坏会失去保修,不过这种东西真坏了也没修的必要了。



打开外壳上盖后,再试遥控器非常好用,远距离任意角度都没问题。从图片中可以看出机器的外壳比较厚,红外接收管前开的孔又不大,另外组装方式导致的红外接收管和前面的过滤片还有一点间距。这就是遥控接收范围很小的原因。



开始试了一下将红外接管与外壳贴紧,发现改善很小,就决定将前边的过滤片整个拆掉了。



这个过滤片是用胶水粘到外壳上的,粘得很牢,拆的时候用到了小电钻和斜口钳。拆得不完美,留下了点痕迹。



过滤片拆掉后从里面看是这样的,接收范围很广了。



从外面看是这样的,也不算太难看。

Current language: 中文 (简体)
Transform Windows 7 into Windows XP (and disable some annoying features)
2013-09-03 Added: Uploaded several screenshots, below is one of them:



---- end of added part ----

The following steps were recorded when I configure my Windows 7 64-bit system. For reference only.

1. System Protection (optional)

  • Start -> Control Panel -> System -> System protection
  • System (C:), Configure..., 2% (1.20GB) (default is 3%, 1.80GB)

2. Temp Folder (optional)

  • Start -> Control Panel -> System -> Advanced system settings
  • Advanced -> Environment Variables...
  • Set TEMP, TMP = F:\Temp
  • Clear original files (%USERPROFILE%\AppData\Local\Temp, %SystemRoot%\TEMP)

3. AutoPlay

  • Start -> Control Panel -> AutoPlay
  • Uncheck "Use AutoPlay for all media and devices"
  • Each selection remains the default "Choose a default"

  • Run "gpedit.msc"
  • User Configuration -> Administrative Templates -> Windows Components -> AutoPlay Policies -> Turn off AutoPlay -> Enabled on All drives
  • Computer Configuration -> Administrative Templates -> Windows Components -> AutoPlay Policies -> Turn off AutoPlay -> Enabled on All drives
  • (Refer to the search results, Shell Hardware Detection should keep active)

4. Built-in CD Burning

  • Run "gpedit.msc"
  • User Configuration -> Administrative Templates -> Windows Components -> Windows Explorer -> Remove CD Burning features -> Enabled

5. Folder Recognition

  • Run Restore_Default_Folder_Templates.bat (Download)
  • Run All_Folders_Use_General_Items_Folder_Template.bat (Same download page as above)

6. Zip Folder

  • Run "regedit"
  • Delete the following keys: (Source)
    for ZIP: HKEY_CLASSES_ROOT\CLSID\{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}
    for CAB: HKEY_CLASSES_ROOT\CLSID\{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}
    for ZIP Compressed (Win7 64-bit only): HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Classes\CLSID\{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}\ShellFolder
    for CAB (Win7 64-bit only): HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Classes\CLSID\{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}\ShellFolder

7. Page File (optional)

  • Start -> Control Panel -> System -> Advanced system settings
  • Advanced -> Performance -> Settings... -> Advanced -> Virtual Memory -> Change...
  • Set to 2560MB on Cache (F:)
  • Restart

8. Hibernate File (optional)

  • Run "powercfg -h off" to remove hibernate file
  • Defragment System (C:)

9. Compression Software

  • Install WinRAR or 7-zip

10. Universal Theme Patcher

  • Run UniversalThemePatcher-x64.exe in UniversalThemePatcher_20090409.zip
  • Restart

11. Luna Theme

  • Uncompress luna_7_2_basic_by_welovexp-d3feion.rar (Download)

/*
12. Start Button (ignore this)

  • Run "Windows 7 Start Button Changer v 2.6.exe" in "7 to XP pack.zip"
*/

13. Classic Shell

  • Run ClassicShellSetup_3_6_1.exe (Do not install Classic IE9 and Update) (Download)
  • Config

/*
14. 7+ Taskbar Tweak (ignore this)

(This software will make explorer.exe crash on system shutdown.)

  • Run 7tt_setup.exe
  • Config
*/

15. Shell Folder Fix

  • Run ShellFolderFixSetup.exe (Download)
  • Config

16. Configs

  • Config Sounds (Set to no sounds)
  • Config Windows Color
  • Config Quick Launch Bar

17. Keyboard Shortcuts Underline

  • Start -> Control Panel -> Ease of Access Center -> Make the keyboard easier to use -> Make it easier to use keyboard shortcuts
  • Check "Underline keyboard shortcuts and access keys" (Source)

18. Taskbar

  • Right click on taskbar -> Properties
  • Taskbar -> Taskbar buttons -> Never combine
  • Taskbar -> Uncheck "Use Aero Peek to preview the desktop"
  • Start Menu -> Uncheck two "Store and display ..." checkboxes

19. WinSAT Scheduled Task

  • Start -> Control Panel -> Administrative Tools -> Task Scheduler
  • Task Scheduler Library -> Microsoft -> Windows -> Maintenance
  • Right click WinSAT, and choose "Disable"

20. Default System Fonts

  • Import the following registry file: (Source)
    Windows Registry Editor Version 5.00

    ;Remove Segoe UI
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]

    "Segoe UI (TrueType)"=""
    "Segoe UI Bold (TrueType)"=""
    "Segoe UI Italic (TrueType)"=""
    "Segoe UI Bold Italic (TrueType)"=""
    "Segoe UI Semibold (TrueType)"=""
    "Segoe UI Light (TrueType)"=""
    "Segoe UI Symbol (TrueType)"=""

    ;Font Substitution
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]

    "Segoe UI"="Tahoma"
  • Restart

21. Windows Explorer - Details Pane

  • Windows Explorer -> Organize -> Layout
  • Uncheck "Details Pane"

22. Windows Explorer - Organize Bar

  • Open Shellstyle.dll in Resource Hacker
  • Make the modifications described in How to Auto-Hide or Disable .... But at the step 5, we use -50rp instead of -28rp to permanently hide the Organize Bar. So the code will be:
    <Element padding="rect(0rp,0rp,0rp,-50rp)"/>
  • Restart
Current language: English · 其他语言: 中文 (简体)
富士通 (Fujitsu) LH532 购买参考
亮点

  • Ivy Bridge 平台,22nm 3D晶体管 Core i5-3210M 处理器
  • 核芯 Intel HD Graphics 4000 显卡,不带独显 (热源)
  • BIOS 里可设置 Slient 模式,风扇启动温度比 Normal 模式高 10 度左右,很安静
  • 3 x USB 3.0 + 1 x USB 2.0 接口
  • 内存、硬盘和光驱都极易更换
  • 带电池重量 2.1kg,在 14 英寸的普通本子中还算不错的

部分系统检测数据

系统摘要

 
计算机:
计算机类型  ACPI x64-based PC (Mobile)
操作系统  Microsoft Windows 7 Home Basic
操作系统版本升级(SP)  Service Pack 1
Internet Explorer  9.0.8112.16421 (IE 9.0)
DirectX  DirectX 11.0
计算机名称  ***
用户名称  ***
登录域  ***
日期/时间  2012-09-14 / 09:59
 
主板:
处理器名称  Mobile DualCore Intel Core i5-3210M, 2900 MHz (29 x 100)
主板名称  Fujitsu LifeBook LH532
主板芯片组  Intel Panther Point HM76, Intel Ivy Bridge
系统内存  1910 MB (DDR3-1600 DDR3 SDRAM)
DIMM1: Samsung M471B5773DH0-CK0  2 GB DDR3-1600 DDR3 SDRAM
(11-11-11-28 @ 800 MHz)
(10-10-10-27 @ 761 MHz)
(9-9-9-24 @ 685 MHz)
(8-8-8-22 @ 609 MHz)
(7-7-7-19 @ 533 MHz)
(6-6-6-16 @ 457 MHz)
(5-5-5-14 @ 380 MHz)
BIOS 类型  Phoenix (04/12/2012)
 
显示设备:
显示适配器  Intel(R) HD Graphics 4000 (781502 KB)
显示适配器  Intel(R) HD Graphics 4000 (781502 KB)
显示适配器  Intel(R) HD Graphics 4000 (781502 KB)
3D 加速器  Intel HD Graphics 4000
显示器  通用即插即用监视器 [NoDB]
 
多媒体:
声音适配器  Intel Panther Point HDMI @ Intel Panther Point PCH - High Definition Audio Controller [C-1]
声音适配器  Realtek ALC269 @ Intel Panther Point PCH - High Definition Audio Controller [C-1]
 
存储设备:
IDE 控制器  Intel(R) 7 Series Chipset Family SATA AHCI Controller
硬盘驱动器  Innostor Innostor USB Device (15 GB, USB)
硬盘驱动器  ST9500325AS (500 GB, 5400 RPM, SATA-II)
光盘驱动器  TSSTcorp CDDVDW SN-208AB
硬盘 SMART 状态  OK
 
磁盘分区:
C: (NTFS)  224.8 GB (204.3 GB 可用)
D: (NTFS)  224.8 GB (224.7 GB 可用)
大小  449.6 GB (429.0 GB 可用)
 
输入设备:
键盘  PS/2 标准键盘
鼠标  Alps Pointing-device
 
网络设备:
主 IP 地址  127.0.0.1
主 MAC 地址  5C-9A-D8-65-D7-98
网络适配器  Bluetooth
网络适配器  Ralink RT3290LE 802.11b/g/n Wireless LAN Adapter
网络适配器  Realtek PCIe GBE Family Controller
 
外围设备:
打印机  Fax
打印机  Microsoft XPS Document Writer
USB2 控制器  Intel Panther Point PCH - USB 2.0 EHCI Controller #1 [C-1]
USB2 控制器  Intel Panther Point PCH - USB 2.0 EHCI Controller #2 [C-1]
USB3 控制器  Intel Panther Point PCH - USB 3.0 xHCI Controller [C-1]
USB 设备  FJ Camera
USB 设备  Generic USB Hub
USB 设备  Generic USB Hub
USB 设备  Ralink RT3290LE Bluetooth Device
USB 设备  Realtek USB 2.0 Card Reader
USB 设备  USB Composite Device
USB 设备  USB 大容量存储设备
电池  Microsoft AC Adapter
电池  Microsoft ACPI-Compliant Control Method Battery
电池  Microsoft Composite Battery
 
DMI:
DMI BIOS 厂商  FUJITSU // Phoenix Technologies Ltd.
DMI BIOS 版本  Version 1.08
DMI 系统制造商  FUJITSU
DMI 系统产品  LIFEBOOK LH532
DMI 系统版本  
DMI 系统序列号  ******-**********
DMI 系统 UUID  ********-********-********-********
DMI 主板制造商  FUJITSU
DMI 主板产品  FJNBB1E
DMI 主板版本  
DMI 主板序列号  ******-**********
DMI 主机制造商  FUJITSU
DMI 主机版本  
DMI 主机序列号  
DMI 主机识别标签  
DMI 主机类型  Notebook


DMI

 
[ BIOS ]
 
BIOS 属性:
厂商  FUJITSU // Phoenix Technologies Ltd.
版本  Version 1.08
发布日期  04/12/2012
大小  4096 KB
引导设备   Floppy Disk, Hard Disk, CD-ROM
性能  Flash BIOS, Shadow BIOS, Selectable Boot, EDD, BBS
支持的标准  DMI, ACPI, PnP
扩展性能  PCI, PCMCIA, USB
 
[ 系统 ]
 
系统:
制造商  FUJITSU
产品  LIFEBOOK LH532
序列号  ******-**********
全局唯一识别码 (UUID)  ********-********-********-********
唤醒方式  电源开关
 
[ 主板 ]
 
主板:
制造商  FUJITSU
产品  FJNBB1E
序列号  ******-**********
 
[ 机箱 ]
 
机型:
制造商  FUJITSU
机箱类型  Notebook
 
[ 处理器 / Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz ]
 
处理器:
制造商  Intel(R) Corporation
版本  Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
序列号  To Be Filled By O.E.M.
识别标签  To Be Filled By O.E.M.
部件号  To Be Filled By O.E.M.
外部时钟频率  100 MHz
最大时钟频率  2500 MHz
当前时钟频率  2500 MHz
类型  Central Processor
电压  0.9 V
状态  已启用
升级  Socket rPGA988B
接口标识  CPU Socket - U3E1
HTT/CMP 单元  2 / 2
 
CPU 制造商:
公司名称  Intel Corporation
产品信息  http://ark.intel.com/search.aspx?q=Intel Core i5-3210M
驱动程序更新  http://www.aida64.com/driver-updates
 
[ 高速缓存 / L1-Cache ]
 
高速缓存:
类型  内部
状态  已启用
运行模式  Write-Through
关联  8-way Set-Associative
最大容量  32 KB
已安装容量  32 KB
错误修正  Parity
接口标识  L1-Cache
 
[ 高速缓存 / L1-Cache ]
 
高速缓存:
类型  内部
状态  已启用
运行模式  Write-Through
关联  8-way Set-Associative
最大容量  32 KB
已安装容量  32 KB
错误修正  Parity
接口标识  L1-Cache
 
[ 高速缓存 / L2-Cache ]
 
高速缓存:
类型  内部
状态  已启用
运行模式  Write-Through
关联  8-way Set-Associative
最大容量  256 KB
已安装容量  256 KB
错误修正  Multi-bit ECC
接口标识  L2-Cache
 
[ 高速缓存 / L3-Cache ]
 
高速缓存:
类型  内部
状态  已启用
运行模式  Write-Back
关联  12-way Set-Associative
最大容量  3072 KB
已安装容量  3072 KB
错误修正  Multi-bit ECC
接口标识  L3-Cache
 
[ 内存设备 / ChannelA-DIMM0 ]
 
内存设备:
形状特征  SODIMM
类型  DDR3
类型详情  Synchronous
大小  2048 MB
速度  1600 MHz
总带宽  64 位
数据带宽  64 位
设备定位  ChannelA-DIMM0
Bank 定位  BANK 0
制造商  Samsung
序列号  0080B9CA
识别标签  9876543210
部件号  M471B5773DH0-CK0
 
[ 内存设备 / ChannelA-DIMM1 ]
 
内存设备:
形状特征  DIMM
设备定位  ChannelA-DIMM1
Bank 定位  BANK 1
识别标签  9876543210
 
[ 内存设备 / ChannelB-DIMM0 ]
 
内存设备:
形状特征  DIMM
设备定位  ChannelB-DIMM0
Bank 定位  BANK 2
识别标签  9876543210
 
[ 内存设备 / ChannelB-DIMM1 ]
 
内存设备:
形状特征  DIMM
设备定位  ChannelB-DIMM1
Bank 定位  BANK 3
识别标签  9876543210


超频

 
中央处理器(CPU):
处理器名称  Mobile DualCore Intel Core i5-3210M
内部名称  Ivy Bridge-MB
制程步进  E1/L1/N0/P0
Engineering Sample  
名称  Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
修订版本  000306A9h
CPU VID  0.8756 V
 
中央处理器速度:
CPU 核心频率  1297.2 MHz (原始频率: 2500 MHz)
CPU 倍频  13x
CPU 外频(FSB)  99.8 MHz (原始频率: 100 MHz)
内存总线频率  798.3 MHz
DRAM : FSB  24:3
 
CPU 高速缓存:
L1 代码缓存  32 KB per core
L1 数据缓存  32 KB per core
L2 缓存  256 KB per core (On-Die, ECC, Full-Speed)
L3 缓存  3 MB (On-Die, ECC, Full-Speed)
 
主板:
主板 ID  <DMI>
主板名称  Fujitsu LifeBook LH532
 
芯片组:
主板芯片组  Intel Panther Point HM76, Intel Ivy Bridge
内存计时  11-11-11-28 (CL-RCD-RP-RAS)
Command Rate (CR)  1T
DIMM1: Samsung M471B5773DH0-CK0  2 GB DDR3-1600 DDR3 SDRAM
(11-11-11-28 @ 800 MHz)
(10-10-10-27 @ 761 MHz)
(9-9-9-24 @ 685 MHz)
(8-8-8-22 @ 609 MHz)
(7-7-7-19 @ 533 MHz)
(6-6-6-16 @ 457 MHz)
(5-5-5-14 @ 380 MHz)
 
BIOS 属性:
系统 BIOS 日期  04/12/2012
视频 BIOS 日期  01/16/12
DMI BIOS 版本  Version 1.08
 
图形处理器(GPU):
显示适配器  Intel Ivy Bridge-MB - Integrated Graphics Controller (MB GT2)
GPU 代码名称  Ivy Bridge-MB GT2 (Integrated 8086 / 0166, Rev 09)
GPU 核心频率  350 MHz


电源管理

 
电源管理:
当前电源  交流电源
电池状态  33 % (正在充电)
电池寿命  未知
剩余寿命  未知
 
电池属性:
设备名称  BAT1
制造商  PAC
唯一代码  PAC BAT1
电池类型  可充电
设计容量  47520 mWh
最大容量  49583 mWh
当前容量  16254 mWh (33 %)
电池电压  3.523 V
损耗程度  0 %
电源状态  交流电源, 正在充电
充电率  30974 mW


传感器

 
传感器:
传感器类型  CPU, HDD, ACPI, PCH, SNB
 
温度:
中央处理器(CPU)  47 °C (117 °F)
CPU Package  47 °C (117 °F)
CPU IA Cores  47 °C (117 °F)
CPU GT Cores  46 °C (115 °F)
#1 CPU/ #1 核心  46 °C (115 °F)
#1 CPU/ #2 核心  46 °C (115 °F)
PCH Diode  62 °C (144 °F)
ST9500325AS  36 °C (97 °F)
 
电压:
CPU 核心  0.871 V
电池  3.524 V
 
功耗值:
CPU Package  2.64 W
CPU IA Cores  0.53 W
CPU GT Cores  0.22 W
电池充电率  30.98 W


中央处理器(CPU)

 
中央处理器(CPU):
处理器名称  Mobile DualCore Intel Core i5-3210M, 2900 MHz (29 x 100)
内部名称  Ivy Bridge-MB
制程步进  E1/L1/N0/P0
指令集  x86, x86-64, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES, AVX
原始频率  2500 MHz
最低/最高倍频  12x / 25x
Engineering Sample  
L1 代码缓存  32 KB per core
L1 数据缓存  32 KB per core
L2 缓存  256 KB per core (On-Die, ECC, Full-Speed)
L3 缓存  3 MB (On-Die, ECC, Full-Speed)
 
CPU 物理信息:
封装类型  988 Pin rPGA
封装尺寸  37.5 mm x 37.5 mm
工艺技术  22 nm, CMOS, Cu, High-K + Metal Gate
 
CPU 制造商:
公司名称  Intel Corporation
产品信息  http://ark.intel.com/search.aspx?q=Intel Core i5-3210M
驱动程序更新  http://www.aida64.com/driver-updates
 
Multi CPU:
主板 ID  INTEL CHIEFRIVER
CPU #1  Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz, 2494 MHz
CPU #2  Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz, 2494 MHz
CPU #3  Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz, 2494 MHz
CPU #4  Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz, 2494 MHz
 
CPU 使用率:
#1 CPU/ #1 核心/ #1 超线程  0 %
#1 CPU/ #1 核心/ #2 超线程  0 %
#1 CPU/ #2 核心/ #1 超线程  0 %
#1 CPU/ #2 核心/ #2 超线程  0 %


主板

 
主板:
主板 ID  <DMI>
主板名称  Fujitsu LifeBook LH532
 
前端总线特性:
总线类型  BCLK
外部频率  100 MHz
有效频率  100 MHz
 
内存总线特性:
总线类型  DDR3 SDRAM
总线位宽  64 位
DRAM : FSB  24:3
外部频率  800 MHz (DDR)
有效频率  1600 MHz
带宽  12800 MB/秒
 
芯片组总线特性:
总线类型  Intel Direct Media Interface v2.0


内存

 
物理内存:
总数  1910 MB
已用  888 MB
可用  1023 MB
使用率  46 %
 
交换区:
总数  3821 MB
已用  1231 MB
可用  2590 MB
使用率  32 %
 
虚拟内存:
总数  5731 MB
已用  2119 MB
可用  3612 MB
使用率  37 %
 
页面文件:
页面文件  C:\pagefile.sys
当前大小  1910 MB
当前使用/峰值使用  239 MB / 243 MB
使用率  13 %
 
Physical Address Extension (PAE):
操作系统支持  
处理器支持  
启用  


SPD

 
[ DIMM1: Samsung M471B5773DH0-CK0 ]
 
内存模块:
模块名称  Samsung M471B5773DH0-CK0
序列号  0080B9CAh (3401154560)
制造日期  第10周 / 2012
模块容量  2 GB (1 rank, 8 banks)
模块类型  SO-DIMM
存取类型  DDR3 SDRAM
存取速度  DDR3-1600 (800 MHz)
模块位宽  64 bit
模块电压  1.5 V
错误检测方式  
DRAM 制造商  Samsung
 
内存计时:
@ 800 MHz  11-11-11-28 (CL-RCD-RP-RAS) / 39-128-5-12-6-6-24 (RC-RFC-RRD-WR-WTR-RTP-FAW)
@ 761 MHz  10-10-10-27 (CL-RCD-RP-RAS) / 37-122-5-12-6-6-23 (RC-RFC-RRD-WR-WTR-RTP-FAW)
@ 685 MHz  9-9-9-24 (CL-RCD-RP-RAS) / 33-110-5-11-6-6-21 (RC-RFC-RRD-WR-WTR-RTP-FAW)
@ 609 MHz  8-8-8-22 (CL-RCD-RP-RAS) / 30-98-4-10-5-5-19 (RC-RFC-RRD-WR-WTR-RTP-FAW)
@ 533 MHz  7-7-7-19 (CL-RCD-RP-RAS) / 26-86-4-8-4-4-16 (RC-RFC-RRD-WR-WTR-RTP-FAW)
@ 457 MHz  6-6-6-16 (CL-RCD-RP-RAS) / 22-74-3-7-4-4-14 (RC-RFC-RRD-WR-WTR-RTP-FAW)
@ 380 MHz  5-5-5-14 (CL-RCD-RP-RAS) / 19-61-3-6-3-3-12 (RC-RFC-RRD-WR-WTR-RTP-FAW)
 
内存模块特性:
Auto Self Refresh  不支持
Extended Temperature Range  支持
Extended Temperature Refresh Rate  不支持
On-Die Thermal Sensor Readout  不支持
 
内存模块制造商:
公司名称  Samsung
产品信息  http://www.samsung.com/global/business/semiconductor


芯片组

 
[ 北桥: Intel Ivy Bridge-MB IMC ]
 
北桥属性:
北桥  Intel Ivy Bridge-MB IMC
Intel 平台  Chief River
内存类型支持  DDR3-1066, DDR3-1333, DDR3-1600, DDR3-1866 SDRAM
修订  09
工艺技术  22 nm
 
内存控制器:
类型  Dual Channel (128 位)
启用模式  Single Channel (64 位)
 
内存计时:
CAS Latency (CL)  11T
RAS To CAS Delay (tRCD)  11T
RAS Precharge (tRP)  11T
RAS Active Time (tRAS)  28T
Row Refresh Cycle Time (tRFC)  128T
Command Rate (CR)  1T
RAS To RAS Delay (tRRD)  5T
Write Recovery Time (tWR)  12T
Write To Read Delay (tWTR)  6T
Read To Precharge Delay (tRTP)  6T
Four Activate Window Delay (tFAW)  24T
Write CAS Latency (tWCL)  8T
 
错误修正:
ECC  不支持
ChipKill ECC  不支持
RAID  不支持
ECC Scrubbing  不支持
 
内存插槽:
DRAM #1 插槽   2 GB (DDR3-1600 DDR3 SDRAM)
 
集成图形控制器:
图形控制器类型  Intel HD Graphics 4000
图形控制器状态  已启用
 
芯片组制造商:
公司名称  Intel Corporation
产品信息  http://www.intel.com/products/chipsets
驱动程序下载  http://support.intel.com/support/chipsets
BIOS 升级  http://www.aida64.com/bios-updates
驱动程序更新  http://www.aida64.com/driver-updates
 
[ 南桥: Intel Panther Point HM76 ]
 
南桥属性:
南桥  Intel Panther Point HM76
Intel 平台  Chief River
修订 / Stepping  04 / C1
封装类型  989 Pin FCBGA
封装尺寸  25 mm x 25 mm
工艺技术  65 nm
核心电压  1.05 V
TDP  4.1 W
 
High Definition Audio:
编解码器名称  Realtek ALC269
编解码器 ID  10EC0269h / 10CF2000h
编解码器修订  1002h
编解码器类型  Audio
 
High Definition Audio:
编解码器名称  Intel Panther Point HDMI
编解码器 ID  80862806h / 10CF1778h
编解码器修订  1000h
编解码器类型  Audio
 
PCI Express 控制器:
PCI-E 2.0 x1 port #1  空闲
PCI-E 2.0 x1 port #3  正使用 @ x1 (Realtek RTL8168/8111 PCI-E Gigabit Ethernet Adapter)
PCI-E 2.0 x1 port #6  正使用 @ x1 (Ralink RT3290 802.11n Wireless Network Adapter, Ralink RT3290 PCI-E Bluetooth Module)
 
芯片组制造商:
公司名称  Intel Corporation
产品信息  http://www.intel.com/products/chipsets
驱动程序下载  http://support.intel.com/support/chipsets
BIOS 升级  http://www.aida64.com/bios-updates
驱动程序更新  http://www.aida64.com/driver-updates


BIOS

 
BIOS 属性:
BIOS 类型  Phoenix EFI
BIOS 版本  Version 1.08
系统 BIOS 日期  04/12/2012
视频 BIOS 日期  01/16/12
 
BIOS 制造商:
公司名称  Phoenix Technologies Ltd.
产品信息  http://www.phoenix.com/pages/products
BIOS 升级  http://www.aida64.com/bios-updates


Current language: 中文 (简体)
Homonym Number Detector 和 Gender Guesser 的演示页面
Homonym Number Detector

这个 PHP 类库是 06 年时写的,当时已经基本能工作了,但是实际上没应用起来。前几天把这个类库又整理了一下,现在输出的信息也比较完整了。

用于检测数字中不好的谐音。可以用在自动序号生成中,例如把最高分数大于 10 的数字给过滤掉,免得看着心烦。



演示地址: http://demo.wudilabs.org/lab/hn_detector/

Gender Guesser

2005 年发布于 PHP Classes,是一个可根据姓名猜测性别的程序。当时写完后用在了我自己的联系人管理程序中,在添加新联系人时,在输入姓名后自动猜测性别,大多数情况下可免去一次点击。在批量导入时更为有用。

现在这个演示所用的词典是由 20933 个姓名性别数据生成的,而 05 年首次发布时这个数字只有 5561。



演示地址: http://demo.wudilabs.org/lab/gender_guesser/
Current language: 中文 (简体)
解决 Rigol DS1052E 散热风扇噪音大的问题
去年年底时夜里用示波器,实在是忍受不了这个示波器的巨大噪音了,上网搜了一下就找到了这篇文章,文章的作者是看了一个老外在 EEVBlog 上的帖子后换的风扇。原厂的散热风扇据那个帖子说,是 6cm, 34.2m^3/h, 36.5dBA 噪音的。那个老外给换成了一个 8cm, 47m^3/h, 14dBA 的风扇,而百度空间那篇文章的作者换的是 9cm, 53m^3/h, 17.6dBA 的风扇,同时最后建议换 6cm 的静音风扇,9cm 的不好固定。

我在淘宝上搜了一下,比较容易买到的 6cm 的低噪音风扇好像就是这种“美蓓亚(NMB) 2406RL-04W-S39”的了,价格也不贵。号称风量 36cfm (61.2cm^3/h, 我觉得标得有点多,毕竟才 6cm 1500rpm),噪音 16dBA。应该怎么着都比原厂配的那个风扇好,于是决定就换这个了。



拆机

收到风扇后就开始拆机,把底部两个能直接看到的螺丝卸下后就开始撬上边,怎么撬也撬不开。在网上搜了半天才找到个帖子提到具体的拆机方法,就是这个帖子的 5 楼,引用了 armok 在另一很长的帖子中提到的拆机方法:

【562楼】 armok 阿莫
底部两螺丝,提手两螺丝,把电源哪两颗也松几圈,机器打竖放,先开另一边,最后电源哪头向上,
用两拇指把电源插座按下去,顺势推出后盖。
忘了还要把哪个电源开关帽拔出来才行的。

原来是我没发现提手处还有两个螺丝,就在这块:



最后就是这么拆开的机器,电源插座那块比较费劲。最后我确定降噪工作结束,最终装回机器时都没放那个用于填补电源接口处缝隙的塑料片。

更换风扇

下面这张照片是原厂风扇和要换上去的低噪声风扇:



直接换上去,用原来的螺丝固定,不加减速线,就是这个效果:



加减震和降速

光是替换风扇,噪音就已经降下来不少了,不再是原来多开一秒钟都忍受不了的噪音了,但还是比电脑中的 CPU 风扇和机箱风扇的噪音大得多。买来的低噪音风扇直接接 12V 电源的噪音不大,安装到示波器上之后,即使工作电压大约只有 11V,噪音也大了很多。猜测和用螺丝固定导致示波器的金属屏蔽外壳振动有关,就又买来了硅胶减震钉。同时还做了一条串接一个 1N5819 的降速线。最终内部是这样的:



来个风扇固定部分的特写:



噪音对比

下面这个视频是使用原厂风扇时、使用低噪声风扇时和增加减震和降速措施后噪音的对比:


在感觉风量时,发现如果用手把出风口完全堵住,噪音就基本消失了。用一块用纸板挡一下风,也能减少些噪音:


Current language: 中文 (简体)
音乐节拍识别器 Beat Detector 制作完成
PCB 项目文件和程序还需要修整一下,现在先放出原理图和 PCB 图的图片。等所有修整都结束后所有的源文件都会上传到 Google Code 上。

原理图 (共 3 张,点击查看大图)







PCB 图 (点击查看大图)



成品图





演示视频

Demo 1, 这组是节奏感很强的, 曲目: 《Let's Go》《No Limit》《Lambada》《Lift Me Up (Mylo Mix)》《Extreme Ways (DJ Tiestos Vocal Remix)》《漫步》, Keygen 音乐: 《untitled (tRUE)》《Complicaions》《Eliminator》《Meine auto》



Demo 2, 这组是节奏感稍弱些的, 曲目: 《失踪》《向太阳怒吼》《不想骗自己》《十二种颜色》《Sunshine Girl》《Starman》《Does Your Mother Know》《I'm Not Like Everybody Else》



Demo 3, 这组是漆黑环境中的效果, Keygen 音乐: 《untitled (tRUE)》《Eliminator》



PC 机程序

Beat Detector 是可以和电脑进行通讯的,报告当前音乐的节奏 (bpm),使用电池还是USB供电,使用麦克风信号还是线性输入信号。目前调试阶段直接看发送到电脑上的字符串,以后有时间会用 C# 写一个简单的界面。
Current language: 中文 (简体)
Book Recommendation: FPGA Prototyping By Verilog Examples by Pong P. Chu


Pong P. Chu - FPGA Prototyping By Verilog Examples
Current language: English · 其他语言: 中文 (简体)
AutoJewel 0.1.0 -- a program that plays Bejeweled 3 automatically
Today I spent all day modifying the program that can play Bejeweled 3 automatically, which is first mentioned in June. It was just a prototype written in one night at the beginning, but now it is not too bad to release. I have put the source code and binary files on Google Code.

Download source (AutoJewel-0.1.0-src.zip)
Download binaries (AutoJewel-0.1.0-bin.zip)



Instructions: Run Bejeweled and AutoJewel at the same time. After setting the parameters properly, enter the corresponding game mode in Bejeweled. And then press the default global hotkey Ctrl + F8 to make AutoJewel start running.

Something I want to say, is that currently this program does not have any intelligence. So do not compare it with the high-level players, and it cannot be normal any more that the scores it got are lower than many human players.

As I have said in the previous entry, this program is aimed at the visual effects of Bejeweled, rather than a high score. And it was coded to play mainly the Lightning mode. Other modes are just be supported passingly. For example it plays Ice Storm mode totally the same way as Lightning mode. As for the Classic mode, it only slows down the speed and gives the match on the top a higher priority.

Lightning mode (highest multiplier is 9, final score 4194k)



Ice Storm mode (highest multiplier is 8, final score 1517k)



Classic mode (achieved level 13, final score 743k)



Balance mode (purely for fun)


Current language: English · 其他语言: 中文 (简体)
Solve the problem that the monitor does not turn off for power saving under Windows XP/2003
Download source (SystemParamsMonitor.zip)


Current language: English · 其他语言: 中文 (简体)
More entries: [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] ... [17]
« Previous page · Next page »