00:01
benanne has quit [Quit: kbai]
00:04
Lewix has joined #ruby-lang
00:05
yfeldblum has quit [Ping timeout: 245 seconds]
00:07
gwendall has quit [Ping timeout: 272 seconds]
00:07
gwendall has joined #ruby-lang
00:13
<
Senjai >
bougyman: What do you need to do with the logs?
00:14
Lewix has quit [Remote host closed the connection]
00:14
Lewix has joined #ruby-lang
00:15
Lewix has quit [Changing host]
00:15
Lewix has joined #ruby-lang
00:15
seamon has quit [Remote host closed the connection]
00:19
zgrogan has joined #ruby-lang
00:28
apeiros_ has quit [Remote host closed the connection]
00:29
_fritchie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
00:29
apeiros_ has joined #ruby-lang
00:31
loincloth has quit [Remote host closed the connection]
00:32
matsutomo has joined #ruby-lang
00:32
micaeked has joined #ruby-lang
00:38
_fritchie has joined #ruby-lang
00:40
yfeldblum has joined #ruby-lang
00:43
kurko__ has quit [Ping timeout: 250 seconds]
00:45
yfeldblum has quit [Ping timeout: 244 seconds]
00:50
midhir has quit [Remote host closed the connection]
00:50
midhir has joined #ruby-lang
00:52
emmesswhy has joined #ruby-lang
00:55
midhir has quit [Ping timeout: 250 seconds]
00:55
spetryk has quit [Quit: Be back later ...]
00:56
momomomomo has quit [Quit: momomomomo]
00:56
jgpawletko has joined #ruby-lang
01:00
tenderlove has quit [Quit: Leaving...]
01:00
workmad3 has joined #ruby-lang
01:00
mattyohe has quit [Quit: Connection closed for inactivity]
01:03
|jemc| has quit [Ping timeout: 245 seconds]
01:04
nertzy has joined #ruby-lang
01:05
workmad3 has quit [Ping timeout: 264 seconds]
01:07
jo__ has joined #ruby-lang
01:07
hendranata_ has joined #ruby-lang
01:08
shinnya has quit [Ping timeout: 250 seconds]
01:09
bmichelsen has quit [Quit: ZZZzzz…]
01:11
postmodern has quit [Quit: Leaving]
01:13
spetryk has joined #ruby-lang
01:14
postmodern has joined #ruby-lang
01:16
nertzy has quit [Quit: This computer has gone to sleep]
01:16
simi has joined #ruby-lang
01:16
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
01:16
loincloth has joined #ruby-lang
01:21
spasedgoat has quit []
01:21
wallerdev has quit [Quit: wallerdev]
01:21
loincloth has quit [Ping timeout: 250 seconds]
01:22
yfeldblum has joined #ruby-lang
01:24
tkuchiki has joined #ruby-lang
01:25
mistym has quit [Remote host closed the connection]
01:25
kurko__ has joined #ruby-lang
01:26
diegoviola has joined #ruby-lang
01:28
marr has quit [Ping timeout: 250 seconds]
01:28
|jemc| has joined #ruby-lang
01:29
<
bougyman >
Senjai: just pulling them into a db.
01:29
kurko___ has joined #ruby-lang
01:30
wallerdev has joined #ruby-lang
01:31
kurko__ has quit [Ping timeout: 245 seconds]
01:32
bmichelsen has joined #ruby-lang
01:34
kurko___ has quit [Ping timeout: 250 seconds]
01:35
Lewix has quit [Remote host closed the connection]
01:38
Lewix has joined #ruby-lang
01:38
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
01:40
mistym has joined #ruby-lang
01:46
mattyohe has joined #ruby-lang
01:47
Lewix has quit [Remote host closed the connection]
01:49
iamninja has joined #ruby-lang
01:52
diegoviola has quit [Quit: WeeChat 1.0.1]
01:56
Averna has joined #ruby-lang
01:58
hahuang65 has quit [Ping timeout: 244 seconds]
01:59
amsi has quit [Quit: Leaving]
01:59
AmirolAhmad has joined #ruby-lang
02:00
houhoulis has joined #ruby-lang
02:02
kurko__ has joined #ruby-lang
02:06
djbkd has quit [Quit: My people need me...]
02:07
kurko__ has quit [Read error: No route to host]
02:07
kurko__ has joined #ruby-lang
02:10
simi has quit [Ping timeout: 255 seconds]
02:12
loincloth has joined #ruby-lang
02:13
bmichelsen has quit [Quit: Bye!]
02:14
yusuf1 has joined #ruby-lang
02:14
yusuf1 has quit [Max SendQ exceeded]
02:14
bmichelsen has joined #ruby-lang
02:14
yusuf1 has joined #ruby-lang
02:17
loincloth has quit [Ping timeout: 264 seconds]
02:19
dagda1 has quit [Ping timeout: 258 seconds]
02:21
dagda1 has joined #ruby-lang
02:21
gwendall has quit [Remote host closed the connection]
02:21
amclain has joined #ruby-lang
02:24
cleopatra has quit [Ping timeout: 240 seconds]
02:25
mcclurmc has quit [Remote host closed the connection]
02:28
AmirolAhmad has quit [Remote host closed the connection]
02:31
kurko__ has quit [Ping timeout: 265 seconds]
02:35
kurko__ has joined #ruby-lang
02:38
AmirolAhmad has joined #ruby-lang
02:48
workmad3 has joined #ruby-lang
02:49
<
jdecuirm >
Hi Ruby friends, i'm working with ARGV to get values from command line and then i try to use gets.chomp, but i'm getting an error
02:49
<
jdecuirm >
this is the gist
02:51
wallerdev has quit [Quit: wallerdev]
02:53
senor_jalapeno has joined #ruby-lang
02:53
<
jhass >
jdecuirm: use $stdin.gets
02:54
workmad3 has quit [Ping timeout: 272 seconds]
02:54
<
jhass >
jdecuirm: for the why read the docs of ARGF and know that Kernel#gets delegates to ARGF, not $stdin
02:55
<
jdecuirm >
stdin it's a global variable?
02:55
nertzy has joined #ruby-lang
02:56
<
jdecuirm >
stupid Ruby the hard way
02:56
<
jhass >
well, $stdin is, stdin is a local or method call ;)
02:57
<
jdecuirm >
i have an exercise that says Combine gets.chomp with ARGV to make a script that gets more input
02:57
<
jhass >
which chapter is that?
02:57
<
jdecuirm >
exercise 13
02:58
spastorino has quit [Quit: Connection closed for inactivity]
02:58
<
jhass >
mmh, I think it's teaching you exactly that fact there
02:58
<
jdecuirm >
it just simply does not say anything lol
02:59
<
jhass >
yeah, I think that's sometimes on purpose in that book
02:59
<
jhass >
though then the student question doesn't make any sense, mmh
03:01
<
jdecuirm >
i thought it was as easier as passing two parameters an then using gets.chomp
03:01
<
jdecuirm >
damn you book
03:02
<
jdecuirm >
the only explanation it gives is that ARGV is used to get parameters on command line, and gets.chomp when the script is running
03:02
<
yusuf1 >
hello, i want to recompile gem sqlite3 with berkeley db and i didn't get it right
03:03
<
jhass >
jdecuirm: later chapters seem to clarify, but also do what I said above, read the docs of Kernel#gets and ARGF
03:03
<
yusuf1 >
gem install sqlite3.gem -- --with-sqlite3-include=/usr/db6/include --with-cflags=\"-I/usr/db6/lib\"
03:03
<
jdecuirm >
thanks jhass i'll do
03:03
<
yusuf1 >
but it still sqlite 3 database, not berkeley db
03:03
<
jhass >
I still can't like Zed's ruby style :/
03:03
<
jdecuirm >
what's your book?
03:04
<
jhass >
didn't learn ruby with a book
03:04
<
jdecuirm >
how did you learned it?
03:04
<
jhass >
started working with some existing code + docs + irc
03:05
<
jhass >
note it wasn't my first programming language ;)
03:05
<
jdecuirm >
it's funny because
03:05
<
jdecuirm >
i came from java and C# and objective-c
03:05
<
jdecuirm >
and ruby is giving me headaches
03:05
<
jhass >
yeah that's understandable
03:05
<
jhass >
I came from python at that time
03:06
<
jdecuirm >
i'm more like used to the typed languages i guess
03:06
<
jhass >
jdecuirm: there's not too much code in the online version, but to clarify what I don't like about his style: all his return keywords are superfluous and nobody specifies empty parens
03:07
<
jhass >
give it some time, it'll eventually grow on you ;)
03:09
fclausen has joined #ruby-lang
03:09
<
jdecuirm >
i will jhass, i find ruby funny, just need to practice more logic and solve code problems
03:09
<
jdecuirm >
thanks for the tip with STDIN, now it's working
03:09
<
jdecuirm >
but i need the way lol
03:09
<
jhass >
yeah, have a look at exercism.io after you're through the book
03:10
ikrima has joined #ruby-lang
03:10
<
jdecuirm >
Oh, bookmarking it, thanks jhass!
03:12
loincloth has joined #ruby-lang
03:13
nertzy has quit [Quit: This computer has gone to sleep]
03:13
fclausen_ has joined #ruby-lang
03:14
ikrima has quit [Client Quit]
03:15
fclausen has quit [Ping timeout: 272 seconds]
03:15
ikrima has joined #ruby-lang
03:15
ikrima has quit [Client Quit]
03:15
ikrima has joined #ruby-lang
03:16
sankaber has joined #ruby-lang
03:17
loincloth has quit [Ping timeout: 250 seconds]
03:22
gwendall has joined #ruby-lang
03:24
Lewix has joined #ruby-lang
03:25
Sadin has quit [Remote host closed the connection]
03:26
cornerma1 has joined #ruby-lang
03:26
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
03:27
gwendall has quit [Ping timeout: 265 seconds]
03:28
cornerman has quit [Ping timeout: 245 seconds]
03:29
cornerma1 is now known as cornerman
03:30
kurko__ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
03:31
Sadin has joined #ruby-lang
03:32
Rodya_ has joined #ruby-lang
04:00
mattyohe has quit [Quit: Connection closed for inactivity]
04:05
Averna has quit [Quit: Leaving.]
04:07
Bwild has joined #ruby-lang
04:09
ur5us has quit [Remote host closed the connection]
04:09
senor_jalapeno has quit [Ping timeout: 245 seconds]
04:15
jo__ has quit [Quit: Connection closed for inactivity]
04:19
kiyote23 has quit [Remote host closed the connection]
04:20
hahuang65 has joined #ruby-lang
04:21
apeiros_ has quit [Ping timeout: 250 seconds]
04:24
gwendall has joined #ruby-lang
04:26
g0bl1n has joined #ruby-lang
04:27
shubhamgoyal has joined #ruby-lang
04:29
gwendall has quit [Ping timeout: 272 seconds]
04:30
kiyote23 has joined #ruby-lang
04:30
shubhamgoyal has quit [Remote host closed the connection]
04:34
yusuf1 has quit [Quit: Leaving.]
04:34
shubhamgoyal has joined #ruby-lang
04:37
workmad3 has joined #ruby-lang
04:41
bb010g has joined #ruby-lang
04:42
loincloth has joined #ruby-lang
04:42
g0bl1n has quit [Ping timeout: 244 seconds]
04:42
workmad3 has quit [Ping timeout: 250 seconds]
04:42
matsutomo has quit [Quit: matsutomo]
04:44
gwendall has joined #ruby-lang
04:46
loincloth has quit [Ping timeout: 245 seconds]
04:50
havenwood has joined #ruby-lang
04:51
gix has quit [Ping timeout: 250 seconds]
04:52
yusuf1 has joined #ruby-lang
04:54
ljarvis has quit [Ping timeout: 258 seconds]
04:54
TrafficMan has quit [Ping timeout: 258 seconds]
04:54
ljarvis has joined #ruby-lang
04:54
hagabaka has joined #ruby-lang
04:55
hagebake has quit [Ping timeout: 258 seconds]
04:55
gix has joined #ruby-lang
04:55
djellemah has quit [Ping timeout: 258 seconds]
04:56
djellemah has joined #ruby-lang
04:56
leandrosnunes has quit [Ping timeout: 258 seconds]
04:56
voxxit has quit [Ping timeout: 258 seconds]
04:56
ammar has quit [Ping timeout: 258 seconds]
04:56
leandrosnunes has joined #ruby-lang
04:57
ammar has joined #ruby-lang
04:57
toretore has quit [Ping timeout: 258 seconds]
04:58
jxport has quit [Ping timeout: 258 seconds]
04:58
TrafficMan has joined #ruby-lang
04:59
jxport has joined #ruby-lang
04:59
matsutomo has joined #ruby-lang
04:59
hplar_ has quit [Ping timeout: 258 seconds]
04:59
voxxit has joined #ruby-lang
05:00
mattyohe has joined #ruby-lang
05:00
kapil__ has joined #ruby-lang
05:00
toretore has joined #ruby-lang
05:00
Sadin has quit [Remote host closed the connection]
05:01
caseypatrickdris has quit [Ping timeout: 258 seconds]
05:02
Rodya_ has quit [Quit: Ex-Chat]
05:04
ljarvis has quit [Remote host closed the connection]
05:04
hplar_ has joined #ruby-lang
05:04
ljarvis has joined #ruby-lang
05:04
caseypatrickdris has joined #ruby-lang
05:06
gianlucadv has joined #ruby-lang
05:10
Miphix has joined #ruby-lang
05:11
Sadin has joined #ruby-lang
05:15
yfeldblum has quit [Remote host closed the connection]
05:16
britt_ has joined #ruby-lang
05:20
ur5us has joined #ruby-lang
05:20
<
zgrogan >
sudo reboot
05:21
<
zgrogan >
er... not the termnal =P
05:21
<
ericwood >
irc is hard
05:21
zgrogan has quit [Quit: Leaving]
05:22
banister has quit [Ping timeout: 264 seconds]
05:23
mistym has quit [Remote host closed the connection]
05:24
kyb3r_ has joined #ruby-lang
05:24
ur5us has quit [Ping timeout: 245 seconds]
05:26
pwnz0r has joined #ruby-lang
05:28
apeiros_ has joined #ruby-lang
05:31
nofxx_ has quit [Ping timeout: 264 seconds]
05:32
apeiros_ has quit [Ping timeout: 245 seconds]
05:35
Lewix has quit [Remote host closed the connection]
05:35
gianlucadv has quit [Ping timeout: 250 seconds]
05:42
loincloth has joined #ruby-lang
05:44
Lewix has joined #ruby-lang
05:45
Lewix has quit [Read error: Connection reset by peer]
05:46
loincloth has quit [Ping timeout: 240 seconds]
05:50
mistym has joined #ruby-lang
05:53
brianpWins has joined #ruby-lang
05:55
Lewix has joined #ruby-lang
05:55
Lewix has quit [Changing host]
05:55
Lewix has joined #ruby-lang
06:00
fclausen_ has quit [Ping timeout: 272 seconds]
06:04
kerunaru has joined #ruby-lang
06:04
britt_ has quit [Ping timeout: 245 seconds]
06:07
kiyote23 has quit [Remote host closed the connection]
06:09
jgpawletko has quit [Quit: jgpawletko]
06:11
gwendall has quit [Ping timeout: 258 seconds]
06:16
matsutomo has quit [Quit: matsutomo]
06:17
symm- has joined #ruby-lang
06:18
matsutomo has joined #ruby-lang
06:26
t0rrieri has quit [Quit: Be back later ...]
06:26
workmad3 has joined #ruby-lang
06:31
Iskarlar has joined #ruby-lang
06:31
workmad3 has quit [Ping timeout: 240 seconds]
06:32
rbowlby has quit [Remote host closed the connection]
06:32
RobertBirnie has joined #ruby-lang
06:37
Bwild has quit [Ping timeout: 250 seconds]
06:38
Bwild has joined #ruby-lang
06:40
yfeldblum has joined #ruby-lang
06:43
mustmodify has quit [Read error: Connection reset by peer]
06:44
mustmodify has joined #ruby-lang
06:44
symm- has quit [Ping timeout: 250 seconds]
06:44
kerunaru has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
06:45
yfeldblum has quit [Ping timeout: 272 seconds]
06:47
havenwood has quit []
06:47
ruby-lang370 has joined #ruby-lang
06:47
<
ruby-lang370 >
Hi Everyone
06:48
<
ruby-lang370 >
I have got confusion over next statement and if else conditional statement
06:48
<
ruby-lang370 >
can any one give me clarification b/w these two please
06:48
<
ruby-lang370 >
bcz both are working as same
06:50
pwnz0r has quit [Remote host closed the connection]
07:00
apeiros_ has joined #ruby-lang
07:01
t0rrieri has joined #ruby-lang
07:02
apeiros_ has quit [Remote host closed the connection]
07:03
apeiros_ has joined #ruby-lang
07:03
<
yusuf1 >
how to recompile gem with native extension ?
07:04
<
yusuf1 >
i want to recompile sqlite3 with these parameter
07:04
<
yusuf1 >
CFLAGS="-L/opt/db6/lib" gem install sqlite3.gem -- --with-sqlite3-include=/opt/db6/include
07:04
<
yusuf1 >
but seems didn't work
07:05
t0rrieri has quit [Ping timeout: 240 seconds]
07:06
nofxx_ has joined #ruby-lang
07:07
apeiros_ has quit [Ping timeout: 256 seconds]
07:10
mattyohe has quit [Quit: Connection closed for inactivity]
07:11
gwendall has joined #ruby-lang
07:13
ruby-lang370 has left #ruby-lang [#ruby-lang]
07:16
gwendall has quit [Ping timeout: 265 seconds]
07:16
emmesswhy has quit [Quit: Leaving]
07:19
sumitpahuja has joined #ruby-lang
07:19
sumitpahuja has quit [Client Quit]
07:24
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
07:27
Manchotix has joined #ruby-lang
07:28
apeiros_ has joined #ruby-lang
07:30
Sadin has quit [Remote host closed the connection]
07:32
rbowlby has joined #ruby-lang
07:33
matsutomo has quit [Quit: matsutomo]
07:34
JohnBat26 has joined #ruby-lang
07:35
yfeldblum has joined #ruby-lang
07:36
matsutomo has joined #ruby-lang
07:36
Forgetful_Lion has joined #ruby-lang
07:38
loincloth has joined #ruby-lang
07:40
yfeldblum has quit [Ping timeout: 264 seconds]
07:44
hahuang61 has joined #ruby-lang
07:46
loincloth has quit [Ping timeout: 258 seconds]
07:49
hahuang61 has quit [Quit: WeeChat 1.0.1]
07:51
hahuang61 has joined #ruby-lang
07:53
solars has joined #ruby-lang
07:56
amclain has quit [Quit: Leaving]
07:57
chinmay_dd has joined #ruby-lang
07:58
oleo has quit [Quit: Verlassend]
08:02
t0rrieri has joined #ruby-lang
08:03
arBmind has joined #ruby-lang
08:04
mistym has quit [Remote host closed the connection]
08:05
Iskarlar has joined #ruby-lang
08:06
t0rrieri has quit [Ping timeout: 258 seconds]
08:11
bmichelsen has quit [Quit: ZZZzzz…]
08:12
gwendall has joined #ruby-lang
08:15
workmad3 has joined #ruby-lang
08:17
gwendall has quit [Ping timeout: 258 seconds]
08:20
workmad3 has quit [Ping timeout: 256 seconds]
08:21
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
08:25
charliesome has joined #ruby-lang
08:29
yfeldblum has joined #ruby-lang
08:30
Iskarlar has joined #ruby-lang
08:30
octodoodle has joined #ruby-lang
08:30
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
08:34
yfeldblum has quit [Ping timeout: 264 seconds]
08:34
arBmind has quit [Read error: Connection reset by peer]
08:36
arBmind has joined #ruby-lang
08:37
weaksauce has quit [Ping timeout: 250 seconds]
08:42
loincloth has joined #ruby-lang
08:46
rahul_j has joined #ruby-lang
08:46
gwendall has joined #ruby-lang
08:46
gwendall has quit [Remote host closed the connection]
08:46
arBmind has quit [Quit: Leaving.]
08:46
gwendall has joined #ruby-lang
08:47
loincloth has quit [Ping timeout: 264 seconds]
08:48
houhoulis has quit [Remote host closed the connection]
08:50
rbowlby has quit [Ping timeout: 264 seconds]
08:52
rahul_j has quit [Read error: Connection reset by peer]
08:53
rahul_j has joined #ruby-lang
08:55
rahul_j has quit [Client Quit]
08:55
rahul_j has joined #ruby-lang
08:58
rahul_j has quit [Read error: Connection reset by peer]
09:00
rahul_j has joined #ruby-lang
09:02
Forgetful_Lion has quit [Remote host closed the connection]
09:03
t0rrieri has joined #ruby-lang
09:04
octodoodle has quit [Remote host closed the connection]
09:05
rahul_j has quit [Quit: rahul_j]
09:06
mylar has joined #ruby-lang
09:07
t0rrieri has quit [Ping timeout: 245 seconds]
09:08
kiyote23 has joined #ruby-lang
09:11
hahuang61 has quit [Quit: WeeChat 1.0.1]
09:12
marr has joined #ruby-lang
09:12
elia has joined #ruby-lang
09:12
kiyote23 has quit [Ping timeout: 245 seconds]
09:17
rahul_j has joined #ruby-lang
09:23
yfeldblum has joined #ruby-lang
09:24
Iskarlar has quit [Ping timeout: 250 seconds]
09:25
xcesariox has joined #ruby-lang
09:25
xcesariox has quit [Remote host closed the connection]
09:26
<
yorickpeterse >
morning
09:27
xcesariox has joined #ruby-lang
09:27
benlovell has joined #ruby-lang
09:28
yfeldblum has quit [Ping timeout: 255 seconds]
09:30
ta has quit [Remote host closed the connection]
09:32
simi has joined #ruby-lang
09:35
shuriu has joined #ruby-lang
09:36
AKASkip has joined #ruby-lang
09:40
kyb3r_ has quit [Read error: Connection reset by peer]
09:41
djbkd has joined #ruby-lang
09:42
loincloth has joined #ruby-lang
09:44
rahul_j has quit [Read error: Connection reset by peer]
09:46
shuriu has quit [Remote host closed the connection]
09:46
rahul_j has joined #ruby-lang
09:47
loincloth has quit [Ping timeout: 255 seconds]
09:47
shuriu has joined #ruby-lang
09:51
rahul_j has quit [Client Quit]
09:56
rahul_j has joined #ruby-lang
09:57
matsutomo has quit [Quit: matsutomo]
09:59
Iskarlar has joined #ruby-lang
09:59
workmad3 has joined #ruby-lang
10:00
matsutomo has joined #ruby-lang
10:01
matsutomo has quit [Client Quit]
10:02
nofxx_ has quit [Ping timeout: 264 seconds]
10:03
shuriu_ has joined #ruby-lang
10:04
t0rrieri has joined #ruby-lang
10:04
<
calebk >
i’m all rubied out
10:04
arBmind has joined #ruby-lang
10:05
hendranata_ has quit [Ping timeout: 265 seconds]
10:06
rahul_j has quit [Read error: Connection reset by peer]
10:06
ikrima has quit [Ping timeout: 245 seconds]
10:07
ta has joined #ruby-lang
10:07
shuriu has quit [Ping timeout: 250 seconds]
10:07
rahul_j has joined #ruby-lang
10:08
perryh is now known as perry
10:08
t0rrieri has quit [Ping timeout: 250 seconds]
10:14
arBmind has left #ruby-lang [#ruby-lang]
10:15
rahul_j has quit [Read error: Connection reset by peer]
10:17
yfeldblum has joined #ruby-lang
10:17
rahul_j has joined #ruby-lang
10:18
<
yusuf1 >
how to compile ruby gem with native extensions?
10:18
<
yusuf1 >
CFLAGS="-L/opt/db6/lib" gem install sqlite3.gem -- --with-sqlite3-include=/opt/db6/include
10:18
<
yusuf1 >
i do that and seems not working
10:20
djbkd has quit [Remote host closed the connection]
10:21
shubhamgoyal has quit [Remote host closed the connection]
10:21
yfeldblum has quit [Ping timeout: 250 seconds]
10:22
shubhamgoyal has joined #ruby-lang
10:24
|jemc| has quit [Quit: WeeChat 1.0.1]
10:25
arBmind1 has joined #ruby-lang
10:25
rahul_j has quit [Read error: Connection reset by peer]
10:26
shubhamgoyal has quit [Ping timeout: 240 seconds]
10:26
Aova has joined #ruby-lang
10:27
matsutomo has joined #ruby-lang
10:28
rahul_j has joined #ruby-lang
10:30
nofxx_ has joined #ruby-lang
10:30
nofxx_ has quit [Changing host]
10:30
nofxx_ has joined #ruby-lang
10:32
ikrima has joined #ruby-lang
10:34
rahul_j has quit [Read error: Connection reset by peer]
10:37
rahul_j has joined #ruby-lang
10:38
charliesome has quit [Quit: zzz]
10:42
loincloth has joined #ruby-lang
10:45
benlovell has quit [Read error: Connection reset by peer]
10:46
rahul_j has quit [Read error: Connection reset by peer]
10:47
shuriu_ has quit [Remote host closed the connection]
10:47
loincloth has quit [Ping timeout: 264 seconds]
10:47
rahul_j has joined #ruby-lang
10:52
shuriu has joined #ruby-lang
10:58
matsutomo has quit [Quit: matsutomo]
10:58
rahul_j has quit [Read error: Connection reset by peer]
11:01
rahul_j has joined #ruby-lang
11:03
gwendall_ has joined #ruby-lang
11:03
matsutomo has joined #ruby-lang
11:03
Manchotix has quit [Ping timeout: 244 seconds]
11:04
gwendall has quit [Ping timeout: 244 seconds]
11:04
t0rrieri has joined #ruby-lang
11:06
shubhamgoyal has joined #ruby-lang
11:07
<
yorickpeterse >
yusuf1: you just gem install it
11:08
gwendall_ has quit [Ping timeout: 272 seconds]
11:09
rahul_j has quit [Quit: rahul_j]
11:09
t0rrieri has quit [Ping timeout: 240 seconds]
11:11
yfeldblum has joined #ruby-lang
11:15
rahul_j has joined #ruby-lang
11:16
yusuf1 has quit [Quit: Leaving.]
11:16
yfeldblum has quit [Ping timeout: 258 seconds]
11:20
chinmay_dd has quit [Quit: Leaving]
11:22
spastorino has joined #ruby-lang
11:23
rahul_j has quit [Read error: Connection reset by peer]
11:24
postmodern has quit [Quit: Leaving]
11:25
rahul_j has joined #ruby-lang
11:28
micechal_ has joined #ruby-lang
11:30
micechal has quit [Ping timeout: 244 seconds]
11:33
chinmay_dd has joined #ruby-lang
11:34
rahul_j has quit [Read error: Connection reset by peer]
11:36
rahul_j has joined #ruby-lang
11:38
kerunaru has joined #ruby-lang
11:39
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
11:41
Iskarlar has joined #ruby-lang
11:42
loincloth has joined #ruby-lang
11:43
Iskarlar has quit [Client Quit]
11:43
rahul_j has quit [Read error: Connection reset by peer]
11:43
kerunaru has quit [Ping timeout: 264 seconds]
11:44
leandrosnunes has quit [Ping timeout: 245 seconds]
11:45
rahul_j has joined #ruby-lang
11:47
loincloth has quit [Ping timeout: 258 seconds]
11:48
GBrawl has joined #ruby-lang
11:48
shuriu has quit [Remote host closed the connection]
11:48
tcopeland has quit [Quit: Leaving.]
11:50
rahul_j has quit [Ping timeout: 256 seconds]
11:51
chinmay_dd has quit [Quit: Leaving]
11:51
rahul_j has joined #ruby-lang
11:51
thang has quit [Ping timeout: 264 seconds]
11:52
thang has joined #ruby-lang
11:53
matsutomo has quit [Quit: matsutomo]
11:55
matsutomo has joined #ruby-lang
11:56
arBmind has joined #ruby-lang
11:57
fclausen has joined #ruby-lang
11:58
matsutomo has quit [Client Quit]
11:58
arBmind1 has quit [Ping timeout: 256 seconds]
12:03
gss has joined #ruby-lang
12:04
shuriu has joined #ruby-lang
12:05
ikrima has quit [Ping timeout: 244 seconds]
12:05
Iskarlar has joined #ruby-lang
12:05
t0rrieri has joined #ruby-lang
12:05
yfeldblum has joined #ruby-lang
12:08
octodoodle has joined #ruby-lang
12:09
djbkd has joined #ruby-lang
12:09
t0rrieri has quit [Ping timeout: 250 seconds]
12:10
thang has quit [Ping timeout: 258 seconds]
12:10
GBrawl has quit [Quit: (null)]
12:10
yfeldblum has quit [Ping timeout: 255 seconds]
12:10
fclausen has quit [Ping timeout: 272 seconds]
12:11
thang has joined #ruby-lang
12:13
Manchotix has joined #ruby-lang
12:14
nofxx_ has quit [Ping timeout: 264 seconds]
12:16
mLF has joined #ruby-lang
12:19
rahul_j has quit [Quit: rahul_j]
12:19
ShawnHill has joined #ruby-lang
12:20
<
ShawnHill >
Hi, everyone.
12:22
rcvalle has joined #ruby-lang
12:27
calebk has quit [Quit: calebk]
12:30
micechal has joined #ruby-lang
12:32
micechal_ has quit [Ping timeout: 244 seconds]
12:35
blackoperat has joined #ruby-lang
12:41
rahul_j has joined #ruby-lang
12:42
loincloth has joined #ruby-lang
12:47
loincloth has quit [Ping timeout: 265 seconds]
12:50
GBrawl has joined #ruby-lang
12:52
ShawnHill has quit [Quit: Leaving.]
12:53
ShawnHill has joined #ruby-lang
12:55
kurko__ has joined #ruby-lang
12:55
jxie has quit [Ping timeout: 244 seconds]
12:55
ShawnHill has left #ruby-lang [#ruby-lang]
12:55
ShawnHill has joined #ruby-lang
12:56
ShawnHill has left #ruby-lang [#ruby-lang]
12:56
jxie has joined #ruby-lang
12:57
TvL2386 has joined #ruby-lang
13:04
allomov has joined #ruby-lang
13:04
GBrawl has quit [Quit: (null)]
13:06
gwendall has joined #ruby-lang
13:06
t0rrieri has joined #ruby-lang
13:08
chinmay_dd has joined #ruby-lang
13:09
solars has quit [Ping timeout: 265 seconds]
13:10
t0rrieri has quit [Ping timeout: 240 seconds]
13:15
sarkyniin has joined #ruby-lang
13:16
jo__ has joined #ruby-lang
13:17
mikecmpbll has joined #ruby-lang
13:18
yalue has joined #ruby-lang
13:21
solars has joined #ruby-lang
13:34
yfeldblum has joined #ruby-lang
13:35
[spoiler] has joined #ruby-lang
13:39
yfeldblum has quit [Ping timeout: 255 seconds]
13:39
tcopeland has joined #ruby-lang
13:40
setanta has joined #ruby-lang
13:40
seank_ has quit [Read error: Connection reset by peer]
13:40
seank_ has joined #ruby-lang
13:42
loincloth has joined #ruby-lang
13:44
shuriu has quit [Remote host closed the connection]
13:47
loincloth has quit [Ping timeout: 264 seconds]
13:48
workmad3 has quit [Ping timeout: 244 seconds]
13:49
ecnalyr has joined #ruby-lang
13:59
rahul_j has quit [Quit: rahul_j]
14:01
bodgix_wrk has joined #ruby-lang
14:02
shuriu has joined #ruby-lang
14:04
tkuchiki has quit [Remote host closed the connection]
14:05
tkuchiki has joined #ruby-lang
14:06
workmad3 has joined #ruby-lang
14:07
t0rrieri has joined #ruby-lang
14:09
tkuchiki has quit [Ping timeout: 240 seconds]
14:11
t0rrieri has quit [Ping timeout: 264 seconds]
14:13
gss_ has joined #ruby-lang
14:14
Lewix has joined #ruby-lang
14:15
Lewix has quit [Changing host]
14:15
Lewix has joined #ruby-lang
14:15
AKASkip has quit [Ping timeout: 265 seconds]
14:16
gss has quit [Ping timeout: 250 seconds]
14:16
AmirolAhmad has quit [Remote host closed the connection]
14:18
sankaber has joined #ruby-lang
14:21
djbkd has quit [Read error: Connection reset by peer]
14:21
djbkd has joined #ruby-lang
14:22
enebo has joined #ruby-lang
14:24
senor_jalapeno has joined #ruby-lang
14:26
djbkd has quit [Ping timeout: 255 seconds]
14:27
stef204 has joined #ruby-lang
14:28
yfeldblum has joined #ruby-lang
14:29
oleo has joined #ruby-lang
14:29
iamninja has quit [Quit: ZZZzzz…]
14:31
TvL2386 has quit [Quit: Ex-Chat]
14:32
yfeldblum has quit [Ping timeout: 250 seconds]
14:33
jgpawletko has joined #ruby-lang
14:34
malconis has joined #ruby-lang
14:34
malconis has quit [Remote host closed the connection]
14:38
malconis has joined #ruby-lang
14:42
shinnya has joined #ruby-lang
14:42
JohnBat26 has quit [Ping timeout: 245 seconds]
14:42
loincloth has joined #ruby-lang
14:43
levifig has quit [Ping timeout: 256 seconds]
14:45
levifig has joined #ruby-lang
14:46
datazombie has joined #ruby-lang
14:46
loincloth has quit [Ping timeout: 240 seconds]
14:53
gwendall has quit [Remote host closed the connection]
14:55
senor_jalapeno has quit [Ping timeout: 264 seconds]
14:59
iamninja has joined #ruby-lang
14:59
kerunaru has joined #ruby-lang
15:02
jkad1 has joined #ruby-lang
15:02
whippythellama has joined #ruby-lang
15:07
rahul_j has joined #ruby-lang
15:07
t0rrieri has joined #ruby-lang
15:08
badeball has quit [Remote host closed the connection]
15:09
jkad1 has quit [Quit: WeeChat 1.0.1]
15:10
g0bl1n has joined #ruby-lang
15:10
g0bl1n has joined #ruby-lang
15:12
Rodya_ has joined #ruby-lang
15:12
t0rrieri has quit [Ping timeout: 245 seconds]
15:13
gss_ has quit [Remote host closed the connection]
15:14
mcclurmc has joined #ruby-lang
15:15
GBrawl has joined #ruby-lang
15:16
kurko__ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
15:17
gss has joined #ruby-lang
15:18
badeball has joined #ruby-lang
15:19
loincloth has joined #ruby-lang
15:20
banister has joined #ruby-lang
15:22
yfeldblum has joined #ruby-lang
15:23
banister has quit [Read error: Connection reset by peer]
15:25
spuk has quit [Read error: Connection reset by peer]
15:27
yfeldblum has quit [Ping timeout: 250 seconds]
15:27
t0rrieri has joined #ruby-lang
15:28
ta has quit [Remote host closed the connection]
15:29
spuk has joined #ruby-lang
15:29
mcclurmc has quit [Remote host closed the connection]
15:29
mcclurmc has joined #ruby-lang
15:30
kiyote23 has joined #ruby-lang
15:30
mcclurmc has quit [Remote host closed the connection]
15:34
senor_jalapeno has joined #ruby-lang
15:35
rahul_j has quit [Ping timeout: 245 seconds]
15:37
allomov has quit [Remote host closed the connection]
15:37
cmhobbs has joined #ruby-lang
15:37
cmhobbs has quit [Changing host]
15:37
cmhobbs has joined #ruby-lang
15:39
kerunaru has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
15:40
tenderlove has joined #ruby-lang
15:40
kerunaru has joined #ruby-lang
15:41
klmlfl has joined #ruby-lang
15:41
mcclurmc has joined #ruby-lang
15:42
cornerma1 has joined #ruby-lang
15:44
mistym has joined #ruby-lang
15:45
cornerman has quit [Ping timeout: 250 seconds]
15:45
cornerma1 is now known as cornerman
15:45
Tig_ has joined #ruby-lang
15:48
mistym has quit [Remote host closed the connection]
15:48
mLF has quit [Ping timeout: 250 seconds]
15:48
shubhamgoyal has quit [Remote host closed the connection]
15:48
klmlfl has quit [Remote host closed the connection]
15:48
miqui_ has joined #ruby-lang
15:50
rikkipitt has joined #ruby-lang
15:53
shubhamgoyal has joined #ruby-lang
15:53
banister has joined #ruby-lang
15:54
kurko__ has joined #ruby-lang
15:55
AmirolAhmad has joined #ruby-lang
15:55
jo__ has quit [Quit: Connection closed for inactivity]
15:57
AmirolAhmad has quit [Remote host closed the connection]
15:57
yfeldblum has joined #ruby-lang
15:57
AmirolAhmad has joined #ruby-lang
15:58
kiyote23 has quit [Remote host closed the connection]
15:59
kiyote23 has joined #ruby-lang
16:01
rbowlby has joined #ruby-lang
16:01
kapil__ has quit [Quit: Connection closed for inactivity]
16:01
yfeldblum has quit [Ping timeout: 240 seconds]
16:02
Tig_ has quit [Ping timeout: 246 seconds]
16:04
kiyote23 has quit [Ping timeout: 255 seconds]
16:04
g0bl1n has quit [Quit: Leaving]
16:06
rippa has joined #ruby-lang
16:06
rbowlby has quit [Ping timeout: 255 seconds]
16:10
banister has quit [Read error: Connection reset by peer]
16:10
mistym has joined #ruby-lang
16:11
solars has quit [Ping timeout: 255 seconds]
16:14
Manchotix has quit [Remote host closed the connection]
16:15
AmirolAhmad has quit [Remote host closed the connection]
16:15
kiyote23 has joined #ruby-lang
16:20
kiyote23 has quit [Remote host closed the connection]
16:20
AmirolAhmad has joined #ruby-lang
16:21
caseypatrickdris has quit [Remote host closed the connection]
16:22
|jemc| has joined #ruby-lang
16:23
apeiros_ has quit [Remote host closed the connection]
16:24
apeiros_ has joined #ruby-lang
16:25
havenwood has joined #ruby-lang
16:28
apeiros_ has quit [Ping timeout: 250 seconds]
16:30
AmirolAhmad has quit [Remote host closed the connection]
16:31
AmirolAhmad has joined #ruby-lang
16:32
GBrawl_ has joined #ruby-lang
16:34
mLF has joined #ruby-lang
16:34
AmirolAhmad has quit [Remote host closed the connection]
16:34
klmlfl has joined #ruby-lang
16:35
GBrawl has quit [Ping timeout: 245 seconds]
16:37
shuriu has quit [Remote host closed the connection]
16:40
kiyote23 has joined #ruby-lang
16:41
Vivex has joined #ruby-lang
16:42
ecnalyr has quit [Quit: Macbook has gone to sleep. . .]
16:42
gjaldon has joined #ruby-lang
16:43
kiyote23 has quit [Remote host closed the connection]
16:43
caseypatrickdris has joined #ruby-lang
16:45
kiyote23 has joined #ruby-lang
16:48
Rodya_ has quit [Quit: Ex-Chat]
16:49
kiyote23 has quit [Ping timeout: 265 seconds]
16:50
pwelch has joined #ruby-lang
16:51
yfeldblum has joined #ruby-lang
16:53
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
16:53
kiyote23 has joined #ruby-lang
16:56
yfeldblum has quit [Ping timeout: 264 seconds]
16:57
kiyote23 has quit [Remote host closed the connection]
17:00
rippa has joined #ruby-lang
17:03
apeiros_ has joined #ruby-lang
17:03
octodoodle has joined #ruby-lang
17:05
GBrawl_ has quit [Ping timeout: 258 seconds]
17:05
AKASkip has joined #ruby-lang
17:08
gjaldon has quit [Remote host closed the connection]
17:10
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
17:10
mistym has quit [Remote host closed the connection]
17:11
arBmind has quit [Quit: Leaving.]
17:12
gjaldon has joined #ruby-lang
17:20
micaeked has quit [Ping timeout: 272 seconds]
17:21
bb010g has quit [Quit: Connection closed for inactivity]
17:23
symm- has joined #ruby-lang
17:24
amsi has joined #ruby-lang
17:26
banister has joined #ruby-lang
17:26
banister has quit [Max SendQ exceeded]
17:26
banister has joined #ruby-lang
17:27
mistym has joined #ruby-lang
17:29
mikecmpbll has quit [Quit: ciao.]
17:30
bodgix_wrk1 has joined #ruby-lang
17:30
bodgix_wrk has quit [Ping timeout: 245 seconds]
17:30
GBrawl has joined #ruby-lang
17:34
bodgix_wrk1 has quit [Client Quit]
17:34
bodgix_wrk has joined #ruby-lang
17:35
t0rrieri has quit [Quit: Be back later ...]
17:35
t0rrieri has joined #ruby-lang
17:35
bodgix_wrk has quit [Client Quit]
17:36
arBmind has joined #ruby-lang
17:37
kerunaru has quit [Read error: Connection reset by peer]
17:38
centrx has joined #ruby-lang
17:41
<
Senjai >
mustmodify: interesting
17:41
<
Senjai >
is difference always a decimal?
17:42
<
Senjai >
You should throw a binding.pry
17:42
<
Senjai >
and inspect the value of difference
17:42
<
Senjai >
until one fails
17:42
<
mustmodify >
It's always a BigDecimal, afaik.
17:42
<
Senjai >
you do that
17:43
<
Senjai >
mustmodify: Can you try using #power instead
17:43
<
Senjai >
(bigdecimal * 0.1.to_d).power(1.07)
17:44
<
mustmodify >
I guess I can but ... should it matter?
17:44
<
Senjai >
mustmodify: According todocs
17:44
<
Senjai >
The argument in power
17:44
<
Senjai >
must be an integer
17:44
<
Senjai >
yours is not an integer
17:44
<
mustmodify >
Senjai: Hm...
17:44
<
mustmodify >
interesting.
17:44
<
mustmodify >
and dumb, but ok.
17:45
<
mustmodify >
I guess that could be it.
17:46
ta has joined #ruby-lang
17:46
<
mustmodify >
weird that it's intermittent.
17:46
shazaum has joined #ruby-lang
17:47
<
mustmodify >
interesting.
17:47
shazaum has quit [Changing host]
17:47
shazaum has joined #ruby-lang
17:47
Sadin has joined #ruby-lang
17:48
<
mustmodify >
1000000000.times { BigDecimal.new('2E0') ** 1.07 } resulted in a failure eventually.
17:49
elia has quit [Quit: Computer has gone to sleep.]
17:49
skade has joined #ruby-lang
17:49
iamninja has quit [Quit: ZZZzzz…]
17:50
emmesswhy has joined #ruby-lang
17:51
shazaum has left #ruby-lang ["Leaving"]
17:52
mattyohe has joined #ruby-lang
17:53
<
Senjai >
I would open a ticket to bigdecimal about it
17:53
<
Senjai >
But I would still see if it fails when the exponent is a whole number
17:55
arBmind has quit [Quit: Leaving.]
17:55
skade has quit [Quit: Computer has gone to sleep.]
17:56
arBmind has joined #ruby-lang
17:56
<
mustmodify >
super interesting... there's a pattern.
17:56
<
mustmodify >
ah... you can't see it because it doesn't wrap.
17:56
<
mustmodify >
it fails every n times.
17:57
<
Senjai >
mustmodify: My 1000000000.times { BigDecimal.new('2E0') ** 1.07 } hasn'
17:57
<
Senjai >
hasn't failed yet
17:57
<
mustmodify >
must be a versioning issue.
17:57
<
Senjai >
Failed 0 times out of 10000 tries.
17:58
<
Senjai >
ruby 2.1.2p95 (2014-05-08 revision 45877) [i686-linux]
17:58
<
Senjai >
I think you should still file a bug somewhere
17:58
<
Senjai >
with your version
17:59
<
mustmodify >
will do
17:59
<
Senjai >
Try it with mine
17:59
<
Senjai >
and see if it goes away
17:59
wallerdev has joined #ruby-lang
17:59
chinmay_dd has quit [Quit: Leaving]
18:00
Bwild has quit [Quit: leaving]
18:02
chinmay_dd has joined #ruby-lang
18:04
GBrawl has quit [Ping timeout: 272 seconds]
18:08
RobertBirnie has joined #ruby-lang
18:09
gss has quit [Remote host closed the connection]
18:10
rikkipitt has quit [Remote host closed the connection]
18:10
seanosaur has joined #ruby-lang
18:13
allomov has joined #ruby-lang
18:15
workmad3 has quit [Ping timeout: 256 seconds]
18:17
allomov has quit [Remote host closed the connection]
18:18
rbowlby has joined #ruby-lang
18:19
mcclurmc has quit [Remote host closed the connection]
18:20
shazaum has joined #ruby-lang
18:21
skade has joined #ruby-lang
18:24
shazaum has quit [Changing host]
18:24
shazaum has joined #ruby-lang
18:25
wallerdev has quit [Quit: wallerdev]
18:26
SHyx0rmZ has quit [Remote host closed the connection]
18:27
gss has joined #ruby-lang
18:28
SHyx0rmZ has joined #ruby-lang
18:29
RobertBirnie has quit [Ping timeout: 245 seconds]
18:32
mustmodify has left #ruby-lang [#ruby-lang]
18:32
RobertBirnie has joined #ruby-lang
18:33
RobertBirnie has quit [Read error: Connection reset by peer]
18:33
brianpWins has quit [Quit: brianpWins]
18:34
wallerdev has joined #ruby-lang
18:34
skade has quit [Quit: Computer has gone to sleep.]
18:35
ikrima has joined #ruby-lang
18:35
RobertBirnie has joined #ruby-lang
18:35
Miphix has quit [Ping timeout: 265 seconds]
18:39
yfeldblum has joined #ruby-lang
18:41
hahuang61 has joined #ruby-lang
18:43
yfeldblum has quit [Ping timeout: 245 seconds]
18:46
chinmay_dd has quit [Quit: Leaving]
18:46
matp has quit [Quit: Bye!]
18:46
seanosaur has quit []
18:48
matp has joined #ruby-lang
18:52
mcclurmc has joined #ruby-lang
18:53
kiyote23 has joined #ruby-lang
18:55
<
[spoiler] >
I can't reproduce that bug Senjai and [person that left]
18:55
mcclurmc has quit [Remote host closed the connection]
18:56
<
[spoiler] >
I tried on a few of our servers 1_000_000_000_000_000_000.times
18:56
<
Senjai >
[spoiler]: Neither can I
18:56
<
[spoiler] >
no wait
18:56
<
[spoiler] >
take away 2 groups of 000
18:56
<
Senjai >
[spoiler]: But he didn't tell me what version he was running either
18:58
<
[spoiler] >
I think it might've been a memory issue?
18:58
spetryk has joined #ruby-lang
18:58
<
[spoiler] >
what exception did it raise?
18:59
hahuang61 has quit [Quit: WeeChat 1.0.1]
18:59
shazaum has quit [Quit: Leaving]
18:59
<
[spoiler] >
bigdecimal are arbitrary numbers
18:59
shazaum has joined #ruby-lang
19:00
nofxx_ has joined #ruby-lang
19:00
nofxx_ has quit [Changing host]
19:00
nofxx_ has joined #ruby-lang
19:00
shazaum has joined #ruby-lang
19:00
shazaum has quit [Changing host]
19:02
yfeldblum has joined #ruby-lang
19:02
mcclurmc has joined #ruby-lang
19:03
yfeldblum has quit [Remote host closed the connection]
19:04
yfeldblum has joined #ruby-lang
19:04
shazaum has quit [Client Quit]
19:04
mcclurmc has quit [Remote host closed the connection]
19:04
mcclurmc has joined #ruby-lang
19:04
shazaum has joined #ruby-lang
19:05
hahuang61 has joined #ruby-lang
19:05
shazaum has quit [Changing host]
19:05
shazaum has joined #ruby-lang
19:12
hahuang61 has quit [Quit: WeeChat 1.0.1]
19:12
xsdg_ has quit [Quit: Reconnecting]
19:12
xsdg has joined #ruby-lang
19:14
hahuang61 has joined #ruby-lang
19:17
djbkd has joined #ruby-lang
19:18
nathanstitt has joined #ruby-lang
19:22
spetryk has quit [Quit: Be back later ...]
19:24
gjaldon has quit []
19:27
arBmind has quit [Ping timeout: 264 seconds]
19:28
spetryk has joined #ruby-lang
19:29
kiyote23 has quit [Remote host closed the connection]
19:30
kiyote23 has joined #ruby-lang
19:31
klmlfl_ has joined #ruby-lang
19:34
ikrima has quit [Ping timeout: 264 seconds]
19:34
<
[spoiler] >
what's `value_of` I've never seen it before
19:35
klmlfl has quit [Ping timeout: 264 seconds]
19:35
gss has quit [Remote host closed the connection]
19:35
arBmind has joined #ruby-lang
19:35
<
[spoiler] >
anyway though, I can't seem to reproduce the error :/
19:39
st0mar has joined #ruby-lang
19:41
ozzloy_ is now known as ozzloy
19:41
ozzloy has quit [Changing host]
19:41
ozzloy has joined #ruby-lang
19:42
ur5us has joined #ruby-lang
19:49
arBmind1 has joined #ruby-lang
19:50
arBmind has quit [Ping timeout: 264 seconds]
19:58
nertzy has joined #ruby-lang
19:59
octodoodle has quit [Remote host closed the connection]
20:01
oleo has quit [Quit: Verlassend]
20:02
oleo has joined #ruby-lang
20:02
oleo has quit [Max SendQ exceeded]
20:03
oleo has joined #ruby-lang
20:04
oleo has quit [Read error: Connection reset by peer]
20:04
soraher___ is now known as soraher
20:05
oleo has joined #ruby-lang
20:05
nertzy has quit [Quit: Leaving]
20:07
calebk has joined #ruby-lang
20:08
RobertBirnie has quit [Ping timeout: 258 seconds]
20:08
micechal has quit [Read error: Connection reset by peer]
20:08
nertzy has joined #ruby-lang
20:08
RobertBirnie has joined #ruby-lang
20:09
calebk has quit [Client Quit]
20:10
wallerdev has quit [Quit: wallerdev]
20:11
calebk has joined #ruby-lang
20:12
wallerdev has joined #ruby-lang
20:14
micechal has joined #ruby-lang
20:15
mistym has quit [Remote host closed the connection]
20:17
imperator2 has joined #ruby-lang
20:17
imperator2 is now known as imperator
20:17
kiyote23 has quit [Remote host closed the connection]
20:18
kiyote23 has joined #ruby-lang
20:21
jkad1 has joined #ruby-lang
20:22
arBmind1 has quit [Quit: Leaving.]
20:23
kiyote23 has quit [Ping timeout: 256 seconds]
20:23
kiyote23_ has joined #ruby-lang
20:31
_fritchie has joined #ruby-lang
20:39
djbkd has quit [Remote host closed the connection]
20:42
sonne has joined #ruby-lang
20:42
bb010g has joined #ruby-lang
20:42
oleo is now known as Guest5890
20:42
oleo__ has joined #ruby-lang
20:43
oleo__ has quit [Read error: Connection reset by peer]
20:46
Guest5890 has quit [Ping timeout: 264 seconds]
20:47
SkramX__ is now known as SkramX
20:48
ed112211 has joined #ruby-lang
20:50
oleo__ has joined #ruby-lang
20:50
jam__ has joined #ruby-lang
20:51
jam___ has joined #ruby-lang
20:53
oleo__ is now known as oleo
20:57
allomov has joined #ruby-lang
20:58
chouhoul_ has joined #ruby-lang
20:59
[spoiler] has quit [Quit: Leaving]
21:02
djbkd has joined #ruby-lang
21:02
chouhoulis has quit [Ping timeout: 265 seconds]
21:05
shazaum has quit [Quit: Leaving]
21:06
imperator has quit [Quit: Valete!]
21:07
JoL1hAHN has quit [Ping timeout: 258 seconds]
21:09
apt-get_ has joined #ruby-lang
21:11
mistym has joined #ruby-lang
21:11
mLF has quit [Ping timeout: 245 seconds]
21:11
sarkyniin has quit [Ping timeout: 244 seconds]
21:11
yalue has quit [Quit: return 0;]
21:12
chouhoul_ has quit [Remote host closed the connection]
21:13
chouhoulis has joined #ruby-lang
21:13
JohnBat26 has joined #ruby-lang
21:17
Kingpin_ has joined #ruby-lang
21:18
klmlfl_ has quit [Remote host closed the connection]
21:18
klmlfl has joined #ruby-lang
21:18
kurko__ has quit [Read error: Connection reset by peer]
21:19
kurko__ has joined #ruby-lang
21:24
klmlfl has quit [Ping timeout: 245 seconds]
21:25
emmesswhy has quit [Quit: This computer has gone to sleep]
21:26
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
21:29
apt-get__ has joined #ruby-lang
21:31
apt-get_ has quit [Ping timeout: 250 seconds]
21:34
tkuchiki has joined #ruby-lang
21:34
JoL1hAHN has joined #ruby-lang
21:38
devgiant has joined #ruby-lang
21:45
postmodern has joined #ruby-lang
21:46
kurko__ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
21:47
allomov has quit [Remote host closed the connection]
21:51
yfeldblu_ has joined #ruby-lang
21:53
havenwood has quit [Remote host closed the connection]
21:54
yfeldblum has quit [Ping timeout: 250 seconds]
21:56
fusillicode1 has quit [Ping timeout: 255 seconds]
22:02
<
zenspider >
I can't repro.
22:02
centrx has quit [Quit: Science is organized knowledge, wisdom is organized life.]
22:02
antoniusglock has left #ruby-lang [#ruby-lang]
22:02
tcopeland has quit [Quit: Leaving.]
22:07
GBrawl has joined #ruby-lang
22:10
apt-get__ has quit [Remote host closed the connection]
22:11
RobertBirnie has quit [Ping timeout: 256 seconds]
22:11
weaksauce has joined #ruby-lang
22:12
charliesome has joined #ruby-lang
22:14
RobertBirnie has joined #ruby-lang
22:15
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
22:22
hahuang61 has quit [Ping timeout: 272 seconds]
22:29
hahuang61 has joined #ruby-lang
22:30
kek has joined #ruby-lang
22:31
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
22:32
djellemah has quit [Quit: Leaving]
22:33
momomomomo has joined #ruby-lang
22:37
skade has joined #ruby-lang
22:38
skade has quit [Client Quit]
22:38
skade has joined #ruby-lang
22:40
GBrawl has quit [Ping timeout: 272 seconds]
22:44
tenderlove has quit [Quit: Leaving...]
22:44
marr has quit [Ping timeout: 258 seconds]
22:44
caseypatrickdris has quit [Remote host closed the connection]
22:46
havenwood has joined #ruby-lang
22:48
setanta has quit [Quit: Leaving]
22:54
charliesome has quit [Quit: zzz]
22:54
tenderlove has joined #ruby-lang
22:57
havenwood has quit [Ping timeout: 250 seconds]
22:58
jam__ has quit [Quit: Connection closed for inactivity]
22:58
jam___ has quit [Quit: Connection closed for inactivity]
23:01
caseypatrickdris has joined #ruby-lang
23:02
zgrogan has joined #ruby-lang
23:04
senor_jalapeno has quit [Remote host closed the connection]
23:04
mistym has quit [Remote host closed the connection]
23:05
mistym has joined #ruby-lang
23:06
cmhobbs has quit [Remote host closed the connection]
23:08
cantonic has joined #ruby-lang
23:08
wallerdev has quit [Quit: wallerdev]
23:08
nathanstitt has quit [Ping timeout: 255 seconds]
23:11
<
zgrogan >
recommended ruby noob book? i'm working through peter cooper's beginning ruby. ok?
23:11
<
zenspider >
how newby?
23:12
<
zgrogan >
senior CS student new to ruby
23:13
<
zgrogan >
have worked with C/C++, java, PhP, JavaScript
23:15
<
zenspider >
Ok. then I think the pickaxe would be just fine.
23:16
<
zenspider >
dave thomas' book... ala pragprog.com
23:16
<
zgrogan >
thank you
23:19
tcopeland has joined #ruby-lang
23:20
djbkd has quit [Remote host closed the connection]
23:20
GBrawl has joined #ruby-lang
23:21
GBrawl has quit [Client Quit]
23:21
fclausen has joined #ruby-lang
23:22
charliesome has joined #ruby-lang
23:24
marr has joined #ruby-lang
23:24
GBrawl has joined #ruby-lang
23:25
djbkd has joined #ruby-lang
23:30
djbkd has quit [Remote host closed the connection]
23:30
fclausen has quit [Quit: leaving]
23:30
djbkd has joined #ruby-lang
23:30
whippythellama has quit [Quit: whippythellama]
23:35
tkuchiki has quit [Remote host closed the connection]
23:36
tkuchiki has joined #ruby-lang
23:36
tkuchiki has quit [Read error: Connection reset by peer]
23:37
tkuchiki has joined #ruby-lang
23:38
mistym has quit [Remote host closed the connection]
23:39
_fritchie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
23:39
mistym has joined #ruby-lang
23:40
Menorah has joined #ruby-lang
23:41
tkuchiki has quit [Ping timeout: 244 seconds]
23:42
apeiros_ has quit [Remote host closed the connection]
23:43
skade has quit [Quit: Computer has gone to sleep.]
23:43
apeiros_ has joined #ruby-lang
23:43
GBrawl has quit [Quit: (null)]
23:44
_fritchie has joined #ruby-lang
23:46
AKASkip has quit [Ping timeout: 245 seconds]
23:46
wallerdev has joined #ruby-lang
23:46
momomomomo has quit [Quit: momomomomo]
23:48
Lewix has joined #ruby-lang
23:50
nathanstitt has joined #ruby-lang
23:53
zgrogan has quit [Remote host closed the connection]
23:55
yfeldblu_ has quit [Ping timeout: 240 seconds]
23:59
Menorah has quit [Quit: This computer has gone to sleep]
23:59
momomomomo has joined #ruby-lang
23:59
_JokerDoom has joined #ruby-lang