imperator changed the topic of #ruby-lang to: Ruby 1.9.3-p362: http://ruby-lang.org (ruby-2.0.0-preview2) || Paste >3 lines of text on http://gist.github.com
Banistergalaxy has joined #ruby-lang
workmad3 has quit [Ping timeout: 264 seconds]
Rarrikins has quit [Ping timeout: 255 seconds]
flaguy48 has left #ruby-lang [#ruby-lang]
havenn has quit [Remote host closed the connection]
mercwithamouth has joined #ruby-lang
chekcmate has joined #ruby-lang
drbrain has joined #ruby-lang
<chekcmate> hello
<mistym> Hi chekcmate
matip_ has quit [Remote host closed the connection]
<chekcmate> may I ask something? It may sound stupid, but I don't seem to be capable of understanding the regexp documentation
<canton7> don't ask to ask, just ask ;)
<chekcmate> [/\@(.*?)+/,1] <--- between first "@" and first "+" - right?
<chekcmate> does that work with whole Strings like: between first "test" and first "end" e.g.?
<chekcmate> because that's what I couldn't quite understand...
wyhaines has quit [Remote host closed the connection]
<canton7> well, + has a special meaning in regex
<canton7> so if it's a literal + you're after, you'll need to escape it
<canton7> (also, rubular.com is amazing)
<chekcmate> naw, I'm actually more after something like this (pseudo code): [/\"start"(.*?)"end"/,1]
drbrain has quit [Ping timeout: 245 seconds]
<canton7> aha righto. and what do you mean by "whole strings"? Given a string input, that regex will match whatever sits between the first 'start' and the first 'end'
<chekcmate> the problem is basically that I have a large string, and the only way to determine the distinct part of it, I need to search between actual words
methods has joined #ruby-lang
methods has left #ruby-lang [#ruby-lang]
<chekcmate> *where distinct part is the part I want
<canton7> ok?
<chekcmate> but yes, it's what you said
<canton7> give us a sample input and output if you're still stuck
<chekcmate> the stuff which sits between those two "words" in the string
<chekcmate> I will take a look at it, when I still get a problem, I'll come crying
<canton7> I'm afraid I can't quite see your problem... you're asking for code that matches your pseudo-code :P
<chekcmate> canton7, you're a saint
<chekcmate> best website EVER!
<canton7> not bad, is it? :P
<chekcmate> did it match? I always got errors somehow :(
<mistym> <3 rubular
<chekcmate> yea, that goes directly to my favs
<canton7> well, the first example you gave had bad escaping, and the second had unnecessary quotes, but the concept was there :P
charliesome has joined #ruby-lang
<chekcmate> hehe.. just started learning Ruby
<canton7> good choice
<chekcmate> it's great, I like it better than python for sure
<canton7> woo, that was easy
<canton7> normally python people need more pursuading to let go of their favourite language
<charliesome> yay
<charliesome> chekcmate: everyone here is happy to help if you run into any problems!
<chekcmate> great, thanks
<zzak> charliesome: hi
<charliesome> zzak: sup
<chekcmate> I actually didn't know Ruby originated from Japan.. though I need Ruby for my job in Japan next year haha
<zzak> charliesome: you doing anything with debug_inspector?
srbaker has joined #ruby-lang
<charliesome> better_errors stuff
<charliesome> also banister needs it to be stable for binding_of_caller
<yfeldblum> chekcmate, it's why the Date class parses "xx/xx/xxxx" as "dd/mm/yyyy" and why strings aren't auto-unicode
<zzak> yeah
<zzak> there is a thread on rocky's ML too
<zzak> one sec
<chekcmate> that's why Ruby gets another point from me as a German, used to that kind of date :)
<chekcmate> mm/dd/yyyy doesn't make sense to me...
CapnKernul has quit [Quit: Leaving...]
<charliesome> it doesn't make sense to most of the world
<zzak> charliesome: you got any code i can see?
<canton7> I think it's a result of saying e.g. "July 4th" instead of "4th of July". But yeah, it makes no sense to me either
<charliesome> zzak: apart from the code i posted to redmine no
<charliesome> i was helping banister reproduce a debug_inspector segv he had in pry
<charliesome> and ended up with that
davidbalber|away is now known as davidbalbert
<chekcmate> canton7: Quick follow up question: data-super-img="(.*?)" data-super-width <--- how to I only get the stuff between those two, without those two included?
jbsan_ has joined #ruby-lang
jbsan has quit [Ping timeout: 244 seconds]
jbsan_ is now known as jbsan
<chekcmate> input: [/data-super-img="(.*?)" data-super-width/] /// output:data-super-img="test" data-super-width
<canton7> stuff in brackets are matches. try my_string[/data-super-img="(.*?)"/, 1]
<zzak> charliesome: ok cool, i havent reviewed it fully yet, but ill see
<zzak> maybe i just need to dig in and write my own little extension like you did
<canton7> or my_string.match(/data-super-img="(.*?)"/)[1]
<chekcmate> a jeez.. I had that "1" there before. Awkward... thanks a lot!
<chekcmate> , 1] does the thing
<canton7> the string[/regex/, index] syntax is confusing and non-obvious, but short :P
<chekcmate> match groups... ofc
<canton7> np :)
<chekcmate> (?<month>\d{1,2})\/(?<day>\d{1,2})\/(?<year>\d{4}) <- I found that rather confusing though :P
<chekcmate> at least at this time..
<canton7> stick it into rubular ;)
<canton7> you can have named matches, not just numbered ones
<chekcmate> that's where I got it
<canton7> aha
<charliesome> zzak: done much c before?
<canton7> (?<name>pattern) means that the stuff matched by 'pattenr' is associated with 'name'
<canton7> so you can go m = my_data_str.match(/your regex/); month = m['month']
<canton7> \d is a digit, {n,m} means "between n and m times"
<canton7> ... you see how it goes
<chekcmate> pretty powerful
drbrain has joined #ruby-lang
mistym has quit [Remote host closed the connection]
<zzak> charliesome: a little, but i am getting better at reading it now
<zzak> i just read your ticket again, that much i can understand
<charliesome> i don't totally understand what is going on behind the scenes to cause the crash
<charliesome> although bindings and eval have a history of being crashy
<zzak> i dont either
<zzak> but i think i could cobble together something small with the api
anannie has quit [Remote host closed the connection]
stonerfish has quit [Quit: Leaving.]
anannie has joined #ruby-lang
stonerfish has joined #ruby-lang
marr has quit [Ping timeout: 248 seconds]
stonerfish has quit [Client Quit]
srbaker has quit [Quit: Computer has gone to sleep.]
briantrust has joined #ruby-lang
CapnKernul has joined #ruby-lang
tjadc has joined #ruby-lang
holgerno has quit [Read error: Connection reset by peer]
holgerno_ has joined #ruby-lang
briantrust has quit [Remote host closed the connection]
<zzak> if only there was more time in the day haha
mistym has joined #ruby-lang
jtoy has joined #ruby-lang
emocakes has quit [Quit: emocakes]
oscardelben has joined #ruby-lang
<chekcmate> canton7: mind telling me how to get everything after the last forwardslash in an url? I'll be off then :)
<chekcmate> I came to some results, but never to "last forwardslash" expression
<yfeldblum> chekcmate, `url =~ /\\([^\\]*)\z/ ; $1`
<chekcmate> thought it might work like: /.*\\/(.*)
<chekcmate> thanks a lot, yfeldblum
<yfeldblum> chekcmate, i just made that up in here; you might want to check it :D
<chekcmate> yea, it doesn't work. though i escaped the forwardslashes
<yfeldblum> chekcmate, `url =~ /\/([^\/]*)\z/ ; $1` <--- oops
<chekcmate> no match
<chekcmate> http://aaaa.bbb.net/ccc/g/111/123/4/5/random_name.jpg + \/\/([^\/]*)\z\/ in rubular
gix has quit [Ping timeout: 255 seconds]
<yfeldblum> chekcmate, worked for me
<chekcmate> ??
<chekcmate> in rubularß
<chekcmate> *?
<oscardelben> Hi, I'm having trouble with creating a C extension. I have the usual extconf.rb file which compiles the extension, but only produces a .o file, but not .so which is apparently expected to be there.
<yfeldblum> chekcmate, why did you escape the first and last / characters?
<chekcmate> rubular told me to
<yfeldblum> chekcmate, they're not part of the regexp itself; they're the quotes that contain the regexp
<yfeldblum> chekcmate, they're how you write a regexp literal in ruby
<zzak> oscardelben: can i see your extconf?
<chekcmate> ohhh
<chekcmate> now that explains a lot
<chekcmate> I thought you did that on purpose (including /)
<oscardelben> note that the extension name is different than the final library name (that's the trouble I guess)
<oscardelben> I can also push all the code to github...
<zzak> sure, do that
<oscardelben> the goal is to have the main gem called http-parser, but the extension named ruby_http_parser since I can't have - in the Init method
<zzak> oscardelben: i dont get what all the other files are
<oscardelben> zzak: you mean Rakefile, etc?
<zzak> i have a generic extension gem that you can use for reference: https://github.com/zzak/konnichiwa
<zzak> .bundle, .o, etc
<oscardelben> zzak, those are the files generated by make
<zzak> also, why do you need rake _and_ make?
<zzak> just pick one
<zzak> extconf can do most of it
<oscardelben> zzak: I want to compile the gem before every test
<zzak> i think you want rake-compiler then
<zzak> otherwise you are just duplicating code and leaving it up to fate
<oscardelben> zzak: I'll give that I try
<oscardelben> btw, how have you been? I've seen a lot of new documentation lately on Ruby
<zzak> oscardelben: im doing good, thank you! hows it going for you?
<zzak> writing lots of mri docs :)
<oscardelben> zzak: pretty good, would love to catch up privately about the state of docs
<zzak> anytime
<zzak> i am working on docs for new api, and working to improve experience on ruby-doc.org
<zzak> also, there is some old stdlib's that need refreshing
srbaker has joined #ruby-lang
CapnKernul has quit [Quit: Leaving...]
cirwin has quit [Quit: Leaving.]
xsdg_ has quit [Quit: Reconnecting]
xsdg has joined #ruby-lang
swarley has joined #ruby-lang
methods has joined #ruby-lang
nertzy has joined #ruby-lang
unlikely_monkey has joined #ruby-lang
DEac- has quit [Read error: Connection reset by peer]
DEac- has joined #ruby-lang
CapnKernul has joined #ruby-lang
havenn has joined #ruby-lang
unlikely_monkey has quit [Remote host closed the connection]
elico has joined #ruby-lang
<elico> Hey, I was wondering if someone have experience with EPOLL in a ruby server?
leopard_me has quit [Quit: Computer has gone to sleep.]
jtoy has quit [Quit: jtoy]
CapnKernul has quit [Ping timeout: 260 seconds]
sepp2k1 has quit [Remote host closed the connection]
<havenn> elico: Just with using Rainbows::XEPollThreadPool, but that was a pleasant experience.
<elico> havenn: I want to write a proxy server which will take a load... but needs to be able to work with two sides of the connection and support TPROXY.
lcdhoffman has quit [Quit: lcdhoffman]
stevechiagozie has joined #ruby-lang
<havenn> elico: Using sleepy_penguin?
<elico> tried...
<elico> it works great...
<elico> but I have problem of jugling the program when an EVENT comes up on a socket..
<elico> I am a bit off so my trouble is to design the whole event based process
<elico> I was thinking of using fibers for some tasks and a wrapping class for the FD
<havenn> elico: Hrm, I'm curious if nio4r would work well with epoll. Haven't seen it done, but *seems* nice. https://github.com/tarcieri/nio4r
<elico> sec I will look at it
<elico> Ho i remeber someone mentioned it..
<elico> hmmm but it's based on Kernel.selelt...
<elico> select*
<elico> basically it seems like a nice way to do things
<elico> I was looking for a while a small proxy which based on EPOOL just to see the logic..
<elico> *how* it was done..
mistym has quit [Remote host closed the connection]
<havenn> elico: Ah, makes sense. Hrmm, I dunno.
Drew has joined #ruby-lang
<elico> I am a memeber of squid-dev and part of it but I dont know there parts of the code so I have couple hours until I can ask someone there...
CapnKernul has joined #ruby-lang
CapnKernul has quit [Ping timeout: 265 seconds]
mercwithamouth has quit [Ping timeout: 265 seconds]
mercwithamouth has joined #ruby-lang
stonerfish has joined #ruby-lang
holgerno_ has quit [Quit: Leaving...]
Mch1 has quit [Quit: ZNC - http://znc.sourceforge.net]
Mch1 has joined #ruby-lang
briantrust has joined #ruby-lang
madish has quit [Quit: ChatZilla 0.9.89 [Firefox 16.0.1/20121026125834]]
glebm has quit [Ping timeout: 252 seconds]
lcdhoffman has joined #ruby-lang
chendo_ has joined #ruby-lang
oscardelben has quit [Quit: oscardelben]
chekcmate has quit [Quit: Page closed]
scholar01 has left #ruby-lang [#ruby-lang]
jaimef is now known as Ober
wyhaines has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
intellitech has joined #ruby-lang
intellitech has quit [Client Quit]
sailias has quit [Quit: Leaving.]
methods1 has joined #ruby-lang
methods has quit [Read error: Connection reset by peer]
CapnKernul has joined #ruby-lang
solars has quit [Ping timeout: 245 seconds]
jonahR has joined #ruby-lang
aedorn has quit [Remote host closed the connection]
aedorn has joined #ruby-lang
CapnKernul has quit [Ping timeout: 260 seconds]
havenn has quit [Remote host closed the connection]
havenn has joined #ruby-lang
jonahR has quit [Quit: jonahR]
stevechiagozie has quit [Ping timeout: 264 seconds]
methods1 has left #ruby-lang [#ruby-lang]
havenn has quit [Ping timeout: 245 seconds]
stardiviner has quit [Ping timeout: 260 seconds]
stardiviner has joined #ruby-lang
jxie has quit [Read error: Connection reset by peer]
Drew has quit [Remote host closed the connection]
jxie has joined #ruby-lang
havenn has joined #ruby-lang
chendo_ has quit [Ping timeout: 244 seconds]
chendo_ has joined #ruby-lang
jonahR has joined #ruby-lang
jonahR has quit [Client Quit]
Aria has joined #ruby-lang
chendo_ has quit [Ping timeout: 245 seconds]
chendo_ has joined #ruby-lang
methods has joined #ruby-lang
jonahR has joined #ruby-lang
chendo_ has quit [Ping timeout: 252 seconds]
stevechiagozie has joined #ruby-lang
chendo_ has joined #ruby-lang
methods has left #ruby-lang [#ruby-lang]
chendo_ has quit [Ping timeout: 245 seconds]
holgerno has joined #ruby-lang
wmoxam has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 260 seconds]
holgerno has quit [Ping timeout: 252 seconds]
CapnKernul has joined #ruby-lang
briantrust has quit [Remote host closed the connection]
lsegal has quit [Read error: No route to host]
CapnKernul has quit [Ping timeout: 260 seconds]
lsegal has joined #ruby-lang
ambethia has quit [Quit: Linkinus - http://linkinus.com]
briantrust has joined #ruby-lang
briantrust has quit [Ping timeout: 250 seconds]
stevechiagozie has joined #ruby-lang
jbsan has quit [Quit: jbsan]
Aria has quit [Remote host closed the connection]
jbsan has joined #ruby-lang
mercwithamouth has quit [Ping timeout: 260 seconds]
jbsan has quit [Client Quit]
jonahR has quit [Quit: jonahR]
xyzodiac has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 264 seconds]
havenn has quit [Remote host closed the connection]
mercwithamouth has joined #ruby-lang
havenn has joined #ruby-lang
havenn has quit [Ping timeout: 245 seconds]
havenn has joined #ruby-lang
jtoy has joined #ruby-lang
sush24 has joined #ruby-lang
holgerno has joined #ruby-lang
jtoy has quit [Client Quit]
mercwithamouth has quit [Ping timeout: 260 seconds]
holgerno has quit [Ping timeout: 252 seconds]
<rking> charliesome: I don't get the Python part of the joke.
<charliesome> gil
<charliesome> python can only do one shot at a time!
thoughtfulgoblin has joined #ruby-lang
CapnKernul has joined #ruby-lang
<rking> Aha
<rking> Thanks, I didn't know that about Python.
stevechiagozie has joined #ruby-lang
CapnKernul has quit [Ping timeout: 244 seconds]
<thoughtfulgoblin> Hi guys, I have a singleton class (which normally should only be initialised once) but in the tests I need to initialise it with different conditions. Is it possible to override the singleton aspect and be able to re-initialise it for each test.
stevechiagozie has quit [Ping timeout: 255 seconds]
kurko_ has joined #ruby-lang
<rking> thoughtfulgoblin: Sure thing. There are probably fifty ways to make that happen. gist some code and we'll tell you one.
<thoughtfulgoblin> ah awesome, one sec :D
oscardelben has joined #ruby-lang
chendo_ has joined #ruby-lang
havenn has quit [Remote host closed the connection]
havenn has joined #ruby-lang
megharsh has quit [Ping timeout: 265 seconds]
havenn has quit [Ping timeout: 260 seconds]
<thoughtfulgoblin> I want to be able to change the location of the yaml in config and then reinitialise it for the tests.
<thoughtfulgoblin> Previously I was stubbing the load_config function in nginx but its a lot more nicer to be able to do it in config as it modifies the file a lot.
<thoughtfulgoblin> What is happening at the moment is the second tests will fail because the stub will not do anything (as it just load the existing instance and does not reinitialise).
<thoughtfulgoblin> Is it possible just to delete the entire instance for example?
stonerfish has quit [Quit: Leaving.]
jonahR has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
<rking> Hrm I'm pretty lost.
setmeaway has quit [Read error: Connection reset by peer]
<rking> thoughtfulgoblin: This is brute, but do you know about instance_eval?
<thoughtfulgoblin> no, having a look.
<rking> It's just a way to run some code in the context of some other 'self', as if it was a method of that object.
JohnBat26 has joined #ruby-lang
<rking> class Foo; def initialize; @a = 3 end; def show; p @a end end; f = Foo.new; f.show; f.instance_eval do @a = 4 end; f.show
<rking> Gives 3 then 4
<rking> BTW raise "You do not have a deploy.yml configuration file at #{config_location}" seems like it'll error once it's run, since there's no DeployMaster::Config#config_location
megharsh has joined #ruby-lang
setmeaway has joined #ruby-lang
jxie has quit [Quit: leaving]
stevechiagozie has joined #ruby-lang
chendo_ has quit [Quit: Computer has gone to sleep.]
sush24 has quit [Quit: This computer has gone to sleep]
Asher has joined #ruby-lang
<thoughtfulgoblin> rking ok thanks, Just read up on instance_eval. I am going to try that out. Hopefully that should work.
holgerno has joined #ruby-lang
larrylv has joined #ruby-lang
holgerno has quit [Ping timeout: 265 seconds]
stevechiagozie has quit [Ping timeout: 250 seconds]
xyzodiac has quit [Quit: Computer has gone to sleep.]
megharsh has quit [Quit: WeeChat 0.3.9.2]
CapnKernul has joined #ruby-lang
sush24 has joined #ruby-lang
CapnKernul has quit [Ping timeout: 244 seconds]
havenn has joined #ruby-lang
goshakkk has joined #ruby-lang
<lsegal> thoughtfulgoblin back away from the eval. there are better ways to solve this one.. like dependency injection on config
<lsegal> especially if the goal is solely for testability
havenn has quit [Remote host closed the connection]
havenn has joined #ruby-lang
Nisstyre-laptop has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
havenn has quit [Ping timeout: 260 seconds]
stevechiagozie has joined #ruby-lang
havenn has joined #ruby-lang
davidbalbert is now known as davidbalber|away
srbaker has quit [Quit: Computer has gone to sleep.]
oscardelben has quit [Quit: oscardelben]
stevechiagozie has quit [Ping timeout: 244 seconds]
chendo_ has joined #ruby-lang
seanstickle has quit [Quit: seanstickle]
rue has quit [Remote host closed the connection]
rue has joined #ruby-lang
goshakkk has joined #ruby-lang
holgerno has joined #ruby-lang
holgerno has quit [Ping timeout: 250 seconds]
JoelMcCracken has quit [Ping timeout: 244 seconds]
CapnKernul has joined #ruby-lang
chendo_ has quit [Ping timeout: 245 seconds]
chendo_ has joined #ruby-lang
CapnKernul has quit [Ping timeout: 250 seconds]
Asher has quit [Quit: Leaving.]
thufir_ has joined #ruby-lang
stevechiagozie has joined #ruby-lang
xalei has quit [Quit: Leaving]
stevechiagozie has quit [Ping timeout: 265 seconds]
thoughtfulgoblin has quit [Remote host closed the connection]
Weems has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 260 seconds]
Spaceghostc2c has quit [Excess Flood]
robbyoconnor has joined #ruby-lang
Spaceghostc2c has joined #ruby-lang
chendo_ has quit [Ping timeout: 264 seconds]
holgerno has joined #ruby-lang
holgerno has quit [Client Quit]
chendo_ has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 265 seconds]
chendo_ has quit [Quit: Computer has gone to sleep.]
sush24 has quit [Quit: This computer has gone to sleep]
robbyoconnor has joined #ruby-lang
stevechiagozie has joined #ruby-lang
ryanf has quit [Quit: leaving]
sush24 has joined #ruby-lang
CapnKernul has joined #ruby-lang
marr has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 265 seconds]
CapnKernul has quit [Ping timeout: 260 seconds]
goshakkk has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
sulo has joined #ruby-lang
<injekt> andrewvos: yo
emocakes has joined #ruby-lang
io_syl has quit [Quit: Computer has gone to sleep.]
tjadc has quit [Ping timeout: 244 seconds]
zmack has joined #ruby-lang
elico has quit [Quit: elico]
ebouchut has joined #ruby-lang
zmack has quit [Read error: Connection reset by peer]
sulo has quit [Remote host closed the connection]
ebouchut has quit [Client Quit]
Nisstyre-laptop has quit [Ping timeout: 250 seconds]
stevechiagozie has joined #ruby-lang
cyri_ has joined #ruby-lang
JohnBat26 has quit [Ping timeout: 255 seconds]
sulo has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 265 seconds]
cirwin has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 265 seconds]
thufir_ has quit [Quit: Leaving.]
zmack has joined #ruby-lang
zmack has quit [Read error: Connection reset by peer]
thufir_ has joined #ruby-lang
drbrain has quit [Read error: Connection timed out]
sulo has quit [Remote host closed the connection]
CapnKernul has joined #ruby-lang
JohnBat26 has joined #ruby-lang
anannie has quit [Remote host closed the connection]
CapnKernul has quit [Ping timeout: 245 seconds]
adambeynon has joined #ruby-lang
thufir_ has quit [Remote host closed the connection]
gix has joined #ruby-lang
drbrain has joined #ruby-lang
larrylv has quit [Remote host closed the connection]
stevechiagozie has joined #ruby-lang
JohnBat26 has quit [Ping timeout: 250 seconds]
sulo has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 265 seconds]
stevechiagozie has joined #ruby-lang
sulo has quit [Ping timeout: 260 seconds]
Banistergalaxy has quit [Ping timeout: 260 seconds]
sush24 has quit [Quit: This computer has gone to sleep]
stevechiagozie has quit [Ping timeout: 255 seconds]
sulo has joined #ruby-lang
neocoin has quit [Read error: Connection reset by peer]
neocoin has joined #ruby-lang
sulo has quit [Ping timeout: 252 seconds]
robbyoconnor has joined #ruby-lang
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
jonahR has quit [Quit: jonahR]
MaddinXx has joined #ruby-lang
intellitech has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 255 seconds]
havenn has quit [Remote host closed the connection]
cyri_ has quit [Quit: cyri_]
stevechiagozie has joined #ruby-lang
CapnKernul has joined #ruby-lang
cyri_ has joined #ruby-lang
sulo has joined #ruby-lang
Rarrikins has joined #ruby-lang
sulo has quit [Ping timeout: 250 seconds]
robbyoconnor has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 255 seconds]
leopard_me has joined #ruby-lang
CapnKernul has quit [Ping timeout: 260 seconds]
leopard_me has quit [Client Quit]
ebouchut has joined #ruby-lang
cyri_ has quit [Quit: cyri_]
robbyoconnor has quit [Ping timeout: 265 seconds]
workmad3 has joined #ruby-lang
leopard_me has joined #ruby-lang
sulo has joined #ruby-lang
antbody has joined #ruby-lang
sulo has quit [Ping timeout: 244 seconds]
stevechiagozie has joined #ruby-lang
francisfish has joined #ruby-lang
leopard_me has quit [Quit: Computer has gone to sleep.]
stevechiagozie has quit [Ping timeout: 264 seconds]
rsl__ has quit [Quit: Textual IRC Client: www.textualapp.com]
rsl has joined #ruby-lang
workmad3 has quit [Ping timeout: 252 seconds]
nyuszika7h has quit [Quit: Reconnecting]
nyuszika7h has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
sush24 has joined #ruby-lang
JohnBat26 has joined #ruby-lang
Rarrikins_w has joined #ruby-lang
Rarrikins has quit [Ping timeout: 265 seconds]
CapnKernul has joined #ruby-lang
ebouchut has quit [Quit: This computer has gone to sleep]
sulo has joined #ruby-lang
leopard_me has joined #ruby-lang
drbrain has quit [Read error: Connection timed out]
Banistergalaxy has joined #ruby-lang
sulo has quit [Ping timeout: 260 seconds]
CapnKernul has quit [Ping timeout: 264 seconds]
arooni-mobile has joined #ruby-lang
stevechiagozie has joined #ruby-lang
banister`sleep has joined #ruby-lang
banister`sleep has left #ruby-lang [#ruby-lang]
banisterfiend has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 265 seconds]
leopard_me has quit [Quit: Computer has gone to sleep.]
ttilley has quit [Read error: Connection reset by peer]
drbrain has joined #ruby-lang
m3nd3s has joined #ruby-lang
zarubin has quit [Ping timeout: 245 seconds]
zarubin has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 264 seconds]
arooni-mobile has joined #ruby-lang
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
zarubin has quit [Ping timeout: 256 seconds]
zarubin has joined #ruby-lang
sulo has joined #ruby-lang
solars has joined #ruby-lang
sulo has quit [Ping timeout: 265 seconds]
stevechiagozie has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 255 seconds]
goshakkk has joined #ruby-lang
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
stevechiagozie has quit [Ping timeout: 260 seconds]
x0F has quit [Disconnected by services]
x0F_ has joined #ruby-lang
x0F_ is now known as x0F
ebouchut has joined #ruby-lang
drbrain has quit [Read error: Connection timed out]
Rarrikins_w has quit [Ping timeout: 252 seconds]
krz has joined #ruby-lang
Rarrikins has joined #ruby-lang
sepp2k has joined #ruby-lang
drbrain has joined #ruby-lang
CapnKernul has joined #ruby-lang
Glass_saga has quit [Remote host closed the connection]
Glass_saga has joined #ruby-lang
banisterfiend has quit [Remote host closed the connection]
CapnKernul has quit [Ping timeout: 250 seconds]
blacktulip has joined #ruby-lang
ebouchut has quit [Quit: This computer has gone to sleep]
Rarrikins has quit [Ping timeout: 264 seconds]
sulo has joined #ruby-lang
sailias has joined #ruby-lang
voker57 has quit [Remote host closed the connection]
anannie has joined #ruby-lang
s1n4 has joined #ruby-lang
sulo has quit [Ping timeout: 252 seconds]
Glass_saga has quit [Remote host closed the connection]
Glass_saga has joined #ruby-lang
methods has joined #ruby-lang
methods has left #ruby-lang [#ruby-lang]
s1n4 has quit [Quit: leaving]
ebouchut has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
sush24 has joined #ruby-lang
sush24 has quit [Ping timeout: 252 seconds]
leopard_me has joined #ruby-lang
m3nd3s has quit [Remote host closed the connection]
sush24 has joined #ruby-lang
Aria has joined #ruby-lang
sush24 has quit [Ping timeout: 255 seconds]
voker57 has joined #ruby-lang
voker57 has joined #ruby-lang
voker57 has quit [Changing host]
sush24 has joined #ruby-lang
xalei has joined #ruby-lang
workmad3 has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
stevechiagozie has joined #ruby-lang
sulo has joined #ruby-lang
sulo has quit [Read error: Connection reset by peer]
sulo has joined #ruby-lang
CapnKernul has joined #ruby-lang
sulo has quit [Ping timeout: 260 seconds]
sush24 has quit [Ping timeout: 255 seconds]
stevechiagozie has quit [Ping timeout: 252 seconds]
CapnKernul has quit [Ping timeout: 244 seconds]
sush24 has joined #ruby-lang
ebouchut has quit [Quit: This computer has gone to sleep]
madish has joined #ruby-lang
tbuehlmann has joined #ruby-lang
leopard_me has quit [Quit: Computer has gone to sleep.]
Banistergalaxy has quit [Ping timeout: 260 seconds]
workmad3 has quit [Ping timeout: 250 seconds]
sulo has joined #ruby-lang
superfluous has joined #ruby-lang
Banistergalaxy has joined #ruby-lang
sulo has quit [Ping timeout: 244 seconds]
goshakkk has joined #ruby-lang
jxie has joined #ruby-lang
flexd has quit [Ping timeout: 260 seconds]
goshakkk has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
stevechiagozie has joined #ruby-lang
thone_ has joined #ruby-lang
thone has quit [Ping timeout: 245 seconds]
sulo has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 250 seconds]
mistym has joined #ruby-lang
sulo has quit [Ping timeout: 260 seconds]
workmad3 has joined #ruby-lang
fowl has quit [Ping timeout: 248 seconds]
xalei has quit [Remote host closed the connection]
Guest9041 has quit [Remote host closed the connection]
Guest9041 has joined #ruby-lang
MaddinXx has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 264 seconds]
mistym has quit [Remote host closed the connection]
CapnKernul has joined #ruby-lang
CapnKernul has quit [Ping timeout: 264 seconds]
krz has quit [Quit: krz]
srbaker has joined #ruby-lang
meatballhat has joined #ruby-lang
fowl has joined #ruby-lang
m3nd3s has joined #ruby-lang
leopard_me has joined #ruby-lang
flexd has joined #ruby-lang
stevechiagozie has joined #ruby-lang
AndChat- has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 255 seconds]
postmodern has quit [Quit: Leaving]
sulo has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 260 seconds]
superfluous has quit [Remote host closed the connection]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
sulo has quit [Ping timeout: 244 seconds]
robbyoconnor has joined #ruby-lang
mercwithamouth has joined #ruby-lang
antbody has quit [Quit: leaving]
meatballhat has quit [Ping timeout: 260 seconds]
io_syl has joined #ruby-lang
meatballhat has joined #ruby-lang
seanstickle has joined #ruby-lang
jbsan has joined #ruby-lang
jonahR has joined #ruby-lang
drbrain has quit [Read error: Connection timed out]
ebouchut has joined #ruby-lang
sepp2k1 has joined #ruby-lang
sepp2k has quit [Ping timeout: 244 seconds]
robbyoconnor has quit [Read error: Connection reset by peer]
xyzodiac has joined #ruby-lang
stevechiagozie has joined #ruby-lang
robbyoconnor has joined #ruby-lang
sush24 has quit [Ping timeout: 255 seconds]
meatballhat has quit [Ping timeout: 265 seconds]
srbaker has quit [Quit: Computer has gone to sleep.]
emocakes has quit [Ping timeout: 245 seconds]
robbyoconnor has quit [Ping timeout: 255 seconds]
drbrain has joined #ruby-lang
robbyoconnor has joined #ruby-lang
CapnKernul has joined #ruby-lang
ebouchut has quit [Quit: This computer has gone to sleep]
blahwoop has joined #ruby-lang
jonahR has quit [Quit: jonahR]
CapnKernul has quit [Ping timeout: 252 seconds]
chekcmate has joined #ruby-lang
<chekcmate> good evening everyone!
sulo has joined #ruby-lang
Mch1 has quit [Quit: ZNC - http://znc.sourceforge.net]
jonahR has joined #ruby-lang
Mch1 has joined #ruby-lang
<seanstickle> Halloo
dhsmith has quit [Remote host closed the connection]
<andrewvos> injekt: hi
sulo has quit [Ping timeout: 255 seconds]
<injekt> andrewvos: nevermind it was a question about your irssi buildpack but can't remember now :)
<chekcmate> can anyone recommend a good site for learning the basics of qt4 ruby?
ebouchut has joined #ruby-lang
m3nd3s has quit [Remote host closed the connection]
<seanstickle> chekcmate: don't do it!
<chekcmate> I have to, my next department programs with qt :/
<seanstickle> That's terrible!
<chekcmate> hmm...
<Mon_Ouie> Maybe that http://techbase.kde.org/Development/Languages/Ruby ? Once you know the basic you can translate the C++ API easily
<chekcmate> I can work in Tokyo in exchange for qt, seanstickle - it's worth it
<injekt> i can work in tokyo without touching qt, this makes me happy
<chekcmate> Mon_Ouie: Thanks, I already got that site on my list ;)
<andrewvos> injekt: okie
<chekcmate> injekt: but not as an apprentice
<chekcmate> injekt: but not as an apprentice
<chekcmate> what's going on with this webchat..?
<chekcmate> what's going on with this webchat..?
chekcmate has quit [Quit: Page closed]
<seanstickle> hm
<andrewvos> heh
chekcmate has joined #ruby-lang
<chekcmate> sorry
<chekcmate> hope that's fixed now
<seanstickle> I'm still seeing double posts
<chekcmate> don't trick me!
<seanstickle> Ha
<chekcmate> anyways, qt is used over there by our department... so that's the thing I can't choose
<chekcmate> it's great to even get the chance to work there
davidbalber|away is now known as davidbalbert
briantrust has joined #ruby-lang
greep has joined #ruby-lang
greep has quit [Client Quit]
rolfb has joined #ruby-lang
Rarrikins has joined #ruby-lang
imajes has quit [Excess Flood]
imajes has joined #ruby-lang
sulo has joined #ruby-lang
srbaker has joined #ruby-lang
andrew_ has joined #ruby-lang
andrew_ is now known as andrewhl
wyhaines has quit [Remote host closed the connection]
rolfb has quit [Quit: Linkinus - http://linkinus.com]
sulo has quit [Remote host closed the connection]
matip has joined #ruby-lang
<matip> hi
<matip> is it possible to use Curses so I can capture any key but in normal screen instead of full screen?
srbaker has quit [Quit: Computer has gone to sleep.]
blahwoop has quit [Ping timeout: 276 seconds]
<chekcmate> hmm.. when I have e.g.: test = "abc%3A123+def%3A456+..." and I want to use #{str1} for the parts where "123" and "456" are, I get problems with those "+" symbols and somehow, even with gsub, I get spaces into that string
<chekcmate> any idea?
<chekcmate> tried to escape them too
sulo has joined #ruby-lang
sulo has quit [Read error: Connection reset by peer]
CaptainJet has joined #ruby-lang
rdw200169 has quit [Ping timeout: 255 seconds]
sulo has joined #ruby-lang
marco has joined #ruby-lang
marco is now known as Marco
tbuehlmann has quit [Remote host closed the connection]
<darix> chekcmate: could it be you send this through CGI.unescape or similar before gsub?
<chekcmate> nope, simply creating that string using other strings and some hard text
<injekt> chekcmate: what are you trying to do?
rdw200169 has joined #ruby-lang
outoftime has joined #ruby-lang
<chekcmate> injekt: concatenating strings
<injekt> chekcmate: show me some code, your initial question doesn't make much sense to me
<chekcmate> ok, second
sulo has quit [Remote host closed the connection]
tbuehlmann has joined #ruby-lang
sulo has joined #ruby-lang
<chekcmate> injekt: http://pastie.org/5598104
<injekt> chekcmate: are those inputs from stdin?
<chekcmate> yes
<injekt> chekcmate: that's why, then.. stdin includes the newline character which you added when you hit return. You need to chomp it off. gets.chomp will do the trick
<chekcmate> damnit!
<chekcmate> I've seen that chomp some times now..
<chekcmate> thanks a lot
<injekt> chekcmate: try it in irb.. gets; then type something, and you'll see the output will be "foo\n" for example
<chekcmate> alright
sulo has quit [Ping timeout: 252 seconds]
<chekcmate> yay, easy wallpaper grabbing :)
<injekt> oO
<chekcmate> I hate to go through tons of pages for a wallpaper
<chekcmate> now I can simply enter keyword, amount of wallpapers and width+heigth and grab em all
<injekt> ah :)
ebouchut has quit [Quit: This computer has gone to sleep]
srbaker has joined #ruby-lang
leopard_me has quit [Quit: Computer has gone to sleep.]
m3nd3s has joined #ruby-lang
Rarrikins_z has joined #ruby-lang
Rarrikins has quit [Ping timeout: 265 seconds]
sulo has joined #ruby-lang
sulo has quit [Remote host closed the connection]
sulo_ has joined #ruby-lang
rolfb has joined #ruby-lang
sulo_ has quit [Remote host closed the connection]
workmad3 has joined #ruby-lang
mercwithamouth has quit [Ping timeout: 260 seconds]
marr has quit [Ping timeout: 265 seconds]
workmad3 has quit [Ping timeout: 260 seconds]
m3nd3s has quit [Remote host closed the connection]
meatballhat has joined #ruby-lang
sepp2k1 has quit [Ping timeout: 265 seconds]
sulo has joined #ruby-lang
vlad_starkov has joined #ruby-lang
stardiviner has quit [Quit: my website: http://stardiviner.dyndns-blog.com/]
workmad3 has joined #ruby-lang
sulo has quit [Ping timeout: 252 seconds]
seanstickle has quit [Quit: seanstickle]
buzz__ has joined #ruby-lang
stevechiagozie has quit [Quit: leaving]
spuk has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 260 seconds]
mercwithamouth has joined #ruby-lang
sepp2k has joined #ruby-lang
workmad3 has quit [Read error: Operation timed out]
leopard_me has joined #ruby-lang
jondot` has joined #ruby-lang
adambeynon has joined #ruby-lang
_br_ has quit [Excess Flood]
_br_ has joined #ruby-lang
Rarrikins_z has quit [Ping timeout: 265 seconds]
Rarrikins has joined #ruby-lang
mistym has quit [Remote host closed the connection]
srbaker has quit [Quit: Computer has gone to sleep.]
_br_ has quit [Excess Flood]
Rarrikins has quit [Remote host closed the connection]
_br_ has joined #ruby-lang
Rarrikins has joined #ruby-lang
Rarrikins has quit [Ping timeout: 255 seconds]
xyzodiac has quit [Quit: Textual IRC Client: www.textualapp.com]
ryanf has joined #ruby-lang
Rarrrikins has joined #ruby-lang
sulo has joined #ruby-lang
marr has joined #ruby-lang
sulo has quit [Ping timeout: 250 seconds]
Rarrrikins has quit [Ping timeout: 260 seconds]
rolfb has quit [Quit: Linkinus - http://linkinus.com]
mercwithamouth has quit [Ping timeout: 260 seconds]
sulo has joined #ruby-lang
sulo has quit [Remote host closed the connection]
sulo has joined #ruby-lang
workmad3 has joined #ruby-lang
sulo has quit [Ping timeout: 250 seconds]
CaptainJet has quit [Ping timeout: 265 seconds]
Asher has joined #ruby-lang
sulo has joined #ruby-lang
srbaker has joined #ruby-lang
srbaker has quit [Quit: Computer has gone to sleep.]
neocoin has quit [Remote host closed the connection]
srbaker has joined #ruby-lang
io_syl has quit [*.net *.split]
sepp2k has quit [*.net *.split]
JohnBat26 has quit [*.net *.split]
dafalcon` has quit [*.net *.split]
francisfish has quit [*.net *.split]
Ober has quit [*.net *.split]
knu has quit [*.net *.split]
mksm has quit [*.net *.split]
jmeeuwen has quit [*.net *.split]
wycats_ has quit [*.net *.split]
znouza has quit [*.net *.split]
pkondzior__ has quit [*.net *.split]
abuiles_ has quit [*.net *.split]
terite_ has quit [*.net *.split]
valeri_ufo has quit [*.net *.split]
tris has quit [*.net *.split]
jarib has quit [*.net *.split]
qz has quit [*.net *.split]
dyfrgi_ has quit [*.net *.split]
naquad has quit [*.net *.split]
corundum has quit [*.net *.split]
wasnotrice_ has quit [*.net *.split]
jammi has quit [*.net *.split]
sj26 has quit [*.net *.split]
whitequark has quit [*.net *.split]
spectra has quit [*.net *.split]
yugui_zzz has quit [*.net *.split]
whitequark has joined #ruby-lang
mksm has joined #ruby-lang
qz has joined #ruby-lang
dyfrgi has joined #ruby-lang
corundum has joined #ruby-lang
dafalcon` has joined #ruby-lang
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
znouza has joined #ruby-lang
JohnBat26 has joined #ruby-lang
aef has quit [Excess Flood]
tris has joined #ruby-lang
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
yugui_zzz has joined #ruby-lang
francisfish has joined #ruby-lang
sepp2k has joined #ruby-lang
io_syl has joined #ruby-lang
jammi has joined #ruby-lang
jaimef has joined #ruby-lang
jmeeuwen has joined #ruby-lang
wasnotrice has joined #ruby-lang
valeri_ufo has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
spectra has joined #ruby-lang
wycats_ has joined #ruby-lang
abuiles_ has joined #ruby-lang
sj26 has joined #ruby-lang
pkondzior__ has joined #ruby-lang
terite_ has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
naquad has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
aef has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
srbaker has quit [Quit: Computer has gone to sleep.]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
intellitech has quit [Read error: Connection reset by peer]
knu has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
intellitech has joined #ruby-lang
vlad_starkov has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
cyri_ has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
cyri__ has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
cyri_ has quit [Ping timeout: 264 seconds]
wallerdev has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
cyri__ has quit [Ping timeout: 265 seconds]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
<fowl> jarib: nice life
drbrain has quit [Read error: Connection timed out]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
JohnBat26 has quit [Ping timeout: 252 seconds]
jarib has quit [Excess Flood]
srbaker has joined #ruby-lang
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
<matip> require 'curses' \n puts 'Press any key to continue...' \n Curses.getch \n puts 'yay!'
<matip> isn't it possible to do that without activating "full screen" in curses?
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
Asher has quit [Quit: Leaving.]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
larrylv has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
r0bby has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
robbyoconnor has quit [Ping timeout: 252 seconds]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
larrylv has quit [Ping timeout: 264 seconds]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
sn0wb1rd has quit [Quit: I will be right back]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
intellitech has quit [Read error: Connection reset by peer]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
countdigi has quit [Quit: Lost terminal]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
r0bby is now known as robbyoconnor
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
leopard_me has quit [Quit: Computer has gone to sleep.]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
srbaker has quit [Quit: Computer has gone to sleep.]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
workmad3 has quit [Ping timeout: 252 seconds]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
<darix> matip: why not just STDIN.getc ?
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
<darix> ah needs a return
havenn has joined #ruby-lang
<darix> well you could change the message to press return to continue
<matip> yep, but I already solved the problem with STDIN.getch (with h at the end)
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
<darix> ah
<fowl> jarib: nice connection... NOT
<fowl> hawhahwa
sulo has quit [Remote host closed the connection]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
sn0wb1rd has joined #ruby-lang
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
drbrain has joined #ruby-lang
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
cyri_ has joined #ruby-lang
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
Kero has quit [Quit: bbl]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
wyhaines has joined #ruby-lang
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
<swarley> Well then
<swarley> I'm not sure who jarib_ is but he sure does like to come and go
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
<swarley> :|
<mistym> Excess Flood indeed :(
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
jarib_ has joined #ruby-lang
jarib_ has quit [Excess Flood]
<fowl> yeah this channel blows, way too many flooders, lazy ops not doin nothin for the people, just lording over us like we're fucking meat, man
jarib_ has joined #ruby-lang
<fowl> we're fucking meat in cages
jarib_ has quit [Excess Flood]
jarib has joined #ruby-lang
srbaker has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
drbrain has quit [Read error: Connection timed out]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
Nisstyre-laptop has joined #ruby-lang
Pricey has joined #ruby-lang
jarib has joined #ruby-lang
jtrucks has joined #ruby-lang
jarib has quit [Excess Flood]
Makiavel has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
drbrain has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
cyri__ has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
cyri_ has quit [Ping timeout: 255 seconds]
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
xalei has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
ap4y has joined #ruby-lang
KindOne has joined #ruby-lang
<whitequark> Pricey: thanks!
<whitequark> mistym, fowl: you can report this to #freenode and they'll help.
<mistym> whitequark: Thanks, will do in the future
cyri_ has joined #ruby-lang
ap4y has quit [Remote host closed the connection]
cyri__ has quit [Ping timeout: 276 seconds]
drbrain has quit [Remote host closed the connection]
drbrain has joined #ruby-lang
cyri_ has quit [Read error: Operation timed out]
lsegal has joined #ruby-lang
jtrucks has left #ruby-lang ["Oh Noes!"]
ap4y has joined #ruby-lang
emocakes has joined #ruby-lang
Kero has joined #ruby-lang
cyri__ has joined #ruby-lang
davidbalbert is now known as davidbalber|away
kennyvb has quit [Ping timeout: 245 seconds]
cyri__ has quit [Ping timeout: 255 seconds]
kennyvb has joined #ruby-lang
_br_ has quit [Excess Flood]
mjio has joined #ruby-lang
cyri__ has joined #ruby-lang
srbaker has quit [Quit: Computer has gone to sleep.]
cyri__ has quit [Client Quit]
seanstickle has joined #ruby-lang
_br_ has joined #ruby-lang
blacktulip has quit [Remote host closed the connection]
seanstickle has quit [Client Quit]
kennyvb has quit [Ping timeout: 255 seconds]
_br_ has quit [Excess Flood]
kennyvb has joined #ruby-lang
_br_ has joined #ruby-lang
banisterfiend has joined #ruby-lang
<banisterfiend> zenspider: do you understand the code climate metrics?
drbrain has quit [Remote host closed the connection]
jonahR has quit [Quit: jonahR]
ap4y has quit [Remote host closed the connection]
Aria has quit [Remote host closed the connection]
seanstickle has joined #ruby-lang
Aria has joined #ruby-lang
ap4y has joined #ruby-lang
kain_ has joined #ruby-lang
s1n4 has joined #ruby-lang
kain has quit [Ping timeout: 265 seconds]
kain__ has joined #ruby-lang
kain_ has quit [Read error: Connection reset by peer]
jmaya has joined #ruby-lang
ap4y has quit [Remote host closed the connection]
ap4y has joined #ruby-lang
jmaya has quit [Quit: Colloquy for iPad - http://colloquy.mobi]
KindOne has left #ruby-lang [#ruby-lang]
rsl has quit [Quit: Computer has gone to sleep.]
diomeo has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
solars has quit [Ping timeout: 252 seconds]
jondot` has quit [Ping timeout: 252 seconds]
agarie has joined #ruby-lang
ruurd has joined #ruby-lang
aedorn has quit [Quit: Konversation terminated!]
stevechiagozie has joined #ruby-lang
<agarie> Hi
<agarie> has anyone used rdoc to document C++ source code?
workmad3 has joined #ruby-lang
Aria has quit [Remote host closed the connection]
Aria has joined #ruby-lang
<agarie> I'm having some problems here. rdoc understands that a class is being defined inside a extern "C", but isn't finding the methods
havenn has quit [Remote host closed the connection]
Aria has quit [Ping timeout: 260 seconds]
havenn has joined #ruby-lang
stevechiagozie has quit [Quit: leaving]
tbuehlmann has quit [Read error: Connection reset by peer]
stevechiagozie has joined #ruby-lang
seanstickle has quit [Quit: seanstickle]
havenn has quit [Ping timeout: 260 seconds]
mercwithamouth has joined #ruby-lang
s1n4 has quit [Quit: leaving]
stevechiagozie has quit [Quit: leaving]
stevechiagozie has joined #ruby-lang
stevechiagozie has quit [Client Quit]
aedorn has joined #ruby-lang
stevechiagozie has joined #ruby-lang
diomeo has left #ruby-lang [#ruby-lang]
Rarrikins has joined #ruby-lang
Rarrikins has quit [Remote host closed the connection]
stonerfish has joined #ruby-lang
havenn has joined #ruby-lang
Rarrikins has joined #ruby-lang
drbrain has joined #ruby-lang
banisterfiend has quit [Remote host closed the connection]
drbrain has quit [Read error: Connection reset by peer]
drbrain_ has joined #ruby-lang
Aria has joined #ruby-lang
spuk has quit [Read error: Operation timed out]
drbrain_ has quit [Ping timeout: 276 seconds]
outoftime has quit [Quit: Leaving]
CapnKernul has joined #ruby-lang
jbsan_ has joined #ruby-lang
jbsan has quit [Ping timeout: 265 seconds]
jbsan_ is now known as jbsan
meatballhat has quit [Ping timeout: 255 seconds]
<naquad> is there any way to get metadata from pdf with rmagick?
mistym has quit [Remote host closed the connection]
micaeked has joined #ruby-lang
Darkspiel has joined #ruby-lang