00:00
infinity0 has quit [Remote host closed the connection]
00:02
infinity0 has joined #ipfs
00:02
MrSparkle has joined #ipfs
00:03
infinity0 has quit [Remote host closed the connection]
00:03
chris613 has joined #ipfs
00:05
infinity0 has joined #ipfs
00:05
infinity0 has quit [Remote host closed the connection]
00:08
infinity0 has joined #ipfs
00:08
infinity0 has quit [Remote host closed the connection]
00:09
MrSparkle has quit [Ping timeout: 240 seconds]
00:10
movaex has joined #ipfs
00:10
infinity0 has joined #ipfs
00:11
infinity0 has quit [Changing host]
00:11
infinity0 has joined #ipfs
00:11
jayjay has quit [Quit: Page closed]
00:11
infinity0 has quit [Remote host closed the connection]
00:16
MrSparkle has joined #ipfs
00:25
jonnycrunch has quit [Ping timeout: 240 seconds]
00:27
jonnycrunch has joined #ipfs
00:38
realisation has joined #ipfs
00:39
movaex has quit [Ping timeout: 240 seconds]
00:41
xnbya has joined #ipfs
00:51
infinitesum has joined #ipfs
00:59
movaex has joined #ipfs
01:15
nullobject has joined #ipfs
01:16
Mateon3 has joined #ipfs
01:16
Mateon1 has quit [Ping timeout: 240 seconds]
01:16
Mateon3 is now known as Mateon1
01:18
<
daviddias >
lidel: now we just need to get the WebExtension to have a switch to point at the ServiceWorker instead :D
01:22
jaboja has quit [Read error: Connection reset by peer]
01:23
jaboja has joined #ipfs
01:35
shizy has joined #ipfs
01:38
infinitesum has quit [Quit: infinitesum]
01:39
infinitesum has joined #ipfs
01:39
dimitarvp has quit [Quit: Bye]
01:47
realisation has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
01:48
shizy has quit [Ping timeout: 240 seconds]
01:49
movaex has quit [Ping timeout: 260 seconds]
01:52
sirdancealot has quit [Ping timeout: 272 seconds]
01:57
movaex has joined #ipfs
02:14
infinitesum has quit [Quit: infinitesum]
02:20
vapid has quit [Quit: No Ping reply in 210 seconds.]
02:22
realisation has joined #ipfs
02:22
vapid has joined #ipfs
02:26
ygrek has quit [Ping timeout: 240 seconds]
02:33
infinitesum has joined #ipfs
02:43
gmoro has joined #ipfs
02:58
sonata has quit [Quit: Leaving]
03:04
infinitesum has quit [Quit: infinitesum]
03:11
chrislee has joined #ipfs
03:12
<
chrislee >
Hi, anyone know why I'm getting the following while trying to add a file?
03:12
<
chrislee >
23:10:25.789 ERROR commands/h: open /Users/clee681/.ipfs/blocks/LQ/put-543126834: too many open files client.go:247
03:12
<
chrislee >
Error: open /Users/clee681/.ipfs/blocks/LQ/put-543126834: too many open files
03:13
<
chrislee >
I'm on mac os x and I bumped the ulimit max file descriptor setting to 1024
03:15
<
achin >
what version of ipfs?
03:16
chungy has joined #ipfs
03:17
<
achin >
on my linux machine, i think ipfs automatically tries to reset the file ulimit to 2048
03:28
chrislee has joined #ipfs
03:37
<
chrislee >
Can ipfs handle 4.6GB upload?
03:38
<
chrislee >
launchctl limit maxfiles is now set to 524288
03:38
<
chrislee >
launchctl limit maxproc is now set to 2048
03:38
<
chrislee >
And I'm still getting open /Users/clee681/.ipfs/blocks/J6/put-829235501: too many open files handler.go:288
03:39
<
chrislee >
23:39:11.229 ERROR commands/h: err: open /Users/clee681/.ipfs/blocks/YY/put-348430390: too many open files handler.go:288
03:39
<
chrislee >
23:39:15.399 ERROR mdns: mdns lookup error: failed to bind to any multicast udp port mdns.go:135
03:40
<
whyrusleeping >
chrislee: what add command are you running?
03:40
<
whyrusleeping >
just `ipfs add ONEBIGFILE` ?
03:41
<
chrislee >
Yep, that's it
03:41
<
chrislee >
I can try setting the IPFS_FD_MAX env variable
03:42
<
whyrusleeping >
chrislee: do you have a daemon running?
03:42
<
chrislee >
Yep, those error messages were from the daemon
03:42
<
whyrusleeping >
right, okay
03:42
<
whyrusleeping >
so one thing to try, is running the add command with the --local flag
03:43
<
whyrusleeping >
wait longer after starting your daemon before running the add command
03:45
<
whyrusleeping >
the issue is very likely that the network is growing larger than we expected, and our 'connect to other peers' routines on OSX need fixing
03:45
<
whyrusleeping >
it opens too many file descriptors while dialing to others
03:45
<
chrislee >
Ok, I just restarted my daemon so I'll give it a few mins
03:46
<
chrislee >
Btw, my use case is I need to share a 5GB file with someone so I figured I'd give IPFS a shot
03:46
<
whyrusleeping >
thats a perfectly fine usecase
03:47
<
whyrusleeping >
i'm going to put more pressure on us getting that fixed, there have been more OSX users reporting this problem lately
03:47
chris613 has quit [Quit: Leaving.]
03:49
<
chrislee >
At least it's a sign that the network is growing faster than expected
03:50
<
whyrusleeping >
definitely, i was thinking i would have more time to get this fixed before it became a real problem :/
03:50
<
chrislee >
I made it to 1GB before reaching the error again
03:51
<
whyrusleeping >
keep the daemon online, how many peers show up in `ipfs swarm peers` ?
03:52
<
chrislee >
ipfs swarm peers | wc -l returns 254
03:52
<
chrislee >
Btw, it worked with the --local flag
03:52
<
whyrusleeping >
ah, great
03:53
<
whyrusleeping >
now the only disadvantage of using the local flag is that it doesnt announce it to the dht
03:53
<
whyrusleeping >
what you can do, is just announce the root node with `ipfs dht provide <hash>`
03:53
<
whyrusleeping >
that way the person youre sharing the file with can still find it
03:59
MDead has joined #ipfs
04:01
<
chrislee >
Sweet! It seems to be working! Thanks for the help @whyrusleeping
04:01
crankylinuxuser has quit [Ping timeout: 246 seconds]
04:02
MDude has quit [Ping timeout: 272 seconds]
04:02
MDead is now known as MDude
04:05
chrislee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
04:13
infinity0 has joined #ipfs
04:14
crankylinuxuser has joined #ipfs
04:23
realisation has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
04:35
TheKysek has joined #ipfs
04:40
tilgovi has joined #ipfs
04:50
nullobject has quit [Quit: cya]
04:54
jaboja has quit [Remote host closed the connection]
05:09
realisation has joined #ipfs
05:15
realisation has quit [Read error: Connection reset by peer]
05:15
chrislee has joined #ipfs
05:19
chrislee has quit [Client Quit]
05:22
robattila256 has quit [Ping timeout: 258 seconds]
05:27
sirdancealot has joined #ipfs
05:48
kantokomi has joined #ipfs
05:51
kantokom1 has quit [Ping timeout: 260 seconds]
05:59
Foxcool has joined #ipfs
06:33
movaex has quit [Ping timeout: 240 seconds]
06:37
Aaron1011 has quit [Ping timeout: 260 seconds]
06:37
Aaron1011 has joined #ipfs
06:37
Aaron1011 has joined #ipfs
06:37
Aaron1011 has quit [Changing host]
06:43
SpacePirate[m] has joined #ipfs
06:45
movaex has joined #ipfs
06:45
Caterpillar has joined #ipfs
06:54
maxlath has joined #ipfs
06:55
ygrek has joined #ipfs
07:09
mahloun has joined #ipfs
07:10
qqueue has quit [Ping timeout: 246 seconds]
07:11
qqueue has joined #ipfs
07:12
Akaibu has quit [Quit: Connection closed for inactivity]
07:18
espadrine has joined #ipfs
07:22
talonz has quit [Remote host closed the connection]
07:23
talonz has joined #ipfs
07:30
rendar has joined #ipfs
07:54
jungly has joined #ipfs
08:01
McJuicy has joined #ipfs
08:01
Guest69 has joined #ipfs
08:01
maxlath has quit [Ping timeout: 260 seconds]
08:07
Guest69_ has joined #ipfs
08:08
Guest69 has quit [Ping timeout: 240 seconds]
08:22
ygrek has quit [Ping timeout: 258 seconds]
08:33
bwn has quit [Ping timeout: 240 seconds]
08:37
Guest93352 has joined #ipfs
08:38
cxl000 has joined #ipfs
08:42
Guest93352 has quit [Ping timeout: 240 seconds]
08:51
John has joined #ipfs
08:51
John is now known as Guest30741
08:52
drathir has quit [Ping timeout: 272 seconds]
08:54
bwn has joined #ipfs
08:57
drathir has joined #ipfs
09:18
<
NeoTeo >
whyrusleeping: chrislee I just had the same use case and mine fails even running with —local
09:19
<
NeoTeo >
More info. After each try it gets further until eventually it succeeds adding all.
09:25
ianopolous_ has quit [Remote host closed the connection]
09:26
Valentin[m] has joined #ipfs
09:29
tilgovi has quit [Ping timeout: 246 seconds]
09:31
maxlath has joined #ipfs
09:32
ShalokShalom has joined #ipfs
09:35
jchevalay has joined #ipfs
09:35
<
jchevalay >
hi there
09:35
<
jchevalay >
i try to use with js-ipfs in electron app
09:35
<
jchevalay >
i see your comment on my issue about electron-rebuild
09:35
<
jchevalay >
any idea ?
09:39
Encrypt has joined #ipfs
09:40
maxlath has quit [Ping timeout: 268 seconds]
09:49
fgarefgad[m] has left #ipfs ["User left"]
09:50
gmoro has quit [Ping timeout: 240 seconds]
09:50
gmoro_ has joined #ipfs
09:58
nicknikolov has joined #ipfs
10:00
Encrypt has quit [Quit: Quit]
10:00
kn0rki has joined #ipfs
10:15
g4z3 has joined #ipfs
10:19
<
charlienyc[m] >
NeoTeo: hack-y work around: you don't have to restart the daemon, just the ipfs pin command. A 4 line bash script should take of it
10:20
<
NeoTeo >
charlienyc[m]: I didn’t restart the daemon, just re-ran the add command.
10:21
alextes has quit [Ping timeout: 272 seconds]
10:22
<
charlienyc[m] >
When that command fails, you still get a daemon "error" but it continues to run
10:23
<
NeoTeo >
charlienyc[m]: Yeah, if I restarted every time there was en error… :)
10:30
tuzter[m] has left #ipfs ["User left"]
10:48
neurrowcat_ has joined #ipfs
10:48
neurrowcat has quit [Read error: Connection reset by peer]
10:51
maxlath has joined #ipfs
10:57
jkilpatr has quit [Quit: Leaving]
11:08
<
jchevalay >
it's works for you ?
11:09
<
jchevalay >
wich version of electron do you use ? do you need use electron-rebuild or not ?
11:10
<
jchevalay >
thx a lot
11:10
<
jchevalay >
intresting project =)
11:11
<
Bat`O >
electron 1.6.6
11:11
<
Bat`O >
and I don't think so
11:12
Embiodea has joined #ipfs
11:14
jkilpatr has joined #ipfs
11:16
maxlath has quit [Ping timeout: 260 seconds]
11:17
<
M-martinklepsch >
Cool to see all those new shiny websites :)
11:17
<
jchevalay >
ok i can insttal ipfs-connector and start an instance so i think is ok thx a lot Bat`O
11:19
<
Bat`O >
just be careful about two thing
11:19
<
Bat`O >
1) you need to have ipfs-connector as an external in webpack (that's why it's in a second package.json in my project)
11:20
maxlath has joined #ipfs
11:20
<
Bat`O >
otherwise webpack or babel choke on it, i don't remember exactly why
11:20
<
Bat`O >
2) ipfs-connector has to run in the main electron process
11:21
<
Bat`O >
so it can be tricky if you acces it from a renderer
11:21
<
jchevalay >
for the 2) yep i need to use IPC com to request je main process
11:22
<
Bat`O >
if you have a solution for me i'm all ears ;)
11:24
<
jchevalay >
no problems and thx a lot again =)
11:53
chwy has quit [Read error: Connection reset by peer]
12:00
chwy has joined #ipfs
12:00
jkilpatr has quit [Quit: Leaving]
12:01
jkilpatr has joined #ipfs
12:13
g4z3 has quit [Read error: Connection reset by peer]
12:16
jkilpatr has quit [Ping timeout: 246 seconds]
12:19
Guest69_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:23
bloctuary has joined #ipfs
12:34
bloctuary has quit [Ping timeout: 260 seconds]
12:35
Foxcool has quit [Read error: Connection reset by peer]
12:36
Foxcool has joined #ipfs
12:43
jkilpatr has joined #ipfs
12:57
chungy has quit [Ping timeout: 260 seconds]
12:57
movaex has quit [Ping timeout: 246 seconds]
13:00
robattila256 has joined #ipfs
13:04
clavi has joined #ipfs
13:04
movaex has joined #ipfs
13:07
dimitarvp has joined #ipfs
13:14
infinitesum has joined #ipfs
13:14
infinitesum has quit [Client Quit]
13:22
TheKysek has quit [Quit: Leaving]
13:28
infinitesum has joined #ipfs
13:32
maxlath has quit [Ping timeout: 268 seconds]
14:05
ashark has joined #ipfs
14:07
jamiew has joined #ipfs
14:08
mildred2 has quit [Ping timeout: 260 seconds]
14:11
Encrypt has joined #ipfs
14:18
shizy has joined #ipfs
14:23
maxlath has joined #ipfs
14:24
jamesstanley has quit [Ping timeout: 246 seconds]
14:24
jamesstupidly has joined #ipfs
14:31
skeuomorf has joined #ipfs
14:32
Muis has joined #ipfs
14:44
maxlath has quit [Ping timeout: 268 seconds]
14:45
movaex has quit [Ping timeout: 240 seconds]
14:53
movaex has joined #ipfs
14:53
movaex has joined #ipfs
14:53
movaex has quit [Changing host]
14:54
maxlath has joined #ipfs
14:58
<
pinbot >
now pinning on 8 nodes
14:58
<
daviddias >
!pin QmRpgM4h7aSDTUB68N4DtqGXQ1CpEmoUqoRYNh5qDLV5j8 ipld.io-update
15:05
jamiew has quit [Ping timeout: 272 seconds]
15:09
aedigix has quit [Remote host closed the connection]
15:10
aedigix has joined #ipfs
15:14
X-Scale has joined #ipfs
15:17
pat36 has joined #ipfs
15:18
subtraktion has joined #ipfs
15:26
cwahlers has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:27
droman has joined #ipfs
15:31
engdesart has joined #ipfs
15:43
elkalamar_ has joined #ipfs
15:45
fiatjaf has quit [Ping timeout: 240 seconds]
15:45
elkalamar has quit [Ping timeout: 240 seconds]
15:45
reit has quit [Ping timeout: 240 seconds]
15:48
reit has joined #ipfs
15:50
fiatjaf has joined #ipfs
15:55
neurrowcat_ has quit [Quit: Deebidappidoodah!]
16:00
ianopolous_ has joined #ipfs
16:01
maxlath has quit [Ping timeout: 245 seconds]
16:16
subtraktion has quit [Remote host closed the connection]
16:18
jamiew has joined #ipfs
16:20
botti[m] has joined #ipfs
16:22
infinitesum has quit [Quit: infinitesum]
16:23
botti[m] has left #ipfs [#ipfs]
16:24
droman1 has joined #ipfs
16:24
droman has quit [Ping timeout: 260 seconds]
16:24
webdev007 has joined #ipfs
16:27
btmsn has joined #ipfs
16:30
droman1 has quit []
16:35
infinitesum has joined #ipfs
16:47
jaboja has joined #ipfs
16:49
wak-work has quit [Ping timeout: 240 seconds]
16:50
Caterpillar has quit [Quit: You were not made to live as brutes, but to follow virtue and knowledge.]
16:53
galois_d_ has joined #ipfs
16:56
pat36 has joined #ipfs
16:56
galois_dmz has quit [Ping timeout: 272 seconds]
16:58
infinitesum has quit [Quit: infinitesum]
16:58
bsm1175321 has quit [Ping timeout: 255 seconds]
16:58
infinitesum has joined #ipfs
16:58
jamiew has quit [Ping timeout: 255 seconds]
17:03
jamiew has joined #ipfs
17:03
wak-work has joined #ipfs
17:03
a_ has joined #ipfs
17:04
a_ has quit [Client Quit]
17:06
jungly has quit [Remote host closed the connection]
17:06
espadrine has quit [Ping timeout: 268 seconds]
17:12
Guest30741 has quit [Ping timeout: 260 seconds]
17:14
Guest30741 has joined #ipfs
17:15
ygrek has joined #ipfs
17:17
MaybeDragon has joined #ipfs
17:18
cwahlers has joined #ipfs
17:20
<
lgierth >
!pin /ipfs/QmSTnEE9Jd7XhmyGZWgES6JQVzY8n1b8L7MXnxJMCNf5Y4 ipfs.io
17:20
<
pinbot >
now pinning on 8 nodes
17:21
<
lgierth >
!pin /ipfs/QmR3fGi7CtL9YbrVSjzmktPwfGPbAa8ULc6YF3p8kwkKTq blog.ipfs.io
17:21
<
pinbot >
now pinning on 8 nodes
17:31
espadrine has joined #ipfs
17:37
ShalokShalom_ has joined #ipfs
17:40
ShalokShalom has quit [Ping timeout: 240 seconds]
17:47
jaboja has quit [Ping timeout: 240 seconds]
17:56
skeuomorf has quit [Ping timeout: 268 seconds]
17:59
mahloun has quit [Ping timeout: 240 seconds]
18:04
clemo has quit [Quit: clemo]
18:05
skeuomorf has joined #ipfs
18:10
galois_d_ has quit [Remote host closed the connection]
18:10
galois_dmz has joined #ipfs
18:12
Encrypt has quit [Quit: Quit]
18:23
owlet has joined #ipfs
18:25
mildred2 has joined #ipfs
18:33
skeuomorf has quit [Ping timeout: 240 seconds]
18:40
_whitelogger has joined #ipfs
18:58
neurrowcat has joined #ipfs
19:00
aedigix has quit [Remote host closed the connection]
19:00
aedigix has joined #ipfs
19:05
morantron has joined #ipfs
19:05
Encrypt has joined #ipfs
19:14
Foxcool has quit [Ping timeout: 255 seconds]
19:14
droman has joined #ipfs
19:14
mahloun has joined #ipfs
19:19
Embiodea has quit [Ping timeout: 255 seconds]
19:27
e0f has joined #ipfs
19:28
Akaibu has joined #ipfs
19:30
skeuomorf has joined #ipfs
19:33
rendar has quit [Ping timeout: 240 seconds]
19:35
mahloun has quit [Ping timeout: 246 seconds]
19:43
Foxcool has joined #ipfs
19:48
esph has quit [Read error: Connection reset by peer]
19:49
esph has joined #ipfs
19:55
john1 has joined #ipfs
19:56
Guest30741 has quit [Ping timeout: 260 seconds]
20:02
jamiew_ has joined #ipfs
20:02
rendar has joined #ipfs
20:03
jamiew has quit [Ping timeout: 260 seconds]
20:10
ianopolous_ has quit [Ping timeout: 268 seconds]
20:18
up_dn has joined #ipfs
20:22
mahloun has joined #ipfs
20:27
mahloun has quit [Ping timeout: 240 seconds]
20:29
jkilpatr has quit [Ping timeout: 255 seconds]
20:29
Alkly has joined #ipfs
20:36
movaex has quit [Remote host closed the connection]
20:39
infinitesum has quit [Quit: infinitesum]
20:40
Jesin has quit [Quit: Leaving]
20:40
chungy has joined #ipfs
20:42
rendar has quit [Quit: std::lower_bound + std::less_equal
*works* with a vector without duplicates!]
20:43
Alkly has quit [Ping timeout: 260 seconds]
20:46
pyython has joined #ipfs
20:48
pyython has quit [Client Quit]
20:48
Foxcool has quit [Ping timeout: 246 seconds]
20:49
jkilpatr has joined #ipfs
20:49
morantron has quit [Remote host closed the connection]
20:50
up_dn has quit [Quit: up_dn]
20:53
project9501[m] has joined #ipfs
21:07
ashark has quit [Ping timeout: 240 seconds]
21:07
Jesin has joined #ipfs
21:10
jamiew_ has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…]
21:10
Encrypt has quit [Quit: Quit]
21:12
vivus has joined #ipfs
21:14
miflow[m] has joined #ipfs
21:26
SalanderLives has joined #ipfs
21:34
Guest69 has joined #ipfs
21:41
ashark has joined #ipfs
21:42
archpc has quit [Read error: Connection reset by peer]
21:44
appa has quit [Ping timeout: 246 seconds]
21:44
Reventlov has quit [Quit: WeeChat 1.7.1]
21:45
archpc has joined #ipfs
21:46
appa has joined #ipfs
21:50
ipfsq has joined #ipfs
21:50
Reventlov has joined #ipfs
21:50
<
ipfsq >
Hi, not sure how to set src for media using js-ipfs
21:50
<
ipfsq >
With the daemon, I would just use the local gateway
21:51
espadrine has quit [Ping timeout: 246 seconds]
21:51
<
ipfsq >
Do I have to do files.get and make a blob for all media?
21:53
<
whyrusleeping >
daviddias: ^ ?
21:54
ashark has quit [Ping timeout: 240 seconds]
22:04
engdesart has quit [Quit: yes]
22:04
bug has joined #ipfs
22:05
<
bug >
new to IPFS, i was wondering if it is operational right now?
22:05
<
bug >
can i store an image on it, for example?
22:05
<
bug >
and how do costs look?
22:06
<
tidux >
it's free :^)
22:08
<
bug >
i mean cost of storage
22:08
<
bug >
maybe i'm fundamentally misinformed
22:08
<
bug >
but e.g. storing an image on the bitcoin blockchain will be north of few hundred $s
22:08
<
bug >
i actually know nothing about IPFS other than what i've read on wikipedia
22:12
<
bug >
very interesting
22:12
<
bug >
so what if i want to store an image and the node that stores my image goes down
22:12
<
bug >
then it is lost, correct?
22:12
<
MaybeDragon >
unless some other node cached it
22:13
IR4856 has joined #ipfs
22:16
ipfsq has quit [Ping timeout: 246 seconds]
22:18
bug has quit [Quit: Page closed]
22:19
<
daviddias >
!pin QmeGdthhhYzg2teBsj3PndpkRFTRx6KHrkVYta5jhKv8A8 filecoin.io
22:19
<
pinbot >
now pinning on 8 nodes
22:19
IR4856 has left #ipfs [#ipfs]
22:24
SalanderLives has quit [Quit: Leaving]
22:25
btmsn has quit [Quit: btmsn]
22:36
jamiew has joined #ipfs
22:40
jamiew has quit [Ping timeout: 240 seconds]
22:48
jamiew has joined #ipfs
22:48
Guest69 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
22:51
vivus has quit [Quit: Leaving]
22:53
McJuicy has quit [Ping timeout: 255 seconds]
22:59
MaybeDragon has quit [Quit: Leaving]
23:00
shizy has quit [Ping timeout: 268 seconds]
23:04
mildred2 has quit [Read error: Connection reset by peer]
23:05
mildred2 has joined #ipfs
23:07
jaboja has joined #ipfs
23:11
mildred2 has quit [Ping timeout: 240 seconds]
23:12
Jesin has quit [Quit: Leaving]
23:16
kn0rki has quit [Quit: Verlassend]
23:16
Mateon3 has joined #ipfs
23:17
Mateon1 has quit [Ping timeout: 260 seconds]
23:17
Mateon3 is now known as Mateon1
23:18
urceole has joined #ipfs
23:21
movaex has joined #ipfs
23:22
infinitesum has joined #ipfs
23:23
fleeky has quit [Quit: Ex-Chat]
23:24
infinitesum has quit [Client Quit]
23:25
ipfsq has joined #ipfs
23:26
<
ipfsq >
Hey I was asking about js-ipfs and src for media
23:26
<
ipfsq >
Had to step out
23:26
<
ipfsq >
Anyone have any suggestions?
23:27
chris613 has joined #ipfs
23:27
mildred2 has joined #ipfs
23:29
realisation has joined #ipfs
23:32
chris613 has left #ipfs [#ipfs]
23:32
infinitesum has joined #ipfs
23:36
infinitesum has quit [Client Quit]
23:36
<
ipfsq >
Awesome, thanks!
23:37
cxl000 has quit [Quit: Leaving]
23:39
<
ipfsq >
Also, I'm getting ~10 peers in firefox and ~1 in chrome
23:45
eater has quit [Ping timeout: 260 seconds]
23:50
eater has joined #ipfs
23:55
infinitesum has joined #ipfs
23:59
infinity0_ has joined #ipfs
23:59
infinity0 is now known as Guest45542
23:59
infinity0_ has joined #ipfs
23:59
infinity0_ is now known as infinity0
23:59
Guest45542 has quit [Killed (verne.freenode.net (Nickname regained by services))]