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
espadrine has quit [Ping timeout: 256 seconds]
ligi has joined #ipfs
Shah1 has joined #ipfs
ligi has quit [Ping timeout: 240 seconds]
ligi has joined #ipfs
infinity0_ has joined #ipfs
infinity0_ has quit [Changing host]
infinity0_ has joined #ipfs
infinity0 is now known as Guest80950
Guest80950 has quit [Killed (tolkien.freenode.net (Nickname regained by services))]
infinity0_ is now known as infinity0
ygrek has joined #ipfs
ligi has quit [Ping timeout: 248 seconds]
fleeky has quit [Read error: No route to host]
fleeky has joined #ipfs
fleeky has quit [Ping timeout: 260 seconds]
arthuredelstein has quit [Ping timeout: 265 seconds]
arthuredelstein has joined #ipfs
Shah1 has quit [Ping timeout: 256 seconds]
fleeky has joined #ipfs
droman has quit [Quit: WeeChat 2.0.1]
<kpcyrd> wow, rust ipfs? what did I miss?
<lgierth> kpcyrd: github.com/libp2p/rust-libp2p :)
<lgierth> it's still very early, but steady progress
<kpcyrd> what I would appreciate is a crate for the ipfs dataformats, for serialization and deserialization. I never got protobuf to work with rust
<kpcyrd> lgierth: very nice!
infinisil has quit [Quit: ZNC 1.6.5 - http://znc.in]
infinisil has joined #ipfs
<Ronsor_> rust ipfs? ooh
<lgierth> kpcyrd: tomaka[m] knows more :)
robattila256 has joined #ipfs
tombusby has quit [Remote host closed the connection]
tombusby has joined #ipfs
Fess has joined #ipfs
tombusby has quit [Remote host closed the connection]
tombusby has joined #ipfs
newhouse has quit [Quit: Leaving]
Shah1 has joined #ipfs
leeola has quit [Quit: Connection closed for inactivity]
__m__ has joined #ipfs
__m__ has quit [Client Quit]
dimitarvp has quit [Quit: Bye]
ygrek has quit [Ping timeout: 256 seconds]
<Poeticode> hm, got my hugo site up and running. Then did `ipfs add -r /folder/path/` + `ipfs name publish $hash_from_prev_command`. It's been 10+ minutes and I'm still not able to access it from https://ipfs.io/ipns/$hash. Any ideas of what I might've done wrong?
robattila256 has quit [Quit: WeeChat 2.0.1]
fredthomsen has joined #ipfs
Ecran has quit [Quit: Going offline, see ya! (www.adiirc.com)]
<deltab> Poeticode: how many peers do you have?
<deltab> ipfs swarm peers
}ls{ has quit [Quit: real life interrupt]
<Poeticode> a good bit... But now I realize I didn't have my daemon running at the time that I added + ipfs name publish'd D:
<Poeticode> do I have to redo those commands with the daemon now running, or will it propagate those local changes?
<deltab> aiui, you can add while offline (and it's recommended if you're adding a lot)
<deltab> I don't know about publish
<deltab> I think it republishes every so often, but I don't know the schedule
<Poeticode> ooh, I republished, and it seems to have propagated :d
<Poeticode> dangit I set relative_urls to true in hugo, but something must be overriding that setting or something :/
<Poeticode> thank you deltab, my baseURL was the issue
<Poeticode> now for one last newb IPFS question... I'd like to use ipfs.io/ipns/my.domain.com, so I've set a TXT record for the subdomain with "dnslinker=/ipns/hash_from_publish_command". A third party service correctly showed the TXT record for it, but ipfs.io/ipns/my.domain.com says it can't resolve the name
<Poeticode> err and it's using dnslink=, not dnslinker, that's a typo :/
<Poeticode> two things that I think might cause an issue... I'm trying to do it with a subdomain, and my TLD is .codes which often causes issues with stuff since it's atypical
<Poeticode> ah doing `ipfs name resolve -r my.domain.com` shows that it's pointing to the first TXT that I set, which I did incorrectly :P
<Poeticode> gonna do a hard DNS refresh and see if IPFS updates with the most recent one
<Poeticode> hmm still isn't updating... Do I have to do something through IPFS for it to check the TXT record again, or is it also on a schedule and thus I just need to be more patient?
<Poeticode> going to http://127.0.0.1:8080/ipns/my.domain.com/ works so I'm assuming that must be the case
<Poeticode> Sorry for the wall-o-text; partly writing all of this to rubber-duck it out with myself
<Poeticode> hmmmm actually, `ipfs resolve my.domain.com` shows the correct ipns hash. `ipfs name resolve -r my.domain.com` shows the ipfs hash instead of the ipns hash. so maybe everything is correctly set and I'm just missing something...
<Poeticode> ooh this sounds like it could be the culprit: `ERROR core/serve: invalid ipfs path: selected encoding not supported` this is what happens when I go directly to that ipfs/hash
Rusty78 has joined #ipfs
<Rusty78> Quick question - how do I stop hosting/pinning a file after I add it?
<Rusty78> I'm trying to understand the difference between adding and pinning a file. If I stop pinning a file (and I am the only one hosting this file across the network), will it make this file unreachable?
<reit> you're still hosting unpinned files until you run `ipfs repo gc`
<reit> the only purpose of pinning is to prevent files from being removed when running that command
TheEdBoi has joined #ipfs
TheEdBoi has left #ipfs ["WeeChat 2.0.1"]
<Rusty78> reit: So if I wanted to stop hosting a specific file from my node I would have to run "ipfs pin rm" for a specific file and then run "ipfs repo gc"?
<Rusty78> Assuming that I added the file originally via the "ipfs add" command
<reit> yes, that is my understanding
<Rusty78> Ahh, appreciate it, thank you
<reit> (though i'm not sure of the syntax, i'm not sitting in front of a go-ipfs daemon right now)
<Rusty78> Np I can reference the docs, the actual concept is what I was struggling to figure out
koshii has quit [Ping timeout: 260 seconds]
koshii has joined #ipfs
<deltab> Poeticode: DNS records are cached for the number of seconds given by the record's TTL
<deltab> I recommend using a low ttl when you're changing things, and increase it later for efficiency
<Poeticode> deltab: I see... I think my first TTL was 5 hours, so I'll hit the hay and see if it's updated in the morning. Thank you so much for helping me get this site up on ipfs :D
<deltab> Poeticode: you can add a record with a different name and try that instead
cwahlers_ has joined #ipfs
cwahlers has quit [Ping timeout: 240 seconds]
<Poeticode> yep! A different name with the same TXT record showed up just fine
<Poeticode> time to sleep with confidence
reit has quit [Quit: Leaving]
upperdeck has quit [Ping timeout: 248 seconds]
upperdeck has joined #ipfs
fredthomsen has quit [Quit: Leaving.]
ligi has joined #ipfs
ligi has quit [Changing host]
ligi has joined #ipfs
gavinrogers[m] has joined #ipfs
l2d has quit [Quit: The Lounge - https://thelounge.github.io]
l2d has joined #ipfs
Poeticode has quit [Ping timeout: 264 seconds]
Poeticode has joined #ipfs
reit has joined #ipfs
ligi has quit [Ping timeout: 240 seconds]
chriscool1 has joined #ipfs
dracol_ has joined #ipfs
gde33 has quit [Ping timeout: 272 seconds]
larpanet has joined #ipfs
A124 has joined #ipfs
Vladislav has joined #ipfs
larpanet has quit [Ping timeout: 260 seconds]
ligi has joined #ipfs
ligi has quit [Changing host]
ligi has joined #ipfs
Poeticode has quit [Changing host]
Poeticode has joined #ipfs
<Poeticode> welp, instead of going to bed, I got HTTPS working on my ipfs site :D
ligi has quit [Ping timeout: 240 seconds]
OneOneOneOne has quit [Ping timeout: 256 seconds]
OneOneOneOne has joined #ipfs
robattila256 has joined #ipfs
reit has quit [Ping timeout: 263 seconds]
onikuma has joined #ipfs
dimitarvp has joined #ipfs
rendar has joined #ipfs
toxync01 has quit [Ping timeout: 264 seconds]
muravey has joined #ipfs
larpanet has joined #ipfs
Rajdharma[m] has joined #ipfs
Shah1 has quit [Ping timeout: 240 seconds]
letmutx has joined #ipfs
espadrine has joined #ipfs
<letmutx> what protocol does ipfs use to send and receive messages?
Shah1 has joined #ipfs
<JCaesar> Is TCP the answer you're looking for?
<letmutx> JCaesar: TCP is the underlying transport protocol. I am looking for something equivalent to HTTP.
toxync01 has joined #ipfs
muravey has quit [Ping timeout: 240 seconds]
Shah1 has quit [Ping timeout: 240 seconds]
jezeba has joined #ipfs
jezeba has quit [Quit: Mutter: www.mutterirc.com]
lerg has joined #ipfs
<lerg> Pewpew.
larpanet has quit [Ping timeout: 268 seconds]
<letmutx> figured it's multistream
<cjd[m]> ansuz_: ^^ u r trendsetter
jungly has joined #ipfs
robattila256 has quit [Quit: WeeChat 2.0.1]
<JCaesar> letmutx: maybe. But there's some encryption below that…
Sigma has quit [Quit: ZNC - http://znc.in]
Sigma has joined #ipfs
}ls{ has joined #ipfs
<lerg> Scams.
<lerg> Fraud.
<lerg> Data harvesting.
dracol_ has quit [Ping timeout: 260 seconds]
<letmutx> JCasear: ah.
<JCaesar> (Which is why the peer addresses contain the peer ID.)
<tomaka[m]> When a connection is established, what is called `multistream-select` is used to negotiate a protocol
<tomaka[m]> then they negotiate `secio`, then `multiplex` on top of it, then a bunch of other protocols
<tomaka[m]> "which protocol does ipfs use" cannot be answered in a simple way
sebboh has quit [Ping timeout: 260 seconds]
robattila256 has joined #ipfs
chriscool1 has quit [Quit: Leaving.]
reit has joined #ipfs
reit has quit [Quit: Leaving]
Neomex has quit [Ping timeout: 260 seconds]
joocain2 has quit [Remote host closed the connection]
joocain2 has joined #ipfs
colin_ has quit [Ping timeout: 260 seconds]
Fess has quit [Ping timeout: 265 seconds]
chriscool1 has joined #ipfs
Shah2 has joined #ipfs
<DokterBob> mokos: sorry it took me some time to get back to you
reit has joined #ipfs
<DokterBob> mokos: you may join the ipfs-search specific discussion on #ipfs-search:chat.weho.st / #ipfssearch on Freenode
dandevelo has joined #ipfs
Rusty78 has quit [Ping timeout: 265 seconds]
Vladislav has quit [Ping timeout: 248 seconds]
nibble has joined #ipfs
ykoda has joined #ipfs
Mateon3 has joined #ipfs
Mateon1 has quit [Ping timeout: 256 seconds]
Mateon3 is now known as Mateon1
ykoda[m] has joined #ipfs
Just_ has joined #ipfs
newhouse has joined #ipfs
archheretic has quit [Remote host closed the connection]
<letmutx> where is the <varint-len> field length documented? Is it a 8/16/32/64 bit integer? https://github.com/multiformats/multistream#how-does-it-work---protocol-description
Shah2 has quit [Ping timeout: 264 seconds]
dandevelo has quit [Ping timeout: 264 seconds]
OS-26949 has joined #ipfs
ligi has joined #ipfs
ligi has quit [Changing host]
ligi has joined #ipfs
ligi has quit [Ping timeout: 260 seconds]
nephrosis has joined #ipfs
shizy has joined #ipfs
ykoda has quit [Ping timeout: 240 seconds]
ykoda has joined #ipfs
Just_ has quit [Quit: Connection closed for inactivity]
Encrypt has joined #ipfs
mokos has quit [Ping timeout: 260 seconds]
ykoda has quit [Ping timeout: 255 seconds]
ykoda has joined #ipfs
mokos has joined #ipfs
shizy has quit [Ping timeout: 255 seconds]
Fess has joined #ipfs
biodrone has quit [Ping timeout: 248 seconds]
espadrine has quit [Ping timeout: 240 seconds]
trqx has quit [Remote host closed the connection]
trqx has joined #ipfs
nephrosis has quit [Remote host closed the connection]
raynold has quit [Quit: Connection closed for inactivity]
biodrone has joined #ipfs
ligi has joined #ipfs
biodrone has quit [Ping timeout: 240 seconds]
biodrone has joined #ipfs
ligi has quit [Ping timeout: 256 seconds]
onikuma has quit [Ping timeout: 272 seconds]
dandevelo has joined #ipfs
dandevelo has quit [Ping timeout: 248 seconds]
Ronsor_ has quit [Ping timeout: 272 seconds]
Ronsor has joined #ipfs
Ronsor has quit [Changing host]
Ronsor has joined #ipfs
letmutx has quit [Quit: Connection closed for inactivity]
larpanet has joined #ipfs
arpu has joined #ipfs
Fessus has joined #ipfs
<JCaesar> Hm. I get the feeling that resolving /ipns/goecam.liftm.de usually fails on the first attemt…
Fess has quit [Ping timeout: 252 seconds]
larpanet has quit [Ping timeout: 255 seconds]
<JCaesar> I wonder why that is…
OS-26949 has left #ipfs ["Leaving"]
Ronsor has quit [Ping timeout: 248 seconds]
Ronsor has joined #ipfs
Ronsor is now known as Guest98327
Encrypt has quit [Quit: Quit]
Fessus has quit [Quit: Leaving]
Fess has joined #ipfs
biodrone has quit [Quit: ZNC 1.6.5+deb1 - http://znc.in]
biodrone has joined #ipfs
witten has joined #ipfs
newhouse has quit [Read error: Connection reset by peer]
noperope has joined #ipfs
noperope has quit [Client Quit]
Jesin has joined #ipfs
larpanet has joined #ipfs
rendar has quit [Quit: std::lower_bound + std::less_equal *works* with a vector without duplicates!]
shizy has joined #ipfs
Just_ has joined #ipfs
dpl has joined #ipfs
Ellenor is now known as Reinhilde
larpanet has quit [Remote host closed the connection]
larpanet has joined #ipfs
ykoda has quit [Quit: WeeChat 2.0.1]
dandevelo has joined #ipfs
larpanet has quit [Ping timeout: 256 seconds]
dandevelo has quit [Ping timeout: 265 seconds]
OneOneOneOne has quit []
OneOneOneOne has joined #ipfs
randomstrangerb has quit [Ping timeout: 256 seconds]
randomstrangerb has joined #ipfs
kaotisk has joined #ipfs
kaotisk has quit [Ping timeout: 268 seconds]
roygbiv has joined #ipfs
dpl has quit [Quit: Lost terminal]
bwerthmann has joined #ipfs
bwerthma1n has joined #ipfs
kaotisk has joined #ipfs
bwerthmann has quit [Ping timeout: 248 seconds]
Neomex has joined #ipfs
joeyh has left #ipfs ["WeeChat 1.9.1"]
randomstrangerb has quit [Ping timeout: 268 seconds]
randomstrangerb has joined #ipfs
Ronsor has joined #ipfs
Guest98327 has quit [Read error: Connection reset by peer]
Ronsor is now known as Guest23716
Encrypt has joined #ipfs
fleeky has quit [Read error: Connection reset by peer]
kaotisk has quit [Ping timeout: 240 seconds]
roygbiv has quit [Quit: ™]
witten has quit [Ping timeout: 252 seconds]
witten has joined #ipfs
lerg has quit [Ping timeout: 263 seconds]
shizy has quit [Ping timeout: 246 seconds]
Just_ has quit [Quit: Connection closed for inactivity]
dandevelo has joined #ipfs
dpl has joined #ipfs
randomstrangerb has quit [Ping timeout: 240 seconds]
dandevelo has quit [Ping timeout: 240 seconds]
randomstrangerb has joined #ipfs
Guest23716 has quit [Ping timeout: 256 seconds]
jwalla has joined #ipfs
Ronsor has joined #ipfs
Ronsor is now known as Guest9451
<jwalla> anyone have trouble getting peer discovery working the ipfs or ipfs-pubsub-room npm package when using pubsub?
raynold has joined #ipfs
kaotisk has joined #ipfs
colin_ has joined #ipfs
kaotisk has quit [Ping timeout: 248 seconds]
laloplegia has joined #ipfs
kaotisk has joined #ipfs
lerg has joined #ipfs
kaotisk has quit [Ping timeout: 248 seconds]
kaotisk has joined #ipfs
witten has quit [Ping timeout: 260 seconds]
witten has joined #ipfs
fredthomsen has joined #ipfs
matoro has quit [Read error: Connection reset by peer]
kaotisk has quit [Ping timeout: 264 seconds]
kaotisk has joined #ipfs
espadrine has joined #ipfs
fredthomsen has quit [Quit: Leaving.]
manjaroi3_ has joined #ipfs
manjaroi3_ has quit [Client Quit]
Guest9451 is now known as Ronsor
Ronsor has quit [Changing host]
Ronsor has joined #ipfs
kaotisk has quit [Ping timeout: 240 seconds]
kaotisk has joined #ipfs
matoro has joined #ipfs
fredthomsen has joined #ipfs
kaotisk has quit [Ping timeout: 248 seconds]
matoro has quit [Max SendQ exceeded]
dconroy has joined #ipfs
matoro has joined #ipfs
fredthomsen has quit [Client Quit]
randomstrangerb has quit [Ping timeout: 268 seconds]
randomstrangerb has joined #ipfs
kaotisk has joined #ipfs
dandevelo has joined #ipfs
Reinhilde is now known as Ellenor
dandevelo has quit [Ping timeout: 268 seconds]
dconroy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fredthomsen has joined #ipfs
dandevelo has joined #ipfs
dimitarvp has quit [Quit: Bye]
dpl has quit [Ping timeout: 260 seconds]
kaotisk has quit [Ping timeout: 268 seconds]
witten has quit [Ping timeout: 264 seconds]
maxzor_ has quit [Ping timeout: 264 seconds]
lassulus has quit [Quit: WeeChat 1.9.1]
lassulus has joined #ipfs
witten has joined #ipfs