This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ==== 密钥的格式 | |
| ((("addresses, bitcoin","key formats", id="ix_ch04-asciidoc14", range="startofrange")))((("keys","formats of", id="ix_ch04-asciidoc15", range="startofrange")))公钥和私钥的都可以有多种编码格式,一个密钥被不同的格式编码后,虽然结果看起来可能不同,但是密钥本身的数字并没有改变,这些不同的编码格式主要是用来方便人们无误地使用和识别密钥。 | |
| [[priv_formats]] | |
| ===== 私钥的格式 | |
| ((("private keys","format")))((("Bitcoin Explorer","modifying private key formats with")))私钥一共有25个数字,可以被很多不同的格式编码。<<table_4-2>>展示了三种常见的私钥编码格式。 | |
| [[table_4-2]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [INFO] Scanning for projects... | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Reactor Build Order: | |
| [INFO] | |
| [INFO] Cucumber-JVM | |
| [INFO] Cucumber-JVM: Core | |
| [INFO] Cucumber-JVM: JUnit | |
| [INFO] Cucumber-JVM: Java | |
| [INFO] Cucumber-JVM: PicoContainer | |
| [INFO] Cucumber-JVM: Clojure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Apache Maven 3.0.4 (r1232337; 2012-01-17 16:44:56+0800) | |
| Maven home: D:\workspace\apache-maven-3.0.4 | |
| Java version: 1.7.0_09, vendor: Oracle Corporation | |
| Java home: C:\Program Files\Java\jdk1.7.0_09\jre | |
| Default locale: en_US, platform encoding: Cp1252 | |
| OS name: "windows 2003", version: "5.2", arch: "amd64", family: "windows" | |
| [INFO] Error stacktraces are turned on. | |
| [DEBUG] Reading global settings from D:\workspace\apache-maven-3.0.4\conf\settings.xml | |
| [DEBUG] Reading user settings from C:\Documents and Settings\Administrator\.m2\settings.xml | |
| [DEBUG] Using local repository at D:\maven_repo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package daoannotation; | |
| public interface BaseDao { | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package exercise; | |
| @Exportable("address") | |
| public class AddressForTest { | |
| @Persistent | |
| private String country = null; | |
| @Persistent | |
| private String province = null; | |