lgierth changed the topic of #ipfs to: Week 3+4 sprints: 1) Browser accesses go-ipfs https://git.io/vMKVu 2) 300 TB challenge https://git.io/vMKVr | 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
The_8472 has quit [Excess Flood]
The_8472 has joined #ipfs
akkad has quit [Ping timeout: 240 seconds]
mildred_ has joined #ipfs
mildred has quit [Ping timeout: 260 seconds]
matoro has quit [Ping timeout: 240 seconds]
<whyrusleeping> stevenaleach: whats that?
<stevenaleach> Ah... nm... works fine from the command line: mkdir foo; echo "hello" > foo/test.txt; touch foo/empty.file; ipfs add -r foo... But if I try it with this directory: /ipns/QmY6F81SgJQCAPw1zKtKR6v2LeoATt9JaR5ps8Ai9Z8Jw5/PUB then adding an empty file breaks things it seems.
reit has joined #ipfs
<whyrusleeping> i just pulled that dir down
<whyrusleeping> and did 'touch empty && ipfs add -r .'
<whyrusleeping> it appears to have worked fine, what problems are you seeing?
<stevenaleach> Not sure what I'm doing wrong here /ipns/QmY6F81SgJQCAPw1zKtKR6v2LeoATt9JaR5ps8Ai9Z8Jw5/PUB/gnosi.py If PUB contains an empty file of any kind, I get null for the pub link - not the directory full of files.
MDude has quit [Ping timeout: 260 seconds]
<kythyria[m]> What sort of chunk sizes are efficient for IPFS?
bastianilso has quit [Quit: bastianilso]
<stevenaleach> with gnos an existing directory hash: l = ipfs.add(PUB_DIR,recursive=True)[-1]['Hash']; n = PUB_DIR.split("/")[-1]; gnos = ipfs.object_patch_add_link(gnos,n,l)['Hash'], if PUB_DIR contains no empty files, I get a PUB_DIR named directory in the main directory (what I want). If I put an empty file in PUB_DIR, then I get a link to nothing instead in the main directory..
<stevenaleach> Argg.. works fine from the commandline but fails with the code above.... here's what I get when the script publishes itself with an empty in ~/PUB: /ipfs/QmcCT9rukfrQ3DdegNBwFKCGnSttKcxTmCyJ1SauszymTo ... when I delete the empty and rerun, /ipfs/QmZ5GPnvhyQ5L8QdrhKHtWYdvmFgGSmbbN5ejGpTindztm...
<whyrusleeping> stevenaleach: whats wrong there?
<whyrusleeping> oh, i see. the pub directory
<whyrusleeping> got it
<Kubuxu> I would say files api is much simple in this case
<Kubuxu> and it will properly work when sharding comes into play
<stevenaleach> but if I add from the command line with "ipfs add -r PUB", I get a good link. If I do it from the python api I get a null directory.
<stevenaleach> files api?
<whyrusleeping> stevenaleach: hrm... did you write the python api?
<whyrusleeping> i wouldnt put much faith in it being correct (i don't beleive its well tested)
<Kubuxu> `ipfs files --help`/.
<stevenaleach> Thought that was for copying to mfs from ipfs?
<Kubuxu> yeah and then you can take it back
akkad has joined #ipfs
<Kubuxu> ipfs files stat --hash /some/dir
<Kubuxu> to get hash of that dir
matoro has joined #ipfs
<stevenaleach> so forget ipfsapi and use the commandline tool directly?
dryajov1 has joined #ipfs
<Kubuxu> it also works through http api
<stevenaleach> Ok... so what does that mean in terms of writing python code to talk to it?
dryajov1 has quit [Client Quit]
<Kubuxu> you would have to have similar bindings you have for `ipfs add` `ipfs object ...` but for `ipfs files ...` which probably wasn't written by anyone
MDude has joined #ipfs
<stevenaleach> but access those bindings how?
<mguentner> Kubuxu: it is, only api.files_flush() is missing (will add that soonish)
<Kubuxu> aah
<Kubuxu> so there is the answer
<Kubuxu> flush isn't criticla (as long as you are not using --flush=false`
<stevenaleach> Wow... any speed advantage over python subprocesses calling the CLI tool? If not, I'm guessing that's a whole lot easier than learning how to do tcip connections just to talk to the machine you're currently on :-/
Boomerang has quit [Quit: leaving]
ygrek has joined #ipfs
fleeky_ has quit [Read error: Connection reset by peer]
fleeky__ has joined #ipfs
<stevenaleach> Ack... I don't get it... I have no idea what the files api does.... what does "ipfs files mkdir" do? does it just create a local files system directory or does it add something to ipfs 'cause I just tried "ipfs files mkdir /foo" and it ran just fine... and didn't give me a hash.. what was created? what does this command, or any of the rest of the "files" do?
<mguentner> stevenaleach: this ^ is the issue, if self.directory is empty, the os.walk generator will be empty and nothing will be added to names
<mguentner> please verify and then file a bug
palkeo has quit [Ping timeout: 255 seconds]
cemerick has joined #ipfs
kvda has quit [Ping timeout: 252 seconds]
arkimedes has joined #ipfs
<mguentner> stevenaleach: just tried to add an empty directory and it works, so forget what I said: http://ipfs.io/ipfs/QmPZLJ3CZYgxH4K1w5jdbAdxJynXn5TCB4kHy7u8uHC3fy
stevenaleach has quit [Remote host closed the connection]
jkilpatr has quit [Ping timeout: 255 seconds]
infinity0 has quit [Remote host closed the connection]
stevenaleach has joined #ipfs
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
dryajov1 has joined #ipfs
infinity0 has joined #ipfs
ianopolous has quit [Quit: Leaving]
kvda has joined #ipfs
<stevenaleach> Whew... Thanks, mguentner! I just ran an update on all my pip installed packages and though I could have sworn I saw "requirement already up to date" for ipfs, things suddenly work - it's happy with both empty directories and empty files. Yay. Thanks!
<mguentner> stevenaleach: awesome
ygrek has quit [Ping timeout: 240 seconds]
tmg has quit [Ping timeout: 252 seconds]
HostFat_ has joined #ipfs
<kvda> just manually installing go-ipfs form source for the first time on alpine-linux
<stevenaleach> Arg... ok... it seems to be random whether it works or not... how do I install the latest git version?
<kvda> go install ./cmd/ipfs
<kvda> doesn't seem to make a bin file available in /go/bin?
<stevenaleach> version in pip isn't working yet.
<kvda> where does the 'ipfs' bin end up after go install ./cmd/ipfs?
<Kubuxu> kvda: do you have GOBIN set?
HostFat__ has quit [Ping timeout: 240 seconds]
bmoriarty has left #ipfs [#ipfs]
<kvda> @Kubuxu no...
<kvda> it's just on the path
<Kubuxu> yeah, it was quite recent change in golang iirc
<Kubuxu> set it to $GOPATH/bin
<kvda> ok great, thanks
<stevenaleach> NM. got it.
dignifiedquire has quit [Quit: Connection closed for inactivity]
kvda has quit [Remote host closed the connection]
<stevenaleach> Well.. dern. I was mistaken. Empty files still break things. I'm not going to worry about it for now, I just won't have empty files.
<stevenaleach> If I want to avoid library issues and talk to ipfs directly (the command line tool adds directories with empty files or empty directories just fine), and if my code will always be running on the same node as the daemon, is there a reason to use the local http gateway versus forking subprocesses running the command line tool?
kvda has joined #ipfs
<kvda> Kubuxu exporting GOBIN fixed the install
<kvda> thanks again
<gde33> is it/will it be possible to remove copyright violations from the network?
<gde33> or any other kind of not-nice materials
<SchrodingersScat> gde33: is the existing hashblocking not sufficient?
<gde33> SchrodingersScat: just curious about the paradox of not nice things vs censorship/centralized control
<gde33> I'm not entirely familiar with the way ipfs works atm
<SchrodingersScat> gde33: seems like they can block certain hashes, like there are some you can't reach from ipfs.io
<stevenaleach> Oh... Crap. It's something fundamentally broken with py-ipfsapi I'm thinking. It sometimes works and sometimes doesn't when adding a directory (at least the way I've been doing it?) Sometimes, the directory and all its contents (to include empty files) is published by my system and sometimes a null link is published in its place. If I run my (kludgy and ugly so far) script again, the dice are re-rolled. Definitely going to
<stevenaleach> have to rewrite to call go-ipfs from the commandline instead and see if I can get some consistent plumbing here.
<gde33> SchrodingersScat: seems a can-o-wurms, I cant imagine a nice formula. Will try read up, thanks
<whyrusleeping> stevenaleach: yeah, the python ipfs api isnt complete or tested yet
<stevenaleach> Guessing that now :-) Reworking to just call go-ipfs in a subprocess as needed.
tclass has joined #ipfs
tclass has quit [Ping timeout: 240 seconds]
<SchrodingersScat> gde33: what are your concerns?
<gde33> SchrodingersScat: just curious
matoro has quit [Ping timeout: 260 seconds]
kulelu88 has quit [Quit: Leaving]
chris613 has quit [Quit: Leaving.]
aeternity has joined #ipfs
stevenaleach has quit [Remote host closed the connection]
<kythyria[m]> It's nonetheless equivalent to asking if there's some mechanism to remove copyvio from the web.
<SchrodingersScat> like a hammer?
dryajov2 has joined #ipfs
dryajov has quit [Ping timeout: 255 seconds]
zombu2 has quit [Ping timeout: 255 seconds]
mguentner has quit [Quit: WeeChat 1.6]
Mateon3 has joined #ipfs
kevina_ has joined #ipfs
Mateon1 has quit [Ping timeout: 256 seconds]
Mateon3 is now known as Mateon1
mguentner has joined #ipfs
matoro has joined #ipfs
kevina_ has quit [Quit: Leaving]
Mateon3 has joined #ipfs
Mateon1 has quit [Ping timeout: 240 seconds]
Mateon3 is now known as Mateon1
Mateon2 has joined #ipfs
Mateon1 has quit [Ping timeout: 245 seconds]
Mateon2 is now known as Mateon1
qgnox has joined #ipfs
Foxcool has joined #ipfs
mguentner2 has joined #ipfs
mguentner has quit [Ping timeout: 248 seconds]
qgnox has quit [Quit: Leaving]
aeternity has quit [Ping timeout: 240 seconds]
stevenaleach has joined #ipfs
dignifiedquire has joined #ipfs
<mekel> hi deltab
<mekel> successfully moved it to usr/local/bin
<mekel> now i am stuck on ipfs --help
<mekel> i get bash: /usr/local/bin/ipfs: cannot execute binary file: Exec format error
<deltab> run the command file /usr/local/bin/ipfs
<deltab> to find out what it is
<deltab> what does it say?
galois_dmz has joined #ipfs
<mekel> ran file /usr/local/bin/ipfs
<mekel> got /usr/local/bin/ipfs: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, not stripped
<mekel> can you decypher that for me deltab? thanks for the help!!
<deltab> that looks okay: it's an executable for 64-bit linux
<deltab> my guess is that you're not running 64-bit linux
<deltab> what does uname -a output?
<mekel> Linux mekel-VirtualBox 4.4.0-59-generic #80-Ubuntu SMP Fri Jan 6 17:36:54 UTC 2017 i686 i686 i686 GNU/Linux
<deltab> i686 means 32-bit
<deltab> you'll need to download the 32-bit version
<mekel> ah! got it! thanks so much!
lachenmayer has quit [Ping timeout: 260 seconds]
zopsi has quit [Ping timeout: 264 seconds]
xelra has quit [Remote host closed the connection]
Zaibon has quit [Ping timeout: 255 seconds]
area has quit [Ping timeout: 246 seconds]
Zaibon has joined #ipfs
area has joined #ipfs
zopsi has joined #ipfs
lachenmayer has joined #ipfs
xelra has joined #ipfs
nausea has joined #ipfs
nausea has joined #ipfs
nausea has quit [Changing host]
Guest27309 has quit [Ping timeout: 258 seconds]
Oatmeal has joined #ipfs
tilgovi has joined #ipfs
dryajov1 has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
ylp1 has joined #ipfs
rendar has joined #ipfs
tilgovi has quit [Ping timeout: 255 seconds]
mildred has joined #ipfs
mildred_ has quit [Ping timeout: 240 seconds]
Caterpillar has joined #ipfs
G-Ray_ has joined #ipfs
Caterpillar has quit [Quit: You were not made to live as brutes, but to follow virtue and knowledge.]
arkimedes has quit [Ping timeout: 256 seconds]
mildred1 has joined #ipfs
Caterpillar has joined #ipfs
stevenaleach has quit [Remote host closed the connection]
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
s_kunk has quit [Ping timeout: 256 seconds]
tclass has joined #ipfs
arkimedes has joined #ipfs
tclass has quit [Ping timeout: 240 seconds]
kenshyx has joined #ipfs
s_kunk has joined #ipfs
espadrine has joined #ipfs
dryajov2 has quit [Read error: Connection reset by peer]
dryajov has joined #ipfs
dryajov has quit [Read error: Connection reset by peer]
dryajov1 has joined #ipfs
dryajov has joined #ipfs
dryajov1 has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
mildred has quit [Ping timeout: 252 seconds]
mildred1 has quit [Ping timeout: 258 seconds]
mildred has joined #ipfs
mildred1 has joined #ipfs
bastianilso has joined #ipfs
herzmeister has joined #ipfs
herzmeister has quit [Client Quit]
espadrine_ has joined #ipfs
pbondoer has joined #ipfs
aeternity has joined #ipfs
krzysiekj has quit [Ping timeout: 240 seconds]
aeternity has quit [Ping timeout: 256 seconds]
espadrine has quit [Ping timeout: 256 seconds]
aeternity has joined #ipfs
Oatmeal has quit [Quit: Suzie says, "TTFNs!"]
espadrine_ has quit [Ping timeout: 248 seconds]
arkimedes has quit [Ping timeout: 256 seconds]
kenshyx has quit [Quit: Leaving]
tmg has joined #ipfs
aeternity has quit [Ping timeout: 240 seconds]
aeternity has joined #ipfs
krzysiekj has joined #ipfs
Oatmeal has joined #ipfs
wallacoloo____ has quit [Quit: wallacoloo____]
Oatmeal has quit [Quit: Suzie says, "TTFNs!"]
Oatmeal has joined #ipfs
jkilpatr has joined #ipfs
Oatmeal has quit [Quit: Suzie says, "TTFNs!"]
espadrine has joined #ipfs
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
kvda has quit [Quit: Textual IRC Client: www.textualapp.com]
Oatmeal has joined #ipfs
mguentner2 is now known as mguentner
tclass has joined #ipfs
robattila256 has joined #ipfs
tclass has quit [Ping timeout: 240 seconds]
robattila256 has quit [Quit: WeeChat 1.7]
Guest27309 has joined #ipfs
robattila256 has joined #ipfs
appa has quit [Ping timeout: 255 seconds]
Hoosilon has quit [Ping timeout: 248 seconds]
cemerick has quit [Ping timeout: 248 seconds]
cemerick has joined #ipfs
guaraqe[m] has joined #ipfs
jam[m] has joined #ipfs
albino_ has quit [K-Lined]
kvda has joined #ipfs
tclass has joined #ipfs
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tclass has quit [Ping timeout: 240 seconds]
kvda has joined #ipfs
cemerick has quit [Ping timeout: 248 seconds]
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
aeternity has quit [Ping timeout: 255 seconds]
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
wmoh has quit [Ping timeout: 256 seconds]
Boomerang has joined #ipfs
cemerick has joined #ipfs
pfrazee has quit [Remote host closed the connection]
Oatmeal has quit [Ping timeout: 240 seconds]
Boomerang has quit [Ping timeout: 276 seconds]
<phorse> does anybody know what's going on with pubsub?
pfrazee has joined #ipfs
Boomerang has joined #ipfs
Boomeran1 has joined #ipfs
Boomerang has quit [Ping timeout: 255 seconds]
Oatmeal has joined #ipfs
shizy has joined #ipfs
aeternity has joined #ipfs
<keks> phorse: what do you mean?
<phorse> keks: last night I was reading about various suggested pubsub implementations for ipfs, and I'm curious if there is one under active development
<victorbjelkholm> phorse: yeah, there is implementations of floodsub in both go-ipfs and js-ipfs
<phorse> victorbjelkholm: thanks! I've been wanting to tinker around with that, but I didn't want to go too far along an un-blessed path
galois_dmz has quit [Remote host closed the connection]
galois_dmz has joined #ipfs
mildred2 has joined #ipfs
mildred_ has joined #ipfs
galois_d_ has joined #ipfs
galois_dmz has quit [Read error: Connection reset by peer]
mildred has quit [Ping timeout: 258 seconds]
mildred1 has quit [Ping timeout: 240 seconds]
mildred has joined #ipfs
mildred2 has quit [Ping timeout: 258 seconds]
mildred__ has joined #ipfs
Boomeran1 has quit [Ping timeout: 276 seconds]
galois_d_ has quit [Ping timeout: 260 seconds]
mildred_ has quit [Ping timeout: 260 seconds]
<victorbjelkholm> phorse: ah, thinker ahead and try it out! Let us know what you think of it
mildred has quit [Ping timeout: 240 seconds]
cemerick has quit [Ping timeout: 248 seconds]
cemerick has joined #ipfs
mildred2 has joined #ipfs
Boomerang has joined #ipfs
pbondoer has quit [Remote host closed the connection]
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
ecloud has quit [Ping timeout: 248 seconds]
ecloud has joined #ipfs
ylp1 has quit [Quit: Leaving.]
tmg has quit [Ping timeout: 256 seconds]
aeternity has quit [Ping timeout: 264 seconds]
cemerick has quit [Ping timeout: 248 seconds]
dryajov2 has joined #ipfs
<lgierth> i'm updating the media.ccc.de mirror (all the 33c3 files are there now)
galois_dmz has joined #ipfs
<lgierth> victorbjelkholm: are you cool with still running the provsn base stuff on the jenkins hosts? i.e. cjdns, the various exporters, go
<lgierth> and ssh keys
dryajov has quit [Ping timeout: 264 seconds]
<victorbjelkholm> lgierth: sure
<lgierth> that'd also simplify the prometheus setup a bit
<victorbjelkholm> lgierth: just added a jenkins-master host, 104.236.203.34
<lgierth> cool -- i'll head home for the calls now. i can run the provsn deploy during the calls
<victorbjelkholm> lgierth: awesome, let me know how it goes :)
aquentson has joined #ipfs
<sprint-helper1> The next event "All Hands Call" is in 15 minutes.
<lgierth> yes yes sprint-helper1 on my way
jkilpatr has quit [Ping timeout: 252 seconds]
cemerick has joined #ipfs
<richardlitt> lgierth: Do you know if shams ever joins IRC?
Boomerang has quit [Quit: leaving]
galois_d_ has joined #ipfs
<Kubuxu> richardlitt: do we have call link?
cemerick has quit [Ping timeout: 248 seconds]
<richardlitt> One second
galois_dmz has quit [Ping timeout: 240 seconds]
<sprint-helper1> ========================= IPFS Sprint: IPFS All Hands Call =========================
<sprint-helper1> Notes: https://zoom.us/j/3339991818
<sprint-helper1> Sprint Issue: https://github.com/ipfs/pm/issues/370
<sprint-helper1> Topic: IPFS All Hands Call
<sprint-helper1> Watch Stream: https://www.youtube.com/watch?v=cSZZbR8p4no
<sprint-helper1> ================================================================================
<sprint-helper1> ========================= IPFS Sprint: IPFS All Hands Call =========================
<sprint-helper1> Sprint Issue: https://github.com/ipfs/pm/issues/370
<sprint-helper1> Topic: IPFS All Hands Call
<sprint-helper1> Join Call: https://zoom.us/j/3339991818
<sprint-helper1> Watch Stream: https://www.youtube.com/watch?v=cSZZbR8p4no
<sprint-helper1> ================================================================================
<richardlitt> There?
jonnycrunch has joined #ipfs
jkilpatr has joined #ipfs
<lgierth> richardlitt: i don't think i've ever seen her here
<kevina> listening in via stream, can jump in if needed...
<Kubuxu> kevina: tell me if something breaks
<kevina> Kubuxu: okay
<Kubuxu> flyingzumwalt: I changed the link to my iptest it is quite different
<flyingzumwalt> kubuxu++
<Kubuxu> it isn't perfect, but it is better than nothing
lapinot has quit [Quit: ZNC 1.6.3 - http://znc.in]
lapinot has joined #ipfs
<lapinot> hi
<lapinot> i was wondering what is happening with ipld: is it useable (or still in early pre-release)? Will it fully replace the current ipfs object model (and thus introduce a break in the api)?
<lgierth> yeah it's still in pre-release, but usable
<lgierth> and the old object model (merkledag, unixfs) will continue to work
<lapinot> i'm asking because i'm eager to see an ipfs+ipld backed git repo (i mean really with the object structure, not just dumping the .git directory in ipfs) to see how it works
<lgierth> same here :) the cool thing is we can address any content-addressed system's data with that system's hashes, using CID: github.com/ipld/cid
<lgierth> e.g. kumavis is dealing with ethereum data structures in ipfs, iirc
<lgierth> and whyrusleeping has built a zcash block explorer on ipfs
<Kubuxu> keks: can you send the issue here too.
<lapinot> nice then... is there any roadmap? I can't find any! (sure it's great to have such a tiddily organised set of repos but the downside is the learning curve)
pfrazee_ has joined #ipfs
pfrazee has quit [Read error: Connection reset by peer]
<Kubuxu> keks: so what is the plan for it right now?
<Kubuxu> as there are a lot of long comments there :)
<lapinot> as a side question: has there been any high load test of the ipfs network? If ipld is going to be more or less stable, i'm going to work on some fully distributed data store (kinda to replace that awefully centralized torrent community). (note: didn't see this topic really debated here, is this something i should avoid?)
<keks> Kubuxu: first, rip it out of the go-ipfs tree
<keks> then, don't pass a response to cmd.Call, but a responseemitter
<keks> that writes e.g. to the http connection and has full control over it
<keks> and the http client returns a response
<keks> that has a smaller api surface than it currently has
<keks> also i remove the Output() madness
<keks> now you can ResponseEmitter.Emit(value)
koalalorenzo has joined #ipfs
<keks> if it is an io.Reader() stream it to the connection
<lapinot> edit: just read the topic line with link to the 300TB challenge, so it's partially answered
<keks> else, send it to the response
<keks> the response type now has a Next() (interface{}, error} method
<Kubuxu> yeah
<keks> if you sent an io.Reader, that reader will be returned there
vapid is now known as Redd1t
<keks> imho that api is just as powerful but has much less weird corner cases
<Kubuxu> what about allowing to specif the encoder in the API call?
G-Ray_ has quit [Quit: G-Ray_]
<kevina> Kubuxu: I see I have voice now, cool.
<kevina> Now what does that mean. :)
* kevina shows his irc ignorance
<Kubuxu> almost nothing, higher flood limit
<achin> it means you have a very attractive hat!
<kevina> "higher flood limit" ?
<richardlitt> Note: We are going to take an extra 15 minutes for this All Hands call to do demos about data.gov
<kevina> never mind, looked it up
tclass has joined #ipfs
<keks> Kubuxu: yeah that is an option i just want to get legacy compatibility done first
<Kubuxu> it is already in the PAI
<Kubuxu> API
<victorbjelkholm> FrankPetrilli: awesome work on the kubernetes-ipfs stuff! :)
tclass has quit [Ping timeout: 240 seconds]
espadrine has quit [Ping timeout: 255 seconds]
ygrek has joined #ipfs
galois_d_ has quit [Remote host closed the connection]
galois_dmz has joined #ipfs
koalalorenzo has quit [Quit: Sto andando via]
Encrypt has joined #ipfs
<Kubuxu> sorry that the stream couldn't see what I was talking about
galois_dmz has quit [Ping timeout: 245 seconds]
espadrine has joined #ipfs
arpu has joined #ipfs
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
s_kunk has quit [Ping timeout: 240 seconds]
aquentson1 has joined #ipfs
<keks> Kubuxu: currently we use Marshalers which I want to deprecate in favor of Encoders, which directly operate on an io.Writer
<keks> bye everyone, gotta run
aquentson has quit [Ping timeout: 248 seconds]
aquentson1 is now known as aquentson
<sprint-helper1> Sprint Issue: https://github.com/ipfs/pm/issues/370
<sprint-helper1> Join Call: https://zoom.us/j/3339991818
<sprint-helper1> Topic: IPFS Sprint Sync call
<sprint-helper1> ========================= IPFS Sprint: IPFS Sprint Sync call =========================
<sprint-helper1> Watch Stream: https://www.youtube.com/watch?v=cSZZbR8p4no
<sprint-helper1> ==================================================================================
matoro has quit [Ping timeout: 252 seconds]
seagreen has joined #ipfs
<richardlitt> thanks keks. See you.
Guest27309 has quit [Ping timeout: 252 seconds]
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
Boomerang has joined #ipfs
Guest27309 has joined #ipfs
lgierth changed the topic of #ipfs to: Week 5+6 sprints: 1) Solidify IPLD https://git.io/vDkS7 2) CI/CD https://git.io/vDk9v 3) Orbit release process https://git.io/vDk9U | 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
lgierth changed the topic of #ipfs to: Week 5+6: 1) IPLD https://git.io/vDkS7 2) CI/CD https://git.io/vDk9v 3) Orbit https://git.io/vDk9U | 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
galois_dmz has joined #ipfs
jkilpatr has quit [Ping timeout: 240 seconds]
matoro has joined #ipfs
<keks> daviddias: let's talk tomorrow about what you meant with go-ipfs-api, okay?
<keks> i didn't really get that
tclass has joined #ipfs
Boomerang has quit [Ping timeout: 240 seconds]
Boomerang has joined #ipfs
Redd1t is now known as RighteousCrusade
RighteousCrusade is now known as RighteousCrusder
RighteousCrusder is now known as RighteousCru
RighteousCru is now known as RighteousCrouton
Encrypt has quit [Quit: Quit]
wallacoloo____ has joined #ipfs
jkilpatr has joined #ipfs
fleeky__ has quit [Remote host closed the connection]
<daviddias> keks: sounds good :) I'll be available all day
ashark_ has joined #ipfs
Foxcool has quit [Ping timeout: 256 seconds]
matoro has quit [Ping timeout: 248 seconds]
aquentson1 has joined #ipfs
<kumavis> dignifiedquire: took a look at parity implementation and am really lost - i have some learning to do
<kumavis> would love if we could take some time to pair on that
<dignifiedquire> looked at the code a little, but pretty lost in terms of what goes where as well and haven't found any docs for that
<dignifiedquire> do you know someone who knows more in terms of what is where that would be willing to help us out?
aquentson has quit [Ping timeout: 255 seconds]
matoro has joined #ipfs
RighteousCrouton is now known as janika
cemerick has joined #ipfs
s_kunk has joined #ipfs
<kumavis> im asking ethcore for someone
<kumavis> i was looking at the http rpc impl and its done across many files so its a bit complicated for a complete newb like me
fleeky has joined #ipfs
<lgierth> i think the parity team is largely in berlin?
hsanjuan1 has joined #ipfs
hsanjuan1 has quit [Client Quit]
sprint-helper has joined #ipfs
sprint-helper1 has quit [Remote host closed the connection]
shamb0t has joined #ipfs
<dignifiedquire> lgierth: no idea
<dignifiedquire> kumavis: json rpc is a library that only does json rpc so I don't think we can reuse that
<kumavis> no i mean more where they are spinning up a server and exposing parity core functionality to it
<kumavis> we wouldnt reuse the json rpc part but the rest is relevant
<dignifiedquire> that's what I mean, json rpc spins up its own hyper instance as http server, but ot doesn't look like it's exposed in a reusable way
aquentson has joined #ipfs
aquentson1 has quit [Ping timeout: 248 seconds]
apiarian has quit [Ping timeout: 255 seconds]
palkeo has joined #ipfs
<kumavis> sounds like maciejhirsz has been assigned to us : )
dryajov1 has joined #ipfs
Ragnis has quit [Quit: ZNC - http://znc.in]
Ragnis has joined #ipfs
wallacoloo____ has quit [Quit: wallacoloo____]
dryajov1 has quit [Client Quit]
appa has joined #ipfs
<dignifiedquire> good luck to him :D
<dignifiedquire> is there an irc channel for parity?
john has joined #ipfs
john is now known as Guest87261
rendar has quit [Ping timeout: 255 seconds]
shamb0t has quit [Remote host closed the connection]
<kumavis> i dont think so
wallacoloo____ has joined #ipfs
<kumavis> they are on gitter
shamb0t has joined #ipfs
<kumavis> i invited him to this irc channel
Guest27309 has quit [Ping timeout: 260 seconds]
<kumavis> seems he is in berlin, maybe an ipfs berliner could meet him at a cafe to help ( just an idea )
<kumavis> i think the requirements are pretty straightforward
<kumavis> i just really want to have this somewhat useable by the end of the week, for the eth-ipfs hack week
<kumavis> things seem to be moving forward but so is the clock
<lgierth> i don't think it'd be helpful for any random person to meet him
<dignifiedquire> none of the ones in Berlin know rust so not sure that helps, but I'll try and make myself available, means he is in the same timezone as me at least
<lgierth> i have 0 context about your work
<lgierth> yup cool
<dignifiedquire> lgierth: try to keep up ;)
<kumavis> that would be awesome, i will be less available during his timezone
shamb0t has quit [Ping timeout: 248 seconds]
Ragnis has quit [Quit: ZNC - http://znc.in]
shamb0t has joined #ipfs
<kumavis> once that is exposed i intend to wrap it as a block service and serve from a normal ipfs peer
<kumavis> is bitswap cid friendly yet?
_rht has joined #ipfs
Ragnis has joined #ipfs
apiarian has joined #ipfs
aedigix has quit [Remote host closed the connection]
aedigix has joined #ipfs
apiarian has quit [Ping timeout: 255 seconds]
apiarian has joined #ipfs
tclass has quit [Remote host closed the connection]
Boomerang has quit [Quit: leaving]
tilgovi has joined #ipfs
galois_dmz has quit [Remote host closed the connection]
<dignifiedquire> it does understand cids in the latest versions
<kumavis> > I think I'll be able to spend most of the rest of this week on it, will see how far I get.
<kumavis> woohooo
<kumavis> really excited ::::: )
<kumavis> i am now very optimistic about having a libp2p based ethereum light client MVP by the end of the hack week
john1 has joined #ipfs
Guest87261 has quit [Ping timeout: 252 seconds]
tilgovi has quit [Ping timeout: 255 seconds]
espadrine has quit [Ping timeout: 264 seconds]
wallacoloo____ has quit [Quit: wallacoloo____]
<dignifiedquire> that would be pretty awesome
mildred2 has quit [Ping timeout: 258 seconds]
pfrazee_ has quit [Remote host closed the connection]
apiarian has quit [Ping timeout: 240 seconds]
wallacoloo____ has joined #ipfs
Encrypt has joined #ipfs
apiarian has joined #ipfs
neurrowcat has joined #ipfs
<kumavis> @daviddias hows js-bitswap? cid'd up and ready to go?
rendar has joined #ipfs
rendar has joined #ipfs
rendar has quit [Changing host]
<daviddias> hey hey :) great to hear again from you kumavis!
<daviddias> We just entered in the 'Solidify IPLD Sprint'
<daviddias> bitswap speaks CID for a while now
<daviddias> but I believe your question is more about 'is the DAG API merged'
<daviddias> Do you want to tag along with us in this Spring https://github.com/ipfs/pm/issues/343 ?
tclass has joined #ipfs
apiarian has quit [Ping timeout: 255 seconds]
stevenaleach has joined #ipfs
espadrine_ has joined #ipfs
apiarian has joined #ipfs
pfrazee has joined #ipfs
<kumavis> ive been listening in on the meetings, they just overlap with my commute
<kumavis> so hard to join properly
apiarian has quit [Ping timeout: 258 seconds]
apiarian has joined #ipfs
galois_dmz has joined #ipfs
<kumavis> daviddias: if i add my name to js impl of eth-objects
<kumavis> what do i need to do
<kumavis> to fulfill my duty as sprint participant
tilgovi has joined #ipfs
tclass has quit [Remote host closed the connection]
emerson has quit [Remote host closed the connection]
emerson has joined #ipfs
<daviddias> A lot of this sprint is focus on getting all the stuff we need in order to support eth dev on top of IPLD, the tasks listed represent our understanding of what is needed, but getting a status update from you and a list of things you expect to be able to do next week would be awesome to understand what we are missing
<daviddias> then we can divide and conquer in this list of tasks :)
tmg has joined #ipfs
<kumavis> cool - daviddias i assume i already missed the relevant call but im available if you want me to jump into one
neurrowcat has quit [Quit: Deebidappidoodah!]
<kumavis> added to the doodle
<daviddias> that call was last week, but happy to chat for a bit
<daviddias> wanna do it now?
cemerick has quit [Ping timeout: 248 seconds]
<kumavis> sure
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
Encrypt has quit [Quit: Quit]
SuperPhly has joined #ipfs
jonnycrunch has quit [Quit: jonnycrunch]
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
wallacoloo____ has quit [Quit: wallacoloo____]
bastianilso has quit [Read error: Connection reset by peer]
bastianilso has joined #ipfs
frmendes has joined #ipfs
Boomerang has joined #ipfs
dryajov1 has joined #ipfs
dryajov1 has quit [Client Quit]
bastianilso has quit [Quit: bastianilso]
bastianilso has joined #ipfs
galois_dmz has quit [Remote host closed the connection]
aquentson1 has joined #ipfs
<kumavis> wooo so excited for eth-ipfs hack week
<kumavis> head my explode
<daviddias> :D :D
aquentson has quit [Ping timeout: 255 seconds]
rendar has quit [Quit: std::lower_bound + std::less_equal *works* with a vector without duplicates!]
aquentson has joined #ipfs
aquentson1 has quit [Ping timeout: 255 seconds]
jkilpatr has quit [Ping timeout: 276 seconds]
chris613 has joined #ipfs
aquentson has quit [Ping timeout: 248 seconds]
tclass has joined #ipfs
aquentson has joined #ipfs
SuperPhly has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bastianilso has quit [Quit: bastianilso]
wallacoloo____ has joined #ipfs
tclass has quit [Ping timeout: 255 seconds]
<elopio> I've just pushed v0.4.5-rc1 to the Ubuntu candidate channel. To get it: $ sudo snap install ipfs --candidate
<lgierth> thanks elopio <3
tmg has quit [Ping timeout: 240 seconds]
aquentson1 has joined #ipfs
aquentson has quit [Ping timeout: 240 seconds]
matoro has quit [Ping timeout: 252 seconds]
tg has quit [Ping timeout: 252 seconds]
tilgovi has quit [Ping timeout: 264 seconds]
tg has joined #ipfs
galois_dmz has joined #ipfs
matoro has joined #ipfs
frmendes has quit [Quit: Textual IRC Client: www.textualapp.com]
ashark_ has quit [Ping timeout: 240 seconds]
palkeo has quit [Quit: Konversation terminated!]
wrouesnel has joined #ipfs
arpu has quit [Remote host closed the connection]
tmg has joined #ipfs
wallacoloo____ has quit [Ping timeout: 240 seconds]
wallacoloo____ has joined #ipfs