whyrusleeping changed the topic of #ipfs to: go-ipfs v0.4.9 is out! https://dist.ipfs.io/#go-ipfs | Week 13: Web browsers, IPFS Cluster, Orbit -- 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
infinity0 has joined #ipfs
infinity0 has quit [Remote host closed the connection]
ipfsrocks has joined #ipfs
infinity0 has joined #ipfs
infinity0 has quit [Remote host closed the connection]
infinity0 has joined #ipfs
infinity0 has quit [Remote host closed the connection]
infinity0 has joined #ipfs
infinity0 has quit [Remote host closed the connection]
infinity0 has joined #ipfs
infinity0 has quit [Remote host closed the connection]
infinity0 has joined #ipfs
chris613 has joined #ipfs
chris613 has left #ipfs [#ipfs]
cehteh has joined #ipfs
Guest59175 has quit [Ping timeout: 240 seconds]
Guest59175 has joined #ipfs
HID_System has left #ipfs [#ipfs]
elkalamar_ has joined #ipfs
elkalamar has quit [Ping timeout: 258 seconds]
ipfsrocks has quit [Ping timeout: 240 seconds]
robattila256 has quit [Quit: WeeChat 1.8]
Caterpillar has quit [Quit: You were not made to live as brutes, but to follow virtue and knowledge.]
palkeo has joined #ipfs
palkeo has joined #ipfs
palkeo has quit [Changing host]
chadoh has quit [Remote host closed the connection]
chris613 has joined #ipfs
chris613 has quit [Client Quit]
zuck05 has quit [Remote host closed the connection]
zuck05 has joined #ipfs
chadoh has joined #ipfs
chadoh has quit [Ping timeout: 245 seconds]
ipfsrocks has joined #ipfs
Guest59175 has quit [Ping timeout: 240 seconds]
ipfsrocks has quit [Ping timeout: 240 seconds]
ipfsrocks has joined #ipfs
fredthomsen has quit [Ping timeout: 245 seconds]
owlet_ has joined #ipfs
owlet_ has quit [Client Quit]
chris613 has joined #ipfs
chungy has joined #ipfs
ipfsrocks has quit [Ping timeout: 268 seconds]
ipfsrocks has joined #ipfs
tilgovi has joined #ipfs
X-Scale has quit [Quit: HydraIRC -> http://www.hydrairc.com <- Nine out of ten l33t h4x0rz prefer it]
jonnycrunch has quit [Ping timeout: 246 seconds]
jonnycrunch has joined #ipfs
jaboja has quit [Ping timeout: 260 seconds]
skeuomorf has joined #ipfs
dimitarvp has quit [Quit: Bye]
HID_System has joined #ipfs
TheVoid has joined #ipfs
<TheVoid> I started `ipfs daemon` on a linux box. It says the daemon is ready, but any command I issue results in : Error: api not running
<HID_System> TheVoid: Does WebUI works?
<TheVoid> let me check
<TheVoid> no response on 5001 or 8080
<HID_System> :(
<TheVoid> followed this guide : https://ipfs.io/blog/22-run-ipfs-on-a-vps/
<HID_System> TheVoid: Check the config Swarm.AddrFilters and send it to me.
<TheVoid> ok
<TheVoid> (it's listed twice in that paste, but not in the config, error while pasting)
<HID_System> TheVoid: Try restarting daemon
<TheVoid> Tried that many times
<TheVoid> I've not had this problem on any other system
<kpcyrd> TheVoid: how did you try to access the WebUI? it's bound to localhost by default
<TheVoid> curl and wget from the server itself
<TheVoid> 127.0.0.1:5001
<kpcyrd> weird. the error is "connection refused" or something else?
<TheVoid> it just sits there forever
<HID_System> TheVoid: What happens when using a browser?
<TheVoid> this is a remote VPS , no UI
<kpcyrd> TheVoid: that's even weirder. any chance you have a firewall on lo?
<TheVoid> checking
<kpcyrd> also, if you try `curl -v http://127.0.0.1:5001`, is it stuck during connecting or after it sent the request?
<TheVoid> It says "Trying 127.0.0.1"
<kpcyrd> as an alternative, `nc -nvz 127.0.0.1 5001`
<kpcyrd> TheVoid: just a wild guess, but also try `curl -v "http://[::1]:5001"`
<HID_System> Does cURL timeout after more than 1 minutes?
<TheVoid> that last command gives me an input prompt
<kpcyrd> TheVoid: check if you have quotes before and after the url
<TheVoid> ah
<TheVoid> ok
<TheVoid> so that gives me
<TheVoid> connection refused
<TheVoid> going to check the firewall again to make sure
<kpcyrd> TheVoid: did you try the nc command? so far it appears ipfs is bound to 127.0.0.1:5001 but for some weird reason you can't connect to it
<kpcyrd> TheVoid: if I may ask, which VPS provider are you using and is this a freshly installed system?
<TheVoid> iptables -I INPUT -i lo -j ACCEPT //just in case
<TheVoid> nc command says connection refused
<kpcyrd> TheVoid: also check your OUTPUT chain, you might not receive the syn-ack
<TheVoid> This is a VPS in Hong Kong. UIbuntu 16.04
<TheVoid> clean install, with docker and a few other tools
<TheVoid> basically identical to my other setups
<kpcyrd> ah
<kpcyrd> are you running ipfs in docker?
<TheVoid> no :D
<TheVoid> separate
<TheVoid> but docker is running on that machine as well
<kpcyrd> that would've been too easy :D
<TheVoid> yeah :p
<TheVoid> the default policy for output is accept
<kpcyrd> TheVoid: did you check `lsof -nPi` if there are listening ports by ipfs?
ipfsrocks has quit [Ping timeout: 245 seconds]
tilgovi has quit [Ping timeout: 245 seconds]
<TheVoid> 4001 LISTEN 32601 LISTEN (this is the API port, tried changing it in case it was in use by another process, but neither default or this one works)
<TheVoid> 8080 LISTEN
tilgovi has joined #ipfs
<TheVoid> everything else is just connections to other peers on port 4001
<TheVoid> and beyond "daemon is ready" there is no other output at all, no errors , no info, nothing
HID_System has quit [Quit: Simple IRC: The quit option.]
HID_System has joined #ipfs
chadoh has joined #ipfs
chadoh has quit [Ping timeout: 240 seconds]
shizy has joined #ipfs
neurrowcat has joined #ipfs
chris613 has quit [Quit: Leaving.]
palkeo has quit [Ping timeout: 245 seconds]
<TheVoid> ok it has to be something in the configuration
<TheVoid> when I reset the configuration it works fine
<TheVoid> after modifying according to that blog post it doesnt
<TheVoid> made the modifications again and it just works
<TheVoid> so confusing
_whitelogger has joined #ipfs
owlet has quit [Ping timeout: 260 seconds]
ygrek has joined #ipfs
HID_System has quit [Quit: Simple IRC: The quit option.]
yuvipanda has joined #ipfs
* yuvipanda waves
<yuvipanda> I'm involved in the mybinder.org reproducible science + public-access-to-computing project, and am very interested in making IPFS available there...
<yuvipanda> I used to play with it when I was working at the Wikimedia Foundation a year or so ago, and am excited to start playing with it again :)
chadoh has joined #ipfs
chadoh has quit [Ping timeout: 268 seconds]
tilgovi has quit [Ping timeout: 260 seconds]
traverseda has quit [Ping timeout: 255 seconds]
neurrowcat has quit [Quit: Deebidappidoodah!]
traverseda has joined #ipfs
Akaibu has joined #ipfs
igorline has joined #ipfs
joocain2 has joined #ipfs
TheVoid has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
robattila256 has joined #ipfs
<yuvipanda> I've started by working on an IPFS chart (for installing into kubernetes with helm) https://github.com/yuvipanda/charts/tree/ipfs
<yuvipanda> I'll try get that upstream first
<yuvipanda> and then figure out where to go from there :)
shizy has quit [Ping timeout: 240 seconds]
bcds[m] has joined #ipfs
joocain2_ has joined #ipfs
joocain2 has quit [Ping timeout: 248 seconds]
chadoh has joined #ipfs
btmsn has joined #ipfs
chadoh has quit [Ping timeout: 240 seconds]
m0ns00n has joined #ipfs
Oatmeal has joined #ipfs
traverseda has quit [Ping timeout: 240 seconds]
Foxcool has joined #ipfs
btmsn1 has joined #ipfs
btmsn has quit [Ping timeout: 260 seconds]
btmsn1 is now known as btmsn
rendar has joined #ipfs
ygrek has quit [Ping timeout: 245 seconds]
traverseda has joined #ipfs
mahloun has joined #ipfs
skeuomorf has quit [Ping timeout: 255 seconds]
joocain2_ has quit [Ping timeout: 248 seconds]
joocain2 has joined #ipfs
Guest59175 has joined #ipfs
igorline has quit [Ping timeout: 258 seconds]
Akaibu has quit [Quit: Connection closed for inactivity]
whysoserious has quit [Ping timeout: 260 seconds]
sirdancealot has joined #ipfs
rtourist has joined #ipfs
<rtourist> hello. under which conditions does the go-ipfs implementation starts behaving like a network scanner?
<sknebel> rtourist: unless you turn it off, it scans private ip space for peers (see https://ipfs.io/blog/22-run-ipfs-on-a-vps/ for how to turn it off)
joocain2_ has joined #ipfs
joocain2 has quit [Ping timeout: 248 seconds]
maxlath has joined #ipfs
ecloud has quit [Ping timeout: 255 seconds]
chadoh has joined #ipfs
maxlath has quit [Ping timeout: 245 seconds]
chadoh has quit [Ping timeout: 272 seconds]
vapid has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
vapid has joined #ipfs
ecloud has joined #ipfs
Caterpillar has joined #ipfs
espadrine has joined #ipfs
bwn has quit [Ping timeout: 268 seconds]
<mantycore[m]> I am trying to design a lightweight identity schema for ipfs (an similar) objects, and need an advice on cryptography.
<mantycore[m]> The basic idea is such: a person creates an object A including payload and some sort of signature. Then they create object B including proof that they created object A, too.
<mantycore[m]> One way it could work is such: the person have private identity token. The system has universally known "magic" constant. When creating object A, they compute hash(identity_token, A.payload) - this will be proof(A). They then use it to symmetrically encrypt the constant, the result becoming A.signature.
<mantycore[m]> When they create B, they can include proof(A) in it. Anyone then can use proof to decrypt A.signature, revealing the constant.
<mantycore[m]> The big downside of this schema is that it can be used only once for given A object, after which anybody and not just creator of A can use the same proof.
<mantycore[m]> I am thinking toward non-interactive zero knowledge proofs, but probably it would be overkill here. I also thinking about including B.payload in proof somehow, so different B.payload results is different proof value (and same B.payload results in the same proof value, so resulting object will be identical).
bwn has joined #ipfs
maxlath has joined #ipfs
elkalamar_ has quit [Quit: Leaving]
joocain2 has joined #ipfs
joocain2_ has quit [Ping timeout: 248 seconds]
robattila256 has quit [Ping timeout: 260 seconds]
zuck05 has quit [Ping timeout: 260 seconds]
gmoro has joined #ipfs
bwn has quit [Ping timeout: 268 seconds]
zuck05 has joined #ipfs
cxl000 has joined #ipfs
zuck05 has quit [Ping timeout: 246 seconds]
zuck05 has joined #ipfs
<mantycore[m]> Okay, I guess zero knowledge authentication (https://courses.csail.mit.edu/6.857/2014/files/15-cheu-jaffe-lin-yang-zkp-authentication.pdf) allows just that, with substitutions: identity_token <- password, A.payload <- username; A.signature <- Y; B.payload <- a; proof(A, B) <- (c, z_x)
zuck05 has quit [Ping timeout: 245 seconds]
zuck05 has joined #ipfs
* mantycore[m] sent a long message: mantycore[m]_2017-05-29_10:23:35.txt <https://matrix.org/_matrix/media/v1/download/matrix.org/pnATyJzyklvwrDDcLVaPwEQw>
zuck05 has quit [Ping timeout: 240 seconds]
joocain2_ has joined #ipfs
joocain2 has quit [Ping timeout: 248 seconds]
m0ns00n has quit [Quit: quit]
zuck05 has joined #ipfs
<r0kk3rz> hmm, snarks might not be such a bad idea for psychic paper identities
elkalamar has joined #ipfs
<mantycore[m]> Psychic paper, I like the term :)
<mantycore[m]> Oh, thank you!
btmsn has quit [Quit: btmsn]
Boomerang has joined #ipfs
igorline has joined #ipfs
btmsn has joined #ipfs
igorline has quit [Ping timeout: 246 seconds]
btmsn has quit [Quit: Leaving.]
igorline has joined #ipfs
rtourist has quit [Quit: leaving]
joocain2 has joined #ipfs
joocain2_ has quit [Ping timeout: 248 seconds]
btmsn has joined #ipfs
btmsn has quit [Quit: Leaving.]
btmsn has joined #ipfs
Foxcool has quit [Ping timeout: 268 seconds]
Guest246797[m] has joined #ipfs
mildred3 has joined #ipfs
maxlath has quit [Quit: maxlath]
Guest59175 has quit [Quit: Guest59175]
john has joined #ipfs
john is now known as Guest46308
sirdancealot has quit [Ping timeout: 258 seconds]
Hareesh[m] has joined #ipfs
Hareesh[m] has left #ipfs [#ipfs]
joocain2 has quit [Ping timeout: 248 seconds]
zuck05 has quit [Ping timeout: 246 seconds]
dimitarvp has joined #ipfs
sirdancealot has joined #ipfs
joocain2 has joined #ipfs
owlet has joined #ipfs
Foxcool has joined #ipfs
zuck05 has joined #ipfs
maxlath has joined #ipfs
igorline has quit [Quit: WeeChat 1.8]
chungy has quit [Ping timeout: 245 seconds]
chadoh has joined #ipfs
chungy has joined #ipfs
chadoh has quit [Remote host closed the connection]
mailtorajeshmr[m has joined #ipfs
joocain2_ has joined #ipfs
joocain2 has quit [Ping timeout: 248 seconds]
arpu_ has quit [Quit: Ex-Chat]
arpu has joined #ipfs
arpu_ has joined #ipfs
arpu_ has quit [Remote host closed the connection]
JayCarpenter has joined #ipfs
Foxcool has quit [Ping timeout: 268 seconds]
tlarson has joined #ipfs
chadoh has joined #ipfs
maxlath has quit [Ping timeout: 260 seconds]
linux8bit[m] has joined #ipfs
guardianx has joined #ipfs
joocain2 has joined #ipfs
chadoh has quit [Remote host closed the connection]
guardianx has quit []
joocain2_ has quit [Ping timeout: 248 seconds]
Boomerang has quit [Quit: Lost terminal]
chadoh has joined #ipfs
chadoh has quit [Remote host closed the connection]
Foxcool has joined #ipfs
clavi has quit [Quit: ZNC - http://znc.in]
maxlath has joined #ipfs
chadoh has joined #ipfs
clavi has joined #ipfs
Mateon3 has joined #ipfs
Mateon1 has quit [Ping timeout: 240 seconds]
Mateon3 is now known as Mateon1
chadoh has quit [Ping timeout: 245 seconds]
pat36 has joined #ipfs
owlet has quit [Ping timeout: 260 seconds]
joocain2 has quit [Ping timeout: 248 seconds]
joocain2 has joined #ipfs
sirdancealot has quit [Ping timeout: 260 seconds]
chadoh has joined #ipfs
chadoh has quit [Remote host closed the connection]
chadoh has joined #ipfs
<sprint-helper> The next event "IPFS All Hands Call" is in 15 minutes.
jaboja has joined #ipfs
droman has joined #ipfs
JayCarpenter_ has joined #ipfs
<flyingzumwalt> sprint-helper --help
<sprint-helper> Correct usage: sprint-helper: announce <args> | next | now | tomorrow | help
<sprint-helper> Error: Unrecognized command!
chadoh_ has joined #ipfs
<flyingzumwalt> sprint-helper help
<sprint-helper> Feedback: https://github.com/ipfs/sprint-helper
<sprint-helper> Correct usage: sprint-helper: announce <args> | next | now | tomorrow | help
chadoh has quit [Ping timeout: 255 seconds]
<sprint-helper> Sprint Issue: https://github.com/ipfs/pm/issues/456
<sprint-helper> Topic: IPFS All Hands
<sprint-helper> Join Call: https://zoom.us/s/779351365
<sprint-helper> ========================= IPFS Sprint: IPFS All Hands =========================
<sprint-helper> ===========================================================================
<sprint-helper> Watch Stream: no-stream
<daviddias> dignifiedquire: around?
<daviddias> You've just been awarded with the unique opportunity to be the notetaker for this week's all hands! \o/
maxlath has quit [Ping timeout: 245 seconds]
<dignifiedquire> daviddias: sorry just on my way home
matoro has quit [Read error: Connection reset by peer]
chadoh_ has quit [Remote host closed the connection]
mahloun has quit [Ping timeout: 260 seconds]
<daviddias> dignifiedquire: no worries, David Grisham volunteered to be the notetaker :)
matoro has joined #ipfs
chadoh_ has joined #ipfs
maxlath has joined #ipfs
joocain2_ has joined #ipfs
chadoh_ has quit [Ping timeout: 255 seconds]
joocain2 has quit [Ping timeout: 248 seconds]
Monokles has quit [Remote host closed the connection]
Monokles has joined #ipfs
chadoh has joined #ipfs
<dignifiedquire> thank you David Grisham :)
<dignifiedquire> I can take notes next week, just need to a little bit more in advance than 5min :D
maxlath has quit [Ping timeout: 272 seconds]
chadoh has quit [Ping timeout: 246 seconds]
espadrine has quit [Ping timeout: 260 seconds]
chadoh has joined #ipfs
chadoh has quit [Read error: Connection reset by peer]
mahloun has joined #ipfs
chadoh has joined #ipfs
b_five has quit [Quit: Connection closed for inactivity]
chadoh has quit [Read error: Connection reset by peer]
chadoh has joined #ipfs
<daviddias> dignifiedquire: it was posted last week :)
chadoh has quit [Ping timeout: 260 seconds]
<dignifiedquire> hmm github notification overload
<dgrisham> dignifiedquire: no worries :) flyingzumwalt: could I be added to the rotation for notetaking?
Teeed has quit [Ping timeout: 240 seconds]
joocain2 has joined #ipfs
daskalov has joined #ipfs
pedrovian has joined #ipfs
joocain2_ has quit [Ping timeout: 248 seconds]
ygrek has joined #ipfs
Teeed has joined #ipfs
<flyingzumwalt> dgrisham sure! just submit a PR adding your name to https://github.com/ipfs/pm/blob/master/README.md#facilitators-and-notetakers and the bot (https://github.com/ipfs/node-github-issue-bot) will include you in the rotation automatically
<dgrisham> flyingzumwalt: gotcha, will do, thanks!
robattila256 has joined #ipfs
espadrine has joined #ipfs
Encrypt has joined #ipfs
X-Scale has joined #ipfs
Encrypt has quit [Client Quit]
tlarson has quit [Quit: tlarson]
JayCarpenter_ has quit [Quit: Page closed]
Guest46308 has quit [Ping timeout: 240 seconds]
A124 has quit [Quit: '']
btmsn has quit [Ping timeout: 240 seconds]
infinitesum has joined #ipfs
A124 has joined #ipfs
windsok has quit [Quit: No Ping reply in 180 seconds.]
windsok has joined #ipfs
infinitesum has quit [Client Quit]
infinitesum has joined #ipfs
<yuvipanda> I made a PR to the kubernetes chart repo for IPFS (https://github.com/kubernetes/charts/pull/1192) once this gets merged, you can install IPFS on kubernetes with 'helm install stable/ipfs' :D
joocain2 has quit [Ping timeout: 248 seconds]
joocain2 has joined #ipfs
infinitesum has quit [Quit: infinitesum]
owlet has joined #ipfs
owlet has quit [Client Quit]
owlet has joined #ipfs
robattila256 has quit [Quit: WeeChat 1.8]
infinitesum has joined #ipfs
<yuvipanda> thanks VictorBjelkholm- for your comment :)
Guest46308 has joined #ipfs
rendar has quit [Ping timeout: 260 seconds]
Encrypt has joined #ipfs
mahloun has quit [Ping timeout: 268 seconds]
<victorbjelkholm> no worries, super cool that you're working on adding that! Have you done some testing with 1+ nodes?
<victorbjelkholm> last time I tried, IPFS got confused (probably my fault) with address being an external one and received all requests to all nodes
maxlath has joined #ipfs
cwahlers_ has joined #ipfs
cwahlers has quit [Ping timeout: 240 seconds]
rendar has joined #ipfs
rendar has joined #ipfs
rendar has quit [Changing host]
robattila256 has joined #ipfs
maxlath has quit [Ping timeout: 260 seconds]
owlet has quit [Quit: leaving]
special has quit [Excess Flood]
special has joined #ipfs
special is now known as Guest41275
A124 has quit [Ping timeout: 255 seconds]
rendar has quit [Quit: std::lower_bound + std::less_equal *works* with a vector without duplicates!]
atrapado_ has joined #ipfs
tilgovi has joined #ipfs
tilgovi has quit [Ping timeout: 258 seconds]
maxlath has joined #ipfs
jaboja has quit [Ping timeout: 260 seconds]
Boomerang has joined #ipfs
jaboja has joined #ipfs
maxlath has quit [Quit: maxlath]
owlet has joined #ipfs
<yuvipanda> victorbjelkholm: what do you mean by 1+ nodes?
<yuvipanda> I've it running on beta.mybinder.org now with 3 replicas
<yuvipanda> but they're pretty much independent of each other and don't know of each other
<yuvipanda> they have their own storage and whatnot
fredthomsen has joined #ipfs
<yuvipanda> and the service just round-robins between them
<yuvipanda> I don't actually if / how we explicitly set up peers tho
<yuvipanda> we can probably do that
Caterpillar has quit [Quit: You were not made to live as brutes, but to follow virtue and knowledge.]
bwn has joined #ipfs
zuck05 has quit [Ping timeout: 268 seconds]
Akaibu has joined #ipfs
chadoh has joined #ipfs
pat36 has quit []
atrapado_ has quit [Quit: Leaving]
chadoh has quit [Remote host closed the connection]
chadoh has joined #ipfs
Encrypt has quit [Quit: Quit]
Foxcool has quit [Ping timeout: 240 seconds]
tilgovi has joined #ipfs
chadoh_ has joined #ipfs
fredthomsen has quit [Ping timeout: 240 seconds]
chadoh has quit [Ping timeout: 260 seconds]
chungy has quit [Quit: ZNC - http://znc.in]
fredthomsen has joined #ipfs
neurrowcat has joined #ipfs
jaboja has quit [Remote host closed the connection]
ipfsrocks has joined #ipfs
bwn has quit [Read error: Connection reset by peer]
fredthomsen has quit [Ping timeout: 260 seconds]
ipfsrock1 has joined #ipfs
ipfsrocks has quit [Ping timeout: 246 seconds]
bwn has joined #ipfs
skeuomorf has joined #ipfs
infinitesum has quit [Quit: infinitesum]
infinitesum has joined #ipfs
robattila256 has quit [Quit: WeeChat 1.8]
chungy has joined #ipfs
archpc has joined #ipfs
Aranjedeath has joined #ipfs
citizenErased has joined #ipfs
jsgrant__ has quit [Quit: Peace Peeps. o/ If you need me asap, message me at msg[(at)]jsgrant.io & I'll try to get back to you within 24 hours.]
chris613 has joined #ipfs
infinitesum has quit [Quit: infinitesum]
cxl000 has quit [Quit: Leaving]
chris613 has left #ipfs [#ipfs]
infinitesum has joined #ipfs
infinitesum has quit [Quit: infinitesum]
infinitesum has joined #ipfs
espadrine has quit [Ping timeout: 240 seconds]
chungy has quit [Quit: ZNC - http://znc.in]
Jesin has quit [Quit: Leaving]
Boomerang has quit [Remote host closed the connection]
Jesin has joined #ipfs
chadoh_ has quit [Remote host closed the connection]
droman has quit []
jkilpatr has joined #ipfs
daskalov has quit [Ping timeout: 260 seconds]
infinitesum has quit [Quit: infinitesum]
jkilpatr has quit [Ping timeout: 245 seconds]
chadoh has joined #ipfs
joocain2 has quit [Ping timeout: 248 seconds]
chungy has joined #ipfs
jkilpatr has joined #ipfs
chadoh has quit [Remote host closed the connection]
jkilpatr has quit [Ping timeout: 260 seconds]
fredthomsen has joined #ipfs
<flyingzumwalt> chadoh_ IPNS is painfuly under-documented. The best explanations are in https://ipfs.io/docs/commands/#ipfs-name and (somewhat confusingly) https://ipfs.io/docs/commands/#ipfs-key
<flyingzumwalt> For dnslink, you want https://ipfs.io/docs/commands/#ipfs-dns