close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_fs.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.
- Timestamp:
-
Jul 20, 2012, 2:45:08 PM (14 years ago)
- Author:
-
jazz
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v77
|
v78
|
|
| 611 | 611 | }}} |
| 612 | 612 | |
| 613 | | * [參考] [http://nsis.sourceforge.net/Add_link_to_welcome_page_%28MUI%29 Add link to welcome page (MUI)] - 在安裝介面加入歡迎頁面(未來可能得加入 NCHC 字樣) |
| | 613 | * [參考] [http://nsis.sourceforge.net/Add_link_to_welcome_page_%28MUI%29 Add link to welcome page (MUI)] - 在安裝介面加入歡迎頁面(未來可能得加入 NCHC 字樣,, |
| 614 | 614 | * [參考] [http://nsis.sourceforge.net/Creating_language_files_and_integrating_with_MUI Creating language files and integrating with MUI] - 怎麼讓 NSIS 支援 PO 多國語系翻譯 |
| | 615 | |
| | 616 | * 既然 hadoop 1.0.3 可以正常在 cygwin 運行 HDFS,卻無法正常運行 MapReduce,而 hadoop 0.20.2 無法正常運行 HDFS,乾脆就從 1.0.3 開始解 Bug 好了。 |
| | 617 | * 如果需要改某幾行 Code 又不想重新打包整個專案,可以怎麼把某個 Jar 檔的單一或某幾個 class 檔換掉呢?我查了一下 patch jar file 的方法 |
| | 618 | * [參考] [http://stackoverflow.com/questions/5069539/is-there-are-way-to-patch-jar-files Is there are way to patch jar files?] 有提到解法,但是得注意可能會破壞掉有金鑰簽章的 jar 檔。 |
| | 619 | {{{ |
| | 620 | jar uf foo.jar foo.class |
| | 621 | 或 |
| | 622 | jar umf foo.jar foo.class |
| | 623 | }}} |
| | 624 | * 其次也有看到一個工具叫作 [http://packages.debian.org/squeeze/jardiff jardiff] 可以比對兩個 jar 檔的差異。 |