00:00
schneider has quit [Ping timeout: 264 seconds]
00:00
cagomez has quit [Remote host closed the connection]
00:00
duderono_ has joined #ruby
00:01
n0m4d1c has quit [Remote host closed the connection]
00:01
cagomez has joined #ruby
00:01
jdawgaz has joined #ruby
00:02
hammer has quit [Ping timeout: 276 seconds]
00:02
hammer has joined #ruby
00:02
duderonomy has quit [Ping timeout: 276 seconds]
00:03
sameerynho has quit [Ping timeout: 264 seconds]
00:04
schneider has joined #ruby
00:04
workmad3 has joined #ruby
00:05
shinnya has joined #ruby
00:05
cagomez has quit [Ping timeout: 260 seconds]
00:06
n0m4d1c has joined #ruby
00:07
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
00:08
SeepingN has quit [Quit: The system is going down for reboot NOW!]
00:09
schneider has quit [Ping timeout: 260 seconds]
00:09
workmad3 has quit [Ping timeout: 264 seconds]
00:11
duderonomy has joined #ruby
00:11
hammer has quit [Ping timeout: 276 seconds]
00:12
hammer has joined #ruby
00:13
schneider has joined #ruby
00:13
duderono_ has quit [Ping timeout: 276 seconds]
00:15
duderono_ has joined #ruby
00:15
duderonomy has quit [Ping timeout: 264 seconds]
00:19
schneider has quit [Ping timeout: 268 seconds]
00:19
apparition has joined #ruby
00:23
beremenushka3 has quit [Read error: Connection reset by peer]
00:23
schneider has joined #ruby
00:23
beremenushka has joined #ruby
00:23
<
Fridtjof >
i'm having a problem with TCPSocket - i'm opening one with this line:
00:23
<
Fridtjof >
server_socket = TCPSocket.open(server_host, server_port.to_i) # server_port is a string
00:24
<
Fridtjof >
and a puts statement right after it gets executed
00:24
<
Fridtjof >
but after that, I create a new object of one of my classes using that socket and it never continues after that
00:25
alfiemax has joined #ruby
00:25
<
Fridtjof >
the constructor of that class is very simple, it only takes the socket as a parameter and stores it in a class variable
00:25
<
Fridtjof >
*attribute, sorry
00:25
<
Fridtjof >
so I put a puts statement after that, and it does not get executed
00:25
<
mr-robert >
Fridtjof: share your code on gist.github.com
00:26
duderono_ has quit [Ping timeout: 264 seconds]
00:27
<
Fridtjof >
here you go:
00:27
schneider has quit [Ping timeout: 256 seconds]
00:28
<
Fridtjof >
here you go, had to redact a hostname
00:30
hammer has quit [Ping timeout: 276 seconds]
00:30
amar has joined #ruby
00:30
<
Fridtjof >
so, the port is open and i just verified that the server running on that port works
00:30
alfiemax has quit [Ping timeout: 264 seconds]
00:31
<
mr-robert >
your script just hangs? did you try .new instead of .open?
00:31
schneider has joined #ruby
00:31
<
Fridtjof >
let me test that
00:31
<
Fridtjof >
nope, still hangs
00:33
hammer has joined #ruby
00:34
jenrzzz has quit [Ping timeout: 276 seconds]
00:34
<
mr-robert >
does that hangtoo?
00:35
schneider has quit [Ping timeout: 256 seconds]
00:35
<
Fridtjof >
interestingly enough, it doesnt
00:36
<
Fridtjof >
actually, one small detail
00:36
<
Fridtjof >
that code is simplified
00:36
<
Fridtjof >
the connection actually happens inside a Thread.fork
00:36
<
Fridtjof >
don't know if that makes a difference
00:37
karapetyan has quit [Remote host closed the connection]
00:38
<
mr-robert >
can you paste the real code you're working with
00:38
drona6 has joined #ruby
00:39
<
mr-robert >
or something closer to the real code.
00:40
schneider has joined #ruby
00:42
nadir has quit [Quit: Connection closed for inactivity]
00:43
hammer has quit [Ping timeout: 265 seconds]
00:43
hammer has joined #ruby
00:45
kurko__ has joined #ruby
00:45
schneider has quit [Ping timeout: 268 seconds]
00:46
kurko_ has quit [Ping timeout: 265 seconds]
00:46
<
mr-robert >
Fridtjof: are you sure it hangs and not exits before you expect? you might be missing a Thread#join but for best results please share what you're working with. describing your problem with words and from your understanding usually doesn't get the answer you want.
00:47
<
Fridtjof >
one second then
00:47
<
Fridtjof >
hold on a minute
00:47
<
Fridtjof >
thats a valid point youre making
00:48
<
Fridtjof >
my fork happens on a new connection (im writing kind of a proxy)
00:48
<
Fridtjof >
but i only have one client to test with, so my program basically acts like a single threaded program except it doesn't
00:48
<
mr-robert >
is the main thread in a loop? otherwise it'll exit, and the threads you've spawned will die with it.
00:49
<
Fridtjof >
it is in a loop
00:49
<
Fridtjof >
thats why I did not notice it exiting
00:49
schneider has joined #ruby
00:49
<
Fridtjof >
now why
*does* it exit though
00:49
<
Fridtjof >
i'll look into it some more
00:49
<
mr-robert >
good luck
00:50
conceivably has quit [Remote host closed the connection]
00:52
<
Fridtjof >
i'm an idiot
00:52
<
Fridtjof >
although threads make it hard to spot something like this
00:52
<
Fridtjof >
(if youre working with them for the first time like me)
00:53
<
Fridtjof >
i did not include the file the class i'm using was in
00:53
<
Fridtjof >
Uncaught exception: uninitialized constant ServerHandler
00:53
<
mr-robert >
ah i see. and the exception didn't bubble?
00:54
<
Fridtjof >
apparently not
00:54
<
Fridtjof >
do you know why that could be?
00:54
<
Fridtjof >
i don't know much about ruby threads yet
00:54
schneider has quit [Ping timeout: 268 seconds]
00:55
<
mr-robert >
you can set `Thread.abort_on_exception = true`, so that exceptions in spawned threads abort the main thread with a stacktrace.
00:55
<
mr-robert >
otherwise just implement exception handling in the thread itself
00:56
<
Fridtjof >
thank you
00:56
<
mr-robert >
you're welcome
00:58
schneider has joined #ruby
01:00
amar has quit [Remote host closed the connection]
01:01
hammer has quit [Read error: Connection timed out]
01:02
amar has joined #ruby
01:02
hammer has joined #ruby
01:03
schneider has quit [Ping timeout: 265 seconds]
01:07
schneider has joined #ruby
01:07
tdy has quit [Ping timeout: 265 seconds]
01:07
amar has quit [Remote host closed the connection]
01:08
mroutis has quit [Ping timeout: 240 seconds]
01:08
hammer has quit [Ping timeout: 276 seconds]
01:09
kriskropd has quit [Ping timeout: 256 seconds]
01:12
hammer has joined #ruby
01:13
schneider has quit [Ping timeout: 276 seconds]
01:13
SteenJobs has quit [Quit: peaceee]
01:14
erlend has quit [Ping timeout: 260 seconds]
01:15
erlend has joined #ruby
01:15
DTZUZO has quit [Ping timeout: 264 seconds]
01:16
schneider has joined #ruby
01:16
hammer has quit [Ping timeout: 260 seconds]
01:17
hammer has joined #ruby
01:19
clemens3_ has joined #ruby
01:20
DTZUZO has joined #ruby
01:21
clemens3 has quit [Ping timeout: 260 seconds]
01:21
schneider has quit [Ping timeout: 264 seconds]
01:23
Puffball has joined #ruby
01:23
madgen has quit [Ping timeout: 264 seconds]
01:23
kriskropd has joined #ruby
01:23
schneider has joined #ruby
01:23
gizmore|2 has joined #ruby
01:26
gizmore has quit [Ping timeout: 240 seconds]
01:27
netherwolfe has joined #ruby
01:28
<
quuxman >
how do I set up a test in rspec so that one method "do_stuff" on a global object is called once or the test fails? I have `allow(Foo::Bar).to receive(:do_stuff) { puts 'test' } ...test code... expect(Foo::Bar).to receive(:do_stuff)` but I get an error that .do_stuff() was received 0 times, though I'm certain it's being called because I see the side effects
01:28
schneider has quit [Ping timeout: 268 seconds]
01:31
netherwolfe has quit [Ping timeout: 260 seconds]
01:31
dviola has joined #ruby
01:32
dviola has quit [Changing host]
01:32
dviola has joined #ruby
01:32
n0m4d1c has quit [Ping timeout: 240 seconds]
01:32
schneider has joined #ruby
01:34
n0m4d1c has joined #ruby
01:34
<
mr-robert >
quuxman: share your code
01:35
<
quuxman >
ok I changed the expect to ... `.to have_received(` ... and it wo rks
01:37
cthu| has quit [Ping timeout: 264 seconds]
01:37
karapetyan has joined #ruby
01:37
schneider has quit [Ping timeout: 268 seconds]
01:39
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
01:41
schneider has joined #ruby
01:42
karapetyan has quit [Ping timeout: 260 seconds]
01:43
<
quuxman >
what would an argument spec look like using `using receive(:foo).with(...)` for the first arg as string and the second two as dicts?
01:43
<
quuxman >
I mean the second two as named arguments containing dicts
01:44
n0m4d1c has quit [Remote host closed the connection]
01:46
<
quuxman >
I've tried `with('foo', arg1:kind_of(Hash), arg2:kind_of(Hash)` and various other things...
01:46
schneider has quit [Ping timeout: 240 seconds]
01:46
raynold has quit [Quit: Connection closed for inactivity]
01:48
hammer has quit [Ping timeout: 276 seconds]
01:49
n0m4d1c has joined #ruby
01:49
ramfjord has joined #ruby
01:50
imode has joined #ruby
01:50
schneider has joined #ruby
01:51
dinfuehr_ has joined #ruby
01:52
hammer has joined #ruby
01:54
ramfjord has quit [Ping timeout: 256 seconds]
01:55
schneider has quit [Ping timeout: 240 seconds]
01:55
dinfuehr has quit [Ping timeout: 260 seconds]
01:56
ramfjord has joined #ruby
01:56
RLNKWZM3mphiZ has joined #ruby
01:58
RLNKWZM3mphiZ has quit [Remote host closed the connection]
01:59
<
quuxman >
oh god I misspelled foo (*hides*)
02:00
schneider has joined #ruby
02:00
ramfjord has quit [Ping timeout: 264 seconds]
02:03
leitz has joined #ruby
02:03
jdawgaz has joined #ruby
02:04
workmad3 has joined #ruby
02:04
schneider has quit [Ping timeout: 260 seconds]
02:06
shoogz has quit [Quit: shoogz out]
02:07
tdy has joined #ruby
02:08
AJA4350 has quit [Remote host closed the connection]
02:08
shoogz has joined #ruby
02:08
workmad3 has quit [Ping timeout: 240 seconds]
02:09
schneider has joined #ruby
02:10
hammer has quit [Ping timeout: 276 seconds]
02:13
leitz has quit [Quit: Nappy time]
02:14
schneider has quit [Ping timeout: 264 seconds]
02:15
hammer has joined #ruby
02:17
n0m4d1c has quit [Remote host closed the connection]
02:18
schneider has joined #ruby
02:23
schneider has quit [Ping timeout: 264 seconds]
02:25
hammer has quit [Ping timeout: 276 seconds]
02:25
orbyt_ has joined #ruby
02:25
hammer has joined #ruby
02:27
schneider has joined #ruby
02:32
sanscoeur has joined #ruby
02:32
schneider has quit [Ping timeout: 264 seconds]
02:35
mroutis has joined #ruby
02:36
schneider has joined #ruby
02:39
hammer has quit [Ping timeout: 265 seconds]
02:40
hammer has joined #ruby
02:40
sanscoeur has quit [Remote host closed the connection]
02:41
schneider has quit [Ping timeout: 265 seconds]
02:42
rwb has quit [Ping timeout: 264 seconds]
02:45
hammer has quit [Ping timeout: 276 seconds]
02:45
schneider has joined #ruby
02:49
hammer has joined #ruby
02:49
nadir has joined #ruby
02:50
iMadper has quit [Remote host closed the connection]
02:50
schneider has quit [Ping timeout: 260 seconds]
02:53
mroutis has quit [Ping timeout: 240 seconds]
02:53
harrycs has joined #ruby
02:54
schneider has joined #ruby
02:58
hammer has quit [Ping timeout: 276 seconds]
02:58
hammer has joined #ruby
02:59
schneider has quit [Ping timeout: 240 seconds]
02:59
harrycs has quit [Remote host closed the connection]
03:00
cadillac_ has quit [Quit: I quit]
03:00
harrycs has joined #ruby
03:01
harrycs has quit [Remote host closed the connection]
03:02
harrycs has joined #ruby
03:03
hammer has quit [Ping timeout: 255 seconds]
03:03
schneider has joined #ruby
03:05
harrycs has quit [Remote host closed the connection]
03:06
harrycs has joined #ruby
03:07
harrycs has quit [Remote host closed the connection]
03:08
harrycs has joined #ruby
03:08
hammer has joined #ruby
03:08
schneider has quit [Ping timeout: 264 seconds]
03:12
schneider has joined #ruby
03:14
Dimik has joined #ruby
03:14
hammer has quit [Ping timeout: 260 seconds]
03:15
hammer has joined #ruby
03:15
harrycs has quit [Remote host closed the connection]
03:16
imode has quit [Quit: WeeChat 2.1]
03:16
harrycs has joined #ruby
03:17
schneider has quit [Ping timeout: 264 seconds]
03:17
harrycs has quit [Remote host closed the connection]
03:18
harrycs has joined #ruby
03:18
mlkkk has quit [Remote host closed the connection]
03:19
michael_mbpL5YBW has joined #ruby
03:19
michael_mbpL5YBW has quit [K-Lined]
03:19
imode has joined #ruby
03:19
harrycs has quit [Remote host closed the connection]
03:20
harrycs has joined #ruby
03:21
harrycs has quit [Remote host closed the connection]
03:22
schneider has joined #ruby
03:22
harrycs has joined #ruby
03:22
erlend has quit [Ping timeout: 276 seconds]
03:23
arescorpio has quit [Quit: Leaving.]
03:23
erlend has joined #ruby
03:23
harrycs has quit [Client Quit]
03:24
DTZUZO has quit [Ping timeout: 268 seconds]
03:26
karapetyan has joined #ruby
03:26
DTZUZO has joined #ruby
03:27
schneider has quit [Ping timeout: 264 seconds]
03:28
hammer has quit [Ping timeout: 265 seconds]
03:29
hammer has joined #ruby
03:30
karapetyan has quit [Ping timeout: 240 seconds]
03:31
schneider has joined #ruby
03:34
hammer has quit [Ping timeout: 276 seconds]
03:36
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
03:36
schneider has quit [Ping timeout: 268 seconds]
03:37
poloych has joined #ruby
03:38
hammer has joined #ruby
03:40
schneider has joined #ruby
03:42
r3kz has joined #ruby
03:44
troys has quit [Quit: Bye]
03:44
govg has quit [Ping timeout: 276 seconds]
03:44
schneider has quit [Ping timeout: 240 seconds]
03:45
shinnya has quit [Ping timeout: 240 seconds]
03:46
govg has joined #ruby
03:47
DTZUZO has quit [Ping timeout: 264 seconds]
03:47
orbyt_ has joined #ruby
03:48
poloych has quit [Remote host closed the connection]
03:49
schneider has joined #ruby
03:49
cagomez has joined #ruby
03:50
mlkkk has joined #ruby
03:50
lelliott has joined #ruby
03:50
DTZUZO has joined #ruby
03:51
govg has quit [Ping timeout: 256 seconds]
03:52
hammer has quit [Ping timeout: 265 seconds]
03:53
hammer has joined #ruby
03:53
schneider has quit [Ping timeout: 240 seconds]
03:54
kurko__ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
03:54
mlkkk has quit [Ping timeout: 240 seconds]
03:57
nicht has joined #ruby
03:58
schneider has joined #ruby
03:58
Eiam has quit [Ping timeout: 265 seconds]
04:00
hph^ has joined #ruby
04:00
segy has quit [Ping timeout: 265 seconds]
04:01
segy has joined #ruby
04:02
hammer has quit [Ping timeout: 276 seconds]
04:02
schneider has quit [Ping timeout: 240 seconds]
04:03
hammer has joined #ruby
04:03
nicht has quit [Remote host closed the connection]
04:03
workmad3 has joined #ruby
04:04
nicht has joined #ruby
04:04
nicht has quit [Remote host closed the connection]
04:05
nicht has joined #ruby
04:07
apparition has quit [Quit: Bye]
04:07
schneider has joined #ruby
04:07
workmad3 has quit [Ping timeout: 240 seconds]
04:09
ryzokuken has joined #ruby
04:10
Puffball has quit [Remote host closed the connection]
04:11
hammer has quit [Ping timeout: 260 seconds]
04:12
schneider has quit [Ping timeout: 268 seconds]
04:13
hammer has joined #ruby
04:16
mlkkk_ has joined #ruby
04:16
schneider has joined #ruby
04:16
donofrio has quit [Remote host closed the connection]
04:17
mtkd has joined #ruby
04:20
nicht has quit [Remote host closed the connection]
04:21
nicht has joined #ruby
04:21
schneider has quit [Ping timeout: 265 seconds]
04:25
schneider has joined #ruby
04:27
nicht has quit [Read error: Connection reset by peer]
04:30
schneider has quit [Ping timeout: 260 seconds]
04:31
Psybur has quit [Ping timeout: 265 seconds]
04:34
mlkkk_ has quit [Remote host closed the connection]
04:34
schneider has joined #ruby
04:35
mlkkk has joined #ruby
04:35
raynold has joined #ruby
04:38
mlkkk has quit [Ping timeout: 240 seconds]
04:39
schneider has quit [Ping timeout: 240 seconds]
04:40
eckhardt has joined #ruby
04:43
schneider has joined #ruby
04:45
alfiemax has joined #ruby
04:46
poloych has joined #ruby
04:48
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
04:48
schneider has quit [Ping timeout: 240 seconds]
04:51
poloych has quit [Ping timeout: 265 seconds]
04:52
poloych has joined #ruby
04:52
ramfjord has joined #ruby
04:53
schneider has joined #ruby
04:54
Omnilord has joined #ruby
04:55
donofrio has joined #ruby
04:57
ramfjord has quit [Ping timeout: 260 seconds]
04:58
schneider has quit [Ping timeout: 260 seconds]
04:59
ciscam has quit [Ping timeout: 260 seconds]
05:01
ciscam has joined #ruby
05:02
schneider has joined #ruby
05:05
dviola has quit [Quit: WeeChat 2.1]
05:05
cagomez has quit []
05:06
schneider has quit [Ping timeout: 264 seconds]
05:07
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
05:11
schneider has joined #ruby
05:11
poloych has quit [Remote host closed the connection]
05:14
hammer has quit [Ping timeout: 276 seconds]
05:14
karapetyan has joined #ruby
05:15
sauvin has joined #ruby
05:16
schneider has quit [Ping timeout: 260 seconds]
05:16
imode has quit [Ping timeout: 265 seconds]
05:16
Azure has quit [Read error: Connection reset by peer]
05:16
Azure|dc has joined #ruby
05:19
hammer has joined #ruby
05:19
karapetyan has quit [Ping timeout: 260 seconds]
05:20
schneider has joined #ruby
05:21
imode has joined #ruby
05:23
hammer has quit [Ping timeout: 255 seconds]
05:25
hammer has joined #ruby
05:25
cagomez has joined #ruby
05:25
schneider has quit [Ping timeout: 260 seconds]
05:27
cagomez has quit [Read error: Connection reset by peer]
05:27
cagomez has joined #ruby
05:29
schneider has joined #ruby
05:29
cagomez has quit [Remote host closed the connection]
05:29
erlend has quit [Ping timeout: 260 seconds]
05:30
hammer has quit [Ping timeout: 276 seconds]
05:32
erlend has joined #ruby
05:33
hammer has joined #ruby
05:33
schneider has quit [Ping timeout: 240 seconds]
05:38
schneider has joined #ruby
05:39
raggi has joined #ruby
05:43
hammer has quit [Ping timeout: 276 seconds]
05:43
schneider has quit [Ping timeout: 264 seconds]
05:44
hammer has joined #ruby
05:45
jcalla has quit [Ping timeout: 265 seconds]
05:47
schneider has joined #ruby
05:48
lelliott has quit [Remote host closed the connection]
05:48
lelliott has joined #ruby
05:50
lelliott has quit [Read error: Connection reset by peer]
05:50
lelliott has joined #ruby
05:51
imode has quit [Ping timeout: 264 seconds]
05:53
schneider has quit [Ping timeout: 264 seconds]
05:54
apparition has joined #ruby
05:54
lelliott has quit [Remote host closed the connection]
05:55
lelliott has joined #ruby
05:56
schneider has joined #ruby
05:59
lelliott has quit [Ping timeout: 260 seconds]
06:01
psychicist__ has joined #ruby
06:02
workmad3 has joined #ruby
06:02
Asher has quit [Ping timeout: 265 seconds]
06:04
KeyJoo has joined #ruby
06:04
reber has joined #ruby
06:05
KeyJoo has quit [Max SendQ exceeded]
06:05
KeyJoo has joined #ruby
06:06
schneider has quit [Ping timeout: 264 seconds]
06:06
alex`` has joined #ruby
06:07
workmad3 has quit [Ping timeout: 256 seconds]
06:09
govg has joined #ruby
06:10
hammer has quit [Ping timeout: 260 seconds]
06:11
schneider has joined #ruby
06:11
hammer has joined #ruby
06:14
huyderman has quit [Remote host closed the connection]
06:15
phaul has joined #ruby
06:16
schneider has quit [Ping timeout: 260 seconds]
06:19
KeyJoo has quit [Ping timeout: 260 seconds]
06:20
schneider has joined #ruby
06:23
duderonomy has joined #ruby
06:24
shinnya has joined #ruby
06:25
schneider has quit [Ping timeout: 265 seconds]
06:29
schneider has joined #ruby
06:30
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
06:31
alfiemax has quit [Remote host closed the connection]
06:33
hammer has quit [Ping timeout: 276 seconds]
06:34
hammer has joined #ruby
06:34
schneider has quit [Ping timeout: 264 seconds]
06:37
Omnilord has quit [Quit: Something went wrong because I left.]
06:38
schneider has joined #ruby
06:38
Mia has quit [Ping timeout: 276 seconds]
06:42
jamesaxl has joined #ruby
06:43
suukim has joined #ruby
06:43
schneider has quit [Ping timeout: 256 seconds]
06:43
hammer has quit [Ping timeout: 276 seconds]
06:44
hammer has joined #ruby
06:47
mtkd has joined #ruby
06:47
schneider has joined #ruby
06:48
hammer has quit [Ping timeout: 255 seconds]
06:53
ramfjord has joined #ruby
06:53
schneider has quit [Ping timeout: 268 seconds]
06:53
hammer has joined #ruby
06:55
apparition has quit [Quit: Bye]
06:56
schneider has joined #ruby
06:57
ramfjord has quit [Ping timeout: 240 seconds]
07:00
Asher has joined #ruby
07:01
schneider has quit [Ping timeout: 240 seconds]
07:04
ianfleeton has joined #ruby
07:05
Asher has quit [Ping timeout: 256 seconds]
07:05
schneider has joined #ruby
07:07
hammer has quit [Ping timeout: 265 seconds]
07:08
hammer has joined #ruby
07:10
zapata_ has joined #ruby
07:11
schneider has quit [Ping timeout: 264 seconds]
07:11
zapata has quit [Ping timeout: 256 seconds]
07:13
darkhanb has joined #ruby
07:14
schneider has joined #ruby
07:16
mjolnird has joined #ruby
07:16
mjolnird has quit [Remote host closed the connection]
07:16
hammer has quit [Ping timeout: 276 seconds]
07:16
Gabemo has quit [Ping timeout: 260 seconds]
07:16
mjolnird has joined #ruby
07:17
hammer has joined #ruby
07:19
schneider has quit [Ping timeout: 240 seconds]
07:20
zapata_ has quit [Read error: Connection reset by peer]
07:21
zapata_ has joined #ruby
07:22
hammer has quit [Ping timeout: 245 seconds]
07:24
schneider has joined #ruby
07:24
ianfleeton has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
07:26
hkais has joined #ruby
07:27
hammer has joined #ruby
07:29
BH23 has joined #ruby
07:30
schneider has quit [Ping timeout: 240 seconds]
07:30
zapata has joined #ruby
07:31
hammer has quit [Ping timeout: 245 seconds]
07:32
zapata_ has quit [Ping timeout: 256 seconds]
07:33
schneider has joined #ruby
07:35
mikecmpbll has joined #ruby
07:35
BH23 has quit [Quit: Leaving]
07:36
hammer has joined #ruby
07:38
schneider has quit [Ping timeout: 260 seconds]
07:39
erlend has quit [Ping timeout: 256 seconds]
07:41
erlend has joined #ruby
07:42
schneider has joined #ruby
07:47
schneider has quit [Ping timeout: 265 seconds]
07:50
BH23 has joined #ruby
07:51
schneider has joined #ruby
07:52
mtkd has quit [Read error: Connection reset by peer]
07:53
mtkd has joined #ruby
07:56
schneider has quit [Ping timeout: 264 seconds]
07:58
ciscam has quit [Ping timeout: 260 seconds]
07:58
coderphive has quit [Quit: coderphive]
07:58
hammer has quit [Ping timeout: 260 seconds]
07:58
ciscam has joined #ruby
07:59
hammer has joined #ruby
08:00
schneider has joined #ruby
08:02
workmad3 has joined #ruby
08:03
karapetyan has joined #ruby
08:04
quobo has quit [Quit: Connection closed for inactivity]
08:05
schneider has quit [Ping timeout: 240 seconds]
08:06
alex`` has quit [Quit: WeeChat 2.1]
08:07
nadir has quit [Quit: Connection closed for inactivity]
08:07
workmad3 has quit [Ping timeout: 264 seconds]
08:07
karapetyan has quit [Ping timeout: 265 seconds]
08:08
n008f4g_ has joined #ruby
08:08
hammer has quit [Ping timeout: 245 seconds]
08:09
mikecmpbll has quit [Quit: inabit. zz.]
08:10
schneider has joined #ruby
08:11
biberu has joined #ruby
08:13
hammer has joined #ruby
08:14
schneider has quit [Ping timeout: 240 seconds]
08:14
danguita has quit [Ping timeout: 260 seconds]
08:15
danguita has joined #ruby
08:19
schneider has joined #ruby
08:22
hammer has quit [Ping timeout: 260 seconds]
08:23
hammer has joined #ruby
08:24
sidx64 has joined #ruby
08:27
schneider has quit [Ping timeout: 276 seconds]
08:28
schneider has joined #ruby
08:30
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
08:33
schneider has quit [Ping timeout: 268 seconds]
08:37
hammer has quit [Ping timeout: 276 seconds]
08:37
schneider has joined #ruby
08:42
schneider has quit [Ping timeout: 245 seconds]
08:42
hammer has joined #ruby
08:46
schneider has joined #ruby
08:46
hammer has quit [Ping timeout: 245 seconds]
08:47
Mia has joined #ruby
08:47
Mia has joined #ruby
08:47
Mia has quit [Changing host]
08:51
amar has joined #ruby
08:51
schneider has quit [Ping timeout: 264 seconds]
08:53
hammer has joined #ruby
08:55
schneider has joined #ruby
09:00
schneider has quit [Ping timeout: 264 seconds]
09:01
clemens3_ has quit [Ping timeout: 268 seconds]
09:01
ur5us has joined #ruby
09:03
dionysus69 has joined #ruby
09:04
kapil___ has joined #ruby
09:05
schneider has joined #ruby
09:10
schneider has quit [Ping timeout: 255 seconds]
09:10
dionysus69 has quit [Ping timeout: 255 seconds]
09:12
hammer has quit [Ping timeout: 276 seconds]
09:14
schneider has joined #ruby
09:14
mikecmpbll has joined #ruby
09:17
ianfleeton has joined #ruby
09:17
hammer has joined #ruby
09:19
schneider has quit [Ping timeout: 255 seconds]
09:22
hammer has quit [Ping timeout: 276 seconds]
09:23
schneider has joined #ruby
09:24
nadir has joined #ruby
09:25
hammer has joined #ruby
09:26
sameerynho has joined #ruby
09:26
zapata has quit [Quit: WeeChat 2.1]
09:28
schneider has quit [Ping timeout: 264 seconds]
09:30
hammer has quit [Ping timeout: 260 seconds]
09:30
n008f4g_ has quit [Ping timeout: 265 seconds]
09:32
dionysus69 has joined #ruby
09:32
schneider has joined #ruby
09:35
hammer has joined #ruby
09:36
sidx64 has joined #ruby
09:37
schneider has quit [Ping timeout: 240 seconds]
09:39
n008f4g_ has joined #ruby
09:41
schneider has joined #ruby
09:44
suukim has quit [Quit: Konversation terminated!]
09:46
madgen has joined #ruby
09:46
schneider has quit [Ping timeout: 260 seconds]
09:48
erlend has quit [Ping timeout: 265 seconds]
09:48
hammer has quit [Ping timeout: 245 seconds]
09:49
erlend has joined #ruby
09:50
schneider has joined #ruby
09:50
ur5us has quit [Remote host closed the connection]
09:51
ur5us has joined #ruby
09:54
hammer has joined #ruby
09:54
ur5us has quit [Read error: No route to host]
09:54
ur5us has joined #ruby
09:54
sameerynho has quit [Ping timeout: 276 seconds]
09:55
schneider has quit [Ping timeout: 256 seconds]
09:57
\void has joined #ruby
09:59
ianfleeton has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
09:59
schneider has joined #ruby
10:01
workmad3 has joined #ruby
10:03
sidx64 has quit [Read error: Connection reset by peer]
10:03
ianfleeton has joined #ruby
10:04
schneider has quit [Ping timeout: 256 seconds]
10:04
kies has quit [Read error: Connection reset by peer]
10:06
workmad3 has quit [Ping timeout: 268 seconds]
10:07
hammer has quit [Ping timeout: 276 seconds]
10:08
hammer has joined #ruby
10:08
oleo has quit [Quit: Leaving]
10:09
schneider has joined #ruby
10:12
hammer has quit [Ping timeout: 245 seconds]
10:13
hammer has joined #ruby
10:13
schneider has quit [Ping timeout: 240 seconds]
10:14
leitz has joined #ruby
10:15
oleo has joined #ruby
10:16
ianfleeton has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
10:17
hammer has quit [Ping timeout: 245 seconds]
10:18
schneider has joined #ruby
10:20
alfiemax has joined #ruby
10:21
ianfleeton has joined #ruby
10:22
schneider has quit [Ping timeout: 256 seconds]
10:23
hammer has joined #ruby
10:26
ur5us has quit [Remote host closed the connection]
10:27
schneider has joined #ruby
10:27
alfiemax has quit [Ping timeout: 256 seconds]
10:31
hammer has quit [Ping timeout: 245 seconds]
10:33
schneider has quit [Ping timeout: 256 seconds]
10:33
ianfleeton has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
10:38
hammer has joined #ruby
10:38
schneider has joined #ruby
10:44
schneider has quit [Ping timeout: 264 seconds]
10:44
leitz has quit [Quit: Nappy time]
10:47
schneider has joined #ruby
10:50
zapata has joined #ruby
10:52
schneider has quit [Ping timeout: 240 seconds]
10:53
zmo has quit [Changing host]
10:53
zmo has joined #ruby
10:56
schneider has joined #ruby
10:58
sidx64 has joined #ruby
10:58
psychicist__ has quit [Quit: leaving]
10:59
hammer has quit [Ping timeout: 276 seconds]
11:00
alfiemax has joined #ruby
11:01
hammer has joined #ruby
11:01
schneider has quit [Ping timeout: 260 seconds]
11:05
alfiemax has quit [Ping timeout: 260 seconds]
11:05
hammer has quit [Ping timeout: 245 seconds]
11:05
schneider has joined #ruby
11:10
\void has quit [Quit: So long, and thanks for all the fish.]
11:11
hammer has joined #ruby
11:11
schneider has quit [Ping timeout: 255 seconds]
11:13
leitz has joined #ruby
11:15
alex`` has joined #ruby
11:15
mtkd has joined #ruby
11:16
schneider has joined #ruby
11:17
CoolerY has joined #ruby
11:18
<
CoolerY >
i don't know ruby
11:18
mostlybadfly has joined #ruby
11:20
hammer has quit [Ping timeout: 260 seconds]
11:21
hammer has joined #ruby
11:21
<
apeiros >
CoolerY: if you have a concrete question, I'll try to answer it
11:21
schneider has quit [Ping timeout: 255 seconds]
11:22
<
CoolerY >
apeiros, well i got stuck here
11:22
<
CoolerY >
return Array.new(minmax.size) do |i|
11:22
<
CoolerY >
apparently do |i| is some sort of lambda function syntax?
11:23
tvw has joined #ruby
11:23
tvw has quit [Read error: Connection reset by peer]
11:23
alfiemax has joined #ruby
11:23
tvw has joined #ruby
11:24
\void has joined #ruby
11:24
<
CoolerY >
i got the gist of what the function is doing
11:24
atchoum has joined #ruby
11:25
hammer has quit [Ping timeout: 276 seconds]
11:26
schneider has joined #ruby
11:26
hammer has joined #ruby
11:28
alfiemax has quit [Ping timeout: 256 seconds]
11:30
schneider has quit [Ping timeout: 260 seconds]
11:35
schneider has joined #ruby
11:39
schneider has quit [Ping timeout: 256 seconds]
11:42
<
apeiros >
I probably should have said that I'm frequently afk, sorry CoolerY
11:43
AJA4350 has joined #ruby
11:43
<
apeiros >
Array.nwe(minmax.size) creates a new array of length minmax.size
11:43
<
apeiros >
and yes, `do |i| … end` is like a lambda
11:43
<
apeiros >
i will go from 0 to minmax.size-1
11:44
<
apeiros >
it's invoked minmax.size time, i.e. once for every element in the new array
11:44
<
apeiros >
>> Array.new(5) { |i| i**2 }
11:44
schneider has joined #ruby
11:44
<
apeiros >
&ri Array.new CoolerY
11:44
houhoulis has joined #ruby
11:48
hammer has quit [Ping timeout: 276 seconds]
11:49
hammer has joined #ruby
11:49
schneider has quit [Ping timeout: 268 seconds]
11:50
<
CoolerY >
apeiros, what does this line do? child[:strategy] << s_old + random_gaussian() * s_old.abs**0.5
11:50
<
CoolerY >
is it assigning to child.strategy?
11:51
unreal has quit [Ping timeout: 256 seconds]
11:51
<
CoolerY >
can you explain the mutate function?
11:51
despai has joined #ruby
11:52
<
CoolerY >
i understand the idea but line 30 is confusing
11:52
<
CoolerY >
does << append to the list?
11:52
<
CoolerY >
actually that makes sense
11:53
despai has quit [Client Quit]
11:53
schneider has joined #ruby
11:54
hammer has quit [Ping timeout: 276 seconds]
11:56
erlend has quit [Ping timeout: 256 seconds]
11:57
nadir has quit [Quit: Connection closed for inactivity]
11:57
erlend has joined #ruby
11:58
unreal has joined #ruby
11:58
schneider has quit [Ping timeout: 264 seconds]
11:58
hammer has joined #ruby
11:59
dionysus69 has quit [Quit: dionysus69]
12:00
jdawgaz has joined #ruby
12:00
workmad3 has joined #ruby
12:00
atchoum has quit [Ping timeout: 240 seconds]
12:01
roshanavand has joined #ruby
12:02
schneider has joined #ruby
12:03
hammer has quit [Ping timeout: 260 seconds]
12:05
workmad3 has quit [Ping timeout: 256 seconds]
12:05
klaas has joined #ruby
12:06
<
apeiros >
CoolerY: << is a method and depends on the receiver (the object you call it on)
12:06
schneider has quit [Ping timeout: 240 seconds]
12:07
<
apeiros >
but one of the most common cases is Array#<< which is push (just limited to a single element)
12:07
<
apeiros >
&ri Array#<<
12:07
hammer has joined #ruby
12:07
<
apeiros >
** is exponentiation
12:08
<
apeiros >
child is a Hash (I believe you call it dict in python)
12:08
<
apeiros >
:strategy is a symbol (a mix between a number and a string, you can mostly treat it like a string, just that it's of a different class)
12:11
jeffreylevesque has joined #ruby
12:11
schneider has joined #ruby
12:12
dr3w_ has joined #ruby
12:13
<
phaul >
it's also not the cleanest ruby code which make it a bit more difficult to understand
12:14
<
phaul >
they are overusing hashes...
12:14
ryzokuken has quit [Remote host closed the connection]
12:16
<
phaul >
I wouldn't go for a "straight" rewrite, once the algorithm is understood, I think you should ditch this code :)
12:16
schneider has quit [Ping timeout: 265 seconds]
12:17
<
apeiros >
phaul: they're porting it to python
12:19
alfiemax has joined #ruby
12:20
Psybur has joined #ruby
12:21
schneider has joined #ruby
12:21
sidx64_ has joined #ruby
12:22
sidx64 has quit [Ping timeout: 240 seconds]
12:23
roshanavand has quit [Quit: Leaving.]
12:25
hammer has quit [Ping timeout: 276 seconds]
12:26
roshanavand has joined #ruby
12:26
hammer has joined #ruby
12:26
schneider has quit [Ping timeout: 276 seconds]
12:26
raynold has quit [Quit: Connection closed for inactivity]
12:27
ur5us has joined #ruby
12:28
John_Ivan has joined #ruby
12:28
John_Ivan has joined #ruby
12:28
John_Ivan has quit [Changing host]
12:30
schneider has joined #ruby
12:30
hammer has quit [Ping timeout: 255 seconds]
12:32
ur5us has quit [Ping timeout: 276 seconds]
12:35
schneider has quit [Ping timeout: 264 seconds]
12:36
hammer has joined #ruby
12:39
schneider has joined #ruby
12:39
warbaque has left #ruby [#ruby]
12:44
schneider has quit [Ping timeout: 264 seconds]
12:45
hammer has quit [Ping timeout: 245 seconds]
12:48
schneider has joined #ruby
12:49
suukim has joined #ruby
12:51
hammer has joined #ruby
12:53
schneider has quit [Ping timeout: 240 seconds]
12:59
schneider has joined #ruby
13:00
unreal_ has joined #ruby
13:00
hammer has quit [Ping timeout: 276 seconds]
13:00
Asher has joined #ruby
13:01
unreal has quit [Ping timeout: 260 seconds]
13:01
hammer has joined #ruby
13:02
alfiemax has quit [Remote host closed the connection]
13:04
schneider has quit [Ping timeout: 256 seconds]
13:05
Asher has quit [Ping timeout: 264 seconds]
13:08
schneider has joined #ruby
13:13
schneider has quit [Ping timeout: 240 seconds]
13:14
hammer has quit [Ping timeout: 245 seconds]
13:15
hammer has joined #ruby
13:17
schneider has joined #ruby
13:19
Burgestrand has quit [Quit: Closing time!]
13:20
Burgestrand has joined #ruby
13:20
dr3w_ has joined #ruby
13:22
dionysus69 has joined #ruby
13:22
schneider has quit [Ping timeout: 268 seconds]
13:23
CoolerY has quit [Quit: Leaving]
13:23
psychicist__ has joined #ruby
13:23
hammer has quit [Ping timeout: 260 seconds]
13:24
hammer has joined #ruby
13:26
schneider has joined #ruby
13:27
karapetyan has joined #ruby
13:27
duderonomy has joined #ruby
13:31
schneider has quit [Ping timeout: 256 seconds]
13:31
hammer has quit [Ping timeout: 245 seconds]
13:32
karapetyan has quit [Ping timeout: 260 seconds]
13:32
hammer has joined #ruby
13:32
alfiemax has joined #ruby
13:33
sameerynho has joined #ruby
13:34
amar has quit [Remote host closed the connection]
13:34
alfiemax_ has joined #ruby
13:34
dr3w_ has joined #ruby
13:34
dionysus69 has quit [Remote host closed the connection]
13:35
dionysus69 has joined #ruby
13:36
schneider has joined #ruby
13:36
hammer has quit [Ping timeout: 245 seconds]
13:37
alfiemax has quit [Ping timeout: 245 seconds]
13:39
alfiemax_ has quit [Read error: Connection reset by peer]
13:39
alfiemax has joined #ruby
13:40
schneider has quit [Ping timeout: 256 seconds]
13:41
hammer has joined #ruby
13:44
schneider has joined #ruby
13:44
alfiemax_ has joined #ruby
13:44
Asher has joined #ruby
13:45
amar has joined #ruby
13:45
alfiemax has quit [Ping timeout: 276 seconds]
13:47
konsolebox_ has joined #ruby
13:48
alex`` has quit [Ping timeout: 268 seconds]
13:48
konsolebox has quit [Ping timeout: 240 seconds]
13:49
schneider has quit [Ping timeout: 268 seconds]
13:49
Asher has quit [Ping timeout: 255 seconds]
13:50
kurko_ has joined #ruby
13:50
herbmillerjr has joined #ruby
13:51
hammer has quit [Ping timeout: 276 seconds]
13:53
schneider has joined #ruby
13:56
hammer has joined #ruby
13:57
kurko_ has quit [Ping timeout: 276 seconds]
13:57
govg has quit [Ping timeout: 260 seconds]
13:58
amar has quit [Remote host closed the connection]
13:59
govg has joined #ruby
13:59
workmad3 has joined #ruby
14:00
Asher has joined #ruby
14:00
amar has joined #ruby
14:00
alfiemax_ has quit [Remote host closed the connection]
14:01
hammer has quit [Ping timeout: 265 seconds]
14:01
basic has joined #ruby
14:01
tomphp has joined #ruby
14:02
<
basic >
how can i do: x=3;eval "puts x"
14:02
<
basic >
OH THAT ALREADY WORKS
14:03
schneider has quit [Ping timeout: 240 seconds]
14:04
erlend has quit [Ping timeout: 240 seconds]
14:05
workmad3 has quit [Ping timeout: 260 seconds]
14:06
kurko_ has joined #ruby
14:06
erlend has joined #ruby
14:08
alfiemax has joined #ruby
14:08
<
basic >
but what if i want to have that local inside a block, i give to a class method of a class
14:09
<
basic >
to avoid xy: i try to have something like rakefiles that only contain stuff like "config { |x| x.a = 3 }"
14:09
leitz has quit [Quit: Nappy time]
14:09
<
basic >
and my approach to use them is to class_eval the content of the file
14:09
schneider has joined #ruby
14:09
<
basic >
which works fine, until i try to put data from outside into it
14:10
oleo has quit [Remote host closed the connection]
14:10
<
basic >
if i was about to: "Object.class_eval { y = 3; eval "config { |x| x.a = y}" }
14:10
<
basic >
it doesn't work anymore, can anyone help with that?
14:11
oleo has joined #ruby
14:11
<
basic >
and is class_eval { eval "" } the same as class_eval("")
14:14
schneider has quit [Ping timeout: 260 seconds]
14:16
hammer has joined #ruby
14:16
chihhsin has quit [Quit: leaving]
14:17
ard3553 has joined #ruby
14:17
chihhsin has joined #ruby
14:18
herbmillerjr has quit [Quit: Konversation terminated!]
14:18
schneider has joined #ruby
14:19
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
14:20
<
ard3553 >
If I want to dispatch a method by string using `send`, that may have 0 or 1 arguments, is there a clean way to do that without defining all of these methods with a potentially unused argument (defaulting to nil, for example)?
14:20
dr3w_ has joined #ruby
14:21
hammer has quit [Ping timeout: 276 seconds]
14:22
roshanavand has quit [Ping timeout: 255 seconds]
14:22
<
apeiros >
ard3553: you should use public_send, not send
14:23
<
ard3553 >
Does that solve the problem?
14:23
<
apeiros >
and I'm not sure what you're asking
14:23
<
apeiros >
no, public_send just avoids that you accidentally invoke private methods
14:23
ard3553 has quit [Quit: Page closed]
14:23
<
apeiros >
re your question - are you asking how to define a method or how to invoke a method?
14:23
schneider has quit [Ping timeout: 260 seconds]
14:26
chihhsin has quit [Quit: leaving]
14:27
chihhsin has joined #ruby
14:27
schneider has joined #ruby
14:28
ur5us has joined #ruby
14:31
ianfleeton has joined #ruby
14:31
chouhoulis has joined #ruby
14:32
coderphive has joined #ruby
14:32
ur5us has quit [Ping timeout: 240 seconds]
14:32
schneider has quit [Ping timeout: 256 seconds]
14:32
chihhsin has quit [Quit: leaving]
14:35
macduck has joined #ruby
14:36
kurko_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
14:37
schneider has joined #ruby
14:38
ryzokuken has joined #ruby
14:40
chouhoulis has quit [Remote host closed the connection]
14:41
chouhoulis has joined #ruby
14:42
schneider has quit [Ping timeout: 256 seconds]
14:43
chihhsin has joined #ruby
14:44
chihhsin has quit [Client Quit]
14:44
inerthia has joined #ruby
14:44
mtkd has quit [Ping timeout: 264 seconds]
14:45
inerthia has quit [Client Quit]
14:45
hammer has joined #ruby
14:45
<
havenwood >
seems they left
14:45
chouhoulis has quit [Ping timeout: 240 seconds]
14:46
<
havenwood >
I guess ard was asking how to check method arity?
14:46
tomphp has joined #ruby
14:47
mtkd has joined #ruby
14:48
schneider has joined #ruby
14:49
beremenushka has quit [Quit: Leaving]
14:50
tomphp has quit [Client Quit]
14:51
<
konsolebox_ >
basic: how does it not work?
14:52
ianfleeton has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
14:53
schneider has quit [Ping timeout: 264 seconds]
14:53
hammer has quit [Ping timeout: 245 seconds]
14:56
beremenushka has joined #ruby
14:57
schneider has joined #ruby
15:01
Mike11 has joined #ruby
15:01
schneider has quit [Ping timeout: 240 seconds]
15:05
karapetyan has joined #ruby
15:06
schneider has joined #ruby
15:06
karapetyan has quit [Remote host closed the connection]
15:07
apparition has joined #ruby
15:09
hkais has quit [Ping timeout: 264 seconds]
15:10
schneider has quit [Ping timeout: 240 seconds]
15:11
karapetyan has joined #ruby
15:14
DTZUZO has quit [Read error: Connection reset by peer]
15:14
Azure|dc has quit [Read error: Connection reset by peer]
15:14
Azure has joined #ruby
15:15
herbmillerjr has joined #ruby
15:15
schneider has joined #ruby
15:17
<
basic >
konsolebox_: well, try it exactly how i descirbed it, the class method does not see the local variables outside of it
15:18
<
basic >
guessing.. that's how it ise.. i ended up adding the data into the constructor
15:18
<
basic >
guess my design was just wrong
15:18
alfiemax has quit [Remote host closed the connection]
15:18
theRoUS has quit [Ping timeout: 240 seconds]
15:18
<
basic >
can i call a method with predefined locals? because thats kinda what i want(ed)
15:20
nadir has joined #ruby
15:20
schneider has quit [Ping timeout: 264 seconds]
15:21
orbyt_ has joined #ruby
15:22
alfiemax has joined #ruby
15:22
dr3w_ has joined #ruby
15:23
marr has joined #ruby
15:24
schneider has joined #ruby
15:25
Asher has quit [Ping timeout: 240 seconds]
15:26
marr has quit [Remote host closed the connection]
15:27
sidx64_ has quit [Ping timeout: 260 seconds]
15:28
schneider has quit [Ping timeout: 240 seconds]
15:29
Asher has joined #ruby
15:32
tomphp has joined #ruby
15:33
schneider has joined #ruby
15:35
chihhsin has joined #ruby
15:38
schneider has quit [Ping timeout: 256 seconds]
15:40
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:42
schneider has joined #ruby
15:47
darkhanb has joined #ruby
15:47
schneider has quit [Ping timeout: 268 seconds]
15:51
schneider has joined #ruby
15:54
mjolnird has quit [Remote host closed the connection]
15:54
govg has quit [Ping timeout: 256 seconds]
15:56
govg has joined #ruby
15:57
schneider has quit [Ping timeout: 265 seconds]
15:57
apparition has quit [Quit: Bye]
15:59
workmad3 has joined #ruby
15:59
c0ncealed1 has quit [Remote host closed the connection]
16:00
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
16:00
c0ncealed1 has joined #ruby
16:01
schneider has joined #ruby
16:04
workmad3 has quit [Ping timeout: 260 seconds]
16:06
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
16:06
dwcraig has quit [Quit: Leaving]
16:07
DeathRay1977 has joined #ruby
16:10
noobineer has quit [Remote host closed the connection]
16:11
noobineer has joined #ruby
16:11
jdawgaz has joined #ruby
16:13
erlend has quit [Ping timeout: 240 seconds]
16:13
DeathRay1977 has quit []
16:15
erlend has joined #ruby
16:16
poloych has joined #ruby
16:16
AndBobsYourUncle has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
16:18
RougeR has quit [Ping timeout: 264 seconds]
16:19
kurko_ has joined #ruby
16:21
alex`` has joined #ruby
16:24
mroutis has joined #ruby
16:26
AndBobsYourUncle has joined #ruby
16:28
ur5us has joined #ruby
16:33
ur5us has quit [Ping timeout: 256 seconds]
16:35
sameerynho has quit [Ping timeout: 240 seconds]
16:36
BTRE has quit [Ping timeout: 264 seconds]
16:37
workmad3 has joined #ruby
16:37
BTRE has joined #ruby
16:42
sidx64 has joined #ruby
16:42
houhoulis has quit []
16:43
sidx64 has quit [Read error: Connection reset by peer]
16:45
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
16:46
Mike111 has joined #ruby
16:46
macduck has quit [Remote host closed the connection]
16:47
Mike111 has quit [Client Quit]
16:49
Mike11 has quit [Ping timeout: 240 seconds]
16:49
mtkd has quit [Ping timeout: 264 seconds]
16:49
icarus has joined #ruby
16:51
mtkd has joined #ruby
16:52
unreal_ has quit [Ping timeout: 260 seconds]
16:54
unreal has joined #ruby
16:56
cagomez has joined #ruby
16:56
jdawgaz has joined #ruby
16:57
imode has joined #ruby
17:02
Mike11 has joined #ruby
17:03
Mike11 has quit [Max SendQ exceeded]
17:06
nicosmaris has joined #ruby
17:06
Strepsils has joined #ruby
17:06
sylario has quit [Quit: Connection closed for inactivity]
17:13
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17:14
tomphp has joined #ruby
17:14
tomphp has quit [Client Quit]
17:14
tomphp has joined #ruby
17:15
tomphp has quit [Client Quit]
17:22
sidx64 has joined #ruby
17:23
suukim has quit [Quit: Konversation terminated!]
17:24
alfiemax has quit [Ping timeout: 268 seconds]
17:25
alfiemax has joined #ruby
17:27
sidx64 has quit [Client Quit]
17:31
amar has quit [Remote host closed the connection]
17:36
KeyJoo has joined #ruby
17:37
bmurt has joined #ruby
17:37
KeyJoo has quit [Max SendQ exceeded]
17:38
KeyJoo has joined #ruby
17:39
houhoulis has joined #ruby
17:40
banisterfiend has joined #ruby
17:41
<
banisterfiend >
does anyone know an official freenode chan for vscode?
17:41
gokhan1 has joined #ruby
17:42
gokhan1 has quit [Client Quit]
17:44
woodruffw has quit [Ping timeout: 256 seconds]
17:47
Yzguy has joined #ruby
17:48
woodruffw has joined #ruby
17:48
woodruffw has joined #ruby
17:49
oleo has quit [Remote host closed the connection]
17:49
oleo has joined #ruby
17:56
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17:56
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17:57
jdawgaz has joined #ruby
17:57
jdawgaz has quit [Client Quit]
17:58
jdawgaz has joined #ruby
18:00
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
18:01
basic has quit [Ping timeout: 240 seconds]
18:04
zautomata2 has quit [Quit: WeeChat 1.9.1]
18:04
alfiemax has quit [Remote host closed the connection]
18:05
zautomata has joined #ruby
18:06
basic has joined #ruby
18:06
\void has quit [Quit: So long, and thanks for all the fish.]
18:07
despai has joined #ruby
18:08
\void has joined #ruby
18:09
alfiemax has joined #ruby
18:12
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
18:13
basic has quit [Ping timeout: 268 seconds]
18:14
dionysus69 has quit [Quit: dionysus69]
18:17
Mike11 has joined #ruby
18:17
mgraf has joined #ruby
18:18
venmx has joined #ruby
18:19
DenSchub has quit [Read error: Connection reset by peer]
18:21
mgraf has quit [Client Quit]
18:23
erlend has quit [Ping timeout: 260 seconds]
18:23
erlend has joined #ruby
18:24
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
18:27
ur5us has joined #ruby
18:29
ged_ has joined #ruby
18:29
mahlon_ has joined #ruby
18:30
DenSchub has joined #ruby
18:30
ged has quit [Ping timeout: 260 seconds]
18:30
mahlon has quit [Ping timeout: 260 seconds]
18:30
ged_ is now known as ged
18:32
alfiemax has quit [Remote host closed the connection]
18:32
coderphive has quit [Quit: coderphive]
18:32
ur5us has quit [Ping timeout: 264 seconds]
18:32
karapetyan has quit [Remote host closed the connection]
18:33
banisterfiend has joined #ruby
18:33
cagomez_ has joined #ruby
18:36
karapetyan has joined #ruby
18:36
alfiemax has joined #ruby
18:37
cagomez has quit [Ping timeout: 256 seconds]
18:37
jdawgaz has joined #ruby
18:39
cagomez_ has quit [Remote host closed the connection]
18:39
Yzguy has quit [Quit: Zzz...]
18:41
alfiemax has quit [Ping timeout: 255 seconds]
18:41
mgraf has joined #ruby
18:42
imode has quit [Ping timeout: 264 seconds]
18:43
mgraf has quit [Client Quit]
18:45
despai has quit [Quit: ...]
18:48
schneider has quit [Ping timeout: 240 seconds]
18:50
schneider has joined #ruby
18:52
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
18:55
schneider has quit [Ping timeout: 264 seconds]
18:55
imode has joined #ruby
18:59
mgraf has joined #ruby
18:59
schneider has joined #ruby
19:00
banisterfiend has joined #ruby
19:02
mgraf has quit [Client Quit]
19:04
schneider has quit [Ping timeout: 240 seconds]
19:04
AndBobsYourUncle has quit [Ping timeout: 260 seconds]
19:04
alfiemax has joined #ruby
19:06
ciscam has quit [Ping timeout: 260 seconds]
19:06
cagomez has joined #ruby
19:07
despai has joined #ruby
19:07
karapetyan has quit [Remote host closed the connection]
19:07
ciscam has joined #ruby
19:08
schneider has joined #ruby
19:09
alfiemax has quit [Ping timeout: 276 seconds]
19:09
ta_ has quit [Remote host closed the connection]
19:14
schneider has quit [Ping timeout: 264 seconds]
19:15
cagomez has quit [Remote host closed the connection]
19:16
mtkd has quit [Read error: Connection reset by peer]
19:16
cagomez has joined #ruby
19:16
mtkd has joined #ruby
19:17
schneider has joined #ruby
19:21
cagomez has quit [Ping timeout: 265 seconds]
19:21
lelliott has joined #ruby
19:23
schneider has quit [Ping timeout: 265 seconds]
19:27
schneider has joined #ruby
19:27
despai has quit [Quit: ...]
19:28
kaawaa has quit [Ping timeout: 240 seconds]
19:30
kaawaa has joined #ruby
19:30
sagax has quit [Ping timeout: 264 seconds]
19:30
kurko_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
19:31
dstrunk has joined #ruby
19:31
schneider has quit [Ping timeout: 260 seconds]
19:32
Yxhuvud has quit [Read error: Connection reset by peer]
19:35
Toasttifyy2 has joined #ruby
19:35
crankharder has quit [Ping timeout: 264 seconds]
19:36
schneider has joined #ruby
19:36
anisha has joined #ruby
19:38
shinnya has quit [Ping timeout: 260 seconds]
19:39
Yxhuvud has joined #ruby
19:40
kaawaa has quit [Read error: Connection reset by peer]
19:41
schneider has quit [Ping timeout: 264 seconds]
19:41
ciscam has quit [Ping timeout: 276 seconds]
19:41
kaawaa has joined #ruby
19:43
ciscam has joined #ruby
19:44
lelliott has quit [Remote host closed the connection]
19:45
lelliott has joined #ruby
19:45
schneider has joined #ruby
19:48
crankharder has joined #ruby
19:49
ta_ has joined #ruby
19:49
lelliott has quit [Ping timeout: 264 seconds]
19:49
schneider has quit [Ping timeout: 240 seconds]
19:50
despai has joined #ruby
19:52
poloych has quit [Remote host closed the connection]
19:53
geekoncoffee has joined #ruby
19:54
geekoncoffee has quit [Remote host closed the connection]
19:54
schneider has joined #ruby
19:59
schneider has quit [Ping timeout: 265 seconds]
20:03
schneider has joined #ruby
20:05
basic has joined #ruby
20:06
nowhereman_ has quit [Remote host closed the connection]
20:08
schneider has quit [Ping timeout: 260 seconds]
20:10
nowhereman_ has joined #ruby
20:12
ta_ has quit [Remote host closed the connection]
20:12
schneider has joined #ruby
20:12
alex`` has quit [Quit: WeeChat 2.1]
20:14
nowhereman_ has quit [Remote host closed the connection]
20:14
nowhereman_ has joined #ruby
20:16
Cleverson has joined #ruby
20:17
schneider has quit [Ping timeout: 240 seconds]
20:18
ur5us has joined #ruby
20:20
sidx64_ has joined #ruby
20:21
schneider has joined #ruby
20:24
Mike11 has quit [Quit: Leaving.]
20:24
despai has quit [Quit: ...]
20:25
nowhereman_ has quit [Remote host closed the connection]
20:25
amar has joined #ruby
20:25
dstrunk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
20:25
bonhoeffer has joined #ruby
20:26
nowhereman_ has joined #ruby
20:26
schneider has quit [Ping timeout: 240 seconds]
20:27
imode has quit [Ping timeout: 268 seconds]
20:30
char_var[buffer] has joined #ruby
20:30
erlend has quit [Ping timeout: 276 seconds]
20:31
schneider has joined #ruby
20:31
nowhere_man has joined #ruby
20:32
erlend has joined #ruby
20:32
nowhereman_ has quit [Ping timeout: 256 seconds]
20:35
alfiemax has joined #ruby
20:35
schneider has quit [Ping timeout: 240 seconds]
20:36
cagomez has joined #ruby
20:39
anisha has quit [Quit: This computer has gone to sleep]
20:39
alfiemax has quit [Ping timeout: 256 seconds]
20:40
schneider has joined #ruby
20:42
armyriad has quit [Ping timeout: 260 seconds]
20:44
schneider has quit [Ping timeout: 240 seconds]
20:45
armyriad has joined #ruby
20:49
schneider has joined #ruby
20:52
Ltem has joined #ruby
20:53
Ltem has quit [Remote host closed the connection]
20:53
karapetyan has joined #ruby
20:53
venmx has quit [Ping timeout: 256 seconds]
20:53
zzxc has joined #ruby
20:54
schneider has quit [Ping timeout: 276 seconds]
20:57
karapetyan has quit [Ping timeout: 260 seconds]
20:58
schneider has joined #ruby
20:59
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
21:00
KeyJoo has quit [Remote host closed the connection]
21:01
mroutis has quit [Ping timeout: 256 seconds]
21:01
ta_ has joined #ruby
21:02
ellcs has joined #ruby
21:02
schneider has quit [Ping timeout: 240 seconds]
21:06
amar has quit [Remote host closed the connection]
21:07
schneider has joined #ruby
21:09
venmx has joined #ruby
21:12
schneider has quit [Ping timeout: 264 seconds]
21:13
amar has joined #ruby
21:13
amar has quit [Remote host closed the connection]
21:16
amar has joined #ruby
21:16
schneider has joined #ruby
21:20
mtkd has quit [Ping timeout: 265 seconds]
21:20
nicesignal has quit [Remote host closed the connection]
21:20
nicesignal has joined #ruby
21:21
schneider has quit [Ping timeout: 264 seconds]
21:24
zautomata has quit [Changing host]
21:24
zautomata has joined #ruby
21:25
schneider has joined #ruby
21:26
VladGh has quit [Ping timeout: 260 seconds]
21:27
nadir has quit [Quit: Connection closed for inactivity]
21:32
schneider has quit [Ping timeout: 260 seconds]
21:32
dviola has joined #ruby
21:34
kent\n has joined #ruby
21:36
schneider has joined #ruby
21:36
noobineer has quit [Ping timeout: 276 seconds]
21:38
VladGh has joined #ruby
21:38
Dimik has joined #ruby
21:38
jamesaxl has quit [Read error: Connection reset by peer]
21:39
jamesaxl has joined #ruby
21:40
Puffball has joined #ruby
21:41
schneider has quit [Ping timeout: 265 seconds]
21:45
schneider has joined #ruby
21:48
m27frogy has quit [Ping timeout: 255 seconds]
21:49
noobineer has joined #ruby
21:49
m27frogy has joined #ruby
21:50
schneider has quit [Ping timeout: 240 seconds]
21:50
n008f4g_ has quit [Ping timeout: 260 seconds]
21:51
sameerynho has joined #ruby
21:51
psychicist__ has quit [Ping timeout: 260 seconds]
21:52
Burgestrand has quit [Quit: Closing time!]
21:53
orbyt_ has joined #ruby
21:55
schneider has joined #ruby
21:57
alfiemax has joined #ruby
22:00
schneider has quit [Ping timeout: 276 seconds]
22:00
Antiarc has quit [Ping timeout: 260 seconds]
22:01
Antiarc has joined #ruby
22:02
alfiemax has quit [Ping timeout: 268 seconds]
22:02
Antiarc has quit [Read error: Connection reset by peer]
22:03
John_Ivan has quit [Read error: Connection reset by peer]
22:03
Antiarc has joined #ruby
22:04
schneider has joined #ruby
22:05
coderphive has joined #ruby
22:07
ta_ has quit [Ping timeout: 260 seconds]
22:07
ta_ has joined #ruby
22:08
schneider has quit [Ping timeout: 240 seconds]
22:13
schneider has joined #ruby
22:15
bmurt has joined #ruby
22:17
ur5us has quit [Remote host closed the connection]
22:17
jdawgaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
22:17
schneider has quit [Ping timeout: 240 seconds]
22:18
pskosinski has joined #ruby
22:22
schneider has joined #ruby
22:23
jdawgaz has joined #ruby
22:24
houhoulis has quit []
22:27
schneider has quit [Ping timeout: 268 seconds]
22:28
amar has quit [Remote host closed the connection]
22:29
AJA4350 has quit [Ping timeout: 265 seconds]
22:29
Burgestrand has joined #ruby
22:30
ellcs has quit [Ping timeout: 276 seconds]
22:31
schneider has joined #ruby
22:32
karapetyan has joined #ruby
22:34
sidx64_ has quit [Ping timeout: 255 seconds]
22:36
schneider has quit [Ping timeout: 256 seconds]
22:37
amar has joined #ruby
22:38
reber has quit [Read error: Connection reset by peer]
22:39
erlend has quit [Ping timeout: 264 seconds]
22:40
bmurt has quit [Ping timeout: 264 seconds]
22:40
schneider has joined #ruby
22:41
erlend has joined #ruby
22:42
amar has quit [Remote host closed the connection]
22:45
ta_ has quit [Ping timeout: 265 seconds]
22:46
schneider has quit [Ping timeout: 265 seconds]
22:47
bmurt has joined #ruby
22:47
Yzguy has joined #ruby
22:48
venmx has quit [Ping timeout: 256 seconds]
22:49
schneider has joined #ruby
22:51
stairmast0r has quit [Quit: bye]
22:52
stairmast0r has joined #ruby
22:52
ta_ has joined #ruby
22:53
DenSchub_ has joined #ruby
22:53
DenSchub has quit [Ping timeout: 276 seconds]
22:54
DenSchub_ is now known as DenSchub
22:54
schneider has quit [Ping timeout: 264 seconds]
22:58
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
22:59
schneider has joined #ruby
23:03
schneider has quit [Ping timeout: 256 seconds]
23:05
darkhanb has joined #ruby
23:06
mgraf has joined #ruby
23:06
mgraf has quit [Client Quit]
23:07
darkhanb has quit [Client Quit]
23:08
schneider has joined #ruby
23:08
darkhanb has joined #ruby
23:09
AJA4350 has joined #ruby
23:09
sameerynho has quit [Ping timeout: 268 seconds]
23:10
darkhanb has quit [Client Quit]
23:10
amar has joined #ruby
23:10
amar has quit [Remote host closed the connection]
23:12
schneider has quit [Ping timeout: 240 seconds]
23:17
imode has joined #ruby
23:17
schneider has joined #ruby
23:18
Yzguy has quit [Quit: Zzz...]
23:19
phaul has quit [Ping timeout: 265 seconds]
23:23
cagomez has quit [Remote host closed the connection]
23:24
schneider has quit [Ping timeout: 264 seconds]
23:25
yuuji has joined #ruby
23:25
kies has joined #ruby
23:26
ta_ has quit [Ping timeout: 264 seconds]
23:26
schneider has joined #ruby
23:27
yuuji has quit [Quit: Leaving]
23:27
mroutis has joined #ruby
23:27
amar has joined #ruby
23:32
schneider has quit [Ping timeout: 264 seconds]
23:34
ta_ has joined #ruby
23:34
coderphive has quit [Read error: Connection reset by peer]
23:35
schneider has joined #ruby
23:36
raynold has joined #ruby
23:36
Puffball has quit [Remote host closed the connection]
23:39
Puffball has joined #ruby
23:40
schneider has quit [Ping timeout: 256 seconds]
23:41
pabs has quit [Ping timeout: 256 seconds]
23:42
|ifei5g00d has joined #ruby
23:44
schneider has joined #ruby
23:45
phate408 has quit [Remote host closed the connection]
23:49
schneider has quit [Ping timeout: 264 seconds]
23:53
\void has quit [Quit: So long, and thanks for all the fish.]
23:53
schneider has joined #ruby
23:54
Burgestrand has quit [Quit: Closing time!]
23:54
DTZUZO has joined #ruby
23:55
Burgestrand has joined #ruby
23:56
Burgestrand has quit [Client Quit]
23:58
ryzokuken has quit [Remote host closed the connection]
23:59
schneider has quit [Ping timeout: 264 seconds]