diff --git a/index.html b/index.html index 3898e00..2fd6498 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,7 @@ +
- In the next version, I’ll be moving the
+ In the next version, I'll be moving the
i2pkeys
- directory to it’s own repository
+ directory to it's own repository
so I can avoid import cycle headaches. Please migrate to the new
i2pkeys
@@ -50,9 +55,14 @@
repository
before upgrading your sam3 dependencies. You can probably do this by running:
find . -name '*.go' -exec sed -i 's|github.com/eyedeekay/sam3/i2pkeys|github.com/eyedeekay/i2pkeys|g' {} \;
-
+ find . -name '*.go' -exec sed -i 's|github.com/eyedeekay/sam3/i2pkeys|github.com/eyedeekay/i2pkeys|g' {} \; ++
@@ -66,6 +76,9 @@ This library is much better than ccondom (that use BOB), much more stable and much easier to maintain.
@@ -133,6 +146,9 @@
package main
+
+ package main
import (
"github.com/eyedeekay/sam3"
@@ -193,17 +213,23 @@ func main() {
n, _ := conn.Read(buf)
fmt.Println("Server received: " + string(buf[:n]))
}
-
+
+
The above will write to the terminal:
- Client: Connecting to zjnvfh4hs3et5vtz35ogwzrws26zvwkcad5uo5esecvg4qpk5b4a.b32.i2p
+
+ Client: Connecting to zjnvfh4hs3et5vtz35ogwzrws26zvwkcad5uo5esecvg4qpk5b4a.b32.i2p
Server received: Hello world!
-
+
+
Error handling was omitted in the above code for readability.
+
+
+
Testing
@@ -221,12 +247,18 @@ Server received: Hello world!
+
+
+
License
Public domain.
+
+
+
Author
diff --git a/showhider.css b/showhider.css
new file mode 100644
index 0000000..c5ec96e
--- /dev/null
+++ b/showhider.css
@@ -0,0 +1,10 @@
+/* edgar showhider CSS file */
+#show {display:none; }
+#hide {display:block; }
+#show:target {display: block; }
+#hide:target {display: none; }
+
+#shownav {display:none; }
+#hidenav {display:block; }
+#shownav:target {display: block; }
+#hidenav:target {display: none; }