apeiros changed the topic of #ruby-lang to: Ruby 2.1.5; 2.0.0-p598; 1.9.3-p551: http://ruby-lang.org || Paste code on http://gist.github.com
jonathanmarvens has joined #ruby-lang
arBmind has joined #ruby-lang
emmesswhy has joined #ruby-lang
SHyx0rmZ has joined #ruby-lang
pricees has quit [Ping timeout: 272 seconds]
pablocantero has quit [Remote host closed the connection]
marr has quit [Ping timeout: 265 seconds]
saramic_ has quit [Remote host closed the connection]
jmrepetti has quit [Remote host closed the connection]
klmlfl_ has joined #ruby-lang
klmlfl has quit [Read error: Connection reset by peer]
saramic has joined #ruby-lang
midhir has quit [Remote host closed the connection]
midhir has joined #ruby-lang
Tab has joined #ruby-lang
Tab is now known as Guest55881
mkaesz has joined #ruby-lang
tkuchiki has joined #ruby-lang
tsou has quit [Ping timeout: 255 seconds]
mkaesz has quit [Ping timeout: 264 seconds]
Guest55881 has quit [Read error: Connection reset by peer]
tsou has joined #ruby-lang
[H]unt3r has joined #ruby-lang
saramic has quit [Remote host closed the connection]
pablocantero has joined #ruby-lang
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #ruby-lang
pablocantero has quit [Ping timeout: 255 seconds]
jimbach has joined #ruby-lang
jimbach has quit [Remote host closed the connection]
rcvalle has quit [Quit: rcvalle]
havenwood has joined #ruby-lang
bmichelsen has joined #ruby-lang
matsutomo has joined #ruby-lang
saramic has joined #ruby-lang
_fritchie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
emmesswhy has quit [Quit: This computer has gone to sleep]
[H]unt3r has quit [Read error: No route to host]
[H]unt3r has joined #ruby-lang
yusuf has joined #ruby-lang
joast has joined #ruby-lang
[H]unt3r has quit [Client Quit]
_fritchie has joined #ruby-lang
spastorino has quit [Quit: Connection closed for inactivity]
mistym has quit [Remote host closed the connection]
michael_mbp has joined #ruby-lang
matled- has joined #ruby-lang
michael_mbp has quit [Excess Flood]
matled has quit [Read error: Connection reset by peer]
matled- is now known as matled
pskosinski has quit [Ping timeout: 265 seconds]
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #ruby-lang
pskosinski has joined #ruby-lang
jonathanmarvens has quit []
midhir has quit [Remote host closed the connection]
midhir has joined #ruby-lang
perry has quit [Read error: Connection reset by peer]
Lewix has joined #ruby-lang
chills42 has joined #ruby-lang
midhir has quit [Ping timeout: 255 seconds]
perry has joined #ruby-lang
perry is now known as Guest37942
Guest37942 is now known as perryh
perryh has joined #ruby-lang
perryh has quit [Changing host]
shinnya has quit [Ping timeout: 250 seconds]
jimbach has joined #ruby-lang
dwknoxy has quit [Quit: Textual IRC Client: www.textualapp.com]
pablocantero has joined #ruby-lang
ItSANgo has quit [Quit: Leaving...]
pablocantero has quit [Ping timeout: 258 seconds]
hakunin has quit [Read error: Connection reset by peer]
jimbach has quit [Remote host closed the connection]
hakunin has joined #ruby-lang
usershel_ has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
xcesariox has joined #ruby-lang
usershell has quit [Ping timeout: 250 seconds]
xcesariox has quit [Client Quit]
NoNMaDDeN has joined #ruby-lang
pricees has joined #ruby-lang
jdecuirm has joined #ruby-lang
oleo__ has joined #ruby-lang
pricees has quit [Ping timeout: 265 seconds]
oleo is now known as Guest38833
klmlfl_ has quit [Remote host closed the connection]
Guest38833 has quit [Ping timeout: 240 seconds]
<jdecuirm> Hi guys good night/day!
<jdecuirm> I'm having a problem with partition method, or something is not going right
<jdecuirm> i created an array using map, to create persons with ages from 10 to 25
<jdecuirm> then i use partition to create two arrays, one with the people within the range of age, and the other people not in range
<jdecuirm> but i'm getting an empty array, and an array with all people
<jdecuirm> this is the code to test it
<waxjar> >> (1..5) == 3
<eval-in__> waxjar => false (https://eval.in/227389)
<waxjar> if you want to check if an Integer is in a Range, you can use Range#cover?
_fritchie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<havenwood> >> (1..5).cover? 3
<eval-in__> havenwood => true (https://eval.in/227390)
<jdecuirm> oh
<havenwood> >> 3.between? 1, 5
<eval-in__> havenwood => true (https://eval.in/227391)
<jdecuirm> then i hate partition
<jdecuirm> why the author is getting a good result
<havenwood> jdecuirm: what does that have to do with partition?
<jdecuirm> did you checked the code? lol
<waxjar> jdecuirm: your teenager? method is always returning false
<waxjar> because a rang and an Integer are never equal
<jdecuirm> but, the values i'm getting are 10,13,16,19,22 and 25
<waxjar> you're compaing them to a Range :)
<waxjar> *comparing
<jdecuirm> damn
<jdecuirm> ...
<jdecuirm> i see the error
<jdecuirm> it's === not ==
<havenwood> jdecuirm: but use #cover?
<havenwood> jdecuirm: (13..19).cover? age
<jdecuirm> now i can rest in peace
<jdecuirm> oh
<waxjar> that would work, but #cover? is clearer. #=== is only for use in case statements, really
<jdecuirm> thanks both!!
_fritchie has joined #ruby-lang
mistym has joined #ruby-lang
mkyurchev has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bfraser has joined #ruby-lang
jimmyL_ has joined #ruby-lang
matsutomo has quit [Quit: matsutomo]
<jimmyL_> Hey everyone - quick question about the use of Modules in Ruby. I understand how they come into play when I'm creating mixins but what's the consensus on their use as namespaces? Coming from the .Net world, I expect all my classes to be namespaced, is this the same in a production Ruby project?
<waxjar> modules are used for namespacing, yes.
<waxjar> (even classes can be used as namespaces, because they're modules too, but it's not as common)
<jimmyL_> Just to clarify: so any Ruby project, a gem or CLI app, should be using modules as namespaces for all classes? Like all my gem's classes should be namespaced with "module MyGem"?
matsutomo has joined #ruby-lang
<waxjar> if you have more than 1 class, yeah
<jimmyL_> Cool! Thanks for the guidance.
jimmyL_ has quit [Quit: Page closed]
<waxjar> it's also common practice to make your directory structure match up with your namespaces
<waxjar> for example, MyGem::SomeSubModule::SomeClass lives in lib/my_gem/some_sub_module/some_class.rb
<waxjar> oh he left already
wallerdev has joined #ruby-lang
wallerdev has quit [Client Quit]
kapil__ has joined #ruby-lang
bb010g has joined #ruby-lang
matsutomo has quit [Quit: matsutomo]
_fritchie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
klmlfl has joined #ruby-lang
matsutomo has joined #ruby-lang
koderok has joined #ruby-lang
koderok has quit [Client Quit]
gix has quit [Ping timeout: 240 seconds]
_fritchie has joined #ruby-lang
gix has joined #ruby-lang
bmichelsen has quit [Quit: ZZZzzz…]
NoNMaDDeN has quit [Remote host closed the connection]
gianlucadv has joined #ruby-lang
midhir has joined #ruby-lang
midhir has quit [Ping timeout: 250 seconds]
perryh has quit [Ping timeout: 255 seconds]
kyb3r_ has joined #ruby-lang
klmlfl has quit [Remote host closed the connection]
hahuang65 has joined #ruby-lang
Guest95882 has joined #ruby-lang
Guest95882 is now known as perryh
pablocantero has joined #ruby-lang
perryh has quit [Changing host]
perryh has joined #ruby-lang
_fritchie has quit [Quit: Textual IRC Client: www.textualapp.com]
jxie has quit [Ping timeout: 245 seconds]
jxie has joined #ruby-lang
NoNMaDDeN has joined #ruby-lang
pablocantero has quit [Ping timeout: 258 seconds]
gianlucadv has quit [Ping timeout: 250 seconds]
matsutomo has quit [Quit: matsutomo]
ur5us has quit [Remote host closed the connection]
allomov has joined #ruby-lang
matsutomo has joined #ruby-lang
BubonicPestilenc has joined #ruby-lang
BubonicPestile-1 has quit [Ping timeout: 244 seconds]
jxie has quit [Ping timeout: 264 seconds]
jxie has joined #ruby-lang
bmichelsen has joined #ruby-lang
buddy_tucker has joined #ruby-lang
danijoo has quit [Read error: Connection reset by peer]
danijoo_ has joined #ruby-lang
simi has quit [Remote host closed the connection]
guiguirb has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
hao has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
hao has quit [Client Quit]
diegoviola has quit [Remote host closed the connection]
Lewix has joined #ruby-lang
Lewix has quit [Changing host]
Lewix has joined #ruby-lang
allomov has quit [Remote host closed the connection]
pyttepatsy has joined #ruby-lang
Averna has quit [Quit: Leaving.]
matsutomo has quit [Quit: matsutomo]
allomov has joined #ruby-lang
pyttepatsy has quit [Ping timeout: 264 seconds]
allomov has quit [Remote host closed the connection]
daguar has joined #ruby-lang
saramic has quit []
matsutomo has joined #ruby-lang
caseydriscoll has quit [Remote host closed the connection]
ruby-lang846 has joined #ruby-lang
<ruby-lang846> When creating new classes in a ruby project, is it best practice to have an initialize that takes a **args for dependencies or should the dependencies be explicit in the initialize method?
<ruby-lang846> so def initialize(**args) or def initialize(dep1, dep2) ?
dagda1 has joined #ruby-lang
nofxx_ has quit [Ping timeout: 256 seconds]
hahuang65 has quit [Ping timeout: 265 seconds]
dsilva has quit [Ping timeout: 255 seconds]
dsilva has joined #ruby-lang
ur5us has joined #ruby-lang
nofxx_ has joined #ruby-lang
allomov has joined #ruby-lang
ur5us has quit [Ping timeout: 240 seconds]
guiguirb has joined #ruby-lang
midhir has joined #ruby-lang
guiguirb has quit [Client Quit]
skade has joined #ruby-lang
skade has quit [Client Quit]
midhir has quit [Ping timeout: 272 seconds]
oleo__ has quit [Quit: Verlassend]
matsutomo has quit [Quit: matsutomo]
Lewix has quit [Remote host closed the connection]
marcdel has joined #ruby-lang
JohnBat26 has joined #ruby-lang
marcdel_ has joined #ruby-lang
marcdel has quit [Remote host closed the connection]
marcdel has joined #ruby-lang
skade has joined #ruby-lang
pablocantero has joined #ruby-lang
marcdel_ has quit [Ping timeout: 255 seconds]
mikecmpbll has quit [Quit: ciao.]
skade has quit [Client Quit]
skade has joined #ruby-lang
matsutomo has joined #ruby-lang
pablocantero has quit [Ping timeout: 264 seconds]
ruby-lang846 has quit [Quit: Page closed]
rolfb has joined #ruby-lang
charliesome has quit [Quit: zzz]
marcdel has quit [Ping timeout: 264 seconds]
marcdel has joined #ruby-lang
<nofxx_> ruby-mode built in emacs is the same as ruby trunk/misc?
<nofxx_> ruby-mode.el
havenwood has quit []
<nofxx_> yup.. looks like emacs is more up to date, guess matz is working there ;)
<nofxx_> also nice: Created: Fri Feb 4 14:49:13 JST 1994
<nofxx_> ok I got a language, what I need first? emacs-mode, of course!
skade has quit [Quit: Computer has gone to sleep.]
clauswitt has joined #ruby-lang
buddy_tucker has quit [Quit: Konversation terminated!]
skade has joined #ruby-lang
jmrepetti has joined #ruby-lang
guiguirb has joined #ruby-lang
guiguirb has quit [Client Quit]
apeiros_ has joined #ruby-lang
matsutomo has quit [Quit: matsutomo]
NoNMaDDeN has quit [Ping timeout: 264 seconds]
NoNMaDDeN has joined #ruby-lang
matsutomo has joined #ruby-lang
NoNMaDDeN has quit [Ping timeout: 265 seconds]
GBrawl has joined #ruby-lang
GBrawl has quit [Read error: Connection reset by peer]
vondruch has joined #ruby-lang
michael_mbp has quit [Excess Flood]
amystephen has quit [Quit: amystephen]
michael_mbp has joined #ruby-lang
Miphix has quit [Quit: Leaving]
NoNMaDDeN has joined #ruby-lang
pablocantero has joined #ruby-lang
clauswitt has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pablocantero has quit [Ping timeout: 255 seconds]
charliesome has joined #ruby-lang
mistym has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
Miphix has joined #ruby-lang
skade has joined #ruby-lang
mkaesz has joined #ruby-lang
bmichelsen has quit [Quit: ZZZzzz…]
jmrepetti has quit [Remote host closed the connection]
Iskarlar has joined #ruby-lang
Senjai has quit [Ping timeout: 240 seconds]
<zenspider_> nofxx_: no, they're diverging and nobody is owning the syncing process
marr has joined #ruby-lang
Forgetful_Lion has joined #ruby-lang
Senjai has joined #ruby-lang
<nofxx_> zenspider_, ruby-mode.el github -> v0.8, emacs 24.4 -> v1.2
guiguirb has joined #ruby-lang
<zenspider_> yup
midhir has joined #ruby-lang
<nofxx_> well, what matter is that now finally ruby-electric is working here hehe
guiguirb has quit [Client Quit]
jmrepetti has joined #ruby-lang
<zenspider_> meh. I never use ruby-electric. don't really get any value from i.t
<zenspider_> it
Senjai has quit [Ping timeout: 240 seconds]
midhir has quit [Ping timeout: 250 seconds]
Senjai has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
matsutomo has quit [Quit: matsutomo]
bmichelsen has joined #ruby-lang
matsutomo has joined #ruby-lang
matsutomo has quit [Client Quit]
matsutomo has joined #ruby-lang
kwd has joined #ruby-lang
marcdel has quit []
kyb3r_ has quit [Read error: Connection reset by peer]
pablocantero has joined #ruby-lang
pablocantero has quit [Ping timeout: 258 seconds]
<Eising> Hi. Is anyone familiar with a library that lets me dump the entire tcp/ip header of incoming packets? I know that there's a libpcap interface, but that seems a bit excessive...
<Eising> I basically want to be able to send packets to a server and receive a dump of the tcp/ip header of the packets I send to a specific port
pablocantero has joined #ruby-lang
LeonBo is now known as LBo
pablocantero has quit [Ping timeout: 245 seconds]
jmrepetti has quit [Remote host closed the connection]
charliesome has quit [Ping timeout: 240 seconds]
marr has quit [Ping timeout: 264 seconds]
charliesome has joined #ruby-lang
RitterJack has joined #ruby-lang
q_leonetti has joined #ruby-lang
guiguirb has joined #ruby-lang
guiguirb has quit [Client Quit]
ItSANgo has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
charliesome_ has joined #ruby-lang
charliesome_ has quit [Read error: Connection reset by peer]
charliesome has quit [Ping timeout: 245 seconds]
charliesome has joined #ruby-lang
mikecmpbll has joined #ruby-lang
dangerousdave has joined #ruby-lang
charliesome has quit [Read error: Connection reset by peer]
charliesome has joined #ruby-lang
dangerousdave has quit [Ping timeout: 255 seconds]
guiguirb has joined #ruby-lang
certaint1 has quit [Quit: Lost terminal]
certainty has quit [Quit: Lost terminal]
dsilva_ has joined #ruby-lang
certainty has joined #ruby-lang
clauswitt has joined #ruby-lang
dsilva has quit [Ping timeout: 255 seconds]
pablocantero has joined #ruby-lang
JohnBat26 has quit [Ping timeout: 272 seconds]
danijoo_ has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
pablocantero has quit [Ping timeout: 256 seconds]
dsilva has joined #ruby-lang
dsilva_ has quit [Ping timeout: 272 seconds]
pablocantero has joined #ruby-lang
yusuf has quit [Quit: Leaving.]
dsilva_ has joined #ruby-lang
<yorickpeterse> morning
dsilva has quit [Ping timeout: 264 seconds]
midhir has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
ldnunes has joined #ruby-lang
midhir has quit [Ping timeout: 258 seconds]
mkaesz has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
mkaesz has joined #ruby-lang
GBrawl has joined #ruby-lang
<maloik> morning? umad
<maloik> it's almost noon!
arBmind has joined #ruby-lang
mkaesz has quit [Ping timeout: 256 seconds]
<ljarvis> hai
marr has joined #ruby-lang
dsilva has joined #ruby-lang
arBmind has quit [Ping timeout: 258 seconds]
dsilva_ has quit [Ping timeout: 256 seconds]
arBmind has joined #ruby-lang
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
midhir has joined #ruby-lang
tbuehlmann has joined #ruby-lang
apeiros_ has quit [Ping timeout: 272 seconds]
dsilva_ has joined #ruby-lang
midhir has quit [Ping timeout: 255 seconds]
dsilva has quit [Ping timeout: 264 seconds]
hahuang65 has joined #ruby-lang
ikrima has quit [Ping timeout: 244 seconds]
workmad3 has joined #ruby-lang
midhir has joined #ruby-lang
hahuang65 has quit [Ping timeout: 258 seconds]
<yorickpeterse> maloik: maybe if you're already drunk
JohnBat26 has joined #ruby-lang
Senjai has quit [Ping timeout: 255 seconds]
q_leonetti has quit [Read error: Connection reset by peer]
q_leonetti_ has joined #ruby-lang
matsutomo has left #ruby-lang [#ruby-lang]
skade has joined #ruby-lang
q_leonetti_ has quit [Client Quit]
bmichelsen has quit [Quit: ZZZzzz…]
q_leonetti has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
midhir_ has joined #ruby-lang
midhir has quit [Read error: Connection reset by peer]
dsilva has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
dsilva_ has quit [Ping timeout: 240 seconds]
<maloik> yorickpeterse: that makes no sense! I won't be drunk for AT LEAST another 15 minutes
<maloik> :D
<maloik> funny how a friend said the same thing as I asked if he was gonna go to the bar tonight
<maloik> "stop thinking about alcohol before noon!"
<maloik> :(
apeiros_ has joined #ruby-lang
Senjai has joined #ruby-lang
charliesome has quit [Quit: zzz]
postmodern has quit [Quit: Leaving]
Iskarlar has quit [Ping timeout: 240 seconds]
Iskarlar_ has joined #ruby-lang
usershel_ has quit [Remote host closed the connection]
<whitequark> Eising: you need to use libpcap, yes
mkaesz has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
mkaesz has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
midhir_ has quit [Remote host closed the connection]
midhir has joined #ruby-lang
charliesome has joined #ruby-lang
midhir has quit [Ping timeout: 255 seconds]
ledestin has quit [Quit: ledestin]
<darix> whitequark: well if he has full control over the tcp socket. he could just read the bytes from it and dump it before passing it up
cornerma1 has joined #ruby-lang
q_leonetti has quit [Quit: q_leonetti]
cornerman has quit [Ping timeout: 264 seconds]
cornerma1 is now known as cornerman
xcesariox has joined #ruby-lang
rolfb has quit [Quit: Leaving...]
davs has joined #ruby-lang
GBrawl has quit [Ping timeout: 258 seconds]
bmichelsen has joined #ruby-lang
skade has joined #ruby-lang
NoNMaDDeN has quit [Remote host closed the connection]
q_leonetti has joined #ruby-lang
spastorino has joined #ruby-lang
NoNMaDDeN has joined #ruby-lang
michael_mbp has quit [Excess Flood]
rolfb has joined #ruby-lang
usershell has joined #ruby-lang
michael_mbp has joined #ruby-lang
usershell has quit [Ping timeout: 255 seconds]
bmichelsen has quit [Quit: ZZZzzz…]
pablocantero has quit [Remote host closed the connection]
NoNMaDDeN has quit [Remote host closed the connection]
mikestok has joined #ruby-lang
pablocantero has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby-lang
dsilva_ has joined #ruby-lang
mikestok has quit [Client Quit]
mkaesz has joined #ruby-lang
skade has quit [Ping timeout: 258 seconds]
pricees has joined #ruby-lang
nelsonsar has joined #ruby-lang
dsilva has quit [Ping timeout: 240 seconds]
skade has joined #ruby-lang
elia has joined #ruby-lang
tkuchiki has quit [Ping timeout: 272 seconds]
mkaesz has quit [Ping timeout: 264 seconds]
<whitequark> darix: how exactly are you going to get the header, given a socket?
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
<darix> whitequark: hmm ... good point
hhatch has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
elia has joined #ruby-lang
Forgetful_Lion has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
yfeldblum has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
yfeldblu_ has joined #ruby-lang
dsilva has joined #ruby-lang
yfeldblum has quit [Ping timeout: 255 seconds]
kiyote23 has quit [Remote host closed the connection]
dsilva_ has quit [Ping timeout: 264 seconds]
yfeldblu_ has quit [Ping timeout: 240 seconds]
kiyote23 has joined #ruby-lang
mkaesz has joined #ruby-lang
jimbach has joined #ruby-lang
LapideViridi has joined #ruby-lang
LapideViridi has quit [Client Quit]
LapideViridi has joined #ruby-lang
mkaesz has quit [Ping timeout: 265 seconds]
chills42 has joined #ruby-lang
nelsonsar has joined #ruby-lang
LapideViridi has quit [Client Quit]
LapideViridi has joined #ruby-lang
usershell has joined #ruby-lang
Iskarlar_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rcvalle has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
usershell has quit [Ping timeout: 264 seconds]
skade has quit [Quit: Computer has gone to sleep.]
nelsonsar has quit [Remote host closed the connection]
xcesariox has quit [Ping timeout: 255 seconds]
xcesariox has joined #ruby-lang
jmrepetti has joined #ruby-lang
dsilva_ has joined #ruby-lang
dsilva has quit [Ping timeout: 255 seconds]
oleo has joined #ruby-lang
Lewix has joined #ruby-lang
Lewix has joined #ruby-lang
Lewix has quit [Client Quit]
charliesome has quit [Quit: zzz]
nelsonsar has joined #ruby-lang
LapideViridi has quit [Quit: See ya'!]
LapideViridi has joined #ruby-lang
Xzanron has joined #ruby-lang
benlovell has joined #ruby-lang
chills42 has joined #ruby-lang
LapideViridi has quit [Client Quit]
LapideViridi has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
elimS has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
LapideViridi has quit [Client Quit]
LapideViridi has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
Mon_Ouie has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
malconis has joined #ruby-lang
diegoviola has joined #ruby-lang
kwd has quit [Quit: kwd]
NoNMaDDeN has joined #ruby-lang
LapideViridi has quit [Quit: See ya'!]
[spoiler] has joined #ruby-lang
mkaesz has joined #ruby-lang
shinnya has joined #ruby-lang
rippa has joined #ruby-lang
q_leonetti has quit [Quit: q_leonetti]
benlovell has quit [Ping timeout: 240 seconds]
allomov has quit [Remote host closed the connection]
[spoiler] has quit [Remote host closed the connection]
clauswitt has quit [Ping timeout: 255 seconds]
q_leonetti has joined #ruby-lang
klmlfl has joined #ruby-lang
[spoiler] has joined #ruby-lang
allomov has joined #ruby-lang
benlovell has joined #ruby-lang
banister_ has joined #ruby-lang
banister has quit [Ping timeout: 255 seconds]
q_leonetti has quit [Ping timeout: 244 seconds]
matti has quit [Quit: Reconnecting]
matti has joined #ruby-lang
matti has quit [Changing host]
matti has joined #ruby-lang
q_leonetti has joined #ruby-lang
mistym has joined #ruby-lang
Xzanron has quit [Quit: Leaving]
ta_ has joined #ruby-lang
ta has quit [Read error: Connection reset by peer]
mikecmpbll has quit [Read error: Connection reset by peer]
chills42 has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
mistym has quit [Remote host closed the connection]
chills42 has quit [Remote host closed the connection]
ta has joined #ruby-lang
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
ta_ has quit [Read error: Connection reset by peer]
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
tkuchiki has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
ta has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
skade has joined #ruby-lang
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
sk_0 has quit [Ping timeout: 265 seconds]
tkuchiki has quit [Ping timeout: 264 seconds]
mikecmpbll has joined #ruby-lang
ta has joined #ruby-lang
ta has quit [Remote host closed the connection]
ta has joined #ruby-lang
chills42 has joined #ruby-lang
mistym has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
existensil has quit [Quit: WeeChat 0.4.2]
[H]unt3r has joined #ruby-lang
pyttepatsy has joined #ruby-lang
mcclurmc has joined #ruby-lang
allomov has quit [Remote host closed the connection]
sk_0 has joined #ruby-lang
pablocantero has quit [Remote host closed the connection]
apeiros_ has quit [Ping timeout: 256 seconds]
allomov has joined #ruby-lang
q_leonetti has quit [Quit: q_leonetti]
pablocantero has joined #ruby-lang
mcclurmc has quit [Ping timeout: 264 seconds]
usershell has joined #ruby-lang
symm- has joined #ruby-lang
BubonicPestilenc has quit [Quit: BubonicPestilenc]
mcclurmc has joined #ruby-lang
tsou has quit [Ping timeout: 244 seconds]
oleo__ has joined #ruby-lang
oleo is now known as Guest89591
mcclurmc_ has joined #ruby-lang
sk_0 has quit [Ping timeout: 256 seconds]
usershell has quit [Ping timeout: 245 seconds]
nelsonsar has joined #ruby-lang
Guest89591 has quit [Ping timeout: 244 seconds]
mcclurmc has quit [Ping timeout: 250 seconds]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
[H]unt3r has quit [Quit: Leaving]
TvL2386 has joined #ruby-lang
malconis has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
allomov has quit [Remote host closed the connection]
mcclurmc_ has quit [Ping timeout: 264 seconds]
allomov has joined #ruby-lang
nelsonsar has joined #ruby-lang
mcclurmc has joined #ruby-lang
pablocantero has quit [Remote host closed the connection]
mikecmpbll has quit [Quit: i've nodded off.]
pyttepatsy has quit [Ping timeout: 258 seconds]
nelsonsar has quit [Ping timeout: 272 seconds]
mikecmpbll has joined #ruby-lang
kapil__ has quit [Quit: Connection closed for inactivity]
existensil has joined #ruby-lang
oleo__ has quit [Quit: Verlassend]
midhir has joined #ruby-lang
elimS has quit [Ping timeout: 245 seconds]
nelsonsar has joined #ruby-lang
dfinninger has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
mikecmpb_ has joined #ruby-lang
mikecmpbll has quit [Ping timeout: 255 seconds]
mikecmpb_ has quit [Client Quit]
mikecmpbll has joined #ruby-lang
guiguirb has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
dxta has joined #ruby-lang
oleo has joined #ruby-lang
mcclurmc_ has joined #ruby-lang
dangerousdave has joined #ruby-lang
mcclurmc has quit [Ping timeout: 244 seconds]
pricees has quit [Ping timeout: 255 seconds]
NoNMaDDeN has quit [Remote host closed the connection]
rcvalle has quit [Ping timeout: 240 seconds]
midhir has quit [Remote host closed the connection]
midhir has joined #ruby-lang
GBrawl has joined #ruby-lang
guiguirb has joined #ruby-lang
rcvalle has joined #ruby-lang
LapideViridi has joined #ruby-lang
midhir has quit [Ping timeout: 250 seconds]
NoNMaDDeN has joined #ruby-lang
mistym has quit [Remote host closed the connection]
chills42_ has joined #ruby-lang
chills42 has quit [Ping timeout: 264 seconds]
sk_0 has joined #ruby-lang
hahuang65 has joined #ruby-lang
GBrawl has quit [Quit: (null)]
dfinninger has quit [Remote host closed the connection]
tsou has joined #ruby-lang
hahuang65 has quit [Ping timeout: 265 seconds]
dsilva_ has quit [Ping timeout: 255 seconds]
midhir has joined #ruby-lang
dsilva has joined #ruby-lang
tsou has quit [Quit: off]
symm- has quit [Ping timeout: 240 seconds]
dsilva_ has joined #ruby-lang
dsilva has quit [Ping timeout: 240 seconds]
dfinninger has joined #ruby-lang
benlovell has quit [Ping timeout: 256 seconds]
apeiros_ has joined #ruby-lang
nelsonsar has joined #ruby-lang
chills42_ has quit [Remote host closed the connection]
apeiros_ has quit [Read error: Connection reset by peer]
apeiros_ has joined #ruby-lang
sk_0 has quit [Ping timeout: 245 seconds]
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
midhir has quit [Remote host closed the connection]
sk_0 has joined #ruby-lang
midhir has joined #ruby-lang
caseydriscoll has joined #ruby-lang
dsilva has joined #ruby-lang
midhir has quit [Ping timeout: 256 seconds]
mikecmpb_ has joined #ruby-lang
dsilva_ has quit [Ping timeout: 240 seconds]
bfraser has quit [Ping timeout: 240 seconds]
nelsonsar has quit [Remote host closed the connection]
diegoviola has quit [Quit: WeeChat 1.0.1]
mikecmpbll has quit [Ping timeout: 256 seconds]
|jemc| has joined #ruby-lang
mcclurmc_ has quit [Remote host closed the connection]
nelsonsar has joined #ruby-lang
sk_0 has quit [Ping timeout: 240 seconds]
mcclurmc has joined #ruby-lang
mcclurmc has quit [Remote host closed the connection]
sk_0 has joined #ruby-lang
pablocantero has joined #ruby-lang
nelsonsar has quit [Ping timeout: 258 seconds]
guiguirb has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
arBmind has quit [Quit: Leaving.]
chills42 has joined #ruby-lang
nelsonsar has joined #ruby-lang
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pablocantero has quit [Ping timeout: 264 seconds]
nelsonsar has quit [Remote host closed the connection]
sk_0 has quit [Ping timeout: 240 seconds]
bfraser has joined #ruby-lang
sk_0 has joined #ruby-lang
allomov has quit [Remote host closed the connection]
nelsonsar has joined #ruby-lang
midhir has joined #ruby-lang
bf4 has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
mikecmpb_ has quit [Ping timeout: 240 seconds]
emmesswhy has joined #ruby-lang
dangerousdave has joined #ruby-lang
NoNMaDDeN has quit [Remote host closed the connection]
chills42 has quit [Remote host closed the connection]
TvL2386 has quit [Ping timeout: 244 seconds]
mistym has joined #ruby-lang
emmesswhy has quit [Ping timeout: 255 seconds]
emmesswhy has joined #ruby-lang
mistym has quit [Remote host closed the connection]
mistym has joined #ruby-lang
sk_0 has quit [Ping timeout: 264 seconds]
nelsonsar has joined #ruby-lang
pablocantero has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
banister_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bf4 has quit [Ping timeout: 264 seconds]
usershell has joined #ruby-lang
TvL2386 has joined #ruby-lang
Lewix has joined #ruby-lang
dfinninger has quit [Remote host closed the connection]
usershell has quit [Ping timeout: 245 seconds]
elia has quit [Quit: Computer has gone to sleep.]
elia has joined #ruby-lang
banister has joined #ruby-lang
nelsonsar has joined #ruby-lang
dfinninger has joined #ruby-lang
sk_0 has joined #ruby-lang
bf4 has joined #ruby-lang
sk_0 has quit [Read error: Connection reset by peer]
rippa has quit [Ping timeout: 265 seconds]
sk_0 has joined #ruby-lang
sk_0 has quit [Read error: Connection reset by peer]
pricees has joined #ruby-lang
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #ruby-lang
sk_0 has joined #ruby-lang
guiguirb has joined #ruby-lang
marcdel has joined #ruby-lang
bf4 has quit [Ping timeout: 250 seconds]
mcclurmc has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
RitterJack has quit [Remote host closed the connection]
symm- has joined #ruby-lang
Lewix has joined #ruby-lang
Lewix has quit [Changing host]
Lewix has joined #ruby-lang
mcclurmc has quit [Ping timeout: 255 seconds]
nelsonsar has quit []
chills42 has joined #ruby-lang
jimbach has quit [Remote host closed the connection]
rippa has joined #ruby-lang
nofxx_ has quit [Ping timeout: 264 seconds]
elia has quit [Quit: Computer has gone to sleep.]
mikecmpbll has joined #ruby-lang
workmad3 has quit [Ping timeout: 265 seconds]
Lewix has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
Lewix has joined #ruby-lang
Lewix has quit [Changing host]
Lewix has joined #ruby-lang
fragamus_ has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
nofxx_ has joined #ruby-lang
banister has quit [Ping timeout: 265 seconds]
inkblots_ has joined #ruby-lang
senor_jalapeno has quit [Ping timeout: 240 seconds]
pyttepatsy has joined #ruby-lang
<LapideViridi> yorickpeterse, how come you never leave IRC? Is your computer on 24/7?
pyttepatsy has quit [Ping timeout: 250 seconds]
guiguirb has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
emmesswhy has quit [Quit: This computer has gone to sleep]
<yorickpeterse> LapideViridi: my IRC client runs on a server
<yorickpeterse> which indeed is on 24/7
<LapideViridi> Damn, that sounds like a fun project.
<LapideViridi> Then you log into the server with your computer?
<LapideViridi> Finally something I can do with my Raspberry Pi.
pyttepatsy has joined #ruby-lang
fragamus_ has quit [Quit: Computer has gone to sleep.]
<yorickpeterse> it's literally just running weechat in a tmux session :P
guillaumelegendr has joined #ruby-lang
diegoviola has joined #ruby-lang
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<yorickpeterse> so I just do "ssh my-server" then "tmux attach"
guillaumelegendr has quit [Client Quit]
senor_jalapeno has joined #ruby-lang
<LapideViridi> Copy-paste for later usage.
guillaume-rb has joined #ruby-lang
guillaume-rb has quit [Remote host closed the connection]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
banister has joined #ruby-lang
* LapideViridi is away: Probably on the toilet, maybe elsewhere.
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
* yorickpeterse is here: Probably on the couch, maybe on his thro^H^H^Hchair
guigui-rb has joined #ruby-lang
kiyote23 has joined #ruby-lang
malconis has joined #ruby-lang
gianlucadv has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
emmesswhy has joined #ruby-lang
midhir has quit [Remote host closed the connection]
midhir has joined #ruby-lang
kiyote23 has joined #ruby-lang
* LapideViridi is back (gone 00:07:03)
<apeiros_> LapideViridi: away scripts are annoying. please don't use one.
t_ has joined #ruby-lang
mcclurmc has joined #ruby-lang
bf4 has joined #ruby-lang
emmesswhy has quit [Ping timeout: 240 seconds]
guillaume-rb has joined #ruby-lang
midhir has quit [Ping timeout: 264 seconds]
guillaume-rb has left #ruby-lang [#ruby-lang]
guillaume-rb has joined #ruby-lang
kiyote23 has quit [Ping timeout: 272 seconds]
guigui-rb has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
mcclurmc has quit [Ping timeout: 240 seconds]
guigui-rb has joined #ruby-lang
guigui-rb has quit [Client Quit]
emmesswhy has joined #ruby-lang
<LapideViridi> Heh, funny. Got that message on three channels simultaneously. Thought it was etiquette to have one, but I couldn't agree more.
mistym has joined #ruby-lang
<LapideViridi> On second notice, I think I was sat up. Such a prank...
emmesswhy has quit [Read error: Connection reset by peer]
kyb3r_ has joined #ruby-lang
emmesswhy has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
TvL2386 has quit [Quit: Ex-Chat]
midhir has joined #ruby-lang
Lewix has joined #ruby-lang
Lewix has quit [Changing host]
Lewix has joined #ruby-lang
<apeiros_> you've been royally trolled :)
jamooo has quit [Ping timeout: 256 seconds]
<apeiros_> back in the days, away scripts could get you instabanned :)
jamooo has joined #ruby-lang
<LapideViridi> Can't they be disabled server-side?
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mattyohe has joined #ruby-lang
sk_0 has quit [Ping timeout: 240 seconds]
<apeiros_> no. you're sending a normal message.
caseydriscoll has quit [Remote host closed the connection]
sk_0 has joined #ruby-lang
dfinninger has quit [Remote host closed the connection]
<LapideViridi> Pardon for asking, but wasn't the #rails room on freenode? It doesn't show up on my channels list anymore, and I can't join it either.
<apeiros_> #rails
<apeiros_> and #ror and #rubyonrails
usershell has joined #ruby-lang
midhir has quit [Read error: Connection reset by peer]
midhir_ has joined #ruby-lang
<LapideViridi> Nope, neither rails nor rubyonrails work. ror is invite only. Must be something wrong on my end.
ldnunes has quit [Quit: Leaving]
* yorickpeterse is at the kitchen table: Possibly eating a pizza
dangerousdave has joined #ruby-lang
caseydriscoll has joined #ruby-lang
usershell has quit [Ping timeout: 244 seconds]
sk_0 has quit [Ping timeout: 250 seconds]
dsilva_ has joined #ruby-lang
fusillicode has joined #ruby-lang
dfinninger has joined #ruby-lang
sk_0 has joined #ruby-lang
ldnunes has joined #ruby-lang
guillaume-rb has quit [Quit: guillaume-rb]
dsilva has quit [Ping timeout: 255 seconds]
<LapideViridi> Well, since I can't seem to connect with irc.lc either, I'll ask here: Does my WAMP or LAMP setup need something special in order to host applications written i rails?
<darix> LapideViridi: depends
<darix> mod_fastcgi, mod_passenger or just http proxying to unicorn/puma
<darix> all are options
<darix> depending on what you use ... you need different things
dfinninger has quit [Ping timeout: 255 seconds]
<LapideViridi> Thanks, I'll google them one after another.
<darix> many people use passenger for ease of use
inkblots_ has quit [Quit: WeeChat 0.4.2]
pyttepatsy has quit [Ping timeout: 264 seconds]
pyttepatsy has joined #ruby-lang
* yorickpeterse is back (gone 00:39:00)
<yorickpeterse> :P
dsilva has joined #ruby-lang
sk_0 has quit [Ping timeout: 258 seconds]
gianlucadv has quit [Ping timeout: 264 seconds]
sk_0 has joined #ruby-lang
snoopybbt has joined #ruby-lang
hahuang65 has joined #ruby-lang
guillaume-rb has joined #ruby-lang
dsilva_ has quit [Ping timeout: 272 seconds]
dsilva_ has joined #ruby-lang
<apeiros> LapideViridi: you need to be registered to talk
<apeiros> they're not invite only. there is something which causes that message. forgot what.
<apeiros> #ror & #rails are forwarding. forwarding is usually done via invite only
pyttepatsy has quit [Ping timeout: 245 seconds]
<LapideViridi> I believe I joined #rails once, but before I downloaded a client.
dsilva__ has joined #ruby-lang
dsilva has quit [Ping timeout: 264 seconds]
marcdel has quit []
Narzew has joined #ruby-lang
dsilva_ has quit [Ping timeout: 255 seconds]
ruurd has joined #ruby-lang
__butch__ has joined #ruby-lang
ruurd has quit [Client Quit]
mistym has quit [Remote host closed the connection]
<LapideViridi> I just basically forced a battery out of my mouse with a spoon.
chills42 has joined #ruby-lang
[spoiler] has quit [Read error: No route to host]
<LapideViridi> I also just forced the USB wireless reciever of given mouse out of my raspberry pi.
<LapideViridi> Now I can finally eat with it.
[spoiler] has joined #ruby-lang
bf4 has quit [Ping timeout: 240 seconds]
chills42 has quit [Ping timeout: 272 seconds]
Mon_Ouie has quit [Quit: WeeChat 1.0.1]
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
guillaume-rb has quit [Quit: guillaume-rb]
dsilva has joined #ruby-lang
dsilva__ has quit [Ping timeout: 255 seconds]
dsilva has quit [Client Quit]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
hagabaka has quit [Ping timeout: 255 seconds]
toretore has quit [Ping timeout: 264 seconds]
emmesswhy has quit [Quit: This computer has gone to sleep]
hagabaka has joined #ruby-lang
cleopatra has joined #ruby-lang
klmlfl_ has joined #ruby-lang
midhir_ has quit [Remote host closed the connection]
NoNMaDDeN has joined #ruby-lang
klmlfl has quit [Ping timeout: 255 seconds]
ldnunes has quit [Quit: Leaving]
jds has quit [Quit: Connection closed for inactivity]
NoNMaDDeN has quit [Ping timeout: 240 seconds]
iamninja has joined #ruby-lang
klmlfl_ has quit [Ping timeout: 272 seconds]
nofxx_ has quit [Ping timeout: 258 seconds]
_fritchie has joined #ruby-lang
emmesswhy has joined #ruby-lang
bfraser has quit [Ping timeout: 258 seconds]
dfinninger has joined #ruby-lang
midhir has joined #ruby-lang
pyttepatsy has joined #ruby-lang
guillaume-rb has joined #ruby-lang
arBmind has joined #ruby-lang
guillaume-rb has quit [Client Quit]
emmesswhy has quit [Ping timeout: 244 seconds]
usershell has joined #ruby-lang
dfinninger has quit [Ping timeout: 258 seconds]
emmesswhy has joined #ruby-lang
usershel_ has joined #ruby-lang
rolfb has quit [Quit: Leaving...]
usershell has quit [Ping timeout: 264 seconds]
|jemc| has quit [Ping timeout: 255 seconds]
oleo has quit [Remote host closed the connection]
bfraser has joined #ruby-lang
oleo has joined #ruby-lang
Miphix has quit [Read error: Connection reset by peer]
jmrepetti has quit [Remote host closed the connection]
Miphix has joined #ruby-lang
Rampages_afk has quit [Ping timeout: 255 seconds]
diegoviola has quit [Remote host closed the connection]
cleopatra has quit [Remote host closed the connection]
davs has quit [Quit: Lost terminal]
yfeldblum has joined #ruby-lang
jamooo has quit [Ping timeout: 272 seconds]
sk_0 has quit [Ping timeout: 244 seconds]
jamooo has joined #ruby-lang
sk_0 has joined #ruby-lang
yourabi has joined #ruby-lang
dagda1 has joined #ruby-lang
fusillicode has quit [Ping timeout: 255 seconds]
yourabi has quit [Quit: Textual IRC Client: www.textualapp.com]
havenwood has joined #ruby-lang
[H]unt3r has joined #ruby-lang
jmrepetti has joined #ruby-lang
skade has joined #ruby-lang
pyttepatsy has quit [Ping timeout: 250 seconds]
emmesswhy has quit [Quit: This computer has gone to sleep]
mistym has joined #ruby-lang
mistym has quit [Remote host closed the connection]
mistym has joined #ruby-lang
kiyote23 has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
Lewix has joined #ruby-lang
Lewix has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
cleopatra has joined #ruby-lang
usershel_ has quit [Remote host closed the connection]
solars has quit [Ping timeout: 250 seconds]
__butch__ has quit [Quit: Leaving.]
pyttepatsy has joined #ruby-lang
unsymbol has quit [Ping timeout: 244 seconds]
toretore has joined #ruby-lang
klmlfl has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
pyttepatsy has quit [Ping timeout: 272 seconds]
LapideViridi has quit [Quit: See ya'!]
kiyote23 has joined #ruby-lang
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
siwica has joined #ruby-lang
kiyote23_ has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
kiyote23 has quit [Read error: Connection reset by peer]
cleopatra has quit [Remote host closed the connection]
GaelanAintAround has quit [Ping timeout: 250 seconds]
jmrepetti has joined #ruby-lang
zz_dlu has quit [Ping timeout: 255 seconds]
unsymbol has joined #ruby-lang
siwica has quit [Remote host closed the connection]
mblewitt has joined #ruby-lang
GaelanAintAround has joined #ruby-lang
siwica has joined #ruby-lang
zz_dlu has joined #ruby-lang
jmrepetti has quit [Ping timeout: 264 seconds]
rolfb has joined #ruby-lang
elia has joined #ruby-lang
pablocantero has quit [Remote host closed the connection]
pablocantero has joined #ruby-lang
mblewitt is now known as mble
snown has joined #ruby-lang
marcdel has joined #ruby-lang
solars has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
snown has left #ruby-lang [#ruby-lang]
mkaesz has joined #ruby-lang
rcvalle has quit [Quit: rcvalle]
pablocantero has quit [Ping timeout: 265 seconds]
setanta has joined #ruby-lang
mkaesz has quit [Ping timeout: 240 seconds]
|jemc| has joined #ruby-lang
rolfb has quit [Quit: Leaving...]
marcdel has quit []
mble has quit [Read error: Connection reset by peer]
mble has joined #ruby-lang
mble has quit [Client Quit]
charliesome has joined #ruby-lang
jmrepetti has joined #ruby-lang
postmodern has joined #ruby-lang
setanta has quit [Quit: Leaving]
chills42 has joined #ruby-lang
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
pyttepatsy has joined #ruby-lang
dfinninger has joined #ruby-lang
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
t_ has quit [Ping timeout: 258 seconds]
dfinning_ has joined #ruby-lang
dfinninger has quit [Ping timeout: 245 seconds]
chills42 has quit [Remote host closed the connection]
charliesome has quit [Quit: zzz]
dagda1 has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
bf4 has joined #ruby-lang
GBrawl has joined #ruby-lang
zenspider_ is now known as zenspider
malconis_ has joined #ruby-lang
skade has joined #ruby-lang
bf4 has quit [Ping timeout: 256 seconds]
malconis has quit [Ping timeout: 245 seconds]
snoopybbt has quit [Quit: leaving]
jimbach has joined #ruby-lang
dfinning_ has quit [Remote host closed the connection]
usershell has joined #ruby-lang
dfinninger has joined #ruby-lang
malconis_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
usershell has quit [Ping timeout: 255 seconds]
kiyote23_ has quit [Remote host closed the connection]
centrx has joined #ruby-lang
dfinninger has quit [Ping timeout: 244 seconds]
pricees has quit [Ping timeout: 245 seconds]
GBrawl has quit [Ping timeout: 258 seconds]
skade has quit [Quit: Textual IRC Client: www.textualapp.com]
kiyote23 has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
ItSANgo has quit [Quit: Leaving...]
Guest1882 has joined #ruby-lang
solars has quit [Ping timeout: 255 seconds]
elia has quit [Quit: Computer has gone to sleep.]
mistym has quit [Remote host closed the connection]
kiyote23 has quit [Remote host closed the connection]
spastorino has quit [Quit: Connection closed for inactivity]
[H]unt3r has quit [Ping timeout: 258 seconds]
kurko__ has joined #ruby-lang
kiyote23 has joined #ruby-lang
pricees has joined #ruby-lang
dfinninger has joined #ruby-lang
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
klmlfl has quit [Remote host closed the connection]
mistym has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
midhir has quit [Read error: Connection reset by peer]
midhir has joined #ruby-lang
cleopatra has joined #ruby-lang
pricees has quit [Ping timeout: 272 seconds]
kiyote23 has quit [Remote host closed the connection]
dangerousdave has joined #ruby-lang
dangerousdave has quit [Client Quit]
kiyote23 has joined #ruby-lang
siwica1 has joined #ruby-lang
kurko___ has joined #ruby-lang
pablocantero has joined #ruby-lang
mkaesz has joined #ruby-lang
siwica has quit [Ping timeout: 258 seconds]
r0bby_ has joined #ruby-lang
kurko__ has quit [Ping timeout: 255 seconds]
robbyoconnor has quit [Ping timeout: 256 seconds]
Lewix has joined #ruby-lang
cleopatra has quit [Remote host closed the connection]
nofxx_ has joined #ruby-lang
Narzew has quit [Quit: Wychodzi]
mkaesz has quit [Ping timeout: 258 seconds]
banister has joined #ruby-lang
womble has quit [Excess Flood]
womble has joined #ruby-lang
diegoviola has joined #ruby-lang
usershell has joined #ruby-lang
ItSANgo has joined #ruby-lang
klmlfl has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
symm- has quit [Ping timeout: 240 seconds]
kiyote23 has quit [Remote host closed the connection]
dfinninger has quit [Remote host closed the connection]
Lewix has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
Steve_Jobs has quit [Quit: WeeChat 0.4.2]
Lewix has joined #ruby-lang
usershell has quit [Remote host closed the connection]
jmrepetti has quit [Remote host closed the connection]
usershell has joined #ruby-lang
jmrepetti has joined #ruby-lang
kurko__ has joined #ruby-lang
jmrepetti has quit [Read error: Connection reset by peer]