whyrusleeping changed the topic of #ipfs to: go-ipfs 0.4.17 is out! Try out all the new features: https://dist.ipfs.io/go-ipfs/v0.4.17 | Also: #libp2p #ipfs-cluster #filecoin #ipfs-dev | IPFS, the InterPlanetary FileSystem: https://github.com/ipfs/ipfs | Logs: https://botbot.me/freenode/ipfs/ | Forums: https://discuss.ipfs.io | Code of Conduct: https://git.io/vVBS0
tenchooo has quit [Remote host closed the connection]
tenchooo has joined #ipfs
ludovicchabant has joined #ipfs
Trieste has joined #ipfs
abueide has joined #ipfs
abueide has quit [Remote host closed the connection]
[itchyjunk] has quit [Ping timeout: 268 seconds]
abueide has joined #ipfs
guideline has quit [Ping timeout: 256 seconds]
benjamingr_ has quit [Quit: Connection closed for inactivity]
Fessus has joined #ipfs
Fessus has quit [Quit: Leaving]
Fessus has joined #ipfs
Fessus has quit [Client Quit]
Fessus has joined #ipfs
SamM has quit [Quit: Connection closed for inactivity]
Fessus has quit [Client Quit]
Fessus has joined #ipfs
[itchyjunk] has joined #ipfs
lassulus_ has joined #ipfs
lassulus has quit [Ping timeout: 240 seconds]
lassulus_ is now known as lassulus
graphene has quit [Remote host closed the connection]
graphene has joined #ipfs
emunand has quit [Remote host closed the connection]
reit has joined #ipfs
emunand has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
<emunand> hey guys
<emunand> ipfs.io leads me to a 502
<emunand> does this occur to anyone else?
<AphelionZ> emunand: I just tested... it's fine for me
<emunand> huh, it's working now
<emunand> weird
<redfish> emunand: i also did see this, getting 502, refresh and it works.
plexigras has quit [Ping timeout: 256 seconds]
}ls{ has quit [Ping timeout: 276 seconds]
}ls{ has joined #ipfs
<malaclyps> is it possible to find out which hashes a node has pinned remotely?
_whitelogger has joined #ipfs
Trieste has quit [Ping timeout: 256 seconds]
Trieste has joined #ipfs
abueide has quit [Ping timeout: 240 seconds]
mandric has joined #ipfs
not-a-dog has joined #ipfs
not-a-dog has quit [Ping timeout: 276 seconds]
Fessus has quit [Quit: Leaving]
abueide has joined #ipfs
<JCaesar> malaclyps: There is no api for it, as far as I know, but nodes do something called a reprovide, which you should be able to listen for.
abueide has quit [Ping timeout: 276 seconds]
elkalamar has quit [Ping timeout: 244 seconds]
Guanin has quit [Ping timeout: 240 seconds]
[itchyjunk] has quit [Remote host closed the connection]
Guanin has joined #ipfs
Fessus has joined #ipfs
Fessus has quit [Client Quit]
Fessus has joined #ipfs
<whyrusleeping> emunand: hrm... 502 on the gateway is no good. Thanks for letting us know!
Alpha64 has quit [Read error: Connection reset by peer]
mandric has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drrty has quit [Ping timeout: 260 seconds]
rendar has joined #ipfs
graphene has quit [Remote host closed the connection]
graphene has joined #ipfs
tribrid has joined #ipfs
SamM has joined #ipfs
graphene has quit [Remote host closed the connection]
graphene has joined #ipfs
Steverman has joined #ipfs
benjamingr_ has joined #ipfs
ygrek has quit [Ping timeout: 256 seconds]
tribrid has quit [Quit: Textual IRC Client: www.textualapp.com]
graphene has quit [Remote host closed the connection]
graphene has joined #ipfs
graphene has quit [Remote host closed the connection]
graphene has joined #ipfs
Steverman has quit [Ping timeout: 240 seconds]
Steverman has joined #ipfs
plexigras has joined #ipfs
tribrid has joined #ipfs
reit has quit [Quit: Leaving]
MDude has quit [Ping timeout: 240 seconds]
Novitsh has joined #ipfs
malaclyps has quit [Read error: Connection reset by peer]
malaclyps has joined #ipfs
tribrid has quit [Quit: Textual IRC Client: www.textualapp.com]
Steverman has quit [Quit: WeeChat 2.2]
not-a-dog has joined #ipfs
SamM has quit [Quit: Connection closed for inactivity]
<lgierth> yeah working on it
<lgierth> best to always build retry functionality into your http client things
kkmk has quit [Quit: kkmk]
kkmk has joined #ipfs
mandric has joined #ipfs
abueide has joined #ipfs
dimitarvp has joined #ipfs
reit has joined #ipfs
goiko has joined #ipfs
MuffinPimp has quit [Quit: Goodbye.]
<JCaesar> ところで… I'm working on the rust http client… how am I supposed to interpret the following exchange? https://paste.pound-python.org/show/HQhU8UWf9hmnp0iwSbyp/ what timed out here?
<JCaesar> The client didn't send the second boundary, or something?
abueide has quit [Ping timeout: 244 seconds]
MDude has joined #ipfs
SamM has joined #ipfs
MuffinPimp has joined #ipfs
<lgierth> in multipart you're also supposed to close the boundary list
<lgierth> i think start lines are "--$boundaryID" and the closing line is "--$boundaryID--"
<lgierth> better double-check it, i'm writing from my memory
<JCaesar> Good to know… it's failing to add anything bigger than 2k… https://ipfs.io/ipfs/QmXTk5iP3Vscaibe9nQ2C8enXgae5JTy1uyp2uegSynryG/ Maybe a but in the reqwest version I'm using…
<JCaesar> s/but/bug
<lidel> JCaesar, how do you expect nocopy=true work when sending over HTTP API?
<lgierth> ah yeah good point
<JCaesar> lidel: I dumped a request that went over the loopback interface when running ipfs add --nocopy. That's what it looked like.
<JCaesar> I assumed the Abspath has something to do with it…
<lgierth> maybe you only dumped the first 2KB of the request? :)
<lgierth> bbiab
abueide has joined #ipfs
<lidel> JCaesar, if you write a client for http API exposed by go-ipfs make sure to set Close header to true in requests sent to /add endpoint, there is a known bug and it will save you a ton of time before you end up there: https://github.com/ipfs/go-ipfs/issues/5168
<lidel> not sure if the issue you are having is the same one, but it is something you want to account for anyway
<JCaesar> ty. I'm guessing it's a different issue. I was able to add files just fine (without nocopy) before I switched the version of reqwest (the rust HTTP client crate I'm using).
<JCaesar> yeah, switched version. that bug is gone…
abueide has quit [Read error: Connection reset by peer]
abueide has joined #ipfs
<JCaesar> Hmm. Seems I'm not affected by that close issue. But I already made the daemon go OOM with adding only 4 files… Guess I'll continue messing around with this next weekend.
MrSparkle has quit [Quit: Few women admit their age. Few men act theirs.]
abueide has quit [Ping timeout: 276 seconds]
not-a-dog has quit [Remote host closed the connection]
not-a-dog has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
not-a-dog has joined #ipfs
guideline has joined #ipfs
<sneak__> is there any way to speed up operations like `ipfs pin ls` and whatnot, they consume a lot of cpu and take minutes to complete even if i only have a few thousand items pinned
raulk has joined #ipfs
raulk has quit [Client Quit]
sneak__ has quit []
sneak has joined #ipfs
<rjharmon> related ^ - is there a way to package a merkle tree (from `ipfs files ...`) as a data bundle so that it can be fetched as a single unit instead of as a large number of individual, incremental reads? Or maybe something in `ipfs files` implementation that gives a similar outcome?
MrSparkle has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
not-a-dog has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
not-a-dog has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
not-a-dog has joined #ipfs
Manolis has quit [*.net *.split]
Tuxkowo has quit [*.net *.split]
caseorganic has quit [*.net *.split]
Poefke has quit [*.net *.split]
Bat`O_ has quit [*.net *.split]
m3s has quit [*.net *.split]
zenground0 has quit [*.net *.split]
cypher has quit [*.net *.split]
satazor has quit [*.net *.split]
pjz has quit [*.net *.split]
not-a-dog has quit [Remote host closed the connection]
Manolis has joined #ipfs
Tuxkowo has joined #ipfs
Trieste has quit [Ping timeout: 260 seconds]
not-a-dog has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
not-a-dog has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
not-a-dog has joined #ipfs
Trieste has joined #ipfs
<lidel> rjharmon, I remember there was TOAR support for arbitrary treees, one sec..
not-a-dog has quit [Remote host closed the connection]
<lidel> *Tar
not-a-dog has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
<lidel> curl "https://ipfs.io/api/v0/get?arg=/ipfs/QmRAJM5ByzuKKpzKKisGDwBPHzYqMvVrYC2PcVhkMnP3gd&archive=true&compress=false" > archive.tar.gz
<lidel> tar xvf archive.tar.gz
<lidel> well, compression=false, so this one was not .gz ;) but you get the idea
<lidel> this way you can fetch arbitrary directory as a single .tar archive
<prettymuchbryce> Has anyone here had any luck reducing network traffic with the IPFS daemon? I believe it's the DHT causing around 2mb of network traffic per minute on a fresh install with no pins. I am already using the router=dhtclient which helped a little bit.
<Kolonka[m]> there are about 4 thousand accounts in the matrix room
<Kolonka[m]> perhaps we should append how to register their nicks here to the topic
<Kolonka[m]> so they don't need to deal with any more banning
<Kolonka[m]> (message @freenode_NickServ:matrix.org "register <password> <email>")
<swedneck[m]> it's weird that matrix users are being kicked at all
<swedneck[m]> is this not a proper matrix room?
<r0kk3rz> its just a freenode bridged channel isnt it?
<lidel> swedneck[m], channel has +r mode on freenode, which means only registered users can access it (its a mitigation due to the span fo recent weeks)
<lidel> that being said, maybe we could check if it is safe to -r
<r0kk3rz> lidel: judging from another channel without +r, no way
<swedneck[m]> it would really be nice if we could make the matrix room a proper matrix room which is bridged to the freenode channel, instead of just a straight up bridge
<r0kk3rz> theres enough people from matrix land here to justify it i think
}ls{ has quit [Quit: real life interrupt]
<r0kk3rz> yeah it looks like they would have to create a new matrix room for that
SamM has left #ipfs [#ipfs]
<swedneck[m]> wait, i think the room just changed url to thebeckmeyers.xyz
<swedneck[m]> previously it was kasm.eu or something
<swedneck[m]> that's extremely weird
<r0kk3rz> well i now own #IPFS:matrix.org :P
<r0kk3rz> because apparently matrix differentiates between capitals :D
[itchyjunk] has joined #ipfs
lldd_ has joined #ipfs
rendar has quit []
Fessus has quit [Remote host closed the connection]
lldd_ has quit [Read error: Connection reset by peer]
not-a-dog has joined #ipfs
not-a-dog has quit [Ping timeout: 276 seconds]
goiko has quit [Ping timeout: 276 seconds]
[itchyjunk] has quit [Quit: Leaving]
[itchyjunk] has joined #ipfs
abueide has joined #ipfs
not-a-dog has joined #ipfs
guideline has quit [Ping timeout: 256 seconds]
abueide has quit [Ping timeout: 256 seconds]
shakalaka has joined #ipfs
Alpha64 has joined #ipfs
trqx has quit [Remote host closed the connection]
trqx has joined #ipfs
Fessus has joined #ipfs
mandric has quit [Ping timeout: 272 seconds]
guideline has joined #ipfs
Mateon3 has joined #ipfs
Mateon1 has quit [Ping timeout: 276 seconds]
Mateon3 is now known as Mateon1
tribrid has joined #ipfs
not-a-dog has quit [Remote host closed the connection]
graphene has quit [Remote host closed the connection]
graphene has joined #ipfs
tenchooo has quit [Remote host closed the connection]
tenchooo has joined #ipfs
benjamingr_ has quit [Quit: Connection closed for inactivity]
graphene has quit [Remote host closed the connection]
zenground0 has joined #ipfs
<zenground0> If you are interested in participating in the journal discussion this coming Friday have a look at the annotated paper:
<zenground0> It's by far best to look at the linked pdf with adobe acrobat or something else that lets you hover over the thought bubbles and see the notes in line
<zenground0> (otherwise it's very annoying to match bubbles with notes)
<zenground0> The notes call out good topics of discussion and places for further inquiry and add supplementary explanations for the parts of the paper I found a bit tougher.
<zenground0> To make Travis happy, this was submitted on 3 Aug 2012
<zenground0> to arxiv
<zenground0> :)
<zenground0> original link: https://arxiv.org/abs/1208.0798
plexigras has quit [Ping timeout: 240 seconds]
<Kolonka[m]> Should figure 1 in chapter 3 of the whitepaper have a line within the graph? Or am I missing something?
Adbray has quit [Disconnected by services]
Adbray_ has joined #ipfs
Adbray_ has quit [Read error: Connection reset by peer]
Adbray has joined #ipfs
<Kolonka[m]> Also, what exactly is the bar representing in "P ( send | r )"?
<lgierth> Kolonka[m]: wow yeah, that graph should have a line in there :)
<lgierth> Kolonka[m]: P(send|r) is explained at the end of the previous page
<lgierth> function P taking parameters send and r