00:03
melvster has joined #ipfs
00:07
dmx has left #ipfs ["WeeChat 0.4.3"]
00:11
jsgrant-_ has quit [Quit: Peace Peeps. o/ If you need me asap, message me at msg[at]jsgrant.io & I'll try to get back to you within 24 hours.]
00:18
tilgovi has quit [Remote host closed the connection]
00:18
jsgrant-_ has joined #ipfs
00:18
bwerthmann has quit [Ping timeout: 240 seconds]
00:20
tilgovi has joined #ipfs
00:20
hyperirc-dd1a46f has quit [Ping timeout: 256 seconds]
00:27
matoro has quit [Ping timeout: 268 seconds]
00:33
matoro has joined #ipfs
00:33
bwerthmann has joined #ipfs
00:35
bwerthmann has quit [Client Quit]
00:37
cemerick has joined #ipfs
00:56
bwerthmann has joined #ipfs
01:00
leeola has quit [Quit: Connection closed for inactivity]
01:01
Forkk has joined #ipfs
01:02
<
Forkk >
Is there a way I can construct a http url for an IPFS file with a specific filename
01:02
<
Forkk >
like, for example, if I have just an IPFS hash, but I want a user's browser to download the file with a specific name
01:03
<
Forkk >
I've tried setting the "download" attribute on my a tag, but chrome just ignores it :(
01:04
<
lgierth >
add it with ipfs add -w
01:05
<
lgierth >
it'll put the file in a wrapping object with a proper link
01:05
<
lgierth >
e.g. /ipfs/Qmfoo/file.txt
01:05
<
Forkk >
is there a way to do it where I can still derive the url from just the ipfs hash?
01:06
<
lgierth >
you can put nginx or so in front and have it set a Content-Disposition header
01:06
<
Forkk >
yeah I guess
01:07
<
Forkk >
then I have to set up an nginx server
01:07
<
lgierth >
why dou have only the hash though?
01:07
<
lgierth >
dou = do you
01:07
<
Forkk >
I just don't want to add more fields to my json files than necessary
01:08
<
lgierth >
and one field is the hash? maybe better to make that field the full path
01:08
<
Forkk >
isn't the hash the full path?
01:08
<
lgierth >
/ipfs/Qmfoo/file.txt is a full path
01:08
<
lgierth >
the hash is just the hash
01:09
<
lgierth >
which is fine if you just "want to fetch data"
01:09
matoro has quit [Ping timeout: 246 seconds]
01:09
<
lgierth >
but it sounds like you're dealing with filenames, which are a filesystem thing, and that's what the full path gives you :)
01:09
<
Forkk >
well there's another field in the json with the filename
01:10
<
Forkk >
but there's also another field with a sha256 hash
01:10
<
Forkk >
it's just not encoded like an ipfs hash
01:10
<
lgierth >
i see, the sha256 hash of exactly that file
01:11
<
lgierth >
if you wanna do the filename functionality only through ipfs, it's best to build this wrapping directory object which points to all the files by name
01:11
<
Forkk >
but I don't
01:11
<
Forkk >
I want the json file to specify the filename
01:11
matoro has joined #ipfs
01:11
apiarian has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
01:12
<
lgierth >
yeah so the other option is doing it at read time (= nginx)
01:12
<
Forkk >
well I have a webapp on heroku
01:12
<
Forkk >
I could just do it through that lol
01:12
<
lgierth >
ipfs has no idea what the filename is because it knows only what exists as ipfs objects, so something else has to do this hash=>file mapping
01:12
<
lgierth >
yeah or that
01:12
<
Forkk >
I think it has like a 2TB bandwidth cap
01:13
tidux has left #ipfs ["WeeChat 1.5"]
01:13
<
lgierth >
just saying, if you're already adding that data to ipfs anyhow, why not add it wrapped in a directory ;) you don't actually need to have this directory on disk while adding, you can construct it from just hashes and filenames, using `ipfs object patch add-link`
01:14
<
lgierth >
you start with an empty directory hash, add the filenames and hashes one by one, then get a resulting hash an access everything as /ipfs/Qmdirectory/filename
01:14
<
Forkk >
I could just do one directory per file too
01:14
<
lgierth >
yeah that too
01:15
<
Forkk >
in case there are name collisions
01:15
<
lgierth >
good call
01:15
<
lgierth >
instead of ipfs add file.txt it's ipfs add -w file.txt, and the hash is just as good an authentication of the data as a hash of just the file itself
01:15
<
Forkk >
also how do I control which files are and aren't being hosted from my node?
01:16
<
lgierth >
right now you can only control it by controlling 1) what you add to your node, and 2) what you have your node fetch from the network
01:17
<
Forkk >
so is there a way I can make it stop hosting a file?
01:17
<
lgierth >
and you can run `ipfs repo gc` to remove everything that's not pinned (which is usually stuff you just fetch from the network -- things you add are pinned by default)
01:17
<
lgierth >
if it's something you added, you can run ipfs pin rm $hash, and run GC
01:22
cemerick has quit [Ping timeout: 256 seconds]
01:23
warner has quit [Read error: Connection reset by peer]
01:23
warner has joined #ipfs
01:25
ylp has quit [Ping timeout: 240 seconds]
01:25
WindPower has quit [Ping timeout: 240 seconds]
01:25
jsgrant-_ has quit [Read error: Connection reset by peer]
01:25
ffmad_ has quit [Ping timeout: 240 seconds]
01:25
emschwartz has quit [Ping timeout: 240 seconds]
01:25
jsgrant-_ has joined #ipfs
01:25
bbielsa has quit [Ping timeout: 240 seconds]
01:25
ehd has quit [Ping timeout: 240 seconds]
01:26
bmpvieira has quit [Ping timeout: 240 seconds]
01:27
bbielsa has joined #ipfs
01:27
pjz has quit [Ping timeout: 240 seconds]
01:27
emschwartz has joined #ipfs
01:27
ehd has joined #ipfs
01:27
bmpvieira has joined #ipfs
01:27
ffmad_ has joined #ipfs
01:28
pjz has joined #ipfs
01:30
WindPower has joined #ipfs
01:32
amdi_ has joined #ipfs
01:36
ylp has joined #ipfs
01:39
PrinceOfPeeves has quit [Quit: Leaving]
01:51
cemerick has joined #ipfs
01:55
<
SchrodingersScat >
21:54:57.224 ERROR flatfs: too many open files, retrying in 200ms flatfs.go:180
01:58
cemerick has quit [Ping timeout: 256 seconds]
01:58
cemerick has joined #ipfs
02:03
dimitarvp has quit [Quit: Bye]
02:03
spacebar_ has quit [Ping timeout: 246 seconds]
02:04
<
lgierth >
will be fixed in 0.4.8 next week
02:07
<
SchrodingersScat >
it was a rhetorical error
02:19
jsgrant has joined #ipfs
02:19
amdi_ has quit [Quit: Leaving]
02:20
amdi_ has joined #ipfs
02:48
pawn has joined #ipfs
02:48
<
pawn >
Is filecoin something completely separate from IPFS?
02:48
<
lgierth >
it uses ipfs
02:52
amdi_ has quit [Quit: Leaving]
02:53
ljhms has quit [Ping timeout: 264 seconds]
02:59
mguentner2 has quit [Quit: WeeChat 1.7]
03:02
MrControll has quit [Quit: Leaving]
03:02
<
pawn >
Where can I download the Filecoin client?
03:04
mguentner has joined #ipfs
03:07
pawn has quit [Remote host closed the connection]
03:14
<
SchrodingersScat >
lgierth: and this will let me rent out diskspace to make money? basically a competitor for google or dropbox?
03:28
ljhms has joined #ipfs
03:41
arkimedes has quit [Read error: Connection reset by peer]
03:44
mguentner2 has joined #ipfs
03:46
IRCFrEAK has joined #ipfs
03:47
mguentner has quit [Ping timeout: 260 seconds]
03:48
IRCFrEAK has left #ipfs [#ipfs]
03:50
jkilpatr has quit [Ping timeout: 246 seconds]
03:51
tperson has quit [Ping timeout: 240 seconds]
03:51
alanz has quit [Ping timeout: 240 seconds]
03:52
xrogaan has quit [Ping timeout: 240 seconds]
03:53
tperson has joined #ipfs
03:53
xrogaan has joined #ipfs
03:56
alanz has joined #ipfs
03:59
matoro has quit [Ping timeout: 240 seconds]
04:01
matoro has joined #ipfs
04:07
gmcabrita has quit [Quit: Connection closed for inactivity]
04:16
reit has quit [Ping timeout: 264 seconds]
04:21
palkeo has joined #ipfs
04:21
palkeo has joined #ipfs
04:21
palkeo has quit [Changing host]
04:29
reit has joined #ipfs
04:30
espadrine has joined #ipfs
04:40
tmg has quit [Ping timeout: 258 seconds]
04:51
spacebar_ has joined #ipfs
04:59
JayCarpenter has quit [Quit: Page closed]
05:05
mildred has quit [Ping timeout: 260 seconds]
05:17
spacebar_ has quit [Quit: spacebar_ pressed ESC]
05:29
ygrek has joined #ipfs
05:31
spacebar_ has joined #ipfs
05:41
ygrek_ has joined #ipfs
05:44
ygrek has quit [Ping timeout: 246 seconds]
05:52
spacebar_ has quit [Quit: spacebar_ pressed ESC]
06:05
eater has quit [Ping timeout: 268 seconds]
06:08
eater has joined #ipfs
06:12
palkeo has quit [Ping timeout: 246 seconds]
06:14
tmg has joined #ipfs
06:17
hyperirc-dd1a46f has joined #ipfs
06:42
inetic has joined #ipfs
06:45
warner has quit [Read error: Connection reset by peer]
06:46
mildred4 has joined #ipfs
06:46
warner has joined #ipfs
06:47
wookiehangover has quit [Ping timeout: 260 seconds]
06:49
wookiehangover has joined #ipfs
06:51
reit has quit [Quit: Leaving]
06:54
thomersch has joined #ipfs
07:00
cemerick has quit [Ping timeout: 256 seconds]
07:01
ulrichard has joined #ipfs
07:01
hyperirc-dd1a46f has quit [Ping timeout: 240 seconds]
07:02
melvster has quit [Ping timeout: 240 seconds]
07:04
tmg has quit [Ping timeout: 240 seconds]
07:13
athan has quit [Ping timeout: 240 seconds]
07:15
athan has joined #ipfs
07:16
espadrine_ has joined #ipfs
07:22
cxl000 has joined #ipfs
07:24
deetwelve has quit [Ping timeout: 240 seconds]
07:25
jsgrant-_ has quit [Remote host closed the connection]
07:25
jsgrant has quit [Remote host closed the connection]
07:26
jsgrant-_ has joined #ipfs
07:26
jsgrant has joined #ipfs
07:28
deetwelve has joined #ipfs
07:36
cwahlers has joined #ipfs
07:44
ylp1 has joined #ipfs
07:46
Caterpillar has joined #ipfs
07:47
s_kunk has quit [Ping timeout: 240 seconds]
07:47
sirdancealot has joined #ipfs
07:56
robattila256 has quit [Ping timeout: 264 seconds]
07:59
tmg has joined #ipfs
08:04
espadrine_ has quit [Ping timeout: 240 seconds]
08:08
tmg has quit [Ping timeout: 246 seconds]
08:08
cwahlers has joined #ipfs
08:18
gmcabrita has joined #ipfs
08:19
tmg has joined #ipfs
08:23
tmg has quit [Ping timeout: 240 seconds]
08:29
sirdancealot has quit [Ping timeout: 240 seconds]
08:34
azahi has joined #ipfs
08:35
s_kunk has joined #ipfs
08:36
reit has joined #ipfs
09:00
tilgovi has quit [Ping timeout: 246 seconds]
09:19
sirdancealot has joined #ipfs
09:31
rcat has joined #ipfs
09:37
maxlath has joined #ipfs
09:41
sirdancealot has quit [Ping timeout: 240 seconds]
09:42
hoenir has joined #ipfs
10:04
unlmtd[m] has quit [Remote host closed the connection]
10:04
stoneridge has quit [Remote host closed the connection]
10:04
M-alien has quit [Remote host closed the connection]
10:04
M-jimt has quit [Remote host closed the connection]
10:04
Guest177417[m] has quit [Remote host closed the connection]
10:04
thekyriarchy has quit [Remote host closed the connection]
10:04
Remramm has quit [Remote host closed the connection]
10:04
max_power[m] has quit [Remote host closed the connection]
10:04
Quiark_ has quit [Remote host closed the connection]
10:04
EuAndreh[m] has quit [Remote host closed the connection]
10:04
rschulman has quit [Remote host closed the connection]
10:04
fabrixxm has quit [Remote host closed the connection]
10:04
iwxzr[m] has quit [Remote host closed the connection]
10:04
masoodahm[m] has quit [Remote host closed the connection]
10:04
esbjorn[m] has quit [Remote host closed the connection]
10:04
Guest157993[m] has quit [Remote host closed the connection]
10:04
thejohnhenry[m] has quit [Remote host closed the connection]
10:04
wjh[m] has quit [Remote host closed the connection]
10:04
garblur83[m] has quit [Remote host closed the connection]
10:04
Olivier[matrix] has quit [Remote host closed the connection]
10:04
Lucas[m] has quit [Remote host closed the connection]
10:04
Kobberholm[m] has quit [Remote host closed the connection]
10:04
cptaffe has quit [Read error: Connection reset by peer]
10:04
M-kalmi has quit [Read error: Connection reset by peer]
10:04
Guest172466[m] has quit [Read error: Connection reset by peer]
10:04
rdesfo[m] has quit [Read error: Connection reset by peer]
10:04
M-anomie has quit [Remote host closed the connection]
10:04
M-hash has quit [Remote host closed the connection]
10:04
grouchofractal2[ has quit [Remote host closed the connection]
10:04
Guest189820[m] has quit [Read error: Connection reset by peer]
10:04
yuh96bbn[m] has quit [Read error: Connection reset by peer]
10:04
chpio[m] has quit [Read error: Connection reset by peer]
10:04
Guest178670[m] has quit [Remote host closed the connection]
10:04
M-TidyKoala has quit [Remote host closed the connection]
10:04
hiq[m] has quit [Read error: Connection reset by peer]
10:04
travisr has quit [Read error: Connection reset by peer]
10:04
BeautifulBash[m] has quit [Remote host closed the connection]
10:04
Prussian_peyote[ has quit [Remote host closed the connection]
10:04
seedbox[m] has quit [Remote host closed the connection]
10:04
Guest149624[m] has quit [Remote host closed the connection]
10:04
Guest174215[m] has quit [Remote host closed the connection]
10:04
M-Dave has quit [Read error: Connection reset by peer]
10:04
jeremycahill[m] has quit [Read error: Connection reset by peer]
10:04
Rad[m] has quit [Read error: Connection reset by peer]
10:04
Guest180345[m] has quit [Read error: Connection reset by peer]
10:04
Guest176961[m] has quit [Write error: Connection reset by peer]
10:04
xloem1 has quit [Write error: Connection reset by peer]
10:04
zandy[m] has quit [Write error: Connection reset by peer]
10:04
palkeo[m] has quit [Write error: Connection reset by peer]
10:04
tkorrison[m] has quit [Write error: Connection reset by peer]
10:04
mojarra[m] has quit [Write error: Connection reset by peer]
10:04
Guest154554[m] has quit [Write error: Connection reset by peer]
10:04
Guest167336[m] has quit [Write error: Connection reset by peer]
10:04
Guest186849[m] has quit [Write error: Connection reset by peer]
10:04
bart80[m] has quit [Write error: Connection reset by peer]
10:04
cornu[m] has quit [Remote host closed the connection]
10:04
Buli[m] has quit [Remote host closed the connection]
10:04
ph12[m] has quit [Remote host closed the connection]
10:04
Zedwick[m] has quit [Remote host closed the connection]
10:04
network[m] has quit [Remote host closed the connection]
10:04
glnro[m] has quit [Remote host closed the connection]
10:04
M-jfred has quit [Remote host closed the connection]
10:04
Guest182011[m] has quit [Remote host closed the connection]
10:04
hippopete[m] has quit [Remote host closed the connection]
10:04
jon[m]1 has quit [Read error: Connection reset by peer]
10:04
Paul[m] has quit [Read error: Connection reset by peer]
10:04
Guest144612[m] has quit [Read error: Connection reset by peer]
10:04
urhuruhurh[m] has quit [Read error: Connection reset by peer]
10:04
kRo[m] has quit [Read error: Connection reset by peer]
10:04
endes[m] has quit [Read error: Connection reset by peer]
10:04
astronavt[m] has quit [Read error: Connection reset by peer]
10:04
Guest144866[m] has quit [Read error: Connection reset by peer]
10:04
Guest156348[m] has quit [Write error: Connection reset by peer]
10:04
am2on has quit [Read error: Connection reset by peer]
10:04
herzmeister[m] has quit [Read error: Connection reset by peer]
10:04
dtz has quit [Read error: Connection reset by peer]
10:04
dyce[m] has quit [Remote host closed the connection]
10:04
fr33[m] has quit [Remote host closed the connection]
10:04
asyncsrc[m] has quit [Remote host closed the connection]
10:04
rpdillon[m] has quit [Remote host closed the connection]
10:04
M-javissimo has quit [Remote host closed the connection]
10:04
zbxdhskosoww[m] has quit [Remote host closed the connection]
10:04
Scio[m] has quit [Read error: Connection reset by peer]
10:04
Famicoman[m] has quit [Read error: Connection reset by peer]
10:04
kegan[m] has quit [Read error: Connection reset by peer]
10:04
jfred[m] has quit [Read error: Connection reset by peer]
10:04
RaymondFoley[m] has quit [Read error: Connection reset by peer]
10:04
Guest148729[m] has quit [Read error: Connection reset by peer]
10:04
krig[m] has quit [Read error: Connection reset by peer]
10:04
MrAxilus[m] has quit [Read error: Connection reset by peer]
10:04
joshb[m] has quit [Read error: Connection reset by peer]
10:04
adrianovalle[m] has quit [Read error: Connection reset by peer]
10:04
Guest185910[m] has quit [Read error: Connection reset by peer]
10:04
interfect[m] has quit [Read error: Connection reset by peer]
10:04
kewde[m] has quit [Read error: Connection reset by peer]
10:04
Neurolit[m] has quit [Read error: Connection reset by peer]
10:04
agumonkey[m]1 has quit [Read error: Connection reset by peer]
10:04
plindner has quit [Read error: Connection reset by peer]
10:04
jord[m] has quit [Write error: Connection reset by peer]
10:04
sudoreboot[m] has quit [Read error: Connection reset by peer]
10:04
moellus[m] has quit [Write error: Connection reset by peer]
10:04
RomainLeCarrer[m has quit [Write error: Connection reset by peer]
10:04
Guest163413[m]1 has quit [Remote host closed the connection]
10:04
xldrkp[m] has quit [Remote host closed the connection]
10:04
Edur[m] has quit [Read error: Connection reset by peer]
10:04
M107262[m] has quit [Read error: Connection reset by peer]
10:04
Guest183312[m] has quit [Read error: Connection reset by peer]
10:04
Guest164949[m] has quit [Read error: Connection reset by peer]
10:04
bethan[m] has quit [Remote host closed the connection]
10:04
M-brain has quit [Remote host closed the connection]
10:04
fcro[m] has quit [Remote host closed the connection]
10:04
hans[m] has quit [Read error: Connection reset by peer]
10:04
steindekker[m] has quit [Read error: Connection reset by peer]
10:04
gabyshu[m] has quit [Read error: Connection reset by peer]
10:04
Polychrome[m] has quit [Read error: Connection reset by peer]
10:04
fiatjaf[m] has quit [Remote host closed the connection]
10:04
M-frobel has quit [Remote host closed the connection]
10:04
Drew[m] has quit [Remote host closed the connection]
10:04
Guest159402[m] has quit [Remote host closed the connection]
10:04
Seby[m] has quit [Remote host closed the connection]
10:04
artemist[m] has quit [Remote host closed the connection]
10:04
Guest156247[m] has quit [Remote host closed the connection]
10:04
jsyn[m] has quit [Remote host closed the connection]
10:04
bgrayburn[m] has quit [Write error: Connection reset by peer]
10:04
Nekit[m] has quit [Remote host closed the connection]
10:04
Tortulez[m] has quit [Remote host closed the connection]
10:04
somatronicon[m] has quit [Write error: Connection reset by peer]
10:04
thirdcentury[m]1 has quit [Write error: Connection reset by peer]
10:04
xuv[m] has quit [Write error: Connection reset by peer]
10:04
jpereira[m] has quit [Write error: Connection reset by peer]
10:04
Guest20685[m] has quit [Write error: Connection reset by peer]
10:04
synth[m]1 has quit [Write error: Connection reset by peer]
10:04
ttk2[m] has quit [Write error: Connection reset by peer]
10:04
afdudley[m]1 has quit [Write error: Connection reset by peer]
10:04
xamino[m] has quit [Write error: Connection reset by peer]
10:04
M-mubot has quit [Write error: Connection reset by peer]
10:04
alx[m] has quit [Write error: Connection reset by peer]
10:04
stanko[m] has quit [Write error: Connection reset by peer]
10:04
sk23[m] has quit [Write error: Connection reset by peer]
10:04
mirek1337[m]1 has quit [Remote host closed the connection]
10:04
ivegotasthma[m] has quit [Write error: Connection reset by peer]
10:04
Zbyszek[m] has quit [Write error: Connection reset by peer]
10:04
tidux[m] has quit [Write error: Connection reset by peer]
10:04
sabba[m] has quit [Write error: Connection reset by peer]
10:04
Aidan[m] has quit [Write error: Connection reset by peer]
10:04
cdetrio[m] has quit [Remote host closed the connection]
10:04
steven[m] has quit [Remote host closed the connection]
10:04
Chuck[m] has quit [Remote host closed the connection]
10:04
H3ndr1k[m] has quit [Read error: Connection reset by peer]
10:04
M-BostonEnginerd has quit [Read error: Connection reset by peer]
10:04
ekroon has quit [Read error: Connection reset by peer]
10:04
Guest159893[m] has quit [Read error: Connection reset by peer]
10:04
citizenerased[m] has quit [Read error: Connection reset by peer]
10:04
cbHXBY1D[m] has quit [Read error: Connection reset by peer]
10:04
neurochemical[m] has quit [Read error: Connection reset by peer]
10:04
Guest155377[m] has quit [Read error: Connection reset by peer]
10:04
Guest187693[m] has quit [Read error: Connection reset by peer]
10:04
Guest161720[m] has quit [Read error: Connection reset by peer]
10:04
hansnust[m] has quit [Read error: Connection reset by peer]
10:04
dawnbreez[m] has quit [Read error: Connection reset by peer]
10:04
Guest153546[m] has quit [Read error: Connection reset by peer]
10:04
silwol has quit [Read error: Connection reset by peer]
10:04
M-HirmeS has quit [Read error: Connection reset by peer]
10:04
ZerataX[m] has quit [Read error: Connection reset by peer]
10:04
chao[m] has quit [Read error: Connection reset by peer]
10:04
vd[m] has quit [Read error: Connection reset by peer]
10:04
Visevius[m] has quit [Read error: Connection reset by peer]
10:04
nocylah has quit [Remote host closed the connection]
10:04
Guest186383[m] has quit [Remote host closed the connection]
10:04
chrono[m] has quit [Read error: Connection reset by peer]
10:04
tree[m] has quit [Read error: Connection reset by peer]
10:04
M-iav has quit [Read error: Connection reset by peer]
10:04
Guest178412[m] has quit [Read error: Connection reset by peer]
10:04
irx[m] has quit [Write error: Connection reset by peer]
10:04
notafile[m] has quit [Write error: Connection reset by peer]
10:04
davidar_ has quit [Write error: Connection reset by peer]
10:04
onlnr has quit [Write error: Connection reset by peer]
10:04
gmanrwp[m] has quit [Write error: Connection reset by peer]
10:04
qolop[m] has quit [Write error: Connection reset by peer]
10:04
neurocis[m] has quit [Write error: Connection reset by peer]
10:04
NathanBraswell[m has quit [Write error: Connection reset by peer]
10:04
datenpunk[m] has quit [Write error: Connection reset by peer]
10:04
garrettr[m] has quit [Write error: Connection reset by peer]
10:04
M-3630 has quit [Remote host closed the connection]
10:04
remmy[m] has quit [Read error: Connection reset by peer]
10:04
Guest154416[m] has quit [Read error: Connection reset by peer]
10:04
M-liberdiko has quit [Read error: Connection reset by peer]
10:04
Guest176690[m] has quit [Remote host closed the connection]
10:04
sushipantsu[m] has quit [Remote host closed the connection]
10:04
COREILLY[m] has quit [Read error: Connection reset by peer]
10:04
Kalq[m] has quit [Read error: Connection reset by peer]
10:04
kythyria[m] has quit [Read error: Connection reset by peer]
10:04
Guest177719[m] has quit [Remote host closed the connection]
10:04
sickill[m] has quit [Remote host closed the connection]
10:04
Guest185556[m] has quit [Remote host closed the connection]
10:04
djokeefe[m] has quit [Write error: Connection reset by peer]
10:04
stardot[m] has quit [Write error: Connection reset by peer]
10:04
fredrikj[m] has quit [Read error: Connection reset by peer]
10:04
DokterBob has quit [Remote host closed the connection]
10:04
dietrich[m] has quit [Remote host closed the connection]
10:04
jose12[m] has quit [Remote host closed the connection]
10:04
Guest157166[m] has quit [Read error: Connection reset by peer]
10:04
Guest173654[m] has quit [Read error: Connection reset by peer]
10:04
Guest156174[m] has quit [Read error: Connection reset by peer]
10:04
kpcyrd[m] has quit [Read error: Connection reset by peer]
10:04
Jean-PierreLauri has quit [Read error: Connection reset by peer]
10:04
Guest190290[m] has quit [Read error: Connection reset by peer]
10:04
x1402[m] has quit [Read error: Connection reset by peer]
10:04
mikkaworkscom[m] has quit [Read error: Connection reset by peer]
10:04
M-krsiehl has quit [Write error: Connection reset by peer]
10:04
t0dd[m] has quit [Write error: Connection reset by peer]
10:04
Guest182243[m]1 has quit [Read error: Connection reset by peer]
10:04
musoke[m] has quit [Read error: Connection reset by peer]
10:04
jimtendo[m] has quit [Remote host closed the connection]
10:04
Guest158700[m] has quit [Remote host closed the connection]
10:04
troy[m] has quit [Remote host closed the connection]
10:04
Leer10[m] has quit [Read error: Connection reset by peer]
10:04
gentam[m] has quit [Read error: Connection reset by peer]
10:04
minibar[m] has quit [Read error: Connection reset by peer]
10:04
tk[m] has quit [Read error: Connection reset by peer]
10:04
BanJo[m] has quit [Remote host closed the connection]
10:04
lugarius has quit [Write error: Connection reset by peer]
10:04
djhaskin987[m] has quit [Write error: Connection reset by peer]
10:04
erikj` has quit [Read error: Connection reset by peer]
10:04
patrickr[m] has quit [Read error: Connection reset by peer]
10:04
wew[m] has quit [Read error: Connection reset by peer]
10:04
gwillen[m] has quit [Remote host closed the connection]
10:04
N80[m] has quit [Remote host closed the connection]
10:04
TheGreatNi[m]1 has quit [Read error: Connection reset by peer]
10:04
Guest154943[m] has quit [Read error: Connection reset by peer]
10:04
jhulten[m] has quit [Write error: Connection reset by peer]
10:04
pep0ni[m] has quit [Write error: Connection reset by peer]
10:04
because[m] has quit [Read error: Connection reset by peer]
10:04
Guest151173[m] has quit [Read error: Connection reset by peer]
10:04
Guest147163[m] has quit [Remote host closed the connection]
10:04
derina[m] has quit [Read error: Connection reset by peer]
10:04
hannes[m] has quit [Remote host closed the connection]
10:04
cryptix has quit [Remote host closed the connection]
10:04
harlock[m] has quit [Remote host closed the connection]
10:04
ztl8702[m] has quit [Remote host closed the connection]
10:04
stevenleeg[m] has quit [Remote host closed the connection]
10:04
Guest94493[m] has quit [Remote host closed the connection]
10:04
brettrick[m] has quit [Read error: Connection reset by peer]
10:04
M-gdr has quit [Read error: Connection reset by peer]
10:04
maxlath[m] has quit [Read error: Connection reset by peer]
10:04
basilgohar[m] has quit [Read error: Connection reset by peer]
10:04
notorioushanz[m] has quit [Read error: Connection reset by peer]
10:04
M-ms has quit [Read error: Connection reset by peer]
10:04
leinlawun[m] has quit [Read error: Connection reset by peer]
10:04
Hongar[m] has quit [Read error: Connection reset by peer]
10:04
Guest152989[m] has quit [Read error: Connection reset by peer]
10:04
litebit[m] has quit [Read error: Connection reset by peer]
10:04
Guest125071[m] has quit [Read error: Connection reset by peer]
10:04
vpham24[m] has quit [Read error: Connection reset by peer]
10:04
Guest146683[m] has quit [Remote host closed the connection]
10:04
xylofonic[m] has quit [Remote host closed the connection]
10:04
Guest136220[m] has quit [Read error: Connection reset by peer]
10:04
wking[m] has quit [Remote host closed the connection]
10:04
BreatheTech[m] has quit [Write error: Connection reset by peer]
10:04
stretch[m] has quit [Write error: Connection reset by peer]
10:04
timthelion[m] has quit [Write error: Connection reset by peer]
10:04
Simon[m]1 has quit [Write error: Connection reset by peer]
10:04
kfrooney[m] has quit [Write error: Connection reset by peer]
10:04
saintaquinas[m] has quit [Write error: Connection reset by peer]
10:04
Guest172436[m] has quit [Remote host closed the connection]
10:04
drakaro[m] has quit [Read error: Connection reset by peer]
10:04
frabcus[m] has quit [Read error: Connection reset by peer]
10:04
M386dxturbo[m] has quit [Read error: Connection reset by peer]
10:04
syncing[m] has quit [Read error: Connection reset by peer]
10:04
steefmin[m] has quit [Read error: Connection reset by peer]
10:04
M-martinklepsch has quit [Remote host closed the connection]
10:04
Bloo[m] has quit [Remote host closed the connection]
10:04
dhole[m] has quit [Write error: Connection reset by peer]
10:04
grensjo[m] has quit [Remote host closed the connection]
10:04
Adam[m] has quit [Write error: Connection reset by peer]
10:04
Silke^ has quit [Read error: Connection reset by peer]
10:04
charlienyc[m] has quit [Read error: Connection reset by peer]
10:04
albuic has quit [Read error: Connection reset by peer]
10:04
shellkr[m] has quit [Read error: Connection reset by peer]
10:04
M-sol56 has quit [Read error: Connection reset by peer]
10:04
frabrunelle1 has quit [Read error: Connection reset by peer]
10:04
Guest182150[m] has quit [Read error: Connection reset by peer]
10:04
WiredDude[m] has quit [Read error: Connection reset by peer]
10:04
digitaleirkir[m] has quit [Read error: Connection reset by peer]
10:04
cyberpepe[m] has quit [Read error: Connection reset by peer]
10:04
caught_in_the_ma has quit [Read error: Connection reset by peer]
10:04
musicmatze[m] has quit [Read error: Connection reset by peer]
10:04
prime1101[m] has quit [Read error: Connection reset by peer]
10:04
hexkey[m] has quit [Remote host closed the connection]
10:04
sam[m] has quit [Read error: Connection reset by peer]
10:04
Markus72[m] has quit [Read error: Connection reset by peer]
10:04
MajorScale[m] has quit [Read error: Connection reset by peer]
10:04
M-arx has quit [Write error: Connection reset by peer]
10:04
madduck[m] has quit [Write error: Connection reset by peer]
10:04
M-wldhx has quit [Write error: Connection reset by peer]
10:04
bb010g has quit [Write error: Connection reset by peer]
10:04
M-Amandine has quit [Write error: Connection reset by peer]
10:04
n0x65B[m] has quit [Write error: Connection reset by peer]
10:04
Guest180558[m] has quit [Write error: Connection reset by peer]
10:04
davidar has quit [Write error: Connection reset by peer]
10:04
exyi[m] has quit [Write error: Connection reset by peer]
10:04
jayaura has quit [Write error: Connection reset by peer]
10:04
beauner[m] has quit [Write error: Connection reset by peer]
10:04
stormbuster[m] has quit [Write error: Connection reset by peer]
10:04
Guest139286[m] has quit [Write error: Connection reset by peer]
10:04
WinterFox[m] has quit [Write error: Connection reset by peer]
10:04
edsilv[m] has quit [Write error: Connection reset by peer]
10:04
Guest156168[m] has quit [Remote host closed the connection]
10:04
bumi[m] has quit [Read error: Connection reset by peer]
10:04
luisbg[m] has quit [Read error: Connection reset by peer]
10:04
Guest170096[m] has quit [Read error: Connection reset by peer]
10:04
mith[m] has quit [Read error: Connection reset by peer]
10:04
null_radix[m] has quit [Read error: Connection reset by peer]
10:04
M-Angel[m] has quit [Write error: Connection reset by peer]
10:04
torarne has quit [Write error: Connection reset by peer]
10:04
wakest has quit [Read error: Connection reset by peer]
10:04
Guest164288[m] has quit [Read error: Connection reset by peer]
10:04
Emacsen[m] has quit [Write error: Connection reset by peer]
10:04
Guest139267[m] has quit [Write error: Connection reset by peer]
10:04
kharybdis[m] has quit [Write error: Connection reset by peer]
10:04
HawkeyeTenderwol has quit [Write error: Connection reset by peer]
10:04
M-oddvar has quit [Write error: Connection reset by peer]
10:04
atenorio[m]1 has quit [Remote host closed the connection]
10:04
Crest[m] has quit [Remote host closed the connection]
10:04
igel[m] has quit [Read error: Connection reset by peer]
10:04
m3tti[m] has quit [Read error: Connection reset by peer]
10:04
DavidAmorn[m] has quit [Read error: Connection reset by peer]
10:04
petal[m] has quit [Read error: Connection reset by peer]
10:04
Hansf[m] has quit [Remote host closed the connection]
10:04
Prometheu5[m] has quit [Read error: Connection reset by peer]
10:04
Powersource has quit [Write error: Connection reset by peer]
10:04
orsys[m] has quit [Write error: Connection reset by peer]
10:04
AntoineM[m] has quit [Remote host closed the connection]
10:04
panicbit-M has quit [Write error: Broken pipe]
10:04
firemound[m] has quit [Read error: Connection reset by peer]
10:04
Guest149259[m] has quit [Read error: Connection reset by peer]
10:04
xtarget[m] has quit [Write error: Connection reset by peer]
10:04
fhs[m] has quit [Read error: Connection reset by peer]
10:04
parmenides has quit [Write error: Connection reset by peer]
10:04
guest6977[m] has quit [Read error: Connection reset by peer]
10:04
keks[m] has quit [Read error: Connection reset by peer]
10:04
Guest150078[m] has quit [Read error: Connection reset by peer]
10:04
Guest153399[m] has quit [Read error: Connection reset by peer]
10:04
Kinch[m] has quit [Read error: Connection reset by peer]
10:04
M-sraja has quit [Write error: Connection reset by peer]
10:04
jbbr[m] has quit [Write error: Connection reset by peer]
10:04
toodlepop[m] has quit [Write error: Connection reset by peer]
10:04
fil_redpill has quit [Write error: Connection reset by peer]
10:04
flacks[m] has quit [Write error: Connection reset by peer]
10:04
magog[m] has quit [Write error: Connection reset by peer]
10:04
Guest157354[m] has quit [Read error: Connection reset by peer]
10:04
filispim[m] has quit [Read error: Connection reset by peer]
10:04
adn[m] has quit [Write error: Connection reset by peer]
10:04
Guest186054[m] has quit [Write error: Connection reset by peer]
10:04
nuxlli[m] has quit [Write error: Connection reset by peer]
10:04
mythmon-1 has quit [Remote host closed the connection]
10:04
RasmusErik[m] has quit [Remote host closed the connection]
10:04
pool[m] has quit [Remote host closed the connection]
10:04
Matthew[m] has quit [Read error: Connection reset by peer]
10:04
phil-flexhk[m] has quit [Read error: Connection reset by peer]
10:04
M-slang has quit [Read error: Connection reset by peer]
10:04
ekaforce[m] has quit [Write error: Connection reset by peer]
10:04
nando[m] has quit [Write error: Connection reset by peer]
10:04
Guest146508[m] has quit [Write error: Connection reset by peer]
10:04
gsf[m] has quit [Write error: Connection reset by peer]
10:04
mingchan88[m] has quit [Write error: Connection reset by peer]
10:04
Guest162792[m] has quit [Write error: Connection reset by peer]
10:04
manolis[m] has quit [Write error: Connection reset by peer]
10:04
absdog18[m] has quit [Write error: Connection reset by peer]
10:04
M-neoteo has quit [Write error: Connection reset by peer]
10:04
robguthrie[m] has quit [Write error: Connection reset by peer]
10:04
Guest188462[m] has quit [Read error: Connection reset by peer]
10:04
Guest175579[m] has quit [Write error: Connection reset by peer]
10:04
Guest157741[m] has quit [Read error: Connection reset by peer]
10:04
nick2000 has quit [Read error: Connection reset by peer]
10:04
funspectre[m] has quit [Read error: Connection reset by peer]
10:04
Guest154195[m] has quit [Read error: Connection reset by peer]
10:04
allen369[m] has quit [Read error: Connection reset by peer]
10:04
gendale[m] has quit [Read error: Connection reset by peer]
10:04
hjoest[m] has quit [Read error: Connection reset by peer]
10:04
Guest163234[m] has quit [Read error: Connection reset by peer]
10:04
nop[m] has quit [Read error: Connection reset by peer]
10:04
edou[m] has quit [Read error: Connection reset by peer]
10:04
krigare[m] has quit [Read error: Connection reset by peer]
10:11
cwahlers_ has joined #ipfs
10:11
cwahlers has quit [Ping timeout: 260 seconds]
10:16
xtarget[m] has joined #ipfs
10:20
tmg has joined #ipfs
10:20
Kegsay has joined #ipfs
10:21
melvster has joined #ipfs
10:22
<
hsanjuan >
!pin QmfLqYeMYKwcQdgwVHNy9RRoJNvDvAaFJ2RMmYwQLGdJYh dist-cluster-0.0.11
10:22
<
pinbot >
now pinning on 8 nodes
10:27
SeeSee[m] has joined #ipfs
10:47
sirdancealot has joined #ipfs
11:00
jkilpatr has joined #ipfs
11:02
wak-work has quit [Ping timeout: 246 seconds]
11:05
ygrek_ has quit [Ping timeout: 268 seconds]
11:08
hoenir has left #ipfs ["Leaving"]
11:09
rendar has joined #ipfs
11:10
arpl has joined #ipfs
11:15
wak-work has joined #ipfs
11:16
__uguu__ has joined #ipfs
11:16
__uguu__ has left #ipfs [#ipfs]
11:22
devtek[m] has joined #ipfs
11:26
devtek[m] has left #ipfs [#ipfs]
11:28
tmg has quit [Ping timeout: 240 seconds]
11:30
hexkey[m] has joined #ipfs
11:30
jfred[m] has joined #ipfs
11:30
Guest161720[m] has joined #ipfs
11:30
Edur[m] has joined #ipfs
11:30
edsilv[m] has joined #ipfs
11:30
Guest170096[m] has joined #ipfs
11:30
Prometheu5[m] has joined #ipfs
11:30
t0dd[m] has joined #ipfs
11:30
nick2000 has joined #ipfs
11:30
M-krsiehl has joined #ipfs
11:30
Aidan[m] has joined #ipfs
11:30
Seby[m] has joined #ipfs
11:30
silwol has joined #ipfs
11:30
Guest20685[m] has joined #ipfs
11:30
jose12[m] has joined #ipfs
11:30
Guest139286[m] has joined #ipfs
11:30
Famicoman[m] has joined #ipfs
11:30
somatronicon[m] has joined #ipfs
11:30
tidux[m] has joined #ipfs
11:30
joshb[m] has joined #ipfs
11:30
nop[m] has joined #ipfs
11:30
tk[m] has joined #ipfs
11:30
sudoreboot[m] has joined #ipfs
11:31
M-TidyKoala has joined #ipfs
11:31
Kalq[m] has joined #ipfs
11:31
cdetrio[m] has joined #ipfs
11:31
sickill[m] has joined #ipfs
11:31
thejohnhenry[m] has joined #ipfs
11:31
mith[m] has joined #ipfs
11:31
network[m] has joined #ipfs
11:31
M-jimt has joined #ipfs
11:31
keks[m] has joined #ipfs
11:31
gabyshu[m] has joined #ipfs
11:31
Guest174215[m] has joined #ipfs
11:31
M-hash has joined #ipfs
11:31
Guest176961[m] has joined #ipfs
11:31
Guest155377[m] has joined #ipfs
11:31
Kobberholm[m] has joined #ipfs
11:31
Guest94493[m] has joined #ipfs
11:31
herzmeister[m] has joined #ipfs
11:31
Guest149624[m] has joined #ipfs
11:31
M-kalmi has joined #ipfs
11:31
thekyriarchy has joined #ipfs
11:31
M-wldhx has joined #ipfs
11:31
M-BostonEnginerd has joined #ipfs
11:31
fcro[m] has joined #ipfs
11:31
litebit[m] has joined #ipfs
11:31
datenpunk[m] has joined #ipfs
11:31
Powersource has joined #ipfs
11:31
M-Dave has joined #ipfs
11:31
ivegotasthma[m] has joined #ipfs
11:31
Zedwick[m] has joined #ipfs
11:31
erikj` has joined #ipfs
11:31
fiatjaf[m] has joined #ipfs
11:31
Guest172436[m] has joined #ipfs
11:31
cyberpepe[m] has joined #ipfs
11:31
Guest156247[m] has joined #ipfs
11:31
remmy[m] has joined #ipfs
11:31
nuxlli[m] has joined #ipfs
11:31
zandy[m] has joined #ipfs
11:31
Guest182150[m] has joined #ipfs
11:31
gmanrwp[m] has joined #ipfs
11:31
M-slang has joined #ipfs
11:31
Zbyszek[m] has joined #ipfs
11:31
m3tti[m] has joined #ipfs
11:31
Guest172466[m] has joined #ipfs
11:31
albuic has joined #ipfs
11:31
jsyn[m] has joined #ipfs
11:31
cbHXBY1D[m] has joined #ipfs
11:31
M-sol56 has joined #ipfs
11:31
glnro[m] has joined #ipfs
11:31
musoke[m] has joined #ipfs
11:31
Matthew[m] has joined #ipfs
11:31
garblur83[m] has joined #ipfs
11:31
sk23[m] has joined #ipfs
11:31
M-oddvar has joined #ipfs
11:31
ZerataX[m] has joined #ipfs
11:31
panicbit-M has joined #ipfs
11:31
cornu[m] has joined #ipfs
11:31
atenorio[m] has joined #ipfs
11:31
gentam[m] has joined #ipfs
11:31
gendale[m] has joined #ipfs
11:31
Guest149259[m] has joined #ipfs
11:31
Tortulez[m] has joined #ipfs
11:31
kfrooney[m] has joined #ipfs
11:31
Chuck[m] has joined #ipfs
11:31
bart80[m] has joined #ipfs
11:31
fr33[m] has joined #ipfs
11:31
hippopete[m] has joined #ipfs
11:31
garrettr[m] has joined #ipfs
11:31
M-frobel has joined #ipfs
11:31
jhulten[m] has joined #ipfs
11:32
zbxdhskosoww[m] has joined #ipfs
11:32
RasmusErik[m] has joined #ipfs
11:32
M-iav has joined #ipfs
11:32
kRo[m] has joined #ipfs
11:32
M-ms has joined #ipfs
11:32
timthelion[m] has joined #ipfs
11:32
interfect[m] has joined #ipfs
11:32
bgrayburn[m] has joined #ipfs
11:32
wking[m] has joined #ipfs
11:32
notorioushanz[m] has joined #ipfs
11:32
tree[m] has joined #ipfs
11:32
M-sraja has joined #ipfs
11:32
palkeo[m] has joined #ipfs
11:32
masoodahm[m] has joined #ipfs
11:32
Guest190290[m] has joined #ipfs
11:32
charlienyc[m] has joined #ipfs
11:32
nocylah has joined #ipfs
11:32
Rad[m] has joined #ipfs
11:32
djokeefe[m] has joined #ipfs
11:32
HawkeyeTenderwol has joined #ipfs
11:32
M386dxturbo[m] has joined #ipfs
11:32
Guest187693[m] has joined #ipfs
11:32
Guest157354[m] has joined #ipfs
11:32
M-javissimo has joined #ipfs
11:32
steefmin[m] has joined #ipfs
11:32
AntoineM[m] has joined #ipfs
11:32
Guest178412[m] has joined #ipfs
11:32
adn[m] has joined #ipfs
11:32
Guest125071[m] has joined #ipfs
11:32
M107262[m] has joined #ipfs
11:32
Guest139267[m] has joined #ipfs
11:32
chpio[m] has joined #ipfs
11:32
xldrkp[m] has joined #ipfs
11:32
Guest157741[m] has joined #ipfs
11:32
M-liberdiko has joined #ipfs
11:32
allen369[m] has joined #ipfs
11:32
Guest158700[m] has joined #ipfs
11:32
Nekit[m] has joined #ipfs
11:32
M-arx has joined #ipfs
11:32
ttk2[m] has joined #ipfs
11:32
MrAxilus[m] has joined #ipfs
11:32
Guest147163[m] has joined #ipfs
11:32
DokterBob has joined #ipfs
11:32
prime1101[m] has joined #ipfs
11:32
seedbox[m] has joined #ipfs
11:32
NathanBraswell[m has joined #ipfs
11:32
mingchan88[m] has joined #ipfs
11:32
leinlawun[m] has joined #ipfs
11:32
M-anomie has joined #ipfs
11:32
madduck[m] has joined #ipfs
11:32
fil_redpill has joined #ipfs
11:32
M-martinklepsch has joined #ipfs
11:32
N80[m] has joined #ipfs
11:32
frabrunelle has joined #ipfs
11:32
gwillen[m] has joined #ipfs
11:32
agumonkey[m] has joined #ipfs
11:32
jon[m]1 has joined #ipfs
11:32
TheGreatNi[m] has joined #ipfs
11:32
stevenleeg[m] has joined #ipfs
11:32
Guest177417[m] has joined #ipfs
11:32
M-Amandine has joined #ipfs
11:32
qolop[m] has joined #ipfs
11:32
wjh[m] has joined #ipfs
11:32
Guest185556[m] has joined #ipfs
11:32
M-alien has joined #ipfs
11:32
stardot[m] has joined #ipfs
11:32
basilgohar[m] has joined #ipfs
11:32
Prussian_peyote[ has joined #ipfs
11:32
Guest178670[m] has joined #ipfs
11:32
drakaro[m] has joined #ipfs
11:32
rpdillon[m] has joined #ipfs
11:32
irx[m] has joined #ipfs
11:32
urhuruhurh[m] has joined #ipfs
11:32
onlnr has joined #ipfs
11:32
yuh96bbn[m] has joined #ipfs
11:32
krigare[m] has joined #ipfs
11:32
fhs[m] has joined #ipfs
11:32
krig[m] has joined #ipfs
11:32
mirek1337[m] has joined #ipfs
11:32
Guest144612[m] has joined #ipfs
11:32
BeautifulBash[m] has joined #ipfs
11:32
stormbuster[m] has joined #ipfs
11:32
kpcyrd[m] has joined #ipfs
11:32
steindekker[m] has joined #ipfs
11:33
toodlepop[m] has joined #ipfs
11:33
exyi[m] has joined #ipfs
11:33
grouchofractal2[ has joined #ipfs
11:33
Guest153546[m] has joined #ipfs
11:33
neurocis[m] has joined #ipfs
11:33
luisbg[m] has joined #ipfs
11:33
vpham24[m] has joined #ipfs
11:33
Paul[m] has joined #ipfs
11:33
moellus[m] has joined #ipfs
11:33
xloem1 has joined #ipfs
11:33
Hongar[m] has joined #ipfs
11:33
jbbr[m] has joined #ipfs
11:33
cryptix has joined #ipfs
11:33
RomainLeCarrer[m has joined #ipfs
11:33
Jean-PierreLauri has joined #ipfs
11:33
harlock[m] has joined #ipfs
11:33
Guest180558[m] has joined #ipfs
11:33
Emacsen[m] has joined #ipfs
11:33
kegan[m] has joined #ipfs
11:33
hiq[m] has joined #ipfs
11:33
Silke^ has joined #ipfs
11:33
Guest182011[m] has joined #ipfs
11:33
Polychrome[m] has joined #ipfs
11:33
jeremycahill[m] has joined #ipfs
11:33
pep0ni[m] has joined #ipfs
11:33
travisr has joined #ipfs
11:33
RaymondFoley[m] has joined #ipfs
11:33
bb010g has joined #ipfs
11:33
firemound[m] has joined #ipfs
11:33
M-jfred has joined #ipfs
11:33
unlmtd[m] has joined #ipfs
11:33
max_power[m] has joined #ipfs
11:33
Guest186849[m] has joined #ipfs
11:33
Lucas[m] has joined #ipfs
11:33
astronavt[m] has joined #ipfs
11:33
caught_in_the_ma has joined #ipfs
11:33
Guest159402[m] has joined #ipfs
11:33
orsys[m] has joined #ipfs
11:33
hans[m] has joined #ipfs
11:33
jpereira[m] has joined #ipfs
11:33
patrickr[m] has joined #ipfs
11:33
Guest157993[m] has joined #ipfs
11:33
H3ndr1k[m] has joined #ipfs
11:33
Guest189820[m] has joined #ipfs
11:33
ztl8702[m] has joined #ipfs
11:33
asyncsrc[m] has joined #ipfs
11:33
Guest164949[m] has joined #ipfs
11:33
Guest156348[m] has joined #ipfs
11:33
citizenerased[m] has joined #ipfs
11:33
adrianovalle[m] has joined #ipfs
11:33
DavidAmorn[m] has joined #ipfs
11:33
BreatheTech[m] has joined #ipfs
11:33
M-mubot has joined #ipfs
11:33
davidar_ has joined #ipfs
11:33
iwxzr[m] has joined #ipfs
11:33
fredrikj[m] has joined #ipfs
11:33
pool[m] has joined #ipfs
11:33
rschulman has joined #ipfs
11:33
dietrich[m] has joined #ipfs
11:33
Guest183312[m] has joined #ipfs
11:34
dyce[m] has joined #ipfs
11:34
Guest167336[m] has joined #ipfs
11:34
sabba[m] has joined #ipfs
11:34
brettrick[m] has joined #ipfs
11:34
Guest159893[m] has joined #ipfs
11:34
torarne has joined #ipfs
11:34
synth[m] has joined #ipfs
11:34
hjoest[m] has joined #ipfs
11:34
Guest146683[m] has joined #ipfs
11:34
Hansf[m] has joined #ipfs
11:34
parmenides has joined #ipfs
11:34
chao[m] has joined #ipfs
11:34
WinterFox[m] has joined #ipfs
11:34
M-gdr has joined #ipfs
11:34
absdog18[m] has joined #ipfs
11:34
dhole[m] has joined #ipfs
11:34
WiredDude[m] has joined #ipfs
11:34
Guest154554[m] has joined #ipfs
11:34
steven[m] has joined #ipfs
11:34
derina[m] has joined #ipfs
11:34
mojarra[m] has joined #ipfs
11:34
Drew[m] has joined #ipfs
11:34
edou[m] has joined #ipfs
11:34
artemist[m] has joined #ipfs
11:34
robguthrie[m] has joined #ipfs
11:34
maxlath[m] has joined #ipfs
11:34
Guest156174[m] has joined #ipfs
11:34
stanko[m] has joined #ipfs
11:34
endes[m] has joined #ipfs
11:34
null_radix[m] has joined #ipfs
11:34
Buli[m] has joined #ipfs
11:34
M-neoteo has joined #ipfs
11:34
fabrixxm has joined #ipfs
11:34
mikkaworkscom[m] has joined #ipfs
11:34
xamino[m] has joined #ipfs
11:34
sushipantsu[m] has joined #ipfs
11:34
Adam[m]1 has joined #ipfs
11:34
filispim[m] has joined #ipfs
11:34
Leer10[m] has joined #ipfs
11:34
lugarius has joined #ipfs
11:34
Quiark_ has joined #ipfs
11:34
frabcus[m] has joined #ipfs
11:34
ph12[m] has joined #ipfs
11:34
minibar[m] has joined #ipfs
11:34
Guest162792[m] has joined #ipfs
11:34
EuAndreh[m] has joined #ipfs
11:34
Guest152989[m] has joined #ipfs
11:34
funspectre[m] has joined #ipfs
11:34
Guest148729[m] has joined #ipfs
11:34
Guest154943[m] has joined #ipfs
11:34
gsf[m]1 has joined #ipfs
11:34
Guest146508[m] has joined #ipfs
11:34
Crest[m] has joined #ipfs
11:34
Guest182243[m] has joined #ipfs
11:34
x1402[m] has joined #ipfs
11:34
shellkr[m] has joined #ipfs
11:34
igel[m] has joined #ipfs
11:34
jord[m] has joined #ipfs
11:34
beauner[m] has joined #ipfs
11:34
davidar has joined #ipfs
11:34
ekaforce[m] has joined #ipfs
11:34
Guest150078[m] has joined #ipfs
11:34
Guest157166[m] has joined #ipfs
11:34
plindner has joined #ipfs
11:34
djhaskin987[m] has joined #ipfs
11:34
Guest154416[m] has joined #ipfs
11:34
hansnust[m] has joined #ipfs
11:34
bumi[m] has joined #ipfs
11:34
COREILLY[m] has joined #ipfs
11:34
Guest151173[m] has joined #ipfs
11:34
Guest136220[m] has joined #ipfs
11:34
Guest175579[m] has joined #ipfs
11:34
magog[m] has joined #ipfs
11:34
Guest186383[m] has joined #ipfs
11:34
Guest154195[m] has joined #ipfs
11:34
Guest173654[m] has joined #ipfs
11:34
Guest180345[m] has joined #ipfs
11:34
stoneridge has joined #ipfs
11:34
xylofonic[m] has joined #ipfs
11:34
petal[m] has joined #ipfs
11:34
wakest has joined #ipfs
11:34
MajorScale[m] has joined #ipfs
11:34
Olivier[matrix] has joined #ipfs
11:34
kewde[m] has joined #ipfs
11:34
dawnbreez[m] has joined #ipfs
11:34
M-HirmeS has joined #ipfs
11:34
Guest176690[m] has joined #ipfs
11:34
mythmon- has joined #ipfs
11:34
xuv[m] has joined #ipfs
11:34
troy[m] has joined #ipfs
11:34
Guest177719[m] has joined #ipfs
11:34
stretch[m] has joined #ipfs
11:34
notafile[m] has joined #ipfs
11:34
nando[m] has joined #ipfs
11:34
hannes[m] has joined #ipfs
11:34
grensjo[m] has joined #ipfs
11:34
sam[m] has joined #ipfs
11:34
Guest156168[m] has joined #ipfs
11:34
esbjorn[m] has joined #ipfs
11:35
M-3630 has joined #ipfs
11:35
Remramm has joined #ipfs
11:35
Guest164288[m] has joined #ipfs
11:35
phil-flexhk[m] has joined #ipfs
11:35
digitaleirkir[m] has joined #ipfs
11:35
Neurolit[m] has joined #ipfs
11:35
cptaffe has joined #ipfs
11:35
tkorrison[m] has joined #ipfs
11:35
Guest185910[m] has joined #ipfs
11:35
Scio[m] has joined #ipfs
11:35
syncing[m] has joined #ipfs
11:35
dtz has joined #ipfs
11:35
flacks[m] has joined #ipfs
11:35
thirdcentury[m] has joined #ipfs
11:35
Kinch[m] has joined #ipfs
11:35
alx[m] has joined #ipfs
11:35
rdesfo[m] has joined #ipfs
11:35
vd[m] has joined #ipfs
11:35
ekroon has joined #ipfs
11:35
neurochemical[m] has joined #ipfs
11:35
jimtendo[m] has joined #ipfs
11:35
Guest153399[m] has joined #ipfs
11:35
Markus72[m] has joined #ipfs
11:35
Guest186054[m] has joined #ipfs
11:35
saintaquinas[m] has joined #ipfs
11:35
because[m] has joined #ipfs
11:35
musicmatze[m] has joined #ipfs
11:35
BanJo[m] has joined #ipfs
11:35
guest6977[m] has joined #ipfs
11:35
Guest163234[m] has joined #ipfs
11:35
kythyria[m] has joined #ipfs
11:35
am2on has joined #ipfs
11:35
bethan[m] has joined #ipfs
11:35
Guest144866[m] has joined #ipfs
11:35
Guest163413[m] has joined #ipfs
11:35
manolis[m] has joined #ipfs
11:35
Guest90184 has joined #ipfs
11:35
Simon[m] has joined #ipfs
11:35
Bloo[m] has joined #ipfs
11:35
wew[m] has joined #ipfs
11:35
chrono[m] has joined #ipfs
11:35
M-brain has joined #ipfs
11:35
Visevius[m] has joined #ipfs
11:35
afdudley[m]1 has joined #ipfs
11:36
Guest188462[m] has joined #ipfs
11:36
n0x65B[m] has joined #ipfs
11:36
kharybdis[m] has joined #ipfs
11:41
toppler has quit [Remote host closed the connection]
11:41
toppler has joined #ipfs
11:52
sirdancealot has quit [Ping timeout: 260 seconds]
11:59
area has quit [Ping timeout: 264 seconds]
12:00
tmg has joined #ipfs
12:09
<
hsanjuan >
!pin QmWf2asBu54nEaCzfJtdyP1KQjf4pWXmqeHYHZJm86eHAT cluster-init.gif
12:09
<
pinbot >
now pinning on 8 nodes
12:11
cemerick has joined #ipfs
12:11
maxlath has quit [Ping timeout: 240 seconds]
12:14
skeuomorf has joined #ipfs
12:16
lugarius has left #ipfs ["User left"]
12:19
Kegsay has quit [Ping timeout: 246 seconds]
12:21
Kegsay has joined #ipfs
12:31
area has joined #ipfs
12:41
<
fabrixxm >
that's cool
12:46
mildred4 is now known as mildred
12:46
JayCarpenter has joined #ipfs
12:51
cemerick has quit [Ping timeout: 256 seconds]
12:53
ygrek_ has joined #ipfs
12:53
Kegsay has quit [Ping timeout: 264 seconds]
12:53
Kegsay has joined #ipfs
12:57
clownpriest has joined #ipfs
13:00
Boomerang has joined #ipfs
13:01
cemerick has joined #ipfs
13:01
PrinceOfPeeves has joined #ipfs
13:03
Boomerang has quit [Remote host closed the connection]
13:03
leeola has joined #ipfs
13:04
skeuomorf has quit [Ping timeout: 240 seconds]
13:09
<
musicmatze >
Hey, there is CIMBA, I just found out - but it seems to be abandoned, does anyone have some information whether it is or not?
13:12
galois_dmz has joined #ipfs
13:13
<
SeeSee[m] >
please excuse me I am an absolute noob with ipfs but what can be created with it so far?
13:13
<
SeeSee[m] >
Thanks @BanJo
13:13
<
BanJo[m] >
It is usable, as a file system, read back a bit and see the link in the description of the room for details as well, there's a link to the whitepaper as well
13:14
Guest90184 is now known as jayaura
13:14
jayaura is now known as Guest27470
13:16
<
clownpriest >
is there a roadmap/plan for how filecoin/ethereum integration is going to work? I'm working on something that will most likely need some sort of incentive structure, and it would be great to know how I might go about doing that (or at least start planning to)
13:17
sprint-helper has quit [Remote host closed the connection]
13:17
sprint-helper has joined #ipfs
13:20
<
SeeSee[m] >
What is that?
13:20
JustinDrake has joined #ipfs
13:22
jkilpatr has quit [Quit: Leaving]
13:22
jkilpatr has joined #ipfs
13:23
<
clownpriest >
SeeSee[m]: the way you pay people to host your stuff on ipfs
13:26
<
SeeSee[m] >
I know about filecoin but what is CIMBA
13:48
cemerick has quit [Ping timeout: 256 seconds]
13:56
maxlath has joined #ipfs
14:08
ZaZ has joined #ipfs
14:11
aguardar has joined #ipfs
14:15
ashark has joined #ipfs
14:19
matoro has quit [Ping timeout: 256 seconds]
14:21
<
herzmeister[m] >
can i !pin anything here? even 100 gigs of all my crap?
14:23
<
r0kk3rz >
herzmeister[m]: pinbot wont let you
14:24
reit has quit [Quit: Leaving]
14:26
<
herzmeister[m] >
owwww :( am i underpriviledged after all?
14:32
sprint-helper has quit [Remote host closed the connection]
14:32
sprint-helper has joined #ipfs
14:34
Guest27470 is now known as jayaura
14:37
maxlath has quit [Remote host closed the connection]
14:38
maxlath has joined #ipfs
14:57
nunofmn has joined #ipfs
15:02
Mateon3 has joined #ipfs
15:02
ZaZ1 has joined #ipfs
15:02
Mateon1 has quit [Ping timeout: 240 seconds]
15:02
Mateon3 is now known as Mateon1
15:03
jonnycrunch has joined #ipfs
15:05
ZaZ has quit [Ping timeout: 260 seconds]
15:12
ylp1 has quit [Quit: Leaving.]
15:14
ZaZ has joined #ipfs
15:16
ZaZ1 has quit [Ping timeout: 260 seconds]
15:18
<
hsanjuan >
!pin QmWHUqD39QcpVCradmcoJHwtLZYgTpuji3iBukPyScyaWt cluster-mgmt.gif
15:18
<
pinbot >
now pinning on 8 nodes
15:18
<
hsanjuan >
JustinDrake: from where do you want to know it?
15:19
<
hsanjuan >
ah let me answer there
15:22
ulrichard has quit [Remote host closed the connection]
15:22
<
JustinDrake >
hsanjuan: Right now I’m doing `Host.Connect` which is fairly high-level. Ideally I’d keep the power of `Host.Connect` (e.g. trying to dial on multiple multiaddresses in parallel), but somehow get hold of the multiaddress that actually dials successfully.
15:22
<
hsanjuan >
!pin QmWHUqD39QcpVCradmcoJHwtLZYgTpuji3iBukPyScyaWt cluster-mgmt.gif
15:22
<
pinbot >
now pinning on 8 nodes
15:23
<
hsanjuan >
JustinDrake: I answered in the issue
15:23
palkeo has joined #ipfs
15:23
palkeo has joined #ipfs
15:23
palkeo has quit [Changing host]
15:23
<
JustinDrake >
hsanjuan: Thanks! :)
15:32
palkeo has quit [Quit: Konversation terminated!]
15:33
mildred has quit [Ping timeout: 256 seconds]
15:40
Aranjedeath has joined #ipfs
15:48
reit has joined #ipfs
15:55
jonnycrunch has quit [Quit: jonnycrunch]
15:58
Boomerang has joined #ipfs
16:10
dimitarvp has joined #ipfs
16:13
maxlath1 has joined #ipfs
16:14
maxlath has quit [Ping timeout: 260 seconds]
16:16
Kegsay has quit [Ping timeout: 240 seconds]
16:16
hyperirc-dd1a46f has joined #ipfs
16:18
maxlath1 has quit [Ping timeout: 268 seconds]
16:20
maxlath has joined #ipfs
16:21
<
JustinDrake >
Can I do `gx update` on all package.json GX packages?
16:23
jack has joined #ipfs
16:26
tmg has quit [Ping timeout: 240 seconds]
16:27
hyperirc-dd1a46f has quit [Remote host closed the connection]
16:27
hyperirc-dd1a46f has joined #ipfs
16:27
maxlath has quit [Ping timeout: 268 seconds]
16:29
nunofmn has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
16:29
maxlath has joined #ipfs
16:33
nunofmn has joined #ipfs
16:36
maxlath has quit [Ping timeout: 260 seconds]
16:36
aguardar has quit [Quit: Connection closed for inactivity]
16:37
hyperirc-dd1a46f has quit [Remote host closed the connection]
16:38
hyperirc-dd1a46f has joined #ipfs
16:39
hyperirc-dd1a46f has quit [Remote host closed the connection]
16:39
hyperirc-dd1a46f has joined #ipfs
16:39
<
JustinDrake >
Where do the go-log logs go when using go-libp2p directly?
16:47
cemerick has joined #ipfs
16:49
hyperirc-dd1a46f has quit [Remote host closed the connection]
16:50
hyperirc-dd1a46f has joined #ipfs
16:51
hyperirc-dd1a46f has quit [Remote host closed the connection]
16:52
hyperirc-dd1a46f has joined #ipfs
16:56
Encrypt has joined #ipfs
17:00
<
whyrusleeping >
JustinDrake: You can either set the logging level higher through the go log package
17:00
<
whyrusleeping >
or you can use the env var IPFS_LOGGING to select a global logging level
17:01
<
whyrusleeping >
JustinDrake: what do you mean by: "Can I do `gx update` on all package.json GX packages?"
17:01
s_kunk has quit [Ping timeout: 260 seconds]
17:03
MDude has quit [Ping timeout: 240 seconds]
17:06
matoro has joined #ipfs
17:10
spacebar_ has joined #ipfs
17:18
s_kunk has joined #ipfs
17:20
<
hsanjuan >
!pin QmZGnfMUhXcWrf6aKYD3M5M6c7rwT7dwpGrJK4uy6BSv8h ipfs-cluster-gifs
17:20
<
pinbot >
now pinning on 8 nodes
17:24
anewuser has quit [Ping timeout: 264 seconds]
17:26
hyperirc-dd1a46f has quit [Ping timeout: 258 seconds]
17:26
<
JustinDrake >
whyrusleeping: Thanks!
17:27
<
JustinDrake >
It seems like go-libp2p will only dial on transports which it is listening on (except for TCP, where there’s a fallback dialer). Is listening required for the WebSockets transport?
17:28
<
whyrusleeping >
JustinDrake: oh, hrm...
17:28
<
whyrusleeping >
JustinDrake: thats a good point. We should probably add websockets to the fallback
17:28
<
JustinDrake >
Why do it at all?
17:29
<
whyrusleeping >
JustinDrake: theres also been some issues we've noticed with the websockets transport
17:29
thomersch has quit [Quit: thomersch]
17:29
<
whyrusleeping >
JustinDrake: what do you mena?
17:29
anewuser has joined #ipfs
17:29
<
JustinDrake >
Surely we should be able to dial on most transports without listening at all
17:29
<
JustinDrake >
What issues?
17:30
<
whyrusleeping >
JustinDrake: right, its just a fault of the design right now that we need the 'fallback' thing. Need to get around to reworking that
17:30
<
whyrusleeping >
JustinDrake: when we enable websockets for our t0130 test, things appear to fial
17:30
<
whyrusleeping >
wow, i cant type this morning
17:31
<
whyrusleeping >
I still need to spend time looking at it
17:31
<
JustinDrake >
ok, cool. Thanks :)
17:31
<
whyrusleeping >
though it apparently works well enough for the javascript team to use
17:31
espadrine has quit [Ping timeout: 256 seconds]
17:31
<
whyrusleeping >
so go ahead and experiment with it, let us know any issues you have
17:32
matoro has quit [Ping timeout: 246 seconds]
17:35
<
hsanjuan >
!unpin QmZGnfMUhXcWrf6aKYD3M5M6c7rwT7dwpGrJK4uy6BSv8h
17:35
<
pinbot >
now unpinning on 8 nodes
17:35
ShalokShalom has joined #ipfs
17:35
<
hsanjuan >
!pin QmVMKD39fYJG9QGyyFkGN3QuZRg3EfuuxqkG1scCo9ZUHp ipfs-cluster-gifs
17:35
<
pinbot >
now pinning on 8 nodes
17:38
ShalokShalom_ has quit [Ping timeout: 268 seconds]
17:39
matoro has joined #ipfs
17:42
hyperirc-dd1a46f has joined #ipfs
17:48
arpu has quit [Ping timeout: 256 seconds]
17:49
Encrypt has quit [Quit: Quit]
17:50
jack has quit [Quit: Leaving]
17:50
JustinDrake has quit [Quit: JustinDrake]
17:51
hyperirc-dd1a46f has quit [Ping timeout: 264 seconds]
17:58
mildred has joined #ipfs
18:01
arpu has joined #ipfs
18:02
realisation has joined #ipfs
18:04
inetic has quit [Ping timeout: 260 seconds]
18:06
<
whyrusleeping >
hsanjuan: you should use asciinema :)
18:07
<
hsanjuan >
whyrusleeping: I use it
18:07
<
hsanjuan >
but then convert to gif
18:09
jkilpatr has quit [Quit: Leaving]
18:09
<
whyrusleeping >
oh, interesting, just because its easier to embed or something?
18:09
jkilpatr has joined #ipfs
18:10
Guest54701[m] has joined #ipfs
18:13
rendar has quit [Ping timeout: 264 seconds]
18:15
<
hsanjuan >
whyrusleeping: yeah, and to not depend on 3rd party JavaScripts
18:17
<
hsanjuan >
Nice haha
18:21
warner has quit [Quit: ERC (IRC client for Emacs 25.1.2)]
18:23
Guest191936[m] has joined #ipfs
18:25
arpu has quit [Read error: Connection reset by peer]
18:26
spacebar_ has quit [Quit: spacebar_ pressed ESC]
18:26
tilgovi has joined #ipfs
18:42
arpu has joined #ipfs
18:43
espadrine_ has joined #ipfs
18:47
mildred has quit [Ping timeout: 240 seconds]
18:50
matoro has quit [Ping timeout: 260 seconds]
18:50
TheGreatNi[m] has left #ipfs ["User left"]
18:54
spacebar_ has joined #ipfs
18:58
spacebar_ has quit [Client Quit]
19:02
Encrypt has joined #ipfs
19:02
spacebar_ has joined #ipfs
19:02
spacebar_ has quit [Client Quit]
19:04
matoro has joined #ipfs
19:25
mildred has joined #ipfs
19:27
JustinDrake has joined #ipfs
19:28
JustinDrake has quit [Client Quit]
19:30
ianopolous has quit [Ping timeout: 240 seconds]
19:37
Encrypt has quit [Quit: Quit]
19:40
ZaZ has quit [Read error: Connection reset by peer]
19:45
JustinDrake has joined #ipfs
19:46
lobbyist123[m] has joined #ipfs
19:49
robattila256 has joined #ipfs
19:54
tilgovi has quit [Remote host closed the connection]
20:03
rcat has quit [Ping timeout: 268 seconds]
20:04
sirdancealot has joined #ipfs
20:05
wak-work has quit [Remote host closed the connection]
20:06
rcat has joined #ipfs
20:12
JustinDrake has quit [Quit: JustinDrake]
20:16
jkilpatr has quit [Ping timeout: 246 seconds]
20:18
jkilpatr has joined #ipfs
20:21
ianopolous has joined #ipfs
20:26
warner has joined #ipfs
20:28
Mateon1 has quit [Remote host closed the connection]
20:28
tilgovi has joined #ipfs
20:30
cemerick has quit [Ping timeout: 256 seconds]
20:31
cemerick has joined #ipfs
20:35
shizy has joined #ipfs
20:36
chris613 has joined #ipfs
20:36
Mateon1 has joined #ipfs
20:37
matoro has quit [Ping timeout: 268 seconds]
20:37
ygrek_ has quit [Ping timeout: 260 seconds]
20:38
matoro has joined #ipfs
20:44
Lez has joined #ipfs
20:44
Lez has left #ipfs ["Leaving"]
20:51
ckwaldon has quit [Remote host closed the connection]
20:51
wkennington has joined #ipfs
20:52
spacebar_ has joined #ipfs
20:56
<
chpio[m] >
but... it's outdated?!
20:59
clownpriest has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
21:00
spacebar_ has quit [Quit: spacebar_ pressed ESC]
21:01
<
chpio[m] >
i think asciinemas file format changed since release
21:11
arpl has left #ipfs [#ipfs]
21:18
azahi has quit [Ping timeout: 264 seconds]
21:19
JustinDrake has joined #ipfs
21:20
shizy has quit [Ping timeout: 260 seconds]
21:22
azahi has joined #ipfs
21:24
JustinDrake has left #ipfs [#ipfs]
21:24
JustinDrake has joined #ipfs
21:25
ckwaldon has joined #ipfs
21:26
azahi has quit [Client Quit]
21:27
ianopolous has quit [Read error: Connection reset by peer]
21:29
JustinDrake has quit [Quit: JustinDrake]
21:32
cemerick has quit [Ping timeout: 256 seconds]
21:32
cxl000 has quit [Quit: Leaving]
21:38
Caterpillar has quit [Quit: You were not made to live as brutes, but to follow virtue and knowledge.]
21:40
Jesin has quit [Quit: Leaving]
21:42
dimitarvp` has joined #ipfs
21:44
<
whyrusleeping >
chpio[m]: we updated it lately?
21:44
<
whyrusleeping >
how recent is asciinemas change?
21:46
dimitarvp has quit [Ping timeout: 260 seconds]
21:46
JustinDrake has joined #ipfs
21:49
amdi_ has joined #ipfs
21:51
MrControll has joined #ipfs
21:59
area has quit [Quit: Lost terminal]
22:00
spossiba has quit [Quit: Lost terminal]
22:00
ashark has quit [Ping timeout: 264 seconds]
22:01
spossiba has joined #ipfs
22:01
<
chpio[m] >
ok, it's just the version on npm
22:08
espadrine_ has quit [Ping timeout: 256 seconds]
22:09
skeuomorf has joined #ipfs
22:16
fpletz has left #ipfs ["^D"]
22:28
Jesin has joined #ipfs
22:28
ianopolous has joined #ipfs
22:38
nunofmn has quit [Ping timeout: 256 seconds]
22:45
ShalokShalom has quit [Quit: No Ping reply in 180 seconds.]
22:46
ShalokShalom has joined #ipfs
22:48
skeuomorf has quit [Read error: Connection reset by peer]
22:48
sirdancealot has quit [Ping timeout: 240 seconds]
22:49
wrouesnel has joined #ipfs
22:52
dimitarvp` is now known as dimitarvp
22:53
ShalokShalom has quit [Quit: No Ping reply in 180 seconds.]
22:53
matoro has quit [Ping timeout: 260 seconds]
22:55
ShalokShalom has joined #ipfs
22:57
webdev007 has joined #ipfs
22:58
ShalokShalom has quit [Client Quit]
23:00
JustinDrake has quit [Quit: JustinDrake]
23:00
ShalokShalom has joined #ipfs
23:05
tmg has joined #ipfs
23:07
arpu has quit [Ping timeout: 240 seconds]
23:17
rcat has quit [Ping timeout: 258 seconds]
23:17
matoro has joined #ipfs
23:21
ShalokShalom has quit [Quit: No Ping reply in 180 seconds.]
23:21
arpu has joined #ipfs
23:22
ShalokShalom has joined #ipfs
23:30
matoro has quit [Ping timeout: 240 seconds]
23:42
bwerthmann has quit [Ping timeout: 240 seconds]
23:44
bwerthmann has joined #ipfs
23:45
matoro has joined #ipfs
23:53
mildred has quit [Read error: Connection reset by peer]
23:54
mildred has joined #ipfs
23:54
Jesin has quit [Quit: Leaving]