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