jbenet changed the topic of #ipfs to: IPFS - InterPlanetary File System - https://github.com/ipfs/ipfs -- channel logged at https://botbot.me/freenode/ipfs/ -- Code of Conduct: https://github.com/ipfs/community/blob/master/code-of-conduct.md -- Sprints: https://github.com/ipfs/pm/ -- Community Info: https://github.com/ipfs/community/ -- FAQ: https://github.com/ipfs/faq -- Support: https://github.com/ipfs/support
rendar has quit [Quit: std::lower_bound + std::less_equal *works* with a vector without duplicates!]
Encrypt has quit [Quit: Quitte]
Arakela0_ has quit [Remote host closed the connection]
devbug has quit [Read error: Connection reset by peer]
devbug has joined #ipfs
computerfreak has joined #ipfs
palkeo has quit [Quit: Konversation terminated!]
Not_ has quit [Remote host closed the connection]
charley__ has joined #ipfs
charley_ has quit [Read error: Connection reset by peer]
agent008 has quit [Ping timeout: 246 seconds]
gozala has quit [Read error: Connection reset by peer]
gozala has joined #ipfs
mildred has joined #ipfs
agent008 has joined #ipfs
charley__ has quit [Ping timeout: 264 seconds]
charley_ has joined #ipfs
dd0 has joined #ipfs
mildred has quit [Ping timeout: 264 seconds]
TomasBond has quit [Ping timeout: 244 seconds]
mildred has joined #ipfs
charley_ has quit [Ping timeout: 260 seconds]
charley_ has joined #ipfs
ipfsrocks has quit [Ping timeout: 268 seconds]
inconshreveable has joined #ipfs
nicolagreco_ has joined #ipfs
calavera has joined #ipfs
<mildred> jbenet, whyrusleeping, anyone interested: I wouldn't mind advices on where I should take the IPLD PR: https://github.com/ipfs/go-ipld/pull/19/#issuecomment-194040880 (please answer in the PR, I'm going back to sleep)
<whyrusleeping> mildred: will do
<mildred> thx
calavera has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
r04r is now known as zz_r04r
nicolagreco_ has quit [Quit: nicolagreco_]
charley_ has quit [Ping timeout: 260 seconds]
nicolagreco_ has joined #ipfs
charley_ has joined #ipfs
nicolagreco_ has quit [Client Quit]
nicolagreco_ has joined #ipfs
nicolagreco_ has quit [Client Quit]
ygrek has quit [Ping timeout: 240 seconds]
voxelot has quit [Ping timeout: 260 seconds]
<sivachandran> whyrusleeping: I was looking at the ipns publish implementation and wondering why publishing to other public key is not implemented. Is there any design level change required to support it or is it just that not in the priority?
<whyrusleeping> it requires us to be able to store and manage multiple private keys securely
ggoZ has quit [Ping timeout: 276 seconds]
<sivachandran> whyrusleeping: hmm... but supporting subpath(e.g. /ipns/<PeerID>/path/file) doesn't look difficult. it looks like we just need to support having path in the IpnsEntry and change the implementation to parse PeerID from the name. Is that it or am I missing something>
<whyrusleeping> you need private keys to publish an ipns name
<whyrusleeping> if i want to publish to /ipns/<PEER X>/ i need to have PEER X's private key
<whyrusleeping> we can do this
<M-Nickfost> this chat window is using 100% of my CPU
<whyrusleeping> (you can use https://github.com/whyrusleeping/ipns-pub for this)
<whyrusleeping> but integrating it into go-ipfs will require some work around making sure we store private keys on disk securely
<sivachandran> whyrusleeping: yes, i understand that. i am talking about supporting path when publishing to own peer id
<whyrusleeping> ah, yeah
<whyrusleeping> that could be done
<sivachandran> today it doesn't support publishing multiple ipns entry for own peer id, right?
<whyrusleeping> you can only ever publish one entry per peer ID, no matter what
<whyrusleeping> publishing something like '/ipns/<peer id>/path/to/thing' is still only one entry
<whyrusleeping> that one entry can be a directory
<whyrusleeping> and can contain as many other things as you like
<sivachandran> oh, i am thinking i can publish multiple entries like '/ipns/<peerid>/file1' and '/ipns/<peerid>/file2'. why it is not possible?
<whyrusleeping> thats just one entry
<whyrusleeping> you'd be publishing a directory that contains file1 and file2
<sivachandran> the problem with directory is if something changes in the directory then the entire directory hash changes
<ipfsbot> [js-ipfs-api] dignifiedquire created greenkeeper-babel-core-6.7.0 (+1 new commit): https://git.io/vaTLo
<ipfsbot> js-ipfs-api/greenkeeper-babel-core-6.7.0 7932fc1 greenkeeperio-bot: chore(package): update babel-core to version 6.7.0...
<sivachandran> i mean if i add/remove file then i need to re-publish the directory hash
<sivachandran> whyrusleeping: i still don't understand why can't create two ipns entry having name as '/ipns/<peerid>/file1' and '/ipns/<peerid>/file2'
<whyrusleeping> thats not how ipns works
<sivachandran> i thought these will be two IpnsEntry
<sivachandran> and as the key will be different for entries it will work fine with dht
<whyrusleeping> ipns is a mapping of <peerID> -> <value>
<whyrusleeping> you cant map multiple values to a single peerID
<sivachandran> that is the current implementation
<whyrusleeping> think of it as a big hash table
<sivachandran> i am talking about changing the publisher.go to use entire path(not just the peer id) as key for the dht
<whyrusleeping> thats not how ipns works
<sivachandran> oh
reit has joined #ipfs
<sivachandran> then i think the only way to achieve what i am trying to do is to use the dht
<whyrusleeping> what are you trying to do?
charley__ has joined #ipfs
<sivachandran> but that requires plugging my own dht Validtor and Selector in core.go
charley_ has quit [Ping timeout: 240 seconds]
<sivachandran> basically i want to do is key-value lookup in the network
<whyrusleeping> okay
<whyrusleeping> i've been thinking of making a generic Validator and Selector for the DHT to support arbitrary key/value pairs
<sivachandran> that is exactly what i am looking for
<ipfsbot> [js-ipfs-api] dignifiedquire deleted greenkeeper-babel-core-6.7.0 at 7932fc1: https://git.io/vaTts
<sivachandran> can you explain if you already have plan for it?
<whyrusleeping> if you look in routing/dht/dht_test.go, around like 49, i add in a dummy validator for the 'v' prefix
<sivachandran> so that i can implement it and could be integrated with ipfs
<whyrusleeping> we would want to do something like that
<whyrusleeping> but we should make sure to impose size limits on the records
<whyrusleeping> and then we need to decide on the selector logic
<sivachandran> yes, i've already seen that
<whyrusleeping> does 'most recent' always win?
<sivachandran> yes
<whyrusleeping> then that makes things pretty easy (and i agree)
<sivachandran> do we need signature?
<whyrusleeping> nope
<whyrusleeping> well
<whyrusleeping> i'm not sure
<whyrusleeping> the signature might be good to have
<whyrusleeping> to help fight potential spam
<sivachandran> without signature anyone can spoof easily
<whyrusleeping> right
<whyrusleeping> so lets go with requiring signatures
<sivachandran> what about the prefix/tag for the dht? public key uses '/pk/' and ipns uses '/ipns/'
<whyrusleeping> could just be /kv/ or something
<whyrusleeping> i'm not picky
<sivachandran> something like '/kv/'
<whyrusleeping> lol
<sivachandran> just throwing without much thinking :)
<sivachandran> okay. will try to implement. thanks
<sivachandran> whyrusleeping: btw, i've implemented listing only locally cached refs and also raised the PR https://github.com/ipfs/go-ipfs/pull/2446.
<sivachandran> let me know if anything needs to changed
<whyrusleeping> sivachandran: it looks like that PR needs to be rebased on the latest master
charley__ has quit [Read error: Connection reset by peer]
Quiark has joined #ipfs
charley_ has joined #ipfs
<sivachandran> whyrusleeping: oh, will do that.
kvda has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
charley_ has quit [Read error: Connection reset by peer]
charley_ has joined #ipfs
charley_ has quit [Ping timeout: 244 seconds]
charley_ has joined #ipfs
Guanin_ has left #ipfs [#ipfs]
Guanin_ has joined #ipfs
charley_ has quit [Ping timeout: 252 seconds]
charley_ has joined #ipfs
kvda has joined #ipfs
charley_ has quit [Read error: Connection reset by peer]
cemerick has joined #ipfs
charley_ has joined #ipfs
lovelaced has quit [Quit: WeeChat 1.4-rc1]
lovelaced has joined #ipfs
reit has quit [Quit: Leaving]
reit has joined #ipfs
M-edrex has quit [Quit: node-irc says goodbye]
charley_ has quit [Read error: Connection reset by peer]
charley_ has joined #ipfs
nicolagreco_ has joined #ipfs
charley_ has quit [Read error: Connection reset by peer]
charley_ has joined #ipfs
voxelot has joined #ipfs
charley_ has quit [Ping timeout: 240 seconds]
charley_ has joined #ipfs
tmg has quit [Ping timeout: 244 seconds]
lovelaced has quit [Quit: WeeChat 1.3]
tmg has joined #ipfs
lovelaced has joined #ipfs
charley_ has quit [Ping timeout: 264 seconds]
charley_ has joined #ipfs
jayemar has quit [Ping timeout: 276 seconds]
Guanin_ has left #ipfs [#ipfs]
Guanin_ has joined #ipfs
akkad has joined #ipfs
charley_ has quit [Read error: Connection reset by peer]
charley_ has joined #ipfs
Oatmeal has quit [Ping timeout: 244 seconds]
charley_ has quit [Ping timeout: 260 seconds]
slothbag has quit [Quit: Leaving.]
dignifiedquire has quit [Quit: Connection closed for inactivity]
ipfsrocks has joined #ipfs
reit has quit [Quit: Leaving]
Oatmeal has joined #ipfs
mildred has quit [Ping timeout: 250 seconds]
TomasBond has joined #ipfs
TomasBond has quit [Ping timeout: 248 seconds]
Oatmeal has quit [Ping timeout: 244 seconds]
Pharyngeal has quit [Ping timeout: 240 seconds]
computerfreak has quit [Quit: Leaving.]
Pharyngeal has joined #ipfs
conway has joined #ipfs
MahaDev_ has joined #ipfs
calavera has joined #ipfs
<ipfsbot> [go-ipfs] whyrusleeping created feat/fix-hanging (+1 new commit): https://git.io/vaTRb
<ipfsbot> go-ipfs/feat/fix-hanging ce06e2b Jeromy: add new test to show problem...
Oatmeal has joined #ipfs
conway has quit [Ping timeout: 248 seconds]
nicolagreco_ has quit [Quit: nicolagreco_]
Akaibu has quit [Quit: Connection closed for inactivity]
nicolagreco_ has joined #ipfs
Quiark has quit [Quit: Leaving]
_whitelogger_ has joined #ipfs
reit has joined #ipfs
_whitelogger has quit [Remote host closed the connection]
kaiza has quit [Quit: o7]
TomasBond has joined #ipfs
TomasBond has quit [Ping timeout: 244 seconds]
uhhyeahbret has quit [Ping timeout: 246 seconds]
Arakela007 has joined #ipfs
yoshuawuyts has joined #ipfs
uhhyeahbret has joined #ipfs
pfraze has quit [Remote host closed the connection]
calavera has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pfraze has joined #ipfs
pfraze has quit [Remote host closed the connection]
Oatmeal has quit [Ping timeout: 252 seconds]
Guanin_ has left #ipfs [#ipfs]
Guanin_ has joined #ipfs
nicolagreco__ has joined #ipfs
nicolagreco_ has quit [Ping timeout: 260 seconds]
tmg has quit [Ping timeout: 244 seconds]
cemerick has quit [Ping timeout: 268 seconds]
Oatmeal has joined #ipfs
<ipfsbot> [go-ipfs] whyrusleeping pushed 1 new commit to feat/fix-hanging: https://git.io/vaToD
<ipfsbot> go-ipfs/feat/fix-hanging 2999a0c Jeromy: update go-libp2p dep...
<ipfsbot> [go-ipfs] whyrusleeping opened pull request #2455: update our libp2p dependency to fix hanging issue (master...feat/fix-hanging) https://git.io/vaTKJ
<ipfsbot> [go-ipfs] whyrusleeping pushed 1 new commit to feat/fix-hanging: https://git.io/vaTKN
<ipfsbot> go-ipfs/feat/fix-hanging 1346fa2 Jeromy: hide unnecessary test output...
homoanisaldehyde has quit [Ping timeout: 268 seconds]
mildred has joined #ipfs
Elric has joined #ipfs
<eco> Is the plan to have IPFS run over javascript to get it into the hands of the masses?
IlanGodik has joined #ipfs
<whyrusleeping> eco: thats one of our evil plans, yes
kvda has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ulrichard has joined #ipfs
<eco> Will that still act as a node?
<eco> Or would that be for fetching only?
<whyrusleeping> we're hoping it will be a full node
<eco> That'd be pretty slick.
<whyrusleeping> but the effect that will have on the network will be... interesting to see
Senji has joined #ipfs
<eco> Browser plugins seem to be dying but it seems like a logical place for it.
<eco> I imagine Extensions/Add-Ons can probably do it all now these days anyway.
<eco> Anyway, I'm excited for it. I just uploaded a few gigs to AWS and having IPFS on my brain lately made the entire thing seem silly.
nicolagreco__ has quit [Quit: nicolagreco__]
kaiza has joined #ipfs
<whyrusleeping> yeah, it really does seem silly
dignifiedquire has joined #ipfs
chriscool has joined #ipfs
gunn has quit [Read error: Connection reset by peer]
reit has quit [Ping timeout: 260 seconds]
mildred1 has joined #ipfs
rendar has joined #ipfs
disgusting_wall has quit [Quit: Connection closed for inactivity]
ipfsrocks has quit [Ping timeout: 240 seconds]
yoshuawuyts has quit [Quit: Connection closed for inactivity]
mildred1 has quit [Ping timeout: 246 seconds]
mildred has quit [Ping timeout: 268 seconds]
sikander_ has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
sikander has joined #ipfs
tmg has joined #ipfs
mildred has joined #ipfs
mildred1 has joined #ipfs
<alu> ipfs version 0.3.10
<alu> is that good?
<alu> 0.3.11 is out :O
devbug has quit [Ping timeout: 268 seconds]
zorglub27 has joined #ipfs
zz_r04r is now known as r04r
mildred1 has quit [Ping timeout: 246 seconds]
mildred has quit [Ping timeout: 248 seconds]
rhalff has quit [Ping timeout: 246 seconds]
mildred has joined #ipfs
mildred1 has joined #ipfs
r0kk3rz has quit [Remote host closed the connection]
reit has joined #ipfs
r0kk3rz has joined #ipfs
Tv` has quit [Quit: Connection closed for inactivity]
<alu> ipfs has been buggy with gzip files
zootella has joined #ipfs
reit has quit [Read error: Connection reset by peer]
zootella has quit [Client Quit]
mildred1 has quit [Read error: Connection reset by peer]
mildred has quit [Read error: Connection reset by peer]
zootella has joined #ipfs
zootella has quit [Client Quit]
ianopolous has quit [Remote host closed the connection]
mildred has joined #ipfs
mildred1 has joined #ipfs
ecloud has quit [Ping timeout: 244 seconds]
ecloud has joined #ipfs
jokoon has joined #ipfs
s_kunk has joined #ipfs
s_kunk has quit [Remote host closed the connection]
s_kunk has joined #ipfs
Encrypt has joined #ipfs
jokoon has quit [Quit: Leaving]
rhalff has joined #ipfs
Encrypt has quit [Quit: Quitte]
ljhms has quit [Ping timeout: 250 seconds]
ljhms has joined #ipfs
tmg has quit [Ping timeout: 268 seconds]
tmg has joined #ipfs
zootella has joined #ipfs
mildred1 has quit [Read error: Connection reset by peer]
mildred has quit [Read error: Connection reset by peer]
zootella has quit [Quit: zootella]
mildred has joined #ipfs
mildred1 has joined #ipfs
rhalff has quit [Ping timeout: 268 seconds]
kaiza has quit [Ping timeout: 268 seconds]
mildred1 has quit [Read error: Connection reset by peer]
mildred has quit [Read error: Connection reset by peer]
rhalff has joined #ipfs
<ion> It would be neat if a node could be set up to only upload to nodes on the same physical network. Say, you install a game which uses IPFS to get assets. A user might want to minimize their Internet bandwidth usage which means no uploading to the Internet but in-home sharing of data would be great.
<ion> setsockopt IP_TTL might be useful.
mildred has joined #ipfs
mildred1 has joined #ipfs
nicolagreco_ has joined #ipfs
nicolagreco_ has quit [Client Quit]
zootella has joined #ipfs
Guanin_ has left #ipfs [#ipfs]
Guanin_ has joined #ipfs
mildred1 has quit [Read error: Connection reset by peer]
mildred has quit [Read error: Connection reset by peer]
voxelot has quit [Ping timeout: 240 seconds]
jaboja has joined #ipfs
jayemar has joined #ipfs
Magik6k has quit [Excess Flood]
Magik6k has joined #ipfs
Guanin_ has left #ipfs [#ipfs]
rhalff has quit [Ping timeout: 244 seconds]
mildred has joined #ipfs
centauri has joined #ipfs
brab_ has joined #ipfs
M-22341 has joined #ipfs
kitcambridge_ has joined #ipfs
zorglub27 has quit [Ping timeout: 268 seconds]
sivachandran_ has joined #ipfs
ekroon_ has joined #ipfs
true_droid_ has joined #ipfs
r0kk3rz_ has joined #ipfs
M-fil has joined #ipfs
inconshr_ has joined #ipfs
M-2234 has quit [Ping timeout: 240 seconds]
brab has quit [Ping timeout: 240 seconds]
r0kk3rz has quit [Ping timeout: 240 seconds]
lovelaced has quit [Ping timeout: 240 seconds]
fil_redpill has quit [Ping timeout: 240 seconds]
kitcambridge has quit [Ping timeout: 240 seconds]
ekroon has quit [Ping timeout: 240 seconds]
inconshreveable has quit [Ping timeout: 240 seconds]
kseistrup has quit [Ping timeout: 240 seconds]
kitcambridge_ is now known as kitcambridge
wiedi has quit [Ping timeout: 240 seconds]
diffalot has quit [Ping timeout: 240 seconds]
M-2128 has quit [Ping timeout: 240 seconds]
M-jbenet has quit [Ping timeout: 240 seconds]
sivachandran has quit [Ping timeout: 240 seconds]
true_droid has quit [Ping timeout: 240 seconds]
sivachandran_ is now known as sivachandran
mildred1 has joined #ipfs
ekroon_ is now known as ekroon
true_droid_ is now known as true_droid
M-2128 has joined #ipfs
M-jbenet has joined #ipfs
kseistrup has joined #ipfs
rhalff has joined #ipfs
diffalot has joined #ipfs
wiedi has joined #ipfs
ggoZ has joined #ipfs
Akaibu has joined #ipfs
jayemar has quit [Quit: Leaving.]
jayemar has joined #ipfs
zorglub27 has joined #ipfs
nicolagreco_ has joined #ipfs
nicolagreco_ has quit [Client Quit]
rhalff has quit [Ping timeout: 240 seconds]
inconshr_ has quit [Remote host closed the connection]
rhalff has joined #ipfs
reit has joined #ipfs
reit has quit [Quit: Leaving]
nicolagreco_ has joined #ipfs
nicolagreco_ has quit [Client Quit]
OutBackDingo has joined #ipfs
dylanPowers has quit [Quit: No Ping reply in 180 seconds.]
dPow has joined #ipfs
jaboja has quit [Ping timeout: 268 seconds]
pfraze has joined #ipfs
tcollins has joined #ipfs
jayemar has quit [Quit: Leaving.]
nicolagreco_ has joined #ipfs
computerfreak has joined #ipfs
pfraze has quit [Remote host closed the connection]
tmg has quit [Ping timeout: 240 seconds]
reit has joined #ipfs
tmg has joined #ipfs
pfraze has joined #ipfs
jaboja has joined #ipfs
mildred1 has quit [Read error: Connection reset by peer]
mildred has quit [Read error: Connection reset by peer]
tmg has quit [Ping timeout: 252 seconds]
rhalff has quit [Ping timeout: 276 seconds]
Elric has quit [Disconnected by services]
cynology has joined #ipfs
nicolagreco_ has quit [Quit: nicolagreco_]
nicolagreco_ has joined #ipfs
mildred has joined #ipfs
mildred1 has joined #ipfs
reit has quit [Quit: Leaving]
nicolagreco_ has quit [Quit: nicolagreco_]
<ggoZ> From example docs, about IPNS: "first, right now, you can only publish a single entry per ipfs node. "
<ggoZ> is that still true? Only one entry?
zorglub27 has quit [Quit: zorglub27]
<lgierth> yes, altough there's a little toold called ipns-pub which can publish too, soo you can run $n ipns-pub processes for $n entries
<lgierth> we'll be lifting the one IPNS entry per ipfs node limitation, but that's gonna take a bit more work
mildred has quit [Read error: Connection reset by peer]
mildred1 has quit [Read error: Connection reset by peer]
voxelot has joined #ipfs
jaboja has quit [Ping timeout: 248 seconds]
<ggoZ> lgierth: thanks, I'll take a look at ipns-pub
Guanin_ has joined #ipfs
nicolagreco_ has joined #ipfs
rhalff has joined #ipfs
mildred has joined #ipfs
mildred1 has joined #ipfs
zootella has quit [Quit: zootella]
pfraze has quit [Remote host closed the connection]
pfraze has joined #ipfs
voxelot has quit [Ping timeout: 248 seconds]
zootella has joined #ipfs
ipfsrocks has joined #ipfs
ashark has joined #ipfs
nicolagreco_ has quit [Quit: nicolagreco_]
mildred1 has quit [Read error: Connection reset by peer]
mildred has quit [Read error: Connection reset by peer]
ipfsrocks has quit [Ping timeout: 248 seconds]
zorglub27 has joined #ipfs
nicolagreco_ has joined #ipfs
ulrichard has quit [Read error: Connection reset by peer]
mildred has joined #ipfs
mildred1 has joined #ipfs
rhalff has quit [Ping timeout: 252 seconds]
M-fil is now known as fil_redpill
<dignifiedquire> !pin-03 QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5 screen-station
<pinbot> now pinning /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5
jokoon has joined #ipfs
<dignifiedquire> lgierth: is !pin-03 correct? seems it's not even trying :(
<ipfsbot> [webui] greenkeeperio-bot opened pull request #275: Update i18next-browser-languagedetector to version 0.2.0
mildred has quit [Read error: Connection reset by peer]
mildred1 has quit [Read error: Connection reset by peer]
<ipfsbot> [webui] greenkeeperio-bot opened pull request #276: Update i18next-localstorage-cache to version 0.2.0
<ipfsbot> [webui] greenkeeperio-bot opened pull request #277: i18next@2.3.0 breaks build
<ipfsbot> [webui] dignifiedquire closed pull request #277: i18next@2.3.0 breaks build
<ipfsbot> [webui] dignifiedquire closed pull request #276: Update i18next-localstorage-cache to version 0.2.0
nicolagreco_ has quit [Quit: nicolagreco_]
<pinbot> [host 5] failed to grab refs for /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5: context canceled
<pinbot> [host 7] failed to grab refs for /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5: context canceled
<pinbot> [host 4] failed to grab refs for /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5: context canceled
mildred has joined #ipfs
mildred1 has joined #ipfs
nicolagreco_ has joined #ipfs
<ipfsbot> [js-ipfs] xicombd created cleanup (+1 new commit): https://git.io/vaInc
<ipfsbot> js-ipfs/cleanup 8c7a486 Francisco Baio Dias: Fix linting issues and correct cli command descriptions
<ipfsbot> [js-ipfs] xicombd opened pull request #80: Fix linting issues and correct cli command descriptions and log names spaces (master...cleanup) https://git.io/vaIny
<pinbot> [host 2] failed to grab refs for /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5: unknown ipfs-shell error encoding: text/html - "<html>\r\n<head><title>504 Gateway Time-out</title></head>\r\n<body bgcolor=\"white\">\r\n<center><h1>504 Gateway Time-out</h1></center>\r\n<hr><center>nginx/1.9.3</center>\r\n</body>\r\n</html>\r\n"
<pinbot> [host 6] failed to grab refs for /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5: unknown ipfs-shell error encoding: text/html - "<html>\r\n<head><title>504 Gateway Time-out</title></head>\r\n<body bgcolor=\"white\">\r\n<center><h1>504 Gateway Time-out</h1></center>\r\n<hr><center>nginx/1.9.3</center>\r\n</body>\r\n</html>\r\n"
<pinbot> [host 1] failed to grab refs for /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5: unknown ipfs-shell error encoding: text/html - "<html>\r\n<head><title>504 Gateway Time-out</title></head>\r\n<body bgcolor=\"white\">\r\n<center><h1>504 Gateway Time-out</h1></center>\r\n<hr><center>nginx/1.9.3</center>\r\n</body>\r\n</html>\r\n"
<pinbot> [host 0] failed to grab refs for /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5: unknown ipfs-shell error encoding: text/html - "<html>\r\n<head><title>504 Gateway Time-out</title></head>\r\n<body bgcolor=\"white\">\r\n<center><h1>504 Gateway Time-out</h1></center>\r\n<hr><center>nginx/1.9.3</center>\r\n</body>\r\n</html>\r\n"
<pinbot> [host 3] failed to grab refs for /ipfs/QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5: unknown ipfs-shell error encoding: text/html - "<html>\r\n<head><title>504 Gateway Time-out</title></head>\r\n<body bgcolor=\"white\">\r\n<center><h1>504 Gateway Time-out</h1></center>\r\n<hr><center>nginx/1.9.3</center>\r\n</body>\r\n</html>\r\n"
ugjka has joined #ipfs
Tv` has joined #ipfs
cemerick has joined #ipfs
<ipfsbot> [webui] greenkeeperio-bot opened pull request #278: Update i18next-sprintf-postprocessor to version 0.2.0
<nicolagreco_> oops ^
nicolagreco_ has quit [Quit: nicolagreco_]
voxelot has joined #ipfs
ipfsrocks has joined #ipfs
zootella has quit [Quit: zootella]
<ipfsbot> [webui] greenkeeperio-bot opened pull request #279: Update i18next-xhr-backend to version 0.5.0
nicolagreco_ has joined #ipfs
micxjo has quit [Quit: Connection closed for inactivity]
<mmuller> cd ~
ipfsrocks has quit [Ping timeout: 248 seconds]
<voxelot> ls
<mmuller> :-)
<voxelot> :)
<mmuller> brb
rhalff has joined #ipfs
dignifiedquire_ has joined #ipfs
dignifiedquire_ has quit [Client Quit]
nicolagreco_ has quit [Quit: nicolagreco_]
bsm117532 has quit [Remote host closed the connection]
<ipfsbot> [webui] dignifiedquire closed pull request #279: Update i18next-xhr-backend to version 0.5.0
<ipfsbot> [webui] dignifiedquire closed pull request #278: Update i18next-sprintf-postprocessor to version 0.2.0
nicolagreco_ has joined #ipfs
<whyrusleeping> my github feed this morning: "dignifiedquire did something with greenkeeper"
<dignifiedquire> whyrusleeping: :D
mildred has quit [Read error: Connection reset by peer]
mildred1 has quit [Write error: Connection reset by peer]
<ipfsbot> [webui] dignifiedquire closed pull request #272: config page redux (redux...redux-config) https://git.io/v2b9W
TomasBond has joined #ipfs
nicolagreco_ has quit [Quit: nicolagreco_]
<lgierth> dignifiedquire: the prefix is "pinbot-v03x: " instead of "!"
<lgierth> pinbot-v03x: pin /ipns/ipfs.io test
<pinbot-v03x> now pinning /ipns/ipfs.io
<dignifiedquire> lgierth: okay trying agin
<lgierth> (it'll fail because that hash doesn't exist in v03x)
<dignifiedquire> pinbot-v03x: pin QmZV7iGTu91w1YePo1EG98siCPxPFrw9Uzf7wAmARusET5 screenshot-station-01
<lgierth> i'm not a fan of ambiguous prefixes like ! or % :)
<lgierth> ugh let me give it a kick it might hang now since it's pinning that other one
calavera has joined #ipfs
pinbot-v03x has quit [Remote host closed the connection]
pinbot-v03x has joined #ipfs
mildred has joined #ipfs
mildred1 has joined #ipfs
<whyrusleeping> lgierth: i hate dealing with code formatting
<whyrusleeping> why is rewriting import statements so hard?
<noffle> whyrusleeping: do we use supernode routing currently in go-ipfs?
mildred has quit [Read error: Connection reset by peer]
mildred1 has quit [Read error: Connection reset by peer]
<lgierth> whyrusleeping: doesn't gofmt take care of it? :P
<lgierth> noffle: haven't for a long time i think
nicolagreco_ has joined #ipfs
<whyrusleeping> noffle: no
ipfsrocks has joined #ipfs
<whyrusleeping> lgierth: gofmt doesnt change things if there are newlines between the imports
nicolagreco_ has quit [Client Quit]
zootella has joined #ipfs
<noffle> thanks. it still gets put into the repo config
<lgierth> i'm not sure even still have the code for it
JasonWoof has joined #ipfs
mildred has joined #ipfs
bsm117532 has joined #ipfs
mildred1 has joined #ipfs
Encrypt has joined #ipfs
<ipfsbot> [js-ipfs] xicombd created feature/object (+2 new commits): https://git.io/vaIyD
<ipfsbot> js-ipfs/feature/object 8c7a35b Francisco Baio Dias: Add ipfs object new to cli
<ipfsbot> js-ipfs/feature/object d9d6040 Francisco Baio Dias: Add /object/new to http-api
r0kk3rz has joined #ipfs
r0kk3rz_ is now known as r0kk3rz
mdangear has joined #ipfs
TomasBond has quit [Remote host closed the connection]
TomasBond has joined #ipfs
<lgierth> dignifiedquire: try again i rebooted it ^
<lgierth> (like half an hour ago)
<mdangear> hello, tried to install ipfs on mac, started daemon, but the command ipfs swarm peers returns nothing, any clue how to make this work?
<mdangear> cannot find any info on the website
nicolagreco_ has joined #ipfs
mdangear has left #ipfs [#ipfs]
mdangear has joined #ipfs
mildred has quit [Read error: Connection reset by peer]
mildred1 has quit [Read error: Connection reset by peer]
<ipfsbot> [go-ipfs] whyrusleeping force-pushed feat/fix-hanging from 1346fa2 to 97d583d: https://git.io/vaIQA
<ipfsbot> go-ipfs/feat/fix-hanging 97d583d Jeromy: update libp2p dep...
<ipfsbot> go-ipfs/feat/fix-hanging d8be357 Jeromy: add new test to show problem...
Guanin_ has left #ipfs [#ipfs]
<voxelot> mdangear: what does 'ipfs bootstrap list' return
mdangear has quit [Quit: mdangear]
ipfsrocks has quit [Ping timeout: 252 seconds]
s_kunk has quit [Ping timeout: 244 seconds]
charley_ has joined #ipfs
zootella has quit [Quit: zootella]
nicolagreco_ has quit [Quit: nicolagreco_]
mildred has joined #ipfs
charley_ has quit [Ping timeout: 240 seconds]
mildred1 has joined #ipfs
zootella has joined #ipfs
ygrek has joined #ipfs
charley_ has joined #ipfs
<ipfsbot> [js-ipfs] xicombd force-pushed feature/object from d9d6040 to 76ab8b7: https://git.io/vzdPv
<ipfsbot> js-ipfs/feature/object 679413b Francisco Baio Dias: Add /object/new to http-api
<ipfsbot> js-ipfs/feature/object 76ab8b7 Francisco Baio Dias: Add ipfs object get to cli
<voxelot> dignifiedquire: ping
Darksecond has left #ipfs [#ipfs]
mdangear has joined #ipfs
mdangear has quit [Client Quit]
Darksecond has joined #ipfs
mdangear has joined #ipfs
<mdangear> ipfs bootstrap returns /ip4/104.131.131.82/tcp/4001/ipfs/QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ
<voxelot> hmmm just the one?
vanila has joined #ipfs
<mdangear> nope a whole list
<mdangear> 9 lines
<voxelot> ok so that's not the problem
Darksecond has left #ipfs [#ipfs]
mildred has quit [Read error: Connection reset by peer]
mildred1 has quit [Read error: Connection reset by peer]
<mdangear> webui hanging
<Akaibu> Yo whyrusleeping, not really seeing anything about this via a quick scan of the various protocol repos, but how about implementing a global DHT like BitTorrent has?
<dignifiedquire> voce
<dignifiedquire> voxelot: sorry not around right now will be around later
<voxelot> dignifiedquire: no worries
<mdangear> @voxelot I was wondering whether it could be a network issue, ports not open
<voxelot> webui shouldn't hang either.. anyone have any thoughts?
<mdangear> but webui should be localhost, so should work
<dignifiedquire> webui hangs if no peers serve it
<voxelot> true
<Akaibu> Dump status logs so we can see from that?
<dignifiedquire> what does ipfs swarm peers print?
<voxelot> nothing
<voxelot> sounds like a connection issue, mdangear: is your network locked up?
<dignifiedquire> yeah that means no peers available, and so it cant fetch the webui
<mdangear> going through a public network, maybe they have special settings
<mdangear> will try to install on an AWS box
zootella has quit [Quit: zootella]
<mdangear> from log: {"event":"bootstrapDialFailed","peerID":"QmSoLPppuBtQSGwKDZT2M73ULpjvfd3aZ6ha4oFGL1KrGM","system":"core","time":"2016-03-09T18:32:21.8973626Z"}
<voxelot> yup, something is keeping you from dialing out
<Akaibu> Try restarting your system
<mdangear> ok, probably issue with this public network then. Thank you for the help
<mdangear> will try on AWS server
<voxelot> np, gl!
<Akaibu> Haha, public network, no wonder
<whyrusleeping> Akaibu: ipfs does have a global dht
<whyrusleeping> dignifiedquire: randor is so slowwww
charley_ has quit [Ping timeout: 252 seconds]
<Akaibu> Really? Surprised no one has made a system like BTDigg for ipfs yet then whyrusleeping
mildred has joined #ipfs
charley_ has joined #ipfs
mildred1 has joined #ipfs
mdangear has quit [Quit: mdangear]
mdangear has joined #ipfs
jokoon has left #ipfs ["Leaving"]
<whyrusleeping> i've kept it restricted for a while to keep spam out
<whyrusleeping> sivachandran was discussing with me last night about opening that up
<whyrusleeping> so i think he's working on a PR
computerfreak has quit [Remote host closed the connection]
ianopolous has joined #ipfs
<dignifiedquire> whyrusleeping: hmm
<dignifiedquire> whyrusleeping: that's not great
Darksecond has joined #ipfs
Darksecond has left #ipfs [#ipfs]
<dignifiedquire> whyrusleeping: I'm generating quite large files I could reduce that size to make it faster
mdangear has quit [Quit: mdangear]
<dignifiedquire> voxelot: pong
<dignifiedquire> voxelot: anything you need?
<voxelot> dignifiedquire: where do i start haha
<dignifiedquire> lol
<voxelot> so i'm STILL trying to write web tests for data-importing
<voxelot> i have the other fixed sized chunker tests working after your example
<voxelot> now I'm trying to test bufferImporter
<voxelot> the tests need a dag service from merkle module, which in turn needs a repo from repo module, so i do this
mildred1 has quit [Read error: Connection reset by peer]
mildred has quit [Read error: Connection reset by peer]
<voxelot> but then i get multihashToPath is not a function from here
charley_ has quit [Ping timeout: 276 seconds]
zorglub27 has quit [Ping timeout: 240 seconds]
<voxelot> as if that function isn't exposed to the browser, i put and export on it and it worked, but then i get an error from mafintosh blob store module
<voxelot> btw the dag service starts fine, just when we go to add the data to it fails, you can pull my last commit and try if youd like
charley_ has joined #ipfs
<whyrusleeping> dignifiedquire: hrm....
Guanin_ has joined #ipfs
mdangear has joined #ipfs
rhalff has quit [Ping timeout: 244 seconds]
livegnik has quit [Quit: No Ping reply in 180 seconds.]
gorhgorh has quit [Quit: No Ping reply in 180 seconds.]
livegnik has joined #ipfs
gorhgorh has joined #ipfs
mildred has joined #ipfs
mildred1 has joined #ipfs
mdangear has quit [Quit: mdangear]
rhalff has joined #ipfs
<voxelot> dignifiedquire: so the data passes through a few modules that don't have browser tests but i find it odd that multihashToPath is not defined, when you have browser tests for js-ipfs-repo
<dignifiedquire> voxelot: sory was distracted figuring out issues with cjdns
<dignifiedquire> voxelot: have you looked at https://github.com/ipfs/js-ipfs-repo/blob/master/tests/browser-tests.js ? because loading the full repo is a bit more work than just require as far as I understand
<dignifiedquire> whyrusleeping: that's very helpful
<voxelot> dignifiedquire: ohh you know, i think i might be mistaking loading the repo for use by other tests, for simply testing the repo like we do in https://github.com/nginnever/js-ipfs-data-importing/blob/master/tests/browser.js
<whyrusleeping> dignifiedquire: lol
mdangear has joined #ipfs
nicolagreco_ has joined #ipfs
mdangear has left #ipfs [#ipfs]
<dignifiedquire> whyrusleeping: is it too slow in the sense that go-ipfs is not fully loaded, or is the repo growing too slowly, or do you just want more ops/sec?
<whyrusleeping> I want more ops per second :)
<dignifiedquire> ok
besenwesen has left #ipfs [#ipfs]
rendar has quit [Ping timeout: 244 seconds]
Soft has quit [Ping timeout: 276 seconds]
Soft has joined #ipfs
mildred has quit [Read error: Connection reset by peer]
mildred1 has quit [Read error: Connection reset by peer]
rendar has joined #ipfs
<voxelot> dignifiedquire: does this line pass the repo to the other test files https://github.com/ipfs/js-ipfs-repo/blob/master/tests/browser-tests.js#L61
<dignifiedquire> voxelot: yes
<voxelot> repo-test to be specific
<voxelot> ty as always dig!
<dignifiedquire> whyrusleeping: things get faster if we make the files smaller, you want to do that?
jaboja has joined #ipfs
<dignifiedquire> whyrusleeping: you can adjust those yourself in lib/args.js
charley_ has quit [Ping timeout: 276 seconds]
charley_ has joined #ipfs
zorglub27 has joined #ipfs
mildred has joined #ipfs
mildred1 has joined #ipfs
<whyrusleeping> okay, is the slow part the adding of the files?
<whyrusleeping> or the generating of them in javascript?
mildred has quit [Ping timeout: 244 seconds]
step21 is now known as step21_
mildred1 has quit [Ping timeout: 268 seconds]
<Akaibu> Woop yet another update in hydrus with ipfs related stuff improved: https://github.com/hydrusnetwork/hydrus/releases/tag/v196
<alu> IPFS is hit or miss for fbx files
<whyrusleeping> alu: life will be better very soon: https://github.com/ipfs/go-ipfs/pull/2455
<ipfsbot> [go-ipfs] whyrusleeping pushed 1 new commit to master: https://git.io/vaLCG
<ipfsbot> go-ipfs/master 6f8ea13 Jeromy Johnson: Merge pull request #2455 from ipfs/feat/fix-hanging...
jaboja64 has joined #ipfs
<whyrusleeping> Kubuxu: you around?
<Kubuxu> yeah
<whyrusleeping> interested in helping me get better code coverage on go-libp2p?
<Kubuxu> I am just off to sleep, I have to get up early tomorrow, although I could help with it.
jaboja has quit [Ping timeout: 264 seconds]
<whyrusleeping> sweet, i want us to be able to be really confident in our networking code
<whyrusleeping> (i spent the last three days fixing some subtle bug)
<Kubuxu> It was cause of those refs hangs?
charley_ has quit [Ping timeout: 264 seconds]
<dignifiedquire> whyrusleeping: a bit of both, larger files -> longer generation, longer add, longer validation
vanila has quit [Quit: Leaving]
<whyrusleeping> Kubuxu: yeah, thats what caused that
<whyrusleeping> well, at least partially
mildred has joined #ipfs
<Kubuxu> We can talk tomorrow what especially needs coverage, as I said I am off to sleep now (and I got slight cold). Time zones are just meh :P
rhalff has quit [Ping timeout: 244 seconds]
<alu> whyrusleeping: it works :)
charley_ has joined #ipfs
<xelra> Being in a :30 timezone is meh. OMG, how annoying that must be.
<Akaibu> whyrusleeping: just curious, where exactly do you have the DHT blocked/restricted?
<whyrusleeping> Kubuxu: woo! thanks :)
cow_2001 has quit [Quit: Offense is taken, not given. No need to disarm the world. Just make yourself bullet proof. Sticks & stones people. Block. Unfollow. Laugh.]
<alu> http://sprunge.us/chVP my userid file information used for animated avatars in JanusVR
<alu> Shows up!
mildred1 has joined #ipfs
<whyrusleeping> Akaibu: the selection and validation functions that are applied here: https://github.com/ipfs/go-ipfs/blob/master/core/core.go#L612
<whyrusleeping> alu: sweet :D
<alu> preview of avatar im hosting on IPFS https://u.teknik.io/a1pQ0.mp4
<alu> gotta go fast !
<whyrusleeping> give it a day or so for those changes to propogate around more
<alu> will my hashes change?
<alu> meh thats easy to swap
<whyrusleeping> xelra: youre in a :30 timezone? where is that?
<Akaibu> And how hard would it to switch to allow the DHT?
<alu> I have to get about 15-20 avatars finished for this VR music video
<whyrusleeping> Akaibu: not too difficult, like i said, sivachandran said last night he was going to work on it
<Akaibu> Nice, although I don't get how the DHT could get "spammed"
nicolagreco_ has quit [Read error: Connection reset by peer]
<xelra> whyrusleeping: There are a few. Most are in the South Pacific and Indian Ocean. Part of India, New Zealand or Australia. Like the Andaman Islands +5.5 or Lord Lowe Island +10.5 or Iles Marquises -9.5. I think the whole of North Korea is also with +8.5
<ansuz> Newfoundland, Canada
<xelra> But the worst is Australia itself. I mean, it's one country but they have +6.5, +8.75, +9.5, +10 and 10.5.
Soft has quit [Quit: WeeChat 1.5-dev]
<xelra> You could make a joke about it: 'One Aussie calls another: "Hey, what time is it?" "Ehm ... dunno?!"' :P
nicolagreco_ has joined #ipfs
Encrypt has quit [Quit: Quitte]
<xelra> New Zealand also has Catham Island with +12.75. OMG. :)
<whyrusleeping> wtf
<whyrusleeping> +12.75 seems like a terrible idea
<C-Keen> it's as arbitrary as anything else :)
ugjka has quit [Ping timeout: 244 seconds]
<xelra> alu: That link to the mp4 doesn't work.
palkeo has joined #ipfs
<ipfsbot> [webui] greenkeeperio-bot opened pull request #280: i18next@2.3.1 breaks build
calavera has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<whyrusleeping> mp4 link worked on my end
mildred has quit [Read error: Connection reset by peer]
mildred1 has quit [Read error: Connection reset by peer]
<alu> teknik is hit or miss
<alu> :(
<whyrusleeping> what is teknik?
<alu> file hosting / git / email / collaboration site
<alu> my friend made for tech community
<whyrusleeping> oh nice!
charley_ has quit [Ping timeout: 240 seconds]
<ipfsbot> [webui] greenkeeperio-bot opened pull request #281: Update enzyme to version 2.1.0
charley_ has joined #ipfs
nicolagreco_ has quit [Quit: nicolagreco_]
infinity0 has quit [Ping timeout: 276 seconds]
mildred has joined #ipfs
charley_ has quit [Ping timeout: 276 seconds]
Senji has quit [Read error: Connection reset by peer]
nicolagreco_ has joined #ipfs
nicolagreco_ has quit [Client Quit]
ianopolous_ has joined #ipfs
ianopolous has quit [Ping timeout: 276 seconds]
nicolagreco_ has joined #ipfs
inconshreveable has joined #ipfs
<voxelot> alu: are you ready to start the LA freifunk with me yet?
nicolagreco_ has quit [Client Quit]
calavera has joined #ipfs
<voxelot> figure i could fund some of the infrastructure and start getting it set up, and when we finish js-ipfs maybe we can get that out there
<alu> voxelot we should get a map of LA and then plan it out ;)
<voxelot> can any regular device connect to these openwrt broadcasters?
nicolagreco_ has joined #ipfs
<alu> yup
nicolagreco_ has quit [Client Quit]
<voxelot> okay, i have a crazy idea, that i don't want to say in public since you know... pretty sure we dont need anymore targets
nicolagreco_ has joined #ipfs
<voxelot> long live aaron
<alu> Aye
nicolagreco_ has quit [Client Quit]
<alu> you think you can make it to that meetup tomorrow?
<voxelot> what time is it again
<alu> 7
<voxelot> yeah i can make it
<alu> pm'd the info
<ansuz> woo
<ansuz> long live aaron
nicolagreco_ has joined #ipfs
kvda has joined #ipfs
nicolagreco_ has quit [Client Quit]
reit has joined #ipfs
nicolagreco_ has joined #ipfs
Arakela007 has quit [Remote host closed the connection]
<lgierth> voxelot: let me know if you need advice
<voxelot> lgierth: i'm sure we will, thanks!
<lgierth> if you come to squatconf you can get some hands-on experience :)
<ansuz> careful lgierth, this is a big chan
<ansuz> squatconf is super cool, we can't tell everyone about it
<ansuz> everybody here is gonna forget they heard that, right?
<lgierth> wow ansuz so subtle
<voxelot> haha i wish i had the time/funds to come back to berlin again after ccc
<ansuz> shh
<ansuz> shhhhhhhhhhh
cow_2001 has joined #ipfs
mildred has quit [Read error: Connection reset by peer]
<whyrusleeping> voxelot: don't you have a credit card?
<whyrusleeping> those are like, unlimited money
<ansuz> and if you use your credit card to buy bitcoin, you become anonymous
<voxelot> -.-
<whyrusleeping> ansuz: duh
<whyrusleeping> well, no
computerfreak has joined #ipfs
<whyrusleeping> you have to use cjdns too
<ansuz> and if you put your bitcoin keys into ipfs, it's impossible to rob you
<whyrusleeping> oh, this is #ipfs not #cjdns
<ansuz> because you can always just get them back
<voxelot> i heard ipfs makes you anon
<ansuz> voxelot: you heard corrrectly
<noffle> whyrusleeping: thanks for your comments on the init spec!
<whyrusleeping> noffle: sure thing!
s_kunk has joined #ipfs
<whyrusleeping> you guys will also start seeing teamcity links start popping up in the pull request page
<whyrusleeping> let me know if anything is weird with that
<whyrusleeping> example here: https://github.com/ipfs/go-ipfs/pull/2447
<noffle> whyrusleeping: you meant AutoUpdate, Check, and CheckPeriod are not used, right?
<noffle> just Current?
<noffle> (for Version)
<whyrusleeping> noffle: correct
reit has quit [Ping timeout: 276 seconds]
<noffle> awesome
<whyrusleeping> also, iptb got a facelift
<whyrusleeping> and a new command 'dump-stacks'
<whyrusleeping> so you can easily get stack traces of iptb nodes
Encrypt has joined #ipfs
<noffle> nice!
charley_ has joined #ipfs
<whyrusleeping> dignifiedquire: could i get some help text on randor?
<whyrusleeping> not sure what flags there are
mildred has joined #ipfs
tmg has joined #ipfs
<dignifiedquire> whyrusleeping: the cli lib I'm using is a bit stupid, but haven't found a sane one yet/fixed it
mildred has quit [Read error: Connection reset by peer]
TomasBond has quit [Ping timeout: 268 seconds]
<ipfsbot> [webui] greenkeeperio-bot opened pull request #282: i18next@2.3.2 breaks build
charley_ has quit [Ping timeout: 244 seconds]
<ipfsbot> [webui] greenkeeperio-bot opened pull request #283: i18next@2.3.3 breaks build
inconshreveable has quit [Ping timeout: 248 seconds]
<ipfsbot> [webui] greenkeeperio-bot opened pull request #284: Update i18next-browser-languagedetector to version 0.2.1
inconshreveable has joined #ipfs
<ipfsbot> [webui] greenkeeperio-bot opened pull request #285: Update i18next-localstorage-cache to version 0.2.1
<ipfsbot> [webui] greenkeeperio-bot opened pull request #286: Update i18next-sprintf-postprocessor to version 0.2.1
mildred has joined #ipfs
<ipfsbot> [webui] greenkeeperio-bot opened pull request #287: Update i18next-xhr-backend to version 0.5.1
mildred has quit [Read error: Connection reset by peer]
ianopolous has joined #ipfs
ianopolous_ has quit [Read error: Connection reset by peer]
infinity0 has joined #ipfs
jaboja64 has quit [Ping timeout: 264 seconds]
<ipfsbot> [webui] greenkeeperio-bot opened pull request #288: Update i18next-xhr-backend to version 0.5.2
disgusting_wall has joined #ipfs
slothbag has joined #ipfs
tmg has quit [Ping timeout: 276 seconds]
tmg has joined #ipfs
lysobit has quit [Read error: Connection reset by peer]
ianopolous has quit [Ping timeout: 268 seconds]
peeweeHerman has joined #ipfs
<peeweeHerman> interesting.
<peeweeHerman> I assumed there's a IRC cor this
charley_ has joined #ipfs
lysobit has joined #ipfs
mildred has joined #ipfs
nicolagreco_ has quit [Quit: nicolagreco_]
charley_ has quit [Ping timeout: 246 seconds]
alu has quit [Ping timeout: 276 seconds]
charley_ has joined #ipfs
ianopolous has joined #ipfs
mildred has quit [Read error: Connection reset by peer]
ashark has quit [Read error: Connection reset by peer]
ashark_ has joined #ipfs
alu has joined #ipfs
Encrypt has quit [Ping timeout: 250 seconds]
M-2223 has quit [Ping timeout: 268 seconds]
gorhgorh has quit [Ping timeout: 250 seconds]
M-2223 has joined #ipfs
mmuller has quit [Ping timeout: 268 seconds]
tlevine has quit [Ping timeout: 250 seconds]
mmuller has joined #ipfs
warptangent has quit [Ping timeout: 268 seconds]
warptangent has joined #ipfs
amiller has quit [Ping timeout: 268 seconds]
M-Ingo has quit [Ping timeout: 250 seconds]
M-Ingo has joined #ipfs
cow_2001 has quit [Ping timeout: 240 seconds]
lopsided has left #ipfs ["WeeChat 0.4.2"]
charley_ has quit [Ping timeout: 260 seconds]
rektide has quit [Remote host closed the connection]
fil_redpill has quit [Ping timeout: 268 seconds]
cow_2001 has joined #ipfs
rektide_ has joined #ipfs
gorhgorh has joined #ipfs
M-victorm has quit [Ping timeout: 268 seconds]
cynology has quit [Ping timeout: 240 seconds]
M-victorm has joined #ipfs
ashark_ has quit [Ping timeout: 244 seconds]
tlevine has joined #ipfs
Encrypt has joined #ipfs
charley_ has joined #ipfs
infinity0 has quit [Remote host closed the connection]
infinity0 has joined #ipfs
Guest14307 has joined #ipfs
gorhgorh has quit [Remote host closed the connection]
M-fil has joined #ipfs
Akaibu has quit [Quit: Connection closed for inactivity]
ianopolous_ has joined #ipfs
ianopolous has quit [Ping timeout: 252 seconds]
zootella has joined #ipfs
mildred has joined #ipfs
micxjo has joined #ipfs
computerfreak has quit [Quit: Leaving.]
computerfreak has joined #ipfs
<lgierth> yay weekly number 6
chriscool has quit [Quit: Leaving.]
charley_ has quit [Ping timeout: 246 seconds]
amiller_ has joined #ipfs
charley_ has joined #ipfs
bsm117532 has quit [Remote host closed the connection]
computerfreak has quit [Quit: Leaving.]
charley_ has quit [Read error: Connection reset by peer]
<achin> \o/
charley_ has joined #ipfs
<achin> did it get hugged to death? i can't load it
<lgierth> hrm
<lgierth> i got the email though
<slothbag> me neither, should be on IPFS
<achin> :D
mildred has quit [Read error: Connection reset by peer]
<Bat`O> good job on the weekly, very helpfull :)
charley_ has quit [Ping timeout: 244 seconds]
peeweeHerman has quit [Ping timeout: 260 seconds]
zoobab has quit [Remote host closed the connection]
charley_ has joined #ipfs
zoobab has joined #ipfs
<whyrusleeping> yeah. its not loading for me...
<whyrusleeping> i thought it was because the gateways were being bad
<whyrusleeping> then i saw its not on ipfs :P
<lgierth> it might be fetching from ipfs.io
<lgierth> becuase the older ones load
<lgierth> it's supposed to be QmZBC1mmZAtP94qC6unXMm6qq2RCK9UL4AibehXQVgi5pB
<achin> that loads well for me
<lgierth> ok
<whyrusleeping> if anyone wants to try
<achin> i think tinyletter just has an infrastructure problem, probably a very boring kind
ygrek has quit [Ping timeout: 248 seconds]
<whyrusleeping> yeah, tinyletter isnt doing so well, just use those gateway links
<alu> is it safe to remove v03x from my code now
<alu> ipfs working againish
<whyrusleeping> yeah, you should be safe doing so
<achin> everyone should thank richardlitt for his continued effort to make these publications a reality
<whyrusleeping> alu: and definitely let me know anything that doesnt work right
computerfreak has joined #ipfs
ygrek has joined #ipfs
mildred1 has joined #ipfs
reit has joined #ipfs
charley_ has quit [Ping timeout: 244 seconds]
inconshr_ has joined #ipfs
inconshreveable has quit [Read error: Connection reset by peer]
charley_ has joined #ipfs
<whyrusleeping> any javascripters want to help out with some of this testing stuff: https://github.com/dignifiedquire/randor/issues
<whyrusleeping> reviewing the code, making it more robust, fixing issues
codehero has quit [Ping timeout: 246 seconds]
codehero has joined #ipfs