00:01
gix has quit [Ping timeout: 256 seconds]
00:04
tylersmith has joined #ruby-lang
00:06
scottschecter has quit [Ping timeout: 264 seconds]
00:06
jiuweigui has quit [Quit: Gone...]
00:07
vlad_starkov has joined #ruby-lang
00:09
imperator3 has joined #ruby-lang
00:09
imperator2 has quit [Ping timeout: 264 seconds]
00:09
imperator3 has quit [Client Quit]
00:09
tomplast has quit [Ping timeout: 268 seconds]
00:10
vxtr9 has joined #ruby-lang
00:12
mdedetrich has quit [Quit: Computer has gone to sleep.]
00:13
mdedetrich has joined #ruby-lang
00:13
gix has joined #ruby-lang
00:14
bizarrosandwich has joined #ruby-lang
00:14
scottschecter has joined #ruby-lang
00:17
vlad_starkov has quit [Ping timeout: 245 seconds]
00:17
scottschecter has quit [Client Quit]
00:17
scottschecter has joined #ruby-lang
00:19
brianpWins has quit [Quit: brianpWins]
00:19
wallerdev has quit [Quit: wallerdev]
00:20
wallerdev has joined #ruby-lang
00:20
tomplast has joined #ruby-lang
00:22
mdedetrich has quit [Quit: Computer has gone to sleep.]
00:23
mdedetrich has joined #ruby-lang
00:36
mootpointer has joined #ruby-lang
00:41
imperator has quit [Quit: Valete!]
00:46
runeb has joined #ruby-lang
00:49
VTLob has quit [Quit: VTLob]
00:50
tomplast has quit [Read error: Connection reset by peer]
00:50
tomplast has joined #ruby-lang
00:51
cstrahan has joined #ruby-lang
00:52
runeb has quit [Ping timeout: 264 seconds]
00:53
priodev has quit [Ping timeout: 245 seconds]
00:53
nofxx1 has quit [Quit: Leaving.]
00:54
linc01n has quit [Ping timeout: 240 seconds]
00:56
linc01n has joined #ruby-lang
00:56
priodev has joined #ruby-lang
00:59
bfleischer has joined #ruby-lang
00:59
Elico has joined #ruby-lang
01:00
<
Elico >
hey I want to work with a ipv4 and ipv6 db and looking for an exisiting hash or btree like DB that can be used in ruby for these..
01:06
cstrahan has quit [Ping timeout: 256 seconds]
01:18
joshuawscott has joined #ruby-lang
01:26
<
drbrain >
Elico: ruby ships with dbm which wraps hash/btree DBs
01:28
GaelanAintAround has quit [Quit: Bye!]
01:29
GeissT has joined #ruby-lang
01:31
GaelanAintAround has joined #ruby-lang
01:32
gja has joined #ruby-lang
01:32
gja has quit [Changing host]
01:32
gja has joined #ruby-lang
01:32
zz_dlu has joined #ruby-lang
01:34
<
drbrain >
Elico: but I suppose if you're looking for a network-enabled one, maybe tokyo cabinet?
01:39
kurko_ has quit [Ping timeout: 260 seconds]
01:40
kurko_ has joined #ruby-lang
01:40
SilverKey has joined #ruby-lang
01:41
jxpx777 has quit [Quit: Leaving...]
01:41
SilverKey has quit [Client Quit]
01:42
jxpx777 has joined #ruby-lang
01:42
brianpWins has joined #ruby-lang
01:44
dhruvasagar has joined #ruby-lang
01:48
brianpWins has quit [Quit: brianpWins]
01:49
runeb has joined #ruby-lang
01:49
<
Elico >
drbrain: no I am not looking for a network enabled one but I need a bit of help even to remember what you are talking about.. I have used tokyo cabinet couple times..
01:50
<
drbrain >
Elico: by "hash or btree like DB" do you mean key-value store?
01:50
brianpWins has joined #ruby-lang
01:50
lfox has joined #ruby-lang
01:50
<
Elico >
drbrain: no... like a set.. a very very fast DB..
01:50
<
whitequark >
redis perhaps
01:51
<
Elico >
like iptables has ipset tools which are dedicated for ip lookup
01:51
fedesilv_ has quit [Remote host closed the connection]
01:51
fedesilva has joined #ruby-lang
01:51
<
whitequark >
so you want to lookup address ranges?
01:51
<
Elico >
whatever... I want to have a IP db and do a lookup in it..
01:52
<
whitequark >
well, you better understand what precisely you want to do, if you want someone to help you.
01:53
<
Elico >
whitequark: I stated before.. I want to have a DB of ipv4 and ipv6 which I can do a lookup in... like to match if an ip is in the list or not...
01:54
<
Elico >
I can do that using a simple array or another store engine that exists in ruby..
01:54
runeb has quit [Ping timeout: 268 seconds]
01:54
<
whitequark >
if Ruby Set or Hash would work for you, then redis would work just as well
01:55
dhruvasagar has quit [Ping timeout: 260 seconds]
01:55
<
Elico >
ok thanks.. I compared redis and tokyocabinet in the past and there wasn't that much of a difference in speed for a small DB of about 100k enteries..
01:56
<
drbrain >
oh, I misunderstood the IPv4 and IPv6 part in your initial message
01:56
<
drbrain >
I think dbm will be just fine
01:57
<
Elico >
drbrain: I am unsure about what dbm means to you.. can you please collaborate more?
01:57
<
drbrain >
Elico: is your query is something like "is 192.0.2.1 in the database"?
01:58
<
Elico >
exactly.. drbrain
01:58
<
Elico >
it's a true false db
01:58
<
drbrain >
Elico: then you only need a key-value store (whatever the underlying technology)
01:58
<
drbrain >
dbm is a ruby wrapper for a whole series of common key-value stores
01:59
<
drbrain >
you can create a database, load it up with known IPs and query it for those keys
01:59
<
Elico >
OK I liked tokyocabinet.. it's the fastest I have ever seen so I assume I will use it..
01:59
<
drbrain >
the interface is the same as a ruby hash
01:59
<
drbrain >
and yes, tokyocabinet is a derivative of dbm
01:59
<
Elico >
yes a ruby hash like interface.
01:59
<
Elico >
thanks drbrain..
01:59
<
drbrain >
with dbm you don't need to install extra libraries, is all
01:59
<
Elico >
and whiteshark
02:00
<
Elico >
well what kind of dbm as an example?
02:01
postmodern has joined #ruby-lang
02:01
asahi has joined #ruby-lang
02:01
jsullivandigs has quit [Remote host closed the connection]
02:01
<
Elico >
drbrain: I have tried to use berkeleyDB in the past but I think the results was that tokyocabinet was much faster..
02:02
jsullivandigs has joined #ruby-lang
02:04
nneko001__ has quit [Quit: Konversation terminated!]
02:05
<
asahi >
if you have a couple of apps on a production server, would they typically use the same ruby version?
02:06
<
asahi >
i'm using rbenv and when i do ruby -v, I get 1.9.3
02:06
rwk1 has joined #ruby-lang
02:07
jsullivandigs has quit [Ping timeout: 264 seconds]
02:09
<
Elico >
most likely that they would use the same version..
02:09
<
asahi >
okay, i have a new app on my local machine where I have ruby 2.0.0. how would i get this app to use ruby 2.0.0 on my production machine?
02:11
<
Elico >
I would say that you'd better not touch the current running version unless you test it really good...
02:11
<
Elico >
what is the size of the production system load?
02:13
<
asahi >
not a huge load on the current production system.
02:13
<
Elico >
which means???
02:13
<
Elico >
how many request per second?
02:13
<
asahi >
no more than 1 request per second
02:15
<
Elico >
then it's not a loaded system and if it's not a big app run couple tests to make sure that the service is running with no problem and if so dont upgrade to v 2 unless there is a real need for v2 and consider how to upgrade..
02:15
<
asahi >
the reason why I'm looking into my ruby versions is because when i do gem list <gem name>, nothing shows up even though i know some of my apps are using the gem
02:16
mdedetrich has quit [Quit: Computer has gone to sleep.]
02:16
<
Elico >
as a root user?
02:16
<
asahi >
not as root
02:18
<
asahi >
rbenv is used by a non-root user
02:19
<
asahi >
i cannot even run gem as root
02:19
<
Elico >
well if you cannot run gem as root it's werid..
02:19
<
Elico >
but if you run irb and see that you can include then there it is the gems are there..
02:20
<
Elico >
if you run other services they might jailed..
02:20
<
asahi >
well, i tried running pry inside my app directory, and couldn't require a certain gem
02:20
<
asahi >
all other gems i'm able to use no problem
02:22
brianpWins has quit [Quit: brianpWins]
02:23
ledestin has joined #ruby-lang
02:25
cstrahan has joined #ruby-lang
02:27
vxtr9 has quit [Quit: leaving]
02:30
charliesome has joined #ruby-lang
02:30
cstrahan has quit [Ping timeout: 240 seconds]
02:32
musl has joined #ruby-lang
02:32
jxpx777 has quit [Quit: Leaving...]
02:33
mdedetrich has joined #ruby-lang
02:38
musl has quit [Remote host closed the connection]
02:39
musl has joined #ruby-lang
02:39
machuga|away is now known as machuga
02:45
kurko_ has quit [Ping timeout: 264 seconds]
02:45
kurko_ has joined #ruby-lang
02:50
kurko_ has quit [Client Quit]
02:52
asahi has quit [Quit: Leaving.]
02:53
GaelanAintAround has quit [Quit: Bye!]
02:56
GaelanAintAround has joined #ruby-lang
02:56
zz_dlu has joined #ruby-lang
02:58
benanne has quit [Quit: kbai]
03:00
rwk1 has quit [Remote host closed the connection]
03:04
asahi has joined #ruby-lang
03:06
rwk1 has joined #ruby-lang
03:07
jsullivandigs has joined #ruby-lang
03:07
brianpWins has joined #ruby-lang
03:09
eax74 has joined #ruby-lang
03:09
sush24 has joined #ruby-lang
03:11
sush24 has quit [Client Quit]
03:14
gja has quit [Quit: This computer has gone to sleep]
03:17
dik_dak has joined #ruby-lang
03:20
macmartine has joined #ruby-lang
03:38
mootpointer has quit [Quit: ENOCAFFEINE.]
03:40
drakej has left #ruby-lang [#ruby-lang]
03:43
tharindu has joined #ruby-lang
03:43
nofxx has joined #ruby-lang
03:44
Glass_saga has joined #ruby-lang
03:47
machuga is now known as machuga|away
03:51
runeb has joined #ruby-lang
03:54
fedesilva has quit [Remote host closed the connection]
03:56
runeb has quit [Ping timeout: 264 seconds]
04:07
brianpWins has quit [Quit: brianpWins]
04:11
spike|spiegel has joined #ruby-lang
04:15
Senjai has joined #ruby-lang
04:15
<
Senjai >
Funny story, sending messages to the channel without being in it
04:15
<
Senjai >
<3 Quassel
04:22
jonahR has joined #ruby-lang
04:25
brianpWins has joined #ruby-lang
04:27
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
04:30
asahi has left #ruby-lang [#ruby-lang]
04:32
fedesilva has joined #ruby-lang
04:39
Asher has quit [Quit: Leaving.]
04:39
banisterfiend is now known as banister`tryslee
04:39
banister`tryslee is now known as banister`nosleep
04:41
jsullivandigs has quit [Remote host closed the connection]
04:41
jsullivandigs has joined #ruby-lang
04:46
jsullivandigs has quit [Ping timeout: 245 seconds]
04:51
eax74 has quit [Quit: leaving]
04:53
<
Senjai >
Are there ways a novice can contribute to Ruby?
04:53
<
Senjai >
I would really like to become involved.
04:54
<
jrobeson >
contribute how
04:55
<
jrobeson >
just depends on who your target audience is
04:55
<
jrobeson >
helping the users of ruby is always nice
04:55
<
jrobeson >
it's just such a broad question Senjai
04:56
<
Senjai >
contributing to the project..
04:56
<
jrobeson >
also most of the advice applies to almost any project
04:56
<
jrobeson >
that's still broad
04:56
<
jrobeson >
the project is huge
04:57
<
jrobeson >
doc people, core coding, tooling coding (build systems and other assistance) , bug triagers, testers,
04:57
<
jrobeson >
it's crazy huge
04:58
<
jrobeson >
do you plan on learning C and all the tooling around that also? make, autotools and whatever else
04:58
<
jrobeson >
and of course.. wrangling people to work together also :)
04:59
rue has quit [Remote host closed the connection]
04:59
<
jrobeson >
and i'm still being overbroad
04:59
<
jrobeson >
there's still many subcategories within that
05:00
<
Senjai >
jrobeson: Do you commit to Ruby?
05:01
rue has joined #ruby-lang
05:02
bizarrosandwich has quit [Read error: Connection reset by peer]
05:03
<
jrobeson >
because i don't have time to learn all those things i just talked about :)
05:03
tharindu has quit [Ping timeout: 260 seconds]
05:03
<
jrobeson >
but these are the same rules that apply to any software project
05:04
bizarrosandwich has joined #ruby-lang
05:04
<
jrobeson >
every project has tons of open bugs, open features, and general warts in all those areas
05:04
weems has joined #ruby-lang
05:04
weems has quit [Changing host]
05:04
weems has joined #ruby-lang
05:05
<
Senjai >
jrobeson: I know, but I'm here to ask people who do commit to the project how they got started. And how I can get started.
05:05
nisstyre has quit [Ping timeout: 260 seconds]
05:05
<
jrobeson >
it depends on what area you want to contirubte to
05:05
<
jrobeson >
they would tell you the same thing
05:05
tomzx_mac_ has quit [Read error: Operation timed out]
05:05
<
jrobeson >
like.. if you wanted to actuall code on ruby itself.. you'd have to know some C
05:06
<
jrobeson >
all the areas have a long list of prerequisites
05:06
<
jrobeson >
some which you may already fulfill, some not
05:06
<
Senjai >
I know that man. But everyone starts somewhere. I'd rather get their input from them
05:06
<
jrobeson >
they are going to tell you the same thing
05:06
<
jrobeson >
first by asking you what specifically you want to contribute to
05:07
<
Senjai >
jrobeson: Do you mind?
05:07
<
jrobeson >
hey.. you're the one who's gonna get told off if you don't listen
05:07
<
jrobeson >
look like a dope if you want
05:09
bondar has quit [Ping timeout: 246 seconds]
05:10
brianpWins has quit [Quit: brianpWins]
05:10
JohnBat26 has joined #ruby-lang
05:23
dhruvasagar has joined #ruby-lang
05:26
nisstyre has joined #ruby-lang
05:33
jonahR has quit [Quit: jonahR]
05:33
roadt_ has joined #ruby-lang
05:35
roadt_ has quit [Max SendQ exceeded]
05:35
roadt_ has joined #ruby-lang
05:36
roadt has quit [Ping timeout: 240 seconds]
05:39
macmartine has joined #ruby-lang
05:40
joshuawscott has quit [Quit: Leaving.]
05:40
Kabaka has quit [Ping timeout: 240 seconds]
05:43
sush24 has joined #ruby-lang
05:46
vlad_starkov has joined #ruby-lang
05:47
Kabaka has joined #ruby-lang
05:48
brianpWins has joined #ruby-lang
05:50
iliketur_ has joined #ruby-lang
05:50
vlad_starkov has quit [Ping timeout: 256 seconds]
05:51
workmad3 has joined #ruby-lang
05:59
workmad3 has quit [Ping timeout: 245 seconds]
06:03
dhruvasagar has quit [Ping timeout: 268 seconds]
06:06
tbuehlmann has joined #ruby-lang
06:09
postmodern has quit [Quit: Leaving]
06:10
sush24 has quit [Quit: This computer has gone to sleep]
06:13
Asher has joined #ruby-lang
06:25
macmartine has quit [Quit: Computer has gone to sleep.]
06:26
<
drbrain >
Senjai: don't listen to jrobeson
06:26
<
drbrain >
Senjai: I tell people to get started with projects they use and have minor annoyances or find bugs in
06:26
<
jrobeson >
drbrain, he's programmed before he knows how to do that
06:26
<
Senjai >
jrobeson: please stop
06:27
<
jrobeson >
Senjai, i wasn't even talking to you..
06:27
<
jrobeson >
just letting him know that we have spoken before and gone past that particular thing
06:27
<
jrobeson >
because you're a smart guy
06:27
<
drbrain >
jrobeson: I don't like your attitude
06:28
<
Senjai >
drbrain: That's what I was thinking. It's difficult though often to try and navigate the source code, I've been studying rails for.. weeks and I feel as if I've only scratched the surface
06:28
<
jrobeson >
drbrain, sorry you had to see that... we have spoken before in otoher rooms
06:28
<
jrobeson >
and often even nicely..
06:29
<
drbrain >
jrobeson: dismissive and insulting behavior is frowned upon in this channel
06:29
<
drbrain >
Senjai: rails projects use lots of other gems, too
06:29
<
drbrain >
Senjai: those may be more tractable
06:29
<
drbrain >
and there's no reason you can't contribute to ruby itself, there's plenty things to do besides write C
06:30
<
jrobeson >
as i said.. doc writing, bug triaging, testing,
06:30
<
drbrain >
much of the standard library is in ruby
06:30
<
jrobeson >
or doc raiging even
06:30
<
Senjai >
drbrain: I was wondering if I should start with docs, or find someone who would be willing to send some work my way to see if I would be able to solve what they would be working on otherwise
06:30
<
jrobeson >
there are open tickets for many things just like that
06:30
<
jrobeson >
even in rails
06:31
<
jrobeson >
just things that need clairifcation
06:31
<
jrobeson >
like.. a 1 line addition that would make something more understandable
06:31
<
jrobeson >
that are for any skill level
06:31
<
Senjai >
Like I would love for a pseudomentor just to help delegate something like, I was going to do this to this, but let's see if you can do it or figure it out.
06:31
<
jrobeson >
projects often have "easy pick" bugs just for that
06:31
<
Senjai >
It's difficult for me to identify design issues and other shortcomings that are obvious to others
06:32
<
Senjai >
jrobeson: you've made your point.
06:32
<
jrobeson >
rails is one example of a project that does that
06:32
<
jrobeson >
i'm not making a point.. i'm actualy giving you suggestions
06:32
<
jrobeson >
like actionable items
06:32
mdedetrich has quit [Quit: Computer has gone to sleep.]
06:33
<
Senjai >
drbrain: apologies
06:33
<
drbrain >
Senjai: I helped someone out with a couple of easier bugs in rubygems a bit a go
06:33
wh1t3l10n has joined #ruby-lang
06:33
<
jrobeson >
projects that try to welcome new contributors do something just like "easy pick"
06:33
<
drbrain >
Senjai: there's plenty of people who have easy bugs they can probably help you with
06:33
wh1t3l10n has quit [Read error: Connection reset by peer]
06:34
<
Senjai >
drbrain: That's why I'm here, I'm going to try and look for things to work on, but if anyone sees something that would be a little simple for them, it might be a great learning experience for me. So I just want to put it out there that if anyone doesn't want to do the grunt work, I might enjoy trying to solve a problem that matters.
06:35
wh1t3l10n has joined #ruby-lang
06:35
wh1t3l10n has quit [Read error: Connection reset by peer]
06:36
<
drbrain >
Senjai: unfortunately I don't have anything to point you at offhand
06:37
wh1t3l10n has joined #ruby-lang
06:37
<
Senjai >
drbrain: No I wasn't expecting as much, but I would love it if you could keep me in mind, or if I could come to you (and others) about some ideas if I see anything
06:38
<
drbrain >
Senjai: try asking steveklabnik (twitter) or _zzak (here, twitter)
06:38
<
drbrain >
steve contributes to lots of projects so may have some low hanging fruit
06:38
<
Senjai >
drbrain: I'm actually helping contribute to Steve's errata for one of his books, but besides that I haven't really talked with him
06:38
<
drbrain >
_zzak is the doc contributor for ruby
06:39
<
Senjai >
good to know :)
06:39
<
drbrain >
they're both nice people, feel free to drop my name if you contact them
06:39
<
Senjai >
May I ask what your name is? Or would they recognize drbrain
06:40
<
drbrain >
Eric Hodel, they'd recognize "drbrain"
06:40
<
drbrain >
wh1t3l10n: are you familiar with objects?
06:41
<
wh1t3l10n >
drbrain: it is similar to struct in C programming, am I right? :)
06:41
<
jrobeson >
hah.. i never actually used that tutorial
06:41
<
jrobeson >
wh1t3l10n, just if you want it to have an initial value
06:41
<
drbrain >
wh1t3l10n: yes, it's like a struct
06:41
<
drbrain >
wh1t3l10n: a struct with functions attached
06:42
<
drbrain >
wh1t3l10n: (but we call them methods)
06:42
<
jrobeson >
magically ruby methods.. everywhere
06:42
<
drbrain >
wh1t3l10n: the initialize method sets up the object
06:42
<
jrobeson >
wh1t3l10n, is this your first tutorial thingy you've tried?
06:42
<
drbrain >
and the @ variables are instance variables that are like the struct members
06:43
<
drbrain >
wh1t3l10n: make sense?
06:44
<
wh1t3l10n >
drbrain: that's cool. So, we use initialize for objects and the variables we create using @ can be accessed in all part of a class, right? wow! This is amazing <3 I'm so much interested in this language <3
06:44
<
drbrain >
can be accessed in all parts of an instance
06:44
<
drbrain >
a class is like a template
06:44
<
drbrain >
when you call new on a class you get in instance
06:44
<
drbrain >
the new method calls initialize for you
06:45
rippa has joined #ruby-lang
06:45
<
wh1t3l10n >
drbrain: now it does make sense :)
06:45
<
drbrain >
(having the terminology straight will help your future reading :)
06:46
<
wh1t3l10n >
drbarin: Thank you for the support, I really appreciate it! going to back to coding, see you around :)
06:46
<
jrobeson >
wh1t3l10n, yes ruby is pretty amazing.. probably the funnest language
06:46
wh1t3l10n has left #ruby-lang [#ruby-lang]
06:55
runeb has joined #ruby-lang
06:59
dhruvasagar has joined #ruby-lang
07:00
kurko_ has joined #ruby-lang
07:00
runeb has quit [Ping timeout: 240 seconds]
07:08
charliesome has joined #ruby-lang
07:10
bizarrosandwich has quit [Quit: Leaving]
07:10
dhruvasagar has quit [Read error: Connection reset by peer]
07:14
dhruvasagar has joined #ruby-lang
07:19
levifig has quit [Excess Flood]
07:24
hhatch has joined #ruby-lang
07:30
ledestin has quit [Quit: ledestin]
07:32
dik_dak has quit [Quit: Leaving]
07:36
ledestin has joined #ruby-lang
07:37
duper has joined #ruby-lang
07:38
<
duper >
what's the shortlang for extracting an Enumerable into a variable without the usual vertical bars? i.e. [1..3].each{|x| puts x} # isn't there a '.each{&:x' or something for short-hand syntactic sugar?
07:38
yfeldblum has quit [Ping timeout: 264 seconds]
07:38
<
xybre >
duper: collection.map(&:foo)
07:39
<
xybre >
Thats the syntax you're talking about, btu I'm not sure if it will actually do everything you desire.
07:41
ledestin has quit [Quit: ledestin]
07:42
levifig has joined #ruby-lang
07:48
rwk1 has quit [Remote host closed the connection]
07:49
kurko_ has quit [Ping timeout: 260 seconds]
07:50
kurko_ has joined #ruby-lang
07:53
brianpWins has quit [Quit: brianpWins]
07:53
duper has quit [Ping timeout: 264 seconds]
07:54
relix has joined #ruby-lang
07:59
skade has joined #ruby-lang
08:00
kurko_ has quit [Ping timeout: 264 seconds]
08:00
duper has joined #ruby-lang
08:01
kurko_ has joined #ruby-lang
08:06
vlad_starkov has joined #ruby-lang
08:06
skade has quit [Quit: Computer has gone to sleep.]
08:06
<
erikh >
it's very contextual
08:07
iliketur_ has quit [Quit: zzzzz…..]
08:07
<
erikh >
dominikh: I've made a thing, almost
08:08
<
erikh >
adding the poll bits now
08:09
<
erikh >
but it's a metrics collector
08:09
<
erikh >
there, now I know you've seen it
08:19
rwk1 has joined #ruby-lang
08:20
skade has joined #ruby-lang
08:21
kurko_ has quit [Quit: Computer has gone to sleep.]
08:28
skade has quit [Quit: Computer has gone to sleep.]
08:31
vlad_starkov has quit [Remote host closed the connection]
08:31
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
08:31
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
08:33
cub1c_ has quit [Ping timeout: 268 seconds]
08:34
antulik-afk has quit [Ping timeout: 245 seconds]
08:34
vlad_starkov has joined #ruby-lang
08:36
antulik-afk has joined #ruby-lang
08:39
cub1c_ has joined #ruby-lang
08:41
vlad_starkov has quit [Remote host closed the connection]
08:43
charliesome has joined #ruby-lang
08:44
sush24 has joined #ruby-lang
08:45
<
xybre >
Go is such a funny looking language.
08:46
Bosox20051 has joined #ruby-lang
08:49
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
08:50
rwk1 has quit [Remote host closed the connection]
08:52
kurko_ has joined #ruby-lang
08:54
jiuweigui has joined #ruby-lang
08:56
sush24_ has joined #ruby-lang
08:58
sush24 has quit [Ping timeout: 256 seconds]
09:00
sharma__ has joined #ruby-lang
09:02
apeiros has quit [Remote host closed the connection]
09:02
apeiros has joined #ruby-lang
09:02
sush24_ has quit [Ping timeout: 260 seconds]
09:03
sush24_ has joined #ruby-lang
09:05
sharma__ has quit [Ping timeout: 264 seconds]
09:06
kurko_ has quit [Quit: Computer has gone to sleep.]
09:11
adambeynon has joined #ruby-lang
09:15
charliesome has joined #ruby-lang
09:16
rwk1 has joined #ruby-lang
09:18
sharma__ has joined #ruby-lang
09:18
sush24_ has quit [Ping timeout: 240 seconds]
09:18
MaddinXx_ has joined #ruby-lang
09:20
faces has quit [Ping timeout: 245 seconds]
09:21
wallerdev has quit [Quit: wallerdev]
09:22
face has joined #ruby-lang
09:23
mbj has joined #ruby-lang
09:26
skade has joined #ruby-lang
09:26
vlad_starkov has joined #ruby-lang
09:27
bungoman has quit [Ping timeout: 260 seconds]
09:28
Senjai has quit [Ping timeout: 264 seconds]
09:33
vlad_starkov has quit [Remote host closed the connection]
09:36
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
09:40
benanne has joined #ruby-lang
09:46
skade has quit [Quit: Computer has gone to sleep.]
09:47
mbj has quit [Quit: leaving]
09:51
arBmind has joined #ruby-lang
09:52
sush24_ has joined #ruby-lang
09:53
sharma__ has quit [Ping timeout: 268 seconds]
09:57
tharindu has joined #ruby-lang
10:00
runeb has joined #ruby-lang
10:05
runeb has quit [Ping timeout: 245 seconds]
10:11
sush24_ has quit [Ping timeout: 245 seconds]
10:12
sush24_ has joined #ruby-lang
10:13
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
10:13
charliesome has joined #ruby-lang
10:19
duper has quit [Ping timeout: 245 seconds]
10:29
runeb has joined #ruby-lang
10:30
jeffreyio2 has joined #ruby-lang
10:31
Guest85414__ has quit [Ping timeout: 260 seconds]
10:33
nneko001__ has joined #ruby-lang
10:40
<
Elico >
drbrain: I have tried it.. and it seems like tokyotryrant is the better option
10:42
jeffreyio2_ has joined #ruby-lang
10:42
sush24_ has quit [Ping timeout: 256 seconds]
10:43
vlad_starkov has joined #ruby-lang
10:44
jeffreyio2 has quit [Ping timeout: 260 seconds]
10:45
relix has joined #ruby-lang
10:45
jeffreyio2 has joined #ruby-lang
10:46
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
10:46
yxhuvud has quit [Ping timeout: 245 seconds]
10:47
yxhuvud has joined #ruby-lang
10:47
sush24_ has joined #ruby-lang
10:48
vlad_starkov has quit [Ping timeout: 245 seconds]
10:49
Gillo has joined #ruby-lang
10:50
jeffreyio2_ has quit [Ping timeout: 260 seconds]
10:50
mdedetrich has joined #ruby-lang
10:58
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
11:02
JohnBat26 has joined #ruby-lang
11:05
VTLob has joined #ruby-lang
11:12
relix has joined #ruby-lang
11:16
jeffreyio2 has quit [Read error: Connection reset by peer]
11:17
roadt_ has quit [Ping timeout: 264 seconds]
11:18
jeffreyio2 has joined #ruby-lang
11:19
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
11:22
arBmind has quit [Quit: Leaving.]
11:24
hakunin has quit [Remote host closed the connection]
11:28
mbj has joined #ruby-lang
11:31
relix has joined #ruby-lang
11:31
fedesilva has quit [Read error: Connection reset by peer]
11:32
sush24_ has quit [Ping timeout: 256 seconds]
11:32
sush24_ has joined #ruby-lang
11:34
fedesilva has joined #ruby-lang
11:35
runeb has quit [Remote host closed the connection]
11:39
jxie has quit [Quit: leaving]
11:41
sush24_ has quit [Ping timeout: 256 seconds]
11:43
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
11:49
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
11:51
charliesome has joined #ruby-lang
12:04
pskosinski has joined #ruby-lang
12:07
sr78ger has joined #ruby-lang
12:08
jiuweigui has quit [Quit: ZZZZ]
12:15
JohnBat26 has quit [Read error: Operation timed out]
12:17
JohnBat26 has joined #ruby-lang
12:26
runeb has joined #ruby-lang
12:26
roadt_ has joined #ruby-lang
12:30
runeb has quit [Ping timeout: 260 seconds]
12:32
Guest85414__ has joined #ruby-lang
12:46
sush24 has joined #ruby-lang
12:48
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
13:04
runeb has joined #ruby-lang
13:06
machuga|away is now known as machuga
13:07
znz_jp has quit [Ping timeout: 245 seconds]
13:20
znz_jp has joined #ruby-lang
13:21
vlad_starkov has joined #ruby-lang
13:21
MaddinXx_ has quit [Remote host closed the connection]
13:23
jxpx777 has joined #ruby-lang
13:23
MaddinXx has joined #ruby-lang
13:23
jxpx777_ has joined #ruby-lang
13:24
sr78ger has quit [Ping timeout: 264 seconds]
13:25
Gillo has quit [Remote host closed the connection]
13:25
charliesome has joined #ruby-lang
13:26
Kabaka has quit [Ping timeout: 240 seconds]
13:27
go|dfish has quit [Ping timeout: 264 seconds]
13:27
dostoyevsky has joined #ruby-lang
13:28
<
dostoyevsky >
Any idea how I am supposed to pass on paths for installed library, so that they passed on via rake?
13:28
jxpx777 has quit [Ping timeout: 260 seconds]
13:28
PaulePanter has quit [Ping timeout: 264 seconds]
13:28
go|dfish has joined #ruby-lang
13:28
PaulePanter has joined #ruby-lang
13:29
<
dostoyevsky >
I see that rake invokes "ruby extconf.rb" and can't find a library because it doesn't know the right path
13:30
<
yorickpeterse >
whitequark: ping
13:30
<
dostoyevsky >
Of course I could just edit the extconf.rb but that seems very wrong
13:32
<
yorickpeterse >
eerrr, you mean paths of libraries to link to?
13:33
<
dostoyevsky >
%rake --with-opencv-dir=/opt/local/ -> invalid option: --with-opencv-dir=/opt/local/
13:33
Kabaka has joined #ruby-lang
13:33
<
yorickpeterse >
Tried `rake -- --with-opencv....`?
13:33
<
dostoyevsky >
How can I influence mkmf's dir_config() when calling rake?
13:34
<
yorickpeterse >
otherwise you can try and set CFLAGS manually before calling Rake
13:34
<
yorickpeterse >
e.g. CFLAGS=`pkg-config opencv --clfags` rake
13:34
<
yorickpeterse >
matti: STOP LOOKING AT ME LIKE THAT, IT'S CREEPY
13:35
* matti
hugs yorickpeterse
13:35
vlad_starkov has quit [Read error: Connection reset by peer]
13:35
<
yorickpeterse >
oh I don't mind hugs
13:35
<
matti >
yorickpeterse: Never had a grouppie before? ;p
13:36
Kabaka has quit [Excess Flood]
13:36
<
yorickpeterse >
matti: No I'm not exactly a rockstar
13:36
vlad_starkov has joined #ruby-lang
13:36
headius has joined #ruby-lang
13:36
<
dostoyevsky >
yorickpeterse: Is that better than ruby-opencv?
13:37
<
matti >
yorickpeterse: I know. But you are a Ruby Ninja.
13:38
<
matti >
yorickpeterse: Like apeiros is the God Father of Ruby. Like in Mafia.
13:38
* matti
can hear theme song from Godfather.
13:39
<
dostoyevsky >
Well I just edited extconf.rb... was very easy
13:39
<
yorickpeterse >
dostoyevsky: from what I know, yes, but more basic for now
13:39
<
yorickpeterse >
it's also written by a pretty cool dude
13:39
<
dostoyevsky >
Stil, seems inherently broken
13:39
<
yorickpeterse >
matti: I kill Ruby people without them knowing it?
13:40
<
dostoyevsky >
rake & mkmf, that is
13:40
<
yorickpeterse >
dostoyevsky: also, if ruby-opencv uses pkg-config it should Just Work (tm)
13:40
<
yorickpeterse >
but I guess it doesn't
13:40
<
matti >
yorickpeterse: Maybe you do.
13:40
<
matti >
yorickpeterse: People have werid hobbies.
13:44
Kabaka has joined #ruby-lang
13:48
richardburton has joined #ruby-lang
13:52
richardburton has quit [Client Quit]
13:55
Gillo has joined #ruby-lang
13:56
cstrahan has joined #ruby-lang
13:58
hhatch has quit [Ping timeout: 264 seconds]
13:59
<
dostoyevsky >
I want to prototype some graph-based algorithms and use rgl for that. Is there any other library I should consider?
14:00
ohsix has quit [Ping timeout: 276 seconds]
14:04
Gillo has quit [Ping timeout: 245 seconds]
14:12
yfeldblum has joined #ruby-lang
14:16
richardburton has joined #ruby-lang
14:17
machuga is now known as machuga|away
14:21
cstrahan has quit [Ping timeout: 264 seconds]
14:30
arBmind has joined #ruby-lang
14:30
runeb has quit [Remote host closed the connection]
14:31
relix has joined #ruby-lang
14:32
crankharder has quit [Remote host closed the connection]
14:34
<
yorickpeterse >
kinda funny how the exec time goes up and down in the same pattern when using caching
14:35
<
yorickpeterse >
still, 430ms is kinda slow
14:35
<
yorickpeterse >
whitequark: y u no make parser webscale
14:39
<
darix >
yorickpeterse: maybe adding some mongodb or nodejs will help
14:39
mdedetrich has quit [Quit: Computer has gone to sleep.]
14:43
<
yorickpeterse >
good idea
14:43
<
yorickpeterse >
don't forget CouchDB
14:43
<
yorickpeterse >
and Firebase
14:46
banister`nosleep has quit [Quit: Computer has gone to sleep.]
14:52
Kabaka has quit [Ping timeout: 240 seconds]
14:52
mbj has quit [Quit: leaving]
14:55
Kabaka has joined #ruby-lang
15:01
jxie has joined #ruby-lang
15:01
runeb has joined #ruby-lang
15:01
GeissT has quit [Quit: MillBroChat AdIRC User]
15:02
skade has joined #ruby-lang
15:05
cads has quit [Read error: Operation timed out]
15:05
runeb has quit [Ping timeout: 240 seconds]
15:05
runeb has joined #ruby-lang
15:06
tomzx_mac has joined #ruby-lang
15:07
runeb has quit [Remote host closed the connection]
15:10
runeb has joined #ruby-lang
15:11
gja has joined #ruby-lang
15:12
mbj has joined #ruby-lang
15:13
rwilcox has joined #ruby-lang
15:14
vlad_starkov has quit [Read error: Connection reset by peer]
15:14
JohnBat26 has quit [Remote host closed the connection]
15:15
vlad_starkov has joined #ruby-lang
15:16
Rylee has quit [Remote host closed the connection]
15:17
rwilcox has quit [Client Quit]
15:20
joshuawscott has joined #ruby-lang
15:22
sush24 has quit [Ping timeout: 254 seconds]
15:24
gja has quit [Quit: This computer has gone to sleep]
15:25
mbj has quit [Quit: leaving]
15:26
sush24 has joined #ruby-lang
15:27
rippa has joined #ruby-lang
15:29
cstrahan has joined #ruby-lang
15:30
Gillo has joined #ruby-lang
15:30
JohnBat26 has joined #ruby-lang
15:35
asahi has joined #ruby-lang
15:35
Gillo has quit [Ping timeout: 268 seconds]
15:37
<
asahi >
hello, when I do gem list Indirizzo, the gem is listed, but if I do gem which Indirizzo, it's unable to find the gem. any ideas?
15:38
vlad_starkov has quit [Remote host closed the connection]
15:38
runeb has quit [Remote host closed the connection]
15:39
<
whitequark >
yorickpeterse: y ruby is not fast in single character manipulation
15:40
relix has joined #ruby-lang
15:40
Nss has joined #ruby-lang
15:47
headius has quit [Quit: headius]
15:48
headius has joined #ruby-lang
15:49
snk has quit [Ping timeout: 264 seconds]
15:49
banisterfiend has joined #ruby-lang
15:50
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
15:53
richardburton has quit [Quit: Leaving.]
15:54
richardburton has joined #ruby-lang
15:57
charliesome has joined #ruby-lang
15:58
sush24 has quit [Ping timeout: 240 seconds]
15:58
wallerdev has joined #ruby-lang
15:59
Rylee has joined #ruby-lang
15:59
Rylee has quit [Excess Flood]
15:59
Rylee has joined #ruby-lang
16:02
jsullivandigs has joined #ruby-lang
16:05
lfox has joined #ruby-lang
16:06
wallerdev has quit [Quit: wallerdev]
16:07
jxpx777_ has quit [Quit: Leaving...]
16:08
havenwood has joined #ruby-lang
16:10
richardburton has quit [Quit: Leaving.]
16:11
rsl has quit [Ping timeout: 245 seconds]
16:11
rsl has joined #ruby-lang
16:12
rwk1 has quit [Remote host closed the connection]
16:14
tkuchiki has quit [Remote host closed the connection]
16:17
retro|cz has joined #ruby-lang
16:25
MaddinXx has quit [Remote host closed the connection]
16:27
Xeitgeist has joined #ruby-lang
16:31
Gillo has joined #ruby-lang
16:31
<
Xeitgeist >
anyone alive here?
16:33
Gillo_ has joined #ruby-lang
16:33
Gillo has quit [Read error: No route to host]
16:33
Xeitgeist has left #ruby-lang [#ruby-lang]
16:35
<
whitequark >
what's up with these impatient people
16:39
runeb has joined #ruby-lang
16:39
MaddinXx has joined #ruby-lang
16:43
runeb has quit [Ping timeout: 256 seconds]
16:44
MaddinXx has quit [Remote host closed the connection]
16:45
Nss has quit [Quit: Sto andando via]
16:45
dhruvasagar has quit [Read error: Connection reset by peer]
16:46
vlad_starkov has joined #ruby-lang
16:49
wallerdev has joined #ruby-lang
16:58
headius has quit [Ping timeout: 264 seconds]
17:00
JohnBat26 has quit [Remote host closed the connection]
17:04
hashkey has quit [Quit: Leaving]
17:07
runeb has joined #ruby-lang
17:08
hashkey has joined #ruby-lang
17:11
apeiros has quit [Remote host closed the connection]
17:13
JohnBat26 has joined #ruby-lang
17:16
LauraE has joined #ruby-lang
17:20
apeiros has joined #ruby-lang
17:23
rwk1 has joined #ruby-lang
17:23
Gillo_ has quit [Remote host closed the connection]
17:23
Kabaka has quit [Quit: s/Kabaka//]
17:24
x0f_ has joined #ruby-lang
17:25
justforfun has joined #ruby-lang
17:26
runeb has quit [Remote host closed the connection]
17:27
justforfun has left #ruby-lang [#ruby-lang]
17:28
rwk1 has quit [Ping timeout: 264 seconds]
17:28
x0F has quit [Ping timeout: 260 seconds]
17:28
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
17:33
asahi has quit [Quit: Leaving.]
17:34
fedesilva has quit [Remote host closed the connection]
17:38
vlad_starkov has quit [Read error: Connection reset by peer]
17:39
vlad_starkov has joined #ruby-lang
17:40
solars has quit [Ping timeout: 264 seconds]
17:42
dorei has joined #ruby-lang
17:45
kurko_ has joined #ruby-lang
17:48
gix has quit [Quit: Client exiting]
17:50
jsullivandigs has quit [Remote host closed the connection]
17:50
jsullivandigs has joined #ruby-lang
17:53
gix has joined #ruby-lang
17:53
mbj has joined #ruby-lang
17:55
mbj_ has joined #ruby-lang
17:55
jsullivandigs has quit [Ping timeout: 260 seconds]
17:56
mdst_ has joined #ruby-lang
17:57
jroesch has joined #ruby-lang
17:58
hellome has joined #ruby-lang
17:58
mdst_ has quit [Client Quit]
17:59
mbj_ has quit [Client Quit]
18:01
vlad_starkov has quit [Read error: Connection reset by peer]
18:02
vlad_starkov has joined #ruby-lang
18:02
runeb has joined #ruby-lang
18:03
asahi has joined #ruby-lang
18:09
nneko001__ has quit [Quit: Konversation terminated!]
18:11
asahi has quit [Ping timeout: 264 seconds]
18:11
sush24 has joined #ruby-lang
18:11
Guest91169 has joined #ruby-lang
18:13
arBmind has quit [Quit: Leaving.]
18:14
nneko001__ has joined #ruby-lang
18:14
tbuehlmann has quit [Remote host closed the connection]
18:14
nneko001__ has quit [Client Quit]
18:18
Bosox20051 has quit [Quit: Leaving]
18:18
lsegal has joined #ruby-lang
18:19
hhatch has joined #ruby-lang
18:20
joshuawscott has quit [Quit: Leaving.]
18:22
havenwood has quit [Remote host closed the connection]
18:23
weems has joined #ruby-lang
18:23
weems has quit [Changing host]
18:23
weems has joined #ruby-lang
18:37
brianpWins has joined #ruby-lang
18:37
bondar has joined #ruby-lang
18:38
jiuweigui has joined #ruby-lang
18:38
jiuweigui has joined #ruby-lang
18:38
jsullivandigs has joined #ruby-lang
18:39
vlad_starkov has quit [Read error: Connection reset by peer]
18:40
vlad_starkov has joined #ruby-lang
18:51
vlad_starkov has quit [Remote host closed the connection]
18:54
machuga|away is now known as machuga
18:54
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
18:55
pskosinski has quit [Quit: Til rivido Idisti!]
19:02
fedesilva has joined #ruby-lang
19:07
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
19:07
<
yorickpeterse >
whitequark: true, but I'd say that parsing a medium sized file shouldn't take 130ms
19:08
asahi has joined #ruby-lang
19:09
workmad3 has joined #ruby-lang
19:10
<
whitequark >
define "medium sized"
19:11
<
whitequark >
also parser has +/- same performance as ruby_parser
19:11
<
whitequark >
I've seen it differ up to a factor of four (approximately), on files with lots of literals
19:12
<
whitequark >
that's 27kb of code for you
19:12
asahi has quit [Ping timeout: 240 seconds]
19:13
<
whitequark >
oh, interesting
19:13
<
whitequark >
P: Parsed 1 files (27617 characters) in 0.14 seconds (197.264 kchars/s).
19:13
<
whitequark >
RP: 0.22s: 5154.54 l/s: 124.01 Kb/s: 26 Kb: 1121 loc:TOTAL
19:14
<
whitequark >
so I'm actually much faster than RP here.
19:14
<
whitequark >
zenspider: ^ even with my incredibly naive literal handling (char by char), ragel is faster than your regexp stuff.
19:14
<
whitequark >
which honestly surprises me to no extent
19:15
vlad_starkov has joined #ruby-lang
19:15
<
whitequark >
yorickpeterse: so stop whining, you aren't going to get much faster. if you want to know how much faster could you ever get, replace all string literals with comments of the same length at the end of line.
19:16
<
whitequark >
that's the extent of optimizations I believe are left to do in parser
19:18
mentero has joined #ruby-lang
19:20
vlad_starkov has quit [Ping timeout: 264 seconds]
19:21
richardburton has joined #ruby-lang
19:24
<
yorickpeterse >
replace string literals with comments?
19:24
<
yorickpeterse >
wat
19:25
<
yorickpeterse >
well the obvious solution here would be to write Parser::Lexer in C :>
19:26
<
whitequark >
yorickpeterse: string literals are currently lexed with an incredibly naive algorithm
19:27
<
whitequark >
which performs a slurry of method calls for every single character of literals
19:27
<
yorickpeterse >
what's the reason for that?
19:27
<
whitequark >
the fact that you can use any character as literal terminator
19:27
relix has joined #ruby-lang
19:28
<
whitequark >
also, heredocs
19:28
<
yorickpeterse >
couldn't you potentially optimize that based on the opening literal?
19:28
<
yorickpeterse >
hm, you'd still have to iterate every character for that
19:28
<
whitequark >
well, I could special-case " ' and perhaps braces, making these much faster
19:28
<
yorickpeterse >
So if I'm understanding it right shit like %w{} and <<-DERP\nDERP is the primary reason for that?
19:29
<
yorickpeterse >
>> %w{hello}}
19:29
<
eval-in >
yorickpeterse => /tmp/execpad-f3f3747858d9/source-f3f3747858d9:2: syntax error, unexpected tSTRING_DEND, expecting keyword_end (
https://eval.in/47415)
19:29
<
yorickpeterse >
hmm
19:29
<
yorickpeterse >
also lol that error
19:29
<
yorickpeterse >
I had to explain a missing `end` error to a total beginner yesterday
19:29
<
yorickpeterse >
>> class FOo
19:29
<
eval-in >
yorickpeterse => /tmp/execpad-15f1878ec9dd/source-15f1878ec9dd:7: syntax error, unexpected end-of-input, expecting keyword_end (
https://eval.in/47416)
19:30
<
yorickpeterse >
errr that's not the one
19:30
<
yorickpeterse >
either way, it's some super obscure error
19:30
<
whitequark >
that's LR for you
19:31
<
yorickpeterse >
Not exactly, you can make them less of a PITA by making them read like actual English
19:37
shinnya has quit [Ping timeout: 245 seconds]
19:41
<
yorickpeterse >
so where exactly does this magic happen regarding literals, or is it all over the place?
19:44
<
whitequark >
lexer/literal.rl
19:44
<
whitequark >
also lexer.rl:725-1011
19:46
<
yorickpeterse >
yeah the file I knew
19:46
<
yorickpeterse >
lets see
19:46
Kabaka has joined #ruby-lang
19:50
benanne has quit [Quit: kbai]
19:51
arBmind has joined #ruby-lang
19:51
vlad_starkov has joined #ruby-lang
19:51
<
yorickpeterse >
hm, first we need a good benchmark
19:51
workmad3 has quit [Ping timeout: 264 seconds]
19:51
<
yorickpeterse >
ah fuck, I'm violating Slop's license
19:52
<
yorickpeterse >
(totally related)
19:54
jsullivandigs has quit [Read error: Connection reset by peer]
19:54
jsullivandigs has joined #ruby-lang
19:56
vlad_starkov has quit [Ping timeout: 264 seconds]
19:58
sush24 has quit [Ping timeout: 264 seconds]
19:58
tharindu has quit [Ping timeout: 264 seconds]
19:59
richardburton has quit [Quit: Leaving.]
20:00
mentero has quit [Ping timeout: 269 seconds]
20:02
fedesilva has quit [Remote host closed the connection]
20:03
sush24 has joined #ruby-lang
20:06
brianpWins has quit [Quit: brianpWins]
20:08
asahi has joined #ruby-lang
20:10
valeri_uF0 has joined #ruby-lang
20:11
sush24_ has joined #ruby-lang
20:12
apx_ has joined #ruby-lang
20:12
matti_ has joined #ruby-lang
20:12
imajes_ has joined #ruby-lang
20:13
jayne has quit [Read error: Connection reset by peer]
20:13
apx has quit [Ping timeout: 245 seconds]
20:13
valeri_ufo has quit [Read error: Connection reset by peer]
20:13
imajes has quit [Ping timeout: 245 seconds]
20:13
imajes_ is now known as imajes
20:13
matti has quit [Remote host closed the connection]
20:13
sush24 has quit [Ping timeout: 268 seconds]
20:13
kurko_ has quit [Ping timeout: 268 seconds]
20:13
machuga is now known as machuga|away
20:13
matti_ is now known as matti
20:14
kurko__ has joined #ruby-lang
20:14
asahi has quit [Ping timeout: 256 seconds]
20:16
sirupsen has joined #ruby-lang
20:16
sush24_ has quit [Ping timeout: 264 seconds]
20:17
jonahR has joined #ruby-lang
20:18
kurko__ has quit [Ping timeout: 240 seconds]
20:23
cstrahan has quit [Ping timeout: 264 seconds]
20:23
Bosox20051 has joined #ruby-lang
20:27
jxpx777 has joined #ruby-lang
20:28
jsullivandigs has quit [Ping timeout: 256 seconds]
20:29
jsullivandigs has joined #ruby-lang
20:35
cstrahan has joined #ruby-lang
20:35
Bosox20051 has quit [Remote host closed the connection]
20:36
Andrevan has joined #ruby-lang
20:37
mclee2 has quit [Quit: mclee2]
20:37
nisstyre has quit [Ping timeout: 264 seconds]
20:38
Senjai has joined #ruby-lang
20:44
banisterfiend has quit [Quit: Computer has gone to sleep.]
20:45
Asher has quit [Quit: Leaving.]
20:45
banisterfiend has joined #ruby-lang
20:45
Asher has joined #ruby-lang
20:49
jxpx777 has quit [Quit: Leaving...]
20:50
nisstyre has joined #ruby-lang
20:51
vlad_starkov has joined #ruby-lang
20:51
sirupsen has quit [Quit: sirupsen]
20:52
fedesilva has joined #ruby-lang
20:54
benanne has joined #ruby-lang
21:01
banisterfiend is now known as banister`sleep
21:02
zhufenggi has joined #ruby-lang
21:02
elia has joined #ruby-lang
21:04
bizarrosandwich has joined #ruby-lang
21:06
toretore has quit [Quit: Leaving]
21:11
asahi has joined #ruby-lang
21:13
Bosox20051 has joined #ruby-lang
21:13
iliketur_ has joined #ruby-lang
21:13
cstrahan has quit [Ping timeout: 264 seconds]
21:13
kofight has joined #ruby-lang
21:14
vxxr9 has joined #ruby-lang
21:15
lightcap has joined #ruby-lang
21:16
Bosox20051 has quit [Max SendQ exceeded]
21:16
Bosox20051 has joined #ruby-lang
21:16
asahi has quit [Ping timeout: 264 seconds]
21:19
elia has quit [Quit: Computer has gone to sleep.]
21:19
tylergillies_ has left #ruby-lang [#ruby-lang]
21:20
jxpx777 has joined #ruby-lang
21:22
runeb has quit [Remote host closed the connection]
21:23
ledestin has joined #ruby-lang
21:23
yfeldblum has quit [Ping timeout: 260 seconds]
21:24
znz_jp has quit [Ping timeout: 264 seconds]
21:25
ledestin has quit [Client Quit]
21:27
lfox has quit [Quit: ZZZzzz…]
21:28
elia has joined #ruby-lang
21:31
cstrahan has joined #ruby-lang
21:32
t0h has quit [Ping timeout: 268 seconds]
21:34
t0h has joined #ruby-lang
21:34
arBmind has quit [Quit: Leaving.]
21:35
Guest91169 has quit [Ping timeout: 268 seconds]
21:35
lightcap has quit [Quit: Computer has gone to sleep.]
21:37
joshuawscott has joined #ruby-lang
21:38
iliketur_ has quit [Quit: zzzzz…..]
21:39
stevechiagozie has joined #ruby-lang
21:40
lfox has joined #ruby-lang
21:41
Forgetful_Lion has quit [Remote host closed the connection]
21:42
zhufenggi has quit [Quit: Page closed]
21:45
nathanstitt has joined #ruby-lang
21:46
MaddinXx has joined #ruby-lang
21:49
nathanstitt has quit [Client Quit]
21:53
nathanstitt has joined #ruby-lang
21:53
ledestin has joined #ruby-lang
21:53
yfeldblum has joined #ruby-lang
21:54
ledestin has quit [Client Quit]
21:58
vlad_starkov has quit [Remote host closed the connection]
21:59
elia has quit [Quit: Computer has gone to sleep.]
22:00
weeb1e_ has joined #ruby-lang
22:02
workmad3 has joined #ruby-lang
22:02
kurko__ has joined #ruby-lang
22:02
hachiya_ has joined #ruby-lang
22:03
Muz_ has joined #ruby-lang
22:05
elia has joined #ruby-lang
22:05
jiuweigui has quit [Quit: Gone...]
22:05
yeltzooo6 has joined #ruby-lang
22:07
wnd has quit [*.net *.split]
22:07
waxjar has quit [*.net *.split]
22:07
_dumfries has quit [*.net *.split]
22:07
weeb1e has quit [*.net *.split]
22:07
Muz has quit [*.net *.split]
22:07
hachiya has quit [*.net *.split]
22:07
yeltzooo has quit [*.net *.split]
22:07
chendo has quit [*.net *.split]
22:07
jsaak has quit [*.net *.split]
22:07
Voker57 has quit [*.net *.split]
22:07
robbyoconnor has quit [*.net *.split]
22:07
thang_ has quit [*.net *.split]
22:07
x0nic has quit [*.net *.split]
22:07
vmoravec has quit [*.net *.split]
22:07
ericwood has quit [*.net *.split]
22:07
Nilium has quit [*.net *.split]
22:07
ruskie has quit [*.net *.split]
22:07
machuga|away has quit [*.net *.split]
22:07
onewheelskyward has quit [*.net *.split]
22:07
serhart has quit [*.net *.split]
22:07
ngr has quit [*.net *.split]
22:07
tommylommykins has quit [*.net *.split]
22:07
zeusmns has quit [*.net *.split]
22:07
ironcamel has quit [*.net *.split]
22:07
ozzloy has quit [*.net *.split]
22:07
Andrevan has quit [*.net *.split]
22:07
kofight has quit [*.net *.split]
22:07
dorei has quit [*.net *.split]
22:07
go|dfish has quit [*.net *.split]
22:07
spike|spiegel has quit [*.net *.split]
22:07
nazty has quit [*.net *.split]
22:07
io_syl has quit [*.net *.split]
22:07
Domon_ has quit [*.net *.split]
22:07
nirix has quit [*.net *.split]
22:07
naquad has quit [*.net *.split]
22:07
ljarvis has quit [*.net *.split]
22:07
neurodamage has quit [*.net *.split]
22:07
PacketMonkey has quit [*.net *.split]
22:07
erikh has quit [*.net *.split]
22:07
threedaymonk has quit [*.net *.split]
22:07
joschi has quit [*.net *.split]
22:07
davidbalber|away has quit [*.net *.split]
22:07
lfox has quit [*.net *.split]
22:07
jonahR has quit [*.net *.split]
22:07
jsullivandigs has quit [*.net *.split]
22:07
fedesilva has quit [*.net *.split]
22:07
relix has quit [*.net *.split]
22:07
bondar has quit [*.net *.split]
22:07
lsegal has quit [*.net *.split]
22:07
rsl has quit [*.net *.split]
22:07
skade has quit [*.net *.split]
22:07
tomzx_mac has quit [*.net *.split]
22:07
cub1c_ has quit [*.net *.split]
22:07
musl has quit [*.net *.split]
22:07
scottschecter has quit [*.net *.split]
22:07
wudofyr has quit [*.net *.split]
22:07
FlyingLeap has quit [*.net *.split]
22:07
jtoy has quit [*.net *.split]
22:07
jacknagel has quit [*.net *.split]
22:07
soahccc has quit [*.net *.split]
22:07
lele|w has quit [*.net *.split]
22:07
ammar has quit [*.net *.split]
22:07
dbussink has quit [*.net *.split]
22:07
shaman42 has quit [*.net *.split]
22:07
duckinator has quit [*.net *.split]
22:07
DarkBushido has quit [*.net *.split]
22:07
sstrickl has quit [*.net *.split]
22:07
brixen has quit [*.net *.split]
22:07
conceal_rs_____0 has quit [*.net *.split]
22:07
closer has quit [*.net *.split]
22:09
znz_jp has joined #ruby-lang
22:12
asahi has joined #ruby-lang
22:12
chendo has joined #ruby-lang
22:12
closer has joined #ruby-lang
22:13
mdedetrich has joined #ruby-lang
22:13
elia has quit [Quit: Computer has gone to sleep.]
22:13
Nilium has joined #ruby-lang
22:16
tommylommykins has joined #ruby-lang
22:16
asahi has quit [Ping timeout: 240 seconds]
22:18
lightcap has joined #ruby-lang
22:18
Voker57 has joined #ruby-lang
22:18
ruskie has joined #ruby-lang
22:18
jsaak has joined #ruby-lang
22:18
robbyoconnor has joined #ruby-lang
22:18
vmoravec has joined #ruby-lang
22:18
ironcamel has joined #ruby-lang
22:18
machuga|away has joined #ruby-lang
22:18
ericwood has joined #ruby-lang
22:18
zeusmns has joined #ruby-lang
22:18
serhart has joined #ruby-lang
22:18
thang_ has joined #ruby-lang
22:18
ngr has joined #ruby-lang
22:18
onewheelskyward has joined #ruby-lang
22:18
ozzloy has joined #ruby-lang
22:18
x0nic has joined #ruby-lang
22:18
duckinator has joined #ruby-lang
22:18
conceal_rs_____0 has joined #ruby-lang
22:18
sstrickl has joined #ruby-lang
22:18
brixen has joined #ruby-lang
22:18
DarkBushido has joined #ruby-lang
22:18
kstuart has quit [Remote host closed the connection]
22:18
Elico has left #ruby-lang [#ruby-lang]
22:18
aef has quit [Excess Flood]
22:18
jxpx777 has quit [Quit: Leaving...]
22:18
kstuart has joined #ruby-lang
22:19
cads has joined #ruby-lang
22:19
lsegal has joined #ruby-lang
22:19
jsullivandigs has joined #ruby-lang
22:19
scottschecter has joined #ruby-lang
22:19
rsl has joined #ruby-lang
22:19
jtoy has joined #ruby-lang
22:19
wnd_ has joined #ruby-lang
22:19
relix has joined #ruby-lang
22:19
tomzx_mac has joined #ruby-lang
22:19
shaman42 has joined #ruby-lang
22:19
cub1c_ has joined #ruby-lang
22:19
dbussink has joined #ruby-lang
22:19
FlyingLeap has joined #ruby-lang
22:19
jonahR has joined #ruby-lang
22:19
waxjar_ has joined #ruby-lang
22:19
musl has joined #ruby-lang
22:19
jacknagel has joined #ruby-lang
22:19
soahccc has joined #ruby-lang
22:19
lele|w has joined #ruby-lang
22:19
fedesilva has joined #ruby-lang
22:19
lfox has joined #ruby-lang
22:19
skade has joined #ruby-lang
22:19
ammar has joined #ruby-lang
22:19
wudofyr has joined #ruby-lang
22:19
go|dfish has joined #ruby-lang
22:19
ljarvis has joined #ruby-lang
22:19
Domon_ has joined #ruby-lang
22:19
nirix has joined #ruby-lang
22:19
Andrevan has joined #ruby-lang
22:19
naquad has joined #ruby-lang
22:19
neurodamage has joined #ruby-lang
22:19
davidbalber|away has joined #ruby-lang
22:19
nazty has joined #ruby-lang
22:19
kofight has joined #ruby-lang
22:19
erikh has joined #ruby-lang
22:19
joschi has joined #ruby-lang
22:19
threedaymonk has joined #ruby-lang
22:19
io_syl has joined #ruby-lang
22:19
spike|spiegel has joined #ruby-lang
22:19
PacketMonkey has joined #ruby-lang
22:19
dorei has joined #ruby-lang
22:19
kstuart has quit [Remote host closed the connection]
22:19
go|dfish has quit [Max SendQ exceeded]
22:19
cads has quit [Max SendQ exceeded]
22:20
go|dfish has joined #ruby-lang
22:20
cads has joined #ruby-lang
22:20
aef has joined #ruby-lang
22:20
bfleischer has quit [Ping timeout: 264 seconds]
22:21
jayne has joined #ruby-lang
22:22
kstuart has joined #ruby-lang
22:26
lightcap has quit [Ping timeout: 256 seconds]
22:27
kofight has quit [Ping timeout: 245 seconds]
22:29
vlad_starkov has joined #ruby-lang
22:29
hhatch has quit [Ping timeout: 264 seconds]
22:33
jp- has joined #ruby-lang
22:37
vlad_sta_ has joined #ruby-lang
22:38
VTLob has quit [Quit: VTLob]
22:38
vlad_starkov has quit [Read error: Connection reset by peer]
22:40
MaddinXx has quit [Remote host closed the connection]
22:43
richardburton has joined #ruby-lang
22:48
richardburton has quit [Ping timeout: 260 seconds]
22:49
apeiros has quit [Remote host closed the connection]
22:49
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
22:51
LanceHaig has quit [Ping timeout: 264 seconds]
23:03
lightcap has joined #ruby-lang
23:06
mdedetrich has quit [Quit: Computer has gone to sleep.]
23:08
bungoman has joined #ruby-lang
23:09
lightcap has quit [Ping timeout: 256 seconds]
23:10
dhoss has joined #ruby-lang
23:11
iliketur_ has joined #ruby-lang
23:12
asahi has joined #ruby-lang
23:14
tubbo has joined #ruby-lang
23:16
banister`sleep has quit [Quit: Computer has gone to sleep.]
23:17
asahi has quit [Ping timeout: 260 seconds]
23:17
banisterfiend has joined #ruby-lang
23:18
nathanstitt has quit [Quit: I growing sleepy]
23:20
vlad_sta_ has quit [Remote host closed the connection]
23:21
ohsix has joined #ruby-lang
23:22
Nisstyre-laptop has joined #ruby-lang
23:22
tkuchiki has joined #ruby-lang
23:22
nisstyre has quit [Read error: Operation timed out]
23:24
fragamus has joined #ruby-lang
23:24
fragamus has quit [Max SendQ exceeded]
23:24
woollyams has joined #ruby-lang
23:26
kurko__ has quit [Quit: Computer has gone to sleep.]
23:27
tkuchiki has quit [Ping timeout: 260 seconds]
23:31
tkuchiki has joined #ruby-lang
23:31
tkuchiki has quit [Remote host closed the connection]
23:32
tkuchiki has joined #ruby-lang
23:35
fedesilv_ has joined #ruby-lang
23:37
tkuchiki has quit [Ping timeout: 260 seconds]
23:37
fedesilva has quit [Ping timeout: 268 seconds]
23:37
mdedetrich has joined #ruby-lang
23:57
Andrevan has quit [Ping timeout: 245 seconds]