lgierth changed the topic of #ipfs to: go-ipfs 0.4.13 is out! Please try out: https://dist.ipfs.io/go-ipfs/v0.4.13 | Also: #libp2p #filecoin #ipfs-dev | IPFS, the InterPlanetary FileSystem: https://github.com/ipfs/ipfs | Logs: https://botbot.me/freenode/ipfs/ | Forums: https://discuss.ipfs.io | Code of Conduct: https://git.io/vVBS0
samm has joined #ipfs
colatkinson has quit [Quit: colatkinson]
<MikeFair> jesse22, honestly I don't know how go cross compiles isn't it usually something like cpu_arch
<jesse22> MikeFair: usually it's just GOOS and GOARCH
<MikeFair> ahh
<MikeFair> Why not have go do it then?
<jesse22> but the Makefiles are fancy and I want to do it the supported way - whatever way the official dist. does it
<MikeFair> go build seems sufficient for me
<Elon_Satoshi[m]> whyn'tve*
<MikeFair> When I read the docs for manual windows installs (that can't use the makefiles) they aren't doing a whole lot
<MikeFair> but I'm only building ipfs
<MikeFair> but I'm only building ipfs.exe
Ecran has quit [Quit: Going offline, see ya! (www.adiirc.com)]
faenil has quit [Remote host closed the connection]
<jesse22> hmm it fails wanting to build things in my $GOROOT - which the building user doesn't have permission to
girlhood has quit [Ping timeout: 248 seconds]
faenil has joined #ipfs
<MikeFair> jesse22, I always thought GOROOT was Go's homedir and GOPATH is where our stuff should go
<MikeFair> (both having almost the same structure)
infinity0_ has joined #ipfs
infinity0_ has quit [Changing host]
infinity0 has joined #ipfs
infinity0 has quit [Killed (barjavel.freenode.net (Nickname regained by services))]
* MikeFair lacks much GoFoo
<MikeFair> err Go Fu ;)
<jesse22> sure, yeah. but why is the ipfs build process trying to write things to a place it shouldn't?
<jesse22> (or at least, has no permission to)
<MikeFair> I think it's trying to build something that it thinks needs to be built
<MikeFair> and that library is located in a place the user can't write
lemonpepper24 has joined #ipfs
<jesse22> ah i see, the build specified -i which means to install packages - which writes them back to GOROOT
<jesse22> omit that in mk/golang.mk and you're good (albeit slower compile)
larpanet has joined #ipfs
larpanet has quit [Ping timeout: 260 seconds]
<MikeFair> lgierth, whyrusleeping : Oh I have a Q! I recently successfully rebuilt go-ipfs --- but it's now API version 0.4.14-dev and the daemon won't connect to any peers
<MikeFair> Any advice?
<MikeFair> Actually, nm
<MikeFair> I think I know what I did wrong ; I messed with the resolver code and probably broke something
<whyrusleeping> MikeFair: you could be running into a bug we're in the process of fixing
<MikeFair> okay yeah; I rolled back all my changes (git reset --hard HEAD) and rebuilt ; same issue, no peers
<whyrusleeping> What OS?
<lgierth> we have a bug where we can't connect to anyone?
<lgierth> these are the kinds of bugs i'd like to know about lol, ipfs.io is running the latest master
<whyrusleeping> i'm aware of one thats been fixed, it only applied to windows as far as I know
<MikeFair> Windows 7
<whyrusleeping> I've been waiting for stebalien to bubble the updates through, but I guess I might have to do it
<lgierth> aah ok
<whyrusleeping> MikeFair: yeah, you might have to use 0.4.13 for now
* MikeFair muses "yeah but I lack the `go get` Fu to keep it there
<stebalien> whyrusleeping: have you merged the thing?
<whyrusleeping> I pushed an update to the cmds lib PR
<whyrusleeping> is everything else ready to go?
<MikeFair> And I know you guys have answered this before, but I just ran into this use case myself and couldn't remember the answers
<MikeFair> If I want to add something to ipfs, and then see it through the go console daemon; what are my options?
<MikeFair> err add something using js-ipfs
<whyrusleeping> stebalien: I think something might not be pinned
jkilpatr_ has quit [Ping timeout: 255 seconds]
<stebalien> All the things are pinned.
<stebalien> whyrusleeping: as far as I can tell, at least. I just pinned all refs of `gx deps -r -q | sort -u`.
vivus has quit [Quit: Leaving]
<stebalien> whyrusleeping: bubbling...
jesse22 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
robattila256 has quit [Quit: WeeChat 2.0.1]
<Taoki> So I'm trying to understand something basic for a while: What exactly is js-ipfs? More specifically: Is it only a JavaScript API so that scripts on websites can interact with the IPFS daemon running on the system, or does it also contain its own IPFS daemon that lets a browser use the network without an ipfs.exe (go-ipfs) running in the background?
sz0_ has joined #ipfs
codeanand has joined #ipfs
<Taoki> Is it correct to assume that go-ipfs is the C++ implementation while js-ipfs is the JavaScript implementation?
sz0_ is now known as sz0
droman has quit [Quit: WeeChat 2.0.1]
<Icefoz> Taoki: ...go-ipfs is the Go implementation
<Icefoz> And IIRC the js-ipfs implementation is a full IPFS node but is not as complete and has some limitations I'm not familiar with.
codeanand has quit [Quit: Page closed]
<Taoki> Hmmm. I need to understand the exact difference then.
<Taoki> What does Go do differently?
<Icefoz> I don't know the exact difference alas.
<MikeFair> Taoki, js-ipfs is kind of both
<MikeFair> There is a way to use js-ipfs to conenct to your local node, and it won't work without it
<MikeFair> But it also has some websockets Fu to implement it's own ipfs "Stack" as it were
<Taoki> Ok. So you need ipfs.exe from go-ipfs, for js-ipfs to work with
<MikeFair> If you use that "mode"
<Taoki> Because I believe someone sad that js-ipfs will soon have its own node. So for instance, in brave browser, IPFS works fully builtin.
<Taoki> Yeah
<MikeFair> That's currently the most "feature complete" mode
<Taoki> So js-ipfs has two modes: Either it runs its own JavaScript implementation of the daemon, or connects to the ipfs.exe process on the system. Is that correct?
<MikeFair> yes
<Taoki> But in both cases, full IPFS functionality is supported.
<Taoki> Awesome, thanks!
<MikeFair> You pick it at the time you instantiate the Ipfs package
<MikeFair> well that last part, no
<Taoki> Need to learn these things if I'm to be helpful. Hoping I can at least explain to others how it all works and get them to see the benefit of the protocol.
<MikeFair> full IPFS functionality is not supported in both cases
persecutrix has joined #ipfs
* Taoki kinda poked both Mozilla and organizations like EFF / FightForTheFuture / OpenMedia about it already :P
<MikeFair> That's why js-ipfs comes up so much on this channel
<Taoki> Yeah, I know some things aren't implemented yet.
<MikeFair> okay, great, just wanted to make sure your exepctations are proper ;)
<Taoki> I'm eager for the ability of website JavaScript to edit IPNS domains, finally allowing dynamic websites.
<MikeFair> As many are; you can do that through a daemon based connection
<Taoki> Once that happens, dynamic websites with user support can finally be a thing
* MikeFair did.
<Taoki> I heard it's not possible quite yet
<Taoki> Really? Editing IPNS from website scripts?
<MikeFair> I'll have to double check, it was a while ago, but yeah
<Taoki> Interesting. There's an open bug explaining what would need to be fixed first for it to work.
<Taoki> Might be for just one of the modes
<Taoki> (I'm MirceaKitsune there BTW)
<MikeFair> If by editing you mean "Publish an update to the /ipfs" reference of an IPNS enry, then I'm pretty we got that working
<MikeFair> I think that's for the "local browser node"
<Taoki> yeah... basically automating the "ipns name" console command
<Taoki> So if you update your profile's settings, you can point an IPNS to the new settings file (a json, cfg, whatever)
<MikeFair> Ironically, you have some "secrets to protect" though
}ls{ has quit [Quit: real life interrupt]
<MikeFair> The only thing I've been able to come with so far is that you store a "secret seed" in ipfs
<MikeFair> That address is part of your config, pointed to by ipns
<MikeFair> The data in that block, combined with your passphrase, can then generate the keypair needed to update your ipns block
<MikeFair> The data in that block, combined with your passphrase, can then generate the keypair needed to update your ipns reference
* MikeFair forgets you can't edit IRC channels. ;)
<MikeFair> otherwise you need some other can't of file storage to pass your ipns profile around
<MikeFair> s/can't/kind
<Taoki> Interesting
<Taoki> One issue was that, even if you can edit IPNS from scripts, you need the private key (equivalent for account password to do it).
<Taoki> So even if you can edit your own profile, no one else can make changes.
<Taoki> Which sucks because it makes stuff like leaving comments or liking posts impossible.
<Taoki> I mean you can like them on your account, but that won't reflect on the poster's account... because they would need to update it with their private key.
<MikeFair> that's why I offered whay I did
<Taoki> Still haven't found a way around this. In my mind that is, didn't begin coding it yet.
<MikeFair> You don't need to actually store the keys
<Taoki> Yeah if that exists, I need to learn how it works.
<Taoki> Well my system will be more like independent profiles (sites) communicating through one another using an interface.
<MikeFair> You need to store something that lets you recreate the keys
<MikeFair> Mine too
<Taoki> Awesome :D
<MikeFair> I'm linking lots of ipns addressed profiles together via IPLD
* Taoki was planning on kinda re-creating Facebook in IPFS as a decentralized thingie
<MikeFair> well we're using IPFS file atm, but the idea is to go IPLD
<Taoki> Another issue is search: The system must maintain a list of all profiles made with the service, and scan them all.
<MikeFair> That's why I was using IPLD ; and a "decentralized directory system"
<Taoki> Json is what I've thought of using to store profile settings... profiles would literally just be json files, containing settings and links to other files.
<Taoki> Wow, there's that too?
<Taoki> I thought directories are hashed like files
<MikeFair> not exactly
<Taoki> So you can have files in a directory change, but the reference to the directory stay constant? And you can get those files by a constant filename too?
<MikeFair> There's "massive groups of people that honor a a common authority/ruleset"
<Taoki> Hmmm
<MikeFair> Yes and no
<Stskeeps> Taoki, i presume you've discovered CRDTs already?
<Stskeeps> as well
<Taoki> Don't think I know what those are either.
<Taoki> Still new(ish) but learning more with time
<deltab> look into how git handles updates
<Stskeeps> super powerful
<MikeFair> It's not a native feature; and "changing content" is a bit of a "dicussion topic" but I'm promoting the concept of "multirooted hierarchies"
<Taoki> I use Git all the time for dev stuff. Knowing how it works fully is a little more complicated.
<Taoki> Yeah, changing content will be hard to do properly. But I can see many ways to.
<MikeFair> So what you have is a whole series of IPNS entries
<deltab> in short, you can rebuild a directory taking into account changes; then you just have to publish the hash of the updated directory
<MikeFair> One of them is "the directory root"
* Taoki nods
<MikeFair> deltab, But that doesn't let the directories change on their own; this does
<MikeFair> deltab, You only need to republish when you change the list of directories
<deltab> MikeFair: right
<MikeFair> the way ipns is now, you have to republish on every change
<MikeFair> regardless of depth
<Taoki> My plan was to have one IPNS per profile: That pointing to their json file, which contains the profile settings. Other files are just in the network, such as the texts and references of post and avatars and so on... they just need to be referenced.
<Taoki> Yes
<Taoki> That's a problem: If you make a new post on your profile or update your settings, you need to manually run "ipns name" to reference the new settings file. Once this can be automated, we're in business.
<MikeFair> Taoki, Right, so instead of search, publish another IPNS "directory" that has json files with all those IPNS addresses
<MikeFair> Taoki, You can put that in "IPLD"
<Taoki> Still need to work around only the owner being able to edit their page. So that others can make some changes without their json IPNS private key, like leave comments.
<Taoki> Interesting
<MikeFair> Taoki, You should check out IPLD
<Taoki> Will tomorrow, late and I need to run now.
* MikeFair nods.
<deltab> see also federated wiki, and indieweb
rngkll has quit [Remote host closed the connection]
<Taoki> The problem though is that you can edit a profile at all, like say to leave a comment on a post, you can edit the contents of that post in any way (as you're generating a new json file).
<MikeFair> There's a couple distributed p2p Facbooke clones running around (diaspora being the oldest I can think of)
<Taoki> No central authority checks HOW you change that file: If you can edit an user's settings to include having left a comment, you can erase them entirely or take full control of their profile.
<MikeFair> Taoki, I can think of ways to do it; but you also want spam controls right?
<Taoki> I'd be using tag and user blacklists. Those are separate but easy.
<MikeFair> Taoki, If you give up "preventing" anyone from posting (everyone can post) ; or you have to explicitly "whitelist" who can post, then I can tell you how to d it
rngkll_ has joined #ipfs
<MikeFair> Taoki, You can't use blacklists or filtering to prevent posting
<Taoki> Posting is fine. The issue is how you modify a user's profile to include your post, without being able to modify it in every other way.
<Taoki> Hmmm
<Taoki> Tomorrow though, need to run now
<Taoki> Poke me please if I forget. But I'll try not to
<Taoki> Still thinking of this idea a lot and got stuck at this chapter
<deltab> there's a few ways to handle it
<MikeFair> Taoki, okay, you do it by linking your posts on other people's boards within your own profile
<deltab> note you don't have to have one file that multiple people can edit
<deltab> you can have "and see these other places for updates"
<MikeFair> Taoki, there's then a predictable way for that page to find all the people who have posted and "suck in" their comments
<deltab> with search, you can search for updates others have published
<MikeFair> search in p2p decentralized is "hard"
<Taoki> Other people's boards... in IPFS this means other files in the network, as there is no server processing the data.
<Kythyria[m]> MikeFair: Diaspora isn't P2P in the sense usually understood, is it?
<MikeFair> Kythyria[m], It's "island hosted" and federated
<Taoki> I plan to have interfaces translating user's json profiles into the html page you see. That part is easy... those interfaces would need to keep track of some stuff too though.
<Kythyria[m]> "island hosted"?
<MikeFair> Kythyria[m], but not p2p like merkle and XOR routing
rcat has quit [Remote host closed the connection]
<Taoki> AFK
<Kythyria[m]> What, as in, "not a single centralised cluster"?
<deltab> like mastodon?
<MikeFair> Kythyria[m], Right, each "community" runs their own node; all the nodes then pass data around
<Kythyria[m]> But that's already implied by "federated"
<deltab> anyone can set up a server, host any number of accounts on it, and syndicate content to other servers
<MikeFair> right
rngkll_ has quit [Ping timeout: 264 seconds]
<MikeFair> so like I said, not in the full XOR routing sense
<deltab> (or rather from, as it's pull)
shizy has joined #ipfs
* Kythyria[m] 's bar for "P2P" is "designed to work even if all of the nodes are only desktop-class at best"
<MikeFair> but given that I could run my own insteance and fully participate, I consider that p2p like
<MikeFair> Kythyria[m], yeah, I can't use that metric; I consider it too unrealistic and not how humans are actually going to behave
<Kythyria[m]> That makes "p2p" and "federated" synonyms, which isn't helpful.
<Kythyria[m]> (especially since there are also people who consider "federated" to be the same as "fully centralised")
<MikeFair> Kythyria[m], It doesn't "Federated" can still mean "centralized servers"
<MikeFair> p2p means I can enter as an individual or as part of a group without restriction in participation
<MikeFair> imho
<Kythyria[m]> But you can design a P2P-looking network to not have that restriction.
<Kythyria[m]> er, non-restriction
<Kythyria[m]> Heck, doesn't IPFS already have such a mode?
<MikeFair> private networks
<Kythyria[m]> By that standard, XMPP is P2P, and IPFS in private network mode is not.
<MikeFair> yes
<MikeFair> that fits with my comprehension, definitions, and use cases of what I think p2p should mean
<MikeFair> and the private network mode is p2p within its restricted gorup
<Kythyria[m]> That also means that any protocol which doesn't hardcode a single server cluster, is neither P2P nor not P2P.
<Kythyria[m]> And it's a matter of the configuration of a particular instance.
<MikeFair> I'd make the distinction that; the tech is decentralized p2p -- used to implement a centralized p2p mode
<MikeFair> As I can't just throw up my node and join; it lacks the "decentralized" moniker
<MikeFair> it's "centralized p2p" --- which I accept; but mostly ignore ---- though ironically advocate the use cases for
<MikeFair> "moveable central authorities" is how human beings seem to operate
<MikeFair> s/moveable/mutable
<MikeFair> Without the big badass central servers, individuals are forced to take on too much responsibility that they can't reliably handle
<Kythyria[m]> There's no real distinction though: XMPP, for instance, defines no restriction on whether or not a server communicates with another server.
<MikeFair> By default, it leverages DNS, which in turn translates to an address, like SMTP does
<MikeFair> I consider DNS, despite ICANN "decentralized p2p enough" for practical purposes, but pedantically very much not decentralized p2p
<MikeFair> Which in my mind's eye is actually the most useful kind of these networks for use cases like DNS
<MikeFair> A little bit of regulation at the very top to kep things sane; and all heck breaks loose towards the edges
<MikeFair> s/top/center/
<MikeFair> Kythyria[m], In XMPP, by default, all servers "should" be able to communicate with each other
<Kythyria[m]> The spec says nothing about that, though.
<MikeFair> Kythyria[m], By specifying the SVR records for domains and xmpp service lookup within the federated namespace, it does
<MikeFair> Kythyria[m], Otherwise there's not much point in joining a federated ecosystem
<Kythyria[m]> So does SIP, but I bet a big chunk of SIP deployments don't federate.
<Kythyria[m]> In any meaningful way.
<Kythyria[m]> Or they do so with pretty strict rules.
<MikeFair> Kythyria[m], SIP absolutely does; with the telecom networks
<MikeFair> but SIP doesn't provide routing
<MikeFair> at least I don't recall it providing routing or discovery
<Kythyria[m]> AFAIK it does to the same extent as XMPP.
<Kythyria[m]> (well, not discovery to the same extent as XMPP)
<MikeFair> so without those things by my rendering, it can't be p2p
<MikeFair> Kythyria[m], I guess you could say "automated discovery and direct connection" is what distinguishes p2p networks in my mind
<MikeFair> s/direct/direct or indirect/
<Elon_Satoshi[m]> Oh hello, I saw you in #offtopic:matrix.org
<MikeFair> can someone kick
<Kythyria[m]> In which case SIP is definitely P2P. I doubt it's used like that so much though.
<MikeFair> fair enough
<MikeFair> I'd likely consider SIP in its entirety P2P I've only seen it used for centralized point to point connections for local phone networks
<MikeFair> (Though I had Vonage for a while)
<Kythyria[m]> (it actually is possible to operate SIP clients in a serverless mode, provided they let you enter IP addresses directly)
<MikeFair> and was bumbed that Google Voice never allowed for SIP endpoints
<Kythyria[m]> (actually using IP addressess as phone numbers isn't all that helpful though)
<MikeFair> no, my conclusion is that ip addresses aren't all that useful with a port
matoro_ has quit [Ping timeout: 240 seconds]
<MikeFair> it could be an implied port, but you never really have an interesting conversation with an ip address
fredthomsen has joined #ipfs
<MikeFair> s/with a port/without a port/
<MikeFair> To draw the parallel, IP address = "Node" ; and that's kind of like connecting to a building; you don't usually connect to a "building" you connect to a point on the building
<MikeFair> At the application layer anyway
<MikeFair> Kythyria[m], So I'm curious, would your definition of p2p then be something like desktop level "edge only" connections
<Kythyria[m]> Roughly "no server-class machines required"
<MikeFair> What do you consider the router devices in the middle of the network?
<Kythyria[m]> (server-class referring more to uptime and connectivity than massiveness)
<Kythyria[m]> Routers :P
<Kythyria[m]> But they do fit the definition.
<MikeFair> they are still servers (they still run software, and some of them are quite powerful)
<Kythyria[m]> Yeh. They're on all the time and stay put.
<MikeFair> Which would meet your "server class" definition wouldn't it?
<Kythyria[m]> Yup
<MikeFair> The only problem I have with the "edge connected majority" definition is that it's going to be highly inefficient as a communication networks (a lot of the same data going over the same channels multiple times)
<Kythyria[m]> Yup. Is why I don't like "P2P everything!" approaches.
<MikeFair> But even IPFS is going to have "super nodes"
<Kythyria[m]> You have to do all that extra work to compensate for all the nodes being located at the edge.
<Kythyria[m]> And yep. People are going to run it on servers, to ensure maximum pinnedness for data they want to publish.
<MikeFair> Which is why, in-practice, we human beings centralize some things
<MikeFair> so given that's the way it is "in-practice" does that disqualify IPFS as a decentralied p2p tech for you?
fredthomsen has quit [Quit: Leaving.]
upperdeck has joined #ipfs
<deltab> there are multiple aspects to a system; some are decentralized, some are not, and some are a mixture
fredthomsen has joined #ipfs
toxync01- has joined #ipfs
toxync01- is now known as toxync01_
toxync01 has quit [Ping timeout: 240 seconds]
toxync01_ is now known as toxync01
fredthomsen has quit [Quit: Leaving.]
l2d has quit [Remote host closed the connection]
l2d has joined #ipfs
zopsi has quit [Quit: Oops]
shizy has quit [Ping timeout: 264 seconds]
zopsi has joined #ipfs
fredthomsen has joined #ipfs
talonz has quit [Remote host closed the connection]
fredthomsen has quit [Client Quit]
shoogz has quit [Ping timeout: 256 seconds]
anewuser has quit [Quit: anewuser]
vicken has quit [Remote host closed the connection]
vicken has joined #ipfs
shoogz has joined #ipfs
talonz has joined #ipfs
vicken has quit [Ping timeout: 265 seconds]
treora has quit [Remote host closed the connection]
treora has joined #ipfs
domanic has joined #ipfs
domanic has quit [Client Quit]
nixfreak has joined #ipfs
<nixfreak> ok I have hundreds of peers connected right now , but everything time I put a hash into the webui or cli nothing happens ? what am I doing wrong ?
<nixfreak> Also do you have to ipfs get all hashes to see other files ?
mauz555 has quit [Read error: Connection reset by peer]
mauz555 has joined #ipfs
mauz555 has quit [Read error: Connection reset by peer]
mauz555 has joined #ipfs
Neomex has quit [Read error: Connection reset by peer]
<voker57> nixfreak: you mean put as in `ipfs get QmHash` ?
<voker57> what do you mean by "see other files"?
sz0 has quit [Quit: Connection closed for inactivity]
<nixfreak> nm I'm reading the gitbook on ipfs sorry for the questions
vicken has joined #ipfs
robattila256 has joined #ipfs
}ls{ has joined #ipfs
ygrek has quit [Ping timeout: 260 seconds]
lemonpepper24 has quit [Ping timeout: 240 seconds]
Alpha64 has quit [Read error: Connection reset by peer]
rendar has joined #ipfs
sz0 has joined #ipfs
aseriousgogetta has joined #ipfs
<cyberwolf[m]> can anyone translate text from German to Russian?
<MikeFair> Google maybe?
<aseriousgogetta> eh, sry
<MikeFair> oooohhhhhh ipfs-search :)
<MikeFair> crawler
<aseriousgogetta> yeahh boii it's my sht
<aseriousgogetta> ;)
<aseriousgogetta> been playing with ipwb all night
<MikeFair> wb?
<aseriousgogetta> wish i was better versed in go tho
<aseriousgogetta> yeah, commoncrawl datasets
<aseriousgogetta> was just looking to help fix a bug
Anton_ has quit [Ping timeout: 276 seconds]
<aseriousgogetta> damn hash references being added are outdated or not being updated correctly, figure that is a simple fix
larpanet has joined #ipfs
nixfreak has quit [Ping timeout: 268 seconds]
Anton_ has joined #ipfs
<cyberwolf[m]> MikeFair: he is stupid
<aseriousgogetta> MikeFair: https://github.com/oduwsdl/ipwb
samm has quit [Read error: Connection reset by peer]
aseriousgogetta has quit [Quit: leaving]
Anton_ has quit [Ping timeout: 264 seconds]
Anton_ has joined #ipfs
sunflowersociety has joined #ipfs
toxync01- has joined #ipfs
toxync01- is now known as toxync01_
toxync01 has quit [Ping timeout: 256 seconds]
larpanet has quit [Ping timeout: 248 seconds]
dbolser has quit [Quit: Changing server]
joocain2 has quit [Ping timeout: 255 seconds]
joocain2 has joined #ipfs
MikeFair_ has joined #ipfs
MikeFair has quit [Ping timeout: 265 seconds]
reit has joined #ipfs
persecutrix has quit [Ping timeout: 276 seconds]
vicken has quit [Remote host closed the connection]
vicken has joined #ipfs
MikeFair_ has quit [Quit: Leaving]
vicken has quit [Ping timeout: 255 seconds]
vicken has joined #ipfs
Fess has quit [Quit: Leaving]
nixfreak has joined #ipfs
nixfreak has quit [Ping timeout: 255 seconds]
Ellenor is now known as Reinhilde
]BFG[ has quit []
gato-frito has left #ipfs ["Leaving"]
toxync01_ is now known as toxync01
Mateon3 has joined #ipfs
Mateon1 has quit [Ping timeout: 240 seconds]
Mateon3 is now known as Mateon1
toxync01 has quit [Quit: ZNC 1.6.5 - http://znc.in]
A124 has joined #ipfs
toxync01 has joined #ipfs
plexigras has joined #ipfs
engdesart has joined #ipfs
makership has joined #ipfs
makership has quit [Remote host closed the connection]
mkhl has joined #ipfs
mkhl has quit [Client Quit]
mkhl has joined #ipfs
plexigras has quit [Ping timeout: 260 seconds]
mkhl has quit [Client Quit]
plexigras has joined #ipfs
Encrypt has joined #ipfs
sunflowersociety has quit [Ping timeout: 248 seconds]
newhouse has joined #ipfs
jaboja has joined #ipfs
vicken has quit [Remote host closed the connection]
septavalent has joined #ipfs
nixfreak has joined #ipfs
nixfreak has quit [Ping timeout: 256 seconds]
septavalent has quit [Remote host closed the connection]
Encrypt has quit [Quit: Quit]
anewuser has joined #ipfs
dlobi has joined #ipfs
dimitarvp has joined #ipfs
anewuser has quit [Quit: anewuser]
Neomex has joined #ipfs
dlobi has quit [Remote host closed the connection]
dlobi has joined #ipfs
]BFG[ has joined #ipfs
ccii1 has joined #ipfs
ccii has quit [Ping timeout: 265 seconds]
l2d has quit [Remote host closed the connection]
l2d has joined #ipfs
jaboja has quit [Quit: Leaving]
soesoe has joined #ipfs
esph has quit [Ping timeout: 255 seconds]
reit has quit [Ping timeout: 248 seconds]
esph has joined #ipfs
Caterpillar2 has joined #ipfs
EnricoFasoli[m] has joined #ipfs
plexigras has quit [Ping timeout: 255 seconds]
Caterpillar2 has quit [Ping timeout: 248 seconds]
nixfreak has joined #ipfs
nixfreak has quit [Ping timeout: 256 seconds]
engdesart has left #ipfs ["no"]
plexigras has joined #ipfs
jokoon has joined #ipfs
joocain2 has quit [Ping timeout: 255 seconds]
joocain2 has joined #ipfs
infinity0 has quit [Remote host closed the connection]
trqx has quit [Remote host closed the connection]
trqx has joined #ipfs
gmoro has quit [Ping timeout: 265 seconds]
espadrine has quit [Ping timeout: 240 seconds]
infinity0 has joined #ipfs
mtodor has joined #ipfs
jokoon has quit [Quit: Leaving]
dolphy has joined #ipfs
fredthomsen has joined #ipfs
rodolf0 has joined #ipfs
fredthomsen has quit [Quit: Leaving.]
hakim33[m] has joined #ipfs
<Taoki> Hi. I had a question: Does the IPFS Companion extension ( https://addons.mozilla.org/en-US/firefox/addon/ipfs-companion/ ) also add support for js-ipfs-api in browsers? So if the extension is running, the browser understands IPFS related commands from JavaScript scripts running on web pages?
fredthomsen has joined #ipfs
fredthomsen has quit [Client Quit]
rodolf0 has quit [Ping timeout: 256 seconds]
fredthomsen has joined #ipfs
fredthomsen has quit [Client Quit]
fredthomsen has joined #ipfs
kaotisk has quit [Ping timeout: 260 seconds]
fredthomsen has quit [Client Quit]
fredthomsen has joined #ipfs
soesoe has quit [Ping timeout: 256 seconds]
mtodor has quit [Remote host closed the connection]
mtodor has joined #ipfs
fredthomsen has quit [Quit: Leaving.]
mtodor has quit [Remote host closed the connection]
transaquatic has joined #ipfs
joocain2 has quit [Remote host closed the connection]
joocain2 has joined #ipfs
Neomex has quit [Read error: Connection reset by peer]
fredthomsen has joined #ipfs
Neomex has joined #ipfs
engdesart has joined #ipfs
fredthomsen has quit [Quit: Leaving.]
Encrypt has joined #ipfs
fredthomsen has joined #ipfs
trqx has quit [Remote host closed the connection]
fredthomsen has quit [Quit: Leaving.]
trqx has joined #ipfs
<EnricoFasoli[m]> You don't need the extension for that, just having a running ipfs node on your PC is enough, you just have to make sure it is configured to allow requests from any page but iirc it's set like that by default
<lidel> Taoki, not yet, but we are working on it, progress can be tracked in https://github.com/ipfs-shipyard/ipfs-companion/issues/330 :)
espadrine has joined #ipfs
Nicolab has joined #ipfs
<lidel> note that this is just a optimization, you can just run js-ipfs in your website using browserified version like in this example: https://github.com/ipfs/js-ipfs/tree/master/examples/browser-script-tag
<lidel> *an
<lidel> or run go-ipfs on backend server and use js-ipfs-api instead: https://github.com/ipfs/js-ipfs-api/tree/master/examples/bundle-browserify
dolphy has quit [Ping timeout: 255 seconds]
Alpha64 has joined #ipfs
fredthomsen has joined #ipfs
sunflowersociety has joined #ipfs
dev1ant has joined #ipfs
dev1ant has quit [Client Quit]
dev1ant has joined #ipfs
maxzor has joined #ipfs
l2d has quit [Remote host closed the connection]
l2d has joined #ipfs
vicken has joined #ipfs
dlobi has quit [Remote host closed the connection]
Nicolab has quit [Remote host closed the connection]
dlobi has joined #ipfs
fredthomsen has quit [Quit: Leaving.]
<fiatjaf> what is the correct way of getting a peer's public key on libp2p?
fredthomsen has joined #ipfs
witten has quit [Ping timeout: 255 seconds]
Encrypt has quit [Quit: Quit]
witten has joined #ipfs
vicken has quit [Remote host closed the connection]
<Taoki> lidel: Back. Got it, thanks!
vicken has joined #ipfs
<Taoki> lidel: Yeah I was wondering how to teach Firefox about the js-ipfs-api The explanations I got so far are pretty complicated (never worked with browserify before).
<Taoki> It it something you can simply embed on a website?
vicken has quit [Remote host closed the connection]
vicken has joined #ipfs
<Taoki> Oh yeah... you replied to me actually! I'm MirceaKitsune on the forum :)
vicken has quit [Ping timeout: 255 seconds]
sz0 has quit [Quit: Connection closed for inactivity]
fredthomsen has quit [Quit: Leaving.]
shizy has joined #ipfs
roygbiv has joined #ipfs
dlobi has quit [Read error: Connection reset by peer]
clemo has joined #ipfs
rendar has quit []
fredthomsen has joined #ipfs
samm has joined #ipfs
vivus has joined #ipfs
sunflowersociety has quit [Read error: Connection reset by peer]
sunflowersociety has joined #ipfs
ligi has joined #ipfs
ligi has joined #ipfs
<lidel> :D yup
Ecran has joined #ipfs
ralphthe1inja has joined #ipfs
ralphthe1inja is now known as ralptheninja2
<lidel> Taoki, i mean, yes, we provide a drop-in .js file that you just embedd via <script> on your website and you have working ipfs api or full node.
<Taoki> lidel: Oh wow, that's great news! Didn't know that's doable.
<lidel> check https://benchmark-js.ipfs.io/ -- it is running js-ipfs (a full node)
sunflowersociety has quit [Ping timeout: 265 seconds]
talonz has quit [Quit: Leaving]
<lidel> Taoki, a good example of web app that uses js-ipfs-api is https://gitlab.com/stavros/IPFessay
<Taoki> Thanks
shizy has quit [Ping timeout: 248 seconds]
shizy has joined #ipfs
<lidel> hidden feature: you can attach files and images to your essay, and app will upload them to ipfs
ligi has quit [Ping timeout: 255 seconds]
<Icefoz> That's pretty sweet.
dev1ant has quit [Ping timeout: 256 seconds]
Jesin has joined #ipfs
fredthomsen has quit [Quit: Leaving.]
Encrypt has joined #ipfs
shizy has quit [Ping timeout: 268 seconds]
shizy has joined #ipfs
engdesart has left #ipfs ["no"]
plexigras has quit [Ping timeout: 268 seconds]
<JCaesar> "uploaded to IPFS where it can never be […] deleted"? huh?
slumunge[m] has joined #ipfs
jdowner has left #ipfs [#ipfs]
raynold has quit [Quit: Connection closed for inactivity]
Fess has joined #ipfs
johnrambo has joined #ipfs
roygbiv has quit [Ping timeout: 240 seconds]
johnrambo is now known as roygbiv
EnricoFasoli[m] has quit [*.net *.split]
testingotro[m] has quit [*.net *.split]
mrdrdz[m] has quit [*.net *.split]
ekroon1 has quit [*.net *.split]
Cosmo[m] has quit [*.net *.split]
Mike[m] has quit [*.net *.split]
null_radix[m] has quit [*.net *.split]
stebalien has quit [*.net *.split]
tomaka has quit [*.net *.split]
patrickr[m] has quit [*.net *.split]
dani9[m] has quit [*.net *.split]
plindner has quit [*.net *.split]
CHOAM[m] has quit [*.net *.split]
tkorrison[m] has quit [*.net *.split]
silur[m] has quit [*.net *.split]
rgiessmann[m] has quit [*.net *.split]
masoodahm[m] has quit [*.net *.split]
albuic has quit [*.net *.split]
M-nated has quit [*.net *.split]
gwillen[m] has quit [*.net *.split]
Dako300[m] has quit [*.net *.split]
Guest63586 has quit [*.net *.split]
mith[m] has quit [*.net *.split]
tragique[m] has quit [*.net *.split]
repi[m] has quit [*.net *.split]
Kythyria[m] has quit [*.net *.split]
itorres has quit [*.net *.split]
WiredDude[m] has quit [*.net *.split]
pt467353[m] has quit [*.net *.split]
Smith[m]1 has quit [*.net *.split]
iwxzr[m] has quit [*.net *.split]
cl0[m] has quit [*.net *.split]
DEC05EBA[m] has quit [*.net *.split]
msmart[m] has quit [*.net *.split]
cornu[m]1 has quit [*.net *.split]
M-biostasis has quit [*.net *.split]
nekomune has quit [*.net *.split]
probono_ has quit [*.net *.split]
ben999[m] has quit [*.net *.split]
MayeldeBorniol[m has quit [*.net *.split]
abducted[m] has quit [*.net *.split]
equalunique[m] has quit [*.net *.split]
kpcyrd has quit [*.net *.split]
oddpotato[m] has quit [*.net *.split]
M-Manu has quit [*.net *.split]
gavinrogers[m] has quit [*.net *.split]
petergerber[m] has quit [*.net *.split]
alantrade[m] has quit [*.net *.split]
omiselu[m] has quit [*.net *.split]
hjoest[m] has quit [*.net *.split]
M777mms36[m] has quit [*.net *.split]
openkerley[m] has quit [*.net *.split]
LokimikYason[m] has quit [*.net *.split]
blahblah has quit [*.net *.split]
gravydigger[m] has quit [*.net *.split]
atq[m] has quit [*.net *.split]
miflow[m] has quit [*.net *.split]
eddb[m] has quit [*.net *.split]
benjaminmateev[m has quit [*.net *.split]
luciayin[m] has quit [*.net *.split]
DrIzzel[m] has quit [*.net *.split]
exyi[m] has quit [*.net *.split]
neo[m]1 has quit [*.net *.split]
M-Stephen304 has quit [*.net *.split]
kvin1[m] has quit [*.net *.split]
johnlong[m] has quit [*.net *.split]
fairness[m] has quit [*.net *.split]
wrjvszq[m] has quit [*.net *.split]
m712[m] has quit [*.net *.split]
tgdnt[m] has quit [*.net *.split]
carlbennetts[m] has quit [*.net *.split]
jhulten[m] has quit [*.net *.split]
jejdjdjdj[m] has quit [*.net *.split]
shamus[m] has quit [*.net *.split]
leccine[m] has quit [*.net *.split]
aeaejei[m] has quit [*.net *.split]
jambo58[m] has quit [*.net *.split]
drasko[m] has quit [*.net *.split]
blargle13[m] has quit [*.net *.split]
fedor1113[m] has quit [*.net *.split]
dmholmes[m] has quit [*.net *.split]
BAkhilKumar[m] has quit [*.net *.split]
gnmn[m] has quit [*.net *.split]
luwum[m] has quit [*.net *.split]
affeali[m] has quit [*.net *.split]
axu[m] has quit [*.net *.split]
pcm77[m] has quit [*.net *.split]
mantycore[m] has quit [*.net *.split]
gjh1 has quit [*.net *.split]
phi-rjan[m] has quit [*.net *.split]
panicbit-M has quit [*.net *.split]
igorline[m] has quit [*.net *.split]
M-HirmeS has quit [*.net *.split]
alain[m] has quit [*.net *.split]
epeter[m] has quit [*.net *.split]
M-sol56 has quit [*.net *.split]
beatrupp[m] has quit [*.net *.split]
bgrayburn[m] has quit [*.net *.split]
mdrights[m] has quit [*.net *.split]
ircmaster[m] has quit [*.net *.split]
luisbg[m] has quit [*.net *.split]
rldx[m] has quit [*.net *.split]
axic[m] has quit [*.net *.split]
ttk2[m] has quit [*.net *.split]
herzmeister[m] has quit [*.net *.split]
davidar has quit [*.net *.split]
jfred[m] has quit [*.net *.split]
dsal has quit [*.net *.split]
benlyn has quit [*.net *.split]
sirn has quit [*.net *.split]
dvim has quit [*.net *.split]
justache has quit [*.net *.split]
exit70 has quit [*.net *.split]
iinaj has quit [*.net *.split]
caseorganic has quit [*.net *.split]
creationix has quit [*.net *.split]
caiogondim has quit [*.net *.split]
anaptrix has quit [*.net *.split]
metalrain_ has quit [*.net *.split]
bigbluehat has quit [*.net *.split]
hosh has quit [*.net *.split]
karissa has quit [*.net *.split]
JaabbliZ has quit [*.net *.split]
dignifiedquire has quit [*.net *.split]
benhylau has quit [*.net *.split]
Igel has quit [*.net *.split]
Mitar has quit [*.net *.split]
DanKnox has quit [*.net *.split]
alanz has quit [*.net *.split]
OstlerDev has quit [*.net *.split]
anaptrix- has joined #ipfs
probono_ has joined #ipfs
OstlerDev has joined #ipfs
OstlerDev has joined #ipfs
OstlerDev has quit [Changing host]
DanKnox has joined #ipfs
kpcyrd has joined #ipfs
caseorganic has joined #ipfs
creationix has joined #ipfs
benhylau has joined #ipfs
JaabbliZ has joined #ipfs
exit70 has joined #ipfs
Igel has joined #ipfs
dsal has joined #ipfs
metalrain_ has joined #ipfs
benlyn has joined #ipfs
hosh has joined #ipfs
dignifiedquire has joined #ipfs
Guest63586 has joined #ipfs
Mitar has joined #ipfs
caiogondim has joined #ipfs
dvim has joined #ipfs
justache has joined #ipfs
sirn has joined #ipfs
iinaj has joined #ipfs
bigbluehat has joined #ipfs
karissa has joined #ipfs
exyi[m] has joined #ipfs
EnricoFasoli[m] has joined #ipfs
neo[m]1 has joined #ipfs
mith[m] has joined #ipfs
petergerber[m] has joined #ipfs
M-biostasis has joined #ipfs
m712[m] has joined #ipfs
eddb[m] has joined #ipfs
omiselu[m] has joined #ipfs
gravydigger[m] has joined #ipfs
LokimikYason[m] has joined #ipfs
alantrade[m] has joined #ipfs
M-nated has joined #ipfs
wrjvszq[m] has joined #ipfs
carlbennetts[m] has joined #ipfs
jejdjdjdj[m] has joined #ipfs
DrIzzel[m] has joined #ipfs
aeaejei[m] has joined #ipfs
jhulten[m] has joined #ipfs
benjaminmateev[m has joined #ipfs
drasko[m] has joined #ipfs
masoodahm[m] has joined #ipfs
gjh1 has joined #ipfs
mantycore[m] has joined #ipfs
fedor1113[m] has joined #ipfs
axu[m] has joined #ipfs
pcm77[m] has joined #ipfs
rldx[m] has joined #ipfs
alain[m] has joined #ipfs
M-Manu has joined #ipfs
BAkhilKumar[m] has joined #ipfs
tragique[m] has joined #ipfs
axic[m] has joined #ipfs
luwum[m] has joined #ipfs
epeter[m] has joined #ipfs
ircmaster[m] has joined #ipfs
M-sol56 has joined #ipfs
beatrupp[m] has joined #ipfs
luisbg[m] has joined #ipfs
M-HirmeS has joined #ipfs
nekomune has joined #ipfs
ttk2[m] has joined #ipfs
iwxzr[m] has joined #ipfs
bgrayburn[m] has joined #ipfs
shamus[m] has joined #ipfs
DEC05EBA[m] has joined #ipfs
leccine[m] has joined #ipfs
cl0[m] has joined #ipfs
tkorrison[m] has joined #ipfs
repi[m] has joined #ipfs
testingotro[m] has joined #ipfs
hjoest[m] has joined #ipfs
atq[m] has joined #ipfs
dani9[m] has joined #ipfs
patrickr[m] has joined #ipfs
openkerley[m] has joined #ipfs
gavinrogers[m] has joined #ipfs
jambo58[m] has joined #ipfs
kvin1[m] has joined #ipfs
rgiessmann[m] has joined #ipfs
tgdnt[m] has joined #ipfs
oddpotato[m] has joined #ipfs
CHOAM[m] has joined #ipfs
johnlong[m] has joined #ipfs
fairness[m] has joined #ipfs
luciayin[m] has joined #ipfs
gwillen[m] has joined #ipfs
WiredDude[m] has joined #ipfs
miflow[m] has joined #ipfs
M-Stephen304 has joined #ipfs
abducted[m] has joined #ipfs
panicbit-M has joined #ipfs
mdrights[m] has joined #ipfs
phi-rjan[m] has joined #ipfs
Cosmo[m] has joined #ipfs
igorline[m] has joined #ipfs
dmholmes[m] has joined #ipfs
Dako300[m] has joined #ipfs
gnmn[m] has joined #ipfs
affeali[m] has joined #ipfs
ekroon1 has joined #ipfs
mrdrdz[m] has joined #ipfs
plindner has joined #ipfs
tomaka has joined #ipfs
MayeldeBorniol[m has joined #ipfs
Guest96028 has joined #ipfs
Smith[m]1 has joined #ipfs
Kythyria[m] has joined #ipfs
cornu[m]1 has joined #ipfs
ben999[m] has joined #ipfs
silur[m] has joined #ipfs
null_radix[m] has joined #ipfs
M777mms36[m] has joined #ipfs
pt467353[m] has joined #ipfs
msmart[m] has joined #ipfs
jfred[m] has joined #ipfs
blargle13[m] has joined #ipfs
itorres has joined #ipfs
albuic has joined #ipfs
Mike[m] has joined #ipfs
blahblah has joined #ipfs
equalunique[m] has joined #ipfs
davidar has joined #ipfs
herzmeister[m] has joined #ipfs
roygbiv has quit [Quit: ™]
engdesart has joined #ipfs
ralptheninja2 has quit [Quit: leaving]
MikeFair has joined #ipfs
shizy has quit [Ping timeout: 256 seconds]
alanz has joined #ipfs
warhawks[m] has joined #ipfs
clemo has quit [Ping timeout: 268 seconds]
<Mateon1> It can't be deleted by anybody (as long as somebody wants to keep it), but it can be forgotten
ralphthe1inja has joined #ipfs
<Icefoz> That's a great way of putting it.
ralphthe1inja is now known as ralphtheninja2
_whitelogger has joined #ipfs
MuxDarkfire[m] has joined #ipfs
camb[m] has joined #ipfs
captainplanet[m] has joined #ipfs
noether[m] has joined #ipfs
toon__[m] has joined #ipfs
Martinhandy[m] has joined #ipfs
carlbennetts[m] has joined #ipfs
AntonLatukha[m] has joined #ipfs
mntr0[m] has joined #ipfs
Riviera- has joined #ipfs
mectors[m] has joined #ipfs
gravydigger[m] has joined #ipfs
xamino[m] has joined #ipfs
omiselu[m] has joined #ipfs
xsam[m] has joined #ipfs
Nekit[m] has joined #ipfs
anders[m] has joined #ipfs
BrettJackson[m] has joined #ipfs
akaibu[m] has joined #ipfs
dydx[m] has joined #ipfs
trankmichael[m] has joined #ipfs
Vitalii_Pandora[ has joined #ipfs
gejohn[m] has joined #ipfs
lidel has joined #ipfs
rihardsk[m] has joined #ipfs
Tyroie[m] has joined #ipfs
phi-rjan[m] has joined #ipfs
paulith[m] has joined #ipfs
lanshoot[m] has joined #ipfs
flo[m] has joined #ipfs
PoeBoy[m] has joined #ipfs
linuxdaemon has joined #ipfs
linuxdaemon has quit [Max SendQ exceeded]
avatias0[m] has joined #ipfs
arthurfragoso[m] has joined #ipfs
bencevans[m] has joined #ipfs
jceb has joined #ipfs
ehmry has joined #ipfs
tameeshb has joined #ipfs
antonizoon has joined #ipfs
silwol has joined #ipfs
darkowlzz has joined #ipfs
linuxdaemon has joined #ipfs
linuxdaemon has quit [Max SendQ exceeded]
sigmaister[m]1 has joined #ipfs
stoneridge has joined #ipfs
mith[m] has joined #ipfs
mike_new[m] has joined #ipfs
crazyshoubin[m] has joined #ipfs
PungaMare[m] has joined #ipfs
asenski[m] has joined #ipfs
MrShepard[m] has joined #ipfs
exyi[m] has joined #ipfs
gabyshu[m] has joined #ipfs
kevindetry[m] has joined #ipfs
octalsrc[m] has joined #ipfs
maxdolphin123[m] has joined #ipfs
h4314[m] has joined #ipfs
M-madsurgeon has joined #ipfs
reddraggone9[m] has joined #ipfs
LifeNT[m] has joined #ipfs
Arthur[m] has joined #ipfs
rovdyl[m] has joined #ipfs
aeaf123[m] has joined #ipfs
futurenewsplz[m] has joined #ipfs
pt467353[m] has joined #ipfs
unlawfulmonad[m] has joined #ipfs
linuxdaemon has joined #ipfs
linuxdaemon has quit [Max SendQ exceeded]
sam[m] has joined #ipfs
noperope[m] has joined #ipfs
iohidtbhfam[m] has joined #ipfs
M1trace[m] has joined #ipfs
phamnuwen[m] has joined #ipfs
happy_gnu[m] has joined #ipfs
Dako300[m] has joined #ipfs
M0x1e[m] has joined #ipfs
axic[m] has joined #ipfs
thejohnhenry[m] has joined #ipfs
bumi[m] has joined #ipfs
M-flyingzumwalt has joined #ipfs
aloisdg[m] has joined #ipfs
gwillen[m] has joined #ipfs
Tolik[m] has joined #ipfs
because[m] has joined #ipfs
zopsi has quit [Quit: Oops]
linuxdaemon has joined #ipfs
linuxdaemon has quit [Max SendQ exceeded]
mitfree[m] has joined #ipfs
garblur83[m] has joined #ipfs
M-gdr has joined #ipfs
cranau[m] has joined #ipfs
Nouts[m] has joined #ipfs
madduck[m] has joined #ipfs
lanlink[m] has joined #ipfs
master has joined #ipfs
wak-work has joined #ipfs
doronbehar[m] has joined #ipfs
atq[m] has joined #ipfs
netquin[m] has joined #ipfs
bhipple[m] has joined #ipfs
toya[m] has joined #ipfs
linuxdaemon has joined #ipfs
jfmherokiller[m] has joined #ipfs
sevarat[m] has joined #ipfs
M-Amandine has joined #ipfs
mujx[m] has joined #ipfs
linuxdaemon has quit [Max SendQ exceeded]
james3000[m] has joined #ipfs
raymond[m]2 has joined #ipfs
M-nated has joined #ipfs
Bertschneider[m] has joined #ipfs
ekroon1 has joined #ipfs
therealklanni[m] has joined #ipfs
atmoz has joined #ipfs
Elon_Satoshi[m] has joined #ipfs
Silke^ has joined #ipfs
herzmeister[m] has joined #ipfs
davidar has joined #ipfs
zinovi[m] has joined #ipfs
xloem has joined #ipfs
iwxzr[m] has joined #ipfs
GregKNicholson[m has joined #ipfs
hl has joined #ipfs
linuxdaemon has joined #ipfs
linuxdaemon has quit [Max SendQ exceeded]
wervenyt[m] has joined #ipfs
Wikipedia[m] has joined #ipfs
Jtremback[m] has joined #ipfs
equalunique[m] has joined #ipfs
HydraGene[m] has joined #ipfs
linuxdaemon has joined #ipfs
linuxdaemon has quit [Max SendQ exceeded]
zopsi has joined #ipfs
fredthomsen has joined #ipfs
proc has joined #ipfs
proc has quit [Client Quit]
Encrypt has quit [Quit: Quit]
fredthomsen has quit [Quit: Leaving.]
ion has quit [Ping timeout: 240 seconds]
ion has joined #ipfs
alexandreyc has joined #ipfs
dolphy has joined #ipfs
Ecran has quit [Quit: Going offline, see ya! (www.adiirc.com)]
witten has quit [Ping timeout: 255 seconds]
lemonpepper24 has joined #ipfs