lgierth changed the topic of #ipfs to: Now with SSL on all of *.ipfs.io -- IPFS - InterPlanetary File System -- https://github.com/ipfs/ipfs -- Channel logs: 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
reit has quit [Ping timeout: 246 seconds]
zootella has left #ipfs [#ipfs]
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
computerfreak has quit [Quit: Leaving.]
micxjo has quit [Quit: Connection closed for inactivity]
micxjo has joined #ipfs
mrrrgn_ has quit [Ping timeout: 250 seconds]
oleavr has quit [Ping timeout: 260 seconds]
apiarian has quit [Ping timeout: 276 seconds]
lachenmayer has quit [Ping timeout: 250 seconds]
apiarian has joined #ipfs
bearbin has quit [Ping timeout: 250 seconds]
bearbin has joined #ipfs
oleavr has joined #ipfs
lachenmayer has joined #ipfs
ashark has joined #ipfs
reit has joined #ipfs
ashark has quit [Ping timeout: 260 seconds]
Akaibu has quit []
The_8472 has quit [Ping timeout: 272 seconds]
The_8472 has joined #ipfs
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
<alu> ipfs
<alu> oops
ppham has joined #ipfs
pfraze has joined #ipfs
ppham has quit [Remote host closed the connection]
pfraze has quit [Ping timeout: 265 seconds]
ppham has joined #ipfs
pfraze has joined #ipfs
pfraze has quit [Ping timeout: 246 seconds]
dignifiedquire has quit [Quit: Connection closed for inactivity]
ppham has quit [Remote host closed the connection]
Aeon has quit [Read error: Connection reset by peer]
Aeon has joined #ipfs
Aeon has quit [Changing host]
Aeon has joined #ipfs
matoro has quit [Remote host closed the connection]
matoro has joined #ipfs
ppham has joined #ipfs
PrinceOfPeeves has quit [Quit: Leaving]
ppham has quit [Remote host closed the connection]
ppham has joined #ipfs
jaboja has quit [Remote host closed the connection]
ppham has quit [Remote host closed the connection]
ppham has joined #ipfs
Oatmeal has quit [Ping timeout: 265 seconds]
arpu has quit [Ping timeout: 265 seconds]
chriscool has joined #ipfs
ppham has quit [Remote host closed the connection]
ppham has joined #ipfs
arpu has joined #ipfs
Oatmeal has joined #ipfs
ppham has quit [Remote host closed the connection]
ppham has joined #ipfs
herzmeister has quit [Ping timeout: 250 seconds]
corvinux has joined #ipfs
ppham has quit [Remote host closed the connection]
ppham has joined #ipfs
thelinuxkid has quit [Ping timeout: 252 seconds]
cketti has quit [Quit: Leaving]
ppham has quit [Remote host closed the connection]
ppham has joined #ipfs
thelinuxkid has joined #ipfs
computerfreak has joined #ipfs
Arakela007 has joined #ipfs
redfish has quit [Ping timeout: 260 seconds]
TheOneLaw has joined #ipfs
TheOneLaw has quit [Remote host closed the connection]
thufir has quit [Ping timeout: 265 seconds]
disgusting_wall has quit [Quit: Connection closed for inactivity]
cryptix has joined #ipfs
corvinux has quit [Quit: Leaving]
corvinux has joined #ipfs
corvinux has joined #ipfs
ygrek has joined #ipfs
screensaver has quit [Ping timeout: 240 seconds]
reit has quit [Ping timeout: 265 seconds]
cemerick has joined #ipfs
reit has joined #ipfs
ghtdak has quit [Ping timeout: 265 seconds]
rendar has joined #ipfs
ghtdak has joined #ipfs
fleeky has quit [Ping timeout: 260 seconds]
fleeky has joined #ipfs
zootella has joined #ipfs
ygrek has quit [Ping timeout: 276 seconds]
zootella has left #ipfs [#ipfs]
ygrek has joined #ipfs
corvinux has quit [Remote host closed the connection]
corvinux has joined #ipfs
computerfreak has quit [Remote host closed the connection]
herzmeister has joined #ipfs
ygrek has quit [Ping timeout: 276 seconds]
ppham has quit [Remote host closed the connection]
rklaehn has joined #ipfs
<rklaehn> Hi. I am writing a scala client for ipfs. I can't get the /block/put method to work with multiple files.
<rklaehn> I tried with curl, but that doesn't work either. When uploading two different files, I only get one hash back.
<rklaehn> curl -v -F upload=@b.txt -F upload=@a.txt http://127.0.0.1:5001/api/v0/block/put?stream-channels=true
<rklaehn> Anybody have an idea?
<rklaehn> Version is 0.3.11, by the way.
corvinux has quit [Ping timeout: 260 seconds]
<r0kk3rz> rklaehn: why you using old version? you should probably upgrade
<rklaehn> It is the one you get from brew
<rklaehn> Or at least that is what I got a few weeks ago when I started dabbling with it.
<r0kk3rz> best to get the latest from ipfs.io
<rklaehn> OK, I now got 0.4.0. Still the same.
<rklaehn> Rudigers-MBP:ipfs-client rklaehn $ curl -X POST -v -F upload=@a.txt -F upload=@b.txt http://127.0.0.1:5001/api/v0/block/put?stream-channels=true * Trying 127.0.0.1... * Connected to 127.0.0.1 (127.0.0.1) port 5001 (#0) > POST /api/v0/block/put?stream-channels=true HTTP/1.1 > Host: 127.0.0.1:5001 > User-Agent: curl/7.43.0 > Accept: */* > Content-Length: 333 > Expect: 100-continue > Content-Type: multipart/form-data; boundary=-----------
<rklaehn> By the way: is there a reason for using IRC instead of gitter.im? This is pretty inconvenient.
corvinux has joined #ipfs
corvinux has quit [Changing host]
corvinux has joined #ipfs
<Kubuxu> rklaehn: in API calls you have to specify data, not files.
<Kubuxu> also block put is raw data, if you want to add file you have to use add
<Kubuxu> but still you have to pass the data in HTTP API call.
thiagoalencar22 has joined #ipfs
<rklaehn> Kubuxu: curl -F upload=@... uploads the file as multipart form data. And it works in principle. It is just that only the first file is processed.
<rklaehn> Can you give me a curl command line that works for uploading multiple files?
<rklaehn> I am basically trying to reimplement https://github.com/ipfs/java-ipfs-api in idiomatic scala using an async api, just to learn a bit.
<Kubuxu> I can't I don't work on this part of a project. For adding whole files you should use /api/v0/add endpoint not /block/add
thiagoalencar22 has quit [Ping timeout: 250 seconds]
<rklaehn> I am currently at /block/add, and the java version suggests that multiple parts should be possible: https://github.com/ipfs/java-ipfs-api/blob/master/src/main/java/org/ipfs/api/IPFS.java#L153
OutBackDingo has joined #ipfs
<rklaehn> Anyway, I will just ignore this for now and get back to it when somebody can help me.
<Kubuxu> richardlitt: ^^ might know more about this.
thiagoalencar22 has joined #ipfs
asie has quit [Quit: WeeChat 1.4]
corvinux has quit [Ping timeout: 250 seconds]
dignifiedquire has joined #ipfs
ppham has joined #ipfs
thiagoalencar22 has quit [Ping timeout: 260 seconds]
cryptix has quit [Ping timeout: 244 seconds]
ppham has quit [Ping timeout: 265 seconds]
<rklaehn> Kubuxu: I have now implemented /add, and there it works as expected.
MahaDev_ has quit [Ping timeout: 260 seconds]
OutBackDingo has quit [Ping timeout: 240 seconds]
cemerick has quit [Ping timeout: 244 seconds]
asie has joined #ipfs
OutBackDingo has joined #ipfs
NickGeek has joined #ipfs
<NickGeek> I just put up this tool called Rehua, if anyone wants to try it out: ipns/QmWA8vVzqdaHNQHpQcEZMQL95oW8zeiJ4SWgG1PfcrpwnW/
thiagoalencar22 has joined #ipfs
<Kubuxu> NickGeek: how does it link friends?
<Kubuxu> ?
<NickGeek> Kubuxu: People put friends in their lists
<NickGeek> But each friend can have more friends, so as long as you can get on any list that eventually links back to the original one
<NickGeek> your list is on the site
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
computerfreak has joined #ipfs
thiagoalencar22 has quit [Ping timeout: 250 seconds]
cryptix has joined #ipfs
insanity54 has quit [Ping timeout: 244 seconds]
<ed_t> NickGeek I'm a ipfs newbe. Have a node up and running. How do I access your tool?
<NickGeek> ed_t: typically go to http://localhost:8080/ipns/QmWA8vVzqdaHNQHpQcEZMQL95oW8zeiJ4SWgG1PfcrpwnW/ however, that might be offline because my node is playing up.
<ed_t> or use the fuse filesystem
<NickGeek> that too
<ed_t> node problems would explain why it hangs
<NickGeek> ed_t: Do you have it loaded?
<ed_t> yes from the link, no from fuse
<NickGeek> weird
<ed_t> beta
<ed_t> any word I try gets nothing found. do you have one that will get results?
<NickGeek> Just searching "ipfs" will bring up a few
ppham has joined #ipfs
<ed_t> should have thought of that
<ed_t> does it index the sites found? for instance the Archive link has a link to arXiv, but searching for arXiv finds nothing
ppham has quit [Ping timeout: 250 seconds]
<NickGeek> Sadly not, there is no server to store an index. I might write a crawler to auto create a list.json I can import
<NickGeek> Ideally all sites people would want to visit have been already entered into one of many list.json files
NickGeek has quit [Quit: Leaving]
corvinux has joined #ipfs
corvinux has quit [Changing host]
corvinux has joined #ipfs
rklaehn has quit [Ping timeout: 250 seconds]
<ipfsbot> [go-ipfs] Kubuxu created feature/Offline-2393 (+2 new commits): https://git.io/vrGUQ
<ipfsbot> go-ipfs/feature/Offline-2393 0a30aec Jakub Sztandera: Add offline daemon mode...
<ipfsbot> go-ipfs/feature/Offline-2393 f1b1958 Jakub Sztandera: Make errors more reasonable in case of node in offline mode...
<ipfsbot> [go-ipfs] Kubuxu force-pushed feature/Offline-2393 from f1b1958 to b9ada09: https://git.io/vrGUd
<ipfsbot> go-ipfs/feature/Offline-2393 b9ada09 Jakub Sztandera: Make errors more reasonable in case of node in offline mode...
<ipfsbot> [go-ipfs] Kubuxu opened pull request #2696: Offline daemon mode (master...feature/Offline-2393) https://git.io/vrGUN
ppham has joined #ipfs
ppham has quit [Ping timeout: 260 seconds]
<cryptix> ipfs became really ram-hungry... is there a way to limit connections?
corvinux has quit [Remote host closed the connection]
ed_t has quit [Ping timeout: 240 seconds]
ed_t has joined #ipfs
corvinux has joined #ipfs
corvinux has quit [Client Quit]
bedeho has joined #ipfs
Arakela0_ has joined #ipfs
corvinux has joined #ipfs
corvinux has joined #ipfs
MahaDev has joined #ipfs
cemerick has joined #ipfs
Arakela007 has quit [Ping timeout: 260 seconds]
IlanGodik has joined #ipfs
<ipfsbot> [go-ipfs] Kubuxu pushed 1 new commit to feature/Offline-2393: https://git.io/vrGIc
<ipfsbot> go-ipfs/feature/Offline-2393 cd7c2e2 Jakub Sztandera: Create shanress test for offline mode node...
pfraze has joined #ipfs
corehash has joined #ipfs
corehash has quit [Client Quit]
Arakela0_ has quit [Remote host closed the connection]
Arakela007 has joined #ipfs
corvinux has quit [Quit: Leaving]
Arakela0_ has joined #ipfs
Arakela007 has quit [Read error: Connection reset by peer]
cemerick has quit [Ping timeout: 260 seconds]
flapjack0811 has joined #ipfs
flapjack0811 has quit [Max SendQ exceeded]
flapjack0811 has joined #ipfs
flapjack0811 has quit [Max SendQ exceeded]
flapjack0811 has joined #ipfs
flapjack0811 has quit [Remote host closed the connection]
flapjack0811 has joined #ipfs
reit has quit [Ping timeout: 260 seconds]
rgrinberg has joined #ipfs
reit has joined #ipfs
Arakela007 has joined #ipfs
Arakela0_ has quit [Read error: Connection reset by peer]
crucialr_ has joined #ipfs
crucialr_ has quit [Client Quit]
crucialr_ has joined #ipfs
rgrinberg has quit [Ping timeout: 240 seconds]
disgusting_wall has joined #ipfs
ashark has joined #ipfs
ppham has joined #ipfs
ppham has quit [Ping timeout: 240 seconds]
something has joined #ipfs
something has quit [Client Quit]
HostFat has joined #ipfs
cryptix has quit [Quit: leaving]
cryptix has joined #ipfs
infinity0 has quit [Remote host closed the connection]
infinity0 has joined #ipfs
jfred has quit [Ping timeout: 244 seconds]
cryptix has quit [Quit: leaving]
rajabose has joined #ipfs
cryptix has joined #ipfs
reit has quit [Quit: Leaving]
cryptix has quit [Client Quit]
cryptix has joined #ipfs
cryptix has quit [Client Quit]
rajabose has quit []
cryptix has joined #ipfs
erde74 has joined #ipfs
<ipfsbot> [go-ipfs] Kubuxu force-pushed feat/helptext-test from e5cad57 to 0529ba9: https://git.io/vrGOJ
<ipfsbot> go-ipfs/feat/helptext-test c335cf5 Jeromy: add test to enforce helptext on commands...
<ipfsbot> go-ipfs/feat/helptext-test 0529ba9 Jakub Sztandera: Add ProcessHelp call to Helptext test....
bearbin has quit [Remote host closed the connection]
<cryptix> daviddias, whyrusleeping: how hard is go-libp2p's dependency on RSA for transport keys?
<cryptix> i polished secretstream today (go port of secret-handshake) but that would need Ed25519 keys to be usefull in libp2p
nekomune_ is now known as nekomune
corvinux has joined #ipfs
Qwertie has quit [Ping timeout: 260 seconds]
<ipfsbot> [go-ipfs] Kubuxu force-pushed w/fix/logwriter-stall from 877d5a7 to ef348f2: https://git.io/vwsB9
<ipfsbot> go-ipfs/w/fix/logwriter-stall ef348f2 rht: Close errnotifier chan on err...
<Kubuxu> cryptix: it is quite hard in go-ipfs itself, we don't have multikey format yet. I don't know how situation looks inside of go-libp2p
Encrypt has joined #ipfs
<cryptix> Kubuxu: thought so - hoped i missed multikey
<cryptix> i'd really like to see ipfs gain something forward secure, transport-wise at least
<Kubuxu> multikey might be quite high on the todo list
<Kubuxu> it blocks many things (keystore which blocks many other).
<cryptix> i see
corvinux has quit [Ping timeout: 250 seconds]
flapjack0811 has quit [Quit: Leaving]
rgrinberg has joined #ipfs
computerfreak has quit [Quit: Leaving.]
ppham has joined #ipfs
jaboja has joined #ipfs
dmr has joined #ipfs
rhalff has quit [Read error: Connection reset by peer]
corvinux has joined #ipfs
rgrinberg has quit [Ping timeout: 246 seconds]
ilyaigpetrov has joined #ipfs
zorglub27 has joined #ipfs
<ipfsbot> [go-ipfs] chriscool created use-consts-for-pin-modes (+2 new commits): https://git.io/vrG3Q
<ipfsbot> go-ipfs/use-consts-for-pin-modes c4195e5 Christian Couder: pin: add missing consts and convertion functions...
<ipfsbot> go-ipfs/use-consts-for-pin-modes 39f2367 Christian Couder: pin: use new constants instead of literal values...
<ipfsbot> [go-ipfs] chriscool opened pull request #2699: Use consts for pin modes (master...use-consts-for-pin-modes) https://git.io/vrG3N
<Kubuxu> whyrusleeping: I am making small PR and Issues cleanup, I hope you don't mind.
erde74 has quit [Quit: Verlassend]
Encrypt has quit [Quit: Quitte]
ylp has quit [Ping timeout: 276 seconds]
Encrypt has joined #ipfs
zorglub27 has quit [Ping timeout: 250 seconds]
ylp has joined #ipfs
crucialr_ has quit [Quit: Textual IRC Client: www.textualapp.com]
corvinux has quit [Ping timeout: 246 seconds]
jaboja has quit [Ping timeout: 244 seconds]
libman has joined #ipfs
cemerick has joined #ipfs
computerfreak has joined #ipfs
matoro has quit [Remote host closed the connection]
matoro has joined #ipfs
mdangear has joined #ipfs
corvinux has joined #ipfs
mdangear has quit [Ping timeout: 276 seconds]
cryptix has quit [Ping timeout: 244 seconds]
rgrinberg has joined #ipfs
<ipfsbot> [go-ipfs] RichardLitt force-pushed feature/add-defaults-to-daemon from 0820ce3 to 6e91bc5: https://git.io/vrGZS
<ipfsbot> go-ipfs/feature/add-defaults-to-daemon 6e91bc5 Richard Littauer: Added Defaults to `ipfs daemon`...
<ipfsbot> [go-ipfs] RichardLitt force-pushed feature/add-defaults-to-daemon from 6e91bc5 to fa1c555: https://git.io/vrGZS
<ipfsbot> go-ipfs/feature/add-defaults-to-daemon fa1c555 Richard Littauer: Added Defaults to `ipfs daemon`...
tymat has joined #ipfs
tymat has quit [Client Quit]
tymat has joined #ipfs
ppham has quit [Remote host closed the connection]
ppham has joined #ipfs
anachronism has quit [Ping timeout: 276 seconds]
anomie_ has joined #ipfs
anomie_ is now known as Guest43791
Guest43791 has quit [Ping timeout: 246 seconds]
cryptix has joined #ipfs
redfish has joined #ipfs
<redfish> #gnunet
<redfish> sorry, typo ^
anomie- has joined #ipfs
erde74 has joined #ipfs
zorglub27 has joined #ipfs
mdangear has joined #ipfs
rgrinberg has quit [Ping timeout: 260 seconds]
zorglub27 has quit [Quit: zorglub27]
mdangear has quit [Ping timeout: 246 seconds]
ygrek has joined #ipfs
M-hash is now known as hearsay
ashark has quit [Ping timeout: 260 seconds]
ashark has joined #ipfs
Encrypt has quit [Quit: Quitte]
ppham has quit [Remote host closed the connection]
dmr has quit [Ping timeout: 276 seconds]
rgrinberg has joined #ipfs
cketti has joined #ipfs
ashark has quit [Ping timeout: 244 seconds]
<ipfsbot> [go-ipfs] whyrusleeping closed pull request #2652: Added Defaults to `ipfs daemon` (master...feature/add-defaults-to-daemon) https://git.io/vrTOI
edrex has quit [Remote host closed the connection]
<ipfsbot> [go-ipfs] whyrusleeping deleted use-consts-for-pin-modes at 39f2367: https://git.io/vrG86
zorglub27 has joined #ipfs
Dhole_ is now known as Dhole
<ipfsbot> [go-ipfs] Kubuxu force-pushed feature/Offline-2393 from cd7c2e2 to 6c817de: https://git.io/vrGUd
<ipfsbot> go-ipfs/feature/Offline-2393 b11e337 Jakub Sztandera: Add offline daemon mode...
<ipfsbot> go-ipfs/feature/Offline-2393 5476222 Jakub Sztandera: Make errors more reasonable in case of node in offline mode...
<ipfsbot> go-ipfs/feature/Offline-2393 6c817de Jakub Sztandera: Create shanress test for offline mode node...
<ipfsbot> [go-ipfs] Kubuxu force-pushed feature/Offline-2393 from 6c817de to e400df0: https://git.io/vrGUd
<ipfsbot> go-ipfs/feature/Offline-2393 d2fe0cf Jakub Sztandera: Add offline daemon mode...
<ipfsbot> go-ipfs/feature/Offline-2393 ab37c6e Jakub Sztandera: Make errors more reasonable in case of node in offline mode...
<ipfsbot> go-ipfs/feature/Offline-2393 e400df0 Jakub Sztandera: Create shanress test for offline mode node...
<Kubuxu> Sorry for spamming that much. I noticed merge conflicts only after I pushed.
<ipfsbot> [go-ipfs] Kubuxu pushed 1 new commit to feature/Offline-2393: https://git.io/vrG4T
<ipfsbot> go-ipfs/feature/Offline-2393 f6bbe71 Jakub Sztandera: Make if condition in sharness lib silent...
<cryptix> i've pushed worse :)
rgrinberg has quit [Ping timeout: 240 seconds]
computerfreak has quit [Quit: Leaving.]
cemerick has quit [Ping timeout: 260 seconds]
chriscool has quit [Quit: Leaving.]
<ipfsbot> go-ipfs/feature/Offline-2393 5aa2962 Jakub Sztandera: Add t0040 test for offline daemon...
<ipfsbot> [go-ipfs] Kubuxu pushed 1 new commit to feature/Offline-2393: https://git.io/vrG4X
chriscool has joined #ipfs
computerfreak has joined #ipfs
mildred has joined #ipfs
chriscool has quit [Ping timeout: 260 seconds]
chriscool has joined #ipfs
Akaibu has joined #ipfs
<cehteh> i've set API server listening on /ip4/0.0.0.0/tcp/5001 .. but when i connect from my another computer on the network, the api page is mostly blank (no infos filled in
PrinceOfPeeves has joined #ipfs
<cehteh> do i miss something there?
<Akaibu> hahah
erde74 has quit [Ping timeout: 276 seconds]
ashark has joined #ipfs
<Kubuxu> cehteh: because this page should be white, there is small app at: 127.0.0.1:5001/webui
zootella has joined #ipfs
zootella has quit [Client Quit]
ashark has quit [Ping timeout: 244 seconds]
insanity54 has joined #ipfs
Encrypt has joined #ipfs
ogd has quit [Ping timeout: 260 seconds]
<cryptix> yet anothe rproject reinventing p2p utilities: https://github.com/tendermint/go-p2p
erde74 has joined #ipfs
ogd has joined #ipfs
rklaehn has joined #ipfs
jaboja has joined #ipfs
rendar has quit [Ping timeout: 276 seconds]
rendar has joined #ipfs
mildred has quit [Ping timeout: 265 seconds]
erde74 has quit [Ping timeout: 250 seconds]
<alu> my friend says its hanging
<alu> ipfs ls QmXJc3Hs6FvWtD9Mvo8QGUNFhoAC3XCXhBZrdchuzjxawp
insanity54 has quit [Ping timeout: 260 seconds]
libman has quit [Remote host closed the connection]
rklaehn has quit [Ping timeout: 250 seconds]
<Gaboose> cryptix: are there a lot of those?
<cryptix> Gaboose: more than you would think
<cryptix> also: closed source..
<cryptix> non go.. everyone doing the same work again and again.. which is why i'd love libp2p to pick up
<Gaboose> closed source is no fun, but wouldn't mind having a list of these somehow
<Gaboose> i bet there's something to learn from some of them... i guess
ilyaigpetrov has quit [Quit: Connection closed for inactivity]
<Gaboose> there might be a reason why none of them pick up
<Gaboose> for one, as far as i understand libp2p doesn't do multicasting with fancy topologies
<Gaboose> people who need that would reinvent their own solution
<Gaboose> i'm not *that* familiar with libp2p so shut me up if i'm talking nonsense
<daviddias> Gaboose: not necessarily true
<daviddias> it is correct that today it doesn't
<daviddias> but libp2p is a framework to build up network stacks (this is one of the perspectives)
<daviddias> and multicast is just one of the mechanisms that can be set up
ashark has joined #ipfs
zootella has joined #ipfs
<cryptix> Gaboose: never said that closed source is fun but there def is looots of duplicated work. think nat for instance or all of the nasty tricks skype pulls of to poke through firewalls
rmi7 has quit [Excess Flood]
<cryptix> i wouldn't mind a couple of those at my belly next time i'm looking at a captive portal from a caffe
zootella has quit [Client Quit]
ashark has quit [Ping timeout: 240 seconds]
<Gaboose> yea, true
rmi7 has joined #ipfs
<Gaboose> its hard to associate nat stuff with open source in my head tho
<Gaboose> nat stuff feels like dirty work, while i appreciate elegant code that's public
<Gaboose> probably not just me
<cehteh> Kubuxu: huh? dont understand, whats missing for calling it remotely?
<cryptix> i mean nat as in 'a problem p2p needs to get around somehow' there are prob. 9000 solutions burried in github or god forbid sourceforge, 99% resembling STUN
<Gaboose> sounds like someone needs to go on a rampage and copy them into one automatic seqential try'er
ppham has joined #ipfs
<Gaboose> while gathering statistics on which ones work the best
<Gaboose> science-style
<Gaboose> that'd be more managable in my head than learning from all of them
<Gaboose> and making the ultimate nat traversal package and hoping it'll pick up better
<Gaboose> same with libp2p, which is great that it's going for a general solution
asie has quit [Ping timeout: 244 seconds]
Confiks has joined #ipfs
<cryptix> ironically i just posted someone the standards xkcd half an hour ago... :)
asie has joined #ipfs
<Confiks> The installation instructions of go-ipfs note that I should run `make toolkit_upgrade` to install gx. In the Makefile however, toolkit_upgrade runs the gx_upgrade target, and I see no gx_upgrade in the Makefile. Make complains: "make: *** No rule to make target `gx_upgrade', needed by `toolkit_upgrade'. Stop."
<Confiks> Manually installing gx through `go get -u github.com/whyrusleeping/gx` makes `make install` work smoothly, but where is the gx_upgrade target?
Magik6k has quit [Excess Flood]
ashark has joined #ipfs
jaboja has quit [Ping timeout: 265 seconds]
Magik6k has joined #ipfs
Magik6k has joined #ipfs
Magik6k has quit [Excess Flood]
<chriscool> Confiks: gx_upgrade has been removed recently, in https://github.com/ipfs/go-ipfs/commit/284bb18
<chriscool> It was part of this PR: https://github.com/ipfs/go-ipfs/pull/2584
<chriscool> But the installation instructions might not have been updated
<chriscool> and there might be some bugs in the Makefile
corvinux has quit [Ping timeout: 244 seconds]
Magik6k has joined #ipfs
ygrek has quit [Ping timeout: 246 seconds]
zootella has joined #ipfs
zootella has left #ipfs [#ipfs]
CounterPillow is now known as nfrattaroli
zorglub27 has quit [Quit: zorglub27]
caseorganic has quit [Ping timeout: 260 seconds]
caseorganic has joined #ipfs
nfrattaroli is now known as CounterPillow
ashark has quit [Ping timeout: 276 seconds]
corvinux has joined #ipfs
reit has joined #ipfs
ylp has quit [Ping timeout: 260 seconds]
ylp has joined #ipfs
computerfreak has quit [Remote host closed the connection]
ashark has joined #ipfs
herzmeister has quit [Quit: Leaving]
herzmeister has joined #ipfs
ashark has quit [Ping timeout: 265 seconds]
pfraze has quit [Remote host closed the connection]
<redfish> cehteh: re webui unpopulated: this has been brought up before: related to cors, csrf attacks, and allowed origin/referer
<redfish> but I can't find the issue that I've seen earlier
corvinux has quit [Ping timeout: 246 seconds]
pfraze has joined #ipfs
ashark has joined #ipfs
ppham has quit [Remote host closed the connection]
reit has quit [Quit: Leaving]
jaboja has joined #ipfs
ashark has quit [Ping timeout: 260 seconds]
Encrypt has quit [Quit: Sleeping time!]
HostFat has quit [Quit: Leaving]
Arakela007 has quit [Remote host closed the connection]
ashark has joined #ipfs
ashark has quit [Ping timeout: 260 seconds]
ashark has joined #ipfs
cryptix has quit [Ping timeout: 244 seconds]
zero-one is now known as zero-one|kitchen
zero-one|kitchen is now known as zero-one|bathroo
zero-one|bathroo is now known as zero-one|toaster
zero-one|toaster is now known as zero-one
dmr has joined #ipfs
ashark has quit [Ping timeout: 276 seconds]
rgrinberg has joined #ipfs