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
josh^ has joined #ruby-lang
voker57 has joined #ruby-lang
voker57 has quit [Changing host]
voker57 has joined #ruby-lang
fbernier has joined #ruby-lang
wyhaines_ has quit [Remote host closed the connection]
m3nd3s_ has joined #ruby-lang
deryl has quit [Quit: Leaving.]
deryl has joined #ruby-lang
nvertigo has quit [Ping timeout: 244 seconds]
m3nd3s has quit [Ping timeout: 260 seconds]
<jtoy> how would you guys recommend catting files in ruby? I could just do `cat #{file} >> #{master_file}` but wanted to check if there is a better way
<jtoy> I'm doing that command for thousands of files at a time
toretore has quit [Quit: This computer has gone to sleep]
<zenspider> why do it in ruby at all?
<jtoy> zenspider: I have a bunch of logic to choose the files , i did start in plain bash, but it was painful writing it so switched to ruby
<zenspider> painful to merge a bunch of files? um. ok. well... yeah. you could use system or something to do it. I don't really see the point in calling out to cat if you're insisting on writing it in ruby
<jtoy> zenspider: i hate bash, but thx
m3nd3s has joined #ruby-lang
sn0wb1rd has quit [Quit: sn0wb1rd]
<wnd> I'd probably do something like this: open("output", "w"){|ofile| filenames.each{|fn| open(fn){|ifile| ofile.write ifile.read}}}
chimkan___ has quit [Quit: chimkan___]
<wnd> but really, if you're already doing things in ruby, do you really need to catenate multiple files as one in the first place?
<wnd> then again I'm a ruby newbie
<wnd> which probably shows
sailias has joined #ruby-lang
<jtoy> wnd: I'm using ruby to prepare data for usage in hadoop, which needs very large files to work efficiently
fbernier has quit [Ping timeout: 260 seconds]
m3nd3s_ has quit [Ping timeout: 268 seconds]
<wnd> ok, I suppose that rules out the option of simply passing hadoop the data as you go
sailias has quit [Quit: Leaving.]
burgestrand has quit [Ping timeout: 272 seconds]
<zenspider> jtoy: is there some reason why you're not opening the files and writing them out to another file ... like, in ruby?
tooky has joined #ruby-lang
<jtoy> zenspider: i am going to do that, just wanted to ask here first since cating files in ruby is probably not one of its strong points
<jtoy> zenspider: I suppose it will all be io bound anyway
methym has quit [Quit: methym]
chimkan has joined #ruby-lang
<zenspider> strong. points. processing... data.
kain has quit [Ping timeout: 264 seconds]
<jtoy> zenspider: i have hadoop for the actual processing
tooky_ has joined #ruby-lang
jtoy has quit [Read error: Connection reset by peer]
tooky has quit [Ping timeout: 260 seconds]
cored has quit [Quit: leaving]
burgestrand has joined #ruby-lang
ilyam has joined #ruby-lang
headius has joined #ruby-lang
RegEchse has quit [Quit: <3 WeeChat (v0.3.9-dev)]
petercooper has joined #ruby-lang
Tearan has quit [Quit: Sleepy Badger....]
tooky_ has quit [Ping timeout: 260 seconds]
Tearan has joined #ruby-lang
ivanoats has quit [Remote host closed the connection]
m3nd3s has quit [Ping timeout: 252 seconds]
savage- has joined #ruby-lang
sandbags has quit [Remote host closed the connection]
Defusal has quit [Ping timeout: 244 seconds]
imajes has quit [Excess Flood]
methym has joined #ruby-lang
imajes has joined #ruby-lang
methym has quit [Quit: methym]
savage- has quit [Ping timeout: 260 seconds]
jtoy has joined #ruby-lang
Tearan has quit [Quit: Sleepy Badger....]
krohrbaugh has quit [Quit: Leaving.]
mistym has quit [Remote host closed the connection]
rdavila has joined #ruby-lang
Defusal has joined #ruby-lang
wyhaines has joined #ruby-lang
m3nd3s has joined #ruby-lang
ryanf has joined #ruby-lang
petercooper has quit [Remote host closed the connection]
gsav has quit [Quit: Lost terminal]
gsav_ has quit [Quit: Lost terminal]
kain_ has joined #ruby-lang
towski has quit [Remote host closed the connection]
S2kx has quit [Quit: Leaving]
S1kx has joined #ruby-lang
amaya_ has joined #ruby-lang
kain_ has quit [Ping timeout: 268 seconds]
jtoy has quit [Read error: Connection reset by peer]
qpingu has quit [Quit: Leaving.]
qpingu has joined #ruby-lang
wyhaines has quit [Remote host closed the connection]
mrsolo has quit [Quit: Leaving]
headius has quit [Quit: headius]
sepp2k1 has quit [Remote host closed the connection]
kvirani has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
pabs has joined #ruby-lang
seanstickle has quit [Quit: seanstickle]
swarley has joined #ruby-lang
wallerdev has joined #ruby-lang
nvertigo has joined #ruby-lang
dous has quit [Remote host closed the connection]
wyhaines has joined #ruby-lang
fbernier has joined #ruby-lang
tRAS has joined #ruby-lang
lsegal has joined #ruby-lang
stephenp has quit [Read error: Connection reset by peer]
stephenp_ has joined #ruby-lang
jondot has quit [Read error: Connection reset by peer]
Xzyx987X has joined #ruby-lang
jondot has joined #ruby-lang
justinmcp has quit [Remote host closed the connection]
Xzyx987X_ has quit [Ping timeout: 272 seconds]
fbernier has quit [Ping timeout: 240 seconds]
wyhaines has quit [Remote host closed the connection]
qpingu has quit [Quit: Leaving.]
m3nd3s has quit [Remote host closed the connection]
Madis has quit [Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120313180949]]
towski has joined #ruby-lang
tRAS has quit [Quit: Mother, did it need to be so high?]
justinmcp has joined #ruby-lang
jtoy has joined #ruby-lang
S1kx has quit [Ping timeout: 244 seconds]
tRAS has joined #ruby-lang
ivanoats has joined #ruby-lang
ivanoats has quit [Remote host closed the connection]
ruby-lang372 has joined #ruby-lang
ruby-lang372 has quit [Quit: Page closed]
alvaro_o has quit [Quit: Ex-Chat]
nvertigo has quit [Ping timeout: 240 seconds]
rdavila has quit [Quit: rdavila]
dous has joined #ruby-lang
dous has quit [Changing host]
dous has joined #ruby-lang
jtoy has quit [Read error: Connection reset by peer]
towski has quit [Remote host closed the connection]
<nofxx> It's possible to avoid just a method from being included from a module? My gem works by ppl including A::B in their classes, and I would like a configure like A::B.set_foo
<nofxx> just wondering... just use another module np
<nofxx> =/ sorry sorry.. it's include, not extend .. stupid I
dous has quit [Ping timeout: 272 seconds]
tooky has joined #ruby-lang
t0n1 has joined #ruby-lang
ilyam has quit [Quit: ilyam]
TDJACR has quit [Read error: Operation timed out]
TDJACR has joined #ruby-lang
krohrbaugh has joined #ruby-lang
krohrbaugh1 has joined #ruby-lang
gregmoreno has quit [Ping timeout: 240 seconds]
tooky has quit [Ping timeout: 260 seconds]
Tearan has joined #ruby-lang
gregmoreno has joined #ruby-lang
krohrbaugh has quit [Ping timeout: 252 seconds]
pr0ton_ has left #ruby-lang [#ruby-lang]
towski has joined #ruby-lang
tjadc has joined #ruby-lang
towski has quit [Remote host closed the connection]
towski has joined #ruby-lang
towski has quit [Remote host closed the connection]
tRAS has quit [Quit: Mother, did it need to be so high?]
wallerdev has quit [Quit: wallerdev]
t0n1 has quit [Remote host closed the connection]
snorkdude has joined #ruby-lang
gregmoreno has quit [Ping timeout: 264 seconds]
amaya__ has joined #ruby-lang
amaya_ has quit [Ping timeout: 252 seconds]
gregmoreno has joined #ruby-lang
amaya__ has quit [Client Quit]
amaya_ has joined #ruby-lang
codewrangler has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
igaiga has joined #ruby-lang
amaya_ has quit [Client Quit]
snorkdude has quit [Remote host closed the connection]
amaya_ has joined #ruby-lang
igaiga has quit [Remote host closed the connection]
sandbags has joined #ruby-lang
sandbags has quit [Changing host]
sandbags has joined #ruby-lang
igaiga has joined #ruby-lang
swarley has quit [Ping timeout: 246 seconds]
^sandbags^ has joined #ruby-lang
^sandbags^ has quit [Changing host]
^sandbags^ has joined #ruby-lang
sandbags_ has joined #ruby-lang
sandbags has quit [Ping timeout: 260 seconds]
^sandbags^ has quit [Ping timeout: 245 seconds]
tRAS has joined #ruby-lang
igaiga has quit [Remote host closed the connection]
Dreamer3 has quit [Quit: Computer has gone to sleep.]
Dreamer3 has joined #ruby-lang
igaiga has joined #ruby-lang
dous has joined #ruby-lang
dous has quit [Changing host]
dous has joined #ruby-lang
dous has quit [Ping timeout: 260 seconds]
snorkdude has joined #ruby-lang
tooky has joined #ruby-lang
jackhammer2022 has joined #ruby-lang
jackhammer2022 has quit [Client Quit]
tooky has quit [Ping timeout: 260 seconds]
rohit has joined #ruby-lang
elico has quit [Ping timeout: 252 seconds]
amaya_ has quit [Ping timeout: 252 seconds]
snorkdude has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
kvirani has quit [Remote host closed the connection]
tjadc has quit [Ping timeout: 260 seconds]
goshakkk has joined #ruby-lang
igaiga has quit [Remote host closed the connection]
t0n1_ has joined #ruby-lang
ivanoats has joined #ruby-lang
ivanoats has quit [Changing host]
ivanoats has joined #ruby-lang
t0n1_ has quit [Remote host closed the connection]
tooky has joined #ruby-lang
postmodern has quit [Quit: Leaving]
Tearan has quit [Quit: Sleepy Badger....]
bhrgunatha has joined #ruby-lang
tRAS has quit [Quit: Mother, did it need to be so high?]
bhrgunatha has quit [Quit: ChatZilla 0.9.88.2 [Firefox 15.0.1/20120907164141]]
goshakkk has quit [Quit: Computer has gone to sleep.]
bfreeman has joined #ruby-lang
tooky has quit [Ping timeout: 260 seconds]
schroedinbug has joined #ruby-lang
rohit has quit [Quit: Leaving]
chimkan__ has joined #ruby-lang
chimkan__ has quit [Remote host closed the connection]
chimkan__ has joined #ruby-lang
chimkan has quit [Ping timeout: 245 seconds]
chimkan__ is now known as chimkan
dous has joined #ruby-lang
dous has quit [Ping timeout: 244 seconds]
gregmore_ has joined #ruby-lang
gregmoreno has quit [Ping timeout: 272 seconds]
tRAS has joined #ruby-lang
sandbags_ has quit [Remote host closed the connection]
gregmoreno has joined #ruby-lang
gregmore_ has quit [Ping timeout: 244 seconds]
amaya_ has joined #ruby-lang
chimkan has left #ruby-lang [#ruby-lang]
Hakon has quit [Read error: Connection reset by peer]
ryanf has quit [Quit: leaving]
sandbags has joined #ruby-lang
sandbags has quit [Changing host]
sandbags has joined #ruby-lang
|Vargas| has joined #ruby-lang
igaiga has joined #ruby-lang
wallerdev has joined #ruby-lang
savage- has joined #ruby-lang
ryanf has joined #ruby-lang
rue|w has joined #ruby-lang
dc5ala has joined #ruby-lang
sn0wb1rd has joined #ruby-lang
dous has joined #ruby-lang
dous has quit [Changing host]
dous has joined #ruby-lang
rue has quit [Ping timeout: 240 seconds]
dous has quit [Ping timeout: 264 seconds]
stepnem has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
kitallis has joined #ruby-lang
igaiga has quit [Remote host closed the connection]
ivanoats has quit [Remote host closed the connection]
cldwalker has quit [Remote host closed the connection]
akahn has quit [Remote host closed the connection]
wycats has quit [Write error: Connection reset by peer]
anildigital_work has quit [Remote host closed the connection]
mccraig has quit [Remote host closed the connection]
dkannan has quit [Remote host closed the connection]
abuiles has quit [Read error: Connection reset by peer]
agib has quit [Remote host closed the connection]
L0rdShrek has quit [Remote host closed the connection]
thejspr has quit [Read error: Connection reset by peer]
Spaceghost|cloud has quit [Remote host closed the connection]
pvh has quit [Remote host closed the connection]
amdprophet has quit [Remote host closed the connection]
franckverrot has quit [Write error: Connection reset by peer]
mroth has quit [Remote host closed the connection]
akamike has quit [Remote host closed the connection]
rikkus has quit [Write error: Broken pipe]
igaiga has joined #ruby-lang
robbyoconnor has joined #ruby-lang
robbyoconnor has quit [Read error: Connection reset by peer]
robbyoconnor has joined #ruby-lang
robbyoconnor has quit [Read error: Connection reset by peer]
robbyoconnor has joined #ruby-lang
robbyoconnor has quit [Client Quit]
robbyoconnor has joined #ruby-lang
runeb has joined #ruby-lang
chimkan_ has joined #ruby-lang
chimkan_ has quit [Client Quit]
ryanf has quit [Quit: broken pipes |||]
ryanf has joined #ruby-lang
justinmcp has quit [Remote host closed the connection]
tooky_ has joined #ruby-lang
justinmcp has joined #ruby-lang
<yorickpeterse> Morning
ivanoats has joined #ruby-lang
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
dous has joined #ruby-lang
lun_ has joined #ruby-lang
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
ivanoats has quit [Ping timeout: 244 seconds]
Criztian has joined #ruby-lang
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
tjadc has joined #ruby-lang
tooky_ has quit [Remote host closed the connection]
tjadc has quit [Read error: Connection reset by peer]
dous has quit [Ping timeout: 260 seconds]
sandbags has quit [Remote host closed the connection]
igaiga has quit [Remote host closed the connection]
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
kain has joined #ruby-lang
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
tjadc has joined #ruby-lang
wycats has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
dhruvasagar has joined #ruby-lang
justinmcp has quit [Remote host closed the connection]
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
rolfb has joined #ruby-lang
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
babinho has joined #ruby-lang
tjadc has joined #ruby-lang
sn0wb1rd has quit [Quit: I will be right back]
tjadc has quit [Read error: Connection reset by peer]
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
dhruvasagar is now known as Guest70059
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
tjadc has joined #ruby-lang
tjadc has quit [Read error: Connection reset by peer]
coryf has quit [Remote host closed the connection]
Criztian has quit [Remote host closed the connection]
zmack has joined #ruby-lang
rue has joined #ruby-lang
<rue|w> Hi there
charliesome has joined #ruby-lang
anildigital_work has joined #ruby-lang
publicvoid has quit [Ping timeout: 272 seconds]
solars has joined #ruby-lang
Asher has quit [Read error: Connection reset by peer]
dkannan has joined #ruby-lang
Asher has joined #ruby-lang
dgs_ has joined #ruby-lang
dgs_ has quit [Remote host closed the connection]
anannie has joined #ruby-lang
adambeynon has joined #ruby-lang
tooky has joined #ruby-lang
runeb has quit [Remote host closed the connection]
ryanf has quit [Quit: leaving]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
tooky has quit [Ping timeout: 260 seconds]
rolfb has quit [Quit: Linkinus - http://linkinus.com]
elico has joined #ruby-lang
mccraig has joined #ruby-lang
tooky has joined #ruby-lang
goshakkk has joined #ruby-lang
nariyal has joined #ruby-lang
Assurbanipal has joined #ruby-lang
sandbags has joined #ruby-lang
sandbags has quit [Changing host]
sandbags has joined #ruby-lang
Criztian has joined #ruby-lang
postmodern has joined #ruby-lang
toretore has joined #ruby-lang
nariyal has quit [Quit: Computer has gone to sleep.]
Weems2 has quit []
nariyal has joined #ruby-lang
nariyal has quit [Quit: Computer has gone to sleep.]
nariyal has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
Criztian has quit [Remote host closed the connection]
Guest70059 has quit [Ping timeout: 244 seconds]
dhruvasagar has joined #ruby-lang
qwerxy has joined #ruby-lang
mytrile has joined #ruby-lang
probst has joined #ruby-lang
Hakon has joined #ruby-lang
postmodern has quit [Quit: Leaving]
robotmay has joined #ruby-lang
JohnBat26 has joined #ruby-lang
dous has joined #ruby-lang
dous has quit [Changing host]
dous has joined #ruby-lang
anildigital_work has quit [Remote host closed the connection]
mccraig has quit [Remote host closed the connection]
wycats has quit [Remote host closed the connection]
dkannan has quit [Remote host closed the connection]
runeb has joined #ruby-lang
wycats has joined #ruby-lang
anildigital_work has joined #ruby-lang
dous has quit [Ping timeout: 260 seconds]
dkannan has joined #ruby-lang
ando has joined #ruby-lang
mccraig has joined #ruby-lang
robotmay has quit [Remote host closed the connection]
s1n4 has joined #ruby-lang
s1n4 has quit [Client Quit]
voker57 has quit [Remote host closed the connection]
pvh has joined #ruby-lang
agib has joined #ruby-lang
thejspr has joined #ruby-lang
nariyal has quit [Quit: Computer has gone to sleep.]
nariyal has joined #ruby-lang
probst has quit [Quit: probst]
Criztian has joined #ruby-lang
nvertigo has joined #ruby-lang
dous has joined #ruby-lang
dous has quit [Changing host]
dous has joined #ruby-lang
savage- has quit [Remote host closed the connection]
dous has quit [Ping timeout: 264 seconds]
sush24 has joined #ruby-lang
x0F has quit [Disconnected by services]
x0F_ has joined #ruby-lang
x0F_ is now known as x0F
seoaqua has joined #ruby-lang
sandbags has quit [Remote host closed the connection]
nvertigo has quit [Read error: Connection reset by peer]
sush24 has quit [Quit: This computer has gone to sleep]
justinmcp has joined #ruby-lang
rikkus has joined #ruby-lang
seanstickle has joined #ruby-lang
seanstickle has quit [Client Quit]
mroth has joined #ruby-lang
mroth has joined #ruby-lang
mroth has joined #ruby-lang
mroth has quit [Changing host]
dhruvasagar has quit [Ping timeout: 240 seconds]
JohnBat26 has quit [Remote host closed the connection]
lun_ has quit [Remote host closed the connection]
dhruvasagar has joined #ruby-lang
abuiles has joined #ruby-lang
probst has joined #ruby-lang
kvirani has joined #ruby-lang
beawesomeinstead has joined #ruby-lang
sush24 has joined #ruby-lang
sepp2k has joined #ruby-lang
zmack has quit [Remote host closed the connection]
qwerxy has quit [Read error: Connection reset by peer]
lucas_ has joined #ruby-lang
qwerxy has joined #ruby-lang
s1n4 has joined #ruby-lang
qz has joined #ruby-lang
qz has quit [Changing host]
qz has joined #ruby-lang
zwerg has joined #ruby-lang
diegoviola has joined #ruby-lang
zmack has joined #ruby-lang
JohnBat26 has joined #ruby-lang
goshakkk has joined #ruby-lang
goshakkk has quit [Client Quit]
cantonic_ has joined #ruby-lang
akahn has joined #ruby-lang
s1n4 has quit [Quit: leaving]
s1n4 has joined #ruby-lang
cantonic has quit [Ping timeout: 255 seconds]
cantonic_ is now known as cantonic
<masterkorp> morning
S1kx has joined #ruby-lang
S1kx has quit [Changing host]
S1kx has joined #ruby-lang
<rue|w> Too late, sorry
franckverrot has joined #ruby-lang
amaya_ has quit [Ping timeout: 252 seconds]
dous has joined #ruby-lang
guns has joined #ruby-lang
L0rdShrek has joined #ruby-lang
S1kx has quit [Read error: Connection reset by peer]
alexkira has quit [Ping timeout: 276 seconds]
Criztian has quit [Remote host closed the connection]
alexkira has joined #ruby-lang
probst has quit [Quit: probst]
cldwalker has joined #ruby-lang
jxie has quit [Ping timeout: 246 seconds]
kvirani has quit [Remote host closed the connection]
sush24 has quit [Quit: This computer has gone to sleep]
rolfb has joined #ruby-lang
kain has quit [Quit: exit]
seoaqua has quit [Ping timeout: 245 seconds]
kain has joined #ruby-lang
sush24 has joined #ruby-lang
kvirani has joined #ruby-lang
amaya_ has joined #ruby-lang
probst has joined #ruby-lang
cantonic_ has joined #ruby-lang
agib_ has joined #ruby-lang
setmeaway2 has joined #ruby-lang
pvh_ has joined #ruby-lang
mwjcomputing has joined #ruby-lang
mroth_ has joined #ruby-lang
kain has quit [Quit: exit]
diegovio1a has joined #ruby-lang
drbrain- has joined #ruby-lang
mihar_ has joined #ruby-lang
Okasu_ has joined #ruby-lang
corundum has quit [Disconnected by services]
bnagy_ has joined #ruby-lang
injekt_ has joined #ruby-lang
threeday1onk has joined #ruby-lang
heftig_ has joined #ruby-lang
ihme-TTilus has joined #ruby-lang
mksm has joined #ruby-lang
floyd2_ has joined #ruby-lang
babinho_ has joined #ruby-lang
rue has quit [Remote host closed the connection]
mksm is now known as Guest52127
kain has joined #ruby-lang
rue has joined #ruby-lang
corundum has joined #ruby-lang
kain has quit [Client Quit]
kain has joined #ruby-lang
kvirani has quit [Remote host closed the connection]
lele` has joined #ruby-lang
snuxoll_ has joined #ruby-lang
cantonic has quit [*.net *.split]
mroth has quit [*.net *.split]
agib has quit [*.net *.split]
pvh has quit [*.net *.split]
adambeynon has quit [*.net *.split]
babinho has quit [*.net *.split]
Hakon has quit [*.net *.split]
Nisstyre-laptop has quit [*.net *.split]
heftig has quit [*.net *.split]
diegoviola has quit [*.net *.split]
mihar has quit [*.net *.split]
setmeaway has quit [*.net *.split]
lele has quit [*.net *.split]
cout has quit [*.net *.split]
Okasu has quit [*.net *.split]
Guedes has quit [*.net *.split]
tris has quit [*.net *.split]
TTilus has quit [*.net *.split]
injekt has quit [*.net *.split]
threedaymonk has quit [*.net *.split]
floyd2 has quit [*.net *.split]
Guest41231 has quit [*.net *.split]
masterkorp has quit [*.net *.split]
drbrain has quit [*.net *.split]
bnagy has quit [*.net *.split]
snuxoll has quit [*.net *.split]
rue has quit [Ping timeout: 240 seconds]
cantonic_ is now known as cantonic
runeb has quit [Remote host closed the connection]
ihme-TTilus is now known as TTilus
ddfreyne has quit [Excess Flood]
Guedes has joined #ruby-lang
masterkorp has joined #ruby-lang
ddfreyne has joined #ruby-lang
tris has joined #ruby-lang
Nisstyre-laptop has joined #ruby-lang
deryl1 has joined #ruby-lang
r0bby_ has joined #ruby-lang
chris2 has quit [Ping timeout: 244 seconds]
robbyoconnor has quit [Ping timeout: 244 seconds]
chris2 has joined #ruby-lang
Defusal has quit [Remote host closed the connection]
Defusal has joined #ruby-lang
Defusal has quit [Changing host]
Defusal has joined #ruby-lang
deryl has quit [Ping timeout: 244 seconds]
lcdhoffman has joined #ruby-lang
ReinH has quit [Ping timeout: 244 seconds]
mksm_ has joined #ruby-lang
toertore has joined #ruby-lang
ReinH has joined #ruby-lang
sol has joined #ruby-lang
sora_h_ has joined #ruby-lang
sol is now known as Guest66755
ando has quit [Ping timeout: 244 seconds]
mytrile has quit [Remote host closed the connection]
ando has joined #ruby-lang
dous has quit [Ping timeout: 240 seconds]
Guest52127 has quit [Ping timeout: 240 seconds]
solars has quit [Ping timeout: 240 seconds]
sora_h has quit [Ping timeout: 240 seconds]
toretore has quit [Ping timeout: 244 seconds]
judofyr has joined #ruby-lang
Dreamer3 has quit [Ping timeout: 240 seconds]
|Vargas| has quit [Ping timeout: 240 seconds]
Dreamer3 has joined #ruby-lang
Hakon has joined #ruby-lang
urbanmonk has joined #ruby-lang
rue has joined #ruby-lang
sandbags has joined #ruby-lang
sandbags has quit [Changing host]
sandbags has joined #ruby-lang
goshakkk has joined #ruby-lang
^sandbags^ has joined #ruby-lang
^sandbags^ has quit [Changing host]
^sandbags^ has joined #ruby-lang
sandbags_ has joined #ruby-lang
sandbag__ has joined #ruby-lang
sandbag__ has quit [Remote host closed the connection]
sandbag__ has joined #ruby-lang
rue has quit [Ping timeout: 248 seconds]
sandbags has quit [Ping timeout: 252 seconds]
m3nd3s has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 260 seconds]
^sandbags^ has quit [Ping timeout: 260 seconds]
sandbags_ has quit [Ping timeout: 260 seconds]
dhruvasagar has joined #ruby-lang
josh^ has quit [Remote host closed the connection]
runeb has joined #ruby-lang
babinho_ has quit [Quit: leaving]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
m3nd3s has quit [Ping timeout: 260 seconds]
powershellyoda has joined #ruby-lang
yorickpeterse1 has joined #ruby-lang
yorickpeterse has quit [Disconnected by services]
abuiles_ has joined #ruby-lang
yorickpeterse1 has left #ruby-lang [#ruby-lang]
yorickpeterse1 has joined #ruby-lang
squeeks has joined #ruby-lang
facest has joined #ruby-lang
yorickpeterse1 has left #ruby-lang [#ruby-lang]
GarethAdams has quit [Quit: Linkinus - http://linkinus.com]
b3nt_pin_ has joined #ruby-lang
yorickpeterse has joined #ruby-lang
<yorickpeterse> Ugh, timeouts
lele has joined #ruby-lang
anildigital_work has quit [Remote host closed the connection]
corsican_ has joined #ruby-lang
Okasu has joined #ruby-lang
yeltzooo7 has joined #ruby-lang
Hakon has quit [Read error: Connection reset by peer]
mwjcomputing has quit [Disconnected by services]
powershellyoda has left #ruby-lang [#ruby-lang]
abuiles has quit [Read error: Connection reset by peer]
faces has quit [Ping timeout: 282 seconds]
yeltzooo has quit [Ping timeout: 242 seconds]
gianlucadv_ has quit [Ping timeout: 282 seconds]
lele` has quit [Ping timeout: 277 seconds]
lele|w has quit [Ping timeout: 275 seconds]
reactormonk has quit [Ping timeout: 304 seconds]
b3nt_pin has quit [Ping timeout: 268 seconds]
JohnBat26 has quit [Ping timeout: 268 seconds]
Okasu_ has quit [Ping timeout: 268 seconds]
corsican has quit [Ping timeout: 268 seconds]
lele|w has joined #ruby-lang
JohnBat26|2 has joined #ruby-lang
snuxoll_ has quit [Ping timeout: 253 seconds]
gianlucadv has joined #ruby-lang
snuxoll has joined #ruby-lang
sush24 has quit [Ping timeout: 260 seconds]
mtkd has quit [Ping timeout: 289 seconds]
anildigital_work has joined #ruby-lang
mtkd_ has joined #ruby-lang
alexkira has quit [Read error: Connection reset by peer]
rue has joined #ruby-lang
anildigital_work has quit [Remote host closed the connection]
<masterkorp> silly freenode
alexkira has joined #ruby-lang
powershellyoda has joined #ruby-lang
GarethAdams has joined #ruby-lang
anildigital_work has joined #ruby-lang
GarethAdams has quit [Changing host]
GarethAdams has joined #ruby-lang
codewrangler has joined #ruby-lang
davidbalbert has quit [Ping timeout: 246 seconds]
Dreamer3 has quit [Ping timeout: 260 seconds]
elico has quit [Ping timeout: 260 seconds]
elico has joined #ruby-lang
davidbalbert has joined #ruby-lang
powershellyoda has left #ruby-lang [#ruby-lang]
amaya_ has quit [Ping timeout: 246 seconds]
My_Hearing has joined #ruby-lang
setmeaway2 has quit [Ping timeout: 260 seconds]
joooooo has joined #ruby-lang
jaska has quit [Ping timeout: 246 seconds]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
jaska has joined #ruby-lang
Dreamer3 has joined #ruby-lang
Mon_Ouie has quit [Ping timeout: 260 seconds]
amaya_ has joined #ruby-lang
rue has quit [Ping timeout: 264 seconds]
<darix> masterkorp: not much you can do when people try to DOS you
<masterkorp> Yeah
<masterkorp> its kinda like a cat and mouse
<masterkorp> you can still divert them
gentz has quit [Ping timeout: 246 seconds]
dreamhaw1 has joined #ruby-lang
Axsuul has quit [Ping timeout: 244 seconds]
matti has quit [Ping timeout: 246 seconds]
matti has joined #ruby-lang
matti has quit [Changing host]
matti has joined #ruby-lang
gentz has joined #ruby-lang
oddmunds has quit [Ping timeout: 260 seconds]
t0n1 has joined #ruby-lang
yorickpeterse has quit [Quit: WeeChat 0.3.8]
dreamhawk has quit [Ping timeout: 260 seconds]
jondot has quit [Read error: Connection reset by peer]
jondot has joined #ruby-lang
diegovio1a has quit [Quit: Reconnecting]
diegoviola has joined #ruby-lang
judofyr_ has joined #ruby-lang
yorickpeterse has joined #ruby-lang
zwerg has quit [Remote host closed the connection]
zmack_ has joined #ruby-lang
Assurbanipal_ has joined #ruby-lang
mistym has quit [Remote host closed the connection]
sepp2k1 has joined #ruby-lang
judofyr has quit [Ping timeout: 260 seconds]
sepp2k has quit [Ping timeout: 260 seconds]
t0n1 has quit [Ping timeout: 260 seconds]
Assurbanipal has quit [Remote host closed the connection]
t0n1 has joined #ruby-lang
jstemmer has quit [Ping timeout: 260 seconds]
zmack has quit [Ping timeout: 260 seconds]
jstemmer has joined #ruby-lang
Nisstyre-laptop has quit [Read error: Connection reset by peer]
dous has joined #ruby-lang
dous has quit [Changing host]
dous has joined #ruby-lang
th___ has joined #ruby-lang
My_Hearing is now known as Mon_Ouie
nibbo_ has joined #ruby-lang
jamo_ has joined #ruby-lang
ReinH_ has joined #ruby-lang
morticed has joined #ruby-lang
Okasu_ has joined #ruby-lang
corsican has joined #ruby-lang
ammar_ has joined #ruby-lang
devn_ has joined #ruby-lang
aef_ has joined #ruby-lang
urbanmonk has quit [Quit: Leaving...]
no_i_wont_ has joined #ruby-lang
rue|w has quit [Remote host closed the connection]
dous has quit [Ping timeout: 248 seconds]
lele` has joined #ruby-lang
FiXato has quit [Excess Flood]
valeri_uF0 has joined #ruby-lang
FiXato has joined #ruby-lang
valeri_ufo has quit [Excess Flood]
lele has quit [Write error: Broken pipe]
rolfb has quit [Quit: Linkinus - http://linkinus.com]
x0F has quit [Disconnected by services]
x0F_ has joined #ruby-lang
x0F_ is now known as x0F
th_ has quit [Write error: Broken pipe]
mortice has quit [Write error: Broken pipe]
corsican_ has quit [Write error: Broken pipe]
nibbo has quit [Write error: Broken pipe]
Okasu has quit [Write error: Broken pipe]
no_i_wont has quit [Write error: Broken pipe]
shaman42_ has quit [Write error: Broken pipe]
ReinH has quit [Write error: Broken pipe]
jamo has quit [Write error: Broken pipe]
devn has quit [Write error: Broken pipe]
ruskie has quit [Excess Flood]
ammar has quit [Remote host closed the connection]
qwerxy_ has joined #ruby-lang
zmack has joined #ruby-lang
shaman42 has joined #ruby-lang
sailias has joined #ruby-lang
lzhz_ has joined #ruby-lang
quetzal- has joined #ruby-lang
Muz_ has joined #ruby-lang
masterkorp1 has joined #ruby-lang
rue has joined #ruby-lang
pryno has joined #ruby-lang
aef has quit [Ping timeout: 252 seconds]
lzhz has quit [Ping timeout: 252 seconds]
rhizmoe_ has joined #ruby-lang
no_i_wont has joined #ruby-lang
CoverSli1e has joined #ruby-lang
workmad3_ has joined #ruby-lang
Kero_ has joined #ruby-lang
crankhar1er has joined #ruby-lang
masterkorp has quit [Disconnected by services]
masterkorp1 has left #ruby-lang [#ruby-lang]
masterkorp has joined #ruby-lang
babinho has joined #ruby-lang
VGoff_afk has joined #ruby-lang
steez_ has joined #ruby-lang
jxie has joined #ruby-lang
rue has quit [Ping timeout: 260 seconds]
carloslopes has joined #ruby-lang
bougyman_ has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
wyhaines has joined #ruby-lang
no_i_wont_ has quit [*.net *.split]
zmack_ has quit [*.net *.split]
tris has quit [*.net *.split]
Guedes has quit [*.net *.split]
qwerxy has quit [*.net *.split]
qz has quit [*.net *.split]
workmad3 has quit [*.net *.split]
VGoff has quit [*.net *.split]
rhizmoe has quit [*.net *.split]
CoverSlide has quit [*.net *.split]
bryno has quit [*.net *.split]
crankharder has quit [*.net *.split]
Muz has quit [*.net *.split]
Kellin has quit [*.net *.split]
bougyman has quit [*.net *.split]
Kero has quit [*.net *.split]
steez has quit [*.net *.split]
Guedes has joined #ruby-lang
VGoff_afk is now known as VGoff
codewrangler has quit [Ping timeout: 244 seconds]
robbyoconnor has joined #ruby-lang
RegEchse has joined #ruby-lang
bougyman_ has quit [Changing host]
bougyman_ has joined #ruby-lang
bougyman_ is now known as bougyman
<zzak> Good morning!
dous has joined #ruby-lang
dous has quit [Changing host]
dous has joined #ruby-lang
savage- has joined #ruby-lang
codewrangler has joined #ruby-lang
morticed has quit [Ping timeout: 248 seconds]
ramonmaruko has quit [Ping timeout: 248 seconds]
mortice has joined #ruby-lang
ruskie has joined #ruby-lang
ramonmaruko has joined #ruby-lang
xxi has joined #ruby-lang
r0bby_ has quit [Ping timeout: 248 seconds]
ixx has quit [Ping timeout: 248 seconds]
injekt_ has quit [Ping timeout: 248 seconds]
tubbo`work has joined #ruby-lang
tubbo has quit [Ping timeout: 248 seconds]
ahf__ has joined #ruby-lang
ahf has quit [Ping timeout: 248 seconds]
injekt has joined #ruby-lang
lantins has quit [Ping timeout: 248 seconds]
S1kx has joined #ruby-lang
S1kx has quit [Changing host]
S1kx has joined #ruby-lang
<darix> good morning zzak
tallship has quit [Ping timeout: 248 seconds]
hinbody_ has joined #ruby-lang
hinbody has quit [Remote host closed the connection]
threedaymonk has joined #ruby-lang
oddmunds has joined #ruby-lang
tris has joined #ruby-lang
Elico1 has joined #ruby-lang
enebo has joined #ruby-lang
lucas__ has joined #ruby-lang
elico has quit [Ping timeout: 248 seconds]
threeday1onk has quit [Ping timeout: 248 seconds]
lucas_ has quit [Ping timeout: 248 seconds]
lantins has joined #ruby-lang
kvs has quit [Ping timeout: 248 seconds]
LanceHaig has quit [Ping timeout: 248 seconds]
zenspider has quit [Ping timeout: 248 seconds]
LanceHaig has joined #ruby-lang
zenspider has joined #ruby-lang
nariyal has quit [Ping timeout: 248 seconds]
ddfreyne has quit [Ping timeout: 248 seconds]
DEac- has quit [Ping timeout: 248 seconds]
andrewvos has quit [Ping timeout: 248 seconds]
dominikh has quit [Ping timeout: 248 seconds]
ddfreyne has joined #ruby-lang
nariyal has joined #ruby-lang
tallship has joined #ruby-lang
kvs has joined #ruby-lang
lantins has quit [Remote host closed the connection]
dhruvasagar has quit [Quit: leaving]
dhruvasagar has joined #ruby-lang
DEac- has joined #ruby-lang
injekt_ has joined #ruby-lang
mytrile has joined #ruby-lang
zmack has quit [Remote host closed the connection]
andrewvos has joined #ruby-lang
savage- has quit [Remote host closed the connection]
<zzak> darix: how are you?
<darix> good
<darix> just reading the blog on (j)ruby concurrency
kvs has quit [*.net *.split]
injekt has quit [*.net *.split]
ddfreyne has quit [*.net *.split]
bfreeman has quit [*.net *.split]
kitallis has quit [*.net *.split]
sandbag__ has quit [Remote host closed the connection]
bfreeman has joined #ruby-lang
sailias has quit [Ping timeout: 260 seconds]
lantins has joined #ruby-lang
kvs has joined #ruby-lang
lun_ has joined #ruby-lang
rue has joined #ruby-lang
MrOnFireMr has joined #ruby-lang
MrOnFireMr_ has joined #ruby-lang
countdigi has quit [Read error: Operation timed out]
rue is now known as 45PAA1GU1
countdigi has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
justinmcp has quit [Remote host closed the connection]
judofyr_ has left #ruby-lang [#ruby-lang]
dominikh has joined #ruby-lang
t0h has quit [Ping timeout: 264 seconds]
outoftime has joined #ruby-lang
sailias has joined #ruby-lang
t0h has joined #ruby-lang
amz has joined #ruby-lang
andrewvos has quit [Quit: Reconnecting]
andrewvos has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 252 seconds]
andrewvos has quit [Client Quit]
dhruvasagar has quit [Ping timeout: 244 seconds]
rippa has joined #ruby-lang
rue|w has joined #ruby-lang
dhruvasagar has joined #ruby-lang
gsav has joined #ruby-lang
gsav_ has joined #ruby-lang
mistym has quit [Remote host closed the connection]
goshakkk has joined #ruby-lang
fbernier has joined #ruby-lang
sandbags has joined #ruby-lang
sandbags has quit [Changing host]
sandbags has joined #ruby-lang
andrewvos has joined #ruby-lang
andrewvos has quit [Client Quit]
tRAS has quit [Quit: Mother, did it need to be so high?]
andrewvos has joined #ruby-lang
^sandbags^ has joined #ruby-lang
^sandbags^ has quit [Changing host]
^sandbags^ has joined #ruby-lang
^sandbags^ has quit [Remote host closed the connection]
andrewvos has quit [Client Quit]
^sandbags^ has joined #ruby-lang
^sandbags^ has quit [Changing host]
^sandbags^ has joined #ruby-lang
rue|w has quit [Ping timeout: 264 seconds]
ivanoats has joined #ruby-lang
ivanoats has quit [Changing host]
ivanoats has joined #ruby-lang
|Vargas| has joined #ruby-lang
|Vargas| has quit [Changing host]
|Vargas| has joined #ruby-lang
andrewvos has joined #ruby-lang
sandbags has quit [Ping timeout: 260 seconds]
amz has quit [Quit: Leaving]
gurps has quit [Ping timeout: 276 seconds]
CarlB_the_great has joined #ruby-lang
amzan has joined #ruby-lang
sailias has quit [Ping timeout: 260 seconds]
urbanmonk has joined #ruby-lang
rom has joined #ruby-lang
<amzan> Hi all. On Ubuntu with rvm 1.9.3p194 and the json gem installed, I get "prettify_json.rb: command not found". rvm is in my path. Any thoughts on how to get it working?
<yorickpeterse> amzan: the JSON gem doesn't ship any executables
urbanmonk has quit [Ping timeout: 245 seconds]
gsav_ has quit [Quit: Lost terminal]
bryancp has joined #ruby-lang
ahf__ has quit [Quit: Bye]
ahf has joined #ruby-lang
ahf has quit [Changing host]
ahf has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
reactormonk has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
crankhar1er has quit [Quit: leaving]
crankharder has joined #ruby-lang
Defusal has quit [Quit: Quassel IRC]
Defusal has joined #ruby-lang
Defusal has joined #ruby-lang
Defusal has quit [Changing host]
amaya_ has quit [Quit: ChatZilla 0.9.88.2 [Firefox 15.0.1/20120905151427]]
tRAS has joined #ruby-lang
goshakkk has joined #ruby-lang
<zzak> amzan: try install json-utils gem
<zzak> or json gem ~> 1.5.0
<zzak> json gem removed the executables for 1.6 release: https://github.com/flori/json/commit/f729d47
sush24 has joined #ruby-lang
yats has joined #ruby-lang
<zzak> amzan: also, what were you trying to do that gave you that error?
<amzan> gem install json-utils works!
<amzan> thanks all!
zmack has joined #ruby-lang
dc5ala has quit [Quit: Ex-Chat]
wyhaines has quit [Remote host closed the connection]
stardiviner has quit [Quit: my website: http://stardiviner.dyndns-blog.com/]
Jake232 has joined #ruby-lang
savage- has joined #ruby-lang
nariyal has quit [Quit: Computer has gone to sleep.]
qwerxy_ has quit [Quit: offski]
codesturgeon has joined #ruby-lang
wmoxam has quit [Quit: leaving]
Jake232 has quit [Quit: Computer has gone to sleep.]
t0n1 has quit [Remote host closed the connection]
fbernier has quit [Ping timeout: 272 seconds]
heftig_ is now known as heftig
savage- has quit [Ping timeout: 260 seconds]
nariyal has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 260 seconds]
probst has quit [Quit: probst]
bryancp has quit [Remote host closed the connection]
dhruvasagar has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
ivanoats has quit [Remote host closed the connection]
krohrbaugh1 has quit [Ping timeout: 260 seconds]
GarethAdams|Work has joined #ruby-lang
nofxx has quit [Read error: Connection reset by peer]
runeb has quit [Remote host closed the connection]
zmack_ has joined #ruby-lang
GarethAdams has quit [Ping timeout: 265 seconds]
nariyal has quit [Quit: Computer has gone to sleep.]
tooky has quit [Read error: Connection reset by peer]
ddfreyne has joined #ruby-lang
Guest66755 has quit [Ping timeout: 264 seconds]
tooky has joined #ruby-lang
|Vargas| has quit [Quit: ...]
zmack has quit [Ping timeout: 245 seconds]
sailias has joined #ruby-lang
amzan has quit [Ping timeout: 260 seconds]
mytrile has quit [Remote host closed the connection]
amzan has joined #ruby-lang
deryl1 is now known as deryl
GarethAdams has joined #ruby-lang
sush24 has joined #ruby-lang
GarethAdams|Work has quit [Read error: Connection reset by peer]
garetha has joined #ruby-lang
mistym has quit [Remote host closed the connection]
MSU has joined #ruby-lang
diegoviola has quit [Ping timeout: 264 seconds]
GarethAdams has quit [Ping timeout: 260 seconds]
garetha has quit [Client Quit]
nofxx has joined #ruby-lang
nofxx has quit [Changing host]
nofxx has joined #ruby-lang
Madis has joined #ruby-lang
probst has joined #ruby-lang
lucas__ has quit [Remote host closed the connection]
JohnBat26|2 has quit [Quit: KVIrc 4.1.3 Equilibrium http://www.kvirc.net/]
codesturgeon has left #ruby-lang ["Linkinus - http://linkinus.com"]
ivanoats has joined #ruby-lang
ivanoats has quit [Changing host]
ivanoats has joined #ruby-lang
GarethAdams has joined #ruby-lang
coryf has joined #ruby-lang
lucas__ has joined #ruby-lang
nibbo_ has quit [Ping timeout: 260 seconds]
Dreamer3 has quit [Quit: Computer has gone to sleep.]
CarlB_the_great has quit [Remote host closed the connection]
CarlB_the_great has joined #ruby-lang
tRAS has quit [Quit: Mother, did it need to be so high?]
y5wars has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
probst has quit [Quit: probst]
runeb has joined #ruby-lang
qwerxy has joined #ruby-lang
y5wars has quit [Client Quit]
y5wars has joined #ruby-lang
<y5wars> hi\
nibbo has joined #ruby-lang
<y5wars> I need to split a string into words but I wan to keep spaces in quotes
<y5wars> example:
<y5wars> s = 'this is "my data" here'
^sandbags^ has quit [Remote host closed the connection]
fbernier has joined #ruby-lang
<y5wars> result: ['this','is','my data', 'here']
sandbags has joined #ruby-lang
sandbags has quit [Changing host]
sandbags has joined #ruby-lang
Harzilein has joined #ruby-lang
<Harzilein> hi
<Harzilein> any idea why this fails to work?:
<Harzilein> Your document is stored in @doc...
<Harzilein> irb(main):001:0> @doc.css("li.playlist-video-item")
<Harzilein> => []
<Harzilein> it works with li[class*=playlist-video-item], but of course that's not the same
<lianj> y5wars: 'this is "my data" here'.scan(/\w+|".+"/).map{|i| i[/^".+"$/] ? i[1..-2] : i }
sush24 has joined #ruby-lang
runeb has quit [Ping timeout: 260 seconds]
wyhaines has joined #ruby-lang
<chris2> Harzilein: try #nokogiri
<y5wars> thanks liana, forgot to add that sometimes the string is like this "this is 'my data' here"
squeeks has left #ruby-lang ["I was expecting this place to be a huge party or a huge circlejerk or something"]
<y5wars> single quotes within double quotes
<chris2> lianj: ".*?"
nibbo has quit [Ping timeout: 252 seconds]
<y5wars> i meant thanks lianj
diegoviola has joined #ruby-lang
kitallis has joined #ruby-lang
kvirani has joined #ruby-lang
rdavila has joined #ruby-lang
dreamhaw1 has quit [Ping timeout: 240 seconds]
<Harzilein> chris2: it tends to be very quiet in there
<chris2> yes
<chris2> but more clueful probably
dreamhawk has joined #ruby-lang
rindolf has joined #ruby-lang
Defusal has quit [Ping timeout: 260 seconds]
agib_ has quit [Remote host closed the connection]
beawesomeinstead has quit [Remote host closed the connection]
wycats has quit [Remote host closed the connection]
pvh_ has quit [Remote host closed the connection]
dkannan has quit [Remote host closed the connection]
cldwalker has quit [Remote host closed the connection]
rikkus has quit [Remote host closed the connection]
L0rdShrek has quit [Remote host closed the connection]
mccraig has quit [Remote host closed the connection]
abuiles_ has quit [Remote host closed the connection]
mroth_ has quit [Write error: Broken pipe]
anildigital_work has quit [Remote host closed the connection]
akahn has quit [Write error: Broken pipe]
thejspr has quit [Write error: Broken pipe]
franckverrot has quit [Write error: Broken pipe]
diegoviola has quit [Ping timeout: 248 seconds]
GarethAdams has quit [Ping timeout: 252 seconds]
elux has quit [Quit: Bye!]
krohrbaugh has joined #ruby-lang
s1n4 has left #ruby-lang ["leaving"]
wallerdev has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
zmack_ has quit [Remote host closed the connection]
nibbo has joined #ruby-lang
Dreamer3 has joined #ruby-lang
pbjorklund has joined #ruby-lang
wyhaines has quit [Remote host closed the connection]
Tearan has joined #ruby-lang
wyhaines has joined #ruby-lang
savage- has joined #ruby-lang
publicvoid has joined #ruby-lang
towski has joined #ruby-lang
y5wars has quit [Quit: y5wars]
wycats has joined #ruby-lang
kain has quit [Quit: exit]
kain has joined #ruby-lang
tyro has joined #ruby-lang
anildigital_work has joined #ruby-lang
tyro has left #ruby-lang [#ruby-lang]
dkannan has joined #ruby-lang
billyoc has joined #ruby-lang
mccraig has joined #ruby-lang
pvh_ has joined #ruby-lang
mztriz has joined #ruby-lang
agib_ has joined #ruby-lang
thejspr has joined #ruby-lang
<mztriz> Having problems looping through an array index. http://pastie.org/private/ou4n8t4pikc2fidybasq The loop only goes once, but the array has an index of 4. I must be doing something silly....
<andrewvos> mztriz: What the hell are you trying to do?
<andrewvos> What is @name
<andrewvos> ?
<mztriz> it's an array of usernames
<andrewvos> And why are you performing each_index on it?
rindolf has quit [Quit: Yay! I'm a llama again. http://www.shlomifish.org/]
<mztriz> andrewvos: I'll send the full code
butchanton has joined #ruby-lang
<andrewvos> mztriz: Instead of Arrray.new you can just use []
<andrewvos> mztriz: Reading the code...
<andrewvos> mztriz: Line 18 will never write anything useful because it happens when the class is being parsed.
<mztriz> andrewvos: sorry that was for my testing purposes
<mztriz> ignore it
<masterkorp> Guys, do you recomend any libs to parse command line arguments ?
<masterkorp> scrip --flag1 arg1 arg2 --flag2 arg3
<andrewvos> mztriz: Can you explain what the crack method is supposed to to, word for word.
bfreeman has quit [Quit: bfreeman]
skluss has joined #ruby-lang
agile has quit [Ping timeout: 276 seconds]
<andrewvos> mztriz: You're aware that the index of the first element in an array is zero right?
<mztriz> andrewvos: yes
<andrewvos> mztriz: For example [9,8,7][0] == 9
<andrewvos> On line 12 you use 1, 2, and 3
sustainableweb has joined #ruby-lang
<mztriz> andrewvos: ah you're right... T_T
<andrewvos> mztriz: On line 16 I would suggest outputting @name, @salt and @pass.
carloslopes has quit [Quit: Leaving.]
<mztriz> andrewvos: they all work as they should
kitallis has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
sailias has quit [Quit: Leaving.]
<mztriz> I'll explain crypt
fbernier has quit [Ping timeout: 260 seconds]
ivanoats has quit [Ping timeout: 260 seconds]
agile has joined #ruby-lang
sustainableweb has quit [Ping timeout: 272 seconds]
<andrewvos> OP will surely deliver.
sepp2k has joined #ruby-lang
sepp2k1 has quit [Ping timeout: 272 seconds]
mroth_ has joined #ruby-lang
<mztriz> andrewvos: hopefully this is more helpful http://pastie.org/private/jfbqj6onzny4qxz9wse2w
rikkus has joined #ruby-lang
<mztriz> andrewvos: the problem is that it only goes though @name one time it never gets to the next index
ltd-- has quit [Ping timeout: 264 seconds]
thejspr has quit [Remote host closed the connection]
wycats has quit [Remote host closed the connection]
agib_ has quit [Remote host closed the connection]
anildigital_work has quit [Remote host closed the connection]
pvh_ has quit [Remote host closed the connection]
dkannan has quit [Remote host closed the connection]
rikkus has quit [Remote host closed the connection]
mccraig has quit [Read error: Connection reset by peer]
mroth_ has quit [Remote host closed the connection]
ltd has joined #ruby-lang
jtoy has joined #ruby-lang
alvaro_o has joined #ruby-lang
tooky has quit [Remote host closed the connection]
burgestrand has quit [Quit: Leaving.]
<mztriz> andrewvos: I had to start my array at 1 because match[0] is the full line I only want the elements from my regex group
agib_ has joined #ruby-lang
pvh_ has joined #ruby-lang
franckverrot has joined #ruby-lang
Assurbanipal_ has quit [Quit: Konversation terminated!]
coryf has quit [Read error: Connection reset by peer]
coryf has joined #ruby-lang
akahn has joined #ruby-lang
L0rdShrek has joined #ruby-lang
dkannan has joined #ruby-lang
mccraig has joined #ruby-lang
wycats has joined #ruby-lang
macmartine has joined #ruby-lang
thejspr has joined #ruby-lang
mroth_ has joined #ruby-lang
anildigital_work has joined #ruby-lang
rikkus has joined #ruby-lang
abuiles_ has joined #ruby-lang
beawesomeinstead has joined #ruby-lang
urbanmonk has joined #ruby-lang
zmack has joined #ruby-lang
fromhet has joined #ruby-lang
fromhet is now known as fsato
rdavila has quit [Quit: rdavila]
Defusal has joined #ruby-lang
Defusal has quit [Changing host]
Defusal has joined #ruby-lang
rom has quit [Ping timeout: 260 seconds]
cldwalker has joined #ruby-lang
rikkus has quit [Remote host closed the connection]
beawesomeinstead has quit [Remote host closed the connection]
abuiles_ has quit [Remote host closed the connection]
mccraig has quit [Remote host closed the connection]
akahn has quit [Remote host closed the connection]
thejspr has quit [Remote host closed the connection]
wycats has quit [Remote host closed the connection]
L0rdShrek has quit [Remote host closed the connection]
mroth_ has quit [Remote host closed the connection]
franckverrot has quit [Remote host closed the connection]
pvh_ has quit [Remote host closed the connection]
agib_ has quit [Remote host closed the connection]
cldwalker has quit [Remote host closed the connection]
dkannan has quit [Remote host closed the connection]
anildigital_work has quit [Remote host closed the connection]
Madis has quit [Remote host closed the connection]
tooky has joined #ruby-lang
sailias has joined #ruby-lang
Madis has joined #ruby-lang
mistym has quit [Remote host closed the connection]
tooky has quit [Ping timeout: 260 seconds]
carloslopes has joined #ruby-lang
havenn has joined #ruby-lang
zeroG` has joined #ruby-lang
butchanton has quit [Quit: Leaving.]
butchanton has joined #ruby-lang
wycats has joined #ruby-lang
hramrach has joined #ruby-lang
nariyal has joined #ruby-lang
qwerxy has quit [Quit: offski]
Bosox20051 has joined #ruby-lang
anildigital_work has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
dkannan has joined #ruby-lang
zeroG has joined #ruby-lang
mccraig has joined #ruby-lang
mztriz has left #ruby-lang [#ruby-lang]
zeroG` has quit [Ping timeout: 240 seconds]
pvh_ has joined #ruby-lang
agib_ has joined #ruby-lang
thejspr has joined #ruby-lang
Muz_ is now known as Muz
CarlB_the_great has quit []
towski has quit [Remote host closed the connection]
<nofxx> Hm... trying to define_method inside a klass.instance_eval dont work ... how would be best way to define a class method dinamically?
<nofxx> need to interpolate the method name so can't just def foo
tRAS has joined #ruby-lang
billyoc has quit [Remote host closed the connection]
mroth_ has joined #ruby-lang
zeroG has quit [Read error: Connection reset by peer]
zeroG has joined #ruby-lang
rikkus has joined #ruby-lang
abuiles_ has joined #ruby-lang
qpingu has joined #ruby-lang
macmartine has quit [Quit: Computer has gone to sleep.]
beawesomeinstead has joined #ruby-lang
Taranis has left #ruby-lang [#ruby-lang]
probst has joined #ruby-lang
nariyal has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
m3nd3s has joined #ruby-lang
towski has joined #ruby-lang
ivanoats has joined #ruby-lang
Dreamer3 has quit [Quit: Computer has gone to sleep.]
urbanmonk has quit [Ping timeout: 244 seconds]
Dreamer3 has joined #ruby-lang
agile has quit [Ping timeout: 260 seconds]
macmartine has joined #ruby-lang
swarley has joined #ruby-lang
dhoss_ has left #ruby-lang [#ruby-lang]
akahn has joined #ruby-lang
agile has joined #ruby-lang
diegoviola has joined #ruby-lang
lun_ has quit [Remote host closed the connection]
burgestrand has joined #ruby-lang
franckverrot has joined #ruby-lang
L0rdShrek has joined #ruby-lang
imajes has quit [Excess Flood]
tooky has joined #ruby-lang
imajes has joined #ruby-lang
rhizmoe_ has quit [Quit: leaving]
fsato has quit [Quit: fsato]
Dreamer3 has quit [Quit: Computer has gone to sleep.]
burgestrand has quit [Ping timeout: 252 seconds]
fromhet has joined #ruby-lang
tooky has quit [Ping timeout: 260 seconds]
Nisstyre-laptop has joined #ruby-lang
cldwalker has joined #ruby-lang
schroedinbug has quit [Ping timeout: 268 seconds]
swarley has quit [Ping timeout: 260 seconds]
Nisstyre-laptop has quit [Read error: Connection reset by peer]
yats has quit [Ping timeout: 264 seconds]
ruurd has joined #ruby-lang
ruurd has quit [Client Quit]
Nisstyre-laptop has joined #ruby-lang
naquad has quit [Ping timeout: 245 seconds]
towski has quit [Remote host closed the connection]
CoverSli1e is now known as CoverSlide
ruurd has joined #ruby-lang
cout has joined #ruby-lang
skluss has left #ruby-lang [#ruby-lang]
kvirani has quit [Read error: Connection reset by peer]
kvirani_ has joined #ruby-lang
kvirani has joined #ruby-lang
schroedinbug has joined #ruby-lang
kvirani_ has quit [Read error: Connection reset by peer]
fromhet has quit [Quit: fromhet]
ruurd has quit [Quit: Leaving...]
Dreamer3 has joined #ruby-lang
kain has quit [Remote host closed the connection]
havenn has quit [Ping timeout: 252 seconds]
probst has quit [Quit: probst]
probst has joined #ruby-lang
wmoxam has joined #ruby-lang
probst has quit [Client Quit]
probst has joined #ruby-lang
rdavila has joined #ruby-lang
probst has quit [Client Quit]
ivanoats has quit [Remote host closed the connection]
probst has joined #ruby-lang
probst has quit [Client Quit]
richardjortega has left #ruby-lang [#ruby-lang]
probst has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
zmack_ has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
tooky has joined #ruby-lang
zmack has quit [Ping timeout: 245 seconds]
savage- has quit [Ping timeout: 260 seconds]
b3nt_pin_ has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
b3nt_pin has joined #ruby-lang
tRAS has quit [Quit: Mother, did it need to be so high?]
tooky has quit [Ping timeout: 260 seconds]
savage- has joined #ruby-lang
probst has quit [Quit: probst]
Tearan has quit [Quit: Sleepy Badger....]
thone_ has joined #ruby-lang
rue has joined #ruby-lang
thone has quit [Ping timeout: 252 seconds]
45PAA1GU1 has quit [Ping timeout: 244 seconds]
naquad has joined #ruby-lang
jtoy has quit [Quit: jtoy]
sailias has quit [Quit: Leaving.]
ruurd has joined #ruby-lang
goshakkk has joined #ruby-lang
kain has joined #ruby-lang
rdavila has quit [Quit: rdavila]
krohrbaugh has quit [Quit: Leaving.]
singpolyma has quit [Remote host closed the connection]
jethr0 has joined #ruby-lang
Criztian has joined #ruby-lang
singpolyma has joined #ruby-lang
rdavila has joined #ruby-lang
rdavila has quit [Client Quit]
lcdhoffman has joined #ruby-lang
zmack has joined #ruby-lang
zmack_ has quit [Ping timeout: 244 seconds]
ilyam has joined #ruby-lang
zmack has quit [Remote host closed the connection]
macmartine has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
sailias has joined #ruby-lang
s0ber has quit [Read error: Connection reset by peer]
alexkira has quit [Remote host closed the connection]
s0ber has joined #ruby-lang
postmodern has joined #ruby-lang
Fullmoon has quit [Quit: Fullmoon]
wnd has quit [Excess Flood]
wnd has joined #ruby-lang
sailias has quit [Quit: Leaving.]
chessguy has joined #ruby-lang
jtoy has joined #ruby-lang
lcdhoffman_ has joined #ruby-lang
lcdhoffman has quit [Read error: Connection reset by peer]
lcdhoffman has joined #ruby-lang
lcdhoffman_ has quit [Read error: Connection reset by peer]
Jake232 has joined #ruby-lang
tooky has joined #ruby-lang
rippa has quit [Ping timeout: 248 seconds]
Axsuul has joined #ruby-lang
Axsuul has quit [Excess Flood]
Axsuul has joined #ruby-lang
Axsuul has quit [Excess Flood]
Axsuul has joined #ruby-lang
Axsuul has quit [Excess Flood]
Axsuul has joined #ruby-lang
Axsuul has quit [Excess Flood]
pbjorklund has quit [Read error: Connection reset by peer]
Axsuul has joined #ruby-lang
bryancp has joined #ruby-lang
pbjorklund has joined #ruby-lang
xxi has left #ruby-lang [#ruby-lang]
bryancp has quit [Remote host closed the connection]
sandbags has quit [Remote host closed the connection]
justinmcp has joined #ruby-lang
alexkira has joined #ruby-lang
tooky has quit [Ping timeout: 260 seconds]
KTMBoID has joined #ruby-lang
havenn has joined #ruby-lang
chessguy has quit [Remote host closed the connection]
chessguy has joined #ruby-lang
jmeeuwen has quit [Quit: Disconnecting from stoned server.]
jmeeuwen has joined #ruby-lang
amzan has quit [Quit: Leaving]
lcdhoffman has quit [Quit: lcdhoffman]
chessguy has quit [Remote host closed the connection]
chessguy has joined #ruby-lang
akamike has joined #ruby-lang
jethr0 has quit [Ping timeout: 260 seconds]
justinmcp has quit [Remote host closed the connection]
Tearan has joined #ruby-lang
stephenp_ has quit [Quit: stephenp_]
lcdhoffman has joined #ruby-lang
solars has joined #ruby-lang
cantonic has quit [Quit: cantonic]
voker57 has joined #ruby-lang
voker57 has quit [Changing host]
voker57 has joined #ruby-lang
solars has quit [Ping timeout: 240 seconds]
robbyoconnor has joined #ruby-lang
snorkdude has joined #ruby-lang
carloslopes has quit [Quit: Leaving.]
lcdhoffman has quit [Quit: lcdhoffman]
kvirani has quit [Remote host closed the connection]
dfr|mac has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
wyhaines has quit [Remote host closed the connection]
Bosox20051 has quit [Quit: Leaving]
solars has joined #ruby-lang
tooky has joined #ruby-lang
Jake232 has quit [Quit: Computer has gone to sleep.]
zz_chrismcg is now known as chrismcg
gsav has quit [Ping timeout: 252 seconds]
ryanf has joined #ruby-lang
<zenspider> zzak: oi. I'm looking at your racc issues right now
<zenspider> zzak: all 3 merged. thank you very much.
alexkira has quit [Remote host closed the connection]
t0n1 has joined #ruby-lang
wmoxam has quit [Quit: leaving]
lcdhoffman has joined #ruby-lang
tooky has quit [Remote host closed the connection]
postmodern has quit [Ping timeout: 264 seconds]
havenn has quit [Read error: Connection reset by peer]
havenn has joined #ruby-lang
tooky has joined #ruby-lang
tooky has quit [Ping timeout: 260 seconds]
chrismcg is now known as zz_chrismcg
chessguy has quit [Remote host closed the connection]
chessguy has joined #ruby-lang
loincloth has joined #ruby-lang
j`ey has joined #ruby-lang
<j`ey> hey guys! Is there a site that has a list of C extensions?
<erikh> find `gem env home` -name '*.{so,dylib}'
* erikh cackles maniacally
<j`ey> I get nothing!
<j`ey> (probasbly cos my gem is old..)
<erikh> hm, maybe that glob doesn't work with find
benanne has joined #ruby-lang
hinbody_ has left #ruby-lang [#ruby-lang]
<erikh> anyhow; what you probably need to do is use something like gem mirror (see the rubygems organization on github) and then start fishing for extconf.rb's
<j`ey> Soo. there isnt just a ruby extensions site :P
<erikh> it doesn't seem very practical
hinbody has joined #ruby-lang
m3nd3s has quit [Remote host closed the connection]
<j`ey> erikh: someone is trying to say that due to PHP having a site: http://pecl.php.net/
<j`ey> it's waybetter than ruby
alexkira has joined #ruby-lang
<j`ey> I dont think he understands that extensions are *uaully* a last resort
<erikh> php extensions are discrete components from php libraries
<j`ey> youwhat
<erikh> e.g., mysql is an extension that's loaded directly, and ADO is a library that uses mysql (which is not an extension)
<erikh> gems makes no distinction
<j`ey> ah
<erikh> from a package-level standpoint that is
<erikh> see also CPAN, python eggs, and nearly every other non-php system
outoftime has quit [Quit: Leaving]
<erikh> most of them don't have the notion of extensions in the same way php does.
<zenspider> j`ey: arguing on the internet? about PHP vs ruby? nothing better to do?
<j`ey> zenspider: yeah :P
kvirani has joined #ruby-lang
<zenspider> have fun with that
<erikh> zenspider: hey man, this is serious business
<j`ey> I just got home, though I'd have a lovely shitty argument
<zenspider> srs
Jake232 has joined #ruby-lang
<erikh> j`ey: can I recommend reddit? it's a site dedicated to the craft.
<j`ey> actually, I saw zenspider post there a few days ago.. felt nostalgic
havenn has quit [Remote host closed the connection]
<zenspider> I did?
<j`ey> maybe it was a different zenspider
<erikh> bizarro zenspider
<j`ey> but it still reminded me of you
<zenspider> heh
<j`ey> (I used to be in here a lot, like 5 years ago)
<zenspider> a lot of ppl (bots?) post my blog posts... I almost never do. but I never know what goes up or why
<j`ey> zenspider: it was on a post about Itsy Forth iirc
dfr|mac has quit [Remote host closed the connection]
justinmcp has joined #ruby-lang
dfr|mac has joined #ruby-lang
josh^ has joined #ruby-lang
tooky has joined #ruby-lang
enebo has quit [Quit: enebo]
sepp2k has quit [Read error: Connection reset by peer]
wyhaines has joined #ruby-lang
ruurd has quit [Quit: Leaving...]
<zenspider> ah. right. too bad that thing is only for dos... who the fuck does that?
<j`ey> yeah :/
Madis has quit [Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120313180949]]
<zenspider> man... I don't really want to learn chef :/
tooky has quit [Ping timeout: 260 seconds]
<zenspider> which is funny... because I just got a free pass to their conference because I'm a core committer :P
swarley has joined #ruby-lang
<j`ey> (I thought you meant comitter to chef at first.. :P)
<zenspider> I am
<zenspider> I have commits in chef, and no clue how to really use it :)
<j`ey> oh..
<j`ey> I have a commit to Ruby :O
<zenspider> yay
<j`ey> (2 actually, one was just a compiler warning)
havenn has joined #ruby-lang
loincloth has quit [Remote host closed the connection]
singpolyma has quit [Quit: Lost terminal]
anannie has quit [Read error: Connection reset by peer]
<masterkorp> the JSON lib is trolling me
<masterkorp> unexpected token at 'home/masterkorp/.s3_cleaner.json' (JSON::ParserError)
singpolyma has joined #ruby-lang
<masterkorp> yet it passes in JSONLint
lcdhoffman has quit [Quit: lcdhoffman]
<swarley> lol
<andrewvos> Seems like a parser error.
<swarley> indeed
<andrewvos> Let us see our json
toertore has quit [Quit: Leaving]
<masterkorp> the json file is good
<masterkorp> i found it
<masterkorp> just give the wrong data to the function
* masterkorp facepalms
<swarley> lol
nofxx has quit [Ping timeout: 264 seconds]
diegoviola has quit [Ping timeout: 260 seconds]
t0n1 has quit [Remote host closed the connection]
coryf has quit [Remote host closed the connection]
seanstickle has joined #ruby-lang
MrOnFireMr_ has quit [Ping timeout: 240 seconds]
MrOnFireMr has quit [Ping timeout: 252 seconds]
m3nd3s has joined #ruby-lang
stepnem has quit [Ping timeout: 260 seconds]
dfr|mac has quit [Remote host closed the connection]
solars has quit [Ping timeout: 264 seconds]
dfr|mac has joined #ruby-lang
dfr|mac has quit [Remote host closed the connection]
benanne has quit [Ping timeout: 272 seconds]
Criztian has quit [Remote host closed the connection]
Jake232 has quit [Quit: Computer has gone to sleep.]
nofxx has joined #ruby-lang
nofxx has quit [Remote host closed the connection]
swarley has quit [Quit: Leaving]
swarley has joined #ruby-lang
tooky has joined #ruby-lang
wyhaines has quit [Remote host closed the connection]
tooky has quit [Ping timeout: 260 seconds]
coryf has joined #ruby-lang
jackhammer2022 has joined #ruby-lang
towski has joined #ruby-lang
RegEchse has quit [Quit: <3 WeeChat (v0.3.9-dev)]
havenn has quit [Remote host closed the connection]
fbernier has joined #ruby-lang
havenn has joined #ruby-lang