This file contains 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
vmname="IPFS" | |
iso=/ipfs/QmdTmSQtCz9D6vt2AbvQkYo3edFcTYoU7FDmDD7bPWDccA/ipfs.iso | |
define notfound | |
$(iso) not found | |
make sure the daemon is running and mounted: | |
ipfs daemon & | |
ipfs mount | |
endef | |
export notfound |
This file contains 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
func getProgramVersion() string { | |
f, _ := os.Open(os.Args[0]) | |
h := sha2.New() | |
io.Copy(h, f) | |
sum := h.Sum(nil) | |
mh, _ := mh.Encode(sum, mh.SHA2_256) | |
return mh.B58String() | |
} |
This file contains 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
#!/bin/sh | |
if [ "$#" -eq 0 ]; then | |
echo "usage: $0 <pid> [<fmt>]" | |
echo "cat the fdinfos of <pid>'s "anon_inode" (or <fmt>) fds" | |
echo "" | |
exit 1 | |
fi | |
pid=$1 |
This file contains 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
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME | |
ipfs 35610 jbenet cwd DIR 1,4 1598 16712858 /Users/jbenet/go/src/github.com/jbenet/go-ipfs | |
ipfs 35610 jbenet txt REG 1,4 12938244 41887533 /Users/jbenet/go/bin/ipfs | |
ipfs 35610 jbenet txt REG 1,4 790312 39707699 /usr/local/lib/libosxfuse_i64.2.dylib | |
ipfs 35610 jbenet txt REG 1,4 622896 32217051 /usr/lib/dyld | |
ipfs 35610 jbenet txt REG 1,4 379853599 37907484 /private/var/run/diagnosticd/dyld_shared_cache_x86_64h | |
ipfs 35610 jbenet 0u CHR 16,0 0x4003779f 19955 /dev/ttys000 | |
ipfs 35610 jbenet 1u CHR 16,0 0x4003779f 19955 /dev/ttys000 | |
ipfs 35610 jbenet 2u CHR 16,0 0x4003779f 19955 /dev/ttys000 | |
ipfs 35610 jbenet 3r CHR 11,1 0t12288 577 /dev/urandom |
This file contains 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
> go build | |
# github.com/jbenet/go-udtwrapper/udt | |
gcc: error: libudt.a: No such file or directory | |
gcc: error: libudt.a: No such file or directory | |
> ls | |
libudt.a Makefile README.md test_simple.sh* udtcat.go |
This file contains 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 main demonstrates a problem with sockets. | |
// run it with: | |
// | |
// go build | |
// ./test 127.0.0.1:1234 | |
// | |
// Nevermind, found the problem (using select wrong) | |
// | |
package main |
This file contains 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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.node { | |
font: 11px "Helvetica Neue", Helvetica, Arial, sans-serif; | |
} | |
.link { | |
stroke: steelblue; |
This file contains 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
---> 5683695ca9f5 | |
Removing intermediate container d7de4a34e5a6 | |
Step 3 : RUN mv -f /tmp/id/config /root/.go-ipfs/config | |
---> Running in 16ee4f14a6f8 | |
---> 2e2ba9206b00 | |
Removing intermediate container 16ee4f14a6f8 | |
Step 4 : RUN ipfs id | |
---> Running in 77d2728764f4 | |
{ | |
"ID": "QmNXuBh8HFsWq68Fid8dMbGNQTh7eG6hV9rr1fQyfmfomE", |
This file contains 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
jbenet @ lorien : ~/go/src/github.com/jbenet/go-ipfs/core * bootstrap-fix % go build | |
cd % jbenet @ lorien : ~/go/src/github.com/jbenet/go-ipfs/core * bootstrap-fix % cd .. | |
jbenet @ lorien : ~/go/src/github.com/jbenet/go-ipfs * bootstrap-fix % docker images | grep ipfs | |
^C | |
jbenet @ lorien : ~/go/src/github.com/jbenet/go-ipfs * bootstrap-fix % docker build -t ipfs-test-latest . | |
Sending build context to Docker daemon 21.73 MBB | |
Sending build context to Docker daemon 59.59 MB | |
Sending build context to Docker daemon | |
Step 0 : FROM golang:1.3 | |
---> ebd3fd90ae2e |
This file contains 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
jbenet @ lorien : ~/go/src/github.com/jbenet/go-ipfs/dockertest * peer-restrict % [A | |
jbenet @ lorien : ~/go/src/github.com/jbenet/go-ipfs/dockertest * peer-restrict % make test | |
sh bin/clean.sh | |
5c160a0597d2 | |
8b3ce3a28030 | |
3238c5083721 | |
35892df28fac | |
fig stop | |
fig rm -v --force | |
No stopped containers |