lgierth changed the topic of #ipfs to: go-ipfs v0.4.7 is out! https://dist.ipfs.io/go-ipfs | Week 11+12: Documentation https://git.io/vyHgk | Roadmap: https://waffle.io/ipfs/roadmaps | IPFS, the InterPlanetary FileSystem: https://github.com/ipfs/ipfs | FAQ: https://git.io/voEh8 | Logs: https://botbot.me/freenode/ipfs/ | Code of Conduct: https://git.io/vVBS0
melvster has joined #ipfs
dmx has left #ipfs ["WeeChat 0.4.3"]
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.]
tilgovi has quit [Remote host closed the connection]
jsgrant-_ has joined #ipfs
bwerthmann has quit [Ping timeout: 240 seconds]
tilgovi has joined #ipfs
hyperirc-dd1a46f has quit [Ping timeout: 256 seconds]
matoro has quit [Ping timeout: 268 seconds]
matoro has joined #ipfs
bwerthmann has joined #ipfs
bwerthmann has quit [Client Quit]
cemerick has joined #ipfs
bwerthmann has joined #ipfs
leeola has quit [Quit: Connection closed for inactivity]
Forkk has joined #ipfs
<Forkk> Is there a way I can construct a http url for an IPFS file with a specific filename
<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
<Forkk> I've tried setting the "download" attribute on my a tag, but chrome just ignores it :(
<lgierth> add it with ipfs add -w
<lgierth> it'll put the file in a wrapping object with a proper link
<lgierth> e.g. /ipfs/Qmfoo/file.txt
<Forkk> is there a way to do it where I can still derive the url from just the ipfs hash?
<lgierth> you can put nginx or so in front and have it set a Content-Disposition header
<Forkk> yeah I guess
<Forkk> then I have to set up an nginx server
<lgierth> why dou have only the hash though?
<Forkk> I don't
<lgierth> dou = do you
<Forkk> I just don't want to add more fields to my json files than necessary
<lgierth> and one field is the hash? maybe better to make that field the full path
<Forkk> isn't the hash the full path?
<lgierth> /ipfs/Qmfoo/file.txt is a full path
<lgierth> the hash is just the hash
<lgierth> which is fine if you just "want to fetch data"
matoro has quit [Ping timeout: 246 seconds]
<lgierth> but it sounds like you're dealing with filenames, which are a filesystem thing, and that's what the full path gives you :)
<Forkk> well there's another field in the json with the filename
<Forkk> but there's also another field with a sha256 hash
<Forkk> it's just not encoded like an ipfs hash
<lgierth> i see, the sha256 hash of exactly that file
<Forkk> right
<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
<Forkk> but I don't
<Forkk> I want the json file to specify the filename
matoro has joined #ipfs
apiarian has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<lgierth> yeah so the other option is doing it at read time (= nginx)
<Forkk> well I have a webapp on heroku
<Forkk> I could just do it through that lol
<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
<lgierth> yeah or that
<Forkk> I think it has like a 2TB bandwidth cap
tidux has left #ipfs ["WeeChat 1.5"]
<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`
<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
<Forkk> I could just do one directory per file too
<lgierth> yeah that too
<Forkk> in case there are name collisions
<lgierth> good call
<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
<Forkk> also how do I control which files are and aren't being hosted from my node?
<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
<Forkk> so is there a way I can make it stop hosting a file?
<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)
<Forkk> ok
<lgierth> if it's something you added, you can run ipfs pin rm $hash, and run GC
cemerick has quit [Ping timeout: 256 seconds]
warner has quit [Read error: Connection reset by peer]
warner has joined #ipfs
level56_ has quit [Quit: ZNC - http://znc.in]
ylp has quit [Ping timeout: 240 seconds]
WindPower has quit [Ping timeout: 240 seconds]
jsgrant-_ has quit [Read error: Connection reset by peer]
ffmad_ has quit [Ping timeout: 240 seconds]
emschwartz has quit [Ping timeout: 240 seconds]
jsgrant-_ has joined #ipfs
bbielsa has quit [Ping timeout: 240 seconds]
ehd has quit [Ping timeout: 240 seconds]
bmpvieira has quit [Ping timeout: 240 seconds]
bbielsa has joined #ipfs
pjz has quit [Ping timeout: 240 seconds]
emschwartz has joined #ipfs
ehd has joined #ipfs
bmpvieira has joined #ipfs
ffmad_ has joined #ipfs
pjz has joined #ipfs
WindPower has joined #ipfs
amdi_ has joined #ipfs
ylp has joined #ipfs
PrinceOfPeeves has quit [Quit: Leaving]
cemerick has joined #ipfs
<SchrodingersScat> 21:54:57.224 ERROR flatfs: too many open files, retrying in 200ms flatfs.go:180
cemerick has quit [Ping timeout: 256 seconds]
cemerick has joined #ipfs
dimitarvp has quit [Quit: Bye]
spacebar_ has quit [Ping timeout: 246 seconds]
<lgierth> will be fixed in 0.4.8 next week
<lgierth> SchrodingersScat: actually you can try rc1: https://dist.ipfs.io/go-ipfs/v0.4.8-rc1
lgierth changed the topic of #ipfs to: go-ipfs v0.4.7 is out, and v0.4.8-rc1 too! https://dist.ipfs.io/go-ipfs | Week 11+12: Documentation https://git.io/vyHgk | Roadmap: https://waffle.io/ipfs/roadmaps | IPFS, the InterPlanetary FileSystem: https://github.com/ipfs/ipfs | FAQ: https://git.io/voEh8 | Logs: https://botbot.me/freenode/ipfs/ | Code of Conduct: https://git.io/vVBS0
<SchrodingersScat> it was a rhetorical error
jsgrant has joined #ipfs
amdi_ has quit [Quit: Leaving]
amdi_ has joined #ipfs
pawn has joined #ipfs
<pawn> Is filecoin something completely separate from IPFS?
<lgierth> it uses ipfs
amdi_ has quit [Quit: Leaving]
ljhms has quit [Ping timeout: 264 seconds]
mguentner2 has quit [Quit: WeeChat 1.7]
MrControll has quit [Quit: Leaving]
<pawn> Where can I download the Filecoin client?
mguentner has joined #ipfs
pawn has quit [Remote host closed the connection]
<SchrodingersScat> lgierth: and this will let me rent out diskspace to make money? basically a competitor for google or dropbox?
ljhms has joined #ipfs
arkimedes has quit [Read error: Connection reset by peer]
mguentner2 has joined #ipfs
IRCFrEAK has joined #ipfs
mguentner has quit [Ping timeout: 260 seconds]
IRCFrEAK has left #ipfs [#ipfs]
jkilpatr has quit [Ping timeout: 246 seconds]
tperson has quit [Ping timeout: 240 seconds]
alanz has quit [Ping timeout: 240 seconds]
xrogaan has quit [Ping timeout: 240 seconds]
tperson has joined #ipfs
xrogaan has joined #ipfs
alanz has joined #ipfs
matoro has quit [Ping timeout: 240 seconds]
matoro has joined #ipfs
gmcabrita has quit [Quit: Connection closed for inactivity]
reit has quit [Ping timeout: 264 seconds]
palkeo has joined #ipfs
palkeo has joined #ipfs
palkeo has quit [Changing host]
reit has joined #ipfs
espadrine has joined #ipfs
tmg has quit [Ping timeout: 258 seconds]
spacebar_ has joined #ipfs
JayCarpenter has quit [Quit: Page closed]
mildred has quit [Ping timeout: 260 seconds]
spacebar_ has quit [Quit: spacebar_ pressed ESC]
ygrek has joined #ipfs
spacebar_ has joined #ipfs
ygrek_ has joined #ipfs
ygrek has quit [Ping timeout: 246 seconds]
spacebar_ has quit [Quit: spacebar_ pressed ESC]
eater has quit [Ping timeout: 268 seconds]
eater has joined #ipfs
palkeo has quit [Ping timeout: 246 seconds]
tmg has joined #ipfs
hyperirc-dd1a46f has joined #ipfs
inetic has joined #ipfs
warner has quit [Read error: Connection reset by peer]
mildred4 has joined #ipfs
warner has joined #ipfs
wookiehangover has quit [Ping timeout: 260 seconds]
wookiehangover has joined #ipfs
reit has quit [Quit: Leaving]
thomersch has joined #ipfs
cemerick has quit [Ping timeout: 256 seconds]
ulrichard has joined #ipfs
hyperirc-dd1a46f has quit [Ping timeout: 240 seconds]
melvster has quit [Ping timeout: 240 seconds]
tmg has quit [Ping timeout: 240 seconds]
athan has quit [Ping timeout: 240 seconds]
athan has joined #ipfs
espadrine_ has joined #ipfs
cxl000 has joined #ipfs
deetwelve has quit [Ping timeout: 240 seconds]
jsgrant-_ has quit [Remote host closed the connection]
jsgrant has quit [Remote host closed the connection]
jsgrant-_ has joined #ipfs
jsgrant has joined #ipfs
deetwelve has joined #ipfs
cwahlers has quit [Quit: Textual IRC Client: www.textualapp.com]
cwahlers has joined #ipfs
ylp1 has joined #ipfs
Caterpillar has joined #ipfs
s_kunk has quit [Ping timeout: 240 seconds]
sirdancealot has joined #ipfs
cwahlers has quit [Quit: Textual IRC Client: www.textualapp.com]
robattila256 has quit [Ping timeout: 264 seconds]
tmg has joined #ipfs
espadrine_ has quit [Ping timeout: 240 seconds]
tmg has quit [Ping timeout: 246 seconds]
cwahlers has joined #ipfs
gmcabrita has joined #ipfs
tmg has joined #ipfs
tmg has quit [Ping timeout: 240 seconds]
sirdancealot has quit [Ping timeout: 240 seconds]
azahi has joined #ipfs
s_kunk has joined #ipfs
reit has joined #ipfs
tilgovi has quit [Ping timeout: 246 seconds]
sirdancealot has joined #ipfs
rcat has joined #ipfs
maxlath has joined #ipfs
sirdancealot has quit [Ping timeout: 240 seconds]
hoenir has joined #ipfs
unlmtd[m] has quit [Remote host closed the connection]
stoneridge has quit [Remote host closed the connection]
M-alien has quit [Remote host closed the connection]
M-jimt has quit [Remote host closed the connection]
Guest177417[m] has quit [Remote host closed the connection]
thekyriarchy has quit [Remote host closed the connection]
Remramm has quit [Remote host closed the connection]
max_power[m] has quit [Remote host closed the connection]
Quiark_ has quit [Remote host closed the connection]
EuAndreh[m] has quit [Remote host closed the connection]
rschulman has quit [Remote host closed the connection]
fabrixxm has quit [Remote host closed the connection]
iwxzr[m] has quit [Remote host closed the connection]
masoodahm[m] has quit [Remote host closed the connection]
esbjorn[m] has quit [Remote host closed the connection]
Guest157993[m] has quit [Remote host closed the connection]
thejohnhenry[m] has quit [Remote host closed the connection]
wjh[m] has quit [Remote host closed the connection]
garblur83[m] has quit [Remote host closed the connection]
Olivier[matrix] has quit [Remote host closed the connection]
Lucas[m] has quit [Remote host closed the connection]
Kobberholm[m] has quit [Remote host closed the connection]
cptaffe has quit [Read error: Connection reset by peer]
M-kalmi has quit [Read error: Connection reset by peer]
Guest172466[m] has quit [Read error: Connection reset by peer]
rdesfo[m] has quit [Read error: Connection reset by peer]
M-anomie has quit [Remote host closed the connection]
M-hash has quit [Remote host closed the connection]
grouchofractal2[ has quit [Remote host closed the connection]
Guest189820[m] has quit [Read error: Connection reset by peer]
yuh96bbn[m] has quit [Read error: Connection reset by peer]
chpio[m] has quit [Read error: Connection reset by peer]
Guest178670[m] has quit [Remote host closed the connection]
M-TidyKoala has quit [Remote host closed the connection]
hiq[m] has quit [Read error: Connection reset by peer]
travisr has quit [Read error: Connection reset by peer]
BeautifulBash[m] has quit [Remote host closed the connection]
Prussian_peyote[ has quit [Remote host closed the connection]
seedbox[m] has quit [Remote host closed the connection]
Guest149624[m] has quit [Remote host closed the connection]
Guest174215[m] has quit [Remote host closed the connection]
M-Dave has quit [Read error: Connection reset by peer]
jeremycahill[m] has quit [Read error: Connection reset by peer]
Rad[m] has quit [Read error: Connection reset by peer]
Guest180345[m] has quit [Read error: Connection reset by peer]
Guest176961[m] has quit [Write error: Connection reset by peer]
xloem1 has quit [Write error: Connection reset by peer]
zandy[m] has quit [Write error: Connection reset by peer]
palkeo[m] has quit [Write error: Connection reset by peer]
tkorrison[m] has quit [Write error: Connection reset by peer]
mojarra[m] has quit [Write error: Connection reset by peer]
Guest154554[m] has quit [Write error: Connection reset by peer]
Guest167336[m] has quit [Write error: Connection reset by peer]
Guest186849[m] has quit [Write error: Connection reset by peer]
bart80[m] has quit [Write error: Connection reset by peer]
cornu[m] has quit [Remote host closed the connection]
Buli[m] has quit [Remote host closed the connection]
ph12[m] has quit [Remote host closed the connection]
Zedwick[m] has quit [Remote host closed the connection]
network[m] has quit [Remote host closed the connection]
glnro[m] has quit [Remote host closed the connection]
M-jfred has quit [Remote host closed the connection]
Guest182011[m] has quit [Remote host closed the connection]
hippopete[m] has quit [Remote host closed the connection]
jon[m]1 has quit [Read error: Connection reset by peer]
Paul[m] has quit [Read error: Connection reset by peer]
Guest144612[m] has quit [Read error: Connection reset by peer]
urhuruhurh[m] has quit [Read error: Connection reset by peer]
kRo[m] has quit [Read error: Connection reset by peer]
endes[m] has quit [Read error: Connection reset by peer]
astronavt[m] has quit [Read error: Connection reset by peer]
Guest144866[m] has quit [Read error: Connection reset by peer]
Guest156348[m] has quit [Write error: Connection reset by peer]
am2on has quit [Read error: Connection reset by peer]
herzmeister[m] has quit [Read error: Connection reset by peer]
dtz has quit [Read error: Connection reset by peer]
dyce[m] has quit [Remote host closed the connection]
fr33[m] has quit [Remote host closed the connection]
asyncsrc[m] has quit [Remote host closed the connection]
rpdillon[m] has quit [Remote host closed the connection]
M-javissimo has quit [Remote host closed the connection]
zbxdhskosoww[m] has quit [Remote host closed the connection]
Scio[m] has quit [Read error: Connection reset by peer]
Famicoman[m] has quit [Read error: Connection reset by peer]
kegan[m] has quit [Read error: Connection reset by peer]
jfred[m] has quit [Read error: Connection reset by peer]
RaymondFoley[m] has quit [Read error: Connection reset by peer]
Guest148729[m] has quit [Read error: Connection reset by peer]
krig[m] has quit [Read error: Connection reset by peer]
MrAxilus[m] has quit [Read error: Connection reset by peer]
joshb[m] has quit [Read error: Connection reset by peer]
adrianovalle[m] has quit [Read error: Connection reset by peer]
Guest185910[m] has quit [Read error: Connection reset by peer]
interfect[m] has quit [Read error: Connection reset by peer]
kewde[m] has quit [Read error: Connection reset by peer]
Neurolit[m] has quit [Read error: Connection reset by peer]
agumonkey[m]1 has quit [Read error: Connection reset by peer]
plindner has quit [Read error: Connection reset by peer]
jord[m] has quit [Write error: Connection reset by peer]
sudoreboot[m] has quit [Read error: Connection reset by peer]
moellus[m] has quit [Write error: Connection reset by peer]
RomainLeCarrer[m has quit [Write error: Connection reset by peer]
Guest163413[m]1 has quit [Remote host closed the connection]
xldrkp[m] has quit [Remote host closed the connection]
Edur[m] has quit [Read error: Connection reset by peer]
M107262[m] has quit [Read error: Connection reset by peer]
Guest183312[m] has quit [Read error: Connection reset by peer]
Guest164949[m] has quit [Read error: Connection reset by peer]
bethan[m] has quit [Remote host closed the connection]
M-brain has quit [Remote host closed the connection]
fcro[m] has quit [Remote host closed the connection]
hans[m] has quit [Read error: Connection reset by peer]
steindekker[m] has quit [Read error: Connection reset by peer]
gabyshu[m] has quit [Read error: Connection reset by peer]
Polychrome[m] has quit [Read error: Connection reset by peer]
fiatjaf[m] has quit [Remote host closed the connection]
M-frobel has quit [Remote host closed the connection]
Drew[m] has quit [Remote host closed the connection]
Guest159402[m] has quit [Remote host closed the connection]
Seby[m] has quit [Remote host closed the connection]
artemist[m] has quit [Remote host closed the connection]
Guest156247[m] has quit [Remote host closed the connection]
jsyn[m] has quit [Remote host closed the connection]
bgrayburn[m] has quit [Write error: Connection reset by peer]
Nekit[m] has quit [Remote host closed the connection]
Tortulez[m] has quit [Remote host closed the connection]
somatronicon[m] has quit [Write error: Connection reset by peer]
thirdcentury[m]1 has quit [Write error: Connection reset by peer]
xuv[m] has quit [Write error: Connection reset by peer]
jpereira[m] has quit [Write error: Connection reset by peer]
Guest20685[m] has quit [Write error: Connection reset by peer]
synth[m]1 has quit [Write error: Connection reset by peer]
ttk2[m] has quit [Write error: Connection reset by peer]
afdudley[m]1 has quit [Write error: Connection reset by peer]
xamino[m] has quit [Write error: Connection reset by peer]
M-mubot has quit [Write error: Connection reset by peer]
alx[m] has quit [Write error: Connection reset by peer]
stanko[m] has quit [Write error: Connection reset by peer]
sk23[m] has quit [Write error: Connection reset by peer]
mirek1337[m]1 has quit [Remote host closed the connection]
ivegotasthma[m] has quit [Write error: Connection reset by peer]
Zbyszek[m] has quit [Write error: Connection reset by peer]
tidux[m] has quit [Write error: Connection reset by peer]
sabba[m] has quit [Write error: Connection reset by peer]
Aidan[m] has quit [Write error: Connection reset by peer]
cdetrio[m] has quit [Remote host closed the connection]
steven[m] has quit [Remote host closed the connection]
Chuck[m] has quit [Remote host closed the connection]
H3ndr1k[m] has quit [Read error: Connection reset by peer]
M-BostonEnginerd has quit [Read error: Connection reset by peer]
ekroon has quit [Read error: Connection reset by peer]
Guest159893[m] has quit [Read error: Connection reset by peer]
citizenerased[m] has quit [Read error: Connection reset by peer]
cbHXBY1D[m] has quit [Read error: Connection reset by peer]
neurochemical[m] has quit [Read error: Connection reset by peer]
Guest155377[m] has quit [Read error: Connection reset by peer]
Guest187693[m] has quit [Read error: Connection reset by peer]
Guest161720[m] has quit [Read error: Connection reset by peer]
hansnust[m] has quit [Read error: Connection reset by peer]
dawnbreez[m] has quit [Read error: Connection reset by peer]
Guest153546[m] has quit [Read error: Connection reset by peer]
silwol has quit [Read error: Connection reset by peer]
M-HirmeS has quit [Read error: Connection reset by peer]
ZerataX[m] has quit [Read error: Connection reset by peer]
chao[m] has quit [Read error: Connection reset by peer]
vd[m] has quit [Read error: Connection reset by peer]
Visevius[m] has quit [Read error: Connection reset by peer]
nocylah has quit [Remote host closed the connection]
Guest186383[m] has quit [Remote host closed the connection]
chrono[m] has quit [Read error: Connection reset by peer]
tree[m] has quit [Read error: Connection reset by peer]
M-iav has quit [Read error: Connection reset by peer]
Guest178412[m] has quit [Read error: Connection reset by peer]
irx[m] has quit [Write error: Connection reset by peer]
notafile[m] has quit [Write error: Connection reset by peer]
davidar_ has quit [Write error: Connection reset by peer]
onlnr has quit [Write error: Connection reset by peer]
gmanrwp[m] has quit [Write error: Connection reset by peer]
qolop[m] has quit [Write error: Connection reset by peer]
neurocis[m] has quit [Write error: Connection reset by peer]
NathanBraswell[m has quit [Write error: Connection reset by peer]
datenpunk[m] has quit [Write error: Connection reset by peer]
garrettr[m] has quit [Write error: Connection reset by peer]
M-3630 has quit [Remote host closed the connection]
remmy[m] has quit [Read error: Connection reset by peer]
Guest154416[m] has quit [Read error: Connection reset by peer]
M-liberdiko has quit [Read error: Connection reset by peer]
Guest176690[m] has quit [Remote host closed the connection]
sushipantsu[m] has quit [Remote host closed the connection]
COREILLY[m] has quit [Read error: Connection reset by peer]
Kalq[m] has quit [Read error: Connection reset by peer]
kythyria[m] has quit [Read error: Connection reset by peer]
Guest177719[m] has quit [Remote host closed the connection]
sickill[m] has quit [Remote host closed the connection]
Guest185556[m] has quit [Remote host closed the connection]
djokeefe[m] has quit [Write error: Connection reset by peer]
stardot[m] has quit [Write error: Connection reset by peer]
fredrikj[m] has quit [Read error: Connection reset by peer]
DokterBob has quit [Remote host closed the connection]
dietrich[m] has quit [Remote host closed the connection]
jose12[m] has quit [Remote host closed the connection]
Guest157166[m] has quit [Read error: Connection reset by peer]
Guest173654[m] has quit [Read error: Connection reset by peer]
Guest156174[m] has quit [Read error: Connection reset by peer]
kpcyrd[m] has quit [Read error: Connection reset by peer]
Jean-PierreLauri has quit [Read error: Connection reset by peer]
Guest190290[m] has quit [Read error: Connection reset by peer]
x1402[m] has quit [Read error: Connection reset by peer]
mikkaworkscom[m] has quit [Read error: Connection reset by peer]
M-krsiehl has quit [Write error: Connection reset by peer]
t0dd[m] has quit [Write error: Connection reset by peer]
Guest182243[m]1 has quit [Read error: Connection reset by peer]
musoke[m] has quit [Read error: Connection reset by peer]
jimtendo[m] has quit [Remote host closed the connection]
Guest158700[m] has quit [Remote host closed the connection]
troy[m] has quit [Remote host closed the connection]
Leer10[m] has quit [Read error: Connection reset by peer]
gentam[m] has quit [Read error: Connection reset by peer]
minibar[m] has quit [Read error: Connection reset by peer]
tk[m] has quit [Read error: Connection reset by peer]
BanJo[m] has quit [Remote host closed the connection]
lugarius has quit [Write error: Connection reset by peer]
djhaskin987[m] has quit [Write error: Connection reset by peer]
erikj` has quit [Read error: Connection reset by peer]
patrickr[m] has quit [Read error: Connection reset by peer]
wew[m] has quit [Read error: Connection reset by peer]
gwillen[m] has quit [Remote host closed the connection]
N80[m] has quit [Remote host closed the connection]
TheGreatNi[m]1 has quit [Read error: Connection reset by peer]
Guest154943[m] has quit [Read error: Connection reset by peer]
jhulten[m] has quit [Write error: Connection reset by peer]
pep0ni[m] has quit [Write error: Connection reset by peer]
because[m] has quit [Read error: Connection reset by peer]
Guest151173[m] has quit [Read error: Connection reset by peer]
Guest147163[m] has quit [Remote host closed the connection]
derina[m] has quit [Read error: Connection reset by peer]
hannes[m] has quit [Remote host closed the connection]
cryptix has quit [Remote host closed the connection]
harlock[m] has quit [Remote host closed the connection]
ztl8702[m] has quit [Remote host closed the connection]
stevenleeg[m] has quit [Remote host closed the connection]
Guest94493[m] has quit [Remote host closed the connection]
brettrick[m] has quit [Read error: Connection reset by peer]
M-gdr has quit [Read error: Connection reset by peer]
maxlath[m] has quit [Read error: Connection reset by peer]
basilgohar[m] has quit [Read error: Connection reset by peer]
notorioushanz[m] has quit [Read error: Connection reset by peer]
M-ms has quit [Read error: Connection reset by peer]
leinlawun[m] has quit [Read error: Connection reset by peer]
Hongar[m] has quit [Read error: Connection reset by peer]
Guest152989[m] has quit [Read error: Connection reset by peer]
litebit[m] has quit [Read error: Connection reset by peer]
Guest125071[m] has quit [Read error: Connection reset by peer]
vpham24[m] has quit [Read error: Connection reset by peer]
Guest146683[m] has quit [Remote host closed the connection]
xylofonic[m] has quit [Remote host closed the connection]
Guest136220[m] has quit [Read error: Connection reset by peer]
wking[m] has quit [Remote host closed the connection]
BreatheTech[m] has quit [Write error: Connection reset by peer]
stretch[m] has quit [Write error: Connection reset by peer]
timthelion[m] has quit [Write error: Connection reset by peer]
Simon[m]1 has quit [Write error: Connection reset by peer]
kfrooney[m] has quit [Write error: Connection reset by peer]
saintaquinas[m] has quit [Write error: Connection reset by peer]
Guest172436[m] has quit [Remote host closed the connection]
drakaro[m] has quit [Read error: Connection reset by peer]
frabcus[m] has quit [Read error: Connection reset by peer]
M386dxturbo[m] has quit [Read error: Connection reset by peer]
syncing[m] has quit [Read error: Connection reset by peer]
steefmin[m] has quit [Read error: Connection reset by peer]
M-martinklepsch has quit [Remote host closed the connection]
Bloo[m] has quit [Remote host closed the connection]
dhole[m] has quit [Write error: Connection reset by peer]
grensjo[m] has quit [Remote host closed the connection]
Adam[m] has quit [Write error: Connection reset by peer]
Silke^ has quit [Read error: Connection reset by peer]
charlienyc[m] has quit [Read error: Connection reset by peer]
albuic has quit [Read error: Connection reset by peer]
shellkr[m] has quit [Read error: Connection reset by peer]
M-sol56 has quit [Read error: Connection reset by peer]
frabrunelle1 has quit [Read error: Connection reset by peer]
Guest182150[m] has quit [Read error: Connection reset by peer]
WiredDude[m] has quit [Read error: Connection reset by peer]
digitaleirkir[m] has quit [Read error: Connection reset by peer]
cyberpepe[m] has quit [Read error: Connection reset by peer]
caught_in_the_ma has quit [Read error: Connection reset by peer]
musicmatze[m] has quit [Read error: Connection reset by peer]
prime1101[m] has quit [Read error: Connection reset by peer]
hexkey[m] has quit [Remote host closed the connection]
sam[m] has quit [Read error: Connection reset by peer]
Markus72[m] has quit [Read error: Connection reset by peer]
MajorScale[m] has quit [Read error: Connection reset by peer]
M-arx has quit [Write error: Connection reset by peer]
madduck[m] has quit [Write error: Connection reset by peer]
M-wldhx has quit [Write error: Connection reset by peer]
bb010g has quit [Write error: Connection reset by peer]
M-Amandine has quit [Write error: Connection reset by peer]
n0x65B[m] has quit [Write error: Connection reset by peer]
Guest180558[m] has quit [Write error: Connection reset by peer]
davidar has quit [Write error: Connection reset by peer]
exyi[m] has quit [Write error: Connection reset by peer]
jayaura has quit [Write error: Connection reset by peer]
beauner[m] has quit [Write error: Connection reset by peer]
stormbuster[m] has quit [Write error: Connection reset by peer]
Guest139286[m] has quit [Write error: Connection reset by peer]
WinterFox[m] has quit [Write error: Connection reset by peer]
edsilv[m] has quit [Write error: Connection reset by peer]
Guest156168[m] has quit [Remote host closed the connection]
bumi[m] has quit [Read error: Connection reset by peer]
luisbg[m] has quit [Read error: Connection reset by peer]
Guest170096[m] has quit [Read error: Connection reset by peer]
mith[m] has quit [Read error: Connection reset by peer]
null_radix[m] has quit [Read error: Connection reset by peer]
M-Angel[m] has quit [Write error: Connection reset by peer]
torarne has quit [Write error: Connection reset by peer]
wakest has quit [Read error: Connection reset by peer]
Guest164288[m] has quit [Read error: Connection reset by peer]
Emacsen[m] has quit [Write error: Connection reset by peer]
Guest139267[m] has quit [Write error: Connection reset by peer]
kharybdis[m] has quit [Write error: Connection reset by peer]
HawkeyeTenderwol has quit [Write error: Connection reset by peer]
M-oddvar has quit [Write error: Connection reset by peer]
atenorio[m]1 has quit [Remote host closed the connection]
Crest[m] has quit [Remote host closed the connection]
igel[m] has quit [Read error: Connection reset by peer]
m3tti[m] has quit [Read error: Connection reset by peer]
DavidAmorn[m] has quit [Read error: Connection reset by peer]
petal[m] has quit [Read error: Connection reset by peer]
Hansf[m] has quit [Remote host closed the connection]
Prometheu5[m] has quit [Read error: Connection reset by peer]
Powersource has quit [Write error: Connection reset by peer]
orsys[m] has quit [Write error: Connection reset by peer]
AntoineM[m] has quit [Remote host closed the connection]
panicbit-M has quit [Write error: Broken pipe]
firemound[m] has quit [Read error: Connection reset by peer]
Guest149259[m] has quit [Read error: Connection reset by peer]
xtarget[m] has quit [Write error: Connection reset by peer]
fhs[m] has quit [Read error: Connection reset by peer]
parmenides has quit [Write error: Connection reset by peer]
guest6977[m] has quit [Read error: Connection reset by peer]
keks[m] has quit [Read error: Connection reset by peer]
Guest150078[m] has quit [Read error: Connection reset by peer]
Guest153399[m] has quit [Read error: Connection reset by peer]
Kinch[m] has quit [Read error: Connection reset by peer]
M-sraja has quit [Write error: Connection reset by peer]
jbbr[m] has quit [Write error: Connection reset by peer]
toodlepop[m] has quit [Write error: Connection reset by peer]
fil_redpill has quit [Write error: Connection reset by peer]
flacks[m] has quit [Write error: Connection reset by peer]
magog[m] has quit [Write error: Connection reset by peer]
Guest157354[m] has quit [Read error: Connection reset by peer]
filispim[m] has quit [Read error: Connection reset by peer]
adn[m] has quit [Write error: Connection reset by peer]
Guest186054[m] has quit [Write error: Connection reset by peer]
nuxlli[m] has quit [Write error: Connection reset by peer]
mythmon-1 has quit [Remote host closed the connection]
RasmusErik[m] has quit [Remote host closed the connection]
pool[m] has quit [Remote host closed the connection]
Matthew[m] has quit [Read error: Connection reset by peer]
phil-flexhk[m] has quit [Read error: Connection reset by peer]
M-slang has quit [Read error: Connection reset by peer]
ekaforce[m] has quit [Write error: Connection reset by peer]
nando[m] has quit [Write error: Connection reset by peer]
Guest146508[m] has quit [Write error: Connection reset by peer]
gsf[m] has quit [Write error: Connection reset by peer]
mingchan88[m] has quit [Write error: Connection reset by peer]
Guest162792[m] has quit [Write error: Connection reset by peer]
manolis[m] has quit [Write error: Connection reset by peer]
absdog18[m] has quit [Write error: Connection reset by peer]
M-neoteo has quit [Write error: Connection reset by peer]
robguthrie[m] has quit [Write error: Connection reset by peer]
Guest188462[m] has quit [Read error: Connection reset by peer]
Guest175579[m] has quit [Write error: Connection reset by peer]
Guest157741[m] has quit [Read error: Connection reset by peer]
nick2000 has quit [Read error: Connection reset by peer]
funspectre[m] has quit [Read error: Connection reset by peer]
Guest154195[m] has quit [Read error: Connection reset by peer]
allen369[m] has quit [Read error: Connection reset by peer]
gendale[m] has quit [Read error: Connection reset by peer]
hjoest[m] has quit [Read error: Connection reset by peer]
Guest163234[m] has quit [Read error: Connection reset by peer]
nop[m] has quit [Read error: Connection reset by peer]
edou[m] has quit [Read error: Connection reset by peer]
krigare[m] has quit [Read error: Connection reset by peer]
cwahlers_ has joined #ipfs
cwahlers has quit [Ping timeout: 260 seconds]
xtarget[m] has joined #ipfs
tmg has joined #ipfs
Kegsay has joined #ipfs
melvster has joined #ipfs
<hsanjuan> !pin QmfLqYeMYKwcQdgwVHNy9RRoJNvDvAaFJ2RMmYwQLGdJYh dist-cluster-0.0.11
<pinbot> now pinning on 8 nodes
SeeSee[m] has joined #ipfs
sirdancealot has joined #ipfs
<pinbot> pinned on 8 of 8 nodes (0 failures) -- https://ipfs.io/ipfs/QmfLqYeMYKwcQdgwVHNy9RRoJNvDvAaFJ2RMmYwQLGdJYh
jkilpatr has joined #ipfs
wak-work has quit [Ping timeout: 246 seconds]
ygrek_ has quit [Ping timeout: 268 seconds]
hoenir has left #ipfs ["Leaving"]
rendar has joined #ipfs
arpl has joined #ipfs
wak-work has joined #ipfs
__uguu__ has joined #ipfs
__uguu__ has left #ipfs [#ipfs]
devtek[m] has joined #ipfs
devtek[m] has left #ipfs [#ipfs]
tmg has quit [Ping timeout: 240 seconds]
hexkey[m] has joined #ipfs
jfred[m] has joined #ipfs
Guest161720[m] has joined #ipfs
Edur[m] has joined #ipfs
edsilv[m] has joined #ipfs
Guest170096[m] has joined #ipfs
Prometheu5[m] has joined #ipfs
t0dd[m] has joined #ipfs
nick2000 has joined #ipfs
M-krsiehl has joined #ipfs
Aidan[m] has joined #ipfs
Seby[m] has joined #ipfs
silwol has joined #ipfs
Guest20685[m] has joined #ipfs
jose12[m] has joined #ipfs
Guest139286[m] has joined #ipfs
Famicoman[m] has joined #ipfs
somatronicon[m] has joined #ipfs
tidux[m] has joined #ipfs
joshb[m] has joined #ipfs
nop[m] has joined #ipfs
tk[m] has joined #ipfs
sudoreboot[m] has joined #ipfs
M-TidyKoala has joined #ipfs
Kalq[m] has joined #ipfs
cdetrio[m] has joined #ipfs
sickill[m] has joined #ipfs
thejohnhenry[m] has joined #ipfs
mith[m] has joined #ipfs
network[m] has joined #ipfs
M-jimt has joined #ipfs
keks[m] has joined #ipfs
gabyshu[m] has joined #ipfs
Guest174215[m] has joined #ipfs
M-hash has joined #ipfs
Guest176961[m] has joined #ipfs
Guest155377[m] has joined #ipfs
Kobberholm[m] has joined #ipfs
Guest94493[m] has joined #ipfs
herzmeister[m] has joined #ipfs
Guest149624[m] has joined #ipfs
M-kalmi has joined #ipfs
thekyriarchy has joined #ipfs
M-wldhx has joined #ipfs
M-BostonEnginerd has joined #ipfs
fcro[m] has joined #ipfs
litebit[m] has joined #ipfs
datenpunk[m] has joined #ipfs
Powersource has joined #ipfs
M-Dave has joined #ipfs
ivegotasthma[m] has joined #ipfs
Zedwick[m] has joined #ipfs
erikj` has joined #ipfs
fiatjaf[m] has joined #ipfs
Guest172436[m] has joined #ipfs
cyberpepe[m] has joined #ipfs
Guest156247[m] has joined #ipfs
remmy[m] has joined #ipfs
nuxlli[m] has joined #ipfs
zandy[m] has joined #ipfs
Guest182150[m] has joined #ipfs
gmanrwp[m] has joined #ipfs
M-slang has joined #ipfs
Zbyszek[m] has joined #ipfs
m3tti[m] has joined #ipfs
Guest172466[m] has joined #ipfs
albuic has joined #ipfs
jsyn[m] has joined #ipfs
cbHXBY1D[m] has joined #ipfs
M-sol56 has joined #ipfs
glnro[m] has joined #ipfs
musoke[m] has joined #ipfs
Matthew[m] has joined #ipfs
garblur83[m] has joined #ipfs
sk23[m] has joined #ipfs
M-oddvar has joined #ipfs
ZerataX[m] has joined #ipfs
panicbit-M has joined #ipfs
cornu[m] has joined #ipfs
atenorio[m] has joined #ipfs
gentam[m] has joined #ipfs
gendale[m] has joined #ipfs
Guest149259[m] has joined #ipfs
Tortulez[m] has joined #ipfs
kfrooney[m] has joined #ipfs
Chuck[m] has joined #ipfs
bart80[m] has joined #ipfs
fr33[m] has joined #ipfs
hippopete[m] has joined #ipfs
garrettr[m] has joined #ipfs
M-frobel has joined #ipfs
jhulten[m] has joined #ipfs
zbxdhskosoww[m] has joined #ipfs
RasmusErik[m] has joined #ipfs
M-iav has joined #ipfs
kRo[m] has joined #ipfs
M-ms has joined #ipfs
timthelion[m] has joined #ipfs
interfect[m] has joined #ipfs
bgrayburn[m] has joined #ipfs
wking[m] has joined #ipfs
notorioushanz[m] has joined #ipfs
tree[m] has joined #ipfs
M-sraja has joined #ipfs
palkeo[m] has joined #ipfs
masoodahm[m] has joined #ipfs
Guest190290[m] has joined #ipfs
charlienyc[m] has joined #ipfs
nocylah has joined #ipfs
Rad[m] has joined #ipfs
djokeefe[m] has joined #ipfs
HawkeyeTenderwol has joined #ipfs
M386dxturbo[m] has joined #ipfs
Guest187693[m] has joined #ipfs
Guest157354[m] has joined #ipfs
M-javissimo has joined #ipfs
steefmin[m] has joined #ipfs
AntoineM[m] has joined #ipfs
Guest178412[m] has joined #ipfs
adn[m] has joined #ipfs
Guest125071[m] has joined #ipfs
M107262[m] has joined #ipfs
Guest139267[m] has joined #ipfs
chpio[m] has joined #ipfs
xldrkp[m] has joined #ipfs
Guest157741[m] has joined #ipfs
M-liberdiko has joined #ipfs
allen369[m] has joined #ipfs
Guest158700[m] has joined #ipfs
Nekit[m] has joined #ipfs
M-arx has joined #ipfs
ttk2[m] has joined #ipfs
MrAxilus[m] has joined #ipfs
Guest147163[m] has joined #ipfs
DokterBob has joined #ipfs
prime1101[m] has joined #ipfs
seedbox[m] has joined #ipfs
NathanBraswell[m has joined #ipfs
mingchan88[m] has joined #ipfs
leinlawun[m] has joined #ipfs
M-anomie has joined #ipfs
madduck[m] has joined #ipfs
fil_redpill has joined #ipfs
M-martinklepsch has joined #ipfs
N80[m] has joined #ipfs
frabrunelle has joined #ipfs
gwillen[m] has joined #ipfs
agumonkey[m] has joined #ipfs
jon[m]1 has joined #ipfs
TheGreatNi[m] has joined #ipfs
stevenleeg[m] has joined #ipfs
Guest177417[m] has joined #ipfs
M-Amandine has joined #ipfs
qolop[m] has joined #ipfs
wjh[m] has joined #ipfs
Guest185556[m] has joined #ipfs
M-alien has joined #ipfs
stardot[m] has joined #ipfs
basilgohar[m] has joined #ipfs
Prussian_peyote[ has joined #ipfs
Guest178670[m] has joined #ipfs
drakaro[m] has joined #ipfs
rpdillon[m] has joined #ipfs
irx[m] has joined #ipfs
urhuruhurh[m] has joined #ipfs
onlnr has joined #ipfs
yuh96bbn[m] has joined #ipfs
krigare[m] has joined #ipfs
fhs[m] has joined #ipfs
krig[m] has joined #ipfs
mirek1337[m] has joined #ipfs
Guest144612[m] has joined #ipfs
BeautifulBash[m] has joined #ipfs
stormbuster[m] has joined #ipfs
kpcyrd[m] has joined #ipfs
steindekker[m] has joined #ipfs
toodlepop[m] has joined #ipfs
exyi[m] has joined #ipfs
grouchofractal2[ has joined #ipfs
Guest153546[m] has joined #ipfs
neurocis[m] has joined #ipfs
luisbg[m] has joined #ipfs
vpham24[m] has joined #ipfs
Paul[m] has joined #ipfs
moellus[m] has joined #ipfs
xloem1 has joined #ipfs
Hongar[m] has joined #ipfs
jbbr[m] has joined #ipfs
cryptix has joined #ipfs
RomainLeCarrer[m has joined #ipfs
Jean-PierreLauri has joined #ipfs
harlock[m] has joined #ipfs
Guest180558[m] has joined #ipfs
Emacsen[m] has joined #ipfs
kegan[m] has joined #ipfs
hiq[m] has joined #ipfs
Silke^ has joined #ipfs
Guest182011[m] has joined #ipfs
Polychrome[m] has joined #ipfs
jeremycahill[m] has joined #ipfs
pep0ni[m] has joined #ipfs
travisr has joined #ipfs
RaymondFoley[m] has joined #ipfs
bb010g has joined #ipfs
firemound[m] has joined #ipfs
M-jfred has joined #ipfs
unlmtd[m] has joined #ipfs
max_power[m] has joined #ipfs
Guest186849[m] has joined #ipfs
Lucas[m] has joined #ipfs
astronavt[m] has joined #ipfs
caught_in_the_ma has joined #ipfs
Guest159402[m] has joined #ipfs
orsys[m] has joined #ipfs
hans[m] has joined #ipfs
jpereira[m] has joined #ipfs
patrickr[m] has joined #ipfs
Guest157993[m] has joined #ipfs
H3ndr1k[m] has joined #ipfs
Guest189820[m] has joined #ipfs
ztl8702[m] has joined #ipfs
asyncsrc[m] has joined #ipfs
Guest164949[m] has joined #ipfs
Guest156348[m] has joined #ipfs
citizenerased[m] has joined #ipfs
adrianovalle[m] has joined #ipfs
DavidAmorn[m] has joined #ipfs
BreatheTech[m] has joined #ipfs
M-mubot has joined #ipfs
davidar_ has joined #ipfs
iwxzr[m] has joined #ipfs
fredrikj[m] has joined #ipfs
pool[m] has joined #ipfs
rschulman has joined #ipfs
dietrich[m] has joined #ipfs
Guest183312[m] has joined #ipfs
dyce[m] has joined #ipfs
Guest167336[m] has joined #ipfs
sabba[m] has joined #ipfs
brettrick[m] has joined #ipfs
Guest159893[m] has joined #ipfs
torarne has joined #ipfs
synth[m] has joined #ipfs
hjoest[m] has joined #ipfs
Guest146683[m] has joined #ipfs
Hansf[m] has joined #ipfs
parmenides has joined #ipfs
chao[m] has joined #ipfs
WinterFox[m] has joined #ipfs
M-gdr has joined #ipfs
absdog18[m] has joined #ipfs
dhole[m] has joined #ipfs
WiredDude[m] has joined #ipfs
Guest154554[m] has joined #ipfs
steven[m] has joined #ipfs
derina[m] has joined #ipfs
mojarra[m] has joined #ipfs
Drew[m] has joined #ipfs
edou[m] has joined #ipfs
artemist[m] has joined #ipfs
robguthrie[m] has joined #ipfs
maxlath[m] has joined #ipfs
Guest156174[m] has joined #ipfs
stanko[m] has joined #ipfs
endes[m] has joined #ipfs
null_radix[m] has joined #ipfs
Buli[m] has joined #ipfs
M-neoteo has joined #ipfs
fabrixxm has joined #ipfs
mikkaworkscom[m] has joined #ipfs
xamino[m] has joined #ipfs
sushipantsu[m] has joined #ipfs
Adam[m]1 has joined #ipfs
filispim[m] has joined #ipfs
Leer10[m] has joined #ipfs
lugarius has joined #ipfs
Quiark_ has joined #ipfs
frabcus[m] has joined #ipfs
ph12[m] has joined #ipfs
minibar[m] has joined #ipfs
Guest162792[m] has joined #ipfs
EuAndreh[m] has joined #ipfs
Guest152989[m] has joined #ipfs
funspectre[m] has joined #ipfs
Guest148729[m] has joined #ipfs
Guest154943[m] has joined #ipfs
gsf[m]1 has joined #ipfs
Guest146508[m] has joined #ipfs
Crest[m] has joined #ipfs
Guest182243[m] has joined #ipfs
x1402[m] has joined #ipfs
shellkr[m] has joined #ipfs
igel[m] has joined #ipfs
jord[m] has joined #ipfs
beauner[m] has joined #ipfs
davidar has joined #ipfs
ekaforce[m] has joined #ipfs
Guest150078[m] has joined #ipfs
Guest157166[m] has joined #ipfs
plindner has joined #ipfs
djhaskin987[m] has joined #ipfs
Guest154416[m] has joined #ipfs
hansnust[m] has joined #ipfs
bumi[m] has joined #ipfs
COREILLY[m] has joined #ipfs
Guest151173[m] has joined #ipfs
Guest136220[m] has joined #ipfs
Guest175579[m] has joined #ipfs
magog[m] has joined #ipfs
Guest186383[m] has joined #ipfs
Guest154195[m] has joined #ipfs
Guest173654[m] has joined #ipfs
Guest180345[m] has joined #ipfs
stoneridge has joined #ipfs
xylofonic[m] has joined #ipfs
petal[m] has joined #ipfs
wakest has joined #ipfs
MajorScale[m] has joined #ipfs
Olivier[matrix] has joined #ipfs
kewde[m] has joined #ipfs
dawnbreez[m] has joined #ipfs
M-HirmeS has joined #ipfs
Guest176690[m] has joined #ipfs
mythmon- has joined #ipfs
xuv[m] has joined #ipfs
troy[m] has joined #ipfs
Guest177719[m] has joined #ipfs
stretch[m] has joined #ipfs
notafile[m] has joined #ipfs
nando[m] has joined #ipfs
hannes[m] has joined #ipfs
grensjo[m] has joined #ipfs
sam[m] has joined #ipfs
Guest156168[m] has joined #ipfs
esbjorn[m] has joined #ipfs
M-3630 has joined #ipfs
Remramm has joined #ipfs
Guest164288[m] has joined #ipfs
phil-flexhk[m] has joined #ipfs
digitaleirkir[m] has joined #ipfs
Neurolit[m] has joined #ipfs
cptaffe has joined #ipfs
tkorrison[m] has joined #ipfs
Guest185910[m] has joined #ipfs
Scio[m] has joined #ipfs
syncing[m] has joined #ipfs
dtz has joined #ipfs
flacks[m] has joined #ipfs
thirdcentury[m] has joined #ipfs
Kinch[m] has joined #ipfs
alx[m] has joined #ipfs
rdesfo[m] has joined #ipfs
vd[m] has joined #ipfs
ekroon has joined #ipfs
neurochemical[m] has joined #ipfs
jimtendo[m] has joined #ipfs
Guest153399[m] has joined #ipfs
Markus72[m] has joined #ipfs
Guest186054[m] has joined #ipfs
saintaquinas[m] has joined #ipfs
because[m] has joined #ipfs
musicmatze[m] has joined #ipfs
BanJo[m] has joined #ipfs
guest6977[m] has joined #ipfs
Guest163234[m] has joined #ipfs
kythyria[m] has joined #ipfs
am2on has joined #ipfs
bethan[m] has joined #ipfs
Guest144866[m] has joined #ipfs
Guest163413[m] has joined #ipfs
manolis[m] has joined #ipfs
Guest90184 has joined #ipfs
Simon[m] has joined #ipfs
Bloo[m] has joined #ipfs
wew[m] has joined #ipfs
chrono[m] has joined #ipfs
M-brain has joined #ipfs
Visevius[m] has joined #ipfs
afdudley[m]1 has joined #ipfs
Guest188462[m] has joined #ipfs
n0x65B[m] has joined #ipfs
kharybdis[m] has joined #ipfs
toppler has quit [Remote host closed the connection]
toppler has joined #ipfs
sirdancealot has quit [Ping timeout: 260 seconds]
area has quit [Ping timeout: 264 seconds]
tmg has joined #ipfs
<hsanjuan> !pin QmWf2asBu54nEaCzfJtdyP1KQjf4pWXmqeHYHZJm86eHAT cluster-init.gif
<pinbot> now pinning on 8 nodes
<pinbot> pinned on 8 of 8 nodes (0 failures) -- https://ipfs.io/ipfs/QmWf2asBu54nEaCzfJtdyP1KQjf4pWXmqeHYHZJm86eHAT
cemerick has joined #ipfs
maxlath has quit [Ping timeout: 240 seconds]
skeuomorf has joined #ipfs
lugarius has left #ipfs ["User left"]
Kegsay has quit [Ping timeout: 246 seconds]
Kegsay has joined #ipfs
area has joined #ipfs
<fabrixxm> that's cool
mildred4 is now known as mildred
JayCarpenter has joined #ipfs
cemerick has quit [Ping timeout: 256 seconds]
ygrek_ has joined #ipfs
Kegsay has quit [Ping timeout: 264 seconds]
Kegsay has joined #ipfs
clownpriest has joined #ipfs
Boomerang has joined #ipfs
cemerick has joined #ipfs
PrinceOfPeeves has joined #ipfs
Boomerang has quit [Remote host closed the connection]
leeola has joined #ipfs
skeuomorf has quit [Ping timeout: 240 seconds]
<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?
galois_dmz has joined #ipfs
<SeeSee[m]> please excuse me I am an absolute noob with ipfs but what can be created with it so far?
<SeeSee[m]> Thanks @BanJo
<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
Guest90184 is now known as jayaura
jayaura is now known as Guest27470
<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)
sprint-helper has quit [Remote host closed the connection]
sprint-helper has joined #ipfs
<SeeSee[m]> What is that?
JustinDrake has joined #ipfs
<JustinDrake> I’m looking to know the IP address used when a secio connection is established. Is there a way to do that? https://github.com/libp2p/go-libp2p-host/issues/2
jkilpatr has quit [Quit: Leaving]
jkilpatr has joined #ipfs
<clownpriest> SeeSee[m]: the way you pay people to host your stuff on ipfs
<SeeSee[m]> I know about filecoin but what is CIMBA
cemerick has quit [Ping timeout: 256 seconds]
maxlath has joined #ipfs
ZaZ has joined #ipfs
aguardar has joined #ipfs
ashark has joined #ipfs
matoro has quit [Ping timeout: 256 seconds]
<herzmeister[m]> can i !pin anything here? even 100 gigs of all my crap?
<r0kk3rz> herzmeister[m]: pinbot wont let you
reit has quit [Quit: Leaving]
<herzmeister[m]> owwww :( am i underpriviledged after all?
sprint-helper has quit [Remote host closed the connection]
sprint-helper has joined #ipfs
Guest27470 is now known as jayaura
maxlath has quit [Remote host closed the connection]
maxlath has joined #ipfs
nunofmn has joined #ipfs
Mateon3 has joined #ipfs
ZaZ1 has joined #ipfs
Mateon1 has quit [Ping timeout: 240 seconds]
Mateon3 is now known as Mateon1
jonnycrunch has joined #ipfs
ZaZ has quit [Ping timeout: 260 seconds]
ylp1 has quit [Quit: Leaving.]
ZaZ has joined #ipfs
ZaZ1 has quit [Ping timeout: 260 seconds]
<hsanjuan> !pin QmWHUqD39QcpVCradmcoJHwtLZYgTpuji3iBukPyScyaWt cluster-mgmt.gif
<pinbot> now pinning on 8 nodes
<hsanjuan> JustinDrake: from where do you want to know it?
<hsanjuan> ah let me answer there
<pinbot> http://saturn.v.ipfs.team:5001 -- refs failed: Post http://saturn.v.ipfs.team:5001/api/v0/refs?arg=/ipfs/QmWHUqD39QcpVCradmcoJHwtLZYgTpuji3iBukPyScyaWt&encoding=json&stream-channels=true&r=true&: dial tcp [fc4e:5427:3cd0:cc4c:4770:25bb:a682:d06c]:5001: getsockopt: connection timed out
<pinbot> pinned on 7 of 8 nodes (1 failures) -- https://ipfs.io/ipfs/QmWHUqD39QcpVCradmcoJHwtLZYgTpuji3iBukPyScyaWt
ulrichard has quit [Remote host closed the connection]
<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.
<hsanjuan> !pin QmWHUqD39QcpVCradmcoJHwtLZYgTpuji3iBukPyScyaWt cluster-mgmt.gif
<pinbot> now pinning on 8 nodes
<hsanjuan> JustinDrake: I answered in the issue
palkeo has joined #ipfs
palkeo has joined #ipfs
palkeo has quit [Changing host]
<JustinDrake> hsanjuan: Thanks! :)
<pinbot> http://saturn.v.ipfs.team:5001 -- refs failed: Post http://saturn.v.ipfs.team:5001/api/v0/refs?arg=/ipfs/QmWHUqD39QcpVCradmcoJHwtLZYgTpuji3iBukPyScyaWt&stream-channels=true&r=true&encoding=json&: dial tcp [fc4e:5427:3cd0:cc4c:4770:25bb:a682:d06c]:5001: getsockopt: connection timed out
<pinbot> pinned on 7 of 8 nodes (1 failures) -- https://ipfs.io/ipfs/QmWHUqD39QcpVCradmcoJHwtLZYgTpuji3iBukPyScyaWt
palkeo has quit [Quit: Konversation terminated!]
mildred has quit [Ping timeout: 256 seconds]
Aranjedeath has joined #ipfs
reit has joined #ipfs
jonnycrunch has quit [Quit: jonnycrunch]
Boomerang has joined #ipfs
<SchrodingersScat> I've been using https://ipfs.io/ipfs/QmUNNmMYSiqhXVMTPtaNJxJh5YVFJeZ2a19nz3ervVp2Sy to unpin things
dimitarvp has joined #ipfs
maxlath1 has joined #ipfs
maxlath has quit [Ping timeout: 260 seconds]
Kegsay has quit [Ping timeout: 240 seconds]
hyperirc-dd1a46f has joined #ipfs
maxlath1 has quit [Ping timeout: 268 seconds]
maxlath has joined #ipfs
<JustinDrake> Can I do `gx update` on all package.json GX packages?
jack has joined #ipfs
tmg has quit [Ping timeout: 240 seconds]
hyperirc-dd1a46f has quit [Remote host closed the connection]
hyperirc-dd1a46f has joined #ipfs
maxlath has quit [Ping timeout: 268 seconds]
nunofmn has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
maxlath has joined #ipfs
nunofmn has joined #ipfs
maxlath has quit [Ping timeout: 260 seconds]
aguardar has quit [Quit: Connection closed for inactivity]
hyperirc-dd1a46f has quit [Remote host closed the connection]
hyperirc-dd1a46f has joined #ipfs
hyperirc-dd1a46f has quit [Remote host closed the connection]
hyperirc-dd1a46f has joined #ipfs
<JustinDrake> Where do the go-log logs go when using go-libp2p directly?
cemerick has joined #ipfs
hyperirc-dd1a46f has quit [Remote host closed the connection]
hyperirc-dd1a46f has joined #ipfs
hyperirc-dd1a46f has quit [Remote host closed the connection]
hyperirc-dd1a46f has joined #ipfs
Encrypt has joined #ipfs
<whyrusleeping> JustinDrake: You can either set the logging level higher through the go log package
<whyrusleeping> or you can use the env var IPFS_LOGGING to select a global logging level
<whyrusleeping> JustinDrake: what do you mean by: "Can I do `gx update` on all package.json GX packages?"
s_kunk has quit [Ping timeout: 260 seconds]
MDude has quit [Ping timeout: 240 seconds]
matoro has joined #ipfs
spacebar_ has joined #ipfs
s_kunk has joined #ipfs
<hsanjuan> !pin QmZGnfMUhXcWrf6aKYD3M5M6c7rwT7dwpGrJK4uy6BSv8h ipfs-cluster-gifs
<pinbot> now pinning on 8 nodes
<pinbot> pinned on 8 of 8 nodes (0 failures) -- https://ipfs.io/ipfs/QmZGnfMUhXcWrf6aKYD3M5M6c7rwT7dwpGrJK4uy6BSv8h
anewuser has quit [Ping timeout: 264 seconds]
hyperirc-dd1a46f has quit [Ping timeout: 258 seconds]
<JustinDrake> whyrusleeping: Thanks!
<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?
<whyrusleeping> JustinDrake: oh, hrm...
<whyrusleeping> JustinDrake: thats a good point. We should probably add websockets to the fallback
<JustinDrake> Why do it at all?
<whyrusleeping> JustinDrake: theres also been some issues we've noticed with the websockets transport
thomersch has quit [Quit: thomersch]
<whyrusleeping> JustinDrake: what do you mena?
anewuser has joined #ipfs
<JustinDrake> Surely we should be able to dial on most transports without listening at all
<JustinDrake> What issues?
<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
<whyrusleeping> JustinDrake: when we enable websockets for our t0130 test, things appear to fial
<whyrusleeping> wow, i cant type this morning
<whyrusleeping> I still need to spend time looking at it
<JustinDrake> ok, cool. Thanks :)
<whyrusleeping> though it apparently works well enough for the javascript team to use
espadrine has quit [Ping timeout: 256 seconds]
<whyrusleeping> so go ahead and experiment with it, let us know any issues you have
matoro has quit [Ping timeout: 246 seconds]
<hsanjuan> !unpin QmZGnfMUhXcWrf6aKYD3M5M6c7rwT7dwpGrJK4uy6BSv8h
<pinbot> now unpinning on 8 nodes
ShalokShalom has joined #ipfs
<hsanjuan> !pin QmVMKD39fYJG9QGyyFkGN3QuZRg3EfuuxqkG1scCo9ZUHp ipfs-cluster-gifs
<pinbot> now pinning on 8 nodes
<pinbot> pinned on 8 of 8 nodes (0 failures) -- https://ipfs.io/ipfs/QmVMKD39fYJG9QGyyFkGN3QuZRg3EfuuxqkG1scCo9ZUHp
<pinbot> unpinned on 8 of 8 nodes (0 failures) -- https://ipfs.io/ipfs/QmZGnfMUhXcWrf6aKYD3M5M6c7rwT7dwpGrJK4uy6BSv8h
ShalokShalom_ has quit [Ping timeout: 268 seconds]
matoro has joined #ipfs
hyperirc-dd1a46f has joined #ipfs
arpu has quit [Ping timeout: 256 seconds]
Encrypt has quit [Quit: Quit]
jack has quit [Quit: Leaving]
JustinDrake has quit [Quit: JustinDrake]
hyperirc-dd1a46f has quit [Ping timeout: 264 seconds]
mildred has joined #ipfs
arpu has joined #ipfs
realisation has joined #ipfs
inetic has quit [Ping timeout: 260 seconds]
<whyrusleeping> hsanjuan: you should use asciinema :)
<hsanjuan> whyrusleeping: I use it
<hsanjuan> but then convert to gif
jkilpatr has quit [Quit: Leaving]
<whyrusleeping> oh, interesting, just because its easier to embed or something?
jkilpatr has joined #ipfs
Guest54701[m] has joined #ipfs
rendar has quit [Ping timeout: 264 seconds]
<hsanjuan> whyrusleeping: yeah, and to not depend on 3rd party JavaScripts
<whyrusleeping> hsanjuan: have you seen: https://github.com/jbenet/asciinema-selfhost ?
<hsanjuan> Nice haha
warner has quit [Quit: ERC (IRC client for Emacs 25.1.2)]
Guest191936[m] has joined #ipfs
arpu has quit [Read error: Connection reset by peer]
spacebar_ has quit [Quit: spacebar_ pressed ESC]
tilgovi has joined #ipfs
arpu has joined #ipfs
espadrine_ has joined #ipfs
mildred has quit [Ping timeout: 240 seconds]
matoro has quit [Ping timeout: 260 seconds]
TheGreatNi[m] has left #ipfs ["User left"]
spacebar_ has joined #ipfs
spacebar_ has quit [Client Quit]
Encrypt has joined #ipfs
spacebar_ has joined #ipfs
spacebar_ has quit [Client Quit]
matoro has joined #ipfs
mildred has joined #ipfs
JustinDrake has joined #ipfs
JustinDrake has quit [Client Quit]
ianopolous has quit [Ping timeout: 240 seconds]
Encrypt has quit [Quit: Quit]
ZaZ has quit [Read error: Connection reset by peer]
JustinDrake has joined #ipfs
lobbyist123[m] has joined #ipfs
robattila256 has joined #ipfs
tilgovi has quit [Remote host closed the connection]
rcat has quit [Ping timeout: 268 seconds]
sirdancealot has joined #ipfs
wak-work has quit [Remote host closed the connection]
rcat has joined #ipfs
JustinDrake has quit [Quit: JustinDrake]
jkilpatr has quit [Ping timeout: 246 seconds]
jkilpatr has joined #ipfs
ianopolous has joined #ipfs
warner has joined #ipfs
Mateon1 has quit [Remote host closed the connection]
tilgovi has joined #ipfs
cemerick has quit [Ping timeout: 256 seconds]
cemerick has joined #ipfs
shizy has joined #ipfs
chris613 has joined #ipfs
Mateon1 has joined #ipfs
matoro has quit [Ping timeout: 268 seconds]
ygrek_ has quit [Ping timeout: 260 seconds]
matoro has joined #ipfs
realisation has quit [Quit: Textual IRC Client: www.textualapp.com]
Lez has joined #ipfs
Lez has left #ipfs ["Leaving"]
ckwaldon has quit [Remote host closed the connection]
wkennington has joined #ipfs
spacebar_ has joined #ipfs
<chpio[m]> but... it's outdated?!
clownpriest has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
spacebar_ has quit [Quit: spacebar_ pressed ESC]
<chpio[m]> i think asciinemas file format changed since release
arpl has left #ipfs [#ipfs]
azahi has quit [Ping timeout: 264 seconds]
JustinDrake has joined #ipfs
shizy has quit [Ping timeout: 260 seconds]
azahi has joined #ipfs
JustinDrake has left #ipfs [#ipfs]
JustinDrake has joined #ipfs
ckwaldon has joined #ipfs
azahi has quit [Client Quit]
ianopolous has quit [Read error: Connection reset by peer]
JustinDrake has quit [Quit: JustinDrake]
cemerick has quit [Ping timeout: 256 seconds]
cxl000 has quit [Quit: Leaving]
Caterpillar has quit [Quit: You were not made to live as brutes, but to follow virtue and knowledge.]
Jesin has quit [Quit: Leaving]
dimitarvp` has joined #ipfs
<whyrusleeping> chpio[m]: we updated it lately?
<whyrusleeping> how recent is asciinemas change?
dimitarvp has quit [Ping timeout: 260 seconds]
JustinDrake has joined #ipfs
amdi_ has joined #ipfs
MrControll has joined #ipfs
area has quit [Quit: Lost terminal]
spossiba has quit [Quit: Lost terminal]
ashark has quit [Ping timeout: 264 seconds]
spossiba has joined #ipfs
<chpio[m]> ok, it's just the version on npm
<chpio[m]> https://www.npmjs.com/package/asciinema-selfhost - published 2 years ago
espadrine_ has quit [Ping timeout: 256 seconds]
skeuomorf has joined #ipfs
fpletz has left #ipfs ["^D"]
Jesin has joined #ipfs
ianopolous has joined #ipfs
nunofmn has quit [Ping timeout: 256 seconds]
ShalokShalom has quit [Quit: No Ping reply in 180 seconds.]
ShalokShalom has joined #ipfs
skeuomorf has quit [Read error: Connection reset by peer]
sirdancealot has quit [Ping timeout: 240 seconds]
wrouesnel has joined #ipfs
dimitarvp` is now known as dimitarvp
ShalokShalom has quit [Quit: No Ping reply in 180 seconds.]
matoro has quit [Ping timeout: 260 seconds]
ShalokShalom has joined #ipfs
webdev007 has joined #ipfs
ShalokShalom has quit [Client Quit]
JustinDrake has quit [Quit: JustinDrake]
ShalokShalom has joined #ipfs
tmg has joined #ipfs
arpu has quit [Ping timeout: 240 seconds]
rcat has quit [Ping timeout: 258 seconds]
matoro has joined #ipfs
ShalokShalom has quit [Quit: No Ping reply in 180 seconds.]
arpu has joined #ipfs
ShalokShalom has joined #ipfs
matoro has quit [Ping timeout: 240 seconds]
bwerthmann has quit [Ping timeout: 240 seconds]
bwerthmann has joined #ipfs
matoro has joined #ipfs
mildred has quit [Read error: Connection reset by peer]
mildred has joined #ipfs
Jesin has quit [Quit: Leaving]