00:02
Banistergalaxy has joined #ruby-lang
00:05
workmad3 has quit [Ping timeout: 264 seconds]
00:15
Rarrikins has quit [Ping timeout: 255 seconds]
00:16
flaguy48 has left #ruby-lang [#ruby-lang]
00:21
havenn has quit [Remote host closed the connection]
00:24
mercwithamouth has joined #ruby-lang
00:26
chekcmate has joined #ruby-lang
00:26
drbrain has joined #ruby-lang
00:29
<
mistym >
Hi chekcmate
00:30
matip_ has quit [Remote host closed the connection]
00:30
<
chekcmate >
may I ask something? It may sound stupid, but I don't seem to be capable of understanding the regexp documentation
00:31
<
canton7 >
don't ask to ask, just ask ;)
00:31
<
chekcmate >
[/\@(.*?)+/,1] <--- between first "@" and first "+" - right?
00:32
<
chekcmate >
does that work with whole Strings like: between first "test" and first "end" e.g.?
00:32
<
chekcmate >
because that's what I couldn't quite understand...
00:34
wyhaines has quit [Remote host closed the connection]
00:34
<
canton7 >
well, + has a special meaning in regex
00:34
<
canton7 >
so if it's a literal + you're after, you'll need to escape it
00:35
<
canton7 >
(also, rubular.com is amazing)
00:35
<
chekcmate >
naw, I'm actually more after something like this (pseudo code): [/\"start"(.*?)"end"/,1]
00:35
drbrain has quit [Ping timeout: 245 seconds]
00:35
<
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'
00:36
<
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
00:36
methods has joined #ruby-lang
00:36
methods has left #ruby-lang [#ruby-lang]
00:36
<
chekcmate >
*where distinct part is the part I want
00:37
<
chekcmate >
but yes, it's what you said
00:37
<
canton7 >
give us a sample input and output if you're still stuck
00:37
<
chekcmate >
the stuff which sits between those two "words" in the string
00:39
<
chekcmate >
I will take a look at it, when I still get a problem, I'll come crying
00:40
<
canton7 >
I'm afraid I can't quite see your problem... you're asking for code that matches your pseudo-code :P
00:41
<
chekcmate >
canton7, you're a saint
00:41
<
chekcmate >
best website EVER!
00:41
<
canton7 >
not bad, is it? :P
00:41
<
chekcmate >
did it match? I always got errors somehow :(
00:41
<
mistym >
<3 rubular
00:42
<
chekcmate >
yea, that goes directly to my favs
00:42
<
canton7 >
well, the first example you gave had bad escaping, and the second had unnecessary quotes, but the concept was there :P
00:43
charliesome has joined #ruby-lang
00:44
<
chekcmate >
hehe.. just started learning Ruby
00:44
<
canton7 >
good choice
00:45
<
chekcmate >
it's great, I like it better than python for sure
00:45
<
canton7 >
woo, that was easy
00:45
<
canton7 >
normally python people need more pursuading to let go of their favourite language
00:46
<
charliesome >
chekcmate: everyone here is happy to help if you run into any problems!
00:46
<
chekcmate >
great, thanks
00:46
<
zzak >
charliesome: hi
00:46
<
charliesome >
zzak: sup
00:46
<
chekcmate >
I actually didn't know Ruby originated from Japan.. though I need Ruby for my job in Japan next year haha
00:47
<
zzak >
charliesome: you doing anything with debug_inspector?
00:47
srbaker has joined #ruby-lang
00:47
<
charliesome >
better_errors stuff
00:47
<
charliesome >
also banister needs it to be stable for binding_of_caller
00:48
<
yfeldblum >
chekcmate, it's why the Date class parses "xx/xx/xxxx" as "dd/mm/yyyy" and why strings aren't auto-unicode
00:48
<
zzak >
there is a thread on rocky's ML too
00:49
<
chekcmate >
that's why Ruby gets another point from me as a German, used to that kind of date :)
00:49
<
chekcmate >
mm/dd/yyyy doesn't make sense to me...
00:50
CapnKernul has quit [Quit: Leaving...]
00:50
<
charliesome >
it doesn't make sense to most of the world
00:50
<
zzak >
charliesome: you got any code i can see?
00:50
<
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
00:50
<
charliesome >
zzak: apart from the code i posted to redmine no
00:51
<
charliesome >
i was helping banister reproduce a debug_inspector segv he had in pry
00:51
<
charliesome >
and ended up with that
00:52
davidbalber|away is now known as davidbalbert
00:53
<
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?
00:53
jbsan_ has joined #ruby-lang
00:54
jbsan has quit [Ping timeout: 244 seconds]
00:54
jbsan_ is now known as jbsan
00:54
<
chekcmate >
input: [/data-super-img="(.*?)" data-super-width/] /// output:data-super-img="test" data-super-width
00:55
<
canton7 >
stuff in brackets are matches. try my_string[/data-super-img="(.*?)"/, 1]
00:55
<
zzak >
charliesome: ok cool, i havent reviewed it fully yet, but ill see
00:56
<
zzak >
maybe i just need to dig in and write my own little extension like you did
00:56
<
canton7 >
or my_string.match(/data-super-img="(.*?)"/)[1]
00:56
<
chekcmate >
a jeez.. I had that "1" there before. Awkward... thanks a lot!
00:56
<
chekcmate >
, 1] does the thing
00:57
<
canton7 >
the string[/regex/, index] syntax is confusing and non-obvious, but short :P
00:57
<
chekcmate >
match groups... ofc
00:57
<
chekcmate >
(?<month>\d{1,2})\/(?<day>\d{1,2})\/(?<year>\d{4}) <- I found that rather confusing though :P
00:57
<
chekcmate >
at least at this time..
00:58
<
canton7 >
stick it into rubular ;)
00:58
<
canton7 >
you can have named matches, not just numbered ones
00:58
<
chekcmate >
that's where I got it
00:58
<
charliesome >
zzak: done much c before?
00:59
<
canton7 >
(?<name>pattern) means that the stuff matched by 'pattenr' is associated with 'name'
00:59
<
canton7 >
so you can go m = my_data_str.match(/your regex/); month = m['month']
00:59
<
canton7 >
\d is a digit, {n,m} means "between n and m times"
00:59
<
canton7 >
... you see how it goes
01:01
<
chekcmate >
pretty powerful
01:02
drbrain has joined #ruby-lang
01:09
mistym has quit [Remote host closed the connection]
01:09
<
zzak >
charliesome: a little, but i am getting better at reading it now
01:10
<
zzak >
i just read your ticket again, that much i can understand
01:10
<
charliesome >
i don't totally understand what is going on behind the scenes to cause the crash
01:10
<
charliesome >
although bindings and eval have a history of being crashy
01:10
<
zzak >
i dont either
01:11
<
zzak >
but i think i could cobble together something small with the api
01:13
anannie has quit [Remote host closed the connection]
01:13
stonerfish has quit [Quit: Leaving.]
01:14
anannie has joined #ruby-lang
01:16
stonerfish has joined #ruby-lang
01:16
marr has quit [Ping timeout: 248 seconds]
01:17
stonerfish has quit [Client Quit]
01:17
srbaker has quit [Quit: Computer has gone to sleep.]
01:19
briantrust has joined #ruby-lang
01:20
CapnKernul has joined #ruby-lang
01:22
tjadc has joined #ruby-lang
01:23
holgerno has quit [Read error: Connection reset by peer]
01:23
holgerno_ has joined #ruby-lang
01:25
briantrust has quit [Remote host closed the connection]
01:25
<
zzak >
if only there was more time in the day haha
01:29
mistym has joined #ruby-lang
01:31
jtoy has joined #ruby-lang
01:32
emocakes has quit [Quit: emocakes]
01:32
oscardelben has joined #ruby-lang
01:34
<
chekcmate >
canton7: mind telling me how to get everything after the last forwardslash in an url? I'll be off then :)
01:35
<
chekcmate >
I came to some results, but never to "last forwardslash" expression
01:35
<
yfeldblum >
chekcmate, `url =~ /\\([^\\]*)\z/ ; $1`
01:35
<
chekcmate >
thought it might work like: /.*\\/(.*)
01:37
<
chekcmate >
thanks a lot, yfeldblum
01:37
<
yfeldblum >
chekcmate, i just made that up in here; you might want to check it :D
01:37
<
chekcmate >
yea, it doesn't work. though i escaped the forwardslashes
01:38
<
yfeldblum >
chekcmate, `url =~ /\/([^\/]*)\z/ ; $1` <--- oops
01:38
<
chekcmate >
no match
01:40
gix has quit [Ping timeout: 255 seconds]
01:40
<
yfeldblum >
chekcmate, worked for me
01:41
<
chekcmate >
in rubularß
01:41
<
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.
01:41
<
yfeldblum >
chekcmate, why did you escape the first and last / characters?
01:41
<
chekcmate >
rubular told me to
01:42
<
yfeldblum >
chekcmate, they're not part of the regexp itself; they're the quotes that contain the regexp
01:42
<
yfeldblum >
chekcmate, they're how you write a regexp literal in ruby
01:42
<
zzak >
oscardelben: can i see your extconf?
01:42
<
chekcmate >
now that explains a lot
01:43
<
chekcmate >
I thought you did that on purpose (including /)
01:44
<
oscardelben >
note that the extension name is different than the final library name (that's the trouble I guess)
01:45
<
oscardelben >
I can also push all the code to github...
01:47
<
zzak >
sure, do that
01:49
<
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
01:50
<
zzak >
oscardelben: i dont get what all the other files are
01:50
<
oscardelben >
zzak: you mean Rakefile, etc?
01:50
<
zzak >
.bundle, .o, etc
01:50
<
oscardelben >
zzak, those are the files generated by make
01:51
<
zzak >
also, why do you need rake
_and_ make?
01:51
<
zzak >
just pick one
01:51
<
zzak >
extconf can do most of it
01:51
<
oscardelben >
zzak: I want to compile the gem before every test
01:53
<
zzak >
i think you want rake-compiler then
01:53
<
zzak >
otherwise you are just duplicating code and leaving it up to fate
01:54
<
oscardelben >
zzak: I'll give that I try
01:54
<
oscardelben >
btw, how have you been? I've seen a lot of new documentation lately on Ruby
01:56
<
zzak >
oscardelben: im doing good, thank you! hows it going for you?
01:56
<
zzak >
writing lots of mri docs :)
01:56
<
oscardelben >
zzak: pretty good, would love to catch up privately about the state of docs
01:58
<
zzak >
i am working on docs for new api, and working to improve experience on ruby-doc.org
01:59
<
zzak >
also, there is some old stdlib's that need refreshing
01:59
srbaker has joined #ruby-lang
02:04
CapnKernul has quit [Quit: Leaving...]
02:04
cirwin has quit [Quit: Leaving.]
02:06
xsdg_ has quit [Quit: Reconnecting]
02:06
xsdg has joined #ruby-lang
02:07
swarley has joined #ruby-lang
02:14
methods has joined #ruby-lang
02:16
nertzy has joined #ruby-lang
02:25
unlikely_monkey has joined #ruby-lang
02:34
DEac- has quit [Read error: Connection reset by peer]
02:34
DEac- has joined #ruby-lang
02:34
CapnKernul has joined #ruby-lang
02:34
havenn has joined #ruby-lang
02:35
unlikely_monkey has quit [Remote host closed the connection]
02:38
elico has joined #ruby-lang
02:38
<
elico >
Hey, I was wondering if someone have experience with EPOLL in a ruby server?
02:43
leopard_me has quit [Quit: Computer has gone to sleep.]
02:44
jtoy has quit [Quit: jtoy]
02:46
CapnKernul has quit [Ping timeout: 260 seconds]
02:49
sepp2k1 has quit [Remote host closed the connection]
02:52
<
havenn >
elico: Just with using Rainbows::XEPollThreadPool, but that was a pleasant experience.
02:54
<
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.
02:54
lcdhoffman has quit [Quit: lcdhoffman]
02:55
stevechiagozie has joined #ruby-lang
02:55
<
havenn >
elico: Using sleepy_penguin?
02:55
<
elico >
it works great...
02:56
<
elico >
but I have problem of jugling the program when an EVENT comes up on a socket..
02:57
<
elico >
I am a bit off so my trouble is to design the whole event based process
02:58
<
elico >
I was thinking of using fibers for some tasks and a wrapping class for the FD
03:01
<
elico >
sec I will look at it
03:02
<
elico >
Ho i remeber someone mentioned it..
03:04
<
elico >
hmmm but it's based on Kernel.selelt...
03:04
<
elico >
basically it seems like a nice way to do things
03:05
<
elico >
I was looking for a while a small proxy which based on EPOOL just to see the logic..
03:05
<
elico >
*how* it was done..
03:05
mistym has quit [Remote host closed the connection]
03:05
<
havenn >
elico: Ah, makes sense. Hrmm, I dunno.
03:06
Drew has joined #ruby-lang
03:06
<
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...
03:12
CapnKernul has joined #ruby-lang
03:16
CapnKernul has quit [Ping timeout: 265 seconds]
03:18
mercwithamouth has quit [Ping timeout: 265 seconds]
03:19
mercwithamouth has joined #ruby-lang
03:21
stonerfish has joined #ruby-lang
03:22
holgerno_ has quit [Quit: Leaving...]
03:31
Mch1 has joined #ruby-lang
03:36
briantrust has joined #ruby-lang
03:43
madish has quit [Quit: ChatZilla 0.9.89 [Firefox 16.0.1/20121026125834]]
03:44
glebm has quit [Ping timeout: 252 seconds]
03:47
lcdhoffman has joined #ruby-lang
03:51
chendo_ has joined #ruby-lang
03:53
oscardelben has quit [Quit: oscardelben]
03:56
chekcmate has quit [Quit: Page closed]
03:56
scholar01 has left #ruby-lang [#ruby-lang]
03:58
jaimef is now known as Ober
04:04
wyhaines has joined #ruby-lang
04:04
lcdhoffman has quit [Quit: lcdhoffman]
04:05
intellitech has joined #ruby-lang
04:06
intellitech has quit [Client Quit]
04:11
sailias has quit [Quit: Leaving.]
04:11
methods1 has joined #ruby-lang
04:12
methods has quit [Read error: Connection reset by peer]
04:12
CapnKernul has joined #ruby-lang
04:14
solars has quit [Ping timeout: 245 seconds]
04:17
jonahR has joined #ruby-lang
04:17
aedorn has quit [Remote host closed the connection]
04:17
aedorn has joined #ruby-lang
04:17
CapnKernul has quit [Ping timeout: 260 seconds]
04:21
havenn has quit [Remote host closed the connection]
04:21
havenn has joined #ruby-lang
04:22
jonahR has quit [Quit: jonahR]
04:23
stevechiagozie has quit [Ping timeout: 264 seconds]
04:25
methods1 has left #ruby-lang [#ruby-lang]
04:26
havenn has quit [Ping timeout: 245 seconds]
04:26
stardiviner has quit [Ping timeout: 260 seconds]
04:27
stardiviner has joined #ruby-lang
04:28
jxie has quit [Read error: Connection reset by peer]
04:28
Drew has quit [Remote host closed the connection]
04:28
jxie has joined #ruby-lang
04:28
havenn has joined #ruby-lang
04:30
chendo_ has quit [Ping timeout: 244 seconds]
04:31
chendo_ has joined #ruby-lang
04:32
jonahR has joined #ruby-lang
04:33
jonahR has quit [Client Quit]
04:33
Aria has joined #ruby-lang
04:35
chendo_ has quit [Ping timeout: 245 seconds]
04:38
chendo_ has joined #ruby-lang
04:41
methods has joined #ruby-lang
04:46
jonahR has joined #ruby-lang
04:48
chendo_ has quit [Ping timeout: 252 seconds]
04:50
stevechiagozie has joined #ruby-lang
04:52
chendo_ has joined #ruby-lang
04:55
methods has left #ruby-lang [#ruby-lang]
04:56
chendo_ has quit [Ping timeout: 245 seconds]
04:58
holgerno has joined #ruby-lang
05:01
wmoxam has joined #ruby-lang
05:04
stevechiagozie has quit [Ping timeout: 260 seconds]
05:07
holgerno has quit [Ping timeout: 252 seconds]
05:13
CapnKernul has joined #ruby-lang
05:15
briantrust has quit [Remote host closed the connection]
05:17
lsegal has quit [Read error: No route to host]
05:17
CapnKernul has quit [Ping timeout: 260 seconds]
05:18
lsegal has joined #ruby-lang
05:25
briantrust has joined #ruby-lang
05:30
briantrust has quit [Ping timeout: 250 seconds]
05:35
stevechiagozie has joined #ruby-lang
05:38
jbsan has quit [Quit: jbsan]
05:39
Aria has quit [Remote host closed the connection]
05:39
jbsan has joined #ruby-lang
05:40
mercwithamouth has quit [Ping timeout: 260 seconds]
05:40
jbsan has quit [Client Quit]
05:45
jonahR has quit [Quit: jonahR]
05:45
xyzodiac has joined #ruby-lang
05:45
stevechiagozie has quit [Ping timeout: 264 seconds]
05:49
havenn has quit [Remote host closed the connection]
05:50
mercwithamouth has joined #ruby-lang
05:50
havenn has joined #ruby-lang
05:54
havenn has quit [Ping timeout: 245 seconds]
05:58
havenn has joined #ruby-lang
06:00
jtoy has joined #ruby-lang
06:01
sush24 has joined #ruby-lang
06:03
holgerno has joined #ruby-lang
06:04
jtoy has quit [Client Quit]
06:04
mercwithamouth has quit [Ping timeout: 260 seconds]
06:07
holgerno has quit [Ping timeout: 252 seconds]
06:09
<
rking >
charliesome: I don't get the Python part of the joke.
06:09
<
charliesome >
python can only do one shot at a time!
06:12
thoughtfulgoblin has joined #ruby-lang
06:13
CapnKernul has joined #ruby-lang
06:15
<
rking >
Thanks, I didn't know that about Python.
06:16
stevechiagozie has joined #ruby-lang
06:17
CapnKernul has quit [Ping timeout: 244 seconds]
06:21
<
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.
06:22
stevechiagozie has quit [Ping timeout: 255 seconds]
06:22
kurko_ has joined #ruby-lang
06:22
<
rking >
thoughtfulgoblin: Sure thing. There are probably fifty ways to make that happen. gist some code and we'll tell you one.
06:23
<
thoughtfulgoblin >
ah awesome, one sec :D
06:25
oscardelben has joined #ruby-lang
06:27
chendo_ has joined #ruby-lang
06:28
havenn has quit [Remote host closed the connection]
06:29
havenn has joined #ruby-lang
06:32
megharsh has quit [Ping timeout: 265 seconds]
06:33
havenn has quit [Ping timeout: 260 seconds]
06:38
<
thoughtfulgoblin >
I want to be able to change the location of the yaml in config and then reinitialise it for the tests.
06:38
<
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.
06:39
<
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).
06:39
<
thoughtfulgoblin >
Is it possible just to delete the entire instance for example?
06:39
stonerfish has quit [Quit: Leaving.]
06:39
jonahR has joined #ruby-lang
06:40
kurko_ has quit [Ping timeout: 252 seconds]
06:42
<
rking >
Hrm I'm pretty lost.
06:42
setmeaway has quit [Read error: Connection reset by peer]
06:42
<
rking >
thoughtfulgoblin: This is brute, but do you know about instance_eval?
06:43
<
thoughtfulgoblin >
no, having a look.
06:44
<
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.
06:44
JohnBat26 has joined #ruby-lang
06:45
<
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
06:45
<
rking >
Gives 3 then 4
06:46
<
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
06:47
megharsh has joined #ruby-lang
06:47
setmeaway has joined #ruby-lang
06:57
jxie has quit [Quit: leaving]
06:57
stevechiagozie has joined #ruby-lang
07:01
chendo_ has quit [Quit: Computer has gone to sleep.]
07:01
sush24 has quit [Quit: This computer has gone to sleep]
07:01
Asher has joined #ruby-lang
07:03
<
thoughtfulgoblin >
rking ok thanks, Just read up on instance_eval. I am going to try that out. Hopefully that should work.
07:03
holgerno has joined #ruby-lang
07:07
larrylv has joined #ruby-lang
07:07
holgerno has quit [Ping timeout: 265 seconds]
07:08
stevechiagozie has quit [Ping timeout: 250 seconds]
07:09
xyzodiac has quit [Quit: Computer has gone to sleep.]
07:11
megharsh has quit [Quit: WeeChat 0.3.9.2]
07:13
CapnKernul has joined #ruby-lang
07:17
sush24 has joined #ruby-lang
07:18
CapnKernul has quit [Ping timeout: 244 seconds]
07:18
havenn has joined #ruby-lang
07:19
goshakkk has joined #ruby-lang
07:23
<
lsegal >
thoughtfulgoblin back away from the eval. there are better ways to solve this one.. like dependency injection on config
07:24
<
lsegal >
especially if the goal is solely for testability
07:30
havenn has quit [Remote host closed the connection]
07:31
havenn has joined #ruby-lang
07:33
Nisstyre-laptop has joined #ruby-lang
07:35
goshakkk has quit [Quit: Computer has gone to sleep.]
07:36
havenn has quit [Ping timeout: 260 seconds]
07:39
stevechiagozie has joined #ruby-lang
07:43
havenn has joined #ruby-lang
07:45
davidbalbert is now known as davidbalber|away
07:47
srbaker has quit [Quit: Computer has gone to sleep.]
07:47
oscardelben has quit [Quit: oscardelben]
07:51
stevechiagozie has quit [Ping timeout: 244 seconds]
07:53
chendo_ has joined #ruby-lang
07:55
seanstickle has quit [Quit: seanstickle]
07:56
rue has quit [Remote host closed the connection]
07:57
rue has joined #ruby-lang
08:01
goshakkk has joined #ruby-lang
08:03
holgerno has joined #ruby-lang
08:08
holgerno has quit [Ping timeout: 250 seconds]
08:13
JoelMcCracken has quit [Ping timeout: 244 seconds]
08:14
CapnKernul has joined #ruby-lang
08:14
chendo_ has quit [Ping timeout: 245 seconds]
08:18
chendo_ has joined #ruby-lang
08:19
CapnKernul has quit [Ping timeout: 250 seconds]
08:19
Asher has quit [Quit: Leaving.]
08:20
thufir_ has joined #ruby-lang
08:22
stevechiagozie has joined #ruby-lang
08:26
xalei has quit [Quit: Leaving]
08:31
stevechiagozie has quit [Ping timeout: 265 seconds]
08:35
thoughtfulgoblin has quit [Remote host closed the connection]
08:40
Weems has joined #ruby-lang
08:43
robbyoconnor has quit [Ping timeout: 260 seconds]
08:44
Spaceghostc2c has quit [Excess Flood]
08:45
robbyoconnor has joined #ruby-lang
08:46
Spaceghostc2c has joined #ruby-lang
08:47
chendo_ has quit [Ping timeout: 264 seconds]
08:48
holgerno has joined #ruby-lang
08:48
holgerno has quit [Client Quit]
08:48
chendo_ has joined #ruby-lang
08:50
robbyoconnor has quit [Ping timeout: 265 seconds]
08:54
chendo_ has quit [Quit: Computer has gone to sleep.]
08:57
sush24 has quit [Quit: This computer has gone to sleep]
08:59
robbyoconnor has joined #ruby-lang
09:04
stevechiagozie has joined #ruby-lang
09:07
ryanf has quit [Quit: leaving]
09:11
sush24 has joined #ruby-lang
09:14
CapnKernul has joined #ruby-lang
09:16
marr has joined #ruby-lang
09:17
stevechiagozie has quit [Ping timeout: 265 seconds]
09:19
CapnKernul has quit [Ping timeout: 260 seconds]
09:21
sulo has joined #ruby-lang
09:21
<
injekt >
andrewvos: yo
09:22
emocakes has joined #ruby-lang
09:28
io_syl has quit [Quit: Computer has gone to sleep.]
09:30
tjadc has quit [Ping timeout: 244 seconds]
09:41
zmack has joined #ruby-lang
09:42
elico has quit [Quit: elico]
09:43
ebouchut has joined #ruby-lang
09:44
zmack has quit [Read error: Connection reset by peer]
09:44
sulo has quit [Remote host closed the connection]
09:47
ebouchut has quit [Client Quit]
09:47
Nisstyre-laptop has quit [Ping timeout: 250 seconds]
09:48
stevechiagozie has joined #ruby-lang
09:48
cyri_ has joined #ruby-lang
09:54
JohnBat26 has quit [Ping timeout: 255 seconds]
09:55
sulo has joined #ruby-lang
09:56
robbyoconnor has quit [Ping timeout: 265 seconds]
09:57
cirwin has joined #ruby-lang
10:00
stevechiagozie has quit [Ping timeout: 265 seconds]
10:04
thufir_ has quit [Quit: Leaving.]
10:05
zmack has joined #ruby-lang
10:06
zmack has quit [Read error: Connection reset by peer]
10:06
thufir_ has joined #ruby-lang
10:08
drbrain has quit [Read error: Connection timed out]
10:14
sulo has quit [Remote host closed the connection]
10:14
CapnKernul has joined #ruby-lang
10:15
JohnBat26 has joined #ruby-lang
10:16
anannie has quit [Remote host closed the connection]
10:19
CapnKernul has quit [Ping timeout: 245 seconds]
10:19
adambeynon has joined #ruby-lang
10:19
thufir_ has quit [Remote host closed the connection]
10:24
gix has joined #ruby-lang
10:24
drbrain has joined #ruby-lang
10:25
larrylv has quit [Remote host closed the connection]
10:31
stevechiagozie has joined #ruby-lang
10:34
JohnBat26 has quit [Ping timeout: 250 seconds]
10:35
sulo has joined #ruby-lang
10:39
stevechiagozie has quit [Ping timeout: 265 seconds]
10:39
stevechiagozie has joined #ruby-lang
10:40
sulo has quit [Ping timeout: 260 seconds]
10:43
Banistergalaxy has quit [Ping timeout: 260 seconds]
10:44
sush24 has quit [Quit: This computer has gone to sleep]
10:44
stevechiagozie has quit [Ping timeout: 255 seconds]
10:45
sulo has joined #ruby-lang
10:47
neocoin has quit [Read error: Connection reset by peer]
10:47
neocoin has joined #ruby-lang
10:52
sulo has quit [Ping timeout: 252 seconds]
11:00
robbyoconnor has joined #ruby-lang
11:00
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
11:03
jonahR has quit [Quit: jonahR]
11:05
MaddinXx has joined #ruby-lang
11:06
intellitech has joined #ruby-lang
11:06
robbyoconnor has quit [Ping timeout: 255 seconds]
11:09
havenn has quit [Remote host closed the connection]
11:10
cyri_ has quit [Quit: cyri_]
11:15
stevechiagozie has joined #ruby-lang
11:15
CapnKernul has joined #ruby-lang
11:15
cyri_ has joined #ruby-lang
11:18
sulo has joined #ruby-lang
11:19
Rarrikins has joined #ruby-lang
11:23
sulo has quit [Ping timeout: 250 seconds]
11:23
robbyoconnor has joined #ruby-lang
11:24
stevechiagozie has quit [Ping timeout: 255 seconds]
11:25
leopard_me has joined #ruby-lang
11:27
CapnKernul has quit [Ping timeout: 260 seconds]
11:27
leopard_me has quit [Client Quit]
11:28
ebouchut has joined #ruby-lang
11:30
cyri_ has quit [Quit: cyri_]
11:31
robbyoconnor has quit [Ping timeout: 265 seconds]
11:33
workmad3 has joined #ruby-lang
11:39
leopard_me has joined #ruby-lang
11:40
sulo has joined #ruby-lang
11:42
antbody has joined #ruby-lang
11:44
sulo has quit [Ping timeout: 244 seconds]
11:56
stevechiagozie has joined #ruby-lang
11:58
francisfish has joined #ruby-lang
12:02
leopard_me has quit [Quit: Computer has gone to sleep.]
12:03
stevechiagozie has quit [Ping timeout: 264 seconds]
12:06
rsl has joined #ruby-lang
12:08
workmad3 has quit [Ping timeout: 252 seconds]
12:10
nyuszika7h has quit [Quit: Reconnecting]
12:14
nyuszika7h has joined #ruby-lang
12:19
wallerdev has quit [Quit: wallerdev]
12:20
sush24 has joined #ruby-lang
12:20
JohnBat26 has joined #ruby-lang
12:22
Rarrikins_w has joined #ruby-lang
12:22
Rarrikins has quit [Ping timeout: 265 seconds]
12:22
CapnKernul has joined #ruby-lang
12:22
ebouchut has quit [Quit: This computer has gone to sleep]
12:22
sulo has joined #ruby-lang
12:23
leopard_me has joined #ruby-lang
12:24
drbrain has quit [Read error: Connection timed out]
12:24
Banistergalaxy has joined #ruby-lang
12:27
sulo has quit [Ping timeout: 260 seconds]
12:27
CapnKernul has quit [Ping timeout: 264 seconds]
12:30
arooni-mobile has joined #ruby-lang
12:34
stevechiagozie has joined #ruby-lang
12:38
banister`sleep has joined #ruby-lang
12:38
banister`sleep has left #ruby-lang [#ruby-lang]
12:38
banisterfiend has joined #ruby-lang
12:41
stevechiagozie has quit [Ping timeout: 265 seconds]
12:42
leopard_me has quit [Quit: Computer has gone to sleep.]
12:44
ttilley has quit [Read error: Connection reset by peer]
12:47
drbrain has joined #ruby-lang
12:57
m3nd3s has joined #ruby-lang
12:59
zarubin has quit [Ping timeout: 245 seconds]
12:59
zarubin has joined #ruby-lang
13:00
arooni-mobile has quit [Ping timeout: 264 seconds]
13:02
arooni-mobile has joined #ruby-lang
13:04
zarubin has quit [Ping timeout: 256 seconds]
13:04
zarubin has joined #ruby-lang
13:05
sulo has joined #ruby-lang
13:08
solars has joined #ruby-lang
13:10
sulo has quit [Ping timeout: 265 seconds]
13:12
stevechiagozie has joined #ruby-lang
13:13
arooni-mobile has quit [Ping timeout: 255 seconds]
13:15
goshakkk has joined #ruby-lang
13:16
stevechiagozie has quit [Ping timeout: 260 seconds]
13:17
x0F has quit [Disconnected by services]
13:17
x0F_ has joined #ruby-lang
13:18
x0F_ is now known as x0F
13:23
ebouchut has joined #ruby-lang
13:23
drbrain has quit [Read error: Connection timed out]
13:24
Rarrikins_w has quit [Ping timeout: 252 seconds]
13:24
krz has joined #ruby-lang
13:25
Rarrikins has joined #ruby-lang
13:30
sepp2k has joined #ruby-lang
13:32
drbrain has joined #ruby-lang
13:32
CapnKernul has joined #ruby-lang
13:33
Glass_saga has quit [Remote host closed the connection]
13:34
Glass_saga has joined #ruby-lang
13:35
banisterfiend has quit [Remote host closed the connection]
13:37
CapnKernul has quit [Ping timeout: 250 seconds]
13:43
blacktulip has joined #ruby-lang
13:43
ebouchut has quit [Quit: This computer has gone to sleep]
13:46
Rarrikins has quit [Ping timeout: 264 seconds]
13:47
sulo has joined #ruby-lang
13:49
sailias has joined #ruby-lang
13:51
voker57 has quit [Remote host closed the connection]
13:51
anannie has joined #ruby-lang
13:51
s1n4 has joined #ruby-lang
13:52
sulo has quit [Ping timeout: 252 seconds]
13:56
Glass_saga has quit [Remote host closed the connection]
13:56
Glass_saga has joined #ruby-lang
13:59
methods has joined #ruby-lang
14:00
methods has left #ruby-lang [#ruby-lang]
14:02
s1n4 has quit [Quit: leaving]
14:03
ebouchut has joined #ruby-lang
14:04
sush24 has quit [Quit: This computer has gone to sleep]
14:05
sush24 has joined #ruby-lang
14:09
sush24 has quit [Ping timeout: 252 seconds]
14:13
leopard_me has joined #ruby-lang
14:14
m3nd3s has quit [Remote host closed the connection]
14:15
sush24 has joined #ruby-lang
14:19
Aria has joined #ruby-lang
14:20
sush24 has quit [Ping timeout: 255 seconds]
14:20
voker57 has joined #ruby-lang
14:20
voker57 has joined #ruby-lang
14:20
voker57 has quit [Changing host]
14:23
sush24 has joined #ruby-lang
14:24
xalei has joined #ruby-lang
14:24
workmad3 has joined #ruby-lang
14:29
goshakkk has quit [Quit: Computer has gone to sleep.]
14:30
stevechiagozie has joined #ruby-lang
14:30
sulo has joined #ruby-lang
14:30
sulo has quit [Read error: Connection reset by peer]
14:30
sulo has joined #ruby-lang
14:33
CapnKernul has joined #ruby-lang
14:35
sulo has quit [Ping timeout: 260 seconds]
14:36
sush24 has quit [Ping timeout: 255 seconds]
14:37
stevechiagozie has quit [Ping timeout: 252 seconds]
14:37
CapnKernul has quit [Ping timeout: 244 seconds]
14:38
sush24 has joined #ruby-lang
14:38
ebouchut has quit [Quit: This computer has gone to sleep]
14:40
madish has joined #ruby-lang
14:41
tbuehlmann has joined #ruby-lang
14:42
leopard_me has quit [Quit: Computer has gone to sleep.]
14:45
Banistergalaxy has quit [Ping timeout: 260 seconds]
14:46
workmad3 has quit [Ping timeout: 250 seconds]
14:52
sulo has joined #ruby-lang
14:52
superfluous has joined #ruby-lang
14:56
Banistergalaxy has joined #ruby-lang
14:56
sulo has quit [Ping timeout: 244 seconds]
14:57
goshakkk has joined #ruby-lang
15:01
jxie has joined #ruby-lang
15:04
flexd has quit [Ping timeout: 260 seconds]
15:09
stevechiagozie has joined #ruby-lang
15:09
thone_ has joined #ruby-lang
15:12
thone has quit [Ping timeout: 245 seconds]
15:13
sulo has joined #ruby-lang
15:13
stevechiagozie has quit [Ping timeout: 250 seconds]
15:14
mistym has joined #ruby-lang
15:17
sulo has quit [Ping timeout: 260 seconds]
15:21
workmad3 has joined #ruby-lang
15:21
fowl has quit [Ping timeout: 248 seconds]
15:22
xalei has quit [Remote host closed the connection]
15:24
Guest9041 has quit [Remote host closed the connection]
15:25
Guest9041 has joined #ruby-lang
15:25
MaddinXx has quit [Remote host closed the connection]
15:26
workmad3 has quit [Ping timeout: 264 seconds]
15:28
mistym has quit [Remote host closed the connection]
15:33
CapnKernul has joined #ruby-lang
15:38
CapnKernul has quit [Ping timeout: 264 seconds]
15:39
krz has quit [Quit: krz]
15:42
srbaker has joined #ruby-lang
15:42
meatballhat has joined #ruby-lang
15:45
fowl has joined #ruby-lang
15:46
m3nd3s has joined #ruby-lang
15:46
leopard_me has joined #ruby-lang
15:48
flexd has joined #ruby-lang
15:48
stevechiagozie has joined #ruby-lang
15:49
AndChat- has joined #ruby-lang
15:51
Banistergalaxy has quit [Ping timeout: 255 seconds]
15:55
postmodern has quit [Quit: Leaving]
15:55
sulo has joined #ruby-lang
15:56
stevechiagozie has quit [Ping timeout: 260 seconds]
15:59
superfluous has quit [Remote host closed the connection]
15:59
mistym has joined #ruby-lang
15:59
mistym has quit [Changing host]
15:59
mistym has joined #ruby-lang
16:00
sulo has quit [Ping timeout: 244 seconds]
16:01
robbyoconnor has joined #ruby-lang
16:08
mercwithamouth has joined #ruby-lang
16:09
antbody has quit [Quit: leaving]
16:10
meatballhat has quit [Ping timeout: 260 seconds]
16:10
io_syl has joined #ruby-lang
16:11
meatballhat has joined #ruby-lang
16:14
seanstickle has joined #ruby-lang
16:14
jbsan has joined #ruby-lang
16:16
jonahR has joined #ruby-lang
16:20
drbrain has quit [Read error: Connection timed out]
16:22
ebouchut has joined #ruby-lang
16:22
sepp2k1 has joined #ruby-lang
16:24
sepp2k has quit [Ping timeout: 244 seconds]
16:26
robbyoconnor has quit [Read error: Connection reset by peer]
16:26
xyzodiac has joined #ruby-lang
16:27
stevechiagozie has joined #ruby-lang
16:27
robbyoconnor has joined #ruby-lang
16:27
sush24 has quit [Ping timeout: 255 seconds]
16:29
meatballhat has quit [Ping timeout: 265 seconds]
16:29
srbaker has quit [Quit: Computer has gone to sleep.]
16:31
emocakes has quit [Ping timeout: 245 seconds]
16:32
robbyoconnor has quit [Ping timeout: 255 seconds]
16:32
drbrain has joined #ruby-lang
16:33
robbyoconnor has joined #ruby-lang
16:33
CapnKernul has joined #ruby-lang
16:34
ebouchut has quit [Quit: This computer has gone to sleep]
16:35
blahwoop has joined #ruby-lang
16:37
jonahR has quit [Quit: jonahR]
16:38
CapnKernul has quit [Ping timeout: 252 seconds]
16:38
chekcmate has joined #ruby-lang
16:38
<
chekcmate >
good evening everyone!
16:38
sulo has joined #ruby-lang
16:39
jonahR has joined #ruby-lang
16:39
Mch1 has joined #ruby-lang
16:41
<
seanstickle >
Halloo
16:41
dhsmith has quit [Remote host closed the connection]
16:42
<
andrewvos >
injekt: hi
16:42
sulo has quit [Ping timeout: 255 seconds]
16:43
<
injekt >
andrewvos: nevermind it was a question about your irssi buildpack but can't remember now :)
16:44
<
chekcmate >
can anyone recommend a good site for learning the basics of qt4 ruby?
16:44
ebouchut has joined #ruby-lang
16:44
m3nd3s has quit [Remote host closed the connection]
16:45
<
seanstickle >
chekcmate: don't do it!
16:45
<
chekcmate >
I have to, my next department programs with qt :/
16:46
<
seanstickle >
That's terrible!
16:47
<
chekcmate >
I can work in Tokyo in exchange for qt, seanstickle - it's worth it
16:47
<
injekt >
i can work in tokyo without touching qt, this makes me happy
16:47
<
chekcmate >
Mon_Ouie: Thanks, I already got that site on my list ;)
16:48
<
andrewvos >
injekt: okie
16:48
<
chekcmate >
injekt: but not as an apprentice
16:48
<
chekcmate >
injekt: but not as an apprentice
16:48
<
chekcmate >
what's going on with this webchat..?
16:48
<
chekcmate >
what's going on with this webchat..?
16:48
chekcmate has quit [Quit: Page closed]
16:49
chekcmate has joined #ruby-lang
16:49
<
chekcmate >
hope that's fixed now
16:50
<
seanstickle >
I'm still seeing double posts
16:50
<
chekcmate >
don't trick me!
16:50
<
chekcmate >
anyways, qt is used over there by our department... so that's the thing I can't choose
16:51
<
chekcmate >
it's great to even get the chance to work there
16:54
davidbalber|away is now known as davidbalbert
16:59
briantrust has joined #ruby-lang
17:00
greep has joined #ruby-lang
17:02
greep has quit [Client Quit]
17:02
rolfb has joined #ruby-lang
17:07
Rarrikins has joined #ruby-lang
17:07
imajes has quit [Excess Flood]
17:10
imajes has joined #ruby-lang
17:11
sulo has joined #ruby-lang
17:19
srbaker has joined #ruby-lang
17:19
andrew_ has joined #ruby-lang
17:20
andrew_ is now known as andrewhl
17:21
wyhaines has quit [Remote host closed the connection]
17:33
sulo has quit [Remote host closed the connection]
17:40
matip has joined #ruby-lang
17:40
<
matip >
is it possible to use Curses so I can capture any key but in normal screen instead of full screen?
17:41
srbaker has quit [Quit: Computer has gone to sleep.]
17:42
blahwoop has quit [Ping timeout: 276 seconds]
17:42
<
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
17:42
<
chekcmate >
any idea?
17:43
<
chekcmate >
tried to escape them too
17:43
sulo has joined #ruby-lang
17:43
sulo has quit [Read error: Connection reset by peer]
17:45
CaptainJet has joined #ruby-lang
17:45
rdw200169 has quit [Ping timeout: 255 seconds]
17:49
sulo has joined #ruby-lang
17:52
marco has joined #ruby-lang
17:52
marco is now known as Marco
17:53
tbuehlmann has quit [Remote host closed the connection]
17:54
<
darix >
chekcmate: could it be you send this through CGI.unescape or similar before gsub?
17:54
<
chekcmate >
nope, simply creating that string using other strings and some hard text
17:56
<
injekt >
chekcmate: what are you trying to do?
17:57
rdw200169 has joined #ruby-lang
17:58
outoftime has joined #ruby-lang
17:58
<
chekcmate >
injekt: concatenating strings
17:59
<
injekt >
chekcmate: show me some code, your initial question doesn't make much sense to me
18:01
<
chekcmate >
ok, second
18:05
sulo has quit [Remote host closed the connection]
18:05
tbuehlmann has joined #ruby-lang
18:05
sulo has joined #ruby-lang
18:08
<
injekt >
chekcmate: are those inputs from stdin?
18:09
<
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
18:09
<
chekcmate >
damnit!
18:09
<
chekcmate >
I've seen that chomp some times now..
18:09
<
chekcmate >
thanks a lot
18:10
<
injekt >
chekcmate: try it in irb.. gets; then type something, and you'll see the output will be "foo\n" for example
18:10
<
chekcmate >
alright
18:10
sulo has quit [Ping timeout: 252 seconds]
18:11
<
chekcmate >
yay, easy wallpaper grabbing :)
18:12
<
chekcmate >
I hate to go through tons of pages for a wallpaper
18:12
<
chekcmate >
now I can simply enter keyword, amount of wallpapers and width+heigth and grab em all
18:14
ebouchut has quit [Quit: This computer has gone to sleep]
18:16
srbaker has joined #ruby-lang
18:20
leopard_me has quit [Quit: Computer has gone to sleep.]
18:20
m3nd3s has joined #ruby-lang
18:25
Rarrikins_z has joined #ruby-lang
18:25
Rarrikins has quit [Ping timeout: 265 seconds]
18:27
sulo has joined #ruby-lang
18:27
sulo has quit [Remote host closed the connection]
18:27
sulo_ has joined #ruby-lang
18:30
rolfb has joined #ruby-lang
18:30
sulo_ has quit [Remote host closed the connection]
18:31
workmad3 has joined #ruby-lang
18:31
mercwithamouth has quit [Ping timeout: 260 seconds]
18:35
marr has quit [Ping timeout: 265 seconds]
18:38
workmad3 has quit [Ping timeout: 260 seconds]
18:39
m3nd3s has quit [Remote host closed the connection]
18:46
meatballhat has joined #ruby-lang
18:48
sepp2k1 has quit [Ping timeout: 265 seconds]
18:48
sulo has joined #ruby-lang
18:49
vlad_starkov has joined #ruby-lang
18:53
workmad3 has joined #ruby-lang
18:53
sulo has quit [Ping timeout: 252 seconds]
18:54
seanstickle has quit [Quit: seanstickle]
18:58
buzz__ has joined #ruby-lang
18:58
stevechiagozie has quit [Quit: leaving]
18:58
spuk has joined #ruby-lang
18:58
vlad_starkov has quit [Ping timeout: 260 seconds]
19:00
mercwithamouth has joined #ruby-lang
19:02
sepp2k has joined #ruby-lang
19:03
workmad3 has quit [Read error: Operation timed out]
19:03
leopard_me has joined #ruby-lang
19:05
jondot` has joined #ruby-lang
19:07
adambeynon has joined #ruby-lang
19:13
_br_ has quit [Excess Flood]
19:14
_br_ has joined #ruby-lang
19:14
Rarrikins_z has quit [Ping timeout: 265 seconds]
19:14
Rarrikins has joined #ruby-lang
19:16
mistym has quit [Remote host closed the connection]
19:17
srbaker has quit [Quit: Computer has gone to sleep.]
19:19
_br_ has quit [Excess Flood]
19:19
Rarrikins has quit [Remote host closed the connection]
19:22
_br_ has joined #ruby-lang
19:24
Rarrikins has joined #ruby-lang
19:28
Rarrikins has quit [Ping timeout: 255 seconds]
19:29
ryanf has joined #ruby-lang
19:29
Rarrrikins has joined #ruby-lang
19:31
sulo has joined #ruby-lang
19:34
marr has joined #ruby-lang
19:35
sulo has quit [Ping timeout: 250 seconds]
19:37
Rarrrikins has quit [Ping timeout: 260 seconds]
19:41
mercwithamouth has quit [Ping timeout: 260 seconds]
19:46
sulo has joined #ruby-lang
19:49
sulo has quit [Remote host closed the connection]
19:49
sulo has joined #ruby-lang
19:50
workmad3 has joined #ruby-lang
19:54
sulo has quit [Ping timeout: 250 seconds]
19:54
CaptainJet has quit [Ping timeout: 265 seconds]
19:54
Asher has joined #ruby-lang
19:57
sulo has joined #ruby-lang
20:00
srbaker has joined #ruby-lang
20:09
srbaker has quit [Quit: Computer has gone to sleep.]
20:09
neocoin has quit [Remote host closed the connection]
20:12
srbaker has joined #ruby-lang
20:19
io_syl has quit [*.net *.split]
20:19
sepp2k has quit [*.net *.split]
20:19
JohnBat26 has quit [*.net *.split]
20:19
dafalcon` has quit [*.net *.split]
20:19
francisfish has quit [*.net *.split]
20:19
Ober has quit [*.net *.split]
20:19
knu has quit [*.net *.split]
20:19
mksm has quit [*.net *.split]
20:19
jmeeuwen has quit [*.net *.split]
20:19
wycats_ has quit [*.net *.split]
20:19
znouza has quit [*.net *.split]
20:19
pkondzior__ has quit [*.net *.split]
20:19
abuiles_ has quit [*.net *.split]
20:19
terite_ has quit [*.net *.split]
20:19
valeri_ufo has quit [*.net *.split]
20:19
tris has quit [*.net *.split]
20:19
jarib has quit [*.net *.split]
20:19
qz has quit [*.net *.split]
20:19
dyfrgi_ has quit [*.net *.split]
20:19
naquad has quit [*.net *.split]
20:19
corundum has quit [*.net *.split]
20:19
wasnotrice_ has quit [*.net *.split]
20:19
jammi has quit [*.net *.split]
20:19
sj26 has quit [*.net *.split]
20:19
whitequark has quit [*.net *.split]
20:19
spectra has quit [*.net *.split]
20:19
yugui_zzz has quit [*.net *.split]
20:19
whitequark has joined #ruby-lang
20:19
mksm has joined #ruby-lang
20:19
qz has joined #ruby-lang
20:19
dyfrgi has joined #ruby-lang
20:19
corundum has joined #ruby-lang
20:19
dafalcon` has joined #ruby-lang
20:19
znouza has joined #ruby-lang
20:19
JohnBat26 has joined #ruby-lang
20:19
aef has quit [Excess Flood]
20:19
tris has joined #ruby-lang
20:19
jarib_ has joined #ruby-lang
20:19
jarib_ has quit [Excess Flood]
20:19
yugui_zzz has joined #ruby-lang
20:19
francisfish has joined #ruby-lang
20:19
sepp2k has joined #ruby-lang
20:19
io_syl has joined #ruby-lang
20:19
jammi has joined #ruby-lang
20:19
jaimef has joined #ruby-lang
20:19
jmeeuwen has joined #ruby-lang
20:20
wasnotrice has joined #ruby-lang
20:20
valeri_ufo has joined #ruby-lang
20:20
jarib has joined #ruby-lang
20:20
jarib has quit [Excess Flood]
20:20
spectra has joined #ruby-lang
20:20
wycats_ has joined #ruby-lang
20:20
abuiles_ has joined #ruby-lang
20:20
sj26 has joined #ruby-lang
20:20
pkondzior__ has joined #ruby-lang
20:20
terite_ has joined #ruby-lang
20:20
jarib has joined #ruby-lang
20:20
jarib has quit [Excess Flood]
20:20
naquad has joined #ruby-lang
20:21
jarib has joined #ruby-lang
20:21
jarib has quit [Excess Flood]
20:21
jarib has joined #ruby-lang
20:21
jarib has quit [Excess Flood]
20:21
aef has joined #ruby-lang
20:22
jarib has joined #ruby-lang
20:22
jarib has quit [Excess Flood]
20:22
srbaker has quit [Quit: Computer has gone to sleep.]
20:22
jarib has joined #ruby-lang
20:22
jarib has quit [Excess Flood]
20:23
jarib has joined #ruby-lang
20:23
jarib has quit [Excess Flood]
20:23
jarib has joined #ruby-lang
20:23
jarib has quit [Excess Flood]
20:24
intellitech has quit [Read error: Connection reset by peer]
20:25
knu has joined #ruby-lang
20:25
jarib has joined #ruby-lang
20:25
jarib has quit [Excess Flood]
20:25
intellitech has joined #ruby-lang
20:26
vlad_starkov has joined #ruby-lang
20:26
jarib has joined #ruby-lang
20:26
jarib has quit [Excess Flood]
20:26
cyri_ has joined #ruby-lang
20:26
jarib has joined #ruby-lang
20:26
jarib has quit [Excess Flood]
20:27
jarib has joined #ruby-lang
20:27
jarib has quit [Excess Flood]
20:27
jarib has joined #ruby-lang
20:27
jarib has quit [Excess Flood]
20:28
jarib has joined #ruby-lang
20:28
jarib has quit [Excess Flood]
20:28
jarib has joined #ruby-lang
20:28
jarib has quit [Excess Flood]
20:29
jarib has joined #ruby-lang
20:29
jarib has quit [Excess Flood]
20:29
jarib has joined #ruby-lang
20:29
jarib has quit [Excess Flood]
20:29
cyri__ has joined #ruby-lang
20:30
jarib has joined #ruby-lang
20:30
jarib has quit [Excess Flood]
20:30
jarib has joined #ruby-lang
20:30
jarib has quit [Excess Flood]
20:30
cyri_ has quit [Ping timeout: 264 seconds]
20:31
wallerdev has joined #ruby-lang
20:31
jarib has joined #ruby-lang
20:31
jarib has quit [Excess Flood]
20:32
jarib has joined #ruby-lang
20:32
jarib has quit [Excess Flood]
20:32
jarib has joined #ruby-lang
20:32
jarib has quit [Excess Flood]
20:33
jarib has joined #ruby-lang
20:33
jarib has quit [Excess Flood]
20:33
jarib has joined #ruby-lang
20:33
jarib has quit [Excess Flood]
20:34
jarib has joined #ruby-lang
20:34
jarib has quit [Excess Flood]
20:34
cyri__ has quit [Ping timeout: 265 seconds]
20:34
jarib has joined #ruby-lang
20:34
jarib has quit [Excess Flood]
20:34
<
fowl >
jarib: nice life
20:35
drbrain has quit [Read error: Connection timed out]
20:35
jarib has joined #ruby-lang
20:35
jarib has quit [Excess Flood]
20:35
jarib has joined #ruby-lang
20:35
jarib has quit [Excess Flood]
20:36
jarib has joined #ruby-lang
20:36
jarib has quit [Excess Flood]
20:37
jarib has joined #ruby-lang
20:37
JohnBat26 has quit [Ping timeout: 252 seconds]
20:37
jarib has quit [Excess Flood]
20:37
srbaker has joined #ruby-lang
20:37
jarib_ has joined #ruby-lang
20:37
jarib_ has quit [Excess Flood]
20:38
jarib has joined #ruby-lang
20:38
jarib has quit [Excess Flood]
20:38
<
matip >
require 'curses' \n puts 'Press any key to continue...' \n Curses.getch \n puts 'yay!'
20:38
<
matip >
isn't it possible to do that without activating "full screen" in curses?
20:38
jarib has joined #ruby-lang
20:38
jarib has quit [Excess Flood]
20:39
jarib has joined #ruby-lang
20:39
jarib has quit [Excess Flood]
20:39
Asher has quit [Quit: Leaving.]
20:39
jarib has joined #ruby-lang
20:39
jarib has quit [Excess Flood]
20:40
jarib has joined #ruby-lang
20:40
jarib has quit [Excess Flood]
20:40
jarib has joined #ruby-lang
20:40
jarib has quit [Excess Flood]
20:41
jarib has joined #ruby-lang
20:41
jarib has quit [Excess Flood]
20:41
jarib has joined #ruby-lang
20:41
jarib has quit [Excess Flood]
20:42
jarib has joined #ruby-lang
20:42
jarib has quit [Excess Flood]
20:42
jarib has joined #ruby-lang
20:42
jarib has quit [Excess Flood]
20:42
larrylv has joined #ruby-lang
20:43
jarib has joined #ruby-lang
20:43
jarib has quit [Excess Flood]
20:44
jarib has joined #ruby-lang
20:44
r0bby has joined #ruby-lang
20:44
jarib has quit [Excess Flood]
20:44
jarib has joined #ruby-lang
20:44
jarib has quit [Excess Flood]
20:45
jarib has joined #ruby-lang
20:45
jarib has quit [Excess Flood]
20:45
robbyoconnor has quit [Ping timeout: 252 seconds]
20:45
jarib has joined #ruby-lang
20:45
jarib has quit [Excess Flood]
20:46
jarib has joined #ruby-lang
20:46
jarib has quit [Excess Flood]
20:46
jarib has joined #ruby-lang
20:46
jarib has quit [Excess Flood]
20:47
jarib has joined #ruby-lang
20:47
jarib has quit [Excess Flood]
20:47
larrylv has quit [Ping timeout: 264 seconds]
20:47
jarib has joined #ruby-lang
20:47
jarib has quit [Excess Flood]
20:48
jarib has joined #ruby-lang
20:48
jarib has quit [Excess Flood]
20:48
sn0wb1rd has quit [Quit: I will be right back]
20:48
jarib has joined #ruby-lang
20:48
jarib has quit [Excess Flood]
20:49
jarib has joined #ruby-lang
20:49
jarib has quit [Excess Flood]
20:50
jarib has joined #ruby-lang
20:50
jarib has quit [Excess Flood]
20:50
jarib has joined #ruby-lang
20:50
jarib has quit [Excess Flood]
20:51
jarib has joined #ruby-lang
20:51
jarib has quit [Excess Flood]
20:51
intellitech has quit [Read error: Connection reset by peer]
20:51
jarib has joined #ruby-lang
20:51
jarib has quit [Excess Flood]
20:52
jarib has joined #ruby-lang
20:52
jarib has quit [Excess Flood]
20:52
jarib has joined #ruby-lang
20:52
jarib has quit [Excess Flood]
20:53
jarib has joined #ruby-lang
20:53
jarib has quit [Excess Flood]
20:53
jarib has joined #ruby-lang
20:53
jarib has quit [Excess Flood]
20:54
jarib has joined #ruby-lang
20:54
jarib has quit [Excess Flood]
20:54
jarib has joined #ruby-lang
20:54
jarib has quit [Excess Flood]
20:55
jarib has joined #ruby-lang
20:55
jarib has quit [Excess Flood]
20:55
jarib has joined #ruby-lang
20:55
jarib has quit [Excess Flood]
20:56
jarib has joined #ruby-lang
20:56
jarib has quit [Excess Flood]
20:56
countdigi has quit [Quit: Lost terminal]
20:57
jarib has joined #ruby-lang
20:57
jarib has quit [Excess Flood]
20:57
jarib has joined #ruby-lang
20:57
jarib has quit [Excess Flood]
20:58
jarib has joined #ruby-lang
20:58
jarib has quit [Excess Flood]
20:58
jarib has joined #ruby-lang
20:58
jarib has quit [Excess Flood]
20:59
jarib has joined #ruby-lang
20:59
jarib has quit [Excess Flood]
20:59
jarib has joined #ruby-lang
20:59
jarib has quit [Excess Flood]
20:59
r0bby is now known as robbyoconnor
21:00
jarib has joined #ruby-lang
21:00
jarib has quit [Excess Flood]
21:00
jarib has joined #ruby-lang
21:00
jarib has quit [Excess Flood]
21:00
leopard_me has quit [Quit: Computer has gone to sleep.]
21:01
jarib has joined #ruby-lang
21:01
jarib has quit [Excess Flood]
21:01
srbaker has quit [Quit: Computer has gone to sleep.]
21:01
jarib has joined #ruby-lang
21:01
jarib has quit [Excess Flood]
21:02
jarib has joined #ruby-lang
21:02
jarib has quit [Excess Flood]
21:03
jarib has joined #ruby-lang
21:03
jarib has quit [Excess Flood]
21:03
jarib has joined #ruby-lang
21:03
jarib has quit [Excess Flood]
21:04
jarib has joined #ruby-lang
21:04
jarib has quit [Excess Flood]
21:04
jarib has joined #ruby-lang
21:04
jarib has quit [Excess Flood]
21:05
jarib has joined #ruby-lang
21:05
jarib has quit [Excess Flood]
21:05
jarib has joined #ruby-lang
21:05
jarib has quit [Excess Flood]
21:06
jarib has joined #ruby-lang
21:06
jarib has quit [Excess Flood]
21:06
jarib has joined #ruby-lang
21:06
jarib has quit [Excess Flood]
21:06
workmad3 has quit [Ping timeout: 252 seconds]
21:07
jarib has joined #ruby-lang
21:07
jarib has quit [Excess Flood]
21:07
jarib has joined #ruby-lang
21:07
jarib has quit [Excess Flood]
21:08
jarib has joined #ruby-lang
21:08
jarib has quit [Excess Flood]
21:08
jarib has joined #ruby-lang
21:08
jarib has quit [Excess Flood]
21:09
<
darix >
matip: why not just STDIN.getc ?
21:09
jarib has joined #ruby-lang
21:09
jarib has quit [Excess Flood]
21:09
<
darix >
ah needs a return
21:09
havenn has joined #ruby-lang
21:09
<
darix >
well you could change the message to press return to continue
21:09
<
matip >
yep, but I already solved the problem with STDIN.getch (with h at the end)
21:09
jarib has joined #ruby-lang
21:09
jarib has quit [Excess Flood]
21:09
<
fowl >
jarib: nice connection... NOT
21:10
sulo has quit [Remote host closed the connection]
21:10
jarib has joined #ruby-lang
21:10
jarib has quit [Excess Flood]
21:11
jarib_ has joined #ruby-lang
21:11
jarib_ has quit [Excess Flood]
21:11
jarib_ has joined #ruby-lang
21:11
jarib_ has quit [Excess Flood]
21:12
mistym has joined #ruby-lang
21:12
mistym has quit [Changing host]
21:12
mistym has joined #ruby-lang
21:12
jarib_ has joined #ruby-lang
21:12
jarib_ has quit [Excess Flood]
21:12
jarib_ has joined #ruby-lang
21:12
jarib_ has quit [Excess Flood]
21:13
jarib_ has joined #ruby-lang
21:13
jarib_ has quit [Excess Flood]
21:13
jarib_ has joined #ruby-lang
21:13
jarib_ has quit [Excess Flood]
21:14
jarib_ has joined #ruby-lang
21:14
jarib_ has quit [Excess Flood]
21:14
jarib_ has joined #ruby-lang
21:14
jarib_ has quit [Excess Flood]
21:15
jarib_ has joined #ruby-lang
21:15
jarib_ has quit [Excess Flood]
21:16
jarib_ has joined #ruby-lang
21:16
jarib_ has quit [Excess Flood]
21:16
jarib_ has joined #ruby-lang
21:16
jarib_ has quit [Excess Flood]
21:17
jarib_ has joined #ruby-lang
21:17
jarib_ has quit [Excess Flood]
21:17
sn0wb1rd has joined #ruby-lang
21:17
jarib_ has joined #ruby-lang
21:17
jarib_ has quit [Excess Flood]
21:18
jarib_ has joined #ruby-lang
21:18
jarib_ has quit [Excess Flood]
21:18
jarib_ has joined #ruby-lang
21:18
jarib_ has quit [Excess Flood]
21:19
jarib_ has joined #ruby-lang
21:19
jarib_ has quit [Excess Flood]
21:19
drbrain has joined #ruby-lang
21:19
jarib_ has joined #ruby-lang
21:19
jarib_ has quit [Excess Flood]
21:20
jarib_ has joined #ruby-lang
21:20
jarib_ has quit [Excess Flood]
21:20
jarib_ has joined #ruby-lang
21:20
jarib_ has quit [Excess Flood]
21:21
jarib_ has joined #ruby-lang
21:21
jarib_ has quit [Excess Flood]
21:22
jarib_ has joined #ruby-lang
21:22
jarib_ has quit [Excess Flood]
21:22
cyri_ has joined #ruby-lang
21:22
jarib_ has joined #ruby-lang
21:22
jarib_ has quit [Excess Flood]
21:23
jarib_ has joined #ruby-lang
21:23
jarib_ has quit [Excess Flood]
21:23
jarib_ has joined #ruby-lang
21:23
jarib_ has quit [Excess Flood]
21:24
jarib_ has joined #ruby-lang
21:24
jarib_ has quit [Excess Flood]
21:24
jarib_ has joined #ruby-lang
21:24
jarib_ has quit [Excess Flood]
21:25
jarib_ has joined #ruby-lang
21:25
jarib_ has quit [Excess Flood]
21:25
jarib_ has joined #ruby-lang
21:25
jarib_ has quit [Excess Flood]
21:26
jarib_ has joined #ruby-lang
21:26
jarib_ has quit [Excess Flood]
21:27
jarib_ has joined #ruby-lang
21:27
jarib_ has quit [Excess Flood]
21:28
jarib_ has joined #ruby-lang
21:28
jarib_ has quit [Excess Flood]
21:28
jarib_ has joined #ruby-lang
21:28
jarib_ has quit [Excess Flood]
21:29
jarib_ has joined #ruby-lang
21:29
jarib_ has quit [Excess Flood]
21:29
jarib_ has joined #ruby-lang
21:29
jarib_ has quit [Excess Flood]
21:30
jarib_ has joined #ruby-lang
21:30
jarib_ has quit [Excess Flood]
21:30
Kero has quit [Quit: bbl]
21:31
jarib_ has joined #ruby-lang
21:31
jarib_ has quit [Excess Flood]
21:31
jarib_ has joined #ruby-lang
21:31
jarib_ has quit [Excess Flood]
21:32
jarib_ has joined #ruby-lang
21:32
jarib_ has quit [Excess Flood]
21:32
jarib_ has joined #ruby-lang
21:32
jarib_ has quit [Excess Flood]
21:33
jarib_ has joined #ruby-lang
21:33
jarib_ has quit [Excess Flood]
21:33
jarib_ has joined #ruby-lang
21:33
jarib_ has quit [Excess Flood]
21:34
jarib_ has joined #ruby-lang
21:34
jarib_ has quit [Excess Flood]
21:34
wyhaines has joined #ruby-lang
21:34
jarib_ has joined #ruby-lang
21:34
jarib_ has quit [Excess Flood]
21:35
jarib_ has joined #ruby-lang
21:35
jarib_ has quit [Excess Flood]
21:35
jarib_ has joined #ruby-lang
21:35
jarib_ has quit [Excess Flood]
21:36
jarib_ has joined #ruby-lang
21:36
jarib_ has quit [Excess Flood]
21:36
<
swarley >
Well then
21:37
<
swarley >
I'm not sure who jarib_ is but he sure does like to come and go
21:37
jarib_ has joined #ruby-lang
21:37
jarib_ has quit [Excess Flood]
21:37
<
mistym >
Excess Flood indeed :(
21:37
jarib_ has joined #ruby-lang
21:37
jarib_ has quit [Excess Flood]
21:38
jarib_ has joined #ruby-lang
21:38
jarib_ has quit [Excess Flood]
21:38
jarib_ has joined #ruby-lang
21:38
jarib_ has quit [Excess Flood]
21:39
jarib_ has joined #ruby-lang
21:39
jarib_ has quit [Excess Flood]
21:39
jarib_ has joined #ruby-lang
21:39
jarib_ has quit [Excess Flood]
21:40
jarib_ has joined #ruby-lang
21:40
jarib_ has quit [Excess Flood]
21:40
<
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
21:40
jarib_ has joined #ruby-lang
21:40
<
fowl >
we're fucking meat in cages
21:40
jarib_ has quit [Excess Flood]
21:41
jarib has joined #ruby-lang
21:41
srbaker has joined #ruby-lang
21:41
jarib has quit [Excess Flood]
21:42
jarib has joined #ruby-lang
21:42
jarib has quit [Excess Flood]
21:42
jarib has joined #ruby-lang
21:42
jarib has quit [Excess Flood]
21:43
jarib has joined #ruby-lang
21:43
jarib has quit [Excess Flood]
21:43
jarib has joined #ruby-lang
21:43
jarib has quit [Excess Flood]
21:44
jarib has joined #ruby-lang
21:44
jarib has quit [Excess Flood]
21:44
jarib has joined #ruby-lang
21:44
jarib has quit [Excess Flood]
21:45
jarib has joined #ruby-lang
21:45
jarib has quit [Excess Flood]
21:45
jarib has joined #ruby-lang
21:45
jarib has quit [Excess Flood]
21:45
drbrain has quit [Read error: Connection timed out]
21:46
jarib has joined #ruby-lang
21:46
jarib has quit [Excess Flood]
21:46
jarib has joined #ruby-lang
21:46
jarib has quit [Excess Flood]
21:47
jarib has joined #ruby-lang
21:47
jarib has quit [Excess Flood]
21:47
jarib has joined #ruby-lang
21:47
jarib has quit [Excess Flood]
21:48
jarib has joined #ruby-lang
21:48
jarib has quit [Excess Flood]
21:48
Nisstyre-laptop has joined #ruby-lang
21:49
Pricey has joined #ruby-lang
21:49
jarib has joined #ruby-lang
21:49
jtrucks has joined #ruby-lang
21:49
jarib has quit [Excess Flood]
21:49
Makiavel has joined #ruby-lang
21:49
jarib has joined #ruby-lang
21:49
jarib has quit [Excess Flood]
21:50
jarib has joined #ruby-lang
21:50
jarib has quit [Excess Flood]
21:50
jarib has joined #ruby-lang
21:50
jarib has quit [Excess Flood]
21:51
jarib has joined #ruby-lang
21:51
jarib has quit [Excess Flood]
21:51
jarib has joined #ruby-lang
21:51
jarib has quit [Excess Flood]
21:52
jarib has joined #ruby-lang
21:52
jarib has quit [Excess Flood]
21:52
jarib has joined #ruby-lang
21:52
jarib has quit [Excess Flood]
21:53
jarib has joined #ruby-lang
21:53
jarib has quit [Excess Flood]
21:53
drbrain has joined #ruby-lang
21:53
jarib has joined #ruby-lang
21:53
jarib has quit [Excess Flood]
21:53
cyri__ has joined #ruby-lang
21:54
jarib has joined #ruby-lang
21:54
jarib has quit [Excess Flood]
21:54
cyri_ has quit [Ping timeout: 255 seconds]
21:54
jarib has joined #ruby-lang
21:54
jarib has quit [Excess Flood]
21:55
xalei has joined #ruby-lang
21:55
jarib has joined #ruby-lang
21:55
jarib has quit [Excess Flood]
21:56
ap4y has joined #ruby-lang
21:56
KindOne has joined #ruby-lang
21:56
<
whitequark >
Pricey: thanks!
21:57
<
whitequark >
mistym, fowl: you can report this to #freenode and they'll help.
21:58
<
mistym >
whitequark: Thanks, will do in the future
21:58
cyri_ has joined #ruby-lang
21:58
ap4y has quit [Remote host closed the connection]
21:58
cyri__ has quit [Ping timeout: 276 seconds]
21:58
drbrain has quit [Remote host closed the connection]
21:59
drbrain has joined #ruby-lang
22:00
cyri_ has quit [Read error: Operation timed out]
22:02
lsegal has joined #ruby-lang
22:03
jtrucks has left #ruby-lang ["Oh Noes!"]
22:04
ap4y has joined #ruby-lang
22:04
emocakes has joined #ruby-lang
22:08
Kero has joined #ruby-lang
22:09
cyri__ has joined #ruby-lang
22:11
davidbalbert is now known as davidbalber|away
22:12
kennyvb has quit [Ping timeout: 245 seconds]
22:14
cyri__ has quit [Ping timeout: 255 seconds]
22:14
kennyvb has joined #ruby-lang
22:16
_br_ has quit [Excess Flood]
22:16
mjio has joined #ruby-lang
22:17
cyri__ has joined #ruby-lang
22:17
srbaker has quit [Quit: Computer has gone to sleep.]
22:18
cyri__ has quit [Client Quit]
22:18
seanstickle has joined #ruby-lang
22:19
_br_ has joined #ruby-lang
22:20
blacktulip has quit [Remote host closed the connection]
22:21
seanstickle has quit [Client Quit]
22:21
kennyvb has quit [Ping timeout: 255 seconds]
22:21
_br_ has quit [Excess Flood]
22:22
kennyvb has joined #ruby-lang
22:25
_br_ has joined #ruby-lang
22:27
banisterfiend has joined #ruby-lang
22:27
<
banisterfiend >
zenspider: do you understand the code climate metrics?
22:30
drbrain has quit [Remote host closed the connection]
22:34
jonahR has quit [Quit: jonahR]
22:38
ap4y has quit [Remote host closed the connection]
22:41
Aria has quit [Remote host closed the connection]
22:43
seanstickle has joined #ruby-lang
22:43
Aria has joined #ruby-lang
22:43
ap4y has joined #ruby-lang
22:45
kain_ has joined #ruby-lang
22:45
s1n4 has joined #ruby-lang
22:47
kain has quit [Ping timeout: 265 seconds]
22:47
kain__ has joined #ruby-lang
22:47
kain_ has quit [Read error: Connection reset by peer]
22:52
jmaya has joined #ruby-lang
22:54
ap4y has quit [Remote host closed the connection]
22:57
ap4y has joined #ruby-lang
23:01
KindOne has left #ruby-lang [#ruby-lang]
23:04
rsl has quit [Quit: Computer has gone to sleep.]
23:05
diomeo has joined #ruby-lang
23:05
vlad_starkov has quit [Remote host closed the connection]
23:07
solars has quit [Ping timeout: 252 seconds]
23:08
jondot` has quit [Ping timeout: 252 seconds]
23:13
agarie has joined #ruby-lang
23:13
ruurd has joined #ruby-lang
23:14
aedorn has quit [Quit: Konversation terminated!]
23:15
stevechiagozie has joined #ruby-lang
23:15
<
agarie >
has anyone used rdoc to document C++ source code?
23:15
workmad3 has joined #ruby-lang
23:16
Aria has quit [Remote host closed the connection]
23:17
Aria has joined #ruby-lang
23:20
<
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
23:21
havenn has quit [Remote host closed the connection]
23:21
Aria has quit [Ping timeout: 260 seconds]
23:21
havenn has joined #ruby-lang
23:21
stevechiagozie has quit [Quit: leaving]
23:21
tbuehlmann has quit [Read error: Connection reset by peer]
23:22
stevechiagozie has joined #ruby-lang
23:25
seanstickle has quit [Quit: seanstickle]
23:26
havenn has quit [Ping timeout: 260 seconds]
23:27
mercwithamouth has joined #ruby-lang
23:27
s1n4 has quit [Quit: leaving]
23:27
stevechiagozie has quit [Quit: leaving]
23:28
stevechiagozie has joined #ruby-lang
23:28
stevechiagozie has quit [Client Quit]
23:29
aedorn has joined #ruby-lang
23:29
stevechiagozie has joined #ruby-lang
23:30
diomeo has left #ruby-lang [#ruby-lang]
23:34
Rarrikins has joined #ruby-lang
23:35
Rarrikins has quit [Remote host closed the connection]
23:35
stonerfish has joined #ruby-lang
23:36
havenn has joined #ruby-lang
23:37
Rarrikins has joined #ruby-lang
23:37
drbrain has joined #ruby-lang
23:39
banisterfiend has quit [Remote host closed the connection]
23:41
drbrain has quit [Read error: Connection reset by peer]
23:41
drbrain_ has joined #ruby-lang
23:41
Aria has joined #ruby-lang
23:44
spuk has quit [Read error: Operation timed out]
23:46
drbrain_ has quit [Ping timeout: 276 seconds]
23:46
outoftime has quit [Quit: Leaving]
23:47
CapnKernul has joined #ruby-lang
23:48
jbsan_ has joined #ruby-lang
23:49
jbsan has quit [Ping timeout: 265 seconds]
23:49
jbsan_ is now known as jbsan
23:49
meatballhat has quit [Ping timeout: 255 seconds]
23:49
<
naquad >
is there any way to get metadata from pdf with rmagick?
23:50
mistym has quit [Remote host closed the connection]
23:52
micaeked has joined #ruby-lang
23:59
Darkspiel has joined #ruby-lang