Kubuxu changed the topic of #ipfs to: go-ipfs 0.4.12-rc2 is out! Please try out: https://dist.ipfs.io/go-ipfs/v0.4.12-rc2 | 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
bloodstalker has joined #ipfs
arpu has joined #ipfs
trqx has quit [Remote host closed the connection]
trqx has joined #ipfs
bloodsta1ker has joined #ipfs
bloodstalker has quit [Ping timeout: 268 seconds]
}ls{ has quit [Quit: real life interrupt]
Alpha64_ has joined #ipfs
Alpha64 has quit [Ping timeout: 250 seconds]
bwerthmann has joined #ipfs
<whyrusleeping> massino: its a pretty early feature (still experimental) the documentation for it is here: https://github.com/ipfs/go-ipfs/blob/master/docs/experimental-features.md#ipfs-p2p
bloodstalker has joined #ipfs
Jesin has quit [Quit: Leaving]
bloodsta1ker has quit [Ping timeout: 268 seconds]
droman has quit [Quit: WeeChat 1.9.1]
trqx has quit [Remote host closed the connection]
trqx has joined #ipfs
code-glitch has quit [Ping timeout: 240 seconds]
code-glitch has joined #ipfs
bwerthmann has quit [Ping timeout: 268 seconds]
rcat has quit [Remote host closed the connection]
spread has joined #ipfs
<massino> Thank whyrusleeping !
onikuma has joined #ipfs
<whyrusleeping> massino: youre very welcome :)
<whyrusleeping> If you have any other questions or issues with that please let us know
<whyrusleeping> since its an experimental feature, any and all feedback is super welcome
<massino> Cool, thanks
<massino> I got it to work between two nodes with direct connectivity
<massino> The doc doesn't mention NAT traversal in the p2p feature, but I noticed there is another exp feature called "circuit relays", which seem to play that role. So I assume what I'm looking for is p2p + relays
<massino> Is that right?
<whyrusleeping> massino: yeah, the relays are manual right now (so you have to manually run `ipfs swarm connect <relay address>`)
<massino> Also: are pubsub and p2p roughly at the same level of maturity and development velocity? Or is one progressing faster than the other?
<whyrusleeping> but normal libp2p connections without the relay do some level of NAT traversal (including upnp, NAT-PMP, STUN and basic hole punching)
<massino> Ah! Good to know
<whyrusleeping> the pubsub is going to get more attention than the p2p command
<massino> Also good to know, thanks
<whyrusleeping> but thats mostly because we arent sure what else to do with the p2p command
<whyrusleeping> it works pretty well for its usecase
<massino> Is p2p built on top of pubsub?
<whyrusleeping> nope, its built on top of raw libp2p connections
<Steverman> I am still in the process of implementing live streaming through IPFS. The way I have it set up is to use ffmpeg to output segmented HLS to a directory. Since it's a live stream, the segmented .ts files will wrap from 0-10, and m3u8 will constantly be updated according to the files. Is this a good idea to do for IPFS?
<whyrusleeping> Steverman: hrm... maybe
<whyrusleeping> I would maybe add each new segment to ipfs, then use pubsub to send the hash to everyone who is streaming it
<Steverman> My idea was to use pubsub as well
<Steverman> But honestly, IPFS is like a blackbox for me
<Steverman> My idea what something like yours, but I'm not sure how well short-lived files are handled
<Steverman> My idea was*
<whyrusleeping> short lived files are fine
<whyrusleeping> make sure to do the add with the --raw-leaves option to avoid any extra framing (this will be default in the future)
<massino> whyrusleeping: regarding built-in NAT traversal in p2p; that didn't work for me out of the box. Do you have any pointers on where I could go poking? Debug commands, log messages to look for, portions of source code?
<whyrusleeping> massino: what were you trying?
<whyrusleeping> you can run this tool to get a diagnostic: https://github.com/whyrusleeping/natest
<massino> I have 2 ipfs daemons which cannot connect to each other, but are both properly connected to the public swarm. They can share files with each other at their respective IPNS keys; but they can't connect to each other with p2p
<Steverman> Can I do that in js?
<whyrusleeping> massino: okay, and you cant ping one from the other?
<massino> correct
<whyrusleeping> Steverman: you should be able to, but i'm not 100% clear on all the javascript stuff
<whyrusleeping> massino: okay, if you can get me the output of that natest tool on both machines I could help diagnose further
<massino> I've made sure IP connectivity is the issue; after arranging for the same daemons to connect to each other, p2p works as intended
<whyrusleeping> we're probably going to build that into ipfs itself soon, sorry about it being some weird extra thing
<massino> will do whyrusleeping , thank you very much
spread has quit [Ping timeout: 250 seconds]
onikuma has quit [Remote host closed the connection]
<Alpha64_> i been thinking about content adressing, which mechanism can you use to make a document refer to itself?
<Alpha64_> the only way would be to use an alias for the hash that you register
<Steverman> Okay... I still have to read more on this, but does this already solve the problem, where the individual node doesn't have to deliver the data to everyone (broadcast?)? Once other browsers get the segmented files, do they help distribute once other peers request the file?
<whyrusleeping> Steverman: yeah, if youre using bitswap, then the browser nodes would help distribute the files
<Steverman> Oh cool
<Steverman> I suppose bootstrap peers helps with peer discovering
robattila256 has quit [Quit: WeeChat 1.9.1]
onikuma has joined #ipfs
<Steverman> If I replace all the default bootstrap peers. Do I get a more private network?
<Steverman> My idea was that replacing the bootstraps, would reduce the webrtc connections and therefore have less cpu usage from the before mentioned issue
<whyrusleeping> Steverman: you can use the private networks feature if you want a private network
<whyrusleeping> though i don't think its implemented in js
Alpha64 has joined #ipfs
<Steverman> Is this ipfs-cluster?
<Steverman> I don't think so either :/
Alpha64_ has quit [Ping timeout: 250 seconds]
butteredpopcorn has quit [Ping timeout: 258 seconds]
<whyrusleeping> nope, ipfs cluster uses a consensus engine to cooperatively store things across multiple nodes
<whyrusleeping> private networks just adds an extra layer of encryption to all ipfs connections via a pre-shared key so that only people with the key can join the network
<Steverman> I see
atrus6 has quit [Read error: Connection reset by peer]
butteredpopcorn has joined #ipfs
Alpha64_ has joined #ipfs
Alpha64 has quit [Ping timeout: 268 seconds]
<Steverman> Oh, so I am actually doing it without pre-shared key. As in: Kinda private, but if you can find it, you're welcome.
<whyrusleeping> ah, alright
Alpha64_ has quit [Ping timeout: 248 seconds]
Alpha64 has joined #ipfs
Xiti` has joined #ipfs
Alpha64_ has joined #ipfs
Alpha64 has quit [Ping timeout: 240 seconds]
polman has quit [Ping timeout: 248 seconds]
tcrypt has quit [Ping timeout: 248 seconds]
apiarian has quit [Ping timeout: 248 seconds]
nekomune has quit [Ping timeout: 248 seconds]
elasticdog has quit [Ping timeout: 248 seconds]
elimisteve has quit [Ping timeout: 248 seconds]
shoogz has quit [Ping timeout: 248 seconds]
vyzo has quit [Ping timeout: 248 seconds]
vandemar has quit [Ping timeout: 248 seconds]
tangent128 has quit [Ping timeout: 248 seconds]
dsc_ has quit [Ping timeout: 248 seconds]
captain_morgan has quit [Ping timeout: 248 seconds]
smyds has quit [Ping timeout: 248 seconds]
Stskeeps has quit [Ping timeout: 248 seconds]
joeyh has quit [Ping timeout: 248 seconds]
Xiti has quit [Ping timeout: 248 seconds]
silotis has quit [Ping timeout: 248 seconds]
wking has quit [Ping timeout: 248 seconds]
dPow has quit [Ping timeout: 248 seconds]
JCaesar has quit [Ping timeout: 248 seconds]
jhulten has quit [Ping timeout: 248 seconds]
pawalls has quit [Ping timeout: 260 seconds]
elimisteve has joined #ipfs
dsc_ has joined #ipfs
Stskeeps has joined #ipfs
Stskeeps has quit [Changing host]
Stskeeps has joined #ipfs
JCaesar has joined #ipfs
jamiew has quit [Ping timeout: 260 seconds]
silotis has joined #ipfs
Alpha64 has joined #ipfs
pawalls has joined #ipfs
Alpha64_ has quit [Ping timeout: 240 seconds]
jamiew has joined #ipfs
polman has joined #ipfs
shoogz has joined #ipfs
jhulten has joined #ipfs
joeyh has joined #ipfs
tangent128 has joined #ipfs
kershaw[m] has joined #ipfs
wking has joined #ipfs
Alpha64_ has joined #ipfs
girrrrrrr2 has joined #ipfs
Alpha64 has quit [Ping timeout: 240 seconds]
tcrypt has joined #ipfs
nekomune has joined #ipfs
vandemar has joined #ipfs
vandemar has joined #ipfs
vandemar has quit [Changing host]
bloodstalker has quit [Ping timeout: 268 seconds]
elasticdog has joined #ipfs
captain_morgan has joined #ipfs
vyzo has joined #ipfs
smyds has joined #ipfs
dPow has joined #ipfs
robattila256 has joined #ipfs
jaboja has joined #ipfs
stoopkid has quit [Ping timeout: 250 seconds]
ogd has quit [Ping timeout: 250 seconds]
ogd has joined #ipfs
roderik[m] has quit [Ping timeout: 250 seconds]
reddraggone9[m] has quit [Ping timeout: 250 seconds]
randy[m] has quit [Ping timeout: 250 seconds]
dhole[m] has quit [Ping timeout: 250 seconds]
stapper[m] has quit [Ping timeout: 250 seconds]
ManTou[m] has quit [Ping timeout: 250 seconds]
warrenchan[m] has quit [Ping timeout: 250 seconds]
ElWood[m] has quit [Ping timeout: 250 seconds]
mirek1337[m] has quit [Ping timeout: 250 seconds]
kvin1[m] has quit [Ping timeout: 250 seconds]
nouts[m]1 has quit [Ping timeout: 250 seconds]
JEFFJ[m] has quit [Ping timeout: 250 seconds]
OrangeOrange[m] has quit [Ping timeout: 250 seconds]
a123123123[m] has quit [Ping timeout: 250 seconds]
wervenyt[m] has quit [Ping timeout: 250 seconds]
MaximOrlovsky[m] has quit [Ping timeout: 250 seconds]
Vitalii_Pandora[ has quit [Ping timeout: 250 seconds]
hyde_stevenson[m has quit [Ping timeout: 250 seconds]
francis[m]1 has quit [Ping timeout: 250 seconds]
suduyujiqing[m] has quit [Ping timeout: 250 seconds]
crapman[m] has quit [Ping timeout: 250 seconds]
sanday[m] has quit [Ping timeout: 250 seconds]
GMason[m] has quit [Ping timeout: 250 seconds]
zhangyijun[m] has quit [Ping timeout: 250 seconds]
gnmn[m] has quit [Ping timeout: 250 seconds]
Armagedda[m] has quit [Ping timeout: 250 seconds]
phi-rjan[m] has quit [Ping timeout: 250 seconds]
gragotta68[m] has quit [Ping timeout: 250 seconds]
AntoineM[m] has quit [Ping timeout: 250 seconds]
al1p[m] has quit [Ping timeout: 250 seconds]
masoodahm[m] has quit [Ping timeout: 250 seconds]
Luguber[m] has quit [Ping timeout: 250 seconds]
ChrisHutchinson[ has quit [Ping timeout: 250 seconds]
nine-h[m] has quit [Ping timeout: 250 seconds]
doronbehar[m] has quit [Ping timeout: 250 seconds]
gongzisun[m] has quit [Ping timeout: 250 seconds]
M-TidyKoala has quit [Ping timeout: 250 seconds]
solatis[m] has quit [Ping timeout: 250 seconds]
Gratin[m] has quit [Ping timeout: 250 seconds]
saggad[m] has quit [Ping timeout: 250 seconds]
Nouts[m] has quit [Ping timeout: 250 seconds]
WinterFox[m] has quit [Ping timeout: 250 seconds]
bgrayburn[m] has quit [Ping timeout: 250 seconds]
axic[m] has quit [Ping timeout: 250 seconds]
Powersource has quit [Ping timeout: 250 seconds]
kewde[m] has quit [Ping timeout: 250 seconds]
davidar has quit [Ping timeout: 250 seconds]
Captain_Beezay has quit [Ping timeout: 250 seconds]
bloodstalker has joined #ipfs
teej has quit [Ping timeout: 250 seconds]
frelars[m] has quit [Ping timeout: 250 seconds]
kantengri[m] has quit [Ping timeout: 250 seconds]
kimziv[m] has quit [Ping timeout: 250 seconds]
stretch[m] has quit [Ping timeout: 250 seconds]
skywavesurfer[m] has quit [Ping timeout: 250 seconds]
M-madsurgeon has quit [Ping timeout: 250 seconds]
robertomurta[m] has quit [Ping timeout: 250 seconds]
spoonless[m]1 has quit [Ping timeout: 250 seconds]
Rad[m] has quit [Ping timeout: 250 seconds]
xamino[m] has quit [Ping timeout: 250 seconds]
alldigital[m] has quit [Ping timeout: 250 seconds]
jjw[m] has quit [Ping timeout: 250 seconds]
scheutsch[m] has quit [Ping timeout: 250 seconds]
synth[m] has quit [Ping timeout: 250 seconds]
soberao[m] has quit [Ping timeout: 250 seconds]
marcusdunlop[m] has quit [Ping timeout: 250 seconds]
Henark[m] has quit [Ping timeout: 250 seconds]
mattylar12[m] has quit [Ping timeout: 250 seconds]
Andrew[m] has quit [Ping timeout: 250 seconds]
kurtis[m] has quit [Ping timeout: 250 seconds]
Guest218640[m] has quit [Ping timeout: 250 seconds]
shyBlugs[m] has quit [Ping timeout: 250 seconds]
adamierymenko[m7 has quit [Ping timeout: 250 seconds]
Dawnbreaker[m] has quit [Ping timeout: 250 seconds]
fiber[m] has quit [Ping timeout: 250 seconds]
Leer10[m] has quit [Ping timeout: 250 seconds]
xloem has quit [Ping timeout: 250 seconds]
einyx[m] has quit [Ping timeout: 250 seconds]
garblur83[m] has quit [Ping timeout: 250 seconds]
The_8472 has quit [Ping timeout: 250 seconds]
Bombe has quit [Ping timeout: 250 seconds]
bustillo[m] has quit [Ping timeout: 240 seconds]
Bob[m]2 has quit [Ping timeout: 240 seconds]
chisaki[m] has quit [Ping timeout: 240 seconds]
bumi[m] has quit [Ping timeout: 240 seconds]
Jtremback[m] has quit [Ping timeout: 240 seconds]
tameeshb has quit [Ping timeout: 240 seconds]
dopeman[m] has quit [Ping timeout: 240 seconds]
caveboner[m] has quit [Ping timeout: 240 seconds]
cubemonkey[m] has quit [Ping timeout: 240 seconds]
TheKysek[m] has quit [Ping timeout: 240 seconds]
janosberghorn[m] has quit [Ping timeout: 240 seconds]
MawKKe[m] has quit [Ping timeout: 240 seconds]
hueso[m] has quit [Ping timeout: 240 seconds]
redsteakraw[m] has quit [Ping timeout: 240 seconds]
erikj` has quit [Ping timeout: 240 seconds]
RichardCranium[m has quit [Ping timeout: 246 seconds]
xiaonanwen[m] has quit [Ping timeout: 246 seconds]
nedzadhrnjica[m4 has quit [Ping timeout: 246 seconds]
futurenewsplz[m] has quit [Ping timeout: 246 seconds]
testing_matrix47 has quit [Ping timeout: 246 seconds]
crazyshoubin[m] has quit [Ping timeout: 246 seconds]
Guest307124[m] has quit [Ping timeout: 246 seconds]
edsilv[m] has quit [Ping timeout: 246 seconds]
nop[m] has quit [Ping timeout: 246 seconds]
Atrus[m] has quit [Ping timeout: 246 seconds]
shabeeraly[m] has quit [Ping timeout: 246 seconds]
Bombe has joined #ipfs
dreuter[m] has quit [Ping timeout: 248 seconds]
Riot_User_123[m] has quit [Ping timeout: 248 seconds]
captainplanet[m] has quit [Ping timeout: 248 seconds]
linux8bit[m] has quit [Ping timeout: 248 seconds]
tidux[m] has quit [Ping timeout: 248 seconds]
igorline[m] has quit [Ping timeout: 248 seconds]
Matthew[m] has quit [Ping timeout: 248 seconds]
yala has quit [Ping timeout: 248 seconds]
zebburkeconte[m] has quit [Ping timeout: 252 seconds]
gzgy[m] has quit [Ping timeout: 252 seconds]
CHOAM[m] has quit [Ping timeout: 252 seconds]
genr8r[m] has quit [Ping timeout: 252 seconds]
ArthurNorthwode[ has quit [Ping timeout: 252 seconds]
hippopete[m] has quit [Ping timeout: 252 seconds]
wktian[m] has quit [Ping timeout: 252 seconds]
MatteoHirschstei has quit [Ping timeout: 252 seconds]
Jico[m] has quit [Ping timeout: 252 seconds]
Kalq[m] has quit [Ping timeout: 252 seconds]
raymond[m]2 has quit [Ping timeout: 252 seconds]
neurocis[m] has quit [Ping timeout: 252 seconds]
johanherman[m] has quit [Ping timeout: 252 seconds]
Cosmo[m] has quit [Ping timeout: 252 seconds]
fabrixxm has quit [Ping timeout: 252 seconds]
equalunique[m] has quit [Ping timeout: 252 seconds]
peakj[m] has quit [Ping timeout: 240 seconds]
tzuntzai[m] has quit [Ping timeout: 240 seconds]
karim_antoun[m] has quit [Ping timeout: 240 seconds]
Choyes[m] has quit [Ping timeout: 240 seconds]
Symen[m]1 has quit [Ping timeout: 240 seconds]
vihfvuuv[m] has quit [Ping timeout: 240 seconds]
snow-frog[m] has quit [Ping timeout: 240 seconds]
yodata[m] has quit [Ping timeout: 240 seconds]
zinovi[m] has quit [Ping timeout: 240 seconds]
j24[m] has quit [Ping timeout: 240 seconds]
M-oddvar has quit [Ping timeout: 240 seconds]
MadcapJake[m] has quit [Ping timeout: 240 seconds]
gjh1 has quit [Ping timeout: 240 seconds]
nobot4[m] has quit [Ping timeout: 240 seconds]
daneroo[m] has quit [Ping timeout: 240 seconds]
M-3630 has quit [Ping timeout: 240 seconds]
ZerataX[m]1 has quit [Ping timeout: 240 seconds]
axx_[m] has quit [Ping timeout: 240 seconds]
pacharanero[m] has quit [Ping timeout: 240 seconds]
torarne has quit [Ping timeout: 240 seconds]
kegan_1 has quit [Ping timeout: 240 seconds]
ekroon has quit [Ping timeout: 240 seconds]
GotoDengo[m] has quit [Ping timeout: 240 seconds]
aeaejei[m] has quit [Ping timeout: 240 seconds]
testuser54[m] has quit [Ping timeout: 240 seconds]
DYM[m] has quit [Ping timeout: 240 seconds]
landakram[m] has quit [Ping timeout: 240 seconds]
bilowan[m] has quit [Ping timeout: 240 seconds]
ehmry has quit [Ping timeout: 240 seconds]
musicmatze[m] has quit [Ping timeout: 240 seconds]
hl has quit [Ping timeout: 240 seconds]
pik[m] has quit [Ping timeout: 255 seconds]
Jacomo[m] has quit [Ping timeout: 255 seconds]
M-mlt has quit [Ping timeout: 255 seconds]
GoodGuyGreg[m] has quit [Ping timeout: 255 seconds]
bananabread[m] has quit [Ping timeout: 255 seconds]
ot8[m] has quit [Ping timeout: 255 seconds]
RuanMedGar[m] has quit [Ping timeout: 255 seconds]
fightentropy[m] has quit [Ping timeout: 255 seconds]
Tyroie[m] has quit [Ping timeout: 255 seconds]
cyolovin[m] has quit [Ping timeout: 255 seconds]
grensjo[m] has quit [Ping timeout: 255 seconds]
M568656s[m] has quit [Ping timeout: 255 seconds]
kershaw[m] has quit [Ping timeout: 246 seconds]
Woef[m] has quit [Ping timeout: 246 seconds]
solariiknight[m] has quit [Ping timeout: 246 seconds]
halle[m] has quit [Ping timeout: 246 seconds]
patrickr[m] has quit [Ping timeout: 246 seconds]
RomainLeCarrer[m has quit [Ping timeout: 246 seconds]
elmago[m] has quit [Ping timeout: 246 seconds]
M-r0kk3rz has quit [Ping timeout: 246 seconds]
M-kalmi has quit [Ping timeout: 246 seconds]
f4bio[m] has quit [Ping timeout: 246 seconds]
rihardsk[m] has quit [Ping timeout: 246 seconds]
aronvanammers[m] has quit [Ping timeout: 246 seconds]
stebalien has quit [Ping timeout: 246 seconds]
atenorio[m] has quit [Ping timeout: 246 seconds]
abbiya has quit [Ping timeout: 246 seconds]
irx[m] has quit [Ping timeout: 246 seconds]
Cargo[m] has quit [Ping timeout: 246 seconds]
Jakob[m]2 has quit [Ping timeout: 264 seconds]
Anthony[m] has quit [Ping timeout: 264 seconds]
M7865nfnjjfjf[m] has quit [Ping timeout: 264 seconds]
balhd[m] has quit [Ping timeout: 264 seconds]
Jacob[m] has quit [Ping timeout: 264 seconds]
Olinkl[m] has quit [Ping timeout: 264 seconds]
testimonlkjd[m] has quit [Ping timeout: 264 seconds]
blinkwang[m] has quit [Ping timeout: 264 seconds]
Kinch[m] has quit [Ping timeout: 264 seconds]
thelonelyghost has quit [Ping timeout: 264 seconds]
ltq520[m] has quit [Ping timeout: 264 seconds]
TheWhisper[m] has quit [Ping timeout: 264 seconds]
VegBerg[m] has quit [Ping timeout: 264 seconds]
renatocan[m] has quit [Ping timeout: 264 seconds]
flo[m] has quit [Ping timeout: 264 seconds]
tk[m] has quit [Ping timeout: 264 seconds]
M6AA4FD[m] has quit [Ping timeout: 255 seconds]
Mill3n[m] has quit [Ping timeout: 255 seconds]
BobWhite[m] has quit [Ping timeout: 255 seconds]
remediface[m] has quit [Ping timeout: 255 seconds]
at2500[m] has quit [Ping timeout: 255 seconds]
Jarekpl[m] has quit [Ping timeout: 255 seconds]
msmart[m] has quit [Ping timeout: 255 seconds]
joose[m] has quit [Ping timeout: 255 seconds]
gejohn[m] has quit [Ping timeout: 255 seconds]
huaixiaoxiao[m] has quit [Ping timeout: 255 seconds]
encns[m] has quit [Ping timeout: 255 seconds]
matrixjc[m] has quit [Ping timeout: 255 seconds]
mantycore[m] has quit [Ping timeout: 255 seconds]
Smith[m] has quit [Ping timeout: 255 seconds]
Gryffins[m] has quit [Ping timeout: 255 seconds]
harlock[m] has quit [Ping timeout: 255 seconds]
musoke[m] has quit [Ping timeout: 255 seconds]
antonizoon has quit [Ping timeout: 255 seconds]
chrono[m] has quit [Ping timeout: 255 seconds]
firemound[m] has quit [Ping timeout: 255 seconds]
stoneridge has quit [Ping timeout: 255 seconds]
conorohiggins[m] has quit [Ping timeout: 255 seconds]
jpf137[m] has quit [Ping timeout: 255 seconds]
sevarat[m] has quit [Ping timeout: 240 seconds]
liaowu[m] has quit [Ping timeout: 240 seconds]
Zedwick[m] has quit [Ping timeout: 240 seconds]
JuliusCaesar[m] has quit [Ping timeout: 240 seconds]
mushusei[m] has quit [Ping timeout: 240 seconds]
wazaundtechnik[m has quit [Ping timeout: 240 seconds]
mrpx[m] has quit [Ping timeout: 240 seconds]
flyinglasanga[m] has quit [Ping timeout: 240 seconds]
alphard[m] has quit [Ping timeout: 240 seconds]
Walletor[m] has quit [Ping timeout: 240 seconds]
bbcnetwork[m] has quit [Ping timeout: 240 seconds]
Xanza[m] has quit [Ping timeout: 240 seconds]
M[m]17 has quit [Ping timeout: 240 seconds]
changgong[m] has quit [Ping timeout: 240 seconds]
DerZauberberg[m] has quit [Ping timeout: 240 seconds]
Nekit[m] has quit [Ping timeout: 240 seconds]
zhikin[m] has quit [Ping timeout: 240 seconds]
k37[m] has quit [Ping timeout: 240 seconds]
zineje[m] has quit [Ping timeout: 240 seconds]
seaweed[m] has quit [Ping timeout: 240 seconds]
willhite[m] has quit [Ping timeout: 240 seconds]
vnadgir[m] has quit [Ping timeout: 240 seconds]
talonzx[m] has quit [Ping timeout: 240 seconds]
ZeroMe[m] has quit [Ping timeout: 240 seconds]
frabrunelle has quit [Ping timeout: 240 seconds]
jsnng[m] has quit [Ping timeout: 240 seconds]
mntr[m] has quit [Ping timeout: 240 seconds]
sanjivrai[m] has quit [Ping timeout: 240 seconds]
madduck[m] has quit [Ping timeout: 240 seconds]
sickill[m] has quit [Ping timeout: 240 seconds]
cutie has quit [Ping timeout: 240 seconds]
Dako300[m] has quit [Ping timeout: 240 seconds]
R1911[m] has quit [Ping timeout: 240 seconds]
vq12[m] has quit [Ping timeout: 240 seconds]
puminya[m] has quit [Ping timeout: 240 seconds]
dmholmes[m] has quit [Ping timeout: 240 seconds]
YuFanLovezYou[m] has quit [Ping timeout: 240 seconds]
DokterBob has quit [Ping timeout: 240 seconds]
dwesima[m] has quit [Ping timeout: 240 seconds]
aer[m] has quit [Ping timeout: 240 seconds]
fredrikj[m] has quit [Ping timeout: 240 seconds]
fairness[m] has quit [Ping timeout: 240 seconds]
benjaminmateev[m has quit [Ping timeout: 240 seconds]
PoeBoy[m] has quit [Ping timeout: 240 seconds]
miflow[m] has quit [Ping timeout: 240 seconds]
Lucas[m] has quit [Ping timeout: 240 seconds]
moellus[m] has quit [Ping timeout: 240 seconds]
fhs[m] has quit [Ping timeout: 240 seconds]
yl[m] has quit [Ping timeout: 240 seconds]
tx[m] has quit [Ping timeout: 240 seconds]
risingsun2100[m] has quit [Ping timeout: 240 seconds]
Peter[m]2 has quit [Ping timeout: 240 seconds]
bart80[m] has quit [Ping timeout: 240 seconds]
yuh96bbn[m] has quit [Ping timeout: 240 seconds]
hilariousandorig has quit [Ping timeout: 240 seconds]
fzzr[m] has quit [Ping timeout: 240 seconds]
elcyborg[m] has quit [Ping timeout: 240 seconds]
ganlub has quit [Ping timeout: 240 seconds]
cryp7ix has quit [Ping timeout: 240 seconds]
SethDavis[m] has quit [Ping timeout: 240 seconds]
panicbit-M has quit [Ping timeout: 240 seconds]
jeremycahill[m] has quit [Ping timeout: 240 seconds]
auditcranium[m] has quit [Ping timeout: 240 seconds]
drasko[m] has quit [Ping timeout: 240 seconds]
Novitsh[m] has quit [Ping timeout: 240 seconds]
cjd[m] has quit [Ping timeout: 240 seconds]
tadzik has quit [Ping timeout: 240 seconds]
Sabrina[m] has quit [Ping timeout: 248 seconds]
mike_new[m] has quit [Ping timeout: 248 seconds]
Ineentho[m] has quit [Ping timeout: 248 seconds]
kostya[m] has quit [Ping timeout: 248 seconds]
Lin[m] has quit [Ping timeout: 248 seconds]
aeaf123[m] has quit [Ping timeout: 248 seconds]
followers[m] has quit [Ping timeout: 248 seconds]
Bertschneider[m] has quit [Ping timeout: 248 seconds]
jebdj[m] has quit [Ping timeout: 248 seconds]
xiaolai[m] has quit [Ping timeout: 248 seconds]
laosijijulebu[m] has quit [Ping timeout: 248 seconds]
timetrack[m] has quit [Ping timeout: 248 seconds]
hanwudizz[m] has quit [Ping timeout: 248 seconds]
zie[m] has quit [Ping timeout: 248 seconds]
victor[m]1 has quit [Ping timeout: 248 seconds]
VitalyLipatov[m] has quit [Ping timeout: 248 seconds]
adam123[m] has quit [Ping timeout: 248 seconds]
toya[m] has quit [Ping timeout: 248 seconds]
sigmaister[m] has quit [Ping timeout: 248 seconds]
mastertrader[m]1 has quit [Ping timeout: 248 seconds]
leonardo77[m] has quit [Ping timeout: 248 seconds]
marting[m] has quit [Ping timeout: 248 seconds]
mectors[m] has quit [Ping timeout: 248 seconds]
asenski[m] has quit [Ping timeout: 248 seconds]
jiawei[m] has quit [Ping timeout: 248 seconds]
jomari[m] has quit [Ping timeout: 248 seconds]
leoserra[m] has quit [Ping timeout: 248 seconds]
t9840[m] has quit [Ping timeout: 248 seconds]
xemile94[m] has quit [Ping timeout: 248 seconds]
Anastiel[m] has quit [Ping timeout: 248 seconds]
M-liberdiko has quit [Ping timeout: 248 seconds]
alain[m] has quit [Ping timeout: 248 seconds]
because[m] has quit [Ping timeout: 248 seconds]
dyce[m] has quit [Ping timeout: 248 seconds]
dani9[m] has quit [Ping timeout: 252 seconds]
mxmaiastone[m] has quit [Ping timeout: 252 seconds]
vd[m] has quit [Ping timeout: 252 seconds]
M-brain has quit [Ping timeout: 252 seconds]
f0x[m] has quit [Ping timeout: 252 seconds]
gubbes[m] has quit [Ping timeout: 252 seconds]
shepner[m] has quit [Ping timeout: 252 seconds]
Ferdinandhi[m] has quit [Ping timeout: 252 seconds]
ztl8702[m] has quit [Ping timeout: 252 seconds]
hoomx[m] has quit [Ping timeout: 252 seconds]
bitgulf[m] has quit [Ping timeout: 252 seconds]
TheLugal[m] has quit [Ping timeout: 252 seconds]
M-nated has quit [Ping timeout: 252 seconds]
KillaZA[m] has quit [Ping timeout: 252 seconds]
gobelin[m] has quit [Ping timeout: 252 seconds]
electric[m] has quit [Ping timeout: 252 seconds]
mingchan88[m] has quit [Ping timeout: 252 seconds]
rasmuserik[m] has quit [Ping timeout: 252 seconds]
sbdbd[m] has quit [Ping timeout: 252 seconds]
belie[m] has quit [Ping timeout: 252 seconds]
exyi[m] has quit [Ping timeout: 252 seconds]
jceb[m] has quit [Ping timeout: 252 seconds]
fti7[m] has quit [Ping timeout: 252 seconds]
ricburton[m] has quit [Ping timeout: 252 seconds]
tgdnt[m] has quit [Ping timeout: 252 seconds]
patto_overflow[m has quit [Ping timeout: 252 seconds]
M3v[m] has quit [Ping timeout: 252 seconds]
garikson[m] has quit [Ping timeout: 252 seconds]
fetlock_coco_fis has quit [Ping timeout: 252 seconds]
Antharia[m] has quit [Ping timeout: 252 seconds]
Mike[m]1 has quit [Ping timeout: 252 seconds]
network[m] has quit [Ping timeout: 252 seconds]
zekaf[m] has quit [Ping timeout: 252 seconds]
bitcoinprocircut has quit [Ping timeout: 252 seconds]
cmatthias[m] has quit [Ping timeout: 252 seconds]
paulith[m] has quit [Ping timeout: 252 seconds]
LaPingvino[m] has quit [Ping timeout: 252 seconds]
aikidouke has quit [Ping timeout: 252 seconds]
M-sraja has quit [Ping timeout: 252 seconds]
Vaultpls[m] has quit [Ping timeout: 252 seconds]
ivano[m] has quit [Ping timeout: 252 seconds]
charlienyc[m] has quit [Ping timeout: 252 seconds]
Scio[m] has quit [Ping timeout: 252 seconds]
redviking[m] has quit [Ping timeout: 252 seconds]
MaxSan[m] has quit [Ping timeout: 252 seconds]
TrickOrTreat[m] has quit [Ping timeout: 252 seconds]
HydraGene[m] has quit [Ping timeout: 252 seconds]
gendale[m] has quit [Ping timeout: 252 seconds]
M-gavinjohnnoona has quit [Ping timeout: 252 seconds]
M-trashrabbit has quit [Ping timeout: 252 seconds]
cryptobiotik[m] has quit [Ping timeout: 252 seconds]
MrAxilus[m] has quit [Ping timeout: 252 seconds]
Conspiracy[m] has quit [Ping timeout: 252 seconds]
machete[m] has quit [Ping timeout: 252 seconds]
shellkr[m] has quit [Ping timeout: 252 seconds]
jsyn[m] has quit [Ping timeout: 252 seconds]
dryajov[m] has quit [Ping timeout: 252 seconds]
notafile[m] has quit [Ping timeout: 252 seconds]
AkhILman has quit [Ping timeout: 252 seconds]
GregKNicholson[m has quit [Ping timeout: 252 seconds]
albuic has quit [Ping timeout: 252 seconds]
walle303 has quit [Ping timeout: 252 seconds]
am2on has quit [Ping timeout: 252 seconds]
lnxw37[m] has quit [Ping timeout: 252 seconds]
klara[m] has quit [Ping timeout: 246 seconds]
lisky[m] has quit [Ping timeout: 246 seconds]
ctresc[m] has quit [Ping timeout: 246 seconds]
chenlee1116[m] has quit [Ping timeout: 246 seconds]
M0spark[m] has quit [Ping timeout: 246 seconds]
therealklanni[m] has quit [Ping timeout: 246 seconds]
NathanBraswell[m has quit [Ping timeout: 246 seconds]
willybecker[m] has quit [Ping timeout: 246 seconds]
jux[m] has quit [Ping timeout: 246 seconds]
DrIzzel[m] has quit [Ping timeout: 246 seconds]
aaronye[m] has quit [Ping timeout: 246 seconds]
M[m]16 has quit [Ping timeout: 246 seconds]
q3y4r[m] has quit [Ping timeout: 246 seconds]
stech[m] has quit [Ping timeout: 246 seconds]
visim[m] has quit [Ping timeout: 246 seconds]
Chris[m]2 has quit [Ping timeout: 246 seconds]
M1trace[m] has quit [Ping timeout: 246 seconds]
deebee[m] has quit [Ping timeout: 246 seconds]
Martinhandy[m] has quit [Ping timeout: 246 seconds]
M-Amandine has quit [Ping timeout: 246 seconds]
noperope[m] has quit [Ping timeout: 246 seconds]
ircmaster[m] has quit [Ping timeout: 246 seconds]
M-jfred has quit [Ping timeout: 246 seconds]
M-HirmeS has quit [Ping timeout: 246 seconds]
mitfree[m] has quit [Ping timeout: 246 seconds]
hannes[m] has quit [Ping timeout: 246 seconds]
hjoest[m] has quit [Ping timeout: 246 seconds]
LustTeufel69[m] has quit [Ping timeout: 255 seconds]
M-Stephen304 has quit [Ping timeout: 255 seconds]
Andrew[m]1 has quit [Ping timeout: 255 seconds]
Tbi[m] has quit [Ping timeout: 255 seconds]
loovthejungle[m] has quit [Ping timeout: 255 seconds]
halohaL[m] has quit [Ping timeout: 255 seconds]
imtoken[m] has quit [Ping timeout: 255 seconds]
hajak[m] has quit [Ping timeout: 255 seconds]
rubencordeiro[m] has quit [Ping timeout: 255 seconds]
noether[m] has quit [Ping timeout: 255 seconds]
paranoix[m] has quit [Ping timeout: 255 seconds]
ethanstokes[m] has quit [Ping timeout: 255 seconds]
jhulten[m] has quit [Ping timeout: 255 seconds]
juanbernabo[m] has quit [Ping timeout: 255 seconds]
joshb[m] has quit [Ping timeout: 255 seconds]
Obscurity[m] has quit [Ping timeout: 255 seconds]
cdetrio[m] has quit [Ping timeout: 255 seconds]
Marco[m] has quit [Ping timeout: 255 seconds]
Kythyria[m] has quit [Ping timeout: 255 seconds]
MilkManzJourDadd has quit [Ping timeout: 255 seconds]
fil_redpill has quit [Ping timeout: 255 seconds]
happy_gnu[m] has quit [Ping timeout: 255 seconds]
yuvipanda has quit [Ping timeout: 255 seconds]
cornu[m] has quit [Ping timeout: 255 seconds]
stoopkid has joined #ipfs
abhii_n[m] has quit [Ping timeout: 255 seconds]
gomarashi[m] has quit [Ping timeout: 255 seconds]
omomom[m] has quit [Ping timeout: 255 seconds]
TempMan[m] has quit [Ping timeout: 255 seconds]
homulilly[m] has quit [Ping timeout: 255 seconds]
iwxzr[m] has quit [Ping timeout: 255 seconds]
sleepdeficit[m] has quit [Ping timeout: 255 seconds]
waz2[m] has quit [Ping timeout: 255 seconds]
chenzhengyi[m] has quit [Ping timeout: 255 seconds]
Mario[m]1 has quit [Ping timeout: 255 seconds]
MariaP[m] has quit [Ping timeout: 255 seconds]
luwum[m] has quit [Ping timeout: 255 seconds]
ipnoyl[m] has quit [Ping timeout: 255 seconds]
mayel[m]1 has quit [Ping timeout: 255 seconds]
G16357300[m] has quit [Ping timeout: 255 seconds]
rubenmcosta[m] has quit [Ping timeout: 255 seconds]
kpcyrd[m] has quit [Ping timeout: 255 seconds]
Geeky[m] has quit [Ping timeout: 255 seconds]
MuxDarkfire[m] has quit [Ping timeout: 255 seconds]
dkess[m] has quit [Ping timeout: 255 seconds]
eluc[m] has quit [Ping timeout: 255 seconds]
cyberwolf[m] has quit [Ping timeout: 255 seconds]
Akito[m] has quit [Ping timeout: 255 seconds]
xelra[m] has quit [Ping timeout: 255 seconds]
t[m] has quit [Ping timeout: 255 seconds]
nocent has quit [Ping timeout: 255 seconds]
kobajagi[m] has quit [Ping timeout: 255 seconds]
wak-work has quit [Ping timeout: 255 seconds]
RossSchulman[m] has quit [Ping timeout: 255 seconds]
M-anomie has quit [Ping timeout: 255 seconds]
himcesjf has quit [Ping timeout: 255 seconds]
TheGillies has quit [Ping timeout: 255 seconds]
unlmtd has quit [Ping timeout: 255 seconds]
M-gdr has quit [Ping timeout: 255 seconds]
herzmeister[m] has quit [Ping timeout: 255 seconds]
kuhilasvaara has quit [Ping timeout: 255 seconds]
astronavt[m] has quit [Ping timeout: 255 seconds]
Barnabas[m] has quit [Ping timeout: 255 seconds]
gvimrh[m] has quit [Ping timeout: 240 seconds]
lanshoot[m] has quit [Ping timeout: 240 seconds]
Jupadr[m] has quit [Ping timeout: 240 seconds]
akosiaris[m] has quit [Ping timeout: 240 seconds]
stevendai[m] has quit [Ping timeout: 240 seconds]
petergerber[m] has quit [Ping timeout: 240 seconds]
toon__[m] has quit [Ping timeout: 240 seconds]
augoeides[m] has quit [Ping timeout: 240 seconds]
lypticdna[m] has quit [Ping timeout: 240 seconds]
aruzicka has quit [Ping timeout: 240 seconds]
seizo[m] has quit [Ping timeout: 240 seconds]
bhipple[m] has quit [Ping timeout: 240 seconds]
cranau[m] has quit [Ping timeout: 240 seconds]
caught_in_the_ma has quit [Ping timeout: 240 seconds]
aquentson[m] has quit [Ping timeout: 240 seconds]
dtz has quit [Ping timeout: 240 seconds]
cyberpepe[m] has quit [Ping timeout: 240 seconds]
M-GrimKriegor has quit [Ping timeout: 240 seconds]
scde has quit [Ping timeout: 240 seconds]
mortn[m] has quit [Ping timeout: 240 seconds]
ntninja has quit [Ping timeout: 240 seconds]
wakest has quit [Ping timeout: 240 seconds]
ebarch has quit [Ping timeout: 240 seconds]
clunk-dike[m] has quit [Ping timeout: 240 seconds]
Tectest123[m] has quit [Ping timeout: 240 seconds]
davadl[m] has quit [Ping timeout: 240 seconds]
M-wldhx has quit [Ping timeout: 240 seconds]
christopherdebee has quit [Ping timeout: 240 seconds]
fedor1113[m] has quit [Ping timeout: 240 seconds]
zerga[m] has quit [Ping timeout: 240 seconds]
steele[m] has quit [Ping timeout: 240 seconds]
M-Dave has quit [Ping timeout: 240 seconds]
GuillaumeREMBERT has quit [Ping timeout: 240 seconds]
M-jimt has quit [Ping timeout: 240 seconds]
jcgruenhage has quit [Ping timeout: 240 seconds]
screamerbeetle[m has quit [Ping timeout: 264 seconds]
testingotro[m] has quit [Ping timeout: 264 seconds]
sabba[m] has quit [Ping timeout: 264 seconds]
xuv[m] has quit [Ping timeout: 264 seconds]
M-Guillaume has quit [Ping timeout: 264 seconds]
M-amdtel has quit [Ping timeout: 264 seconds]
stevetbm[m] has quit [Ping timeout: 264 seconds]
kevindetry[m] has quit [Ping timeout: 264 seconds]
rhizo[m] has quit [Ping timeout: 264 seconds]
matiasnomad[m] has quit [Ping timeout: 264 seconds]
Arthur[m] has quit [Ping timeout: 264 seconds]
rovdyl[m] has quit [Ping timeout: 264 seconds]
JakobTigerstrm[m has quit [Ping timeout: 264 seconds]
chae4aish9[m] has quit [Ping timeout: 264 seconds]
mith[m] has quit [Ping timeout: 264 seconds]
litebit[m] has quit [Ping timeout: 264 seconds]
Chelovek[m] has quit [Ping timeout: 264 seconds]
RedFire[m] has quit [Ping timeout: 264 seconds]
wanglei0095[m] has quit [Ping timeout: 264 seconds]
edejong[m] has quit [Ping timeout: 264 seconds]
fluff[m] has quit [Ping timeout: 264 seconds]
SeaSon[m] has quit [Ping timeout: 264 seconds]
huda[m] has quit [Ping timeout: 264 seconds]
josejuanisaac[m] has quit [Ping timeout: 264 seconds]
gravydigger[m] has quit [Ping timeout: 264 seconds]
tehciolo[m] has quit [Ping timeout: 264 seconds]
slowtoaster[m] has quit [Ping timeout: 264 seconds]
chevdor[m] has quit [Ping timeout: 264 seconds]
Phyra[m] has quit [Ping timeout: 264 seconds]
gabyshu[m] has quit [Ping timeout: 264 seconds]
melanargia[m] has quit [Ping timeout: 264 seconds]
Mugi[m] has quit [Ping timeout: 264 seconds]
jugash[m] has quit [Ping timeout: 264 seconds]
asyncsec[m] has quit [Ping timeout: 264 seconds]
henriqueqc[m] has quit [Ping timeout: 264 seconds]
Hongar[m] has quit [Ping timeout: 264 seconds]
yellowbelly[m] has quit [Ping timeout: 264 seconds]
Ghostwalk[m] has quit [Ping timeout: 264 seconds]
bencevans[m] has quit [Ping timeout: 264 seconds]
iarebatman[m] has quit [Ping timeout: 264 seconds]
codyopel has quit [Ping timeout: 264 seconds]
chatmasta[m] has quit [Ping timeout: 264 seconds]
ben999[m] has quit [Ping timeout: 264 seconds]
DavidP[m] has quit [Ping timeout: 264 seconds]
TFX[m] has quit [Ping timeout: 264 seconds]
user1234[m] has quit [Ping timeout: 264 seconds]
luisbg[m] has quit [Ping timeout: 264 seconds]
mkg20001[m] has quit [Ping timeout: 264 seconds]
timthelion[m] has quit [Ping timeout: 264 seconds]
turt2live has quit [Ping timeout: 264 seconds]
guest69[m] has quit [Ping timeout: 264 seconds]
H3ndr1k[m] has quit [Ping timeout: 264 seconds]
orenwf[m] has quit [Ping timeout: 264 seconds]
M107262[m] has quit [Ping timeout: 264 seconds]
Li[m] has quit [Ping timeout: 264 seconds]
aloisdg[m] has quit [Ping timeout: 264 seconds]
mdrights[m] has quit [Ping timeout: 264 seconds]
davidar_ has quit [Ping timeout: 264 seconds]
obi[m] has quit [Ping timeout: 276 seconds]
kants[m] has quit [Ping timeout: 276 seconds]
johngrimes[m] has quit [Ping timeout: 276 seconds]
aravindrs[m] has quit [Ping timeout: 276 seconds]
ash[m] has quit [Ping timeout: 276 seconds]
mingray[m] has quit [Ping timeout: 276 seconds]
snsnsbsb[m] has quit [Ping timeout: 276 seconds]
emunand[m] has quit [Ping timeout: 276 seconds]
equaliser[m] has quit [Ping timeout: 276 seconds]
Emilylovesleep[m has quit [Ping timeout: 276 seconds]
jaredthirsk[m] has quit [Ping timeout: 276 seconds]
polytomous[m] has quit [Ping timeout: 276 seconds]
dliot[m] has quit [Ping timeout: 276 seconds]
porcow[m] has quit [Ping timeout: 276 seconds]
martinrusev[m] has quit [Ping timeout: 276 seconds]
nonce911[m] has quit [Ping timeout: 276 seconds]
IsaacDunlap[m] has quit [Ping timeout: 276 seconds]
basilgohar[m] has quit [Ping timeout: 276 seconds]
anon9876[m] has quit [Ping timeout: 276 seconds]
alantrade[m] has quit [Ping timeout: 276 seconds]
wrjvszq[m] has quit [Ping timeout: 276 seconds]
Orpugi[m] has quit [Ping timeout: 276 seconds]
nullptr_[m] has quit [Ping timeout: 276 seconds]
M-ecloud has quit [Ping timeout: 276 seconds]
gulimu[m] has quit [Ping timeout: 276 seconds]
deepmind[m] has quit [Ping timeout: 276 seconds]
addd34[m] has quit [Ping timeout: 276 seconds]
jessiedella[m] has quit [Ping timeout: 276 seconds]
carlbennetts[m] has quit [Ping timeout: 276 seconds]
hexican[m] has quit [Ping timeout: 276 seconds]
ravita1967[m] has quit [Ping timeout: 276 seconds]
Xiang[m] has quit [Ping timeout: 276 seconds]
WiredDude[m] has quit [Ping timeout: 276 seconds]
mikecohen[m] has quit [Ping timeout: 276 seconds]
hef[m] has quit [Ping timeout: 276 seconds]
Polychrome[m] has quit [Ping timeout: 276 seconds]
hexkey[m] has quit [Ping timeout: 276 seconds]
M-BostonEnginerd has quit [Ping timeout: 276 seconds]
silur[m] has quit [Ping timeout: 276 seconds]
peddie[m] has quit [Ping timeout: 276 seconds]
Rmesil8O4b[m] has quit [Ping timeout: 276 seconds]
ttk2[m] has quit [Ping timeout: 276 seconds]
chihiro[m] has quit [Ping timeout: 276 seconds]
pt467353[m] has quit [Ping timeout: 246 seconds]
LifeNT[m] has quit [Ping timeout: 246 seconds]
PowerOlive[m] has quit [Ping timeout: 246 seconds]
Anne_Jiang[m] has quit [Ping timeout: 246 seconds]
octalsrc[m] has quit [Ping timeout: 246 seconds]
miso[m] has quit [Ping timeout: 246 seconds]
zaengerlein[m] has quit [Ping timeout: 246 seconds]
hypercube[m] has quit [Ping timeout: 246 seconds]
M-arx has quit [Ping timeout: 246 seconds]
DiCE1904[m] has quit [Ping timeout: 246 seconds]
Pneumaticat has quit [Ping timeout: 246 seconds]
sk23[m] has quit [Ping timeout: 246 seconds]
igel[m] has quit [Ping timeout: 246 seconds]
jlpeters[m] has quit [Ping timeout: 246 seconds]
kkushal32[m] has quit [Ping timeout: 246 seconds]
null_radix[m] has quit [Ping timeout: 246 seconds]
maxlath[m] has quit [Ping timeout: 246 seconds]
itorres has quit [Ping timeout: 246 seconds]
benhylau[m] has quit [Ping timeout: 246 seconds]
keks[m] has quit [Ping timeout: 246 seconds]
narispo[m] has quit [Ping timeout: 246 seconds]
locusf has quit [Ping timeout: 246 seconds]
omiselu[m] has quit [Ping timeout: 248 seconds]
frabcus[m] has quit [Ping timeout: 248 seconds]
jig[m] has quit [Ping timeout: 248 seconds]
pacman99[m] has quit [Ping timeout: 248 seconds]
levzhazeschi[m] has quit [Ping timeout: 248 seconds]
fujexo[m] has quit [Ping timeout: 248 seconds]
Silke^ has quit [Ping timeout: 248 seconds]
xMajedz[m] has quit [Ping timeout: 248 seconds]
gwillen[m] has quit [Ping timeout: 248 seconds]
louisw[m] has quit [Ping timeout: 248 seconds]
Skippy[m] has quit [Ping timeout: 248 seconds]
palkeo[m] has quit [Ping timeout: 248 seconds]
M-hash has quit [Ping timeout: 248 seconds]
henri_nourel[m] has quit [Ping timeout: 248 seconds]
jfred[m] has quit [Ping timeout: 248 seconds]
aekym[m] has quit [Ping timeout: 255 seconds]
markusgalileo[m] has quit [Ping timeout: 255 seconds]
HerroKitty[m] has quit [Ping timeout: 255 seconds]
neo[m] has quit [Ping timeout: 255 seconds]
grouchofractal2[ has quit [Ping timeout: 255 seconds]
laptop_nativ[m] has quit [Ping timeout: 255 seconds]
confusedrobot[m] has quit [Ping timeout: 255 seconds]
thinkmassive[m] has quit [Ping timeout: 255 seconds]
rnkch[m] has quit [Ping timeout: 255 seconds]
sizeofcat[m] has quit [Ping timeout: 255 seconds]
DarkOoze[m] has quit [Ping timeout: 255 seconds]
AndrewMcSwain[m] has quit [Ping timeout: 255 seconds]
cnygaard[m] has quit [Ping timeout: 255 seconds]
kkr[m] has quit [Ping timeout: 255 seconds]
Remramm has quit [Ping timeout: 255 seconds]
rtjure[m] has quit [Ping timeout: 255 seconds]
trouty[m] has quit [Ping timeout: 252 seconds]
kvakes[m] has quit [Ping timeout: 252 seconds]
thejohnhenry[m] has quit [Ping timeout: 252 seconds]
Sonata1 has quit [Ping timeout: 252 seconds]
M283750649[m] has quit [Ping timeout: 252 seconds]
MayeldeBorniol[m has quit [Ping timeout: 252 seconds]
pierce has quit [Ping timeout: 252 seconds]
kitten[m] has quit [Ping timeout: 255 seconds]
emir[m] has quit [Ping timeout: 255 seconds]
gugyygy00[m] has quit [Ping timeout: 255 seconds]
coldsauce[m] has quit [Ping timeout: 255 seconds]
homelessrobot[m] has quit [Ping timeout: 255 seconds]
SerkanDevel[m] has quit [Ping timeout: 255 seconds]
cybervking[m] has quit [Ping timeout: 255 seconds]
StackerRobot[m] has quit [Ping timeout: 255 seconds]
gylpm[m] has quit [Ping timeout: 255 seconds]
jaller94[m] has quit [Ping timeout: 255 seconds]
M-martinklepsch has quit [Ping timeout: 255 seconds]
jfmherokiller[m] has quit [Ping timeout: 255 seconds]
pawalls has quit [Ping timeout: 240 seconds]
Bloo[m] has quit [Ping timeout: 240 seconds]
terminator360[m] has quit [Ping timeout: 264 seconds]
Guest198477[m] has quit [Ping timeout: 264 seconds]
mmy[m] has quit [Ping timeout: 264 seconds]
steven[m] has quit [Ping timeout: 264 seconds]
Dirtatron[m] has quit [Ping timeout: 264 seconds]
mailtorajeshmr[m has quit [Ping timeout: 264 seconds]
ErnestKissiedu[m has quit [Ping timeout: 264 seconds]
trust-tech[m] has quit [Ping timeout: 264 seconds]
akaibu[m] has quit [Ping timeout: 264 seconds]
chip[m] has quit [Ping timeout: 264 seconds]
fridim[m] has quit [Ping timeout: 264 seconds]
plindner has quit [Ping timeout: 264 seconds]
silwol has quit [Ping timeout: 264 seconds]
janke99[m] has quit [Ping timeout: 276 seconds]
adampaigge[m] has quit [Ping timeout: 276 seconds]
shirian[m] has quit [Ping timeout: 276 seconds]
H-Lo[m] has quit [Ping timeout: 276 seconds]
lght[m] has quit [Ping timeout: 276 seconds]
M[m]13 has quit [Ping timeout: 276 seconds]
berot3[m] has quit [Ping timeout: 276 seconds]
bhuvi[m] has quit [Ping timeout: 276 seconds]
M-krsiehl has quit [Ping timeout: 276 seconds]
avatias0[m] has quit [Ping timeout: 276 seconds]
kyoo[m] has quit [Ping timeout: 276 seconds]
flip[m] has quit [Ping timeout: 276 seconds]
hollowzen[m] has quit [Ping timeout: 276 seconds]
Captain_Beezay has joined #ipfs
pawalls has joined #ipfs
The_8472 has joined #ipfs
Alpha64_ has quit [Ping timeout: 246 seconds]
Alpha64 has joined #ipfs
clickjack has quit [Quit: clickjack]
clickjack has joined #ipfs
teej has joined #ipfs
<massino> whyrusleeping: I'm getting Go errors on `go get github.com/whyrusleeping/natest`. Should I be installing from a specific tag?
<whyrusleeping> massino: ugh, no. Its probably that I accidentally broke something
<whyrusleeping> mind copy pasting the errors for me?
<massino> It's complaining about undefined methods in `github.com/whyrusleeping/go-smux-spdystream`
<whyrusleeping> hrm
<massino> If it's a small fix I'm happy to do it if you point me in the right direction
<whyrusleeping> maybe `go get -u github.com/whyrusleeping/natest` ?
<massino> Ah, I think I understand the problem. Funny :)
reit has joined #ipfs
<massino> Your tool uses `github.com/docker/spdystream`, and by complete coincidence I participated in the development of that. I had an old development checkout of it in my go environment, from the first few weeks of development ;)
<massino> removing it and installing again fixed it
<lgierth> :):)
luizirber has quit [Ping timeout: 240 seconds]
trqx has quit [Ping timeout: 248 seconds]
toXel has quit [Quit: Ping timeout (120 seconds)]
onikuma has quit [Ping timeout: 248 seconds]
erikj has quit [Ping timeout: 260 seconds]
toXel has joined #ipfs
luizirber has joined #ipfs
<massino> whyrusleeping: just FYI `github.com/libp2p/go-sockaddr` doesn't compile for Go < 1.9. Not an issue for me, but thought you might want to know.
brixen has quit [Ping timeout: 240 seconds]
step21 has quit [Ping timeout: 240 seconds]
perguth has quit [Quit: Ping timeout (120 seconds)]
erikj has joined #ipfs
erikj has joined #ipfs
erikj has quit [Changing host]
<Steverman> What exactly happens when I add a file? I can see that it's still available after I closed my js-ipfs node
step21_ has joined #ipfs
perguth has joined #ipfs
<massino> Also, `github.com/libp2p/go-libp2p-swarm` has a broken dependency on `github.com/libp2p/go-libp2p-transport`. The breakage seems to come from this commit from August: https://github.com/libp2p/go-libp2p-transport/commit/e3c159d4944a4267c9113f35002cf90f25fd9261
trqx has joined #ipfs
step21_ is now known as step21
<massino> Manually checking out to the previous commit ( 30f66c7a411fcb45b94c593d98bff7669b6f9c2a ) solved the problem
brixen_ has joined #ipfs
<massino> --> Hurray I have `natest` installed :-D
Alpha64_ has joined #ipfs
Alpha64 has quit [Ping timeout: 258 seconds]
<whyrusleeping> massino: ah, yeah. stebalien just made some changes to go-sockaddr a few minutes ago
<whyrusleeping> massino: and thanks for the note about swarm, i'll see if we cant get that fixed asap
<massino> Looks like the solution would be to patch go-libp2p-swarm to use DialContext instead of TimeoutOpts
<massino> I could patch it this week-end, would be a fun micro-project, but don't have time before that, sorry.
Guest80634 has joined #ipfs
talonz has quit [Quit: Leaving]
talonz has joined #ipfs
anewuser has quit [Quit: anewuser]
jaboja has quit [Remote host closed the connection]
Guest80634 has quit [Quit: ChatZilla 0.9.93 [SeaMonkey 2.46/20161213175921]]
onikuma has joined #ipfs
rp2 has quit [Ping timeout: 240 seconds]
rp2 has joined #ipfs
<whyrusleeping> massino: no worries, if you find time to do it then that would be great :)
<whyrusleeping> otherwise i will add it to my todo list
<whyrusleeping> which will have to wait until i wake up
<whyrusleeping> because sleep time
Mateon1 has quit [Ping timeout: 250 seconds]
dhruvbaldawa has joined #ipfs
dhruvbaldawa has quit [Remote host closed the connection]
dhruvbaldawa has joined #ipfs
dhruvbaldawa has quit [Remote host closed the connection]
dhruvbaldawa has joined #ipfs
treora has quit [Remote host closed the connection]
treora has joined #ipfs
bloodsta1ker has joined #ipfs
Steverman has quit [Ping timeout: 250 seconds]
bloodstalker has quit [Ping timeout: 252 seconds]
bloodstalker has joined #ipfs
bloodsta1ker has quit [Ping timeout: 252 seconds]
joocain2 has quit [Remote host closed the connection]
joocain2 has joined #ipfs
bloodstalker has quit [Read error: Connection reset by peer]
bloodstalker has joined #ipfs
qwebirc42214 has joined #ipfs
qwebirc42214 is now known as witten
cloa[m] has joined #ipfs
Anthony[m] has joined #ipfs
bloodstalker has quit [Ping timeout: 252 seconds]
bloodsta1ker has joined #ipfs
dryajov[m] has joined #ipfs
Aranjedeath has joined #ipfs
infinity0_ has joined #ipfs
infinity0_ has quit [Changing host]
infinity0_ has joined #ipfs
infinity0 is now known as Guest61766
infinity0_ is now known as infinity0
Guest61766 has quit [Ping timeout: 268 seconds]
ecloud is now known as ecloud_wfh
cornu[m] has joined #ipfs
lypticdna[m] has joined #ipfs
hexkey[m] has joined #ipfs
shyBlugs[m] has joined #ipfs
aruzicka has joined #ipfs
jfred[m] has joined #ipfs
hueso[m] has joined #ipfs
mantycore[m] has joined #ipfs
M-krsiehl has joined #ipfs
aikidouke has joined #ipfs
am2on has joined #ipfs
kobajagi[m] has joined #ipfs
adamierymenko[m7 has joined #ipfs
silwol has joined #ipfs
Olinkl[m] has joined #ipfs
Mike[m] has joined #ipfs
AkhILman has joined #ipfs
Kalq[m] has joined #ipfs
orenwf[m] has joined #ipfs
Vaultpls[m] has joined #ipfs
redviking[m] has joined #ipfs
WinterFox[m] has joined #ipfs
mitfree[m] has joined #ipfs
leonardo77[m] has joined #ipfs
benhylau[m] has joined #ipfs
tadzik has joined #ipfs
nop[m] has joined #ipfs
wervenyt[m] has joined #ipfs
gongzisun[m] has joined #ipfs
wak-work has joined #ipfs
gnmn[m] has joined #ipfs
tk[m] has joined #ipfs
sanday[m] has joined #ipfs
cdetrio[m] has joined #ipfs
sickill[m] has joined #ipfs
M-TidyKoala has joined #ipfs
Chris[m]2 has joined #ipfs
matrixjc[m] has joined #ipfs
wakest has joined #ipfs
cjd[m] has joined #ipfs
edsilv[m] has joined #ipfs
M-jimt has joined #ipfs
M-wldhx has joined #ipfs
Li[m] has joined #ipfs
francis[m]1 has joined #ipfs
TFX[m] has joined #ipfs
Jico[m] has joined #ipfs
TheKysek[m] has joined #ipfs
BobWhite[m] has joined #ipfs
huaixiaoxiao[m] has joined #ipfs
chisaki[m] has joined #ipfs
janosberghorn[m] has joined #ipfs
fabrixxm has joined #ipfs
M-hash has joined #ipfs
herzmeister[m] has joined #ipfs
cyberpepe[m] has joined #ipfs
Guest307124[m] has joined #ipfs
scde has joined #ipfs
Guest218640[m] has joined #ipfs
wktian[m] has joined #ipfs
j24[m] has joined #ipfs
Henark[m] has joined #ipfs
ircmaster[m] has joined #ipfs
M-BostonEnginerd has joined #ipfs
rtjure[m] has joined #ipfs
Powersource has joined #ipfs
Obscurity[m] has joined #ipfs
ravita1967[m] has joined #ipfs
joshb[m] has joined #ipfs
noether[m] has joined #ipfs
M-Dave has joined #ipfs
gejohn[m] has joined #ipfs
Rmesil8O4b[m] has joined #ipfs
kurtis[m] has joined #ipfs
network[m] has joined #ipfs
SerkanDevel[m] has joined #ipfs
erikj` has joined #ipfs
AntoineM[m] has joined #ipfs
einyx[m] has joined #ipfs
Andrew[m] has joined #ipfs
Chelovek[m] has joined #ipfs
Sonata has joined #ipfs
gabyshu[m] has joined #ipfs
ebarch has joined #ipfs
Antharia[m] has joined #ipfs
user1234[m] has joined #ipfs
Martinhandy[m] has joined #ipfs
asyncsec[m] has joined #ipfs
musoke[m] has joined #ipfs
ErnestKissiedu[m has joined #ipfs
DYM[m] has joined #ipfs
RuanMedGar[m] has joined #ipfs
ben999[m] has joined #ipfs
landakram[m] has joined #ipfs
M7865nfnjjfjf[m] has joined #ipfs
sigmaister[m] has joined #ipfs
SethDavis[m] has joined #ipfs
keks[m] has joined #ipfs
fti7[m] has joined #ipfs
jsyn[m] has joined #ipfs
paulith[m] has joined #ipfs
Matthew[m] has joined #ipfs
albuic has joined #ipfs
Pneumaticat has joined #ipfs
zineje[m] has joined #ipfs
confusedrobot[m] has joined #ipfs
madduck[m] has joined #ipfs
sk23[m] has joined #ipfs
SeaSon[m] has joined #ipfs
jsnng[m] has joined #ipfs
toya[m] has joined #ipfs
fluff[m] has joined #ipfs
M-kalmi has joined #ipfs
frabrunelle has joined #ipfs
garblur83[m] has joined #ipfs
slowtoaster[m] has joined #ipfs
f4bio[m] has joined #ipfs
snow-frog[m] has joined #ipfs
q3y4r[m] has joined #ipfs
mattylar12[m] has joined #ipfs
pacharanero[m] has joined #ipfs
VegBerg[m] has joined #ipfs
zekaf[m] has joined #ipfs
bilowan[m] has joined #ipfs
ot8[m] has joined #ipfs
ZerataX[m]1 has joined #ipfs
bananabread[m] has joined #ipfs
joose[m] has joined #ipfs
Smith[m] has joined #ipfs
zaengerlein[m] has joined #ipfs
Xiang[m] has joined #ipfs
panicbit-M has joined #ipfs
al1p[m] has joined #ipfs
a123123123[m] has joined #ipfs
bencevans[m] has joined #ipfs
TrickOrTreat[m] has joined #ipfs
M-r0kk3rz has joined #ipfs
alain[m] has joined #ipfs
atenorio[m] has joined #ipfs
jessiedella[m] has joined #ipfs
M-sraja has joined #ipfs
silur[m] has joined #ipfs
gendale[m] has joined #ipfs
timthelion[m] has joined #ipfs
dmholmes[m] has joined #ipfs
Zedwick[m] has joined #ipfs
fetlock_coco_fis has joined #ipfs
drasko[m] has joined #ipfs
bgrayburn[m] has joined #ipfs
adam123[m] has joined #ipfs
hef[m] has joined #ipfs
MilkManzJourDadd has joined #ipfs
aeaejei[m] has joined #ipfs
gjh1 has joined #ipfs
loovthejungle[m] has joined #ipfs
wanglei0095[m] has joined #ipfs
GuillaumeREMBERT has joined #ipfs
flo[m] has joined #ipfs
GregKNicholson[m has joined #ipfs
Luguber[m] has joined #ipfs
garikson[m] has joined #ipfs
Phyra[m] has joined #ipfs
masoodahm[m] has joined #ipfs
Conspiracy[m] has joined #ipfs
skywavesurfer[m4 has joined #ipfs
nedzadhrnjica[m4 has joined #ipfs
OrangeOrange[m] has joined #ipfs
vihfvuuv[m] has joined #ipfs
exyi[m] has joined #ipfs
melanargia[m] has joined #ipfs
M-oddvar has joined #ipfs
rubenmcosta[m] has joined #ipfs
trust-tech[m] has joined #ipfs
charlienyc[m] has joined #ipfs
hippopete[m] has joined #ipfs
TempMan[m] has joined #ipfs
suduyujiqing[m] has joined #ipfs
machete[m] has joined #ipfs
lght[m] has joined #ipfs
MuxDarkfire[m] has joined #ipfs
jhulten[m] has joined #ipfs
bart80[m] has joined #ipfs
VitalyLipatov[m] has joined #ipfs
M3v[m] has joined #ipfs
Orpugi[m] has joined #ipfs
patto_overflow[m has joined #ipfs
asenski[m] has joined #ipfs
zie[m] has joined #ipfs
mayel[m]1 has joined #ipfs
k37[m] has joined #ipfs
fzzr[m] has joined #ipfs
mectors[m] has joined #ipfs
visim[m] has joined #ipfs
stech[m] has joined #ipfs
zhikin[m] has joined #ipfs
blinkwang[m] has joined #ipfs
hilariousandorig has joined #ipfs
yuh96bbn[m] has joined #ipfs
RedFire[m] has joined #ipfs
josejuanisaac[m] has joined #ipfs
juanbernabo[m] has joined #ipfs
testingotro[m] has joined #ipfs
M6AA4FD[m] has joined #ipfs
Peter[m]2 has joined #ipfs
willhite[m] has joined #ipfs
willybecker[m] has joined #ipfs
miso[m] has joined #ipfs
wrjvszq[m] has joined #ipfs
ricburton[m] has joined #ipfs
addd34[m] has joined #ipfs
chevdor[m] has joined #ipfs
M[m]18 has joined #ipfs
ipnoyl[m] has joined #ipfs
gzgy[m] has joined #ipfs
risingsun2100[m] has joined #ipfs
seaweed[m] has joined #ipfs
t9840[m] has joined #ipfs
M107262[m] has joined #ipfs
Novitsh[m] has joined #ipfs
DokterBob has joined #ipfs
M-liberdiko has joined #ipfs
auditcranium[m] has joined #ipfs
luwum[m] has joined #ipfs
msmart[m] has joined #ipfs
HydraGene[m] has joined #ipfs
ethanstokes[m] has joined #ipfs
ctresc[m] has joined #ipfs
M-arx has joined #ipfs
MrAxilus[m] has joined #ipfs
kyoo[m] has joined #ipfs
cmatthias[m] has joined #ipfs
TheGillies has joined #ipfs
chatmasta[m] has joined #ipfs
Cosmo[m] has joined #ipfs
RossSchulman[m] has joined #ipfs
NathanBraswell[m has joined #ipfs
conorohiggins[m] has joined #ipfs
Leer10[m] has joined #ipfs
mkg20001[m] has joined #ipfs
M-anomie has joined #ipfs
thejohnhenry[m] has joined #ipfs
solatis[m] has joined #ipfs
Dako300[m] has joined #ipfs
phi-rjan[m] has joined #ipfs
fil_redpill has joined #ipfs
gwillen[m] has joined #ipfs
M-martinklepsch has joined #ipfs
hypercube[m] has joined #ipfs
fujexo[m] has joined #ipfs
basilgohar[m] has joined #ipfs
fridim[m] has joined #ipfs
talonzx[m] has joined #ipfs
ntninja has joined #ipfs
MaximOrlovsky[m] has joined #ipfs
M-Amandine has joined #ipfs
jcgruenhage has joined #ipfs
kuhilasvaara has joined #ipfs
puminya[m] has joined #ipfs
irx[m] has joined #ipfs
M-gavinjohnnoona has joined #ipfs
aer[m] has joined #ipfs
mdrights[m] has joined #ipfs
yuvipanda has joined #ipfs
Anastiel[m] has joined #ipfs
grouchofractal2[ has joined #ipfs
kpcyrd[m] has joined #ipfs
fhs[m] has joined #ipfs
aloisdg[m] has joined #ipfs
Gratin[m] has joined #ipfs
mith[m] has joined #ipfs
zinovi[m] has joined #ipfs
nonce911[m] has joined #ipfs
Nekit[m] has joined #ipfs
stevendai[m] has joined #ipfs
G16357300[m] has joined #ipfs
vnadgir[m] has joined #ipfs
DerZauberberg[m] has joined #ipfs
seizo[m] has joined #ipfs
zhangyijun[m] has joined #ipfs
ltq520[m] has joined #ipfs
fairness[m] has joined #ipfs
chenzhengyi[m] has joined #ipfs
rubencordeiro[m] has joined #ipfs
neurocis[m] has joined #ipfs
mingchan88[m] has joined #ipfs
because[m] has joined #ipfs
ivano[m] has joined #ipfs
harlock[m] has joined #ipfs
JEFFJ[m] has joined #ipfs
M-ecloud has joined #ipfs
huda[m] has joined #ipfs
M[m]19 has joined #ipfs
chihiro[m] has joined #ipfs
luisbg[m] has joined #ipfs
tgdnt[m] has joined #ipfs
tx[m] has joined #ipfs
Mill3n[m] has joined #ipfs
marting[m] has joined #ipfs
xiaonanwen[m] has joined #ipfs
Hongar[m] has joined #ipfs
xloem has joined #ipfs
abhii_n[m] has joined #ipfs
rasmuserik[m] has joined #ipfs
therealklanni[m] has joined #ipfs
bitcoinprocircut has joined #ipfs
turt2live has joined #ipfs
bbcnetwork[m] has joined #ipfs
Silke^ has joined #ipfs
Polychrome[m] has joined #ipfs
Barnabas[m] has joined #ipfs
jeremycahill[m] has joined #ipfs
petergerber[m] has joined #ipfs
kegan_1 has joined #ipfs
hajak[m] has joined #ipfs
peddie[m] has joined #ipfs
belie[m] has joined #ipfs
kvin1[m] has joined #ipfs
Tbi[m] has joined #ipfs
yl[m] has joined #ipfs
nouts[m]1 has joined #ipfs
t[m] has joined #ipfs
sbdbd[m] has joined #ipfs
paranoix[m] has joined #ipfs
edejong[m] has joined #ipfs
IsaacDunlap[m] has joined #ipfs
unlmtd has joined #ipfs
aaronye[m] has joined #ipfs
Xanza[m] has joined #ipfs
kershaw[m] has joined #ipfs
jceb[m] has joined #ipfs
M1trace[m] has joined #ipfs
abbiya has joined #ipfs
M-jfred has joined #ipfs
changgong[m] has joined #ipfs
MayeldeBorniol[m has joined #ipfs
M-trashrabbit has joined #ipfs
lisky[m] has joined #ipfs
firemound[m] has joined #ipfs
xiaolai[m] has joined #ipfs
ElWood[m] has joined #ipfs
electric[m] has joined #ipfs
astronavt[m] has joined #ipfs
mirek1337[m] has joined #ipfs
caught_in_the_ma has joined #ipfs
Akito[m] has joined #ipfs
crazyshoubin[m] has joined #ipfs
MawKKe[m] has joined #ipfs
victor[m]2 has joined #ipfs
bhipple[m] has joined #ipfs
Mugi[m] has joined #ipfs
Mario[m]1 has joined #ipfs
alphard[m] has joined #ipfs
jebdj[m] has joined #ipfs
YuFanLovezYou[m] has joined #ipfs
DavidP[m] has joined #ipfs
gobelin[m] has joined #ipfs
himcesjf has joined #ipfs
mrpx[m] has joined #ipfs
nullptr_[m] has joined #ipfs
testimonlkjd[m] has joined #ipfs
flyinglasanga[m] has joined #ipfs
alantrade[m] has joined #ipfs
H3ndr1k[m] has joined #ipfs
henriqueqc[m] has joined #ipfs
mastertrader[m] has joined #ipfs
jiawei[m] has joined #ipfs
timetrack[m] has joined #ipfs
mntr[m] has joined #ipfs
happy_gnu[m] has joined #ipfs
ttk2[m] has joined #ipfs
moellus[m] has joined #ipfs
RomainLeCarrer[m has joined #ipfs
augoeides[m] has joined #ipfs
bhuvi[m] has joined #ipfs
davidar_ has joined #ipfs
saggad[m] has joined #ipfs
HerroKitty[m] has joined #ipfs
wazaundtechnik[m has joined #ipfs
lnxw37[m] has joined #ipfs
akaibu[m] has joined #ipfs
M0spark[m] has joined #ipfs
fredrikj[m] has joined #ipfs
anon9876[m] has joined #ipfs
akosiaris[m] has joined #ipfs
narispo[m] has joined #ipfs
axic[m] has joined #ipfs
yellowbelly[m] has joined #ipfs
chip[m] has joined #ipfs
noperope[m] has joined #ipfs
JuliusCaesar[m] has joined #ipfs
laosijijulebu[m] has joined #ipfs
deebee[m] has joined #ipfs
mikecohen[m] has joined #ipfs
Armagedda[m] has joined #ipfs
toon__[m] has joined #ipfs
imtoken[m] has joined #ipfs
homelessrobot[m] has joined #ipfs
sleepdeficit[m] has joined #ipfs
mushusei[m] has joined #ipfs
M[m]14 has joined #ipfs
Lucas[m] has joined #ipfs
M-Stephen304 has joined #ipfs
warrenchan[m] has joined #ipfs
LifeNT[m] has joined #ipfs
cranau[m] has joined #ipfs
ganlub has joined #ipfs
waz2[m] has joined #ipfs
hjoest[m] has joined #ipfs
vd[m] has joined #ipfs
dyce[m] has joined #ipfs
MariaP[m] has joined #ipfs
DarkOoze[m] has joined #ipfs
coldsauce[m] has joined #ipfs
Nouts[m] has joined #ipfs
chae4aish9[m] has joined #ipfs
crapman[m] has joined #ipfs
elcyborg[m] has joined #ipfs
jlpeters[m] has joined #ipfs
torarne has joined #ipfs
xemile94[m] has joined #ipfs
AndrewMcSwain[m] has joined #ipfs
patrickr[m] has joined #ipfs
octalsrc[m] has joined #ipfs
ZeroMe[m] has joined #ipfs
testuser54[m] has joined #ipfs
hoomx[m] has joined #ipfs
H-Lo[m] has joined #ipfs
Tectest123[m] has joined #ipfs
hanwudizz[m] has joined #ipfs
ztl8702[m] has joined #ipfs
thinkmassive[m] has joined #ipfs
steele[m] has joined #ipfs
cnygaard[m] has joined #ipfs
miflow[m] has joined #ipfs
encns[m] has joined #ipfs
ManTou[m] has joined #ipfs
mailtorajeshmr[m has joined #ipfs
christopherdebee has joined #ipfs
aekym[m] has joined #ipfs
StackerRobot[m] has joined #ipfs
zerga[m] has joined #ipfs
pacman99[m] has joined #ipfs
markusgalileo[m] has joined #ipfs
Rad[m] has joined #ipfs
ChrisHutchinson[ has joined #ipfs
codyopel has joined #ipfs
levzhazeschi[m] has joined #ipfs
davadl[m] has joined #ipfs
iwxzr[m] has joined #ipfs
M-gdr has joined #ipfs
aquentson[m] has joined #ipfs
shirian[m] has joined #ipfs
stapper[m] has joined #ipfs
DiCE1904[m] has joined #ipfs
gugyygy00[m] has joined #ipfs
Anne_Jiang[m] has joined #ipfs
igorline[m] has joined #ipfs
xelra[m] has joined #ipfs
yala has joined #ipfs
avatias0[m] has joined #ipfs
laptop_nativ[m] has joined #ipfs
xMajedz[m] has joined #ipfs
iarebatman[m] has joined #ipfs
cyolovin[m] has joined #ipfs
kvakes[m] has joined #ipfs
Bertschneider[m] has joined #ipfs
Jupadr[m] has joined #ipfs
equalunique[m] has joined #ipfs
WiredDude[m] has joined #ipfs
raymond[m]2 has joined #ipfs
jomari[m] has joined #ipfs
Dirtatron[m] has joined #ipfs
soberao[m] has joined #ipfs
sizeofcat[m] has joined #ipfs
cutie has joined #ipfs
hollowzen[m] has joined #ipfs
M-GrimKriegor has joined #ipfs
PowerOlive[m] has joined #ipfs
dhole[m] has joined #ipfs
pt467353[m] has joined #ipfs
musicmatze[m] has joined #ipfs
hexican[m] has joined #ipfs
jaredthirsk[m] has joined #ipfs
adampaigge[m] has joined #ipfs
jfmherokiller[m] has joined #ipfs
sabba[m] has joined #ipfs
rnkch[m] has joined #ipfs
fedor1113[m] has joined #ipfs
null_radix[m] has joined #ipfs
steven[m] has joined #ipfs
M283750649[m] has joined #ipfs
johanherman[m] has joined #ipfs
gvimrh[m] has joined #ipfs
synth[m] has joined #ipfs
flip[m] has joined #ipfs
janke99[m] has joined #ipfs
R1911[m] has joined #ipfs
cyberwolf[m] has joined #ipfs
Atrus[m] has joined #ipfs
GMason[m] has joined #ipfs
palkeo[m] has joined #ipfs
CHOAM[m] has joined #ipfs
dkess[m] has joined #ipfs
walle303 has joined #ipfs
genr8r[m] has joined #ipfs
ArthurNorthwode[ has joined #ipfs
GoodGuyGreg[m] has joined #ipfs
marcusdunlop[m] has joined #ipfs
fightentropy[m] has joined #ipfs
Jacob[m]1 has joined #ipfs
jux[m] has joined #ipfs
chenlee1116[m] has joined #ipfs
jig[m] has joined #ipfs
dliot[m] has joined #ipfs
shabeeraly[m] has joined #ipfs
shellkr[m] has joined #ipfs
mortn[m] has joined #ipfs
Bob[m]3 has joined #ipfs
futurenewsplz[m] has joined #ipfs
balhd[m] has joined #ipfs
testing_matrix47 has joined #ipfs
jpf137[m] has joined #ipfs
berot3[m] has joined #ipfs
neo[m]1 has joined #ipfs
linux8bit[m] has joined #ipfs
mmy[m] has joined #ipfs
jjw[m] has joined #ipfs
igel[m] has joined #ipfs
tameeshb has joined #ipfs
Gryffins[m] has joined #ipfs
davidar has joined #ipfs
Bloo[m] has joined #ipfs
bumi[m] has joined #ipfs
hyde_stevenson[m has joined #ipfs
zebburkeconte[m] has joined #ipfs
Vitalii_Pandora[ has joined #ipfs
Guest198477[m] has joined #ipfs
alldigital[m] has joined #ipfs
thelonelyghost has joined #ipfs
TheWhisper[m] has joined #ipfs
Sabrina[m] has joined #ipfs
Marco[m] has joined #ipfs
cryptobiotik[m] has joined #ipfs
cubemonkey[m] has joined #ipfs
Jtremback[m] has joined #ipfs
Riot_User_123[m] has joined #ipfs
trouty[m] has joined #ipfs
xamino[m] has joined #ipfs
doronbehar[m] has joined #ipfs
Jarekpl[m] has joined #ipfs
chrono[m] has joined #ipfs
frabcus[m] has joined #ipfs
Kinch[m] has joined #ipfs
axx_[m] has joined #ipfs
jaller94[m] has joined #ipfs
Jacomo[m] has joined #ipfs
dopeman[m] has joined #ipfs
caveboner[m] has joined #ipfs
emir[m] has joined #ipfs
Dawnbreaker[m] has joined #ipfs
redsteakraw[m] has joined #ipfs
stoneridge has joined #ipfs
notafile[m] has joined #ipfs
Jakob[m]2 has joined #ipfs
kitten[m] has joined #ipfs
followers[m] has joined #ipfs
Symen[m]1 has joined #ipfs
clunk-dike[m] has joined #ipfs
robertomurta[m] has joined #ipfs
renatocan[m] has joined #ipfs
spoonless[m]1 has joined #ipfs
kewde[m] has joined #ipfs
guest69[m] has joined #ipfs
Ghostwalk[m] has joined #ipfs
DrIzzel[m] has joined #ipfs
KillaZA[m] has joined #ipfs
hl has joined #ipfs
itorres has joined #ipfs
vq12[m]1 has joined #ipfs
Ferdinandhi[m] has joined #ipfs
M-madsurgeon has joined #ipfs
gragotta68[m] has joined #ipfs
RichardCranium[m has joined #ipfs
aeaf123[m] has joined #ipfs
karim_antoun[m] has joined #ipfs
mike_new[m] has joined #ipfs
Choyes[m] has joined #ipfs
Andrew[m]1 has joined #ipfs
M-mlt has joined #ipfs
remediface[m] has joined #ipfs
sanjivrai[m] has joined #ipfs
nine-h[m] has joined #ipfs
solariiknight[m] has joined #ipfs
hannes[m] has joined #ipfs
Lin[m] has joined #ipfs
Woef[m] has joined #ipfs
daneroo[m] has joined #ipfs
martinrusev[m] has joined #ipfs
gylpm[m] has joined #ipfs
halle[m] has joined #ipfs
grensjo[m] has joined #ipfs
scheutsch[m] has joined #ipfs
stebalien has joined #ipfs
dwesima[m] has joined #ipfs
kkr[m] has joined #ipfs
MadcapJake[m] has joined #ipfs
JakobTigerstrm[m has joined #ipfs
Remramm has joined #ipfs
M-3630 has joined #ipfs
cryp7ix has joined #ipfs
nobot4[m] has joined #ipfs
Cargo[m] has joined #ipfs
fiber[m] has joined #ipfs
jugash[m] has joined #ipfs
M-amdtel has joined #ipfs
peakj[m] has joined #ipfs
stevetbm[m] has joined #ipfs
antonizoon has joined #ipfs
tzuntzai[m] has joined #ipfs
cybervking[m] has joined #ipfs
stretch[m] has joined #ipfs
deepmind[m] has joined #ipfs
M-Guillaume has joined #ipfs
xuv[m] has joined #ipfs
nocent has joined #ipfs
tehciolo[m] has joined #ipfs
pik[m] has joined #ipfs
Scio[m] has joined #ipfs
dtz has joined #ipfs
kimziv[m] has joined #ipfs
gravydigger[m] has joined #ipfs
shepner[m] has joined #ipfs
litebit[m] has joined #ipfs
louisw[m] has joined #ipfs
ehmry has joined #ipfs
Tyroie[m] has joined #ipfs
Kythyria[m] has joined #ipfs
snsnsbsb[m] has joined #ipfs
kants[m] has joined #ipfs
equaliser[m] has joined #ipfs
plindner has joined #ipfs
MaxSan[m] has joined #ipfs
eluc[m] has joined #ipfs
carlbennetts[m] has joined #ipfs
kantengri[m] has joined #ipfs
gubbes[m] has joined #ipfs
sevarat[m] has joined #ipfs
Geeky[m] has joined #ipfs
ekroon has joined #ipfs
henri_nourel[m] has joined #ipfs
kevindetry[m] has joined #ipfs
M568656s[m] has joined #ipfs
f0x[m] has joined #ipfs
Arthur[m] has joined #ipfs
leoserra[m] has joined #ipfs
aronvanammers[m] has joined #ipfs
LaPingvino[m] has joined #ipfs
Skippy[m] has joined #ipfs
kkushal32[m] has joined #ipfs
maxlath[m] has joined #ipfs
frelars[m] has joined #ipfs
johngrimes[m] has joined #ipfs
gulimu[m] has joined #ipfs
GotoDengo[m] has joined #ipfs
M-HirmeS has joined #ipfs
rovdyl[m] has joined #ipfs
locusf has joined #ipfs
klara[m] has joined #ipfs
tidux[m] has joined #ipfs
pierce has joined #ipfs
Ineentho[m] has joined #ipfs
rihardsk[m] has joined #ipfs
matiasnomad[m] has joined #ipfs
kostya[m] has joined #ipfs
Emilylovesleep[m has joined #ipfs
lanshoot[m] has joined #ipfs
emunand[m] has joined #ipfs
Walletor[m] has joined #ipfs
halohaL[m] has joined #ipfs
M-nated has joined #ipfs
bitgulf[m] has joined #ipfs
mxmaiastone[m] has joined #ipfs
liaowu[m] has joined #ipfs
aravindrs[m] has joined #ipfs
terminator360[m] has joined #ipfs
PoeBoy[m] has joined #ipfs
ash[m] has joined #ipfs
omiselu[m] has joined #ipfs
captainplanet[m] has joined #ipfs
benjaminmateev[m has joined #ipfs
reddraggone9[m] has joined #ipfs
omomom[m] has joined #ipfs
at2500[m] has joined #ipfs
randy[m] has joined #ipfs
porcow[m] has joined #ipfs
TheLugal[m] has joined #ipfs
elmago[m] has joined #ipfs
rhizo[m] has joined #ipfs
gomarashi[m] has joined #ipfs
homulilly[m] has joined #ipfs
roderik[m] has joined #ipfs
mingray[m] has joined #ipfs
M-brain has joined #ipfs
screamerbeetle[m has joined #ipfs
LustTeufel69[m] has joined #ipfs
bustillo[m] has joined #ipfs
obi[m] has joined #ipfs
dani9[m] has joined #ipfs
dreuter[m] has joined #ipfs
yodata[m] has joined #ipfs
MatteoHirschstei has joined #ipfs
polytomous[m] has joined #ipfs
clemo1 has joined #ipfs
vith_ has joined #ipfs
ion- has joined #ipfs
rpost__ has joined #ipfs
Cavedude_ has joined #ipfs
ljhms_ has joined #ipfs
ljhms has quit [Ping timeout: 248 seconds]
Yann35 has quit [Ping timeout: 248 seconds]
drozdziak1 has quit [Ping timeout: 248 seconds]
ljhms_ is now known as ljhms
[0__0] has quit [Ping timeout: 248 seconds]
musicmatze has quit [Ping timeout: 248 seconds]
clemo has quit [Ping timeout: 248 seconds]
clemo1 is now known as clemo
vith has quit [Ping timeout: 248 seconds]
Vaelatern has quit [Ping timeout: 248 seconds]
Cavedude has quit [Ping timeout: 248 seconds]
oed has quit [Ping timeout: 248 seconds]
Soft has quit [Ping timeout: 248 seconds]
ion has quit [Ping timeout: 248 seconds]
ion- is now known as ion
oed has joined #ipfs
bitspill_ has joined #ipfs
Alpha64_ has quit [Ping timeout: 268 seconds]
Taek42 has joined #ipfs
Vaelatern has joined #ipfs
Aranjedeath has quit [Quit: Three sheets to the wind]
trqx has quit [Ping timeout: 248 seconds]
[BFG] has quit [Read error: Connection reset by peer]
pescobar_ has joined #ipfs
gozala_ has joined #ipfs
Soft has joined #ipfs
Kubuxu has quit [Ping timeout: 264 seconds]
Magik6k has quit [Ping timeout: 260 seconds]
erikj- has joined #ipfs
brixen has joined #ipfs
rhizo[m] has quit [*.net *.split]
reddraggone9[m] has quit [*.net *.split]
at2500[m] has quit [*.net *.split]
aravindrs[m] has quit [*.net *.split]
frelars[m] has quit [*.net *.split]
stretch[m] has quit [*.net *.split]
DrIzzel[m] has quit [*.net *.split]
Symen[m]1 has quit [*.net *.split]
kitten[m] has quit [*.net *.split]
Jakob[m]2 has quit [*.net *.split]
followers[m] has quit [*.net *.split]
Riot_User_123[m] has quit [*.net *.split]
Bob[m]3 has quit [*.net *.split]
obi[m] has quit [*.net *.split]
bustillo[m] has quit [*.net *.split]
neo[m]1 has quit [*.net *.split]
futurenewsplz[m] has quit [*.net *.split]
fightentropy[m] has quit [*.net *.split]
testing_matrix47 has quit [*.net *.split]
Jacob[m]1 has quit [*.net *.split]
synth[m] has quit [*.net *.split]
Bertschneider[m] has quit [*.net *.split]
iwxzr[m] has quit [*.net *.split]
hoomx[m] has quit [*.net *.split]
IsaacDunlap[m] has quit [*.net *.split]
hajak[m] has quit [*.net *.split]
chenzhengyi[m] has quit [*.net *.split]
rubencordeiro[m] has quit [*.net *.split]
JEFFJ[m] has quit [*.net *.split]
mingchan88[m] has quit [*.net *.split]
ipnoyl[m] has quit [*.net *.split]
wrjvszq[m] has quit [*.net *.split]
hilariousandorig has quit [*.net *.split]
jhulten[m] has quit [*.net *.split]
rubenmcosta[m] has quit [*.net *.split]
a123123123[m] has quit [*.net *.split]
fluff[m] has quit [*.net *.split]
DYM[m] has quit [*.net *.split]
warrenchan[m] has quit [*.net *.split]
RuanMedGar[m] has quit [*.net *.split]
RomainLeCarrer[m has quit [*.net *.split]
testimonlkjd[m] has quit [*.net *.split]
flyinglasanga[m] has quit [*.net *.split]
Mario[m]1 has quit [*.net *.split]
lisky[m] has quit [*.net *.split]
joshb[m] has quit [*.net *.split]
Guest307124[m] has quit [*.net *.split]
grouchofractal2[ has quit [*.net *.split]
hypercube[m] has quit [*.net *.split]
ravita1967[m] has quit [*.net *.split]
kvakes[m] has quit [*.net *.split]
ErnestKissiedu[m has quit [*.net *.split]
MaximOrlovsky[m] has quit [*.net *.split]
dkess[m] has quit [*.net *.split]
trust-tech[m] has quit [*.net *.split]
puminya[m] has quit [*.net *.split]
laptop_nativ[m] has quit [*.net *.split]
shabeeraly[m] has quit [*.net *.split]
zerga[m] has quit [*.net *.split]
cryp7ix has quit [*.net *.split]
Pneumaticat has quit [*.net *.split]
xemile94[m] has quit [*.net *.split]
cdetrio[m] has quit [*.net *.split]
hef[m] has quit [*.net *.split]
deebee[m] has quit [*.net *.split]
M-liberdiko has quit [*.net *.split]
caught_in_the_ma has quit [*.net *.split]
Gryffins[m] has quit [*.net *.split]
vq12[m]1 has quit [*.net *.split]
gongzisun[m] has quit [*.net *.split]
ganlub has quit [*.net *.split]
fabrixxm has quit [*.net *.split]
YuFanLovezYou[m] has quit [*.net *.split]
flo[m] has quit [*.net *.split]
torarne has quit [*.net *.split]
einyx[m] has quit [*.net *.split]
peddie[m] has quit [*.net *.split]
mortn[m] has quit [*.net *.split]
irx[m] has quit [*.net *.split]
axic[m] has quit [*.net *.split]
ttk2[m] has quit [*.net *.split]
Jtremback[m] has quit [*.net *.split]
aer[m] has quit [*.net *.split]
lnxw37[m] has quit [*.net *.split]
dhruvbaldawa has quit [*.net *.split]
rp2 has quit [*.net *.split]
perguth has quit [*.net *.split]
erikj has quit [*.net *.split]
brixen_ has quit [*.net *.split]
graffen has quit [*.net *.split]
cmbrnt has quit [*.net *.split]
bitspill has quit [*.net *.split]
gozala has quit [*.net *.split]
Taek has quit [*.net *.split]
pescobar has quit [*.net *.split]
gozala_ is now known as gozala
bitspill_ is now known as bitspill
smyds has quit [Ping timeout: 240 seconds]
dhruvbaldawa has joined #ipfs
perguth has joined #ipfs
[0__0] has joined #ipfs
goiko has quit [Ping timeout: 240 seconds]
graffen has joined #ipfs
bustillo[m] has joined #ipfs
Bertschneider[m] has joined #ipfs
rubencordeiro[m] has joined #ipfs
aravindrs[m] has joined #ipfs
kitten[m] has joined #ipfs
chenzhengyi[m] has joined #ipfs
hajak[m] has joined #ipfs
wrjvszq[m] has joined #ipfs
mingchan88[m] has joined #ipfs
hilariousandorig has joined #ipfs
JEFFJ[m] has joined #ipfs
ipnoyl[m] has joined #ipfs
a123123123[m] has joined #ipfs
kvakes[m] has joined #ipfs
fluff[m] has joined #ipfs
DYM[m] has joined #ipfs
neo[m]1 has joined #ipfs
joshb[m] has joined #ipfs
lisky[m] has joined #ipfs
iwxzr[m] has joined #ipfs
reddraggone9[m] has joined #ipfs
warrenchan[m] has joined #ipfs
flyinglasanga[m] has joined #ipfs
synth[m] has joined #ipfs
RomainLeCarrer[m has joined #ipfs
futurenewsplz[m] has joined #ipfs
Mario[m]1 has joined #ipfs
testimonlkjd[m] has joined #ipfs
hef[m] has joined #ipfs
hypercube[m] has joined #ipfs
MaximOrlovsky[m] has joined #ipfs
puminya[m] has joined #ipfs
deebee[m] has joined #ipfs
xemile94[m] has joined #ipfs
dkess[m] has joined #ipfs
hoomx[m] has joined #ipfs
shabeeraly[m] has joined #ipfs
Gryffins[m] has joined #ipfs
zerga[m] has joined #ipfs
fabrixxm has joined #ipfs
axic[m] has joined #ipfs
cdetrio[m] has joined #ipfs
ganlub has joined #ipfs
mortn[m] has joined #ipfs
vq12[m]1 has joined #ipfs
irx[m] has joined #ipfs
ttk2[m] has joined #ipfs
Riot_User_123[m] has joined #ipfs
jhulten[m] has joined #ipfs
DrIzzel[m] has joined #ipfs
RuanMedGar[m] has joined #ipfs
Jakob[m]2 has joined #ipfs
Bob[m]3 has joined #ipfs
obi[m] has joined #ipfs
Symen[m]1 has joined #ipfs
testing_matrix47 has joined #ipfs
IsaacDunlap[m] has joined #ipfs
frelars[m] has joined #ipfs
grouchofractal2[ has joined #ipfs
caught_in_the_ma has joined #ipfs
trust-tech[m] has joined #ipfs
M-liberdiko has joined #ipfs
laptop_nativ[m] has joined #ipfs
ravita1967[m] has joined #ipfs
fightentropy[m] has joined #ipfs
ErnestKissiedu[m has joined #ipfs
Pneumaticat has joined #ipfs
cryp7ix has joined #ipfs
Guest307124[m] has joined #ipfs
rhizo[m] has joined #ipfs
YuFanLovezYou[m] has joined #ipfs
followers[m] has joined #ipfs
einyx[m] has joined #ipfs
Jacob[m]1 has joined #ipfs
gongzisun[m] has joined #ipfs
flo[m] has joined #ipfs
Jtremback[m] has joined #ipfs
lnxw37[m] has joined #ipfs
torarne has joined #ipfs
stretch[m] has joined #ipfs
rubenmcosta[m] has joined #ipfs
at2500[m] has joined #ipfs
aer[m] has joined #ipfs
peddie[m] has joined #ipfs
ulrichard has joined #ipfs
robattila256 has quit [Quit: WeeChat 1.9.1]
_whitelogger has joined #ipfs
goiko has joined #ipfs
goiko has quit [Changing host]
goiko has joined #ipfs
<appa_> How well has the private network feature work at the moment? I'm soon to start testing a program that uses ipfs heavily, I thought it might be better to start on an isolated network.
girrrrrrr2 has quit [Read error: Connection reset by peer]
dhruvbaldawa has quit [Remote host closed the connection]
polman has quit [Ping timeout: 246 seconds]
dhruvbaldawa has joined #ipfs
dhruvbaldawa has quit [Remote host closed the connection]
dhruvbaldawa has joined #ipfs
rp2 has joined #ipfs
polman has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 240 seconds]
revolve has quit [Ping timeout: 240 seconds]
opal has quit [Ping timeout: 246 seconds]
matrix89 has quit [Ping timeout: 240 seconds]
patagonicus has quit [Ping timeout: 240 seconds]
pescobar_ has quit [Ping timeout: 240 seconds]
Taek42 has quit [Ping timeout: 240 seconds]
SuprDewd has quit [Ping timeout: 258 seconds]
graffen has quit [Ping timeout: 252 seconds]
rpost__ has quit [Ping timeout: 268 seconds]
dhruvbaldawa has joined #ipfs
grumble has quit [Ping timeout: 600 seconds]
cxl000 has joined #ipfs
dhruvbaldawa has quit [Remote host closed the connection]
rtjure has quit [Ping timeout: 258 seconds]
espadrine has quit [Ping timeout: 264 seconds]
}ls{ has joined #ipfs
teod has quit [Ping timeout: 240 seconds]
kaotisk has quit [Read error: Connection reset by peer]
kaotisk has joined #ipfs
rtjure has joined #ipfs
Mateon2 has joined #ipfs
brianhoffman has quit [Ping timeout: 258 seconds]
inetic has joined #ipfs
dhruvbaldawa has joined #ipfs
ygrek_ has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 240 seconds]
ylp has joined #ipfs
dhruvbaldawa has joined #ipfs
larpanet has joined #ipfs
smuten has joined #ipfs
jzeus has joined #ipfs
mbagz has joined #ipfs
jzeus has quit [Client Quit]
jzeus has joined #ipfs
sam___ has joined #ipfs
<sam___> yo
<sam___> :)
<sam___> I'm a Python programmer and was wondering how I can contribute to IPFS.
<dsc_> r u teh pyth0n pr0gr4mm3r
sam___ has quit [Ping timeout: 260 seconds]
lanzafame has quit [Quit: Textual IRC Client: www.textualapp.com]
dhruvbaldawa has quit [Remote host closed the connection]
jungly has joined #ipfs
<MrSparkle> rewrite ipfs in python
rendar has joined #ipfs
kirby__ has joined #ipfs
rgrau has joined #ipfs
larpanet has quit [Ping timeout: 264 seconds]
maxlath has joined #ipfs
<dsc_> MrSparkle: already done it
<dsc_> i wrote the matrix in .py and you're in it talking to me right now how about that
[BFG] has joined #ipfs
lanzafame_ has quit [Ping timeout: 260 seconds]
lanzafame has joined #ipfs
<r0kk3rz> sorry, you misunderstood, he programs pythons, like a snake charmer
robattila256 has joined #ipfs
maxlath has quit [Ping timeout: 260 seconds]
jokoon has joined #ipfs
maxlath has joined #ipfs
<dsc_> r0kk3rz: oh. makes sense.
rpost__ has joined #ipfs
kirby__ has quit [Read error: Connection reset by peer]
infinisil has quit [Ping timeout: 268 seconds]
dansup has quit [Ping timeout: 258 seconds]
kirby__ has joined #ipfs
rgrau has quit [Ping timeout: 268 seconds]
rp2 has quit [Ping timeout: 268 seconds]
binhdowb has joined #ipfs
dansup has joined #ipfs
rgrau has joined #ipfs
revolve has joined #ipfs
infinisil has joined #ipfs
graffen has joined #ipfs
grumble has joined #ipfs
patagonicus has joined #ipfs
fractex has quit [Ping timeout: 258 seconds]
_slackbridge has joined #ipfs
slackbridge has quit [Read error: Connection reset by peer]
opal has joined #ipfs
_slackbridge is now known as slackbridge
fractex has joined #ipfs
matrix89 has joined #ipfs
binhdowb has quit [Quit: AtomicIRC: The nuclear option.]
olizilla has joined #ipfs
xnbya has quit [Ping timeout: 240 seconds]
xnbya has joined #ipfs
synthmeat has quit [Quit: WeeChat 1.9.1]
synthmeat has joined #ipfs
erictapen has joined #ipfs
erictapen has quit [Remote host closed the connection]
erictapen has joined #ipfs
matrix89 has quit [Ping timeout: 240 seconds]
matrix89 has joined #ipfs
dhruvbaldawa has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 260 seconds]
matrix89 has quit [Ping timeout: 240 seconds]
matrix89 has joined #ipfs
trqx has joined #ipfs
jokoon has quit [Quit: Leaving]
matrix89 has quit [Ping timeout: 248 seconds]
Zogg has joined #ipfs
rgrau has quit [Ping timeout: 268 seconds]
Zogg is now known as Zoggified
<Zoggified> Good day!
<Zoggified> Are you hiring?
matrix89 has joined #ipfs
Zoggified has quit [Ping timeout: 248 seconds]
matrix89 has quit [Ping timeout: 248 seconds]
trqx has quit [Quit: WeeChat 1.9.1]
trqx has joined #ipfs
Zogg has joined #ipfs
Zogg has quit [Client Quit]
Zoggified has joined #ipfs
matrix89 has joined #ipfs
dimitarvp has joined #ipfs
dhruvbaldawa has joined #ipfs
<Zoggified> DevOps here. I want to join you guys in the distributed/decentralised quest.
dby[m] has joined #ipfs
blackbaba has joined #ipfs
Zoggified has quit [Ping timeout: 240 seconds]
<JCaesar> Hm, my ipfs dockercontainer seems to die when I open up the webui…
blackbaba has left #ipfs ["Closing Window"]
anewuser has joined #ipfs
arpu has quit [Quit: Ex-Chat]
arpu has joined #ipfs
<JCaesar> Hm, maybe FilestoreEnabled is under experimental for a good reason…
erictapen has quit [Remote host closed the connection]
xnbya has quit [Ping timeout: 240 seconds]
larpanet has joined #ipfs
xnbya has joined #ipfs
erictapen has joined #ipfs
larpanet has quit [Remote host closed the connection]
larpanet has joined #ipfs
maxlath has quit [Ping timeout: 240 seconds]
jkilpatr has quit [Ping timeout: 252 seconds]
Kubuxu has joined #ipfs
rtjure has quit [Ping timeout: 260 seconds]
rtjure has joined #ipfs
maxlath has joined #ipfs
<Li[m]> IPFS could very much use the host identity protocol, it would take out the problems of PKI authentication of nodes, and reassign the [ DHT, blockchain, mesh-networking ] to a needed part of the network architecture
<Li[m]> it would also secure the network layer, which would make the entire thing very difficult to monitor transport-layer related metadata
Steverman has joined #ipfs
<Li[m]> I see the two projects as the same solution to different parts of the problem, one with the problem of identifying/securing data objects, and the other in identifying/securing identities on the network
jkilpatr has joined #ipfs
<Li[m]> reading a lot on it, and getting ready to pick up old implementations
bloodstalker has joined #ipfs
dhruvbaldawa has quit [Remote host closed the connection]
<Steverman> I was watching a vid from 2015 about Bitswap. Is it still naive? As in: Does it still send duplicate data?
bloodsta1ker has quit [Ping timeout: 246 seconds]
anewuser has quit [Quit: anewuser]
jzeus has quit [Quit: Lost terminal]
bloodstalker has quit [Ping timeout: 248 seconds]
bloodstalker has joined #ipfs
aruzicka has left #ipfs ["User left"]
dhruvbaldawa has joined #ipfs
Steverman has quit [Ping timeout: 240 seconds]
dhruvbaldawa has quit [Remote host closed the connection]
rcat has joined #ipfs
Steverman has joined #ipfs
musicmatze has joined #ipfs
rgrau has joined #ipfs
<revolve> Li[m]: am I right in saying host identity protocol fits somewhere between the network layer and the application layer?
<Li[m]> it fits between the network and transport layer
<revolve> am i right in saying we're waiting for kernel developers to implement support for it?
<Li[m]> so transport can remain connected across ip address changes even
<revolve> awesome
<revolve> am i right in saying we're waiting for kernel developers to implement support for it?
<Li[m]> yes its pretty compelling. someone wrote an implementation and its been sitting since 2012, so im seeing how it works
<Li[m]> someone put it on gh with a lil fix https://github.com/rektide/openhip/commits/master
<revolve> sounds promising. so this is the canonical solution to cellular addressing?
<Li[m]> sorry dont know why I gave that link https://github.com/rektide/openhip
<revolve> thanks for hipping me to this btw
<Li[m]> I feel like some ppl arent even aware of this great solution to our remaining network problems
<Li[m]> I was thinking of even just make a web site and a nice presentation of the idea, its pretty void on google
<revolve> bit miffed at not being able to remember precisely what it was but I read something on LWN or ACM about solving mobile addressing
<Li[m]> seperating the identifier bit of the ip address namespace
maxlath has quit [Ping timeout: 240 seconds]
<Li[m]> there were a few different proposals, hip is definitely the solid solution
<Li[m]> it just hasnt been implemented with care
<revolve> well the copyright in the source is 2002-2012
<Li[m]> and blockchain applications can even serve as a root hosting of the locator/identifier tables
<Li[m]> so wed get a fully authenticated network, meaning defeating ddos is almost trivial
<Li[m]> the US army has been using it since 2006
<Li[m]> with boeing
<Li[m]> the use it for access control
<revolve> wouldn't be surprised if there's mailing list commentary on integrating this into Linux / *BSD already then
<Li[m]> there is
<Li[m]> or was, rather abandonned
<revolve> hrm
<revolve> thanks for that. generalisation but ..most developers.. probably don't want to be held responsible for a network driver they didn't have any part in developing
maxlath has joined #ipfs
dhruvbaldawa has joined #ipfs
kaotisk has quit [Read error: Connection reset by peer]
kaotisk has joined #ipfs
maxlath has quit [Ping timeout: 248 seconds]
<Kubuxu> Li[m]: checkout cjdns, it is mesh (or overlay depending how you using it) network protocol that features cryptographically assigned IPv6 addresses
<Kubuxu> due to that those iP addresses can be used a identities
<Li[m]> im well aware of cjdns
dhruvbaldawa has quit [Ping timeout: 248 seconds]
<Li[m]> cjdns is basically an application-layer implementation
<Li[m]> so it just cant offer all the advantages of doing it directly above the network layer
<cjd[m]> It would be link layer if you bought the fiber lines and ran cjdns on them natively, it's just that fiber is expensive.
<Li[m]> maybe some of cjdns code can be used to do it
<Li[m]> why link layer?
Zoggified has joined #ipfs
<Steverman> I can't seem to cat my files with go-ipfs, when I added a while through js-ipfs
<cjd[m]> Li: because cjdns only cares about being able to send frames to a fixed set of directly connected peers, it's really designed to send bits down a physical wire or a wireless link. It handles all of the routing internally.
<cjd[m]> Of course you could say the same thing of IP but generally IP runs on top of Ethernet, cjdns really doesn't need to.
<Li[m]> right, so you have to redo the network layer basically
<cjd[m]> Well, need to redo the link layer because there is a lot of physical hardware which also tries to handle the link layer... (for example: If you stop using ethernet cards, what kind of cards will you use to transport data between 2 cjdns switches?)
maxlath has joined #ipfs
<cjd[m]> technically though, cjdns would be perfectly happy if it had nothing more than a high speed serial interface between nodes
Zoggified has quit [Ping timeout: 248 seconds]
<appa_> cjd[m]: I've been curious what you would need to use cjdns over something that wasn't an Ethernet connection
<appa_> Can it work on a broadcast network?
<appa_> Or rather one to many.
<cjd[m]> cjdns really wants to talk only 1 to 1
grawity has quit [Remote host closed the connection]
<cjd[m]> which is actually ideal for physical connections because generally they just give you a DMA area or something which is forwarded to another machine
<cjd[m]> Mainly the job of the ethernet interface plugin in cjdns it to get the ethernet part out of the way in order to be able to use the ethernet hardware as a wire between 2 cjdns nodes
<appa_> So stuff on my tun0 isn't IP packed?
<cjd[m]> tun0 is talking IP, yes, but that's the inside, on the outside cjdns talks over whatever network protocol you give it
<cjd[m]> it can talk over UDP or it can talk directly over ethernet
<cjd[m]> If we had some other cheap ubiquitous hardware, I'd probably write a module for sending frames over that too
<cjd[m]> maybe USB-otg would be a good target, but it probably requires writing kernelspace code
<appa_> So you'd need a module to use special hardware links?
<cjd[m]> yeah, there's a module inside of cjdns for UDP and one for ETH
<cjd[m]> they plugin to the InterfaceController
<appa_> Is there there Bluetooth?
<cjd[m]> nope
<appa_> What would be needed for that?
<cjd[m]> It would be nice to add WLANInterface which automatically sets up an access point and controls the wifi radio directly so that people don't need to setup the access point and then use ETHInterface over top of it.
<cjd[m]> you have to learn everything there is to know about bluetooth :)
<cjd[m]> Here's the function which registers a new interface: https://github.com/cjdelisle/cjdns/blob/master/net/InterfaceController.h#L102
<appa_> So you'd make a Bluetooth connection then overly cjdns?
<cjd[m]> you have a lot of options
<cjd[m]> but generally it's better to reuse a lot of the existing code, so yes, make a bluetooth connection
<appa_> Hmm, is there a simple case of using a single wire or something?
<cjd[m]> you could try to get raw control over the bluetooth hardware and get it to send bytes out over the air and then catch those bytes at the other side, but you'll need to rewrite your code for each bluetooth chipset
<cjd[m]> The problem with a single wire is that there is never just the wire, there's always some kind of hardware chip at each end of it, and you need to talk to that chop
<cjd[m]> *chip
AndyS2 has left #ipfs [#ipfs]
<appa_> I'm imagining using old ham hardware, not that it's legal, just as a concept
<cjd[m]> The simplest would probably be using uart/serial port but this is going to be horrifyingly slow
<appa_> So cjdns needs to talk to the modulator
<appa_> Or encoder?
<cjd[m]> If you have a fast hardware phy device, it probably maps a memory space somewhere and your job is to write and read bytes to/from parts of that memory space
<cjd[m]> or write them somewhere else and trigger DMA
<cjd[m]> anyway lots of very hardware specific code
<appa_> That makes sense, not that.i know how, just sense
<appa_> Maybe I'll play with a virtual connection in software
grawity has joined #ipfs
<cjd[m]> USB-otg would be a good thing to try to target
<cjd[m]> however android is making it work, they must know the hooks which are needed
<cjd[m]> and it would open up a second network port on rasberry pi type devices
<appa_> You said that would take kernel magic, may be beyond my powers
<cjd[m]> I'm not sure if it does or not, I mean adb seems to work ok
<cjd[m]> and it can push/pull files to/from the android phone so that means it has reasonable amount of bandwidth
<appa_> Would be nice if it was simple as connecting to a /dev/otg or something
<cjd[m]> There's a kernel module for setting up a raspberry pi to send data over USB-otg, but ... it emulates an ethernet card :) https://gist.github.com/gbaman/975e2db164b3ca2b51ae11e45e8fd40a
<appa_> Sadly my powers are higher up the abstraction ladder. I'm using IPFS in a distributed satellite tracking and collision prediction cluster
<appa_> Mostly to see if I can make it work. Hopefully spamming ipfs with python objects won't hurt anyone
<appa_> I was asking about the new private network option in case the program had some sort of DDOS power.
<r0kk3rz> appa_: you can set up your own bootstrap node to constrain your nodes if you want
<appa_> Bootstrapping seems very intensive to set up, I was looking forward to using a shared key and network discovery ;)
<appa_> r0kk3rz: ^
xnbya has quit [Ping timeout: 248 seconds]
Alpha64 has joined #ipfs
xnbya has joined #ipfs
pat36 has joined #ipfs
rgrau has quit [Ping timeout: 268 seconds]
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
shizy has joined #ipfs
<Steverman> lgierth: What were you saying about js not being able to connect with go?
xnbya has quit [Ping timeout: 248 seconds]
xnbya has joined #ipfs
PyHedgehog has joined #ipfs
hanna has quit [Ping timeout: 240 seconds]
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
hanna` has joined #ipfs
cmbrnt has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
maxlath has quit [Ping timeout: 268 seconds]
bloodsta1ker has joined #ipfs
pcctw has joined #ipfs
Magik6k has joined #ipfs
bloodstalker has quit [Ping timeout: 268 seconds]
Alpha64_ has joined #ipfs
Alpha64 has quit [Ping timeout: 248 seconds]
rastapopuloto has joined #ipfs
zopsi has quit [Ping timeout: 240 seconds]
hanna` has quit [Ping timeout: 268 seconds]
zopsi has joined #ipfs
maxlath has joined #ipfs
rastapopuloto has left #ipfs ["Leaving"]
zopsi has quit [Ping timeout: 264 seconds]
TheGuyWho has quit [Ping timeout: 250 seconds]
<victorbjelkholm> appa_: bootstrapping nodes are just normal ipfs nodes on a public IP, should be simple to setup
zopsi has joined #ipfs
TheGuyWho has joined #ipfs
maxlath has quit [Ping timeout: 260 seconds]
hanna` has joined #ipfs
inetic has quit [Quit: Leaving.]
pepesza has joined #ipfs
rpost__ is now known as rp2
A124 has quit [Ping timeout: 240 seconds]
shizy has quit [Ping timeout: 248 seconds]
drew55 has joined #ipfs
A124 has joined #ipfs
Nehagup has joined #ipfs
Alpha64 has joined #ipfs
Zoggified has joined #ipfs
Alpha64_ has quit [Ping timeout: 268 seconds]
xnbya has quit [Ping timeout: 248 seconds]
kittydoor[m] has joined #ipfs
<Steverman> victorbjelkholm: Would that mean I could just add one that is only accessable within my network, assuming it is online
<Steverman> Hell, even 127.0.0.1, running 2 seperate ipfs nodes
<Steverman> I am trying to fetch data from js-ipfs, but go-ipfs says no bueno
Alpha64_ has joined #ipfs
Alpha64 has quit [Ping timeout: 248 seconds]
<appa_> Would a heavy user cause any problems on a public ipfs?
xnbya has joined #ipfs
<whyrusleeping> appa_: not really, what are you thinking?
zopsi has quit [Ping timeout: 268 seconds]
MrSparkle has quit [Ping timeout: 240 seconds]
<appa_> I have a program, kinda like seti@home, but to move the data between workers I was using IPFS Python calls
<whyrusleeping> appa_: yeah, running your own ipfs nodes doesnt put much load at all on the network
ulrichard has quit [Remote host closed the connection]
<whyrusleeping> even if youre adding tons of data
<appa_> The workers are communicating on one channel for commands but I needed an independent data channel to shuffle stuff arround
<appa_> An early test did saturate my local network with ipfs traffic
zopsi has joined #ipfs
<appa_> But my granularity was way off
Zoggified has quit [Ping timeout: 240 seconds]
<appa_> I was spamming out new objects ever second
MrSparkle has joined #ipfs
bloodstalker has joined #ipfs
ylp has left #ipfs [#ipfs]
bloodsta1ker has quit [Ping timeout: 248 seconds]
kirby__ has quit [Ping timeout: 264 seconds]
<Steverman> I don't understand this error when using ipfs.files.cat(): https://gist.github.com/anonymous/2eb2fa2eee3ac29aa6d8f339a6a8562d#file-gistfile1-txt
zopsi has quit [Ping timeout: 248 seconds]
rgrau has joined #ipfs
Jesin has joined #ipfs
zopsi has joined #ipfs
ygrek_ has quit [Ping timeout: 240 seconds]
larpanet has quit [Ping timeout: 240 seconds]
larpanet has joined #ipfs
<Steverman> I meant add
misuto has quit [Ping timeout: 255 seconds]
<Steverman> Found the problem :). I didn't do a deep copy of the object
dragrope has joined #ipfs
dragrope has quit [Excess Flood]
mbagz has left #ipfs ["Leaving"]
<Steverman> Or not
inetic has joined #ipfs
zopsi has quit [Ping timeout: 240 seconds]
misuto has joined #ipfs
inetic has quit [Client Quit]
zopsi has joined #ipfs
inetic has joined #ipfs
drozdziak1 has joined #ipfs
atrapado_ has joined #ipfs
erictapen has quit [Ping timeout: 240 seconds]
zopsi has quit [Ping timeout: 240 seconds]
larpanet has quit [Ping timeout: 240 seconds]
zopsi has joined #ipfs
zopsi has quit [Ping timeout: 240 seconds]
pat36 has quit []
zopsi has joined #ipfs
Steverman has quit [Ping timeout: 248 seconds]
bwerthmann has joined #ipfs
zopsi has quit [Ping timeout: 240 seconds]
zopsi has joined #ipfs
}ls{ has quit [Ping timeout: 258 seconds]
Alpha64_ has quit [Quit: Alpha64_]
Alpha64 has joined #ipfs
Alpha64 has quit [Changing host]
Alpha64 has joined #ipfs
}ls{ has joined #ipfs
cwahlers has quit [Quit: Gone fishing]
zopsi has quit [Ping timeout: 250 seconds]
zopsi has joined #ipfs
hanna` is now known as hanna
xnbya has quit [Ping timeout: 248 seconds]
xnbya has joined #ipfs
kirby__ has joined #ipfs
shizy has joined #ipfs
Nikolas has joined #ipfs
kirby__ has quit [Ping timeout: 248 seconds]
kirby__ has joined #ipfs
<Nikolas> Hello i'm having some issues with ipns publish system. I can't seem to be able to publish anything.
<Nikolas> Anyone else facing similar issues?
jungly has quit [Remote host closed the connection]
Nikolas has quit [Quit: Page closed]
Encrypt has joined #ipfs
dhruvbaldawa has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 248 seconds]
atrapado_ has quit [Quit: Leaving]
xnbya has quit [Ping timeout: 248 seconds]
xnbya has joined #ipfs
pvh has joined #ipfs
Encrypt has quit [Quit: Quit]
dhruvbaldawa has joined #ipfs
polman has quit [Quit: nIRC script v3.2.1 - www.nirc.netbynet.ru]
erictapen has joined #ipfs
polman has joined #ipfs
atmoz[m] has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 248 seconds]
matoro has quit [Read error: Connection reset by peer]
kirby__ has quit [Quit: Leaving]
erde74 has joined #ipfs
Xiti` has quit [Quit: Xiti`]
rendar has quit [Quit: std::lower_bound + std::less_equal *works* with a vector without duplicates!]
Xiti has joined #ipfs
polman is now known as plmn
PyHedgehog has quit [Quit: Connection closed for inactivity]
polman has joined #ipfs
xnbya has quit [Ping timeout: 248 seconds]
atmoz[m] is now known as atmoz
xnbya has joined #ipfs
maxlath has joined #ipfs
inetic has quit [Quit: Leaving.]
inetic has joined #ipfs
vivus has joined #ipfs
inetic has quit [Client Quit]
<Icefoz_> Out of curiousity, why does CID and such use base58 instead of URL-safe base64?
vivus has left #ipfs [#ipfs]
<lidel> Icefoz_, default will change in 0.4.12, probably. See https://github.com/ipfs/go-ipfs/issues/4143
<Icefoz_> Aha, interesting! Thank you.
<Icefoz_> base32 is preferred over base64 because DNS doesn't preserve case?
erictapen has quit [Ping timeout: 248 seconds]
erde74 has quit [Quit: Leaving]
bauer1j[m] has joined #ipfs
dhruvbaldawa has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 248 seconds]
joocain2 has quit [Remote host closed the connection]
joocain2 has joined #ipfs
matoro has joined #ipfs
rgrau has quit [Ping timeout: 250 seconds]
<Powersource> ipfs.pin.ls seems to require me to have the hash pinned, what's the recommended alternative if I don't want to pin it?
<Icefoz_> Powersource: What do you mean? `ipfs pin ls` would list the hashes you have pinned.
kaotisk has quit [Ping timeout: 240 seconds]
kaotisk has joined #ipfs
bloodsta1ker has joined #ipfs
<Powersource> Icefoz_: I want to list the contents of a hash that I know is a directory
<Icefoz_> You should be able to just do `ipfs ls <object hash>`
dhruvbaldawa has joined #ipfs
<Icefoz_> It will just fetch the directory index.
bloodstalker has quit [Ping timeout: 248 seconds]
espadrine has joined #ipfs
Alpha64_ has joined #ipfs
Alpha64 has quit [Ping timeout: 268 seconds]
pat36 has joined #ipfs
larpanet has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
dhruvbaldawa has quit [Remote host closed the connection]
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
maxlath has quit [Ping timeout: 240 seconds]
pat36 has quit [Read error: Connection reset by peer]
larpanet has quit [Ping timeout: 268 seconds]
pat36 has joined #ipfs
bloodsta1ker has quit [Ping timeout: 248 seconds]
jkilpatr has quit [Ping timeout: 240 seconds]
bloodstalker has joined #ipfs
noperope has joined #ipfs
noperope has quit [Client Quit]
jkilpatr has joined #ipfs
dhruvbaldawa has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 250 seconds]
Alpha64 has joined #ipfs
pat36 has quit []
Alpha64_ has quit [Ping timeout: 248 seconds]
larpanet has joined #ipfs
Alpha64_ has joined #ipfs
Alpha64 has quit [Ping timeout: 248 seconds]
Jesin has quit [Quit: Leaving]
Alpha64_ has quit [Ping timeout: 240 seconds]
Jesin has joined #ipfs
Alpha64 has joined #ipfs
Alpha64 has quit [Ping timeout: 240 seconds]
kaotisk has quit [Ping timeout: 240 seconds]
larpanet has quit [Ping timeout: 248 seconds]
robattila256 has quit [Quit: WeeChat 1.9.1]
robattila256 has joined #ipfs
ygrek has joined #ipfs
Nehagup has quit [Quit: Connection closed for inactivity]
Alpha64 has joined #ipfs
robattila256 has quit [Quit: WeeChat 1.9.1]
pcctw has quit [Remote host closed the connection]
kaotisk has joined #ipfs
Alpha64 has quit [Ping timeout: 248 seconds]
maxlath has joined #ipfs
maxlath has quit [Remote host closed the connection]
maxlath has joined #ipfs
zopsi has quit [Ping timeout: 264 seconds]
maxlath has quit [Remote host closed the connection]
maxlath has joined #ipfs
<Powersource> Icefoz_: yes but I'm doing this from the js API and I can't find any ls functions other than the pin one. There's probably some manual way to get the info but that's probably cumbersome, or I could just pin it temporarily but that's a bit hacky and not optimal
code-glitch has quit [Ping timeout: 240 seconds]
code-glitch has joined #ipfs
<Icefoz_> Powersource: Or just https://ipfs.io/docs/api/#api-v0-ls
maxlath has quit [Ping timeout: 248 seconds]
zopsi has joined #ipfs
<Icefoz_> It looks like those do the same thing with slightly different argument options.
<Powersource> Icefoz_: sorry I mean js-ipfs-api which is documented here https://github.com/ipfs/interface-ipfs-core/blob/master/README.md
<Powersource> But yes the documentation you linked makes it look like a missing feature in js-ipfs-api
<Icefoz_> Aaaaah
<Icefoz_> I haven't used the JS API, sorry.
<Icefoz_> The API I linked is implemented by the go-ipfs client and I've used it and it works.
<Icefoz_> So that's all I can really say.
cxl000 has quit [Quit: Leaving]
ygrek has quit [Ping timeout: 240 seconds]
<lidel> Icefoz_, yeah the main issue is Origin, which depends on case-insensitive location segment (https://en.wikipedia.org/wiki/Same-origin_policy), so if we used CID as a subdomain, but had two hashes with same letters in different case, a website under one of them could access cookies, local storage of another
<lidel> that is why we need case-insensitive CIDs
maxlath has joined #ipfs
maxlath has quit [Ping timeout: 260 seconds]
<lgierth> host names are also simply defined as being case-insensitive
<lgierth> Li[m]: could you post any concrete ideas about libp2p and HIP in the ipfs/notes repo? it's hard to properly discuss on IRC, stuff just scrolls away
zopsi has quit [Ping timeout: 240 seconds]
zopsi has joined #ipfs
Reinhilde is now known as Ellenor
joocain2 has quit [Remote host closed the connection]
Steverman has joined #ipfs
robattila256 has joined #ipfs
joocain2 has joined #ipfs
dconroy has joined #ipfs
dconroy has quit [Client Quit]
rcat has quit [Ping timeout: 240 seconds]
rcat has joined #ipfs
ccii has joined #ipfs
olizilla has quit [Quit: Connection closed for inactivity]
ccii1 has quit [Ping timeout: 268 seconds]
n0x has joined #ipfs
n0x has left #ipfs [#ipfs]
terrorsome has joined #ipfs
terrorsome is now known as persecutrix