月度归档:2014年02月

效率

社会效率现在高了啊

在阿里云全新备案。

从购买阿里云ECS,到备案下来,以前起码得20天,这次3自然日不到就完成。神速!

Apple 开发者公司账户。

从注册全新 ID,到DUNS Number申请,到收到邮件可以付款,以前也起码得20天,这次8个自然日不到完成。神速!

不过在中国,注册个公司开业,仍然是不容易。

Version of Word does not match error when using Microsoft Word and RequisitePro

Problem(Abstract)
This technote explains how to resolve a “Version of Word (None) does not match” error. This can occur when opening Microsoft Word for use with IBM Rational RequisitePro.

Symptom
Starting Microsoft Word fails with this error:
The version of Word (None) does not match the version required by the program (Word 2000, Word 2002, Word 2003). Install the correct version of word. Microsoft Word is not installed or configured properly. Do you want to continue with Word disabled?

Cause
Microsoft Word did not create the registry key that RequisitePro requires, or you do not have sufficient read privileges for that registry key.

Resolving the problem
Verify that this registry key exists. If not, you must add it.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\10.0\Word]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\10.0\Word\InstallRoot]
"Path"="C:\\Program Files\\Microsoft Office\\Office10\\"

IMPORTANT: The number 10 refers to Word 2002, 11 is for Word 2003, 12 is for Word 2007 and 14 is for Word 2010.

Starting JIRA Automatically on Linux

官方指南看来已经过时,更新一下。

#!/bin/bash
# Jira startup script
#chkconfig: 2345 80 05
#description: Jira

# JIRA/Confluence Linux service controller script
APP=jira
APP_BIN=/opt/atlassian/jira/bin

start() {
        $APP_BIN/start-jira.sh
}
stop() {
        $APP_BIN/stop-jira.sh
}

case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  restart)
        service $APP stop
        sleep 8
        service $APP start
        ;;
  *)
        echo "Usage: service $APP {start|stop|restart}"
esac

exit 0