afisk has quit [Remote host closed the connection]
ralphtheninja has quit [Quit: leaving]
pfraze has quit [Remote host closed the connection]
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
fleeky has quit [Remote host closed the connection]
fleeky has joined #ipfs
fleeky has quit [Remote host closed the connection]
fleeky has joined #ipfs
Not_ has quit [Ping timeout: 248 seconds]
zabirauf has joined #ipfs
apiarian has quit [Ping timeout: 276 seconds]
apiarian has joined #ipfs
pfraze has joined #ipfs
pfraze has quit [Ping timeout: 252 seconds]
<voxelot_>
apiarian: cool!
reit has joined #ipfs
ygrek has joined #ipfs
<Akaibu>
Also, just me thinking and could be wrong on exactly how this works, but what if someone wanted to edit a file, but also wanted to link the old hash to the new hash, maybe a git style versioning would help that? (Again could be wrong on how this works)
Oatmeal has joined #ipfs
r04r is now known as zz_r04r
matoro has joined #ipfs
Temper has quit [Remote host closed the connection]
hashcore has quit [Remote host closed the connection]
corvinux has joined #ipfs
hashcore has joined #ipfs
corvinux has quit [Remote host closed the connection]
hashcore has quit [Remote host closed the connection]
corvinux has joined #ipfs
corvinux has joined #ipfs
corvinux has quit [Changing host]
corvinux has quit [Remote host closed the connection]
zorglub27 has quit [Quit: zorglub27]
corvinux has joined #ipfs
corvinux has quit [Client Quit]
corvinux has joined #ipfs
Guest1065 is now known as special
special has quit [Changing host]
special has joined #ipfs
corvinux has quit [Ping timeout: 260 seconds]
itradar has quit [Quit: Leaving]
rmi7 has quit [Ping timeout: 250 seconds]
<aaaaaaaaa____>
curious if anyone else has experienced similar: after updating 0.4.0-dev to 0.4.0, my `ipfs add -r ...` fails with "ERROR commands/h: blockservice is closed client.go:247"
<aaaaaaaaa____>
once after 1.35GB and another time after 11GB
<aaaaaaaaa____>
total is about 350GB, which dev finished reliably, yet to get 0.4.0 to add the whole directory
<aaaaaaaaa____>
(IRC client gave an error, so re-sending) curious if anyone else has experienced similar: after updating 0.4.0-dev to 0.4.0, my `ipfs add -r ...` fails with "ERROR commands/h: blockservice is closed client.go:247"
rmi7 has joined #ipfs
dignifiedquire has quit [Quit: Connection closed for inactivity]
ZaZ has joined #ipfs
apiarian has quit [Ping timeout: 252 seconds]
dignifiedquire has joined #ipfs
apiarian has joined #ipfs
ralphtheninja has joined #ipfs
tmg has quit [Ping timeout: 246 seconds]
tmg has joined #ipfs
absurdist has quit [Quit: Verlassend]
_rht has joined #ipfs
corvinux has joined #ipfs
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
computerfreak has joined #ipfs
tmg has quit [Ping timeout: 244 seconds]
ZaZ has quit [Read error: Connection reset by peer]
tmg has joined #ipfs
Neozonz|Disc has joined #ipfs
Neozonz|Disc is now known as Guest72980
Neozonz has quit [Ping timeout: 268 seconds]
Guest72980 is now known as Neozonz
Akaibu has quit [Quit: Connection closed for inactivity]
Neozonz has quit [Changing host]
Neozonz has joined #ipfs
ylp has quit [Ping timeout: 260 seconds]
ruby32 has joined #ipfs
ylp has joined #ipfs
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
reit has joined #ipfs
Tsutsukakushi has quit [Remote host closed the connection]
cristian_ has joined #ipfs
nicolagreco_ has joined #ipfs
nicolagreco_ has quit [Client Quit]
ruby32 has quit [Remote host closed the connection]
Boomerang has joined #ipfs
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
tmg has quit [Ping timeout: 246 seconds]
tmg has joined #ipfs
cristian_ has quit [Ping timeout: 244 seconds]
nycoliver has joined #ipfs
OutBackDingo_ has quit [Remote host closed the connection]
OutBackDingo has joined #ipfs
nycoliver has quit [Ping timeout: 250 seconds]
tmg has quit [Ping timeout: 248 seconds]
kseistrup has quit [Quit: bbl]
kseistrup has joined #ipfs
computerfreak has quit [Remote host closed the connection]
kseistrup has joined #ipfs
<nicolagreco>
Did someone do CRDT work on Ipfs?
zorglub27 has joined #ipfs
pfraze has joined #ipfs
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
Guest62945 is now known as geir_
rmi7 has quit [Ping timeout: 246 seconds]
cristian_ has joined #ipfs
reit has quit [Quit: Leaving]
ylp has quit [Ping timeout: 260 seconds]
itradar has joined #ipfs
ylp has joined #ipfs
<noffle>
nicolagreco: haad and I have been working on related endeavors
<nicolagreco>
I actually stumbled upon both but I couldn't understand how these use crdts (consider I am also a bit new to the concept)
<nicolagreco>
Am I wrong or this are tools for which you could use CRDTs on top?
<nicolagreco>
Isn't the log "just a log"?
<noffle>
one way to consider CRDTs is as a set of operation (a set, not a list!). this means you can model a CRDT as a union of many users' feeds of operations on that CRDT
<nicolagreco>
How are you using the special data structures?
<noffle>
I'd like to do some write-ups on building CRDTs on top of this, but I haven't got there yet :o
<nicolagreco>
so these are tools to use crdts on top?
<noffle>
look at that or orbit-db to see how they're building CRDTs on top of the log
<nicolagreco>
thanks noffle
rmi7 has joined #ipfs
<nicolagreco>
the reason I am asking is because I am curious to see how a key value store does deletion more than once
ruby32 has joined #ipfs
infinity0_ has quit [Remote host closed the connection]
<noffle>
nicolagreco: with a forking log (ipfs-log, hyperlog) this isn't hard, since you have casuality links pointing back in history. a Delete would have to come after a Set
infinity0 has joined #ipfs
<noffle>
the log's state would capture the Set that the Delete was intended to remove
<noffle>
(maybe a bit hard to explain /wo a whiteboard :))
<nicolagreco>
noffle: is this a last write wins model?
<noffle>
nicolagreco: yes. but it's also a multi-value register per-key. (each key could have several valid values at a given time)
<noffle>
on top of that you could define a predicate to decide which of the values "wisn"
<noffle>
"wins", too
<nicolagreco>
noffle: interesting, I didnt read about multi-value registers yet
<nicolagreco>
noffle: you mean define a reconciliation (or merge) function not based on timestamps?
<jedahan>
really messy, I just wanted to get it working
<jedahan>
probably could do with a lot of refactoring
rmi7 has joined #ipfs
nonaTure has quit [Ping timeout: 246 seconds]
nonaTure has joined #ipfs
fredthomsen has joined #ipfs
rmi7 has quit [Ping timeout: 246 seconds]
tmpds has joined #ipfs
Tsutsukakushi has joined #ipfs
cryptix has quit [Ping timeout: 244 seconds]
Magik6k has quit [Excess Flood]
fredthomsen has quit [Read error: Connection reset by peer]
Magik6k has joined #ipfs
fredthomsen has joined #ipfs
jedahan has quit [Read error: Connection reset by peer]
silotis has quit [Remote host closed the connection]
silotis has joined #ipfs
fredthomsen has quit [Read error: Connection reset by peer]
ft_mobile has joined #ipfs
rmi7 has joined #ipfs
maxlath has joined #ipfs
zorglub27 has quit [Ping timeout: 250 seconds]
maxlath is now known as zorglub27
Encrypt has joined #ipfs
jedahan has joined #ipfs
pfraze has quit [Remote host closed the connection]
HoboPrimate has quit [Ping timeout: 250 seconds]
cemerick has quit [Ping timeout: 248 seconds]
apiarian has quit [Quit: zoom]
pfraze has joined #ipfs
s_kunk has joined #ipfs
apiarian has joined #ipfs
jaboja has joined #ipfs
zorglub27 has quit [Ping timeout: 240 seconds]
tmpds has left #ipfs [#ipfs]
ygrek has joined #ipfs
jedahan has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
zorglub27 has joined #ipfs
ft_mobile has quit [Remote host closed the connection]
elsehow has left #ipfs [#ipfs]
ft_mobile has joined #ipfs
ianopolous has joined #ipfs
ygrek has quit [Ping timeout: 244 seconds]
zorglub27 has quit [Quit: zorglub27]
Guest76015 has joined #ipfs
ygrek has joined #ipfs
disgusting_wall has joined #ipfs
Senji has quit [Ping timeout: 252 seconds]
<whyrusleeping>
voxelot: amazon is trying to get me to buy the lifeproof case you bought
<whyrusleeping>
i never once searched for it
<whyrusleeping>
we just talked about it in person
<whyrusleeping>
amazon is creepy
Guest76015 has quit [Ping timeout: 240 seconds]
<voxelot>
whyrusleeping: that's particularly dumb since you don't iPhizzle. Maybe they make them for other companies
<voxelot>
Just landed back in hell LA :(
<whyrusleeping>
:(
<whyrusleeping>
some to sunny seattle!
<whyrusleeping>
s/some/come/
HoboPrimate has joined #ipfs
HoboPrimate has quit [Remote host closed the connection]
<voxelot>
I'm already plotting my escape
zabirauf has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<voxelot>
Might drive the coast.
zabirauf has joined #ipfs
zabirauf has quit [Client Quit]
mildred has quit [Quit: Leaving.]
mildred has joined #ipfs
rendar has quit [Ping timeout: 276 seconds]
<voxelot>
Or a cabin train
<voxelot>
Memorial Day weekend might be the first chance I get
<voxelot>
Could head down to sf together
Akaibu has quit [Quit: Connection closed for inactivity]
zabirauf has joined #ipfs
Peer3Peer has joined #ipfs
rendar has joined #ipfs
Peer3Peer has quit [Client Quit]
palkeo has quit [Quit: Konversation terminated!]
zabirauf has quit [Client Quit]
zabirauf has joined #ipfs
<dignifiedquire>
whyrusleeping: how is life after 0.4? still in nyc?
<onlnr>
is ipfs clumsy compared to zeronet when it comes to hosting dynamic websites? they dont use dht at all hmm, and ipfs is eating 10kB up and down for dht
jaboja has quit [Ping timeout: 244 seconds]
pfraze has quit [Remote host closed the connection]
jaboja has joined #ipfs
<whyrusleeping>
dignifiedquire: no i'm back in seattle
<whyrusleeping>
trying to relax a bit before the week starts
edubai__ has quit [Quit: Connection closed for inactivity]
teiresias has joined #ipfs
itradar has quit [Quit: Leaving]
<teiresias>
So I'm packaging go-ipfs-0.4.0 for a Linux distro. Looks like you guys fetch dependencies from IPFS now? Doesn't this put a lot of strain on the public HTTP->IPFS gateway? Also I've seen gx hang while downloading dependencies. Sounds like it could cause issues for build bots and such.
Boomerang has joined #ipfs
compleatang has quit [Quit: Leaving.]
afisk has joined #ipfs
<chungy>
whyrusleeping: I'm in Seattle too :)
herzmeister has quit [Quit: Leaving]
nycoliver has joined #ipfs
herzmeister has joined #ipfs
herzmeister has quit [Remote host closed the connection]
herzmeister has joined #ipfs
pfraze has joined #ipfs
mildred has quit [Ping timeout: 246 seconds]
municipal has joined #ipfs
nycoliver has quit [Ping timeout: 244 seconds]
<alu>
ERROR: 404 Not Found: Path Resolve error: no link named "go-ipfs_v0.4.0_linux-386.zip" under QmQ81E7bcFm9HDvquu68BmRFi8CZJJ95RBdcQaR1p9FeCQ