<nothingmuch>
whyrusleeping: if I use an ipfs-cluster to keep the latest of $( ipfs files stat --hash / ), will that replicate the mfs contents?
upperdeck has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
upperdeck has quit [Ping timeout: 248 seconds]
upperdeck has joined #ipfs
DuClare has quit [Ping timeout: 260 seconds]
upperdeck has quit [Ping timeout: 240 seconds]
Remi_ has joined #ipfs
Mitar has quit [Ping timeout: 240 seconds]
Remi_ has quit [Client Quit]
upperdeck has joined #ipfs
<lgierth>
Kubuxu: look what i just noticed - at least on ubuntu there's not just localhost, but also **.localhost, e.g. http://hash.ipfs.localhost:8080/
upperdeck has quit [Ping timeout: 255 seconds]
<nothingmuch>
lgierth: sandstorm uses that kind of wildcard to do some nice things, object capabilities approach to csrf, etc
<lgierth>
any idea on which systems this is supported?
<nothingmuch>
localhost specifically? no clue... i'm interested in finding out though
<nothingmuch>
lgierth: debian doesn't seem to agree with ubuntu
upperdeck has joined #ipfs
<nothingmuch>
lgierth: nor does fedora
<lgierth>
mh ok
<lgierth>
how about foo.localhost.localdomain
<lgierth>
(that might also be a dnsmasq thing)
<nothingmuch>
nope {fedora 23,debian 9} x *.{,localhost}.{,local{,domain}}
upperdeck has quit [Ping timeout: 240 seconds]
<lgierth>
:(
<lgierth>
thank you
<nothingmuch>
thanks for ubuntu TIL :)
<lgierth>
it's a dnsmasq-ism
<lgierth>
it just treats localhost like a TLD
<lgierth>
where anything resolves to 127.0.0.1
<nothingmuch>
ah, that's good to know. i've never used it but had it in mind for some things
<lgierth>
or ::1 for AAAA
upperdeck has joined #ipfs
DuClare has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
<nothingmuch>
s/\.\{,/{,./
upperdeck has quit [Ping timeout: 260 seconds]
upperdeck has joined #ipfs
gts has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
kirby__ has quit [Remote host closed the connection]
upperdeck has joined #ipfs
bdTaylor has joined #ipfs
Mitar has joined #ipfs
upperdeck has quit [Ping timeout: 248 seconds]
upperdeck has joined #ipfs
ircler has joined #ipfs
ircler_ has joined #ipfs
jaboja has quit [Remote host closed the connection]
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
sim590 has quit [Ping timeout: 252 seconds]
sim590 has joined #ipfs
rcat has quit [Remote host closed the connection]
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
rcat has joined #ipfs
anagh has joined #ipfs
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
pierssturley has quit [Quit: Connection closed for inactivity]
pat36 has quit [Read error: Connection reset by peer]
jaboja has quit [Remote host closed the connection]
pat36 has joined #ipfs
jaboja has joined #ipfs
dhruvbaldawa has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 246 seconds]
reit has joined #ipfs
dhruvbaldawa has joined #ipfs
<Icefoz_>
Hmmmm. Any thoughts on making the go-ipfs HTTP API async?
<Icefoz_>
Right now when you do a get or pin or such it blocks until it downloads everything.
<Icefoz_>
I want to be able to say "just get it started" and check back at some arbitrary later time whether it actually succeeded.
<lgierth>
interface-wise it could be as simple as: 1) pass a ?async=1 param 2) return empty response with Location header 3) poll that url for continuous progress
<Icefoz_>
Yeah.
pat36 has quit [Read error: Connection reset by peer]
<Icefoz_>
This is turning out kinda necessary for the program I'm writing, but if it's interesting to you guys then I can try to add it to the go-ipfs program itself instead of just wrapping it in my own code.
<lgierth>
how to track these jobs within go-ipfs might be complicated
<Icefoz_>
There is that...
pat36 has joined #ipfs
<Icefoz_>
But I can tell it to get or pin multiple things at once and it doesn't block, so it must be doing some sort of tracking already.
<lgierth>
might not have the resources to integrate it this quarter, there's still a huge refactor of the http api and commands lib in flight
<lgierth>
mh no there's no job tracking
<Icefoz_>
With get and pin you already have the content ID as a unique key; doing the same thing with the "add" command would require more bookkeeping.
<lgierth>
where do you see nonblocking behaviour?
<Icefoz_>
I just tried it out on my local machine.
<Icefoz_>
I made two large random files, used curl to shove them both into IPFS via the HTTP API, and it didn't wait for one to finish before working on the other.
<Icefoz_>
It added them both in parallel.
<Icefoz_>
I suppose I should try that with a get.
<lgierth>
oh i see, yeah you can do stuff in parallel. but the operation will be cancelled midway if you abort the http request
<Icefoz_>
Right
<Icefoz_>
I'm wrapping ipfs in another HTTP API service
<Icefoz_>
and if it waits too long to do an pin or get then the web browser times out.
upperdeck has quit [Ping timeout: 248 seconds]
<Icefoz_>
So before writing my own async job queue I thought I'd check to see whether adding one to IPFS itself would be better.
upperdeck has joined #ipfs
Alpha64 has joined #ipfs
<Icefoz_>
As long as you're considering refactoring, it would really be super useful (to me :-P) if IPFS was less monolithic
<Icefoz_>
'cause right now the same program seems to do like 12 different things
<Icefoz_>
It's a server, it's a client, it's a database, it's a file store, it's a file server, it's a diagnostic tool, it's a DNS server, and somewhere in there yeah it actually implements IPFS too
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
<Icefoz_>
This is just me rambling instead of it actually being a problem, though.
upperdeck has quit [Ping timeout: 248 seconds]
<lgierth>
:):)
<lgierth>
there's definitely no dns server in there though
<Icefoz_>
Ok, DNS client, my bad. :-P
<lgierth>
but yeah agreed - in the midterm we'd like to move all networking into a separate process (libp2p-cli or so)
pat36 has quit [Read error: Connection reset by peer]
bdTaylor has joined #ipfs
<Icefoz_>
Yeah
pat36 has joined #ipfs
<lgierth>
that'd expose a unix socket and when you start ipfs it'd register a few protocols to that socket
<lgierth>
bitswap, kad-dht, pubsub
<Icefoz_>
sounds like you're sort of in the middle of taking it from "research project" to "production system"
<lgierth>
hehe yeah you could put it that way :)
<lgierth>
after 2.5 years of real usage we have a pretty good idea how it should actually look like
upperdeck has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
erictapen has joined #ipfs
pat36 has joined #ipfs
erictapen has quit [Ping timeout: 240 seconds]
}ls{ has quit [Ping timeout: 248 seconds]
}ls{ has joined #ipfs
upperdeck has quit [Ping timeout: 252 seconds]
Alpha64_ has joined #ipfs
anagh has quit [Quit: Page closed]
upperdeck has joined #ipfs
Alpha64_ has quit [Client Quit]
erictapen has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
erictapen has quit [Ping timeout: 240 seconds]
Oatmeal has quit [Quit: Suzie says, "TTFNs!"]
atrapado_ has joined #ipfs
upperdeck has quit [Ping timeout: 248 seconds]
erictapen has joined #ipfs
erictapen has quit [Remote host closed the connection]
erictapen has joined #ipfs
upperdeck has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
maxlath1 has joined #ipfs
ylambda_ has joined #ipfs
maxlath has quit [Ping timeout: 258 seconds]
maxlath1 is now known as maxlath
Encrypt has quit [Quit: Quit]
seaweed[m] has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
erictapen has quit [Ping timeout: 255 seconds]
erictapen has joined #ipfs
erictapen has quit [Remote host closed the connection]
erictapen has joined #ipfs
erictapen has quit [Remote host closed the connection]
<ehmry>
how does one work around gx to make changes to a dependency of go-ipfs and then compile it?
<lgierth>
ehmry: gx-go link --help
<lgierth>
that'll override the gx package with a local directory
upperdeck has quit [Ping timeout: 246 seconds]
upperdeck has joined #ipfs
xnbya has quit [Ping timeout: 240 seconds]
upperdeck has quit [Ping timeout: 246 seconds]
xnbya has joined #ipfs
upperdeck has joined #ipfs
ccii1 has quit [Ping timeout: 248 seconds]
<edsilv[m]>
hi all, just wondering if anyone's had experience getting go-ipfs to run in dokku?
<lgierth>
what kind of problems are you having?
upperdeck has quit [Ping timeout: 260 seconds]
rendar has quit [Quit: std::lower_bound + std::less_equal *works* with a vector without duplicates!]
upperdeck has joined #ipfs
arpu has quit [Ping timeout: 260 seconds]
onikuma has joined #ipfs
<edsilv[m]>
we're just trying something...
tombusby has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
kirby__ has quit [Remote host closed the connection]
arpu has joined #ipfs
Scio[m] has quit [Ping timeout: 240 seconds]
turt2live has quit [Ping timeout: 240 seconds]
Obscurity[m] has quit [Ping timeout: 240 seconds]
hueso[m] has quit [Ping timeout: 248 seconds]
huda[m] has quit [Ping timeout: 246 seconds]
MadcapJake[m] has quit [Ping timeout: 246 seconds]
M-3630 has quit [Ping timeout: 246 seconds]
sanday[m] has quit [Ping timeout: 246 seconds]
chrono[m] has quit [Ping timeout: 246 seconds]
neo[m]1 has quit [Ping timeout: 255 seconds]
chip[m] has quit [Ping timeout: 255 seconds]
Jesin has joined #ipfs
blinkwang[m] has quit [Ping timeout: 246 seconds]
carlbennetts[m] has quit [Ping timeout: 240 seconds]
nop[m] has quit [Ping timeout: 240 seconds]
plindner has quit [Ping timeout: 240 seconds]
flip[m] has quit [Ping timeout: 264 seconds]
torarne has quit [Ping timeout: 246 seconds]
jeremycahill[m] has quit [Ping timeout: 276 seconds]
masoodahm[m] has quit [Ping timeout: 255 seconds]
chatmasta[m] has quit [Ping timeout: 255 seconds]
M-liberdiko has quit [Ping timeout: 246 seconds]
jaller94[m] has quit [Ping timeout: 240 seconds]
Guest16441 has quit [Ping timeout: 240 seconds]
Hongar[m] has quit [Ping timeout: 255 seconds]
cornu[m] has quit [Ping timeout: 255 seconds]
jfmherokiller[m] has quit [Ping timeout: 248 seconds]
JuliusCaesar[m] has quit [Ping timeout: 248 seconds]
edejong[m] has quit [Ping timeout: 248 seconds]
therealklanni[m] has quit [Ping timeout: 248 seconds]
tgdnt[m] has quit [Ping timeout: 240 seconds]
upperdeck has quit [Ping timeout: 252 seconds]
M7865nfnjjfjf[m] has quit [Ping timeout: 252 seconds]
antonizoon has quit [Ping timeout: 252 seconds]
mntr[m] has quit [Ping timeout: 246 seconds]
HerroKitty[m] has quit [Ping timeout: 264 seconds]
Gryffins[m] has quit [Ping timeout: 240 seconds]
kvakes[m] has quit [Ping timeout: 255 seconds]
M-arx has quit [Ping timeout: 240 seconds]
Li[m]1 has quit [Ping timeout: 258 seconds]
Mugi[m] has quit [Ping timeout: 276 seconds]
fiber[m] has quit [Ping timeout: 276 seconds]
paranoix[m] has quit [Ping timeout: 248 seconds]
dtz has quit [Ping timeout: 248 seconds]
ArthurNorthwode[ has quit [Ping timeout: 252 seconds]
jhulten[m] has quit [Ping timeout: 240 seconds]
fujexo[m] has quit [Ping timeout: 240 seconds]
emunand[m] has quit [Ping timeout: 246 seconds]
Sabrina[m] has quit [Ping timeout: 246 seconds]
tk[m] has quit [Ping timeout: 246 seconds]
Kalq[m] has quit [Ping timeout: 240 seconds]
ipnoyl[m] has quit [Ping timeout: 264 seconds]
timthelion[m] has quit [Ping timeout: 255 seconds]
walle303 has quit [Ping timeout: 246 seconds]
sbdbd[m] has quit [Ping timeout: 240 seconds]
Bloo[m] has quit [Ping timeout: 240 seconds]
crazyshoubin[m] has quit [Ping timeout: 240 seconds]
kurtis[m] has quit [Ping timeout: 248 seconds]
Tyroie[m] has quit [Ping timeout: 248 seconds]
rubenmcosta[m] has quit [Ping timeout: 246 seconds]
upperdeck has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
Jacomo[m] has quit [Ping timeout: 240 seconds]
zebburkeconte[m] has quit [Ping timeout: 240 seconds]
genr8r[m] has quit [Ping timeout: 240 seconds]
sleepdeficit[m] has quit [Ping timeout: 240 seconds]
mith[m] has quit [Ping timeout: 240 seconds]
M-jimt has quit [Ping timeout: 240 seconds]
shabeeraly[m] has quit [Ping timeout: 240 seconds]
encns[m] has quit [Ping timeout: 240 seconds]
edsilv[m] has quit [Ping timeout: 240 seconds]
scheutsch[m] has quit [Ping timeout: 240 seconds]
jjw[m] has quit [Ping timeout: 240 seconds]
levzhazeschi[m] has quit [Ping timeout: 240 seconds]
sizeofcat[m] has quit [Ping timeout: 240 seconds]
futurenewsplz[m] has quit [Ping timeout: 246 seconds]
phi-rjan[m] has quit [Ping timeout: 246 seconds]
cutie has quit [Ping timeout: 246 seconds]
Jtremback[m] has quit [Ping timeout: 246 seconds]
lght[m] has quit [Ping timeout: 255 seconds]
Dako300[m] has quit [Ping timeout: 255 seconds]
WiredDude[m] has quit [Ping timeout: 255 seconds]
M-GrimKriegor has quit [Ping timeout: 255 seconds]
obi[m] has quit [Ping timeout: 240 seconds]
reddraggone9[m] has quit [Ping timeout: 240 seconds]
bitgulf[m] has quit [Ping timeout: 240 seconds]
pik[m] has quit [Ping timeout: 240 seconds]
peakj[m] has quit [Ping timeout: 240 seconds]
Jakob[m]2 has quit [Ping timeout: 240 seconds]
jux[m] has quit [Ping timeout: 240 seconds]
ricburton[m] has quit [Ping timeout: 240 seconds]
mayel[m]1 has quit [Ping timeout: 240 seconds]
snow-frog[m] has quit [Ping timeout: 240 seconds]
toya[m] has quit [Ping timeout: 240 seconds]
DYM[m] has quit [Ping timeout: 240 seconds]
TheKysek[m] has quit [Ping timeout: 240 seconds]
basilgohar[m] has quit [Ping timeout: 240 seconds]
codyopel has quit [Ping timeout: 240 seconds]
stebalien has quit [Ping timeout: 240 seconds]
notafile[m] has quit [Ping timeout: 240 seconds]
jsyn[m] has quit [Ping timeout: 240 seconds]
itorres has quit [Ping timeout: 240 seconds]
stoneridge has quit [Ping timeout: 240 seconds]
keks[m] has quit [Ping timeout: 240 seconds]
silwol has quit [Ping timeout: 240 seconds]
yala has quit [Ping timeout: 240 seconds]
gongzisun[m] has quit [Ping timeout: 240 seconds]
electric[m] has quit [Ping timeout: 240 seconds]
fzzr[m] has quit [Ping timeout: 240 seconds]
noether[m] has quit [Ping timeout: 240 seconds]
TempMan[m] has quit [Ping timeout: 240 seconds]
nedzadhrnjica[m4 has quit [Ping timeout: 240 seconds]
f4bio[m] has quit [Ping timeout: 240 seconds]
ltq520[m] has quit [Ping timeout: 240 seconds]
M-sraja has quit [Ping timeout: 240 seconds]
MrAxilus[m] has quit [Ping timeout: 240 seconds]
null_radix[m] has quit [Ping timeout: 240 seconds]
rihardsk[m] has quit [Ping timeout: 240 seconds]
k37[m] has quit [Ping timeout: 240 seconds]
leonardo77[m] has quit [Ping timeout: 246 seconds]
Walletor[m] has quit [Ping timeout: 246 seconds]
adampaigge[m] has quit [Ping timeout: 246 seconds]
testimonlkjd[m] has quit [Ping timeout: 246 seconds]
jessiedella[m] has quit [Ping timeout: 246 seconds]
a123123123[m] has quit [Ping timeout: 246 seconds]
zaengerlein[m] has quit [Ping timeout: 246 seconds]
joose[m] has quit [Ping timeout: 246 seconds]
shyBlugs[m] has quit [Ping timeout: 246 seconds]
yellowbelly[m] has quit [Ping timeout: 246 seconds]
grensjo[m] has quit [Ping timeout: 246 seconds]
Cargo[m] has quit [Ping timeout: 246 seconds]
M-wldhx has quit [Ping timeout: 246 seconds]
M107262[m] has quit [Ping timeout: 246 seconds]
Olinkl[m] has quit [Ping timeout: 246 seconds]
xloem has quit [Ping timeout: 246 seconds]
Rmesil8O4b[m] has quit [Ping timeout: 246 seconds]
mdrights[m] has quit [Ping timeout: 246 seconds]
stevetbm[m] has quit [Ping timeout: 248 seconds]
M-Manu has quit [Ping timeout: 248 seconds]
lypticdna[m] has quit [Ping timeout: 248 seconds]
talonzx[m] has quit [Ping timeout: 248 seconds]
janosberghorn[m] has quit [Ping timeout: 248 seconds]
M[m]12 has quit [Ping timeout: 248 seconds]
mkg20001[m] has quit [Ping timeout: 248 seconds]
Matthew[m] has quit [Ping timeout: 248 seconds]
xMajedz[m] has quit [Ping timeout: 276 seconds]
hl has quit [Ping timeout: 276 seconds]
kants[m] has quit [Ping timeout: 246 seconds]
ctresc[m] has quit [Ping timeout: 246 seconds]
Andrew[m] has quit [Ping timeout: 246 seconds]
am2on has quit [Ping timeout: 246 seconds]
paulith[m] has quit [Ping timeout: 246 seconds]
M-Dave has quit [Ping timeout: 246 seconds]
M-gavinjohnnoona has quit [Ping timeout: 246 seconds]
Conspiracy[m] has quit [Ping timeout: 246 seconds]
MuxDarkfire[m] has quit [Ping timeout: 246 seconds]
SerkanDevel[m] has quit [Ping timeout: 246 seconds]
joshb[m] has quit [Ping timeout: 246 seconds]
M-anomie has quit [Ping timeout: 246 seconds]
sevarat[m] has quit [Ping timeout: 258 seconds]
mike_new[m] has quit [Ping timeout: 258 seconds]
RichardCranium[m has quit [Ping timeout: 258 seconds]
bart80[m] has quit [Ping timeout: 258 seconds]
shepner[m] has quit [Ping timeout: 264 seconds]
KillaZA[m] has quit [Ping timeout: 264 seconds]
steven[m] has quit [Ping timeout: 264 seconds]
soberao[m] has quit [Ping timeout: 264 seconds]
octalsrc[m] has quit [Ping timeout: 264 seconds]
patrickr[m] has quit [Ping timeout: 264 seconds]
hypercube[m] has quit [Ping timeout: 264 seconds]
hexkey[m] has quit [Ping timeout: 264 seconds]
hef[m] has quit [Ping timeout: 264 seconds]
DavidP[m] has quit [Ping timeout: 264 seconds]
R1911[m] has quit [Ping timeout: 264 seconds]
WinterFox[m] has quit [Ping timeout: 264 seconds]
spoonless[m]1 has quit [Ping timeout: 264 seconds]
kewde[m] has quit [Ping timeout: 264 seconds]
kitten[m] has quit [Ping timeout: 252 seconds]
xamino[m] has quit [Ping timeout: 252 seconds]
cubemonkey[m] has quit [Ping timeout: 252 seconds]
fightentropy[m] has quit [Ping timeout: 252 seconds]
ZeroMe[m] has quit [Ping timeout: 252 seconds]
akosiaris[m] has quit [Ping timeout: 252 seconds]
Orpugi[m] has quit [Ping timeout: 252 seconds]
Dawnbreaker[m] has quit [Ping timeout: 252 seconds]
linux8bit[m] has quit [Ping timeout: 252 seconds]
gjh1 has quit [Ping timeout: 252 seconds]
Marco[m] has quit [Ping timeout: 252 seconds]
M568656s[m] has quit [Ping timeout: 252 seconds]
tidux[m] has quit [Ping timeout: 252 seconds]
sickill[m] has quit [Ping timeout: 252 seconds]
TheWhisper[m] has quit [Ping timeout: 252 seconds]
cyberpepe[m] has quit [Ping timeout: 252 seconds]
Jupadr[m] has quit [Ping timeout: 252 seconds]
AaronShafovaloff has quit [Ping timeout: 252 seconds]
klara[m] has quit [Ping timeout: 255 seconds]
snsnsbsb[m] has quit [Ping timeout: 255 seconds]
caveboner[m] has quit [Ping timeout: 255 seconds]
mmy[m] has quit [Ping timeout: 255 seconds]
CHOAM[m] has quit [Ping timeout: 255 seconds]
M-kalmi has quit [Ping timeout: 255 seconds]
Chelovek[m] has quit [Ping timeout: 255 seconds]
Guest218640[m] has quit [Ping timeout: 255 seconds]
DiCE1904[m] has quit [Ping timeout: 255 seconds]
M-krsiehl has quit [Ping timeout: 255 seconds]
igel[m] has quit [Ping timeout: 255 seconds]
Martinhandy[m] has quit [Ping timeout: 255 seconds]
atenorio[m] has quit [Ping timeout: 255 seconds]
musoke[m] has quit [Ping timeout: 255 seconds]
wakest has quit [Ping timeout: 255 seconds]
orenwf[m] has quit [Ping timeout: 255 seconds]
gylpm[m] has quit [Ping timeout: 255 seconds]
unlmtd has quit [Ping timeout: 255 seconds]
M-jfred has quit [Ping timeout: 255 seconds]
davidar has quit [Ping timeout: 255 seconds]
davidar_ has quit [Ping timeout: 255 seconds]
nath1014[m] has quit [Ping timeout: 240 seconds]
MatteoHirschstei has quit [Ping timeout: 240 seconds]
gugyygy00[m] has quit [Ping timeout: 240 seconds]
matrixjc[m] has quit [Ping timeout: 240 seconds]
Kythyria[m] has quit [Ping timeout: 240 seconds]
albuic has quit [Ping timeout: 240 seconds]
hoomx[m] has quit [Ping timeout: 240 seconds]
changgong[m] has quit [Ping timeout: 240 seconds]
Xanza[m] has quit [Ping timeout: 240 seconds]
porcow[m] has quit [Ping timeout: 255 seconds]
Guest307124[m] has quit [Ping timeout: 240 seconds]
M-amdtel has quit [Ping timeout: 255 seconds]
sabba[m] has quit [Ping timeout: 255 seconds]
wazaundtechnik[m has quit [Ping timeout: 255 seconds]
bitcoinprocircut has quit [Ping timeout: 255 seconds]
gomarashi[m] has quit [Ping timeout: 240 seconds]
davadl[m] has quit [Ping timeout: 240 seconds]
stapper[m] has quit [Ping timeout: 240 seconds]
Rad[m] has quit [Ping timeout: 240 seconds]
fairness[m] has quit [Ping timeout: 240 seconds]
flyinglasanga[m] has quit [Ping timeout: 240 seconds]
abhii_n[m] has quit [Ping timeout: 240 seconds]
rubencordeiro[m] has quit [Ping timeout: 240 seconds]
JEFFJ[m] has quit [Ping timeout: 240 seconds]
gulimu[m] has quit [Ping timeout: 240 seconds]
kantengri[m] has quit [Ping timeout: 255 seconds]
PoeBoy[m] has quit [Ping timeout: 255 seconds]
testingotro[m] has quit [Ping timeout: 240 seconds]
kobajagi[m] has quit [Ping timeout: 240 seconds]
bencevans[m] has quit [Ping timeout: 255 seconds]
Barnabas[m] has quit [Ping timeout: 255 seconds]
auditcranium[m] has quit [Ping timeout: 255 seconds]
Markus72[m] has quit [Ping timeout: 255 seconds]
axx_[m] has quit [Ping timeout: 255 seconds]
dhole[m] has quit [Ping timeout: 255 seconds]
drasko[m] has quit [Ping timeout: 255 seconds]
neurocis[m] has quit [Ping timeout: 255 seconds]
matiasnomad[m] has quit [Ping timeout: 246 seconds]
pacman99[m] has quit [Ping timeout: 246 seconds]
mirek1337[m] has quit [Ping timeout: 246 seconds]
rasmuserik[m] has quit [Ping timeout: 246 seconds]
chenzhengyi[m] has quit [Ping timeout: 246 seconds]
vihfvuuv[m] has quit [Ping timeout: 246 seconds]
aeaejei[m] has quit [Ping timeout: 246 seconds]
GregKNicholson[m has quit [Ping timeout: 246 seconds]
ravita1967[m] has quit [Ping timeout: 246 seconds]
Pneumaticat has quit [Ping timeout: 246 seconds]
noperope[m] has quit [Ping timeout: 246 seconds]
Vaultpls[m] has quit [Ping timeout: 246 seconds]
aer[m] has quit [Ping timeout: 246 seconds]
mushusei[m] has quit [Ping timeout: 246 seconds]
M-martinklepsch has quit [Ping timeout: 246 seconds]
irx[m] has quit [Ping timeout: 246 seconds]
nocent has quit [Ping timeout: 246 seconds]
dreuter[m] has quit [Ping timeout: 246 seconds]
M-brain has quit [Ping timeout: 246 seconds]
Anne_Jiang[m] has quit [Ping timeout: 246 seconds]
anon9876[m] has quit [Ping timeout: 246 seconds]
mrpx[m] has quit [Ping timeout: 246 seconds]
network[m] has quit [Ping timeout: 246 seconds]
fhs[m] has quit [Ping timeout: 246 seconds]
laptop_nativ[m] has quit [Ping timeout: 246 seconds]
Ghostwalk[m] has quit [Ping timeout: 246 seconds]
akaibu[m] has quit [Ping timeout: 246 seconds]
jsnng[m] has quit [Ping timeout: 246 seconds]
gendale[m] has quit [Ping timeout: 246 seconds]
zerga[m] has quit [Ping timeout: 246 seconds]
dryajov[m] has quit [Ping timeout: 246 seconds]
aloisdg[m] has quit [Ping timeout: 246 seconds]
captainplanet[m] has quit [Ping timeout: 248 seconds]
ManTou[m] has quit [Ping timeout: 248 seconds]
imtoken[m] has quit [Ping timeout: 248 seconds]
M0spark[m] has quit [Ping timeout: 248 seconds]
gobelin[m] has quit [Ping timeout: 248 seconds]
belie[m] has quit [Ping timeout: 248 seconds]
frelars[m] has quit [Ping timeout: 248 seconds]
vd[m] has quit [Ping timeout: 248 seconds]
G16357300[m] has quit [Ping timeout: 248 seconds]
ChrisHutchinson[ has quit [Ping timeout: 248 seconds]
rnkch[m] has quit [Ping timeout: 248 seconds]
LifeNT[m] has quit [Ping timeout: 248 seconds]
m3tti[m] has quit [Ping timeout: 248 seconds]
AndrewMcSwain[m] has quit [Ping timeout: 248 seconds]
mectors[m] has quit [Ping timeout: 248 seconds]
abbiya has quit [Ping timeout: 248 seconds]
M-hash has quit [Ping timeout: 248 seconds]
redsteakraw[m] has quit [Ping timeout: 248 seconds]
yuvipanda has quit [Ping timeout: 248 seconds]
chenlee1116[m] has quit [Ping timeout: 240 seconds]
tzuntzai[m] has quit [Ping timeout: 240 seconds]
timetrack[m] has quit [Ping timeout: 240 seconds]
xiaolai[m] has quit [Ping timeout: 240 seconds]
suduyujiqing[m] has quit [Ping timeout: 240 seconds]
asyncsec[m] has quit [Ping timeout: 240 seconds]
Chris[m]1 has quit [Ping timeout: 240 seconds]
solatis[m] has quit [Ping timeout: 240 seconds]
dmholmes[m] has quit [Ping timeout: 240 seconds]
fredrikj[m] has quit [Ping timeout: 240 seconds]
petergerber[m] has quit [Ping timeout: 240 seconds]
M-ecloud has quit [Ping timeout: 240 seconds]
aaronye[m] has quit [Ping timeout: 240 seconds]
aekym[m] has quit [Ping timeout: 240 seconds]
Mike[m] has quit [Ping timeout: 240 seconds]
M-Amandine has quit [Ping timeout: 240 seconds]
igorline[m] has quit [Ping timeout: 240 seconds]
MilkManzJourDadd has quit [Ping timeout: 240 seconds]
H3ndr1k[m] has quit [Ping timeout: 240 seconds]
M283750649[m] has quit [Ping timeout: 240 seconds]
marting[m] has quit [Ping timeout: 255 seconds]
at2500[m] has quit [Ping timeout: 255 seconds]
omiselu[m] has quit [Ping timeout: 255 seconds]
liaowu[m] has quit [Ping timeout: 255 seconds]
nobot4[m] has quit [Ping timeout: 255 seconds]
Riot_User_123[m] has quit [Ping timeout: 255 seconds]
synth[m] has quit [Ping timeout: 255 seconds]
Tectest123[m] has quit [Ping timeout: 255 seconds]
testuser54[m] has quit [Ping timeout: 255 seconds]
exyi[m] has quit [Ping timeout: 255 seconds]
josejuanisaac[m] has quit [Ping timeout: 255 seconds]
yodata[m] has quit [Ping timeout: 255 seconds]
Zedwick[m] has quit [Ping timeout: 255 seconds]
zekaf[m] has quit [Ping timeout: 255 seconds]
RuanMedGar[m] has quit [Ping timeout: 255 seconds]
fti7[m] has quit [Ping timeout: 255 seconds]
gwillen[m] has quit [Ping timeout: 255 seconds]
guest69[m] has quit [Ping timeout: 255 seconds]
jlpeters[m] has quit [Ping timeout: 255 seconds]
ganlub has quit [Ping timeout: 255 seconds]
eluc[m] has quit [Ping timeout: 255 seconds]
ekroon has quit [Ping timeout: 255 seconds]
ntninja has quit [Ping timeout: 255 seconds]
tameeshb has quit [Ping timeout: 255 seconds]
johngrimes[m] has quit [Ping timeout: 246 seconds]
M-Guillaume has quit [Ping timeout: 246 seconds]
DerZauberberg[m] has quit [Ping timeout: 246 seconds]
willhite[m] has quit [Ping timeout: 246 seconds]
juanbernabo[m] has quit [Ping timeout: 246 seconds]
patto_overflow[m has quit [Ping timeout: 246 seconds]
bananabread[m] has quit [Ping timeout: 246 seconds]
fedor1113[m] has quit [Ping timeout: 246 seconds]
mitfree[m] has quit [Ping timeout: 246 seconds]
kyoo[m] has quit [Ping timeout: 246 seconds]
doronbehar[m] has quit [Ping timeout: 246 seconds]
charlienyc[m] has quit [Ping timeout: 246 seconds]
jugash[m] has quit [Ping timeout: 246 seconds]
miflow[m] has quit [Ping timeout: 246 seconds]
M-trashrabbit has quit [Ping timeout: 246 seconds]
Choyes[m] has quit [Ping timeout: 276 seconds]
polytomous[m] has quit [Ping timeout: 276 seconds]
benjaminmateev[m has quit [Ping timeout: 276 seconds]
Emilylovesleep[m has quit [Ping timeout: 276 seconds]
halohaL[m] has quit [Ping timeout: 276 seconds]
gubbes[m] has quit [Ping timeout: 276 seconds]
balhd[m] has quit [Ping timeout: 276 seconds]
dliot[m] has quit [Ping timeout: 276 seconds]
Jacob[m]1 has quit [Ping timeout: 276 seconds]
iwxzr[m] has quit [Ping timeout: 276 seconds]
waz2[m] has quit [Ping timeout: 276 seconds]
Peter[m]2 has quit [Ping timeout: 276 seconds]
adam123[m] has quit [Ping timeout: 276 seconds]
hilariousandorig has quit [Ping timeout: 276 seconds]
M-ms has quit [Ping timeout: 276 seconds]
mortn[m] has quit [Ping timeout: 276 seconds]
grouchofractal2[ has quit [Ping timeout: 276 seconds]
confusedrobot[m] has quit [Ping timeout: 276 seconds]
Smith[m] has quit [Ping timeout: 276 seconds]
TFX[m] has quit [Ping timeout: 276 seconds]
Cosmo[m] has quit [Ping timeout: 276 seconds]
caught_in_the_ma has quit [Ping timeout: 276 seconds]
Skippy[m] has quit [Ping timeout: 276 seconds]
harlock[m]1 has quit [Ping timeout: 276 seconds]
AkhILman has quit [Ping timeout: 276 seconds]
elcyborg[m] has quit [Ping timeout: 276 seconds]
q3y4r[m] has quit [Ping timeout: 276 seconds]
palkeo[m] has quit [Ping timeout: 276 seconds]
M-gdr has quit [Ping timeout: 276 seconds]
user1234[m] has quit [Ping timeout: 276 seconds]
lnxw37[m] has quit [Ping timeout: 276 seconds]
puminya[m] has quit [Ping timeout: 276 seconds]
fridim[m] has quit [Ping timeout: 276 seconds]
rhizo[m] has quit [Ping timeout: 264 seconds]
randy[m] has quit [Ping timeout: 264 seconds]
Ineentho[m] has quit [Ping timeout: 264 seconds]
gravydigger[m] has quit [Ping timeout: 264 seconds]
kvin1[m] has quit [Ping timeout: 264 seconds]
Nekit[m] has quit [Ping timeout: 264 seconds]
IsaacDunlap[m] has quit [Ping timeout: 264 seconds]
ethanstokes[m] has quit [Ping timeout: 264 seconds]
risingsun2100[m] has quit [Ping timeout: 264 seconds]
stech[m] has quit [Ping timeout: 264 seconds]
OrangeOrange[m] has quit [Ping timeout: 264 seconds]
asenski[m] has quit [Ping timeout: 264 seconds]
hippopete[m] has quit [Ping timeout: 264 seconds]
elmago[m] has quit [Ping timeout: 264 seconds]
fetlock_coco_fis has quit [Ping timeout: 264 seconds]
Xiang[m] has quit [Ping timeout: 264 seconds]
Antharia[m] has quit [Ping timeout: 264 seconds]
leoserra[m] has quit [Ping timeout: 264 seconds]
t9840[m] has quit [Ping timeout: 264 seconds]
ZerataX[m]1 has quit [Ping timeout: 264 seconds]
DarkOoze[m] has quit [Ping timeout: 264 seconds]
Armagedda[m] has quit [Ping timeout: 264 seconds]
Anastiel[m] has quit [Ping timeout: 264 seconds]
mikecohen[m] has quit [Ping timeout: 264 seconds]
bilowan[m] has quit [Ping timeout: 264 seconds]
M-oddvar has quit [Ping timeout: 264 seconds]
musicmatze[m] has quit [Ping timeout: 264 seconds]
luisbg[m] has quit [Ping timeout: 264 seconds]
MayeldeBorniol[m has quit [Ping timeout: 264 seconds]
astronavt[m] has quit [Ping timeout: 264 seconds]
seizo[m] has quit [Ping timeout: 252 seconds]
JakobTigerstrm[m has quit [Ping timeout: 252 seconds]
daneroo[m] has quit [Ping timeout: 252 seconds]
solariiknight[m] has quit [Ping timeout: 252 seconds]
Andrew[m]1 has quit [Ping timeout: 252 seconds]
emir[m] has quit [Ping timeout: 252 seconds]
robertomurta[m] has quit [Ping timeout: 252 seconds]
mailtorajeshmr[m has quit [Ping timeout: 252 seconds]
Lucas[m] has quit [Ping timeout: 252 seconds]
Mario[m]2 has quit [Ping timeout: 252 seconds]
hexican[m] has quit [Ping timeout: 252 seconds]
Henark[m] has quit [Ping timeout: 252 seconds]
gabyshu[m] has quit [Ping timeout: 252 seconds]
victor[m]1 has quit [Ping timeout: 252 seconds]
Phyra[m] has quit [Ping timeout: 252 seconds]
zhangyijun[m] has quit [Ping timeout: 252 seconds]
raymond[m]1 has quit [Ping timeout: 252 seconds]
wak-work has quit [Ping timeout: 252 seconds]
benhylau[m] has quit [Ping timeout: 252 seconds]
maxlath[m] has quit [Ping timeout: 252 seconds]
cranau[m] has quit [Ping timeout: 252 seconds]
TheLugal[m] has quit [Ping timeout: 255 seconds]
Arthur[m] has quit [Ping timeout: 255 seconds]
martinrusev[m] has quit [Ping timeout: 255 seconds]
GoodGuyGreg[m] has quit [Ping timeout: 255 seconds]
GotoDengo[m] has quit [Ping timeout: 255 seconds]
warrenchan[m] has quit [Ping timeout: 255 seconds]
RomainLeCarrer[m has quit [Ping timeout: 255 seconds]
jebdj[m] has quit [Ping timeout: 255 seconds]
ebarch has quit [Ping timeout: 252 seconds]
thelonelyghost has quit [Ping timeout: 255 seconds]
SeaSon[m] has quit [Ping timeout: 255 seconds]
chisaki[m] has quit [Ping timeout: 255 seconds]
trust-tech[m] has quit [Ping timeout: 255 seconds]
steele[m] has quit [Ping timeout: 255 seconds]
GMason[m] has quit [Ping timeout: 255 seconds]
iarebatman[m] has quit [Ping timeout: 255 seconds]
gnmn[m] has quit [Ping timeout: 255 seconds]
M1trace[m] has quit [Ping timeout: 255 seconds]
TrickOrTreat[m] has quit [Ping timeout: 255 seconds]
firemound[m] has quit [Ping timeout: 255 seconds]
M-TidyKoala has quit [Ping timeout: 255 seconds]
ben999[m] has quit [Ping timeout: 255 seconds]
dani9[m] has quit [Ping timeout: 255 seconds]
TheGillies has quit [Ping timeout: 255 seconds]
jpf137[m] has quit [Ping timeout: 255 seconds]
screamerbeetle[m has quit [Ping timeout: 246 seconds]
terminator360[m] has quit [Ping timeout: 246 seconds]
stretch[m] has quit [Ping timeout: 246 seconds]
DrIzzel[m] has quit [Ping timeout: 246 seconds]
Bertschneider[m] has quit [Ping timeout: 246 seconds]
M-sol56 has quit [Ping timeout: 246 seconds]
frabrunelle has quit [Ping timeout: 246 seconds]
peddie[m] has quit [Ping timeout: 246 seconds]
omomom[m] has quit [Ping timeout: 246 seconds]
pierce has quit [Ping timeout: 246 seconds]
MariaP[m] has quit [Ping timeout: 258 seconds]
lisky[m] has quit [Ping timeout: 258 seconds]
addd34[m] has quit [Ping timeout: 258 seconds]
Tbi[m] has quit [Ping timeout: 240 seconds]
stevendai[m] has quit [Ping timeout: 240 seconds]
wervenyt[m] has quit [Ping timeout: 240 seconds]
Vitalii_Pandora[ has quit [Ping timeout: 240 seconds]
thinkmassive[m] has quit [Ping timeout: 240 seconds]
gragotta68[m] has quit [Ping timeout: 240 seconds]
avatias0[m] has quit [Ping timeout: 240 seconds]
conorohiggins[m] has quit [Ping timeout: 240 seconds]
herzmeister[m] has quit [Ping timeout: 240 seconds]
zie[m] has quit [Ping timeout: 240 seconds]
dkess[m] has quit [Ping timeout: 240 seconds]
aronvanammers[m] has quit [Ping timeout: 240 seconds]
YuFanLovezYou[m] has quit [Ping timeout: 240 seconds]
madduck[m] has quit [Ping timeout: 240 seconds]
Remramm has quit [Ping timeout: 240 seconds]
frabcus[m] has quit [Ping timeout: 246 seconds]
slowtoaster[m] has quit [Ping timeout: 246 seconds]
msmart[m] has quit [Ping timeout: 246 seconds]
sigmaister[m] has quit [Ping timeout: 246 seconds]
M3v[m] has quit [Ping timeout: 246 seconds]
alphard[m] has quit [Ping timeout: 246 seconds]
homulilly[m] has quit [Ping timeout: 248 seconds]
visim[m] has quit [Ping timeout: 248 seconds]
M6AA4FD[m] has quit [Ping timeout: 248 seconds]
BobWhite[m] has quit [Ping timeout: 248 seconds]
adamierymenko[m7 has quit [Ping timeout: 248 seconds]
Novitsh[m] has quit [Ping timeout: 248 seconds]
bhuvi[m] has quit [Ping timeout: 248 seconds]
AntoineM[m] has quit [Ping timeout: 248 seconds]
huaixiaoxiao[m] has quit [Ping timeout: 248 seconds]
RossSchulman[m] has quit [Ping timeout: 248 seconds]
cjd[m] has quit [Ping timeout: 248 seconds]
jiawei[m] has quit [Ping timeout: 246 seconds]
hajak[m] has quit [Ping timeout: 246 seconds]
Gratin[m] has quit [Ping timeout: 246 seconds]
M[m]15 has quit [Ping timeout: 246 seconds]
Polychrome[m] has quit [Ping timeout: 246 seconds]
wktian[m] has quit [Ping timeout: 246 seconds]
homelessrobot[m] has quit [Ping timeout: 246 seconds]
ztl8702[m] has quit [Ping timeout: 255 seconds]
nullptr_[m] has quit [Ping timeout: 255 seconds]
ElWood[m] has quit [Ping timeout: 255 seconds]
Atrus[m] has quit [Ping timeout: 255 seconds]
kpcyrd[m] has quit [Ping timeout: 255 seconds]
christopherdebee has quit [Ping timeout: 255 seconds]
silur[m] has quit [Ping timeout: 255 seconds]
M-HirmeS has quit [Ping timeout: 255 seconds]
cybervking[m] has quit [Ping timeout: 255 seconds]
johanherman[m] has quit [Ping timeout: 255 seconds]
bgrayburn[m] has quit [Ping timeout: 255 seconds]
willybecker[m] has quit [Ping timeout: 255 seconds]
Guest198477[m] has quit [Ping timeout: 255 seconds]
Sonata has quit [Ping timeout: 255 seconds]
nine-h[m] has quit [Ping timeout: 255 seconds]
fil_redpill has quit [Ping timeout: 255 seconds]
Powersource has quit [Ping timeout: 255 seconds]
f0x[m] has quit [Ping timeout: 255 seconds]
ivano[m] has quit [Ping timeout: 255 seconds]
M-BostonEnginerd has quit [Ping timeout: 255 seconds]
litebit[m] has quit [Ping timeout: 255 seconds]
jfred[m] has quit [Ping timeout: 255 seconds]
equalunique[m] has quit [Ping timeout: 255 seconds]
hannes[m] has quit [Ping timeout: 255 seconds]
dyce[m] has quit [Ping timeout: 240 seconds]
Kinch[m] has quit [Ping timeout: 258 seconds]
rovdyl[m] has quit [Ping timeout: 252 seconds]
scde has quit [Ping timeout: 252 seconds]
melanargia[m] has quit [Ping timeout: 252 seconds]
ttk2[m] has quit [Ping timeout: 252 seconds]
einyx[m] has quit [Ping timeout: 252 seconds]
kostya[m] has quit [Ping timeout: 240 seconds]
hjoest[m] has quit [Ping timeout: 252 seconds]
kevindetry[m] has quit [Ping timeout: 240 seconds]
remediface[m] has quit [Ping timeout: 264 seconds]
miso[m] has quit [Ping timeout: 264 seconds]
gvimrh[m] has quit [Ping timeout: 264 seconds]
cyberwolf[m] has quit [Ping timeout: 264 seconds]
NathanBraswell[m has quit [Ping timeout: 264 seconds]
bumi[m] has quit [Ping timeout: 264 seconds]
VitalyLipatov[m] has quit [Ping timeout: 264 seconds]
janke99[m] has quit [Ping timeout: 264 seconds]
landakram[m] has quit [Ping timeout: 264 seconds]
fru[m] has quit [Ping timeout: 264 seconds]
aikidouke1 has quit [Ping timeout: 264 seconds]
dwesima[m] has quit [Ping timeout: 264 seconds]
happy_gnu[m] has quit [Ping timeout: 264 seconds]
axic[m] has quit [Ping timeout: 264 seconds]
shirian[m] has quit [Ping timeout: 276 seconds]
alldigital[m] has quit [Ping timeout: 276 seconds]
M-nated has quit [Ping timeout: 276 seconds]
PowerOlive[m] has quit [Ping timeout: 276 seconds]
mingchan88[m] has quit [Ping timeout: 276 seconds]
francis[m]1 has quit [Ping timeout: 276 seconds]
zhikin[m] has quit [Ping timeout: 276 seconds]
because[m] has quit [Ping timeout: 276 seconds]
henriqueqc[m] has quit [Ping timeout: 276 seconds]
MaxSan[m] has quit [Ping timeout: 276 seconds]
StackerRobot[m] has quit [Ping timeout: 276 seconds]
ash[m] has quit [Ping timeout: 246 seconds]
fluff[m] has quit [Ping timeout: 246 seconds]
marcusdunlop[m] has quit [Ping timeout: 246 seconds]
yl[m] has quit [Ping timeout: 246 seconds]
thejohnhenry[m] has quit [Ping timeout: 246 seconds]
bustillo[m] has quit [Ping timeout: 255 seconds]
garikson[m] has quit [Ping timeout: 255 seconds]
LaPingvino[m] has quit [Ping timeout: 255 seconds]
locusf has quit [Ping timeout: 255 seconds]
kuhilasvaara has quit [Ping timeout: 255 seconds]
rtjure[m] has quit [Ping timeout: 255 seconds]
Akito[m] has quit [Ping timeout: 255 seconds]
Nouts[m] has quit [Ping timeout: 255 seconds]
tx[m] has quit [Ping timeout: 240 seconds]
M-mlt has quit [Ping timeout: 240 seconds]
chevdor[m] has quit [Ping timeout: 240 seconds]
augoeides[m] has quit [Ping timeout: 240 seconds]
hyde_stevenson[m has quit [Ping timeout: 240 seconds]
sanjivrai[m] has quit [Ping timeout: 240 seconds]
hollowzen[m] has quit [Ping timeout: 248 seconds]
laosijijulebu[m] has quit [Ping timeout: 248 seconds]
Ferdinandhi[m] has quit [Ping timeout: 248 seconds]
ot8[m] has quit [Ping timeout: 248 seconds]
cmatthias[m] has quit [Ping timeout: 248 seconds]
HydraGene[m] has quit [Ping timeout: 248 seconds]
berot3[m] has quit [Ping timeout: 240 seconds]
seaweed[m] has quit [Ping timeout: 255 seconds]
M-madsurgeon has quit [Ping timeout: 255 seconds]
Mill3n[m] has quit [Ping timeout: 255 seconds]
Silke^ has quit [Ping timeout: 255 seconds]
jcgruenhage has quit [Ping timeout: 255 seconds]
Symen[m] has quit [Ping timeout: 258 seconds]
bhipple[m] has quit [Ping timeout: 246 seconds]
mantycore[m] has quit [Ping timeout: 246 seconds]
marxyz[m] has quit [Ping timeout: 246 seconds]
xuv[m] has quit [Ping timeout: 246 seconds]
renatocan[m] has quit [Ping timeout: 252 seconds]
roderik[m] has quit [Ping timeout: 264 seconds]
halle[m] has quit [Ping timeout: 264 seconds]
crapman[m] has quit [Ping timeout: 264 seconds]
panicbit-M has quit [Ping timeout: 264 seconds]
redviking[m] has quit [Ping timeout: 264 seconds]
deebee[m] has quit [Ping timeout: 264 seconds]
GuillaumeREMBERT has quit [Ping timeout: 264 seconds]
Leer10[m] has quit [Ping timeout: 264 seconds]
saggad[m] has quit [Ping timeout: 264 seconds]
aquentson[m] has quit [Ping timeout: 240 seconds]
Wikipedia[m] has quit [Ping timeout: 240 seconds]
aeaf123[m] has quit [Ping timeout: 276 seconds]
SethDavis[m] has quit [Ping timeout: 276 seconds]
VegBerg[m] has quit [Ping timeout: 276 seconds]
Luguber[m] has quit [Ping timeout: 276 seconds]
fabrixxm has quit [Ping timeout: 276 seconds]
mattylar12[m] has quit [Ping timeout: 276 seconds]
clunk-dike[m] has quit [Ping timeout: 276 seconds]
skywavesurfer[m4 has quit [Ping timeout: 276 seconds]
sk23[m] has quit [Ping timeout: 276 seconds]
tadzik has quit [Ping timeout: 276 seconds]
cdetrio[m] has quit [Ping timeout: 255 seconds]
harlock[m] has quit [Ping timeout: 255 seconds]
al1p[m] has quit [Ping timeout: 246 seconds]
Lin[m] has quit [Ping timeout: 255 seconds]
henri_nourel[m] has quit [Ping timeout: 246 seconds]
lanshoot[m] has quit [Ping timeout: 248 seconds]
xelra[m] has quit [Ping timeout: 248 seconds]
garblur83[m] has quit [Ping timeout: 255 seconds]
wanglei0095[m] has quit [Ping timeout: 255 seconds]
Geeky[m] has quit [Ping timeout: 276 seconds]
ehmry has quit [Ping timeout: 276 seconds]
flo[m] has quit [Ping timeout: 276 seconds]
shellkr[m] has quit [Ping timeout: 276 seconds]
DokterBob has quit [Ping timeout: 276 seconds]
erikj` has quit [Ping timeout: 276 seconds]
upperdeck has quit [Ping timeout: 248 seconds]
upperdeck has joined #ipfs
onikuma has quit [Ping timeout: 240 seconds]
nikivi has quit [Ping timeout: 248 seconds]
upperdeck has quit [Ping timeout: 255 seconds]
upperdeck has joined #ipfs
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
upperdeck has quit [Ping timeout: 246 seconds]
kirby__ has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
Mitar has joined #ipfs
upperdeck has joined #ipfs
appa has quit [Ping timeout: 240 seconds]
upperdeck has quit [Ping timeout: 264 seconds]
upperdeck has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
ylambda_ has quit [Quit: Leaving]
appa has joined #ipfs
upperdeck has quit [Ping timeout: 255 seconds]
upperdeck has joined #ipfs
upperdeck has quit [Ping timeout: 255 seconds]
upperdeck has joined #ipfs
Jesin has quit [Quit: Leaving]
dgrisham has joined #ipfs
upperdeck has quit [Ping timeout: 264 seconds]
aw1n has quit [Remote host closed the connection]
upperdeck has joined #ipfs
aw1n has joined #ipfs
edsilv[m] has joined #ipfs
<edsilv[m]>
we seem to have the daemon being successfully downloaded and started on deploy. we're getting a timeout for port 5001 when trying to add a file using js-ipfs-api. we've added the correct CORS config (we think). just wondering if there's any prior art out there we could look at to get some tips
dryajov[m] has joined #ipfs
upperdeck has quit [Ping timeout: 252 seconds]
upperdeck has joined #ipfs
upperdeck has quit [Ping timeout: 255 seconds]
upperdeck has joined #ipfs
<edsilv[m]>
`Error - ipfs files add TypeError: Failed to fetch`
upperdeck has quit [Ping timeout: 264 seconds]
upperdeck has joined #ipfs
cornu[m] has joined #ipfs
lypticdna[m] has joined #ipfs
hueso[m] has joined #ipfs
hexkey[m] has joined #ipfs
jfred[m] has joined #ipfs
mantycore[m] has joined #ipfs
ehmry has joined #ipfs
adamierymenko[m7 has joined #ipfs
kobajagi[m] has joined #ipfs
M-krsiehl has joined #ipfs
aikidouke has joined #ipfs
am2on has joined #ipfs
silwol has joined #ipfs
AkhILman has joined #ipfs
Olinkl[m] has joined #ipfs
orenwf[m] has joined #ipfs
Atrus[m] has joined #ipfs
Kalq[m] has joined #ipfs
Vaultpls[m] has joined #ipfs
gongzisun[m] has joined #ipfs
redviking[m] has joined #ipfs
nop[m] has joined #ipfs
WinterFox[m] has joined #ipfs
tadzik has joined #ipfs
benhylau[m] has joined #ipfs
gnmn[m] has joined #ipfs
wak-work has joined #ipfs
tk[m] has joined #ipfs
M-TidyKoala has joined #ipfs
happy_gnu[m] has joined #ipfs
cdetrio[m] has joined #ipfs
matrixjc[m] has joined #ipfs
sanday[m] has joined #ipfs
sickill[m] has joined #ipfs
Chris[m]1 has joined #ipfs
cjd[m] has joined #ipfs
NathanBraswell[m has joined #ipfs
francis[m]1 has joined #ipfs
wakest has joined #ipfs
TFX[m] has joined #ipfs
huaixiaoxiao[m] has joined #ipfs
M-jimt has joined #ipfs
M-wldhx has joined #ipfs
TheKysek[m] has joined #ipfs
fabrixxm has joined #ipfs
igorline[m] has joined #ipfs
shyBlugs[m] has joined #ipfs
BobWhite[m] has joined #ipfs
herzmeister[m] has joined #ipfs
Henark[m] has joined #ipfs
M-hash has joined #ipfs
chisaki[m] has joined #ipfs
cyberpepe[m] has joined #ipfs
janosberghorn[m] has joined #ipfs
scde has joined #ipfs
M-BostonEnginerd has joined #ipfs
Guest218640[m] has joined #ipfs
M-Dave has joined #ipfs
neo[m]1 has joined #ipfs
rtjure[m] has joined #ipfs
Guest307124[m] has joined #ipfs
Powersource has joined #ipfs
network[m] has joined #ipfs
Obscurity[m] has joined #ipfs
erikj` has joined #ipfs
Rmesil8O4b[m] has joined #ipfs
wktian[m] has joined #ipfs
einyx[m] has joined #ipfs
aekym[m] has joined #ipfs
Mike[m]1 has joined #ipfs
user1234[m] has joined #ipfs
M-sol56 has joined #ipfs
Chelovek[m] has joined #ipfs
SethDavis[m] has joined #ipfs
joshb[m] has joined #ipfs
musoke[m] has joined #ipfs
Sonata has joined #ipfs
AntoineM[m] has joined #ipfs
Andrew[m] has joined #ipfs
Martinhandy[m] has joined #ipfs
Antharia[m] has joined #ipfs
gabyshu[m] has joined #ipfs
asyncsec[m] has joined #ipfs
m3tti[m] has joined #ipfs
kurtis[m] has joined #ipfs
fti7[m] has joined #ipfs
ravita1967[m] has joined #ipfs
ben999[m] has joined #ipfs
Matthew[m] has joined #ipfs
jsyn[m] has joined #ipfs
keks[m] has joined #ipfs
M7865nfnjjfjf[m] has joined #ipfs
sk23[m] has joined #ipfs
paulith[m] has joined #ipfs
hippopete[m] has joined #ipfs
wervenyt[m] has joined #ipfs
jsnng[m] has joined #ipfs
albuic has joined #ipfs
RuanMedGar[m] has joined #ipfs
confusedrobot[m] has joined #ipfs
DYM[m] has joined #ipfs
landakram[m] has joined #ipfs
Pneumaticat has joined #ipfs
sigmaister[m] has joined #ipfs
M-kalmi has joined #ipfs
bilowan[m] has joined #ipfs
garblur83[m] has joined #ipfs
f4bio[m] has joined #ipfs
SeaSon[m] has joined #ipfs
M-oddvar has joined #ipfs
fluff[m] has joined #ipfs
toya[m] has joined #ipfs
frabrunelle has joined #ipfs
ot8[m] has joined #ipfs
panicbit-M has joined #ipfs
al1p[m] has joined #ipfs
q3y4r[m] has joined #ipfs
Wikipedia[m] has joined #ipfs
ZerataX[m]1 has joined #ipfs
mattylar12[m] has joined #ipfs
bananabread[m] has joined #ipfs
Li[m] has joined #ipfs
zekaf[m] has joined #ipfs
bencevans[m] has joined #ipfs
joose[m] has joined #ipfs
fetlock_coco_fis has joined #ipfs
TrickOrTreat[m] has joined #ipfs
M-sraja has joined #ipfs
a123123123[m] has joined #ipfs
atenorio[m] has joined #ipfs
cxl000 has joined #ipfs
gendale[m] has joined #ipfs
Xiang[m] has joined #ipfs
kuhilasvaara has joined #ipfs
zaengerlein[m] has joined #ipfs
bgrayburn[m] has joined #ipfs
dmholmes[m] has joined #ipfs
snow-frog[m] has joined #ipfs
timthelion[m] has joined #ipfs
drasko[m] has joined #ipfs
hef[m] has joined #ipfs
yodata[m] has joined #ipfs
jessiedella[m] has joined #ipfs
Zedwick[m] has joined #ipfs
aeaejei[m] has joined #ipfs
gjh1 has joined #ipfs
SerkanDevel[m] has joined #ipfs
skywavesurfer[m4 has joined #ipfs
adam123[m] has joined #ipfs
Phyra[m] has joined #ipfs
GuillaumeREMBERT has joined #ipfs
masoodahm[m] has joined #ipfs
wanglei0095[m] has joined #ipfs
Luguber[m] has joined #ipfs
Conspiracy[m] has joined #ipfs
slowtoaster[m] has joined #ipfs
trust-tech[m] has joined #ipfs
melanargia[m] has joined #ipfs
vihfvuuv[m] has joined #ipfs
charlienyc[m] has joined #ipfs
OrangeOrange[m] has joined #ipfs
TempMan[m] has joined #ipfs
patto_overflow[m has joined #ipfs
Novitsh[m] has joined #ipfs
M3v[m] has joined #ipfs
nath1014[m] has joined #ipfs
suduyujiqing[m] has joined #ipfs
Orpugi[m] has joined #ipfs
Leer10[m] has joined #ipfs
rubenmcosta[m] has joined #ipfs
VitalyLipatov[m] has joined #ipfs
garikson[m] has joined #ipfs
Smith[m] has joined #ipfs
rihardsk[m] has joined #ipfs
M107262[m] has joined #ipfs
nedzadhrnjica[m4 has joined #ipfs
zhikin[m] has joined #ipfs
t9840[m] has joined #ipfs
MuxDarkfire[m] has joined #ipfs
bart80[m] has joined #ipfs
auditcranium[m] has joined #ipfs
M-liberdiko has joined #ipfs
mayel[m]1 has joined #ipfs
DokterBob has joined #ipfs
Ferdinandhi[m] has joined #ipfs
jhulten[m] has joined #ipfs
stech[m] has joined #ipfs
mectors[m] has joined #ipfs
zie[m] has joined #ipfs
fru[m] has joined #ipfs
kyoo[m] has joined #ipfs
MrAxilus[m] has joined #ipfs
M-arx has joined #ipfs
M-ms has joined #ipfs
HydraGene[m] has joined #ipfs
visim[m] has joined #ipfs
cmatthias[m] has joined #ipfs
asenski[m] has joined #ipfs
chatmasta[m] has joined #ipfs
TheGillies has joined #ipfs
mkg20001[m] has joined #ipfs
conorohiggins[m] has joined #ipfs
blinkwang[m] has joined #ipfs
RossSchulman[m] has joined #ipfs
Cosmo[m] has joined #ipfs
Peter[m]2 has joined #ipfs
solatis[m] has joined #ipfs
testingotro[m] has joined #ipfs
M-anomie has joined #ipfs
juanbernabo[m] has joined #ipfs
thejohnhenry[m] has joined #ipfs
M[m]15 has joined #ipfs
madduck[m] has joined #ipfs
Dako300[m] has joined #ipfs
M6AA4FD[m] has joined #ipfs
miso[m] has joined #ipfs
M-martinklepsch has joined #ipfs
hilariousandorig has joined #ipfs
fil_redpill has joined #ipfs
fzzr[m] has joined #ipfs
addd34[m] has joined #ipfs
gwillen[m] has joined #ipfs
jux[m] has joined #ipfs
ricburton[m] has joined #ipfs
fridim[m] has joined #ipfs
josejuanisaac[m] has joined #ipfs
ntninja has joined #ipfs
ipnoyl[m] has joined #ipfs
chevdor[m] has joined #ipfs
willhite[m] has joined #ipfs
willybecker[m] has joined #ipfs
basilgohar[m] has joined #ipfs
hypercube[m] has joined #ipfs
MilkManzJourDadd has joined #ipfs
talonzx[m] has joined #ipfs
fujexo[m] has joined #ipfs
k37[m] has joined #ipfs
thelonelyghost has joined #ipfs
risingsun2100[m] has joined #ipfs
ctresc[m] has joined #ipfs
noether[m] has joined #ipfs
M-Amandine has joined #ipfs
seaweed[m] has joined #ipfs
mith[m] has joined #ipfs
msmart[m] has joined #ipfs
lght[m] has joined #ipfs
ethanstokes[m] has joined #ipfs
Nekit[m] has joined #ipfs
M-mlt has joined #ipfs
seizo[m] has joined #ipfs
G16357300[m] has joined #ipfs
stevendai[m] has joined #ipfs
tgdnt[m] has joined #ipfs
DerZauberberg[m] has joined #ipfs
gulimu[m] has joined #ipfs
mingchan88[m] has joined #ipfs
marting[m] has joined #ipfs
Mill3n[m] has joined #ipfs
frelars[m] has joined #ipfs
JEFFJ[m] has joined #ipfs
rubencordeiro[m] has joined #ipfs
tx[m] has joined #ipfs
therealklanni[m] has joined #ipfs
huda[m] has joined #ipfs
abhii_n[m] has joined #ipfs
paranoix[m] has joined #ipfs
yl[m] has joined #ipfs
f0x[m] has joined #ipfs
chenzhengyi[m] has joined #ipfs
rasmuserik[m] has joined #ipfs
hajak[m] has joined #ipfs
Xanza[m] has joined #ipfs
belie[m] has joined #ipfs
Tbi[m] has joined #ipfs
sbdbd[m] has joined #ipfs
edejong[m] has joined #ipfs
jcgruenhage has joined #ipfs
Skippy[m] has joined #ipfs
aaronye[m] has joined #ipfs
IsaacDunlap[m] has joined #ipfs
hjoest[m] has joined #ipfs
M-gavinjohnnoona has joined #ipfs
irx[m] has joined #ipfs
leonardo77[m] has joined #ipfs
puminya[m] has joined #ipfs
grouchofractal2[ has joined #ipfs
Anastiel[m] has joined #ipfs
aer[m] has joined #ipfs
aloisdg[m] has joined #ipfs
yuvipanda has joined #ipfs
mdrights[m] has joined #ipfs
kpcyrd[m] has joined #ipfs
ltq520[m] has joined #ipfs
ivano[m] has joined #ipfs
zhangyijun[m] has joined #ipfs
because[m] has joined #ipfs
harlock[m] has joined #ipfs
luisbg[m] has joined #ipfs
xloem has joined #ipfs
neurocis[m] has joined #ipfs
mirek1337[m] has joined #ipfs
Hongar[m] has joined #ipfs
lisky[m] has joined #ipfs
bitcoinprocircut has joined #ipfs
kvin1[m] has joined #ipfs
petergerber[m] has joined #ipfs
Polychrome[m] has joined #ipfs
Barnabas[m] has joined #ipfs
electric[m] has joined #ipfs
jeremycahill[m] has joined #ipfs
Silke^ has joined #ipfs
gugyygy00[m] has joined #ipfs
turt2live has joined #ipfs
peddie[m] has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
M1trace[m] has joined #ipfs
abbiya has joined #ipfs
M-trashrabbit has joined #ipfs
firemound[m] has joined #ipfs
MayeldeBorniol[m has joined #ipfs
unlmtd has joined #ipfs
M-jfred has joined #ipfs
mitfree[m] has joined #ipfs
Akito[m] has joined #ipfs
Ghostwalk[m] has joined #ipfs
victor[m]2 has joined #ipfs
caught_in_the_ma has joined #ipfs
astronavt[m] has joined #ipfs
henriqueqc[m] has joined #ipfs
ElWood[m] has joined #ipfs
DavidP[m] has joined #ipfs
YuFanLovezYou[m] has joined #ipfs
H3ndr1k[m] has joined #ipfs
changgong[m] has joined #ipfs
Mugi[m] has joined #ipfs
exyi[m] has joined #ipfs
xiaolai[m] has joined #ipfs
mntr[m] has joined #ipfs
alphard[m] has joined #ipfs
fhs[m] has joined #ipfs
augoeides[m] has joined #ipfs
jiawei[m] has joined #ipfs
bhipple[m] has joined #ipfs
jebdj[m] has joined #ipfs
Gratin[m] has joined #ipfs
nullptr_[m] has joined #ipfs
flyinglasanga[m] has joined #ipfs
bhuvi[m] has joined #ipfs
davidar_ has joined #ipfs
lnxw37[m] has joined #ipfs
saggad[m] has joined #ipfs
HerroKitty[m] has joined #ipfs
akaibu[m] has joined #ipfs
fredrikj[m] has joined #ipfs
testimonlkjd[m] has joined #ipfs
noperope[m] has joined #ipfs
gobelin[m] has joined #ipfs
Mario[m]2 has joined #ipfs
timetrack[m] has joined #ipfs
mrpx[m] has joined #ipfs
crazyshoubin[m] has joined #ipfs
Armagedda[m] has joined #ipfs
musicmatze[m] has joined #ipfs
chip[m] has joined #ipfs
M[m]12 has joined #ipfs
homelessrobot[m] has joined #ipfs
wazaundtechnik[m has joined #ipfs
RomainLeCarrer[m has joined #ipfs
axic[m] has joined #ipfs
marxyz[m] has joined #ipfs
anon9876[m] has joined #ipfs
deebee[m] has joined #ipfs
M0spark[m] has joined #ipfs
M-ecloud has joined #ipfs
mikecohen[m] has joined #ipfs
akosiaris[m] has joined #ipfs
harlock[m]1 has joined #ipfs
JuliusCaesar[m] has joined #ipfs
laosijijulebu[m] has joined #ipfs
sleepdeficit[m] has joined #ipfs
cranau[m] has joined #ipfs
imtoken[m] has joined #ipfs
ganlub has joined #ipfs
LifeNT[m] has joined #ipfs
mushusei[m] has joined #ipfs
flo[m] has joined #ipfs
dyce[m] has joined #ipfs
yellowbelly[m] has joined #ipfs
GotoDengo[m] has joined #ipfs
vd[m] has joined #ipfs
crapman[m] has joined #ipfs
waz2[m] has joined #ipfs
DarkOoze[m] has joined #ipfs
Lucas[m] has joined #ipfs
warrenchan[m] has joined #ipfs
elcyborg[m] has joined #ipfs
Nouts[m] has joined #ipfs
jlpeters[m] has joined #ipfs
torarne has joined #ipfs
christopherdebee has joined #ipfs
AndrewMcSwain[m] has joined #ipfs
hoomx[m] has joined #ipfs
MariaP[m] has joined #ipfs
patrickr[m] has joined #ipfs
GregKNicholson[m has joined #ipfs
ttk2[m] has joined #ipfs
thinkmassive[m] has joined #ipfs
StackerRobot[m] has joined #ipfs
steele[m] has joined #ipfs
encns[m] has joined #ipfs
Tectest123[m] has joined #ipfs
testuser54[m] has joined #ipfs
mailtorajeshmr[m has joined #ipfs
ManTou[m] has joined #ipfs
ztl8702[m] has joined #ipfs
fairness[m] has joined #ipfs
zerga[m] has joined #ipfs
levzhazeschi[m] has joined #ipfs
ChrisHutchinson[ has joined #ipfs
M-gdr has joined #ipfs
iarebatman[m] has joined #ipfs
pacman99[m] has joined #ipfs
codyopel has joined #ipfs
DiCE1904[m] has joined #ipfs
robertomurta[m] has joined #ipfs
phi-rjan[m] has joined #ipfs
Rad[m] has joined #ipfs
miflow[m] has joined #ipfs
terminator360[m] has joined #ipfs
octalsrc[m] has joined #ipfs
avatias0[m] has joined #ipfs
aquentson[m] has joined #ipfs
yala has joined #ipfs
laptop_nativ[m] has joined #ipfs
iwxzr[m] has joined #ipfs
shirian[m] has joined #ipfs
xMajedz[m] has joined #ipfs
davadl[m] has joined #ipfs
xelra[m] has joined #ipfs
WiredDude[m] has joined #ipfs
Anne_Jiang[m] has joined #ipfs
stapper[m] has joined #ipfs
cybervking[m] has joined #ipfs
Bertschneider[m] has joined #ipfs
raymond[m]1 has joined #ipfs
Jupadr[m] has joined #ipfs
kvakes[m] has joined #ipfs
equalunique[m] has joined #ipfs
dhole[m] has joined #ipfs
sizeofcat[m] has joined #ipfs
PowerOlive[m] has joined #ipfs
hollowzen[m] has joined #ipfs
sabba[m] has joined #ipfs
ZeroMe[m] has joined #ipfs
jfmherokiller[m] has joined #ipfs
soberao[m] has joined #ipfs
adampaigge[m] has joined #ipfs
GoodGuyGreg[m] has joined #ipfs
janke99[m] has joined #ipfs
synth[m] has joined #ipfs
steven[m] has joined #ipfs
CHOAM[m] has joined #ipfs
dliot[m] has joined #ipfs
genr8r[m] has joined #ipfs
fightentropy[m] has joined #ipfs
Jacob[m]1 has joined #ipfs
gvimrh[m] has joined #ipfs
futurenewsplz[m] has joined #ipfs
marcusdunlop[m] has joined #ipfs
chenlee1116[m] has joined #ipfs
ArthurNorthwode[ has joined #ipfs
mmy[m] has joined #ipfs
balhd[m] has joined #ipfs
cutie has joined #ipfs
M-GrimKriegor has joined #ipfs
M283750649[m] has joined #ipfs
cubemonkey[m] has joined #ipfs
Sabrina[m] has joined #ipfs
hexican[m] has joined #ipfs
null_radix[m] has joined #ipfs
johanherman[m] has joined #ipfs
fedor1113[m] has joined #ipfs
jjw[m] has joined #ipfs
flip[m] has joined #ipfs
GMason[m] has joined #ipfs
cyberwolf[m] has joined #ipfs
palkeo[m] has joined #ipfs
R1911[m] has joined #ipfs
zebburkeconte[m] has joined #ipfs
dkess[m] has joined #ipfs
walle303 has joined #ipfs
shabeeraly[m] has joined #ipfs
linux8bit[m] has joined #ipfs
shellkr[m] has joined #ipfs
mortn[m] has joined #ipfs
jpf137[m] has joined #ipfs
igel[m] has joined #ipfs
berot3[m] has joined #ipfs
tameeshb has joined #ipfs
Vitalii_Pandora[ has joined #ipfs
Bloo[m] has joined #ipfs
bumi[m] has joined #ipfs
ebarch has joined #ipfs
davidar has joined #ipfs
Marco[m] has joined #ipfs
sanjivrai[m] has joined #ipfs
TheWhisper[m] has joined #ipfs
hyde_stevenson[m has joined #ipfs
Jtremback[m] has joined #ipfs
Gryffins[m] has joined #ipfs
doronbehar[m] has joined #ipfs
notafile[m] has joined #ipfs
jaller94[m] has joined #ipfs
Guest198477[m] has joined #ipfs
axx_[m] has joined #ipfs
Guest60680 has joined #ipfs
alldigital[m] has joined #ipfs
xamino[m] has joined #ipfs
guest69[m] has joined #ipfs
renatocan[m] has joined #ipfs
stoneridge has joined #ipfs
VegBerg[m] has joined #ipfs
emir[m] has joined #ipfs
kewde[m] has joined #ipfs
frabcus[m] has joined #ipfs
Dawnbreaker[m] has joined #ipfs
rnkch[m] has joined #ipfs
Jacomo[m] has joined #ipfs
dreuter[m] has joined #ipfs
Riot_User_123[m] has joined #ipfs
gragotta68[m] has joined #ipfs
hl has joined #ipfs
itorres has joined #ipfs
silur[m] has joined #ipfs
caveboner[m] has joined #ipfs
hannes[m] has joined #ipfs
grensjo[m] has joined #ipfs
nine-h[m] has joined #ipfs
clunk-dike[m] has joined #ipfs
Remramm has joined #ipfs
aeaf123[m] has joined #ipfs
dwesima[m] has joined #ipfs
M-madsurgeon has joined #ipfs
KillaZA[m] has joined #ipfs
M-3630 has joined #ipfs
gylpm[m] has joined #ipfs
MadcapJake[m] has joined #ipfs
spoonless[m]1 has joined #ipfs
stebalien has joined #ipfs
kitten[m] has joined #ipfs
Kinch[m] has joined #ipfs
Jakob[m]2 has joined #ipfs
DrIzzel[m] has joined #ipfs
Cargo[m] has joined #ipfs
fiber[m] has joined #ipfs
Choyes[m] has joined #ipfs
remediface[m] has joined #ipfs
halle[m] has joined #ipfs
martinrusev[m] has joined #ipfs
Lin[m] has joined #ipfs
Andrew[m]1 has joined #ipfs
mike_new[m] has joined #ipfs
antonizoon has joined #ipfs
scheutsch[m] has joined #ipfs
solariiknight[m] has joined #ipfs
jugash[m] has joined #ipfs
Scio[m] has joined #ipfs
RichardCranium[m has joined #ipfs
dtz has joined #ipfs
Markus72[m] has joined #ipfs
nocent has joined #ipfs
daneroo[m] has joined #ipfs
Kythyria[m] has joined #ipfs
Symen[m]1 has joined #ipfs
M-Guillaume has joined #ipfs
tzuntzai[m] has joined #ipfs
M-amdtel has joined #ipfs
stevetbm[m] has joined #ipfs
Tyroie[m] has joined #ipfs
eluc[m] has joined #ipfs
henri_nourel[m] has joined #ipfs
plindner has joined #ipfs
nobot4[m] has joined #ipfs
MaxSan[m] has joined #ipfs
gravydigger[m] has joined #ipfs
JakobTigerstrm[m has joined #ipfs
litebit[m] has joined #ipfs
shepner[m] has joined #ipfs
chrono[m] has joined #ipfs
xuv[m] has joined #ipfs
stretch[m] has joined #ipfs
ekroon has joined #ipfs
pik[m] has joined #ipfs
M568656s[m] has joined #ipfs
peakj[m] has joined #ipfs
aronvanammers[m] has joined #ipfs
johngrimes[m] has joined #ipfs
maxlath[m] has joined #ipfs
snsnsbsb[m] has joined #ipfs
LaPingvino[m] has joined #ipfs
leoserra[m] has joined #ipfs
sevarat[m] has joined #ipfs
locusf has joined #ipfs
M-HirmeS has joined #ipfs
redsteakraw[m] has joined #ipfs
Geeky[m] has joined #ipfs
tidux[m] has joined #ipfs
Arthur[m] has joined #ipfs
carlbennetts[m] has joined #ipfs
pierce has joined #ipfs
gubbes[m] has joined #ipfs
kantengri[m] has joined #ipfs
kants[m] has joined #ipfs
klara[m] has joined #ipfs
kevindetry[m] has joined #ipfs
rovdyl[m] has joined #ipfs
kostya[m] has joined #ipfs
M-nated has joined #ipfs
Ineentho[m] has joined #ipfs
bitgulf[m] has joined #ipfs
lanshoot[m] has joined #ipfs
Walletor[m] has joined #ipfs
emunand[m] has joined #ipfs
halohaL[m] has joined #ipfs
matiasnomad[m] has joined #ipfs
liaowu[m] has joined #ipfs
Emilylovesleep[m has joined #ipfs
ash[m] has joined #ipfs
captainplanet[m] has joined #ipfs
homulilly[m] has joined #ipfs
omiselu[m] has joined #ipfs
TheLugal[m] has joined #ipfs
randy[m] has joined #ipfs
benjaminmateev[m has joined #ipfs
porcow[m] has joined #ipfs
omomom[m] has joined #ipfs
PoeBoy[m] has joined #ipfs
gomarashi[m] has joined #ipfs
rhizo[m] has joined #ipfs
screamerbeetle[m has joined #ipfs
reddraggone9[m] has joined #ipfs
at2500[m] has joined #ipfs
polytomous[m] has joined #ipfs
MatteoHirschstei has joined #ipfs
dani9[m] has joined #ipfs
obi[m] has joined #ipfs
roderik[m] has joined #ipfs
elmago[m] has joined #ipfs
M-brain has joined #ipfs
bustillo[m] has joined #ipfs
pat36 has joined #ipfs
upperdeck has quit [Ping timeout: 255 seconds]
upperdeck has joined #ipfs
upperdeck has quit [Ping timeout: 246 seconds]
upperdeck has joined #ipfs
appa has quit [Ping timeout: 240 seconds]
upperdeck has quit [Ping timeout: 264 seconds]
upperdeck has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
dhruvbaldawa has quit [Remote host closed the connection]
pat36 has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
dhruvbaldawa has joined #ipfs
pat36 has quit [Read error: Connection reset by peer]
pat36 has joined #ipfs
appa has joined #ipfs
dhruvbaldawa has quit [Ping timeout: 240 seconds]
upperdeck has quit [Ping timeout: 240 seconds]
silotis has quit [Read error: Connection reset by peer]
upperdeck has joined #ipfs
aw1n has quit [Remote host closed the connection]
aw1n has joined #ipfs
pat36 has quit []
silotis has joined #ipfs
AgenttiX has quit [Remote host closed the connection]
upperdeck has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
erictapen has joined #ipfs
upperdeck has joined #ipfs
upperdeck has quit [Ping timeout: 248 seconds]
atrapado_ has quit [Quit: Leaving]
upperdeck has joined #ipfs
<edsilv[m]>
we managed to get it working, but now trying to condense it all down into a shell script
<edsilv[m]>
we're on a digitalocean box. had to open port 5001: