lgierth changed the topic of #ipfs to: go-ipfs v0.4.10 is out! https://dist.ipfs.io/#go-ipfs | Dev chat: #ipfs-dev | IPFS, the InterPlanetary FileSystem: https://github.com/ipfs/ipfs | FAQ: https://git.io/voEh8 | Logs: https://botbot.me/freenode/ipfs/ | Code of Conduct: https://git.io/vVBS0
koo5 has quit [Ping timeout: 248 seconds]
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
erictapen has quit [Remote host closed the connection]
erictapen has joined #ipfs
upperdeck has quit [Ping timeout: 255 seconds]
upperdeck has joined #ipfs
mikeal_ has joined #ipfs
<mikeal_> is there an example, or docs, on how to configure a js node with a specific keypair? and how to generate a usable keypair to store and spin up nodes with? :)
droman has quit [Quit: WeeChat 1.9]
charley has joined #ipfs
anewuser has joined #ipfs
charley has quit [Ping timeout: 276 seconds]
erictapen has quit [Ping timeout: 240 seconds]
koo5 has joined #ipfs
anewuser has quit [Ping timeout: 240 seconds]
jimjamjim has joined #ipfs
jimjamjim has quit [Client Quit]
<lgierth> mikeal_: i'm not sure it's supported yet -- https://github.com/libp2p/js-libp2p/issues/111
Gytha has quit [Ping timeout: 260 seconds]
Aranjedeath has quit [Remote host closed the connection]
dPow has joined #ipfs
charley has joined #ipfs
charley has quit [Ping timeout: 246 seconds]
koo5 has quit [Ping timeout: 240 seconds]
koo5 has joined #ipfs
ShalokShalom has quit [Remote host closed the connection]
dignifiedquire has quit [Quit: Connection closed for inactivity]
<mikeal_> thanks :)
dimitarvp has quit [Ping timeout: 240 seconds]
Rusty78 has joined #ipfs
<Rusty78> Hi everyone! I am trying to figure out a small issue I am having with the API
<Rusty78> I am getting an image from the server, when I visit the URL it downloads it perfectly in Base64 format but when I send a GET request from POSTMAN or from another server I get different data returned
<Rusty78> Or its a content-type that I am not sure about
<Rusty78> Here is the public URL: http://159.203.168.215:5001/api/v0/cat?arg=zb2rhjZqkrK8jY81WTXHxvFKhXMsJTBwc7JDPxfM5WvFuTsb4 If you have a minute to replicate it you can query it in POSTMAN or any other preferred tool
f33d has quit [Remote host closed the connection]
<deltab> Rusty78: looks fine to me, except the Content-Type is text/plain and should be image/jpeg
<Rusty78> deltab: When I use POSTMAN/Send a GET request to that same URL it retrieves data approx twice the size of the actual image file
<Rusty78> Is there some kind of encoding I should be doing?
<Rusty78> And when I say "Send a GET request" - I am talking about sending it via a separate server (not a browser)
Milijus has quit [Ping timeout: 246 seconds]
<deltab> I suspect it's something that's happened after it's received
<Rusty78> If you look at the response in the chrome dev tools it actually shows that the data is being received similar to my other server/postman
<Rusty78> The browser seems to be changing it though
<deltab> the browser's been told to display it as text
<Rusty78> Which is odd because if I download that image it's a different file then when I fetch it from a CURL/POSTMAN request
<Rusty78> Or at least a different encoding..
<deltab> it's a corrupted tar file
ygrek has quit [Ping timeout: 248 seconds]
KDDLB has quit [Quit: Up, up, and away!]
kode54 has quit [Quit: ZNC 1.6.3+deb1 - http://znc.in]
charley has joined #ipfs
kode54 has joined #ipfs
charley has quit [Ping timeout: 246 seconds]
KDDLB has joined #ipfs
<Rusty78> deltab: Did you check the file?
<Rusty78> deltab: If that's the answer I will seriously love you forever if you figured that out
larpanet has joined #ipfs
<deltab> looking at https://codeshare.io/2BVeOL
<Rusty78> That was when I was using a the get command, I should have been using cat
<deltab> I can't reproduce exactly what happened, but it seems the tar file went through a UTF-8 decoder that replaced bytes it couldn't understand with U+FFFD, and the result was then UTF-8 encoded
<deltab> ah, confirmed, that's what happened to the JPEG in https://codeshare.io/216j7q
<Rusty78> What was confirmed?
dPow has quit [Read error: Connection reset by peer]
dPow has joined #ipfs
<Rusty78> That it was a corrupted tar file?
<deltab> how the file was corrupted
<Rusty78> Oh hmm
<deltab> the JPEG
<Rusty78> Do you think IPFS sent it corrupted or that it was received and then corrupted?
<deltab> I don't have the original tar
<deltab> it's fine when I access it, so after
<Rusty78> Any suggestions on how to fetch it without corrupting the file?
<Rusty78> CURL requests and POSTMAN fail consistently
<Rusty78> Here is the original file: https://codeshare.io/2EM8vP
<deltab> huh, in https://codeshare.io/5voDPl line 3297 has the last two digits swapped
<deltab> otherwise it's exactly the same
<Rusty78> it's exactly the same as what?
<deltab> er, when decoded
<deltab> anyway, the problem is with whatever's happening after it's received
<deltab> something tries to load it as text and corrupts it in the process
<Rusty78> I imagine you're right
<Rusty78> But are you sure it's not the browser taking that data and somehow modifying/encoding it?
<deltab> could be: I don't know what you're using to save the files
<Rusty78> Alright thank you for your advice, I will play around with other packages and see if I can get this to save to a file properly
<deltab> packages?
<deltab> you mentioned a server
<Rusty78> I'm using Node.js to grab it from my IPFS server
ashark has joined #ipfs
<Rusty78> Using other people's npm packages to accept/save the file
<deltab> how exactly?
<deltab> which packages?
<Rusty78> I'm using the Request package to get the data -> fs.writeFile
clownpriest has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<deltab> strings?
<Rusty78> Yup, request only returns strings
<Rusty78> AFIK
<deltab> I think that's the problem then
<Rusty78> You may be right, that's exactly what I am going to try and change it out right now
<Rusty78> Again, I can't thank you enough for the help
chriscool has joined #ipfs
dPow has quit [Read error: No route to host]
<deltab> fs.writeFile defaults to encoding to utf-8 when writing a string
dPow has joined #ipfs
<Rusty78> Looking at how to change that atm
<deltab> just give it a buffer
<Rusty78> Give it a buffer instead of the string?
<deltab> in request, set the encoding option to null
<deltab> "Note: if you expect binary data, you should set encoding: null."
ibash has joined #ipfs
<deltab> otherwise it defaults to utf-8
<Rusty78> Holy crapola
<Rusty78> That worked, it was the encoding
<Rusty78> You were 10000% right
<Rusty78> You have to give me your bitcoin address
<Rusty78> Let me buy you a few beers please lol
<deltab> heh, I don't have one
<deltab> btw, the swapped digits I noticed was because I'd pressed ctrl-t, which transposed them without me noticing
<deltab> so everything's explained now
<Rusty78> Haha small little incidents
<Rusty78> Again I can't tell you how much I appreciate you taking the time out to help
<Rusty78> Not sure I would have figured that one out for awhile
ajbouh has quit [Ping timeout: 240 seconds]
chris613 has quit [Quit: Leaving.]
pcctw has joined #ipfs
ashark has quit [Ping timeout: 248 seconds]
larpanet has quit [Ping timeout: 248 seconds]
}ls{ has quit [Quit: real life interrupt]
akagetsu01 has joined #ipfs
chriscool has quit [Ping timeout: 252 seconds]
mikeal_ has quit [Quit: Connection closed for inactivity]
espadrine has joined #ipfs
ulrichard has joined #ipfs
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bielewelt has quit [Quit: Leaving.]
ibash has joined #ipfs
<akagetsu01> morning o/
koo5 has quit [Ping timeout: 248 seconds]
charley has joined #ipfs
rendar has joined #ipfs
igorline has joined #ipfs
charley has quit [Ping timeout: 246 seconds]
Aranjedeath has joined #ipfs
chungy has quit [Quit: ZNC - http://znc.in]
dPow has quit [Remote host closed the connection]
chungy has joined #ipfs
koo5 has joined #ipfs
dPow has joined #ipfs
inetic has joined #ipfs
Aranjedeath has quit [Quit: Three sheets to the wind]
m0ns00n has joined #ipfs
espadrine has quit [Ping timeout: 252 seconds]
<SchrodingersScat> akagetsu01: morning
charley has joined #ipfs
charley has quit [Ping timeout: 246 seconds]
<akagetsu01> SchrodingersScat: how's it going?
igorline has quit [Ping timeout: 240 seconds]
<SchrodingersScat> akagetsu01: fat and sassy, you?
<akagetsu01> heh
<akagetsu01> I'm alright..got in work not long ago
<akagetsu01> prepared for another day of the pointless grind
mildred2 has joined #ipfs
<SchrodingersScat> ah, a professional IRCer, nice.
<SchrodingersScat> this IRC message brought to you by [redacted]
mildred1 has quit [Ping timeout: 248 seconds]
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<akagetsu01> eh, I prefer IRC over slack
<akagetsu01> for the job we use slack
igorline has joined #ipfs
ShalokShalom has joined #ipfs
ianopolous has quit [Remote host closed the connection]
dignifiedquire has joined #ipfs
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Trpger has joined #ipfs
Trpger has quit [Remote host closed the connection]
ylp has joined #ipfs
Xiti` has joined #ipfs
maxlath has joined #ipfs
Xiti has quit [Ping timeout: 240 seconds]
maxlath has quit [Remote host closed the connection]
charley has joined #ipfs
chriscool has joined #ipfs
charley has quit [Ping timeout: 246 seconds]
antfoo has quit [Ping timeout: 255 seconds]
Guest58919 has joined #ipfs
antfoo has joined #ipfs
chriscool has quit [Ping timeout: 252 seconds]
mildred has joined #ipfs
mildred4 has quit [Ping timeout: 252 seconds]
grumble has quit [Quit: </grumble>]
igorline has quit [Ping timeout: 252 seconds]
}ls{ has joined #ipfs
grumble has joined #ipfs
mildred1 has joined #ipfs
mildred3 has joined #ipfs
cxl000 has joined #ipfs
}ls{ has quit [Ping timeout: 264 seconds]
mildred has quit [Ping timeout: 248 seconds]
mildred2 has quit [Ping timeout: 240 seconds]
chriscool has joined #ipfs
igorline has joined #ipfs
androvex[m] has joined #ipfs
Milijus has joined #ipfs
<androvex[m]> So how much development is going into IPFS? Will it be completed before we colonize Mars?
<SchrodingersScat> which timeline? when we colonize mars in 2040 or in 2055?
Milijus has quit [Ping timeout: 246 seconds]
<androvex[m]> Good point. Well when the Chinese or Russians do it I guess :)
igorline has quit [Ping timeout: 240 seconds]
androvex[m] has left #ipfs ["User left"]
neosloth has joined #ipfs
kaotisk has quit [Read error: Connection reset by peer]
kaotisk has joined #ipfs
f33d has joined #ipfs
mildred2 has joined #ipfs
mildred1 has quit [Ping timeout: 252 seconds]
charley has joined #ipfs
charley has quit [Ping timeout: 255 seconds]
clemo has quit [Ping timeout: 240 seconds]
ShalokShalom_ has joined #ipfs
clemo has joined #ipfs
f33d has quit [Remote host closed the connection]
ShalokShalom has quit [Ping timeout: 240 seconds]
clemo1 has joined #ipfs
clemo has quit [Ping timeout: 255 seconds]
clemo1 is now known as clemo
f33d has joined #ipfs
dimitarvp has joined #ipfs
mildred4 has joined #ipfs
f33d has quit [Ping timeout: 252 seconds]
jkilpatr has quit [Ping timeout: 246 seconds]
droman has joined #ipfs
clemo1 has joined #ipfs
clemo has quit [Ping timeout: 240 seconds]
clemo1 is now known as clemo
mildred3 has quit [Ping timeout: 240 seconds]
winabb has joined #ipfs
winabb has quit [Client Quit]
clemo has quit [Ping timeout: 248 seconds]
clemo has joined #ipfs
clemo has quit [Client Quit]
mildred4 has quit [Ping timeout: 248 seconds]
Foxcool has joined #ipfs
f33d has joined #ipfs
f33d has quit [Ping timeout: 260 seconds]
jkilpatr has joined #ipfs
ShalokShalom_ is now known as ShalokShalom
f33d has joined #ipfs
f33d has quit [Ping timeout: 276 seconds]
koo5 has quit [Ping timeout: 276 seconds]
clemo has joined #ipfs
nick3499 has joined #ipfs
the-erm has quit [Ping timeout: 240 seconds]
aurel__ has joined #ipfs
the-erm has joined #ipfs
f33d has joined #ipfs
onde2rock[m] has joined #ipfs
f33d has quit [Ping timeout: 240 seconds]
charley has joined #ipfs
charley has quit [Ping timeout: 255 seconds]
aurel__ has quit [Quit: Leaving]
}ls{ has joined #ipfs
aurel__ has joined #ipfs
aurel__ is now known as testaurel
testaurel is now known as onde2rock
kaotisk has quit [Read error: Connection reset by peer]
kaotisk has joined #ipfs
f33d has joined #ipfs
Milijus has joined #ipfs
onde2rock has quit [Quit: Leaving]
f33d has quit [Ping timeout: 246 seconds]
Milijus has quit [Ping timeout: 246 seconds]
onde2rock[m] has left #ipfs ["User left"]
erictapen has joined #ipfs
mrus has quit [Remote host closed the connection]
vandemar has quit [Ping timeout: 255 seconds]
vandemar has joined #ipfs
clownpriest has joined #ipfs
Milijus has joined #ipfs
f33d has joined #ipfs
charley has joined #ipfs
f33d has quit [Ping timeout: 260 seconds]
charley has quit [Ping timeout: 240 seconds]
spossiba has quit [Ping timeout: 240 seconds]
igorline has joined #ipfs
spossiba has joined #ipfs
nick3499 has quit [Quit: Page closed]
f33d has joined #ipfs
f33d has quit [Ping timeout: 255 seconds]
fredthomsen has quit [Remote host closed the connection]
jmill has joined #ipfs
carlbennetts[m] has joined #ipfs
kenshyx has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
erictapen has quit [Remote host closed the connection]
erictapen has joined #ipfs
charley has joined #ipfs
ashark has joined #ipfs
f33d has joined #ipfs
charley has quit [Ping timeout: 240 seconds]
igorline has quit [Ping timeout: 252 seconds]
koo5 has joined #ipfs
f33d has quit [Ping timeout: 240 seconds]
chriscool has quit [Ping timeout: 248 seconds]
m0ns00n has quit [Quit: quit]
Mateon3 has joined #ipfs
Mateon1 has quit [Ping timeout: 246 seconds]
Mateon3 is now known as Mateon1
f33d has joined #ipfs
arpu has quit [Quit: Ex-Chat]
erictapen has quit [Ping timeout: 252 seconds]
chriscool has joined #ipfs
ibash has joined #ipfs
<daviddias> 1st IPLD Deep Dives call is going to start in a couple of Minutes
ulrichard has quit [Remote host closed the connection]
<daviddias> Notes: https://cryptpad.fr/pad/#/1/edit/OQ-51UugnXcv1Y+ABC9Hqw/c3dFDxScQNPdni9l-MaH1CVm/
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chriscool has quit [Ping timeout: 240 seconds]
<cjd[m]> Nice pad, FYI there's also /code/ which does markdown rendering natively, like this: https://cryptpad.fr/code/#/1/edit/71iQ6liN3Qkf5kVAlFYa-g/y5EzJ8jrZoXIOwsHidvsRGPl/
cwahlers has quit [Quit: Gone fishing]
kenshyx has quit [Quit: Leaving]
ShalokShalom has quit [Ping timeout: 255 seconds]
ylp has quit [Quit: Leaving.]
ligi has joined #ipfs
ligi has joined #ipfs
ligi has quit [Changing host]
<ligi> Hi - anyone else has problems with gateway.ipfs.io
<ligi> ?
<ligi> toggles between cannot be reached and 500
igorline has joined #ipfs
JPLaurin has joined #ipfs
<JPLaurin> is it only me ? https://ipfs.io/ is not responding
<JPLaurin> I get: ERR_CONNECTION_RESET
<JPLaurin> now it's back online
<ligi> JPLaurin: no I am also facing problems - there seem to be server errors - I noticed it with the gateway
<ligi> 17:37 < ligi> Hi - anyone else has problems with gateway.ipfs.io
<ligi> 17:38 < ligi> toggles between cannot be reached and 500
<ligi> 17:37 < ligi> ?
<ligi> really hope this is not the first sign that the ICO destroyed the project - really like IPFS ..
Milijus has quit [Ping timeout: 246 seconds]
igorline has quit [Ping timeout: 276 seconds]
Milijus has joined #ipfs
jmill has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
upperdeck has quit [Ping timeout: 240 seconds]
ShalokShalom has joined #ipfs
igorline has joined #ipfs
upperdeck has joined #ipfs
ibash has joined #ipfs
charley has joined #ipfs
<whyrusleeping> ligi: steps to reproduce?
charley has quit [Read error: Connection reset by peer]
<whyrusleeping> I was getting some issues last week, it turned out one of the gateway nodes was crashing
<whyrusleeping> lgierth: any idea ^ ?
<whyrusleeping> urgh... okay. i see it now
* whyrusleeping just got back to internet today
TsT has joined #ipfs
<TsT> hello guys
<ansuz> hello
<DuClare> hillo
charley has joined #ipfs
charley has quit [Ping timeout: 255 seconds]
Lymkwi has quit [Quit: "Tell 'em an invisible dude in the sky made the Universe, they'll believe ya. Tell 'em the paint's still wet, they'll always touch it to check."]
f33d has quit [Remote host closed the connection]
dimitarvp has quit [Ping timeout: 252 seconds]
<TsT> is ipfs.io have a server issue ?
<TsT> I got SSL (TLS) failure
<whyrusleeping> yeah, we're working on it
<TsT> ok
<whyrusleeping> recently switched some hosts around in our dns
<whyrusleeping> could have something to do with that
<TsT> I also check with ssllabs and got https://www.ssllabs.com/ssltest/analyze.html?d=ipfs.io
<TsT> but if you already know ... just good luck :D
<whyrusleeping> TsT: thanks!
inetic has quit [Ping timeout: 240 seconds]
<TsT> you're welcome ;)
<whyrusleeping> Its looking like it might be a too low value for response buffering in our nginx config
chriscool has joined #ipfs
<TsT> Im starting to play with ipfs
<TsT> I add a first pdf file ... and got it over ipfs.io/ipfs/<his hash> im happy
<TsT> but I don't have any ipfs daemon localy running ...
<TsT> Im surprised
<TsT> really cool in fact :p
gwillen has joined #ipfs
dimitarvp has joined #ipfs
mildred has joined #ipfs
galois_d_ has joined #ipfs
galois_dmz has quit [Ping timeout: 246 seconds]
m0ns00n has joined #ipfs
<whyrusleeping> TsT: it sometimes feels like magic :)
f33d has joined #ipfs
cwahlers has joined #ipfs
charley has joined #ipfs
charley has quit [Ping timeout: 246 seconds]
jmill has joined #ipfs
ArthurNorthwode[ has joined #ipfs
ltq520[m] has joined #ipfs
charley has joined #ipfs
grumble has quit [Quit: somebody]
grumble has joined #ipfs
charley has quit [Ping timeout: 260 seconds]
<ligi> whyrusleeping: sorry no steps to reproduce - somehow feels like a slack joint ;-)
<whyrusleeping> ligi: no worries, we tracked it down
<ligi> whyrusleeping: great! Big up!!
ligi has quit [Quit: leaving]
plddr has quit [Ping timeout: 240 seconds]
plddr has joined #ipfs
<TsT> is the same file added by 2 peoples will got the same hash ? or the ipfs hash depends of the "uploader" keys ?
charley has joined #ipfs
igorline has quit [Ping timeout: 240 seconds]
<whyrusleeping> TsT: the same file will (almost) always have the same hash
<whyrusleeping> the only reason it wouldnt is if the adder selects different importer parameters
<TsT> like one file or recursive directory ?
ibash has quit [Ping timeout: 248 seconds]
charley has quit [Remote host closed the connection]
ibash has joined #ipfs
maxlath has joined #ipfs
<whyrusleeping> both
charley has joined #ipfs
<whyrusleeping> (or maybe i misunderstood your question)
ibash_ has joined #ipfs
ibash has quit [Read error: Connection reset by peer]
igorline has joined #ipfs
ibash_ has quit [Ping timeout: 240 seconds]
erictapen has joined #ipfs
koo5 has quit [Ping timeout: 255 seconds]
ibash has joined #ipfs
akagetsu01 has quit [Quit: Connection closed for inactivity]
rendar has quit [Quit: std::lower_bound + std::less_equal *works* with a vector without duplicates!]
koo5 has joined #ipfs
igorline has quit [Ping timeout: 276 seconds]
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
charley has quit [Remote host closed the connection]
f33d has quit [Remote host closed the connection]
<erictapen> is there a way to determine the amount of nodes behind a hash? I'm speaking about the nodes mentioned in ipfs pin add --progress.
ibash has joined #ipfs
Jesin has quit [Quit: Leaving]
mildred has quit [Ping timeout: 240 seconds]
f33d has joined #ipfs
charley has joined #ipfs
m0ns00n has quit [Quit: quit]
f33d has quit [Ping timeout: 248 seconds]
<cwahlers> Kubuxu: so i tried that 0.4.11-dev build on my 1GB RAM box. it behaved a little but not significantly better, crashed with out of memory after ~24hs (peak was ~750 peers). i guess i'll have to upgrade to 2GB at least to run IPFS reliably on a VPS..
nobot4[m] has joined #ipfs
<cwahlers> i'm wondering, if more peers mean more memory, and if i run a node as a pinning backbone for a browser based IPFS application that subscribes to "clients", how does that scale? thinking about, say, twitter scale apps.
Spakman has joined #ipfs
Spakman has quit [Client Quit]
Spakman has joined #ipfs
galois_d_ has quit [Remote host closed the connection]
igorline has joined #ipfs
galois_dmz has joined #ipfs
maxlath has quit [Ping timeout: 276 seconds]
<cwahlers> ^ /cc haad
ygrek has joined #ipfs
ashark has quit [Ping timeout: 240 seconds]
jmill has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Kubuxu> we are working on a solution to stop it from accumulating peers
<Kubuxu> clients in webapps would not run ipfs for so long right now
Guest58919 has quit [Remote host closed the connection]
jmill has joined #ipfs
storer has joined #ipfs
mildred has joined #ipfs
mildred has quit [Read error: Connection reset by peer]
JPLaurin has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
mildred has joined #ipfs
Jesin has joined #ipfs
espadrine has joined #ipfs
ipfstar has quit [Quit: Page closed]
<cwahlers> right, but if my apps has a lot of users, and i have a lot of them simultaneously trying to persist data, i probably need a lot of nodes to scale that thing up, right? i mean, much more than traditional client/server setups, due to the high memory requirements (i'm just thinking out loud mostly, just wondering)
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
charley has quit [Remote host closed the connection]
charley has joined #ipfs
Lymkwi has joined #ipfs
Lymkwi is now known as Guest98346
chriscool has quit [Ping timeout: 248 seconds]
willybecker[m] has joined #ipfs
erde74 has joined #ipfs
Dark_Shroud[m] has left #ipfs ["User left"]
Guest98346 has quit [Changing host]
Guest98346 has joined #ipfs
Guest98346 is now known as Lymkwi_
jmill has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ibash has joined #ipfs
Lymkwi_ has quit [Quit: Moo]
ElectronLibre_ has joined #ipfs
ElectronLibre_ has quit [Changing host]
ElectronLibre_ has joined #ipfs
ElectronLibre_ has quit [Client Quit]
Lymkwi_ has joined #ipfs
jmill has joined #ipfs
f33d has joined #ipfs
<lgierth> Rusty78: make sure to never expose port 5001 to the public
<lgierth> it completely opens up your node to everyone
<Rusty78> lgierth: Thank you for the suggestion, I will shut it down asap, it was only used for testing purposes
erde74 has quit [Quit: Verlassend]
<lgierth> cool cool :) just in case -- our docs on that part aren't very good yet
chriscool has joined #ipfs
maxlath has joined #ipfs
<whyrusleeping> erictapen: you can do `ipfs refs -ru <hash> | wc -l`
ShalokShalom has quit [Remote host closed the connection]
Encrypt has joined #ipfs
Obscurity[m] has joined #ipfs
charley has quit [Read error: Connection reset by peer]
dgrisham has joined #ipfs
charley has joined #ipfs
akagetsu01 has joined #ipfs
upperdeck has quit [Ping timeout: 260 seconds]
<erictapen> whyrusleeping: great! Thats what I was looking for.
jmill has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
upperdeck has joined #ipfs
M-ecloud has joined #ipfs
charley has quit [Remote host closed the connection]
maxlath has quit [Ping timeout: 276 seconds]
m0ns00n has joined #ipfs
jkilpatr has quit [Ping timeout: 240 seconds]
pcctw has quit [Remote host closed the connection]
ashark has joined #ipfs
m0ns00n has quit [Quit: quit]
ashark has quit [Ping timeout: 240 seconds]
jmill has joined #ipfs
Lymkwi_ has quit [Ping timeout: 260 seconds]
mildred has quit [Ping timeout: 246 seconds]
mildred2 has quit [Ping timeout: 240 seconds]
jkilpatr has joined #ipfs
kurtis[m] has joined #ipfs
charley has joined #ipfs
ashark has joined #ipfs
clownpriest has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jkilpatr has quit [Ping timeout: 246 seconds]
erictapen has quit [Ping timeout: 276 seconds]
ccii1 has quit [Ping timeout: 240 seconds]
mildred has joined #ipfs
mildred2 has joined #ipfs
ashark has quit [Ping timeout: 240 seconds]
ashark has joined #ipfs
jkilpatr has joined #ipfs
infinity0_ has joined #ipfs
infinity0 is now known as Guest38109
infinity0_ has joined #ipfs
infinity0_ is now known as infinity0
Guest38109 has quit [Killed (adams.freenode.net (Nickname regained by services))]
ccii has joined #ipfs
pcctw has joined #ipfs
echoSMILE has joined #ipfs
echoSMILE has quit [Read error: Connection reset by peer]
echoSMILE has joined #ipfs
echoSMILE has quit [Max SendQ exceeded]
echoSMILE has joined #ipfs
echoSMILE has quit [Remote host closed the connection]
echoSMILE has joined #ipfs
echoSMILE has quit [Remote host closed the connection]
jimjamjim has joined #ipfs
echoSMILE has joined #ipfs
echoSMILE has quit [Remote host closed the connection]
echoSMILE has joined #ipfs
jmill has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
skeuomorf has joined #ipfs
Jesin has quit [Quit: Leaving]
Canellaceae has joined #ipfs
chris613 has joined #ipfs
ashark has quit [Ping timeout: 248 seconds]
Foxcool has quit [Ping timeout: 240 seconds]
barnacs has joined #ipfs
mildred2 has quit [Ping timeout: 248 seconds]
mildred has quit [Ping timeout: 240 seconds]
skeuomorf has quit [Ping timeout: 240 seconds]
skeuomorf has joined #ipfs
koo5 has quit [Ping timeout: 260 seconds]
mildred has joined #ipfs
Encrypt has quit [Quit: Quit]
qjkxkcd has quit [Ping timeout: 240 seconds]
ShalokShalom has joined #ipfs
mildred has quit [Ping timeout: 276 seconds]
espadrine has quit [Ping timeout: 240 seconds]
ShalokShalom has quit [Remote host closed the connection]
clownpriest has joined #ipfs
dgrisham has quit [Quit: WeeChat 1.9]
erictapen has joined #ipfs
charley has quit [Remote host closed the connection]
charley has joined #ipfs
skeuomorf has left #ipfs ["Killed buffer"]
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chriscool has quit [Ping timeout: 248 seconds]
dimitarvp` has joined #ipfs
igorline has quit [Ping timeout: 240 seconds]
dimitarvp has quit [Ping timeout: 240 seconds]
ibash has joined #ipfs
storer42 has joined #ipfs
storer42 has quit [Max SendQ exceeded]
storer has quit [Ping timeout: 248 seconds]
Bastard[m] has left #ipfs ["User left"]
f33d has quit [Remote host closed the connection]
jimjamjim has quit [Quit: I'll be back!]
jmill has joined #ipfs
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cxl000 has quit [Quit: Leaving]
spossiba has quit [Ping timeout: 240 seconds]
spossiba has joined #ipfs
storer42 has joined #ipfs
ibash has joined #ipfs
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ibash has joined #ipfs
jmill has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
larpanet has joined #ipfs
larpanet has quit [Remote host closed the connection]
larpanet has joined #ipfs
larpanet has quit [Remote host closed the connection]
ibash has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
larpanet has joined #ipfs
domanic has joined #ipfs
ibash has joined #ipfs
charley has quit [Remote host closed the connection]
anewuser has joined #ipfs
jkilpatr has quit [Quit: Leaving]
jkilpatr has joined #ipfs
dimitarvp` is now known as dimitarvp
heimindanger has joined #ipfs
kvda has joined #ipfs
<heimindanger> hello
<erictapen> heimindanger: hello
droman has quit [Quit: WeeChat 1.9]
ShalokShalom has joined #ipfs
<heimindanger> @erictapen is there any ipfs staff I can talk with? I am the creator of dtube.video that uses ipfs. Im working on further development and would like to ask a few questions