lgierth changed the topic of #ipfs to: go-ipfs v0.4.10 is out! https://dist.ipfs.io/#go-ipfs | Dev chat: #ipfs-dev | 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
upperdeck has quit [Ping timeout: 255 seconds]
upperdeck has joined #ipfs
spacebar_ has quit [Quit: spacebar_ pressed ESC]
anewuser has joined #ipfs
Guest26647 has quit [Ping timeout: 255 seconds]
Lymkwi has joined #ipfs
Lymkwi is now known as Guest17088
anewuser has quit [Ping timeout: 240 seconds]
anewuser has joined #ipfs
<jfmherokiller[m]> im just curious why doesnt ipfs add accept stdin input on windows?
<Noxarivis[m]> jfmherokiller: has windows stdin input?
<jfmherokiller[m]> well i mean even if i specify -- it still asks for a file
<Noxarivis[m]> jfmherokiller: ...yeah?
<Noxarivis[m]> jfmherokiller: is that wrong?
<jfmherokiller[m]> shouldnt it also allow me to pipe data into it? like `echo "test | ipfs add`
<Noxarivis[m]> Does windows even have this functionality?
<Noxarivis[m]> Can I even pipe data in windows? jfmherokiller
<jfmherokiller[m]> well ive seen it done in powershell scripts
<Noxarivis[m]> jfmherokiller: can you run ipfs in powrshell?
<jfmherokiller[m]> yes by just executing `ipfs.exe [command]`
* Noxarivis[m] sent a long message: Noxarivis[m]_2017-08-21_00:58:12.txt <https://matrix.org/_matrix/media/v1/download/matrix.org/EXsuyCoiEPfVQidxvyOBEWVc>
* Noxarivis[m] sent a long message: Noxarivis[m]_2017-08-21_00:59:09.txt <https://matrix.org/_matrix/media/v1/download/matrix.org/UsKewBmgSazmQCzcMfYGlDtr>
<Noxarivis[m]> In powershell?
skywavesurfer has joined #ipfs
<jfmherokiller[m]> `PS F:\> echo "test" | ipfs add
<jfmherokiller[m]> Error: Argument 'path' is required`
<jfmherokiller[m]> it then prints the usage message
<Noxarivis[m]> jfmherokiller: can you give me an example with other software that successful uses a data pipe?
<jfmherokiller[m]> not that i know of but i think i figured out the issue and its that windows doesnt have /dev/stdin /dev/stdout like osx/linux does
<Noxarivis[m]> jfmherokiller: wow... that took long
<Magik6k> It's disabled there for some reason: https://github.com/ipfs/go-ipfs/blob/master/commands/cli/parse.go#L260
<Magik6k> If you think it's wrong make an issue
<Noxarivis[m]> Of course, windows doesn't have that
<Magik6k> Though there is probably some reason it has been done
Vladislav has quit [Ping timeout: 240 seconds]
Jesper has quit [Ping timeout: 246 seconds]
<Noxarivis[m]> I think windows is not even able to do that
<Magik6k> It can do that afaik
<Magik6k> I mean it has | in cmd
<Magik6k> unless it's utterly broken in some way it should work
<Magik6k> This PR disabled it, not much of a reason given: https://github.com/ipfs/go-ipfs/pull/365
<Noxarivis[m]> Why even bother with windows if there are so many working OSs out there
<jfmherokiller[m]> because it some things have better support on windows
<Magik6k> As much as I love my arch with tiling WM it's kinda hard to ignore this 90+% of people
<Magik6k> I'd rather fix os specific things for plan9
<Magik6k> There is an issue about it already: https://github.com/ipfs/go-ipfs/issues/3266
<jfmherokiller[m]> also the stdin pipe on windows is con
Milijus has joined #ipfs
mackz has joined #ipfs
<mackz> hi,anybody here?
<Magik6k> mackz, yep
<mackz> nice to see you, Magik6k
<Noxarivis[m]> > hi,anybody here?
<Noxarivis[m]> Meep
<mackz> i have some problems with using libp2p, could you help me
<Noxarivis[m]> mackz: ask your question
<Magik6k> It's irc, just ask
<Noxarivis[m]> ^
<Noxarivis[m]> Magik6k: (IRC/Matrix)
<Noxarivis[m]> To be exact
<mackz> for example, when i use libp2p to transport files, i only can use in internal network
<mackz> ok
<mackz> it's my first time using irc, 0.0
<Noxarivis[m]> mackz: dont worry
<mackz> like this: 127.0.0.1 10.20.35.216 172.20.0.1 172.17.0.1 172.19.0.1 172.18.0.1
<mackz> func get_external() { //resp, err := http.Get("http://myexternalip.com/raw") urls := []string{"http://myexternalip.com/raw"} var resp *http.Response var err error for _, url := range urls { resp, err = http.Get(url) if err != nil { os.Stderr.WriteString(err.Error()) os.Stderr.WriteString("\n") os.Exit(1) } io.Copy(os.Stdout, resp.Body) } resp.Body.Close() //os.Exit(0) }
<mackz> i use this way to get the external ip but it's little different with the ip showed in the ipfs webui
jonnycrunch has quit [Ping timeout: 240 seconds]
<mackz> but also another question, why ipfs can get several similar external ip ???
jonnycrunch has joined #ipfs
<jfmherokiller[m]> well it can get external ips because by default it runs on 0.0.0.0
vivus has quit [Quit: Leaving]
<mackz> hi jfmherokiller, so which way i can get the right external ip
<kode54> stdin on windows
<kode54> exists, but you'll probably have to turn off "text" mode
KDDLB has joined #ipfs
ygrek has joined #ipfs
<kode54> otherwise, I think you may find your newlines getting turned into CRLF sequences
<jfmherokiller[m]> mackz: just google "what is my ip?"
<kode54> wait, no
<kode54> reverse of that
<kode54> it'll detect CRLF and compact them to just LF
<mackz> jfmherokiller: my ip is dynamic ip
<jfmherokiller[m]> well as long as your connection is online your ip should be the same
<jfmherokiller[m]> im basing this info on the fact that if it changes ips the data wont know where to go
<mackz> jfmherokiller: i need use golang to get it, but even i have the external i still cann't binding the port with the route
<jfmherokiller[m]> oh if you need to use golang im not sure i can help there because im still reading my golang for dummies book
<mackz> jfmherokiller: but i still can find my files saved on ipfs by using gateway.ipfs.io,but sometimes it doesn't work normaly, i don't know why
<mackz> jfmherokiller: anyway, thanks very much
<jfmherokiller[m]> oh thats because it must talk to the swarm which will then eventually find your pc and request the data
<jfmherokiller[m]> as far as i can tell ipfs is not directly dependent on the ip address
<mackz> jfmherokiller: it isn't save file in pieces in different ipfs peer??? i always think it's that
<mackz> jfmherokiller: even i stop running ipfs daemon, i still can download my file
<jfmherokiller[m]> mackz: if you stop the daemon and you asked ipfs.io to load your file then yes for a short while you can still download your file
<mackz> jfmherokiller: it's that? let me take a try now
<jfmherokiller[m]> also as far as my own expirences have shown the file hashes are not dependent on your peer id they are wholely based upon the contents of the file
<jfmherokiller[m]> so if somone in a diffrent country added the same file to ipfs as you both hashes would be the same
<mackz> jfmherokiller: it's right
<mackz> jfmherokiller: i can still can download the file i uploaded several days ago
<jfmherokiller[m]> yep then it works however im suprised it lasts that long i thought the garbage collector ran every hour
<mackz> jfmherokiller: are you also connecting to about 300 peers every time when running ipfs ?
<jfmherokiller[m]> mackz: yes from 200-600
<jfmherokiller[m]> on my end
<mackz> jfmherokiller: it's never more than 350 on my end 0.0, i am so sad, orz
<jfmherokiller[m]> well i run ipfs on a thin shell account as well as on my main pc so my numbers are kind of doubled
anewuser has quit [Quit: anewuser]
charley has quit [Remote host closed the connection]
jaboja has quit [Remote host closed the connection]
upperdeck has quit [Ping timeout: 255 seconds]
charley has joined #ipfs
chmanie has joined #ipfs
risingsun2100[m] has joined #ipfs
upperdeck has joined #ipfs
fredthomsen has quit [Ping timeout: 255 seconds]
chmanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
charley has quit [Remote host closed the connection]
charley has joined #ipfs
charley has quit [Ping timeout: 246 seconds]
DerZauberberg[m] has joined #ipfs
charley has joined #ipfs
charley has quit [Remote host closed the connection]
charley has joined #ipfs
charley has quit [Remote host closed the connection]
charley has joined #ipfs
charley has quit [Remote host closed the connection]
}ls{ has quit [Quit: real life interrupt]
charley has joined #ipfs
charley has quit [Remote host closed the connection]
charley has joined #ipfs
ShalokShalom has joined #ipfs
echoSMILE has quit [Ping timeout: 255 seconds]
ulrichard has joined #ipfs
charley has quit [Remote host closed the connection]
<mackz> hey,guys, how can i delete the file i upload to the ipfs network ?
<lemmi> mackz: you can't delete a file. you only can stop having it in your own repo. if someone else already copied it, you have no influence
<mackz> lemmi: all right, i see it know, thanks, another question, if i am uploading a large file but the ipfs canceled suddenly, can i continued to upload next time? and how can i know the upload progress
<lemmi> there's uploading and there is hashing your content and putting it in your repo
<lemmi> in the first case: only missing blocks are transferred, in the second case: the whole file needs to be rehashed, but blocks already in the repo won't be added again
<lemmi> mackz: ^
espadrine has joined #ipfs
Foxcool has joined #ipfs
ygrek has quit [Ping timeout: 240 seconds]
chmanie has joined #ipfs
Dark_Shroud[m] has joined #ipfs
mackz has quit [Ping timeout: 260 seconds]
chmanie has quit [Ping timeout: 255 seconds]
lemmi has quit [Remote host closed the connection]
lemmi has joined #ipfs
ShalokShalom has quit [Remote host closed the connection]
charley has joined #ipfs
mackz has joined #ipfs
charley has quit [Ping timeout: 247 seconds]
<mackz> hello everyone, how can i remove the file from the local storage cache after uploading the file? i can't use the `ipfs block rm` command
<lemmi> mackz: ipfs pin rm --help; ipfs repo gc --help
elkalamar has quit [Ping timeout: 240 seconds]
<lemmi> mackz: https://github.com/ipfs/ipfs-pack this might interest you aswell
espadrine has quit [Ping timeout: 240 seconds]
chmanie has joined #ipfs
ShalokShalom has joined #ipfs
chmanie has quit [Ping timeout: 240 seconds]
<mackz> lemmi: i tried ipfs pin and ipfs block, it only can delete all files in one time upload? such as i upload a folder, but i only want to delete one file from the folder
<mackz> lemmi: can i do that?
<lemmi> mackz: you mean you want to have a new folder with a file missing?
<mackz> lemmi: yes, i want to delete some files of that folder in local ipfs blocks
m0ns00n has joined #ipfs
<lemmi> mackz: the easiest way it to use ipfs files for that i think
<mackz> lemmi: it maybe need a new dag of that folder
<lemmi> if the folder is small, just re-add it
<lemmi> mackz: exactly
<mackz> lemmi: but for example, i have delete the folder from my normal path, it only exist in the local ipfs blocks, i can't re-add it
<lemmi> then use ipfs files
<mackz> lemmi: let me take a look
<lemmi> you "copy" (read: make available) your folder in there, manipulate the folder, get the new hash with ipfs files stat --hash
<mackz> lemmi: failure。。ipfs files rm -r QmX4sSRVEAU3J76SXnfWoFUcS1Aehp8yJnG67Z2xt7sFJA
chyf319[m] has left #ipfs ["User left"]
<lemmi> this doesn't look right
<lemmi> you start with ipfs files cp /ipfs/HASH /my_folder
<mackz> lemmi: what is the right parameter?
<lemmi> then files files rm /my_folder/file/you/want/to/remove
<lemmi> ipfs files stat --hash /my_folder
mildred3 has joined #ipfs
m0ns00n has quit [Quit: quit]
<mackz> lemmi: only can use the root dir '/', the others all are 'file does not exist'
<lemmi> mackz: then you didn't copy it it
<lemmi> *it in
<lemmi> ipfs files ls /
<mackz> lemmi: i have run this, the output is empty
<lemmi> then you did not copy anything in there
ajbouh has quit [Quit: ajbouh]
ylp has joined #ipfs
<mackz> lemmi: i still can't delete a file from a folder...
Oatmeal has quit [Ping timeout: 248 seconds]
<lemmi> then you didn't follow excatly
<lemmi> or you are misunderstanding something
<lemmi> anyway, afk
benjaminmateev[m has joined #ipfs
rklaehn has joined #ipfs
<mackz> lemmi: emmmm, i can only delete a whole upload by using `ipfs pin rm -r`
charley has joined #ipfs
<mackz> lemmi: even i can't see the file info on the webui, the file still in my local storage.... it only delete a record
charley has quit [Ping timeout: 255 seconds]
m0ns00n has joined #ipfs
saki has joined #ipfs
jesusgollonet has joined #ipfs
<voker57> mackz: smth like ipfs refs -r <HASH> | xargs ipfs block rm
<voker57> but blocks might also be included in other files
<voker57> best way is to remove pin and then run ipfs repo gc
<voker57> this will delete all non-pinned fata
<voker57> data *
<mackz> ok, let me take a try
kenshyx has joined #ipfs
skeuomorf has joined #ipfs
pcctw has joined #ipfs
ianopolous has quit [Read error: Connection reset by peer]
chiyosaki has joined #ipfs
saki has quit [Ping timeout: 240 seconds]
chiyosaki is now known as saki
jesusgollonet has quit [Quit: jesusgollonet]
<lemmi> mackz: you still talking about "upload" makes me think you didn't quite get how content addressing and ipfs work
<lemmi> in principle
<lemmi> makes it hard to guess what you actually mean
jesusgollonet has joined #ipfs
<voker57> yeah you don't "upload" into ipfs, you make your data available to network
<voker57> then somebody maybe downloads it
skeuomorf has quit [Remote host closed the connection]
skeuomorf has joined #ipfs
rendar has joined #ipfs
charley has joined #ipfs
charley has quit [Ping timeout: 255 seconds]
drnet has joined #ipfs
rklaehn has quit [Ping timeout: 260 seconds]
jesusgollonet has quit [Quit: jesusgollonet]
jesusgollonet has joined #ipfs
serverlessnomad has quit [Ping timeout: 255 seconds]
cxl000 has joined #ipfs
serverlessnomad has joined #ipfs
bielewelt has joined #ipfs
erictapen has joined #ipfs
ShalokShalom has quit [Ping timeout: 255 seconds]
bielewelt has quit [Quit: Leaving.]
chmanie has joined #ipfs
chmanie has quit [Client Quit]
girlhood has joined #ipfs
dimitarvp has joined #ipfs
ilyaigpetrov has joined #ipfs
mildred has joined #ipfs
HostFat_ has quit [Ping timeout: 276 seconds]
GomJabbar has quit [Ping timeout: 248 seconds]
drnet has quit [Quit: Leaving]
GomJabbar has joined #ipfs
charley has joined #ipfs
charley has quit [Ping timeout: 276 seconds]
jkilpatr has quit [Ping timeout: 276 seconds]
antfoo has joined #ipfs
erictapen has quit [Ping timeout: 240 seconds]
jkilpatr has joined #ipfs
ShalokShalom has joined #ipfs
saki has quit [Quit: saki]
erictapen has joined #ipfs
soesoe has joined #ipfs
HostFat has joined #ipfs
bielewelt has joined #ipfs
<mackz> .
rklaehn has joined #ipfs
fredthomsen has joined #ipfs
jesusgollonet has quit [Quit: jesusgollonet]
mildred4 has joined #ipfs
DarkOoze[m] has joined #ipfs
mackz has quit [Quit: Page closed]
mildred3 has quit [Ping timeout: 240 seconds]
erictapen has quit [Ping timeout: 246 seconds]
mildred4 has quit [Ping timeout: 240 seconds]
bielewelt has quit [Quit: Leaving.]
rozie has joined #ipfs
jesusgollonet has joined #ipfs
mildred4 has joined #ipfs
charley has joined #ipfs
charley has quit [Ping timeout: 255 seconds]
mildred has quit [Ping timeout: 248 seconds]
Pelodytes has joined #ipfs
X-Scale has joined #ipfs
X-Scale has left #ipfs [#ipfs]
erictapen has joined #ipfs
erictapen has quit [Ping timeout: 240 seconds]
saki has joined #ipfs
brianthehoffman has joined #ipfs
Pelodytes has quit [Read error: Connection reset by peer]
<brianthehoffman> hey question guys. what’s the largest size folder you can have in IPFS? what exactly does sharding do for this problem?
erictapen has joined #ipfs
<DarkOoze[m]> Is there any last accessed date in the blockstore? I like to be able to move rarely used blocks to cold storage.
infinity0 has joined #ipfs
cwahlers has quit [Read error: Connection reset by peer]
jager has quit [Ping timeout: 260 seconds]
infinity0 has quit [Changing host]
infinity0 has joined #ipfs
cwahlers has joined #ipfs
<r0kk3rz> brianthehoffman: afaik theres no limit, and what do you mean by sharding?
}ls{ has joined #ipfs
clownpriest has joined #ipfs
<brianthehoffman> we had an issue reported to OpenBazaar saying that folders over 1MB would cause problems in IPFS.
<brianthehoffman> and that experimental sharding was necessary to enable it
<brianthehoffman> i’m trying to gather additional informaiton on this
<brianthehoffman> i was not aware of any such issue
elkalamar has joined #ipfs
jesusgollonet has quit [Quit: jesusgollonet]
<brianthehoffman> i’m assuming it’s the pointer file r0kk3rz
fredthomsen has quit [Remote host closed the connection]
bielewelt has joined #ipfs
esilva[m] has left #ipfs ["User left"]
bielewelt has quit [Client Quit]
jesusgollonet has joined #ipfs
soesoe has quit [Quit: Textual IRC Client: www.textualapp.com]
jesusgollonet has quit [Client Quit]
<r0kk3rz> ah i understand now, yeah its about the folder index
<r0kk3rz> and needing to be split up to support arbitrary sized things
<r0kk3rz> it seems like there is still discussion about the best way to handle it
rklaehn_ has joined #ipfs
<rklaehn> Is there a way to request a hierarchy of merkle tree nodes with one request?
chmanie has joined #ipfs
<rklaehn> E.g. if you want to download a website to a local node without lots of roundtrips over a high latency connection
<Kythyria[m]> > yeah you don't "upload" into ipfs, you make your data available to network
<Kythyria[m]> I'm starting to wonder if this is a common misconception, that ipfs somehow makes an amorphous cloud of storage appear from nowhere.
bielewelt has joined #ipfs
erictapen has quit [Remote host closed the connection]
erictapen has joined #ipfs
erictapen has quit [Remote host closed the connection]
erictapen has joined #ipfs
erictapen has quit [Remote host closed the connection]
erictapen has joined #ipfs
shizy has joined #ipfs
kenshyx has quit [Quit: Leaving]
mildred4 has quit [Ping timeout: 255 seconds]
charley has joined #ipfs
bielewelt has quit [Quit: Leaving.]
charley has quit [Ping timeout: 276 seconds]
brianthehoffman has quit [Quit: brianthehoffman]
djazz has joined #ipfs
jager has joined #ipfs
jaboja has joined #ipfs
mildred4 has joined #ipfs
m0ns00n has quit [Quit: quit]
rklaehn has quit [Ping timeout: 260 seconds]
rklaehn_ has quit [Ping timeout: 260 seconds]
ashark has joined #ipfs
ulrichard has quit [Remote host closed the connection]
charley has joined #ipfs
saki has quit [Quit: saki]
Oatmeal has joined #ipfs
ylp has quit [Quit: Leaving.]
jaboja has quit [Ping timeout: 248 seconds]
antfoo has quit [Read error: Connection reset by peer]
antfoo has joined #ipfs
jaboja has joined #ipfs
ipfstar has quit [Quit: Page closed]
onabreak has quit [Ping timeout: 260 seconds]
<lgierth> all hands time
<lgierth> notes:
<lgierth> https://cryptpad.fr/code/#/1/edit/sLnwH1TloiaJEQ+uY52oQQ/UnISr0HxUNLINoJAn1tAEUjL/
jaboja has quit [Ping timeout: 240 seconds]
dimitarvp` has joined #ipfs
Jesin has joined #ipfs
mildred has joined #ipfs
dimitarvp has quit [Ping timeout: 246 seconds]
whenisnever has joined #ipfs
Jesin has quit [Quit: Leaving]
onabreak has joined #ipfs
erictapen has quit [Ping timeout: 255 seconds]
jaboja has joined #ipfs
<cwahlers> Hi all, I put together a step-by-step tutorial, from zero, for hosting your website under your domain on IPFS on a DigitalOcean Ubuntu 16.04.3 x64 Droplet. Maybe it's useful for someone: https://gist.github.com/claus/1287f47b5fbaaea338ac8a04d02bf258 - It's put together from various sources to have it in one place.
<lgierth> oh awesme \o/
<cwahlers> And here's my super awesome website, running on IPFS, hahah: https://wa.hle.rs/
SOO7 has joined #ipfs
Jesin has joined #ipfs
<lgierth> i wanted to get la.rs but they didn't let me buy it :(
<lgierth> a different lars already got it
ygrek has joined #ipfs
<cyberwolf[m]> cwahlers: Great
m0ns00n has joined #ipfs
<cwahlers> lgierth a l@rs email address would have been quite neat ;)
<cwahlers> oh no that wouldn't work, lol
<cwahlers> i have w@hle.rs, which is quite a brainf*** to type
Xiti` has joined #ipfs
<cyberwolf[m]> cwahlers: exactly what is needed guide
charley has quit [Remote host closed the connection]
<cwahlers> btw the memory usage on that 1gb ram box hovers around 80% rn. only ipfs (0.11-pre) and nginx running. i hope it stays there and everything is gonna be alright :S
Xiti has quit [Ping timeout: 248 seconds]
charley has joined #ipfs
dimitarvp` is now known as dimitarvp
<axx[m]> yeah you don't "upload" into ipfs, you make your data available to network
<axx[m]> Has someone made an app to use IPFS to simply send files to other people on the internet? a WeTransfer type thing
dgrisham has joined #ipfs
charley has quit [Remote host closed the connection]
Calinou has quit [Ping timeout: 264 seconds]
charley has joined #ipfs
O47m341 has joined #ipfs
Oatmeal has quit [Ping timeout: 240 seconds]
HostFat_ has joined #ipfs
mildred1 has joined #ipfs
mildred2 has joined #ipfs
Calinou has joined #ipfs
ilyaigpetrov has quit [Quit: Connection closed for inactivity]
whenisnever has quit [Ping timeout: 240 seconds]
HostFat has quit [Ping timeout: 248 seconds]
mildred4 has quit [Ping timeout: 240 seconds]
mildred has quit [Ping timeout: 240 seconds]
charley has quit [Ping timeout: 276 seconds]
erictapen has joined #ipfs
HostFat_ has quit [Ping timeout: 255 seconds]
HostFat has joined #ipfs
Milijus has quit [Ping timeout: 246 seconds]
obensource has quit [Ping timeout: 240 seconds]
GomJabbar has quit [Changing host]
GomJabbar has joined #ipfs
cblgh has quit [Quit: Lost terminal]
cblgh has joined #ipfs
cblgh has joined #ipfs
cblgh has quit [Changing host]
obensource has joined #ipfs
isawan has joined #ipfs
erictapen has quit [Ping timeout: 255 seconds]
charley has joined #ipfs
Jesin has quit [Quit: Leaving]
Jesin has joined #ipfs
Guest17088 has quit [Ping timeout: 240 seconds]
mildred2 has quit [Ping timeout: 248 seconds]
Lymkwi has joined #ipfs
Lymkwi is now known as Guest63590
skeuomorf has quit [Ping timeout: 255 seconds]
erictapen has joined #ipfs
mildred2 has joined #ipfs
ashark has quit [Ping timeout: 255 seconds]
TheKysek[m] has joined #ipfs
m0ns00n has quit [Quit: quit]
erictapen has quit [Ping timeout: 240 seconds]
maxlath has joined #ipfs
richardlitt has joined #ipfs
richardlitt is now known as Guest62022
<Guest62022> lgierth: You around?
Guest62022 is now known as richlitt
HostFat_ has joined #ipfs
HostFat has quit [Ping timeout: 240 seconds]
ianseyer has joined #ipfs
galois_d_ has joined #ipfs
galois_dmz has quit [Ping timeout: 246 seconds]
rendar has quit [Quit: std::lower_bound + std::less_equal *works* with a vector without duplicates!]
<richlitt> whyrusleeping: Any chance you've seen harlantwood on here recently?
maxlath has quit [Quit: maxlath]
espadrine has joined #ipfs
ianseyer has quit [Ping timeout: 255 seconds]
upperdeck has quit [Ping timeout: 248 seconds]
richlitt has quit [Ping timeout: 260 seconds]
upperdeck has joined #ipfs
galois_d_ has quit [Remote host closed the connection]
galois_dmz has joined #ipfs
ccii1 has joined #ipfs
ccii has quit [Ping timeout: 276 seconds]
whenisnever has joined #ipfs
ashark has joined #ipfs
Encrypt has joined #ipfs
jryans has quit [Ping timeout: 240 seconds]
yoshuawuyts has quit [Ping timeout: 240 seconds]
AphelionZ__ has quit [Ping timeout: 255 seconds]
ianseyer has joined #ipfs
ajbouh has joined #ipfs
bret has quit [Ping timeout: 255 seconds]
wa7son has quit [Ping timeout: 255 seconds]
jryans has joined #ipfs
yoshuawuyts has joined #ipfs
AphelionZ__ has joined #ipfs
wa7son has joined #ipfs
nicolagreco has quit [Ping timeout: 255 seconds]
bret has joined #ipfs
nicolagreco has joined #ipfs
Jesin has quit [Quit: Leaving]
chriscool has joined #ipfs
charley has quit [Remote host closed the connection]
charley has joined #ipfs
skeuomorf has joined #ipfs
toXel has quit [Quit: Ping timeout (120 seconds)]
charley has quit [Ping timeout: 246 seconds]
toXel has joined #ipfs
chriscool has quit [Ping timeout: 240 seconds]
corby has quit [Ping timeout: 255 seconds]
Mateon3 has joined #ipfs
Mateon1 has quit [Ping timeout: 240 seconds]
Mateon3 is now known as Mateon1
jkilpatr has quit [Ping timeout: 246 seconds]
toXel has quit [Quit: Ping timeout (120 seconds)]
charley has joined #ipfs
toXel has joined #ipfs
charley has quit [Ping timeout: 246 seconds]
Milijus has joined #ipfs
m0ns00n has joined #ipfs
corby has joined #ipfs
charley has joined #ipfs
hamersaw has joined #ipfs
m0ns00n has quit [Quit: quit]
m0ns00n has joined #ipfs
clownpriest has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rodolf0 has joined #ipfs
erictapen has joined #ipfs
echoSMILE has joined #ipfs
infinity0_ has joined #ipfs
infinity0 has quit [Killed (barjavel.freenode.net (Nickname regained by services))]
infinity0 has joined #ipfs
infinity0_ is now known as infinity0
infinity0 has quit [Changing host]
chmanie has quit [Ping timeout: 240 seconds]
HostFat_ has quit [Ping timeout: 240 seconds]
chriscool has joined #ipfs
erictapen has quit [Ping timeout: 248 seconds]
kaotisk has joined #ipfs
HostFat has joined #ipfs
mildred2 has quit [Ping timeout: 246 seconds]
Encrypt has quit [Quit: Quit]
Foxcool has quit [Ping timeout: 255 seconds]
matiasnomad[m] has joined #ipfs
isawan has quit [Quit: WeeChat 1.9]
girlhood has quit [Ping timeout: 240 seconds]
mildred2 has joined #ipfs
m0ns00n has quit [Quit: quit]
Bhootrk_ has joined #ipfs
Bhootrk_ has quit [Max SendQ exceeded]
jkilpatr has joined #ipfs
espadrine has quit [Ping timeout: 240 seconds]
whenisnever has quit [Ping timeout: 248 seconds]
covassal has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
rodolf0 has quit [Ping timeout: 255 seconds]
ashark has quit [Ping timeout: 240 seconds]
clownpriest has joined #ipfs
upperdeck has joined #ipfs
echoSMILE has quit [Ping timeout: 248 seconds]
upperdeck has quit [Ping timeout: 240 seconds]
<ajbouh> is it normal for `ipfs id` to show a different ID than /webui?
upperdeck has joined #ipfs
<ntninja> I don‘t think so
<ajbouh> @ntninja i did an `ipfs add -r` with a large directory and i’m having trouble finding it
<ajbouh> so i booted up the webui
<ajbouh> and it only loads with a different key
<ntninja> So the Peer ID under Node Information is different than the ID field of ‘ipfs id‘
<ajbouh> actually the Peer ID under Node Information is empty
dgrisham has quit [Quit: WeeChat 1.9]
<ajbouh> when I go to /webui it redirects me to a different address than the output of ‘ipfs id'
<ajbouh> this is not the same behavior as ipfs on my laptop (darwin ipfs 0.4.6)
<ajbouh> the weird behavior is on ubuntu 16.04 ipfs 0.4.10
<ntninja> That‘s weird
<ajbouh> any suggestions of what to do?
<lgierth> ajbouh: does `ipfs id` actually refer to the node that you are running locally?
<lgierth> also, when accessing the webui, check the browser console to see what it's requesting (should be :5001/ipfs/ stuff)
chriscool has quit [Ping timeout: 240 seconds]
<ajbouh> yes, it’s 5001/ipfs/Qm…ZRQ
<ajbouh> `ipfs id` prints Qm…1Tw
<lgierth> ah, yeah
<lgierth> the stuff in `ipfs id` is your PeerID
<lgierth> the stuff the webui redirects too is the CID of the the current version of the webui
<ajbouh> i see
<lgierth> we'll eventually have the PeerID be prefixed with /p2p/ instead of /ipfs/ to avoid this confusion
<ajbouh> how can i find the files i added?
<lgierth> ipfs pin ls --type=recursive
<lgierth> i think it might also be listed somewhere in the webui
<lgierth> (the webui badly needs some love...)
<ajbouh> i think there’s something wrong with the webui
<ajbouh> on my machine
<ajbouh> however
<ajbouh> i can find the objects using the webui on another computer
<ajbouh> that `ipfs pin ls --type=recursive` command worked great!
<ajbouh> i can at least see the files
ashark has joined #ipfs
<ajbouh> thanks @lgierth and @ntninja for the support
<ajbouh> and a subsequent `ipfs cat /ipfs/…` dumps the contents i expect
<lgierth> awesome
<lgierth> if you feel like there's a bug you can open an issue in github.com/ipfs/webui
<lgierth> as i said, the webui has been a bit neglected recently
erictapen has joined #ipfs
<ajbouh> is there another ui that’s less neglected?
shizy has quit [Ping timeout: 240 seconds]
<lgierth> :>
ashark has quit [Ping timeout: 240 seconds]
<lgierth> station maybe
<ajbouh> i’m trying to embed go-ipfs in another application
jaboja has quit [Remote host closed the connection]
Caterpillar has quit [Ping timeout: 240 seconds]
<ajbouh> if possible i’d like to provide a pointer to a solid browsing ui
<ajbouh> hmm station doesn’t even launch on my machine :)
<kaotisk> any idea how can i configure a closed group in ipfs either by networking or something else? I have no clue
<lgierth> kaotisk: private networking
<lgierth> kaotisk: since 0.4.7, instructions: https://github.com/ipfs/go-ipfs/issues/3397#issuecomment-284341649
<kaotisk> lgierth, thanks!
<lgierth> note that it's still experimental and might change -- although this is one of the more mature and stable experimental features
Caterpillar has joined #ipfs
cws_ has joined #ipfs
upperdeck has quit [Ping timeout: 240 seconds]
cws has quit [Ping timeout: 240 seconds]
upperdeck has joined #ipfs
anewuser has joined #ipfs
Guest67536 has joined #ipfs
Guest67536 has left #ipfs [#ipfs]
ianseyer has quit [Ping timeout: 255 seconds]
mildred2 has quit [Ping timeout: 246 seconds]
ashark has joined #ipfs
skeuomorf has quit [Ping timeout: 240 seconds]
ashark has quit [Ping timeout: 248 seconds]
jaboja has joined #ipfs