00:00
steez_ has left #ruby-lang [#ruby-lang]
00:01
flebel has quit [Quit: :)]
00:01
steez has joined #ruby-lang
00:03
slyphon has quit [Quit: WeeChat 0.3.8]
00:03
slyphon has joined #ruby-lang
00:04
kentos has quit [Quit: Leaving]
00:07
erichmenge has joined #ruby-lang
00:07
methods has quit [Quit: Leaving.]
00:09
kentos has joined #ruby-lang
00:16
Tearan has joined #ruby-lang
00:18
krohrbaugh1 has quit [Quit: Leaving.]
00:22
lcdhoffman has quit [Quit: lcdhoffman]
00:26
flebel has joined #ruby-lang
00:26
flebel has quit [Excess Flood]
00:28
imajes has quit [Excess Flood]
00:29
flebel has joined #ruby-lang
00:31
imajes has joined #ruby-lang
00:31
Tearan has quit [Quit: Sleepy Badger....]
00:35
irleif has joined #ruby-lang
00:40
jperry2_ has quit [Quit: jperry2_]
00:41
snk has quit [Ping timeout: 246 seconds]
00:42
Madis has quit [Remote host closed the connection]
00:42
snk has joined #ruby-lang
00:43
gsav has joined #ruby-lang
00:46
erichmenge has quit [Quit: Be back later]
00:46
lsegal has joined #ruby-lang
00:49
gmci has quit [Ping timeout: 248 seconds]
00:55
gmci has joined #ruby-lang
00:56
Sambalero has joined #ruby-lang
00:57
irleif has quit [Quit: Computer has gone to sleep.]
00:59
My_Hearing has joined #ruby-lang
01:00
snorkdude has quit [Remote host closed the connection]
01:00
brianpWins has quit [Quit: brianpWins]
01:02
Mon_Ouie has quit [Ping timeout: 246 seconds]
01:03
Tearan has joined #ruby-lang
01:03
conorreedy has joined #ruby-lang
01:04
marc3000 has joined #ruby-lang
01:19
Nisstyre-laptop has quit [Quit: Leaving]
01:24
irleif has joined #ruby-lang
01:26
ryanlecompte has quit [Remote host closed the connection]
01:31
thatdutchguy has quit [Remote host closed the connection]
01:32
kjr has joined #ruby-lang
01:32
dous has quit [Remote host closed the connection]
01:33
datanoise has joined #ruby-lang
01:37
datanoise has quit [Ping timeout: 245 seconds]
01:45
mrsolo has quit [Quit: Leaving]
01:49
Tearan has quit [Quit: Sleepy Badger....]
01:50
snorkdude has joined #ruby-lang
01:52
BMF has joined #ruby-lang
01:55
Kingy has quit [Quit: Leaving]
01:55
arkadio has joined #ruby-lang
01:55
<
arkadio >
how can I append text to a line in a txt file?
01:56
VGoff is now known as VGoff_afk
01:57
snorkdude has quit [Remote host closed the connection]
01:59
justinmcp has quit [Remote host closed the connection]
01:59
imajes has quit [Excess Flood]
01:59
thatdutchguy has joined #ruby-lang
02:00
imajes has joined #ruby-lang
02:02
VGoff_afk is now known as VGoff
02:03
VGoff is now known as VGoff_afk
02:04
My_Hearing has quit [Ping timeout: 260 seconds]
02:05
<
kentos >
File.open('thefile.txt', "a+"){ |f| f.puts "write to file"} does that do it? arkadio
02:05
roadt has joined #ruby-lang
02:05
Sambalero has quit [Remote host closed the connection]
02:06
<
arkadio >
will it append to the end of the file?
02:06
<
kentos >
hehehe, yes, I'm awesome aren't I
02:06
<
arkadio >
I want to append a word to a random line
02:06
<
kentos >
oh, interesting
02:08
diegoviola has joined #ruby-lang
02:12
<
kentos >
that post title was essentially my google
02:12
krohrbaugh1 has joined #ruby-lang
02:12
<
kentos >
<3 stack overflow
02:14
dous has joined #ruby-lang
02:14
gsav has quit [Quit: Lost terminal]
02:16
Sambalero has joined #ruby-lang
02:18
<
kentos >
I think I found a better way actually arkadio
02:19
<
kentos >
so lines = IO.readlines("thefile.txt"); lines[1] << " hahaha i'm awesome"; FIle.open("thefile.txt", "r+"){|f|f.puts lines}
02:20
irleif has quit [Quit: Computer has gone to sleep.]
02:21
<
kentos >
wait... still has a bug... lol
02:22
<
arkadio >
this solution would work only if I knew the line
02:23
<
kentos >
lines = IO.readlines("thefile.txt"); lines[1] = lines[1][0..-2] + " hahaha i'm awesome"; File.open("thefile.txt", "r+"){|f|f.puts lines}
02:23
<
kentos >
Write a def find_correct_line and have it return the index
02:23
<
arkadio >
I'm trying to do a script that checks a specific word in a line, if true, then append a word to the end of this line
02:24
<
pabs >
only one line of the file or any line in the file?
02:25
<
pabs >
lines = IO.readlines('file.txt').map { |l| l =~ /foo/ ? l << 'bar' : l }; File.open('file.txt', 'w') { |fh| fh.puts lines }
02:25
stardiviner has joined #ruby-lang
02:26
nXqd has joined #ruby-lang
02:27
<
pabs >
(where /foo/ should be replaced with a match for the word you're looking for)
02:27
<
kentos >
that's clever pabs, I like that
02:28
<
kentos >
I need to use ternary expressions more often
02:28
<
arkadio >
its almost perfct pabs but it stills append the word 'bar' to a new line
02:29
<
kentos >
there's a small bug in it
02:29
<
pabs >
arkadio: ah, my mistake, make it this: l.strip << bar
02:29
<
arkadio >
thank you very much
02:30
<
kentos >
of course, strip, I'm just nub sauce today, lol look at my hack up above "lines[1][0..-2]"
02:30
qpingu has joined #ruby-lang
02:30
<
pabs >
you can also use l.rstrip if you're worried about trimming leading whitespace
02:30
<
arkadio >
thank you too kentos
02:30
<
kentos >
yeah, yw bro
02:30
qpingu has quit [Client Quit]
02:31
nXqd has quit [Ping timeout: 256 seconds]
02:32
<
pabs >
if you're using ruby 1.9 then you can also use IO.write instead of the File.open block at the end
02:32
thatdutchguy has quit [Remote host closed the connection]
02:33
<
pabs >
lines = IO.write('file.txt', IO.readlines('file.txt').map { |l| l =~ /foo/ ? l.rstrip << 'bar' : l }.join)
02:33
<
pabs >
that sort of thing
02:33
<
pabs >
IO.write('file.txt', IO.readlines('file.txt').map { |l| l =~ /foo/ ? l.rstrip << 'bar' : l }.join)
02:33
<
pabs >
(that's 1.9 only though)
02:35
ruskie has quit [Ping timeout: 252 seconds]
02:40
ddd has quit [Ping timeout: 245 seconds]
02:41
ddd has joined #ruby-lang
02:44
snorkdude has joined #ruby-lang
02:44
crossfire_ has joined #ruby-lang
02:45
roadt has quit [Ping timeout: 246 seconds]
02:48
KA_ has joined #ruby-lang
02:48
krz has joined #ruby-lang
02:49
replore_ has joined #ruby-lang
02:53
nlpplz has quit [Quit: Leaving]
02:54
alexkira has quit [Remote host closed the connection]
02:57
nlpplz has joined #ruby-lang
02:58
KA_ has quit [Quit: KA_]
02:58
roadt has joined #ruby-lang
03:00
roadt has quit [Max SendQ exceeded]
03:00
irleif has joined #ruby-lang
03:00
roadt has joined #ruby-lang
03:01
snorkdude has quit [Remote host closed the connection]
03:02
ruskie has joined #ruby-lang
03:03
alvaro_o has quit [Quit: Ex-Chat]
03:03
setmeaway has joined #ruby-lang
03:03
KA_ has joined #ruby-lang
03:05
havenn has quit [Remote host closed the connection]
03:05
KA_ has quit [Client Quit]
03:05
replore_ has quit [Remote host closed the connection]
03:05
countdigi has joined #ruby-lang
03:07
kjr has quit [Quit: kjr]
03:08
KA_ has joined #ruby-lang
03:09
ddd has quit [Ping timeout: 245 seconds]
03:10
woollyams has quit [Ping timeout: 246 seconds]
03:11
brianpWins has joined #ruby-lang
03:12
ammar has quit [Read error: Operation timed out]
03:12
kirin` has quit [Read error: Operation timed out]
03:12
ammar has joined #ruby-lang
03:12
kjr has joined #ruby-lang
03:13
no_i_wont_ has quit [Read error: Operation timed out]
03:13
no_i_wont has joined #ruby-lang
03:13
kirin` has joined #ruby-lang
03:15
KA_ has quit [Quit: KA_]
03:16
KA_ has joined #ruby-lang
03:17
itz has quit [Read error: Operation timed out]
03:17
Nisstyre-laptop has joined #ruby-lang
03:19
kirin` has quit [Ping timeout: 255 seconds]
03:19
KA_ has quit [Client Quit]
03:19
xyzodiac has quit [Quit: Computer has gone to sleep.]
03:20
kjr has quit [Quit: kjr]
03:20
itz has joined #ruby-lang
03:20
kirin` has joined #ruby-lang
03:21
BMF has quit [Remote host closed the connection]
03:23
KA_ has joined #ruby-lang
03:23
countdigi has quit [Quit: leaving]
03:23
countdigi has joined #ruby-lang
03:25
countdigi has quit [Client Quit]
03:25
kirin` has quit [Ping timeout: 240 seconds]
03:25
countdigi has joined #ruby-lang
03:26
kirin` has joined #ruby-lang
03:28
countdigi has quit [Client Quit]
03:28
countdigi has joined #ruby-lang
03:29
countdigi has quit [Client Quit]
03:29
countdigi has joined #ruby-lang
03:29
countdigi has quit [Client Quit]
03:29
countdigi has joined #ruby-lang
03:30
coryf has quit [Remote host closed the connection]
03:30
countdigi has quit [Client Quit]
03:30
countdigi has joined #ruby-lang
03:34
irleif has quit [Quit: Computer has gone to sleep.]
03:36
snorkdude has joined #ruby-lang
03:37
KA_ has quit [Quit: KA_]
03:41
Tearan has joined #ruby-lang
03:41
piyush has joined #ruby-lang
03:42
tRAS has joined #ruby-lang
03:46
enebo has quit [Quit: enebo]
03:47
brianpWins has quit [Ping timeout: 246 seconds]
03:49
tooky_ has joined #ruby-lang
03:51
snorkdude has quit [Remote host closed the connection]
03:53
tooky_ has quit [Remote host closed the connection]
03:54
xuser has left #ruby-lang [#ruby-lang]
03:57
itz has quit [Ping timeout: 255 seconds]
03:58
k23Fdamian1caS has joined #ruby-lang
03:59
itz has joined #ruby-lang
03:59
Tearan has quit [Quit: Sleepy Badger....]
04:06
k23Fdamian1caS has quit [Quit: irc2go]
04:08
sduckett has quit [Ping timeout: 245 seconds]
04:12
havenn has joined #ruby-lang
04:12
thisiswei has joined #ruby-lang
04:13
thisiswei has quit [Client Quit]
04:15
crossfire_ has quit [Remote host closed the connection]
04:15
irleif has joined #ruby-lang
04:16
methods has joined #ruby-lang
04:16
tRAS has quit [Quit: Mother, did it need to be so high?]
04:18
methods has quit [Client Quit]
04:23
burgestrand has quit [Quit: Leaving.]
04:27
charliesome has joined #ruby-lang
04:33
prathamesh_ has joined #ruby-lang
04:36
brianpWins has joined #ruby-lang
04:39
corundum has quit [Read error: Connection reset by peer]
04:40
corundum has joined #ruby-lang
04:47
goshakkk has joined #ruby-lang
04:48
mistym has quit [Remote host closed the connection]
04:49
ryanlecompte has joined #ruby-lang
04:50
mistym has joined #ruby-lang
04:50
mistym has quit [Changing host]
04:50
mistym has joined #ruby-lang
04:53
mistym has quit [Remote host closed the connection]
04:55
achiu has quit [Quit: WeeChat 0.3.7]
04:58
piyush has quit [Ping timeout: 246 seconds]
04:58
achiu has joined #ruby-lang
04:59
goshakkk has quit [Quit: Computer has gone to sleep.]
04:59
Firstmate has joined #ruby-lang
04:59
<
Firstmate >
Hi, I started ruby a few days ago and am really liking it :3
04:59
<
Firstmate >
Was wondering what kinda projects there are to keep me going in Ruby?
05:01
<
kentos >
would you like to program a script parser for me, Firstmate?
05:01
<
Firstmate >
That's funny because that's what I just did for a school project
05:01
<
Firstmate >
They said "pick a language and write a simple parser with it"
05:02
<
kentos >
what kind of script did you parse?
05:02
<
kentos >
This project involves taking one scrip format and then outputting it in another format (html markup)
05:02
tRAS has joined #ruby-lang
05:02
<
Firstmate >
More like assembler, but it was a simple parser for taking a assembly file (hack language) and assembling into machine
05:02
<
Firstmate >
Was p. cool
05:03
<
Firstmate >
I'm wondering more like game tutorials, open source projects I could follow...etc haha
05:04
<
kentos >
hrm... I don't need any games programmed right now, so... =D
05:04
marc3000 has left #ruby-lang [#ruby-lang]
05:04
<
kentos >
wanna see something I did in ruby Firstmate?
05:04
<
kentos >
it's a webapp
05:04
<
Firstmate >
I don't mind o.O but I literally just started 2 days ago
05:04
piyush has joined #ruby-lang
05:05
<
kentos >
does that look like some bad ass ruby or what?
05:06
<
Firstmate >
I guess haha
05:06
<
kentos >
I've also been working on a game actually... So far all the work is in javascript though (rendering and such)
05:07
<
kentos >
it's going to do a lot of ruby and rails really when I start implementing the MMO part of it
05:07
<
kentos >
right now it's pretty much zero player
05:07
<
kentos >
does that stuff sound cool?
05:08
<
kentos >
if so, you should check over my source code for that first app i linked you
05:08
<
kentos >
there's plenty there to learn for some1 whos only been at it 2 days ;)
05:12
ryanf has joined #ruby-lang
05:13
<
kentos >
it's using a gem to perform the calculations btw... not sure if you know how to make those or not =/
05:13
piyush has quit [Ping timeout: 276 seconds]
05:14
<
Firstmate >
lol no I dont
05:17
<
kentos >
you might like seeing the gem's code too then
05:17
<
kentos >
are you on github btw?
05:20
michael_alex has joined #ruby-lang
05:21
<
kentos >
you can also use it over the command line too
05:21
<
kentos >
$ solver "[[1,2,3],[4,5,6]]"
05:22
<
kentos >
and all you need to do to set that up is `$ gem install exc1_sum_squares` if I'm not mistaken
05:22
crackity_jones has joined #ruby-lang
05:22
<
kentos >
yeah, literally you could type that on your command line and it will install my program on your machine
05:23
stiang has joined #ruby-lang
05:23
stiang has quit [Client Quit]
05:29
burgestrand has joined #ruby-lang
05:29
My_Hearing has joined #ruby-lang
05:29
My_Hearing is now known as Mon_Ouie
05:31
KA_ has joined #ruby-lang
05:33
kitallis has joined #ruby-lang
05:37
AlHafoudh has joined #ruby-lang
05:41
woollyams has joined #ruby-lang
05:41
AlHafoudh has quit [Client Quit]
05:51
Firstmate has quit []
05:52
Sambalero has quit [Remote host closed the connection]
05:53
KA_ has quit [Quit: KA_]
05:54
solars has joined #ruby-lang
05:57
anannie has joined #ruby-lang
05:57
marc3000 has joined #ruby-lang
06:00
ananna has quit [Ping timeout: 246 seconds]
06:03
nXqd has joined #ruby-lang
06:04
Mon_Ouie has quit [Ping timeout: 246 seconds]
06:05
Nisstyre-laptop has quit [Quit: Leaving]
06:07
nXqd has quit [Ping timeout: 256 seconds]
06:15
kitallis has quit [Ping timeout: 245 seconds]
06:16
marc3000 has left #ruby-lang [#ruby-lang]
06:17
kitallis has joined #ruby-lang
06:17
dc5ala has joined #ruby-lang
06:18
piyush has joined #ruby-lang
06:20
michael_alex has quit [Quit: Ex-Chat]
06:21
woollyams has quit [Quit: Computer has gone to sleep.]
06:22
irleif has quit [Quit: Computer has gone to sleep.]
06:30
ruurd has joined #ruby-lang
06:33
ddd has joined #ruby-lang
06:34
workmad3 has joined #ruby-lang
06:35
setmeaway2 has joined #ruby-lang
06:36
setmeaway has quit [Read error: Connection reset by peer]
06:42
prathamesh_ has quit [Read error: Connection reset by peer]
06:42
prathamesh_ has joined #ruby-lang
06:43
take_cheeze has quit [Quit: Leaving.]
06:44
take_cheeze has joined #ruby-lang
06:44
dr_bob has joined #ruby-lang
06:44
kentos has quit [Quit: Leaving]
06:50
brianpWins has quit [Quit: brianpWins]
06:50
solars has quit [Ping timeout: 244 seconds]
06:57
ryanlecompte has quit [Remote host closed the connection]
07:03
dhruvasagar has joined #ruby-lang
07:08
kain has quit [Ping timeout: 252 seconds]
07:13
workmad3 has quit [Read error: Operation timed out]
07:14
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
07:34
kain has joined #ruby-lang
07:37
madhatte1420 has joined #ruby-lang
07:37
vesan has quit [Read error: Connection reset by peer]
07:40
madhatter420 has quit [Ping timeout: 246 seconds]
07:41
AlHafoudh has joined #ruby-lang
07:44
vesan has joined #ruby-lang
07:44
faces has quit [Read error: Connection reset by peer]
07:45
kain has quit [Ping timeout: 246 seconds]
07:45
icooba has joined #ruby-lang
07:48
Madis has joined #ruby-lang
07:50
arkadio has quit [Remote host closed the connection]
07:50
judofyr has joined #ruby-lang
07:51
faces has joined #ruby-lang
08:03
<
judofyr >
whitequark: how are you going to handle globals/class instance variables?
08:03
<
judofyr >
whitequark: e.g. def self.foo; @foo ||= "bar" end
08:03
<
judofyr >
whitequark: is "bar" statically initialized, or do you just drop them?
08:05
bfreeman has quit [Quit: bfreeman]
08:08
stiang has joined #ruby-lang
08:08
havenn has quit [Read error: Connection reset by peer]
08:08
havenn has joined #ruby-lang
08:10
yats has joined #ruby-lang
08:11
kain has joined #ruby-lang
08:11
cdt has joined #ruby-lang
08:12
tooky has joined #ruby-lang
08:15
dous has quit [Remote host closed the connection]
08:16
norc has quit [Read error: Connection reset by peer]
08:16
norc has joined #ruby-lang
08:16
norc is now known as Guest24823
08:16
vlad_starkov has joined #ruby-lang
08:19
dous has joined #ruby-lang
08:19
dous has joined #ruby-lang
08:19
dous has quit [Changing host]
08:21
lilbigSciPsyZ has joined #ruby-lang
08:23
kain has quit [Ping timeout: 276 seconds]
08:26
gnufied has joined #ruby-lang
08:30
stiang has quit [Quit: stiang]
08:30
tjadc has joined #ruby-lang
08:31
wallerdev has quit [Quit: wallerdev]
08:38
workmad3 has joined #ruby-lang
08:39
Aaaarg has quit [Quit: Aaaarg]
08:43
ryanf has quit [Ping timeout: 255 seconds]
08:44
toretore has joined #ruby-lang
08:45
<
andrewvos >
That shit is in Comic Sans MS
08:46
sepp2k has joined #ruby-lang
08:49
kain has joined #ruby-lang
08:55
josh^ has quit [Ping timeout: 246 seconds]
08:57
yats has quit [Ping timeout: 252 seconds]
08:58
<
lilbigSciPsyZ >
andrewvos, imagine ruby was written in Comic Sans stone.
08:59
josh^ has joined #ruby-lang
08:59
<
lilbigSciPsyZ >
sometimes i imagine it was
08:59
kain has quit [Ping timeout: 246 seconds]
09:00
<
andrewvos >
You're a weird fellow lilbigSciPsyZ.
09:00
<
lilbigSciPsyZ >
rad good weird.
09:00
<
andrewvos >
Is that banisterfiend?
09:00
<
matti >
lilbigSciPsyZ: You have
_problems_ ;]
09:00
<
lilbigSciPsyZ >
i have good problems
09:01
<
matti >
lilbigSciPsyZ: No. They involve Comic Sans.
09:01
<
matti >
lilbigSciPsyZ: Which is somewhat along the lines of being a My Little Pony fanboy.
09:01
<
lilbigSciPsyZ >
Comically real problems, sans ruby friends >:)
09:01
<
matti >
lilbigSciPsyZ: Its a nasty fetish too, the one with Comic.
09:01
<
matti >
lilbigSciPsyZ: Imagine telling this your future wife.
09:02
<
matti >
lilbigSciPsyZ: "Honey, I have a confession to made..." ... "I like Comic Sans".
09:02
<
lilbigSciPsyZ >
Ruby is my Little Pony
09:02
<
lilbigSciPsyZ >
matti, maybe i am your future wife
09:02
GarethAdams has joined #ruby-lang
09:02
<
lilbigSciPsyZ >
i do
09:02
<
lilbigSciPsyZ >
like comic sans
09:03
<
matti >
I am just being silly.
09:03
<
lilbigSciPsyZ >
i am not sansified.
09:05
<
lilbigSciPsyZ >
i need to change font first, or i won't be able to.
09:08
dr_bob has quit [Read error: Connection reset by peer]
09:08
dr_bob has joined #ruby-lang
09:12
corlinfive has joined #ruby-lang
09:17
GarethAdams|Work has joined #ruby-lang
09:17
GarethAdams|Work has quit [Client Quit]
09:18
GarethAdams|Work has joined #ruby-lang
09:19
GarethAdams has quit [Ping timeout: 255 seconds]
09:20
roadt has quit [Ping timeout: 260 seconds]
09:23
tooky has quit [Remote host closed the connection]
09:26
tooky has joined #ruby-lang
09:29
kain has joined #ruby-lang
09:32
Carnage\ has joined #ruby-lang
09:34
setmeaway2 has quit [Quit: Leaving]
09:34
roadt has joined #ruby-lang
09:37
Criztian has joined #ruby-lang
09:37
kain has quit [Ping timeout: 248 seconds]
09:38
GarethAdams has joined #ruby-lang
09:39
nXqd has joined #ruby-lang
09:41
postmodern has quit [Ping timeout: 252 seconds]
09:41
workmad3_ has joined #ruby-lang
09:42
tooky has quit [Remote host closed the connection]
09:43
tooky has joined #ruby-lang
09:44
workmad3 has quit [Ping timeout: 260 seconds]
09:44
nXqd has quit [Ping timeout: 260 seconds]
09:47
* lilbigSciPsyZ
ruby install ruby
09:47
rolfb has joined #ruby-lang
09:47
mpan has joined #ruby-lang
09:49
mpan has quit [Client Quit]
09:53
woollyams has joined #ruby-lang
10:02
rippa has joined #ruby-lang
10:03
A124 has joined #ruby-lang
10:03
kain has joined #ruby-lang
10:07
cyri_ has joined #ruby-lang
10:10
zenspider has quit [Quit: Terminated with extreme prejudice - dircproxy 1.1.0]
10:15
kain has quit [Ping timeout: 255 seconds]
10:16
x0F has quit [Disconnected by services]
10:16
x0F_ has joined #ruby-lang
10:17
x0F_ is now known as x0F
10:19
Mon_Ouie has joined #ruby-lang
10:19
piyush has quit [Ping timeout: 246 seconds]
10:21
My_Hearing has joined #ruby-lang
10:22
Mon_Ouie has quit [Disconnected by services]
10:22
My_Hearing is now known as Mon_Ouie
10:23
dous has quit [Remote host closed the connection]
10:31
Guedes has joined #ruby-lang
10:31
Guedes has joined #ruby-lang
10:31
rippa has quit [Ping timeout: 240 seconds]
10:34
concernedcitizen has joined #ruby-lang
10:34
concernedcitizen has quit [Changing host]
10:34
concernedcitizen has joined #ruby-lang
10:41
kain has joined #ruby-lang
10:43
concernedcitizen has quit [Remote host closed the connection]
10:48
ruurd has quit [Quit: Leaving...]
10:51
dju has joined #ruby-lang
10:51
sush24 has joined #ruby-lang
10:53
kain has quit [Ping timeout: 264 seconds]
10:56
piyush has joined #ruby-lang
10:59
tooky has quit [Remote host closed the connection]
11:00
tooky has joined #ruby-lang
11:01
ruurd has joined #ruby-lang
11:02
tooky has quit [Read error: Connection reset by peer]
11:04
sush24 has quit [Quit: Leaving]
11:13
gmg85 has joined #ruby-lang
11:17
kain has joined #ruby-lang
11:20
dous has joined #ruby-lang
11:20
dous has quit [Changing host]
11:20
dous has joined #ruby-lang
11:21
gmg85 has quit [Ping timeout: 244 seconds]
11:22
gmg85 has joined #ruby-lang
11:22
josh^ has quit [Ping timeout: 246 seconds]
11:25
josh^ has joined #ruby-lang
11:26
mwjcomputing has joined #ruby-lang
11:28
jxie has quit [Quit: leaving]
11:28
josh^ has quit [Remote host closed the connection]
11:28
sush24 has joined #ruby-lang
11:30
gmg85 has quit [Quit: ChatZilla 0.9.89 [Firefox 15.0/20120825193726]]
11:34
prathamesh_ has quit [Read error: Connection reset by peer]
11:35
prathamesh_ has joined #ruby-lang
11:40
zz_chrismcg is now known as chrismcg
11:43
sush24 has quit [Quit: This computer has gone to sleep]
11:45
mgrayson has joined #ruby-lang
11:46
mwjcomputing has quit [Quit: Leaving]
11:46
kjr has joined #ruby-lang
11:48
kurko__ has joined #ruby-lang
11:48
kjr has quit [Client Quit]
11:50
prathamesh_ has quit [Read error: Connection reset by peer]
11:50
prathamesh_ has joined #ruby-lang
11:57
cyri_ has quit [Quit: cyri_]
11:57
gmci has quit [Quit: Computer has gone to sleep.]
11:59
kurko__ has quit [Ping timeout: 245 seconds]
12:01
kurko__ has joined #ruby-lang
12:01
gmci has joined #ruby-lang
12:02
corlinfive1 has joined #ruby-lang
12:03
corlinfive has quit [Ping timeout: 246 seconds]
12:06
corlinfive1 has quit [Ping timeout: 246 seconds]
12:06
diegoviola has quit [Ping timeout: 252 seconds]
12:09
goshakkk has joined #ruby-lang
12:11
madhatte1420 has quit [Read error: Connection reset by peer]
12:12
kurko__ has quit [Ping timeout: 248 seconds]
12:12
madhatter420 has joined #ruby-lang
12:12
yalue has joined #ruby-lang
12:13
kurko__ has joined #ruby-lang
12:13
erichmenge has joined #ruby-lang
12:13
erichmenge has quit [Client Quit]
12:17
woollyams has quit [Quit: Computer has gone to sleep.]
12:19
cyri_ has joined #ruby-lang
12:19
<
whitequark >
judofyr: I just execute the code.
12:20
mwjcomputing has joined #ruby-lang
12:24
prathamesh_ has quit [Quit: Leaving]
12:26
kjr has joined #ruby-lang
12:29
sush24 has joined #ruby-lang
12:30
Hakon has joined #ruby-lang
12:31
GarethAdams has joined #ruby-lang
12:40
piyush has quit [Ping timeout: 246 seconds]
12:42
piyush has joined #ruby-lang
12:43
mistym has joined #ruby-lang
12:43
mistym has quit [Changing host]
12:43
mistym has joined #ruby-lang
12:44
kurko__ has quit [Ping timeout: 245 seconds]
12:45
goshakkk has quit [Quit: Computer has gone to sleep.]
12:46
kurko__ has joined #ruby-lang
12:51
mistym has quit [Remote host closed the connection]
12:53
corundum has quit [Disconnected by services]
12:54
corundum has joined #ruby-lang
12:55
SkyHunter has joined #ruby-lang
12:55
krz has quit [Quit: krz]
12:56
kjr has quit [Ping timeout: 245 seconds]
12:57
kjr has joined #ruby-lang
12:58
SkyHunter has left #ruby-lang [#ruby-lang]
12:59
carloslopes has joined #ruby-lang
13:00
Sky_ has joined #ruby-lang
13:00
Sky_ has left #ruby-lang [#ruby-lang]
13:00
Sky0Hunter has joined #ruby-lang
13:02
Sky0Hunter has quit [Client Quit]
13:03
Axsuul has quit [Ping timeout: 260 seconds]
13:03
kain_ has joined #ruby-lang
13:05
nitti has joined #ruby-lang
13:05
Hakon has quit [Read error: Connection reset by peer]
13:05
sduckett has joined #ruby-lang
13:05
sailias has joined #ruby-lang
13:05
piyush has quit [Ping timeout: 246 seconds]
13:06
piyush has joined #ruby-lang
13:06
kain has quit [Ping timeout: 245 seconds]
13:11
havenn has quit [Read error: Connection reset by peer]
13:11
havenn has joined #ruby-lang
13:11
wyhaines has joined #ruby-lang
13:13
jperry2_ has joined #ruby-lang
13:14
Fullmoon has joined #ruby-lang
13:16
nXqd has joined #ruby-lang
13:17
imajes has quit [Excess Flood]
13:17
imajes has joined #ruby-lang
13:20
nXqd has quit [Ping timeout: 246 seconds]
13:21
piyush has quit [Ping timeout: 246 seconds]
13:22
AlHafoudh has quit [Ping timeout: 276 seconds]
13:23
mistym has joined #ruby-lang
13:23
mistym has quit [Changing host]
13:23
mistym has joined #ruby-lang
13:32
enebo has joined #ruby-lang
13:33
nitti has quit [Remote host closed the connection]
13:33
runeb has joined #ruby-lang
13:35
nitti has joined #ruby-lang
13:43
kurko__ has quit [Ping timeout: 256 seconds]
13:43
elux has joined #ruby-lang
13:44
kurko__ has joined #ruby-lang
13:44
Nisstyre has joined #ruby-lang
13:48
mistym has quit [Remote host closed the connection]
13:53
GarethAdams has quit [Remote host closed the connection]
13:53
jtoy has joined #ruby-lang
13:55
kain_ is now known as kain
13:57
AlHafoudh has joined #ruby-lang
13:58
rippa has joined #ruby-lang
13:59
kurko__ has quit [Ping timeout: 246 seconds]
14:01
kurko__ has joined #ruby-lang
14:02
beiter has joined #ruby-lang
14:02
outoftime has joined #ruby-lang
14:03
dju has joined #ruby-lang
14:07
methods has joined #ruby-lang
14:09
dhruvasagar has quit [Ping timeout: 246 seconds]
14:10
voker57 has quit [Remote host closed the connection]
14:11
mistym has joined #ruby-lang
14:11
mistym has quit [Changing host]
14:11
mistym has joined #ruby-lang
14:11
tjadc has quit [Ping timeout: 245 seconds]
14:12
GarethAdams has joined #ruby-lang
14:13
alexkane has joined #ruby-lang
14:15
dju has joined #ruby-lang
14:16
runeb has quit [Remote host closed the connection]
14:16
nitti has quit [Remote host closed the connection]
14:16
no_worries has joined #ruby-lang
14:17
kjr has quit [Ping timeout: 246 seconds]
14:19
datanoise has joined #ruby-lang
14:20
stiang has joined #ruby-lang
14:20
runeb has joined #ruby-lang
14:23
gsav has joined #ruby-lang
14:26
rippa has quit [Ping timeout: 248 seconds]
14:26
vmatiyko has joined #ruby-lang
14:29
kjr has joined #ruby-lang
14:29
cgd has joined #ruby-lang
14:30
Austin__ has joined #ruby-lang
14:30
gsav_ has joined #ruby-lang
14:30
robotmay has joined #ruby-lang
14:31
kjr has quit [Client Quit]
14:31
Nisstyre has quit [Ping timeout: 260 seconds]
14:33
<
jtoy >
does ruby have a method for extracting params out of a url string like "foo?bar&car=bar" ?
14:33
undersc0re97 has joined #ruby-lang
14:33
undersc0re97 has quit [Changing host]
14:33
undersc0re97 has joined #ruby-lang
14:33
piyush has joined #ruby-lang
14:39
Uranio has joined #ruby-lang
14:39
Uranio has quit [Quit: WeeChat 0.3.8]
14:39
imajes has quit [Excess Flood]
14:40
jtoy has quit [Ping timeout: 260 seconds]
14:40
sush24 has quit [Quit: This computer has gone to sleep]
14:41
Uranio has joined #ruby-lang
14:42
coryf has joined #ruby-lang
14:42
imajes has joined #ruby-lang
14:43
nitti has joined #ruby-lang
14:43
tRAS has quit [Quit: Mother, did it need to be so high?]
14:44
Nisstyre has joined #ruby-lang
14:46
Axsuul has joined #ruby-lang
14:47
sush24 has joined #ruby-lang
14:52
mxktmdude has joined #ruby-lang
14:53
yalue has quit [Remote host closed the connection]
14:54
tjadc has joined #ruby-lang
14:55
irleif has joined #ruby-lang
14:55
booyakah has joined #ruby-lang
14:55
beiter has quit [Quit: beiter]
14:58
nitti_ has joined #ruby-lang
15:00
nitti__ has joined #ruby-lang
15:00
g0bl1n has joined #ruby-lang
15:02
nitti has quit [Ping timeout: 240 seconds]
15:02
burgestrand has quit [Quit: Leaving.]
15:03
nitti_ has quit [Ping timeout: 240 seconds]
15:05
nitti__ has quit [Ping timeout: 260 seconds]
15:05
Fullmoon has quit [Quit: Fullmoon]
15:05
irleif has quit [Quit: Computer has gone to sleep.]
15:06
jtoy has joined #ruby-lang
15:06
Fullmoon has joined #ruby-lang
15:06
nitti has joined #ruby-lang
15:07
kurko___ has joined #ruby-lang
15:07
nitti_ has joined #ruby-lang
15:07
kurko__ has quit [Ping timeout: 245 seconds]
15:07
Guedes has quit [Read error: Operation timed out]
15:08
elux has quit [Read error: Connection reset by peer]
15:08
elux has joined #ruby-lang
15:08
nitti__ has joined #ruby-lang
15:08
Guedes has joined #ruby-lang
15:08
Fullmoon has quit [Client Quit]
15:09
sush24 has quit [Quit: This computer has gone to sleep]
15:11
nitti has quit [Ping timeout: 246 seconds]
15:11
irleif has joined #ruby-lang
15:11
mytrile has joined #ruby-lang
15:11
lcdhoffman has joined #ruby-lang
15:11
nitti_ has quit [Ping timeout: 245 seconds]
15:13
mxktmdude has quit [Quit: Ex-Chat]
15:13
irleif has quit [Client Quit]
15:13
krohrbaugh1 has quit [Ping timeout: 248 seconds]
15:15
carloslopes has quit [Quit: Leaving.]
15:15
rippa has joined #ruby-lang
15:16
sush24 has joined #ruby-lang
15:18
imajes has quit [Excess Flood]
15:19
imajes has joined #ruby-lang
15:20
Ethan has joined #ruby-lang
15:20
Ethan has quit [Changing host]
15:20
Ethan has joined #ruby-lang
15:22
runeb has quit [Remote host closed the connection]
15:23
undersc0re97 has quit [Ping timeout: 252 seconds]
15:25
gaveen has joined #ruby-lang
15:27
imajes has quit [Excess Flood]
15:28
Uranio has quit [Quit: WeeChat 0.3.8]
15:28
mytrile has quit [Remote host closed the connection]
15:28
imajes has joined #ruby-lang
15:28
vmatiyko has quit [Quit: Page closed]
15:29
Uranio has joined #ruby-lang
15:30
gmci has quit [Read error: Connection reset by peer]
15:30
nitti__ has quit [Remote host closed the connection]
15:30
mxktmdude has joined #ruby-lang
15:31
dr_bob has quit [Quit: Leaving.]
15:32
nitti has joined #ruby-lang
15:32
piyush has quit [Ping timeout: 260 seconds]
15:35
gmci has joined #ruby-lang
15:36
Asher has quit [Quit: Leaving.]
15:39
Asher has joined #ruby-lang
15:41
dc5ala has quit [Quit: Ex-Chat]
15:41
kjr has joined #ruby-lang
15:41
stiang has quit [Quit: stiang]
15:41
gsav_ has quit [Quit: Lost terminal]
15:43
Fullmoon has joined #ruby-lang
15:44
Fullmoon has quit [Client Quit]
15:44
Fullmoon has joined #ruby-lang
15:44
Fullmoon has quit [Client Quit]
15:46
Fullmoon has joined #ruby-lang
15:47
GarethAdams has quit [Ping timeout: 240 seconds]
15:47
jperry2_ has quit [Quit: jperry2_]
15:47
Fullmoon has quit [Client Quit]
15:47
goshakkk has joined #ruby-lang
15:48
irleif has joined #ruby-lang
15:53
runeb has joined #ruby-lang
15:58
judofyr has quit [Remote host closed the connection]
16:01
runeb has quit [Ping timeout: 245 seconds]
16:01
krohrbaugh has joined #ruby-lang
16:03
Hakon has joined #ruby-lang
16:03
sush24 has quit [Quit: This computer has gone to sleep]
16:04
thatdutchguy has joined #ruby-lang
16:06
tRAS has joined #ruby-lang
16:08
sush24 has joined #ruby-lang
16:08
ttilley has joined #ruby-lang
16:10
jxie has joined #ruby-lang
16:11
robotmay has quit [Remote host closed the connection]
16:11
ryanlecompte has joined #ruby-lang
16:12
dju has joined #ruby-lang
16:14
voker57 has joined #ruby-lang
16:14
voker57 has quit [Changing host]
16:14
voker57 has joined #ruby-lang
16:14
scampbell has joined #ruby-lang
16:16
Austin__ has quit [Quit: Leaving.]
16:17
Austin__ has joined #ruby-lang
16:18
jgerry has joined #ruby-lang
16:18
jgerry has left #ruby-lang [#ruby-lang]
16:20
imajes has quit [Excess Flood]
16:21
imajes has joined #ruby-lang
16:24
brianpWins has joined #ruby-lang
16:28
runeb has joined #ruby-lang
16:30
jonasac has joined #ruby-lang
16:32
kurko___ has quit [Ping timeout: 246 seconds]
16:33
kurko__ has joined #ruby-lang
16:35
goshakkk has quit [Quit: Computer has gone to sleep.]
16:35
burgestrand has joined #ruby-lang
16:35
ruurd has quit [Quit: Leaving...]
16:36
cantonic_ has joined #ruby-lang
16:37
runeb has quit [Ping timeout: 246 seconds]
16:39
samuil has quit [Ping timeout: 244 seconds]
16:39
voker57 has quit [Remote host closed the connection]
16:40
cantonic has quit [Ping timeout: 240 seconds]
16:40
cantonic_ is now known as cantonic
16:40
__butch__ has joined #ruby-lang
16:43
cdt has quit [Quit: Ex-Chat]
16:45
sduckett has quit [Ping timeout: 245 seconds]
16:45
sepp2k has quit [Ping timeout: 246 seconds]
16:49
mrsolo has joined #ruby-lang
16:49
sebastianb has quit [Quit: leaving]
16:50
methods1 has joined #ruby-lang
16:50
workmad3_ is now known as workmad3
16:53
ivanoats has joined #ruby-lang
16:53
nXqd has joined #ruby-lang
16:53
methods has quit [Ping timeout: 244 seconds]
16:53
sush24 has quit [Quit: This computer has gone to sleep]
16:53
__butch__ has quit [Quit: Leaving.]
16:55
methods1 has quit [Quit: Leaving.]
16:56
kurko__ has quit [Ping timeout: 245 seconds]
16:57
nXqd has quit [Ping timeout: 246 seconds]
16:58
kurko__ has joined #ruby-lang
16:59
jperry2_ has joined #ruby-lang
17:01
sepp2k has joined #ruby-lang
17:01
ivanoats has quit [Changing host]
17:01
ivanoats has joined #ruby-lang
17:03
alvaro_o has joined #ruby-lang
17:04
macmartine has joined #ruby-lang
17:04
chrismcg is now known as zz_chrismcg
17:05
__butch__ has joined #ruby-lang
17:06
g0bl1n has quit [Quit: g0bl1n]
17:06
gnufied has quit [Quit: Leaving.]
17:06
Kingy has joined #ruby-lang
17:07
nitti has quit [Remote host closed the connection]
17:09
AlHafoudh has quit [Quit: Computer has gone to sleep.]
17:09
retro|cz has quit [Ping timeout: 240 seconds]
17:11
wallerdev has joined #ruby-lang
17:14
KA_ has joined #ruby-lang
17:14
g0bl1n has joined #ruby-lang
17:14
codewrangler has joined #ruby-lang
17:16
jperry2_ has quit [Remote host closed the connection]
17:16
jperry2_ has joined #ruby-lang
17:17
kurko__ has quit [Ping timeout: 246 seconds]
17:18
kurko__ has joined #ruby-lang
17:21
imajes has quit [Excess Flood]
17:22
coryf has quit [Read error: Connection reset by peer]
17:22
coryf has joined #ruby-lang
17:23
imajes has joined #ruby-lang
17:24
piyush has joined #ruby-lang
17:24
cyri_ has quit [Quit: cyri_]
17:25
ruurd has joined #ruby-lang
17:26
goshakkk has joined #ruby-lang
17:27
carloslopes has joined #ruby-lang
17:28
sush24 has joined #ruby-lang
17:29
Austin__ has quit [Quit: Leaving.]
17:30
Uranio has quit [Quit: WeeChat 0.3.8]
17:30
KA_ has quit [Quit: KA_]
17:30
workmad3 has quit [Ping timeout: 245 seconds]
17:32
xyzodiac has joined #ruby-lang
17:32
lilbigSciPsyZ has quit [Quit: quit it Sci + Psy Z..]
17:34
runeb has joined #ruby-lang
17:34
coryf_ has joined #ruby-lang
17:35
robotmay has joined #ruby-lang
17:35
coryf has quit [Ping timeout: 246 seconds]
17:37
nitti has joined #ruby-lang
17:40
sepp2k1 has joined #ruby-lang
17:41
sepp2k has quit [Ping timeout: 246 seconds]
17:42
corundum has quit [Read error: Connection reset by peer]
17:42
nertzy has quit [Quit: This computer has gone to sleep]
17:43
corundum has joined #ruby-lang
17:44
Fullmoon has joined #ruby-lang
17:45
nitti has quit [Ping timeout: 246 seconds]
17:45
Fullmoon has quit [Client Quit]
17:46
runeb has quit [Ping timeout: 246 seconds]
17:46
mxktmdude has quit [Ping timeout: 260 seconds]
17:49
piyush has quit [Ping timeout: 255 seconds]
17:49
robotmay has quit [Remote host closed the connection]
17:50
elux has quit [Quit: Leaving...]
17:51
elux has joined #ruby-lang
17:51
elux has quit [Client Quit]
17:51
bfreeman has joined #ruby-lang
17:51
AlHafoudh has joined #ruby-lang
17:51
piyush has joined #ruby-lang
17:52
Hakon has quit [Quit: Leaving...]
17:53
sebastianb has joined #ruby-lang
17:53
roadt has quit [Ping timeout: 246 seconds]
17:54
malev has joined #ruby-lang
17:57
Fullmoon has joined #ruby-lang
17:58
sush24 has quit [Quit: This computer has gone to sleep]
17:58
rue has quit [Remote host closed the connection]
17:59
rue has joined #ruby-lang
18:01
mxktmdude has joined #ruby-lang
18:03
rue has quit [Ping timeout: 260 seconds]
18:04
cirenyc has joined #ruby-lang
18:06
artOfWar has joined #ruby-lang
18:06
g0bl1n has quit [Quit: g0bl1n]
18:06
KA_ has joined #ruby-lang
18:08
wwoodrum has joined #ruby-lang
18:09
wwoodrum has quit [Client Quit]
18:09
Kingy has quit [Quit: Leaving]
18:10
gmci has quit [Ping timeout: 246 seconds]
18:11
imajes has quit [Excess Flood]
18:11
rue has joined #ruby-lang
18:11
rue has quit [Remote host closed the connection]
18:12
rue has joined #ruby-lang
18:12
gmci has joined #ruby-lang
18:12
tjadc has quit [Ping timeout: 255 seconds]
18:12
runeb has joined #ruby-lang
18:13
imajes has joined #ruby-lang
18:13
sduckett has joined #ruby-lang
18:13
nitti has joined #ruby-lang
18:14
mxktmdude has quit [Ping timeout: 245 seconds]
18:14
nitti has quit [Remote host closed the connection]
18:16
nitti has joined #ruby-lang
18:16
piyush has quit [Ping timeout: 246 seconds]
18:19
elux has joined #ruby-lang
18:20
vlad_starkov has quit [Remote host closed the connection]
18:21
macmartine has quit [Quit: Computer has gone to sleep.]
18:21
KA_ has quit [Quit: KA_]
18:21
thatdutchguy has quit [Remote host closed the connection]
18:23
KA_ has joined #ruby-lang
18:24
runeb has quit [Ping timeout: 260 seconds]
18:25
mxktmdude has joined #ruby-lang
18:26
Hakon has joined #ruby-lang
18:27
artOfWar has quit [Remote host closed the connection]
18:27
rue_XIV has joined #ruby-lang
18:31
kurko__ has quit [Ping timeout: 245 seconds]
18:31
rue has quit [Ping timeout: 260 seconds]
18:33
kurko__ has joined #ruby-lang
18:35
KA_ has quit [Quit: KA_]
18:36
KA_ has joined #ruby-lang
18:37
kurko__ has quit [Ping timeout: 244 seconds]
18:37
KA_ has quit [Client Quit]
18:39
KA_ has joined #ruby-lang
18:39
kurko__ has joined #ruby-lang
18:43
Austin__ has joined #ruby-lang
18:43
kurko__ has quit [Ping timeout: 256 seconds]
18:44
yxhuvud has quit []
18:44
corundum has quit [Disconnected by services]
18:44
yxhuvud has joined #ruby-lang
18:45
corundum has joined #ruby-lang
18:45
kurko__ has joined #ruby-lang
18:50
Weems has joined #ruby-lang
18:50
Weems has joined #ruby-lang
18:50
Weems has quit [Changing host]
18:50
runeb has joined #ruby-lang
18:50
dRbiG has quit [Ping timeout: 246 seconds]
18:52
sduckett has quit [Ping timeout: 260 seconds]
18:54
sduckett has joined #ruby-lang
18:57
wallerdev has quit [Quit: wallerdev]
18:59
KA_ has quit [Quit: KA_]
19:00
KA_ has joined #ruby-lang
19:01
runeb has quit [Ping timeout: 252 seconds]
19:02
dRbiG has joined #ruby-lang
19:04
A124 has quit [Quit: reboot]
19:06
methods has joined #ruby-lang
19:08
tRAS has quit [Ping timeout: 260 seconds]
19:10
thatdutchguy has joined #ruby-lang
19:10
ryanf has joined #ruby-lang
19:10
kurko__ has quit [Ping timeout: 245 seconds]
19:10
kurko__ has joined #ruby-lang
19:11
1JTAAIJ72 has joined #ruby-lang
19:11
1JTAAIJ72 has quit [Read error: Connection reset by peer]
19:12
tRAS has joined #ruby-lang
19:14
benanne has joined #ruby-lang
19:15
lelik-bolik has joined #ruby-lang
19:16
kurko__ has quit [Ping timeout: 245 seconds]
19:18
kurko__ has joined #ruby-lang
19:19
irleif has quit [Quit: Computer has gone to sleep.]
19:20
tRAS has quit [Quit: Mother, did it need to be so high?]
19:20
A124 has joined #ruby-lang
19:20
lelik-bolik has left #ruby-lang [#ruby-lang]
19:22
Tearan has joined #ruby-lang
19:25
tRAS has joined #ruby-lang
19:26
cyri_ has joined #ruby-lang
19:27
runeb has joined #ruby-lang
19:28
workmad3 has joined #ruby-lang
19:29
Battuu has joined #ruby-lang
19:29
wallerdev has joined #ruby-lang
19:31
drbrain has quit [Ping timeout: 245 seconds]
19:31
vlad_starkov has joined #ruby-lang
19:32
Criztian_ has joined #ruby-lang
19:32
drbrain has joined #ruby-lang
19:33
kurko__ has quit [Ping timeout: 245 seconds]
19:34
Criztian has quit [Ping timeout: 245 seconds]
19:34
diegoviola has joined #ruby-lang
19:35
vlad_starkov has quit [Ping timeout: 260 seconds]
19:38
Battuu has quit [Ping timeout: 246 seconds]
19:39
runeb has quit [Ping timeout: 256 seconds]
19:43
Kingy has joined #ruby-lang
19:43
cjs226 has joined #ruby-lang
19:46
rippa has quit [Ping timeout: 256 seconds]
19:47
nitti has quit [Ping timeout: 240 seconds]
19:53
kurko__ has joined #ruby-lang
19:55
sduckett has quit [Ping timeout: 260 seconds]
19:56
sduckett has joined #ruby-lang
19:58
mwjcomputing has quit [Quit: Leaving]
19:58
spectra has quit [Ping timeout: 268 seconds]
19:59
no_worries has quit [Remote host closed the connection]
20:02
no_worries has joined #ruby-lang
20:02
spectra has joined #ruby-lang
20:02
userbard has joined #ruby-lang
20:02
mrsolo has quit [Quit: This computer has gone to sleep]
20:03
Criztian_ has quit [Remote host closed the connection]
20:04
mrsolo has joined #ruby-lang
20:04
carloslopes has quit [Quit: Leaving.]
20:05
runeb has joined #ruby-lang
20:05
sduckett has quit [Read error: Connection reset by peer]
20:06
sduckett has joined #ruby-lang
20:07
gaveen has quit [Ping timeout: 260 seconds]
20:09
carloslopes has joined #ruby-lang
20:12
Fullmoon has quit [Quit: Fullmoon]
20:15
workmad3 has quit [Ping timeout: 240 seconds]
20:15
wyhaines has quit [Remote host closed the connection]
20:16
runeb has quit [Ping timeout: 260 seconds]
20:19
gaveen has joined #ruby-lang
20:19
gaveen has quit [Changing host]
20:19
gaveen has joined #ruby-lang
20:24
lcdhoffman has quit [Quit: lcdhoffman]
20:25
KA_ has quit [Quit: KA_]
20:26
nitti has joined #ruby-lang
20:29
nXqd has joined #ruby-lang
20:30
vlad_starkov has joined #ruby-lang
20:30
vlad_sta_ has joined #ruby-lang
20:31
nitti_ has joined #ruby-lang
20:33
nitti has quit [Ping timeout: 260 seconds]
20:34
sailias has quit [Ping timeout: 244 seconds]
20:34
vlad_starkov has quit [Ping timeout: 240 seconds]
20:34
nXqd has quit [Ping timeout: 255 seconds]
20:36
dju has quit [Remote host closed the connection]
20:38
KA_ has joined #ruby-lang
20:42
runeb has joined #ruby-lang
20:42
Fullmoon has joined #ruby-lang
20:44
coryf_ is now known as coryf
20:47
sailias has joined #ruby-lang
20:48
woollyams has joined #ruby-lang
20:48
heftig has quit [Quit: leaving]
20:48
runeb has quit [Read error: Connection reset by peer]
20:53
spectra has quit [Ping timeout: 240 seconds]
20:54
sailias has quit [Ping timeout: 260 seconds]
20:55
woollyams has quit [Ping timeout: 256 seconds]
20:56
spectra has joined #ruby-lang
20:57
heftig has joined #ruby-lang
21:00
elux has quit [Quit: Leaving...]
21:01
no_worries has quit [Remote host closed the connection]
21:08
nitti has joined #ruby-lang
21:09
drowningchild has left #ruby-lang ["Leaving"]
21:10
cirenyc has quit [Quit: Leaving...]
21:11
nitti_ has quit [Ping timeout: 245 seconds]
21:12
conorreedy has quit [Ping timeout: 260 seconds]
21:14
__butch__ has quit [Quit: Leaving.]
21:15
carloslopes has quit [Quit: Leaving.]
21:16
kurko__ has quit [Quit: Computer has gone to sleep.]
21:20
__butch__ has joined #ruby-lang
21:20
__butch__ has quit [Client Quit]
21:20
no_worries has joined #ruby-lang
21:22
ngg_ has joined #ruby-lang
21:25
Carnage\ has quit []
21:27
Austin__ has quit [Quit: Leaving.]
21:27
nadendla has joined #ruby-lang
21:27
Guest24823 has left #ruby-lang [#ruby-lang]
21:29
ngg_ has quit [Remote host closed the connection]
21:29
scampbell has quit [Read error: Connection reset by peer]
21:30
mxktmdude has quit [Quit: Ex-Chat]
21:31
nitti has quit [Remote host closed the connection]
21:35
havenn has quit [Remote host closed the connection]
21:38
Austin__ has joined #ruby-lang
21:38
jamjam has joined #ruby-lang
21:41
zenspider has joined #ruby-lang
21:42
<
zenspider >
whitequark: oi
21:42
jperry2_ has quit [Quit: jperry2_]
21:42
yxhuvud has quit [Ping timeout: 246 seconds]
21:43
mgrayson has left #ruby-lang [#ruby-lang]
21:43
sailias has joined #ruby-lang
21:43
sailias has quit [Client Quit]
21:45
kurko__ has joined #ruby-lang
21:47
nadendla has left #ruby-lang [#ruby-lang]
21:49
runeb has joined #ruby-lang
21:50
thone_ has joined #ruby-lang
21:52
thone has quit [Ping timeout: 245 seconds]
21:53
jtoy has quit [Quit: jtoy]
21:56
KA_ has quit [Quit: KA_]
21:56
<
matti >
zenspider: :)
21:57
<
matti >
whitequark: +1 for Ruby cross-reference. Saved me tons of troubles ;]
21:57
<
matti >
zenspider: Just a smile.
21:57
sepp2k1 has quit [Read error: Connection reset by peer]
21:58
gsav_ has joined #ruby-lang
21:58
runeb has quit [Read error: Connection reset by peer]
21:58
KA_ has joined #ruby-lang
22:00
__butch__ has joined #ruby-lang
22:01
gsav has quit [Ping timeout: 240 seconds]
22:01
lcdhoffman has joined #ruby-lang
22:02
irleif has joined #ruby-lang
22:03
gsav_ has quit [Ping timeout: 248 seconds]
22:07
AlHafoudh has quit [Quit: Computer has gone to sleep.]
22:07
_7894 has joined #ruby-lang
22:08
lcdhoffman has quit [Quit: lcdhoffman]
22:08
irleif has quit [Quit: Computer has gone to sleep.]
22:09
richardjortega has joined #ruby-lang
22:09
Tearan has quit [Quit: Sleepy Badger....]
22:13
Tearan has joined #ruby-lang
22:13
<
erikh >
zenspider: OMG OMG I HAVE A PROBLEM
22:13
<
erikh >
zenspider: I DESIRE A KITTEH
22:14
<
zenspider >
erikh: so get a kitteh
22:15
KA_ has quit [Quit: KA_]
22:16
mistym has quit [Remote host closed the connection]
22:16
coryf has quit [Remote host closed the connection]
22:18
nXqd has joined #ruby-lang
22:18
fireglow has quit [Read error: Connection reset by peer]
22:18
woollyams has joined #ruby-lang
22:18
fireglow has joined #ruby-lang
22:19
KA_ has joined #ruby-lang
22:21
Austin__ has left #ruby-lang [#ruby-lang]
22:22
<
matti >
erikh: Have you read too much tenderlove' Twitter feed?
22:22
nXqd has quit [Ping timeout: 256 seconds]
22:23
lcdhoffman has joined #ruby-lang
22:23
KA_ has quit [Client Quit]
22:23
<
erikh >
what, do you think tenderlove has a monopoly on thinking cats are awesome?
22:24
outoftime has quit [Quit: Leaving]
22:24
<
erikh >
let me tell you about a guy, an awesome man named lion-o
22:24
KA_ has joined #ruby-lang
22:24
<
erikh >
he was lord
22:24
<
erikh >
of the thundercats.
22:25
malev has quit [Remote host closed the connection]
22:26
<
whitequark >
zenspider: re
22:26
<
whitequark >
I've replied on github if you're about that
22:27
<
whitequark >
matti: you're welcome
22:28
<
matti >
erikh: LOL ;d
22:28
<
matti >
erikh: I'd love to have a cat too, but... My landlord sucks ;/
22:29
<
zenspider >
fucking irc... why do you keep dropping?!?
22:29
<
erikh >
go to the humane society and get a new landlord
22:29
<
zenspider >
whitequark: the url to your blog post is borked
22:30
<
whitequark >
not anymore!
22:31
nitti has joined #ruby-lang
22:31
<
darix >
whitequark: which post?
22:32
<
darix >
ah i think i read that already
22:35
mantono has joined #ruby-lang
22:35
nitti has quit [Ping timeout: 240 seconds]
22:36
havenn has joined #ruby-lang
22:36
no_worries has quit [Remote host closed the connection]
22:37
<
zenspider >
whitequark: ok. I've read your blog post and you make some valid and invalid points. I still don't see the point of this ticket.
22:38
mistym has joined #ruby-lang
22:38
mistym has joined #ruby-lang
22:38
mistym has quit [Changing host]
22:38
<
zenspider >
granted... I'm post workout so my brain is more than a bit fuzzy
22:38
benanne has quit [Quit: kbai]
22:39
<
zenspider >
you're mixing up the distinction between local vars and vcalls. and then vcall vs fcall vs call.
22:39
<
zenspider >
I've intentionally unified vcall and fcall into call. There is no point in the distinction in a sexp format.
22:41
<
whitequark >
zenspider: are correct error messages not a point?
22:41
<
whitequark >
not a major one, I agree
22:41
<
zenspider >
how are my error messages incorrect?
22:42
macmartine has joined #ruby-lang
22:42
<
whitequark >
ruby uses the message "undefined local variable or method" for vcall and "undefined method" for fcall/call
22:42
<
whitequark >
oh also, while I'm at it: you can't unify fcall and call too
22:42
<
whitequark >
you can fcall/vcall a private method, but you can't call it
22:42
<
zenspider >
yes, you can
22:43
gettyup has joined #ruby-lang
22:43
<
zenspider >
I use a nil reciever in the fcall/vcall case. I use s(:self) in the call case.
22:43
<
whitequark >
whoops, missed that
22:44
<
whitequark >
well, then I have a solution for the first problem as well
22:44
<
whitequark >
melbourne returns (:arglist) for call/fcall, but nil for vcall
22:44
<
zenspider >
yeah. you need the third case in your blog post for ruby_parser for a proper comparison
22:44
havenn has quit [Ping timeout: 244 seconds]
22:45
gettyup has left #ruby-lang [#ruby-lang]
22:45
<
whitequark >
what do you think about passing nil instead of arglist node in the vcall case?
22:45
<
zenspider >
so the only issue I think I'm not covering is fcall w/ empty args and I don't consider that a priority worth changing the sexp format for
22:46
<
zenspider >
you mean fcall, I assume
22:47
corundum has quit [Disconnected by services]
22:48
corundum has joined #ruby-lang
22:48
<
zenspider >
"There are lots of dark corners in Ruby syntax: multiple assignment, default argument handling, 1.9 block syntax extensions" -- with the exception of some really stupid 1.9 syntax extensions... I handle all of them afaik. And writing tests for RP is really clean and easy (and short)... so the "thousands of test LOC" hyperbole is undeserved.
22:48
<
zenspider >
I've written thousands of lines of tests so you don't have to
22:48
<
whitequark >
zenspider: not hyperbole, melbourne gem includes 17 thousands or so test LOC
22:48
vlad_sta_ has quit [Remote host closed the connection]
22:49
<
whitequark >
as per ruby_parser handling... well, there are issues, some of them are listed in the README (e.g. "line numbers are a bit off"), some of them have open issues
22:50
<
erikh >
at least use assertion count. I bet a java ruby parser's test suite would dwarf even melbourne's suite, on boilerplate alone
22:50
vlad_starkov has joined #ruby-lang
22:50
<
erikh >
(and assertion count isn't an especially great metric either)
22:50
vlad_starkov has quit [Read error: Connection reset by peer]
22:50
<
zenspider >
hyperbole -- exaggerated statements or claims not meant to be taken literally.... yeah... and I've got 6k and a 35k file corpus that I'm passing 98.6% on...
22:51
<
andrewvos >
Hey, you know how markdown matches multiple lines of text that start with tabs and then wraps them in a <code> block? How can I do this?
22:51
<
whitequark >
zenspider: whatever, I'm not really trying to say that RP is ideologically wrong in any way; pretty much the opposite
22:51
<
zenspider >
andrewvos: Kramdown.new.parse(...) :P
22:52
<
whitequark >
erikh: I'm also not really trying to compare test suites or so
22:52
<
andrewvos >
zenspider: I don't want to break other bits of the text :(
22:52
<
zenspider >
then use slice
22:52
<
whitequark >
that was a side remark, nothing more
22:52
<
andrewvos >
zenspider: Thanks, will have a google
22:52
<
matti >
drbrain: +1 for ministat
22:53
jarib has quit [Excess Flood]
22:54
jarib has joined #ruby-lang
22:55
<
whitequark >
zenspider: as per syntax, well, I just discovered you can't do decomposition in -> arguments either
22:55
<
andrewvos >
When I use String#split, should I be passing in a string to split with or can I go with the default? I remember there being something about that.
22:55
<
whitequark >
that probably falls under the "stupid 1.9 extensions", I guess
22:57
Madis has quit [Quit: ChatZilla 0.9.89 [Firefox 15.0/20120830123745]]
22:58
<
zenspider >
"It cannot even properly parse common 1.9 syntax, VCALL stuff aside." with the exception of filed issues, I called horseshit.
22:58
runeb has joined #ruby-lang
22:59
<
zenspider >
as I said... I parse 98.6% of all published ruby. I've got a couple classes of error to fix and then it'll be 99.5+%
22:59
<
erikh >
andrewvos: $;
22:59
<
erikh >
it's in the docs for String.split, fwiw.
22:59
lcdhoffman has quit [Quit: lcdhoffman]
22:59
<
zenspider >
andrewvos: I was referring to slice, so you can extract the indented portions only and pass that off to something to do the formatting...
23:00
KA_ has quit [Quit: KA_]
23:00
<
zenspider >
of course... my suggestion was also tongue-in-cheek... supporting what you want directly is not that hard to do
23:00
<
zenspider >
just need to maintain some state as you enumerate the lines
23:01
KA_ has joined #ruby-lang
23:01
<
whitequark >
zenspider: #66 then
23:01
<
whitequark >
once you reach the level of Melbourne, I would be happy to abandon the latter.
23:03
imajes has quit [Excess Flood]
23:05
__butch__ has quit [Quit: Leaving.]
23:05
imajes has joined #ruby-lang
23:07
mistym has quit [Remote host closed the connection]
23:08
toretore has quit [Quit: Leaving]
23:09
<
zenspider >
holy crap... they're 18k of tests because they're so fucking verbose
23:09
<
zenspider >
if my tests were that thick I'd have at LEAST 18k of tests
23:10
<
whitequark >
zenspider: #67.
23:10
gsav has joined #ruby-lang
23:10
<
erikh >
that's what I was trying to say
23:11
havenn has joined #ruby-lang
23:11
runeb has quit [Ping timeout: 255 seconds]
23:11
<
zenspider >
whitequark: are these covered by the melbourne specs?
23:11
<
zenspider >
I'm trying to evaluate if it is worth it to try to port them
23:12
<
whitequark >
zenspider: Melbourne doesn't fail on either #66 or #67
23:13
<
whitequark >
and no, those verbose (and pretty crappy IMO, they probably were automatically generated) specs don't handle 1.9 at all
23:14
<
zenspider >
what is the test / assertion count on melbourne?
23:14
wyhaines has joined #ruby-lang
23:14
<
zenspider >
I'm at 1283 tests and 6492 assertions. currently at 2 failures and 71 skips
23:15
<
whitequark >
zenspider: 568 tests, 1139 assertions
23:15
<
whitequark >
all green, but 1.9 is not covered
23:15
<
zenspider >
hahahahahaha
23:16
cyri_ has quit [Quit: cyri_]
23:16
<
whitequark >
well, because there was no 1.9 until I forward-ported it
23:16
<
zenspider >
looks like you have some more tests to write :P
23:16
<
whitequark >
I didn't write them in first place
23:16
<
whitequark >
and it has been enough of fixing 300+ failed assertions due to a stupid typo
23:16
josh^ has joined #ruby-lang
23:17
savage- has joined #ruby-lang
23:17
<
whitequark >
I fixed the specs for three days
23:17
<
whitequark >
straight
23:17
<
whitequark >
6 hours a day or so
23:17
datanoise has quit [Ping timeout: 260 seconds]
23:17
<
whitequark >
then I sent a 40 kLOC or so pull request
23:17
<
whitequark >
I have ZERO incentive to repeat that
23:18
<
whitequark >
(pull request which will probably get rejected. fuck.)
23:18
havenn has quit [Ping timeout: 244 seconds]
23:18
<
zenspider >
yeah. these tests are severely lacking. maybe you shouldn't disparage the testing status of my project until you actually compare apples to apples.
23:19
tRAS has quit [Ping timeout: 256 seconds]
23:19
<
zenspider >
they're also slow... which is odd. I'd have thought that the slowness of rspec would be countered by you parsing with a c extension
23:19
vlad_starkov has joined #ruby-lang
23:20
<
whitequark >
zenspider: er, how is 0.16 seconds slow?
23:20
<
zenspider >
Finished in 1.97 seconds
23:20
<
zenspider >
or about 288 tests per second
23:21
<
zenspider >
Mine run in 0.66 seconds or about 1943 tests per second
23:21
ryanlecompte has quit [Ping timeout: 264 seconds]
23:21
macmartine has quit [Quit: Computer has gone to sleep.]
23:21
<
whitequark >
might it be that the time includes startup or I/O?
23:21
<
zenspider >
hrm... certainly more IO... yeah.
23:21
<
zenspider >
which is slowed by adding all that ascii code crap
23:22
<
zenspider >
happy shiny little dots on my end
23:22
<
zenspider >
I can bench using minitest/pride to verify :)
23:22
<
whitequark >
also might be the fact that minitest certainly has less overhead than rspec
23:22
KA_ has quit [Quit: KA_]
23:23
<
whitequark >
the fun fact being, ruby_parser tests are 3x slower on my machine
23:23
<
whitequark >
as in $ ruby test/test_ruby_parser.rb
23:24
<
zenspider >
haha! nope. Fabulous tests in 0.675263s, 1900.0004 tests/s
23:24
<
zenspider >
too bad I can't paste the rainbow coloring of "fabulous tests"
23:24
<
whitequark >
fabulous?
23:24
<
zenspider >
yeah. I would have guessed that my slow ass pure ruby lexer would kill all minitest benefits
23:25
<
zenspider >
run with minitest/pride :)
23:25
<
erikh >
still peeved drbrain never laughed at my big gay al icon for superclass methods in rdoc
23:25
KA_ has joined #ruby-lang
23:25
<
erikh >
he's super, thanks for asking
23:26
<
whitequark >
my eyes
23:27
<
whitequark >
I'm not quite sure if this is really cool
23:27
<
whitequark >
or really, really bad
23:27
<
zenspider >
live in the gay district long enough and you'll learn that those are not mutually exclusive
23:28
Weems has joined #ruby-lang
23:28
<
whitequark >
I live in a country (yet) where being gay is illegal
23:29
<
whitequark >
and that's surprisingly not china
23:29
vlad_starkov has quit [Ping timeout: 256 seconds]
23:29
ruurd has quit [Quit: Leaving...]
23:29
KA_ has quit [Client Quit]
23:30
<
erikh >
you live in texas?
23:30
<
whitequark >
erikh: russia
23:31
<
zenspider >
I know queer russians... um... but they live here now :)
23:32
jamjam has quit [Ping timeout: 246 seconds]
23:33
kjr has quit [Quit: kjr]
23:33
mistym has joined #ruby-lang
23:33
mistym has quit [Changing host]
23:33
mistym has joined #ruby-lang
23:37
runeb has joined #ruby-lang
23:40
<
whitequark >
zenspider: you seem to know a lot of people
23:40
KA_ has joined #ruby-lang
23:40
<
zenspider >
lot of queers where I live
23:41
<
whitequark >
any particular reason for this choice of a place for living?
23:41
nitti has joined #ruby-lang
23:41
<
zenspider >
it is where I feel most at home
23:45
datanoise has joined #ruby-lang
23:45
havenn has joined #ruby-lang
23:45
runeb has quit [Read error: Connection reset by peer]
23:46
nitti has quit [Ping timeout: 256 seconds]
23:46
anachronistic has joined #ruby-lang
23:49
<
whitequark >
zenspider: you do know that your profile on okcupid is higher in Google than on github?..
23:51
savage- has quit [Remote host closed the connection]
23:51
ryanlecompte has joined #ruby-lang
23:52
<
whitequark >
well, whatever
23:53
havenn has quit [Ping timeout: 264 seconds]
23:55
nertzy has joined #ruby-lang
23:55
<
whitequark >
zenspider: why did you choose to include an explicit (:to_ary) node for mass assignment RHS?
23:58
<
zenspider >
that's what 1.8 did and it carried forward
23:59
kurko__ has quit [Ping timeout: 245 seconds]