apeiros changed the topic of #ruby to: Ruby 2.1.3; 2.0.0-p576; 1.9.3-p545: http://ruby-lang.org || Paste >3 lines of text on http://gist.github.com || this channel is logged at http://irclog.whitequark.org, other public logging is prohibited
KC9YDN has joined #ruby
fabrice31 has quit [Ping timeout: 265 seconds]
KC9YDN has quit [Client Quit]
tvw has quit []
tkuchiki has joined #ruby
mercwithamouth has quit [Ping timeout: 265 seconds]
Cache_Money has quit [Quit: Cache_Money]
i_s has joined #ruby
Cache_Money has joined #ruby
d0ugb has joined #ruby
robustus has quit [Ping timeout: 255 seconds]
tonini has joined #ruby
davidhq has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
d0ugb has quit [Remote host closed the connection]
robustus has joined #ruby
Cache_Money has quit [Ping timeout: 258 seconds]
einarj has joined #ruby
tkuchiki has quit [Remote host closed the connection]
Akuma has quit [Quit: So long sukkas!]
msmith has joined #ruby
tkuchiki has joined #ruby
i_s has quit [Ping timeout: 272 seconds]
Akuma has joined #ruby
davidhq has joined #ruby
tonini has quit [Ping timeout: 250 seconds]
benzrf|offline is now known as benzrf
einarj has quit [Ping timeout: 245 seconds]
rajeshchawla has joined #ruby
davidhq_ has joined #ruby
davidhq has quit [Read error: Connection reset by peer]
msmith has quit [Ping timeout: 240 seconds]
tkuchiki has quit [Ping timeout: 265 seconds]
rkazak has joined #ruby
valeriansaliou has quit [Quit: Be back later ...]
ctp has quit [Quit: I've got an 8 hour ticket to dream land. ZZZzzz…]
Roa has quit [Changing host]
Roa has joined #ruby
timonv_ has joined #ruby
KC9YDN has joined #ruby
mercwithamouth has joined #ruby
jtdowney has joined #ruby
jtdowney has quit [Client Quit]
timonv_ has quit [Ping timeout: 255 seconds]
davidhq_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Takle_ has joined #ruby
MatthewsFace has joined #ruby
Takle has quit [Ping timeout: 240 seconds]
rajeshchawla has quit [Remote host closed the connection]
_ixti_ has quit [Ping timeout: 245 seconds]
nfk has quit [Quit: yawn]
Photism has joined #ruby
MatthewsFace has quit [Quit: Leaving]
Pupeno_ has joined #ruby
robbyoconnor has quit [Read error: Connection reset by peer]
robbyoconnor has joined #ruby
jottr has quit [Quit: WeeChat 1.0.1]
Pupeno has quit [Ping timeout: 256 seconds]
zorak8 has quit [Ping timeout: 244 seconds]
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
d0ugb has joined #ruby
<mordof> o/
<benzrf> \o
<benzrf> wot did i just hi5
jottr has joined #ruby
<mordof> lol
zorak8 has joined #ruby
Devr3d has quit [Quit: Quitte]
d0ugb has quit [Remote host closed the connection]
tadayoshi is now known as tadayosh
tadayosh is now known as kohna
jasooon has joined #ruby
kohna has quit []
charliesome has joined #ruby
tadayoshi has joined #ruby
tadayoshi has quit [Client Quit]
kohna has joined #ruby
kohna has quit [Client Quit]
luminor has joined #ruby
patrick99e99 has joined #ruby
Scotteh has joined #ruby
jasooon has quit [Ping timeout: 245 seconds]
luminor has quit [Client Quit]
luminor has joined #ruby
skinny_much has quit [Quit: Ruh Roh...]
nonks has joined #ruby
mozzarella has quit [Quit: WeeChat 1.0.1]
luminor has quit [Client Quit]
Scotteh_ has quit [Ping timeout: 244 seconds]
luminor has joined #ruby
tskogberg has quit [Ping timeout: 245 seconds]
tskogberg has joined #ruby
patrick99e99 has quit [Ping timeout: 256 seconds]
d0ugb has joined #ruby
skinny_much has joined #ruby
d0ugb has quit [Remote host closed the connection]
luminor has quit []
moritzs has joined #ruby
mengu has quit []
robbyoconnor has quit [Quit: Konversation terminated!]
emmesswhy has joined #ruby
rahult has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
leitz has quit [Remote host closed the connection]
luminor has joined #ruby
d0ugb has joined #ruby
luminor has quit [Client Quit]
rahult has joined #ruby
einarj has joined #ruby
d0ugb has quit [Remote host closed the connection]
<mordof> so I have a dilemma now that I have a decent amount of Ruby use behind me. I want to make something awesome - but it just doesn't seem like Ruby really as a fit anywhere outside of helper scripts/some server stuff, or (i know, terrible to put this as a main focus) rails dev
<mordof> are there any other ways that Ruby really shines?
[[vedic]] has joined #ruby
msmith has joined #ruby
rahult has quit [Ping timeout: 265 seconds]
einarj has quit [Ping timeout: 255 seconds]
matchaw has quit [Quit: No Ping reply in 180 seconds.]
<shevy> yes
<shevy> on the commandline
<shevy> for EVERYTHING
amundj has joined #ruby
<shevy> I use it as the glue language for everything
<shevy> wav_to_mp3.rb
msmith has quit [Ping timeout: 244 seconds]
<shevy> guess what this does
d0ugb has joined #ruby
<mordof> lol
<shevy> increase_volume.rb
<Hijiri> does it call ffmpeg?
<shevy> I also lately combined a few more scripts to quickly jump towards different directories
<shevy> Hijiri yeah mostly, though I think wav_to_mp3 uses lame (or vice versa... I also have mp3_to_wav etc...)
matchaw has joined #ruby
<mordof> i wonder how the ruby interpreter is in a cygwin environment..
BTRE has joined #ruby
<Hijiri> usually I just use bash for things like that, is it more terse in ruby?
d0ugb has quit [Remote host closed the connection]
skolman has quit [Remote host closed the connection]
skolman_ has joined #ruby
michael_mbp has quit [Excess Flood]
zenojis has quit [Ping timeout: 244 seconds]
<shevy> mordof when the path works, and ruby itself also works, then ruby will work
<shevy> Hijiri well it depends
<shevy> you can get away with quite a bit
<shevy> for instance, cd in bash
<shevy> cd /tmp/foo
<shevy> in ruby it will have to be a bit more verbose
<shevy> cd '/tmp/foo'
<shevy> unless you use symbols or constants perhaps
<shevy> BASE_DIR = '/tmp/foo'; cd BASE_DIR
<shevy> however where it really shines is when things become more complex than that
<shevy> like if you wish to use several --options
robbyoconnor has joined #ruby
<shevy> and you can tap into a GUI like ruby-gnome
<Hijiri> ok, I see
<Hijiri> thanks shevy
<Hijiri> ruby-gnome is GTK?
michael_mbp has joined #ruby
<shevy> yeah but also the gnome stuf
<shevy> *stuff
<mordof> bah.... this just makes me want to get a mac even more :/ lol
<mordof> on a mac at work, and it's awesome for ruby dev
<shevy> what can you do on a mac that you can not do on linux
skolman_ has quit [Ping timeout: 265 seconds]
<mordof> shevy: well - i imagine that's strictly limited to interacting with whatever services OS X has that linux doesn't
zenojis has joined #ruby
<mordof> but i just like the OS for mac better than linux
<benzrf> I’d just like to interject for a moment. What you’re refering to as Linux, is in fact, GNU/LInux, or as I’ve recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.
<shevy> mordof btw in PRIVMSG you asked me what to do as you run out of ideas; right now I write append.rb which will be aliased to "append", so I can append stuff into files both via > and without >
<benzrf> Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called “Linux”, and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.
<Hijiri> which parts attract you to OS X more as a development environment?
<benzrf> There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine’s resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself;
emmesswhy has quit [Quit: This computer has gone to sleep]
charliesome has quit [Quit: zzz]
<shevy> benzrf is spamming again
<benzrf> it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called “Linux” distributions are really distributions of GNU/Linux.
<shevy> can we ban him
mois3x has joined #ruby
robbyoconnor has quit [Client Quit]
<shevy> mordof ok but what services specifically?
<benzrf> shevy: fyi PRIVMSG is also how chats in channels work so
<shevy> benzrf there is a difference between 1:1 PRIVMSG and channel PRIVMSG?
<shevy> and you pasted the above stallman propaganda already a few times before
jxf has joined #ruby
<benzrf> shevy: no
<benzrf> the difference is:
<benzrf> PRIVMSG #ruby :sup
<benzrf> PRIVMSG shevy :sup
<shevy> yeah the second option is better
nateberkopec has joined #ruby
<shevy> that way Hijiri has a chance that mordof sees his question
<shevy> because I myself would not know why people use OS X
j_mcnally has joined #ruby
<shevy> aside from the good looks
nateberkopec has quit [Client Quit]
emmesswhy has joined #ruby
<shevy> and the exclusive pricing scheme
robbyoconnor has joined #ruby
<shevy> right mordof?
<mordof> Hijiri: i'm not sure if there's a distro that has this better - but the "fullscreen" or w/e it is, the mission control - the capability to switch mission control desktops with gestures, the fact that it's based on unix - but doesn't require nearly as much effort or time spent maintaining or setting up
arescorpio has joined #ruby
cnj has quit [Ping timeout: 260 seconds]
rkazak has quit [Quit: Sleep.....ing....]
<mordof> the fact that there's quite a number of amazing applications made purely for OS X and no other OS
<mordof> Alfred being one that i'm getting hooked on
<mordof> that has to do with the OS structure and openness to be interacted with from a developers' perspective
rajeshchawla has joined #ruby
gregwittman has joined #ruby
gregwittman has quit [Client Quit]
twistedpixels has quit [Ping timeout: 272 seconds]
<Hijiri> I can't think of any equivalent of mission control, but I haven't really had trouble keeping track of windows across multiple workspaces
<mordof> also one of the big things that makes Apple so successful that has appeal - they sell their hardware, that's it. A highly polished OS that works specifically well with their hardware comes with it free. There's also a lot of new features that integrate with other Apple perhipherals that are nice too
<Hijiri> and something like that doesn't seem like a huge thing for development
<benzrf> im pretty sure gnu/linux is considerably more riceable than osx
<mordof> "riceable"?
<mordof> benzrf: i wouldn't doubt it either
<Hijiri> it's when you set anime backgrounds
<Hijiri> and post them to imageboards
<benzrf> ( ͡° ͜ʖ ͡°)
cnj has joined #ruby
<mordof> Hijiri: honestly it's just the fact that everything about Apple ends up being highly integrated without any effort that really makes it nice
<mordof> especially with the new operating system
<benzrf> no, ricing = spending hours tweaking and customizing for 100% optimal efficiency and h4x0r looks
<mordof> ah
<shevy> mordof my great idea is that ruby will handle all my setups
<benzrf> for many people this includes setting anime backgrounds :o)
twistedpixels has joined #ruby
<shevy> one file is wallpaper.rb, you can guess what it attempts to do
<mordof> that's one thing that OS X doesn't do much of - is allow for customizability as far as the looks and functionality goes
<mordof> but i don't really care that much
tokik has joined #ruby
charliesome has joined #ruby
<mordof> it's a tossup
<Hijiri> how hard is it to install new libraries on OS X?
<mordof> simple
<shevy> difficult
<mordof> brew install <package>
<mordof> get homebrew
<Hijiri> and also I don't know how OSX's package management works
<shevy> homebrew has some crazy path
<mordof> OS X doesn't have a native package manager i don't think, but homebrew is great
<shevy> /usr/local/Cellar
<Hijiri> and by don't know is I just haven't looked into it
<mordof> lol, yeah.. the cellar
<shevy> Hijiri in principle you have a .bundle as far as I know
iamjarvo has joined #ruby
duncannz has quit [Ping timeout: 258 seconds]
<shevy> and I guess people can double click on that
<shevy> they got at least one thing right in homebrew
<mordof> shevy: it's roughly the same as the package manage for most linux distros
<shevy> /usr/local/Cellar/wget/1.15
<shevy> nope, it is not at all the same
<mordof> in use i mean
<mordof> i realise it's going to be drastically different under the hood
d0ugb has joined #ruby
<shevy> the linux distributions dump their shit into /usr prefix (or into / prefix more generally, with the default splitups for /etc sometimes /var and I think a few more - most others go into /usr/ prefix though)
iamjarvo has quit [Client Quit]
<shevy> they keep no version information
<shevy> that is why you see crap like debian use /usr/bin/ruby as a symlink, to point towards e. g. /usr/bin/ruby1.8 or I guess nowadays /usr/bin/ruby2.0 ?
<shevy> they also have /etc/alternatives/ which works pretty much like those versioned directories like /usr/local/Cellar/wget/1.15
<shevy> hmm sorry
<shevy> */etc/alternative/
arescorpio has quit [Remote host closed the connection]
<shevy> once you use a scheme like /usr/bin/ruby, you can have only one file there
<Hijiri> debian uses its alternatives thing
<shevy> that is why they can not easily allow for multiple versions
<Hijiri> which I ran into when breaking wine
<shevy> and that is also a reason why rvm and rbenv became so popular
cnj has quit [Ping timeout: 244 seconds]
<Hijiri> oh, that's something else, other people have told me that running wine is more difficult in OS X
<Hijiri> so I wasn't able to soku them
d0ugb has quit [Remote host closed the connection]
<Hijiri> I don't know if they tried brew though
<shevy> don't the osx folks often have binaries for their OS anyway?
<mordof> i've not tried to run wine. if i want to run windows applications i'm jsut going to use a VM and put it in seamless mode
hiyosi_ has quit [Read error: Connection reset by peer]
duncannz has joined #ruby
<Hijiri> I prefer to avoid the extra overhead of a VM if I can
<Hijiri> and also I prefer not to run windows
<shevy> hehehe
<shevy> I am fine with any OS
<shevy> as long as I have ruby
cnj has joined #ruby
<shevy> I can use ruby-gnome on windows too so it's nice
hiyosi has joined #ruby
jasooon has joined #ruby
fabrice31 has joined #ruby
robustus has quit [Ping timeout: 250 seconds]
emmesswhy has quit [Quit: This computer has gone to sleep]
<shevy> I even found out that you can use more than 256 colours on the commandline \o/
nonks has quit [Ping timeout: 258 seconds]
<mordof> hm?
robustus has joined #ruby
<shevy> my scripts can use these colours \o/
<mordof> interesting
<mordof> ok i'm gonna go so i can get my server switched over, lol
<mordof> i don't mutli-task very well
<shevy> see you in 6 months
<mordof> haha
<mordof> can't even deny that with my past record, lol
<shevy> :D
fabrice31 has quit [Ping timeout: 260 seconds]
<mordof> shevy: see you when i see you :) i will be back, just no idea when :p
rkazak has joined #ruby
mordof has quit [Quit: WeeChat 0.3.7]
jasooon has quit [Ping timeout: 245 seconds]
moritzs has quit [Remote host closed the connection]
tonini has joined #ruby
emmesswhy has joined #ruby
gsd has joined #ruby
tonini has quit [Ping timeout: 250 seconds]
rahult has joined #ruby
Channel6 has quit [Quit: Leaving]
d0ugb has joined #ruby
tris has quit [Remote host closed the connection]
timonv_ has joined #ruby
d0ugb has quit [Remote host closed the connection]
razieliyo has joined #ruby
razieliyo has joined #ruby
mercwithamouth has quit [Ping timeout: 272 seconds]
<razieliyo> hi
<razieliyo> is there any implementation of sort that doesn't return the sorted array, but modifies the one you're sorting?
nonks has joined #ruby
charliesome has quit [Quit: zzz]
<shevy> perhaps .sort!
timonv_ has quit [Ping timeout: 260 seconds]
msmith has joined #ruby
<shevy> array = %w( abc kli def ) # => ["abc", "kli", "def"]
<shevy> array.sort! # => ["abc", "def", "kli"]
<shevy> array # => ["abc", "def", "kli"]
d0ugb has joined #ruby
jY has left #ruby ["Linkinus - http://linkinus.com"]
<razieliyo> perfect, thanks shevy!
<shevy> long live the simplicity of ruby \o/
<razieliyo> hahaha yeah
<razieliyo> my A* is working now
<razieliyo> =D
tatsuo has joined #ruby
d0ugb has quit [Remote host closed the connection]
jottr has quit [Ping timeout: 255 seconds]
[[vedic]] has quit [Ping timeout: 250 seconds]
msmith has quit [Ping timeout: 272 seconds]
weemsledeux has joined #ruby
sjohnsen has quit [Ping timeout: 260 seconds]
jottr has joined #ruby
charliesome has joined #ruby
robbyoconnor has quit [Ping timeout: 240 seconds]
mercwithamouth has joined #ruby
doug1 has joined #ruby
arup_r has joined #ruby
boombadaroomba has joined #ruby
willgorman has quit [Ping timeout: 245 seconds]
starless has joined #ruby
jottr_ has joined #ruby
moritzs has joined #ruby
jottr has quit [Read error: Connection reset by peer]
harax_ has joined #ruby
sjohnsen has joined #ruby
boombadaroomba has quit [Ping timeout: 240 seconds]
d0ugb has joined #ruby
moritzs has quit [Remote host closed the connection]
d0ugb has quit [Remote host closed the connection]
moritzs has joined #ruby
moritzs has quit [Remote host closed the connection]
i_s has joined #ruby
moritzs has joined #ruby
jottr has joined #ruby
rajeshchawla has quit []
jottr_ has quit [Ping timeout: 255 seconds]
i_s has quit [Ping timeout: 258 seconds]
Deele has quit [Ping timeout: 260 seconds]
danblack has quit [Ping timeout: 246 seconds]
yfeldblum has quit [Ping timeout: 258 seconds]
moritzs has quit [Remote host closed the connection]
pu22l3r has joined #ruby
cashnguns has quit [Ping timeout: 258 seconds]
SCHAAP137 has quit [Remote host closed the connection]
iinzg has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
rh1n0 has joined #ruby
rh1n0 has quit [Client Quit]
Soda has joined #ruby
Spami has joined #ruby
weemsledeux has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Spami has quit [Max SendQ exceeded]
Spami has joined #ruby
emmesswhy has quit [Ping timeout: 255 seconds]
jottr has quit [Ping timeout: 265 seconds]
ponga has joined #ruby
tonini has joined #ruby
tatsuo has quit [Remote host closed the connection]
mozzarella has joined #ruby
tyll_ has joined #ruby
tonini has quit [Ping timeout: 250 seconds]
d0ugb has joined #ruby
d0ugb has quit [Remote host closed the connection]
VanillaGoat__ has joined #ruby
tyll has quit [Ping timeout: 255 seconds]
emmesswhy has joined #ruby
davedev24_ has quit []
VanillaGoat_ has quit [Ping timeout: 250 seconds]
tokik has quit [Ping timeout: 260 seconds]
yfeldblum has joined #ruby
amundj has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
chipotle has quit [Quit: cya]
einarj has joined #ruby
d0ugb has joined #ruby
harax_ has quit [Ping timeout: 265 seconds]
yfeldblu_ has joined #ruby
msmith has joined #ruby
willgorman has joined #ruby
jxf has quit [Ping timeout: 250 seconds]
d0ugb has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 258 seconds]
koderok has joined #ruby
einarj has quit [Ping timeout: 265 seconds]
yfeldblu_ has quit [Ping timeout: 255 seconds]
kaspergrubbe has quit [Remote host closed the connection]
msmith has quit [Ping timeout: 265 seconds]
thsig has joined #ruby
ziggles has joined #ruby
<ziggles> hey guys, i've been reading the docs and for the life of me can't figure this out...
<ziggles> When should i use to_enum?
timonv_ has joined #ruby
chipotle has joined #ruby
snath has quit [Ping timeout: 255 seconds]
<benzrf> ziggles: in your methods that take a block and call it multiple times
<ziggles> I've recently seen code similar to: `return enum_for(:each) unless block_given?` and have no idea what it's application is
<benzrf> ziggles: the to_enum method takes the name of aonther method and then produces an enum from it
<benzrf> example:
<benzrf> >> def cool; yield 1; puts "ok!"; yield 2; end; e = to_enum :cool
<eval-in__> benzrf => #<Enumerator: main:cool> (https://eval.in/210213)
<benzrf> >> def cool; yield 1; puts "ok!"; yield 2; end; e = to_enum :cool; e.to_a
<eval-in__> benzrf => ok! ... (https://eval.in/210214)
<pontiki> ziggles: this article may help (or not) http://blog.arkency.com/2014/01/ruby-to-enum-for-enumerator/
<ziggles> pontiki: I'm actually looking @ that article right now and that's the reason i joined to discuss :)
timonv_ has quit [Ping timeout: 245 seconds]
snath has joined #ruby
jasooon has joined #ruby
<ziggles> benzrf: i'm following the code you posted... but what's not clear to me is why/when you would do that
SilkFox has quit [Ping timeout: 244 seconds]
baordog has left #ruby [#ruby]
<benzrf> ziggles: well
<pontiki> ziggles: okay, then, maybe not :D
<benzrf> ziggles: consider how there are a bunch of methods that either take a block or return an enumerator:
<benzrf> >> [1, 2, 3].each {|v| puts v}
<eval-in__> benzrf => 1 ... (https://eval.in/210215)
arup_r has quit [Quit: Leaving.]
<benzrf> >> [1, 2, 3].each
<eval-in__> benzrf => #<Enumerator: [1, 2, 3]:each> (https://eval.in/210216)
<benzrf> >> [1, 2, 3].each_with_index {|i, v| puts [i, v]}
<eval-in__> benzrf => 1 ... (https://eval.in/210217)
<benzrf> >> [1, 2, 3].each_with_index
<eval-in__> benzrf => #<Enumerator: [1, 2, 3]:each_with_index> (https://eval.in/210218)
<benzrf> now you, too, can do that with the magic of return enum_for(:each) unless block_given? !
<benzrf> >> enum_for
<eval-in__> benzrf => #<Enumerator: main:each> (https://eval.in/210219)
<benzrf> right
dh64 has quit [Ping timeout: 258 seconds]
<benzrf> (it does :each by default if no name is given)
jennings_wang has joined #ruby
<ziggles> is the benefit that w/o a block you will get an Enumerator back? Sorry for such dumb questions but it's really not obvious to me for some reason
<benzrf> ziggles: yeah
<jennings_wang> quit
jennings_wang has quit [Client Quit]
pw_pw has quit [Read error: Connection reset by peer]
<ziggles> benzrf: i see... And is the benefit of getting an Enumerator back that the Enumerator preserves enumeration state?
<ziggles> For example, in the article pontiki linked, they show that with an enumerator you can do things like e.next
<benzrf> the benefit is that enumerators are cooool
koderok has quit [Read error: Connection reset by peer]
d0ugb has joined #ruby
d0ugb has quit [Remote host closed the connection]
nonks has quit [Ping timeout: 265 seconds]
fabrice31 has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
<ziggles> i'm definitely not doubting that! :)
emmesswhy has joined #ruby
ebolajackson has joined #ruby
Akuma has quit [Quit: So long sukkas!]
magic_ has joined #ruby
Akuma has joined #ruby
fabrice31 has quit [Ping timeout: 265 seconds]
techsethi has joined #ruby
magic__ has quit [Ping timeout: 244 seconds]
ziggles has quit []
VBlizzard is now known as Blizzy
Hobogrammer_ has joined #ruby
beneggett has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Hobogrammer has quit [Ping timeout: 244 seconds]
Jiye has quit [Quit: Be back later ...]
beneggett has joined #ruby
d0ugb has joined #ruby
ylluminarious has joined #ruby
Soda has quit [Remote host closed the connection]
mary5030 has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
d0ugb has quit [Remote host closed the connection]
emmesswhy has joined #ruby
doug1 has quit [Ping timeout: 240 seconds]
ylluminarious has quit [Ping timeout: 250 seconds]
beneggett has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
doug1 has joined #ruby
thsig_ has joined #ruby
ndrei has joined #ruby
d0ugb has joined #ruby
tonini has joined #ruby
d0ugb has quit [Remote host closed the connection]
thsig has quit [Ping timeout: 260 seconds]
ebolajackson has quit [Quit: Saliendo]
pu22l3r has quit [Read error: No route to host]
tonini has quit [Ping timeout: 250 seconds]
pu22l3r has joined #ruby
d0ugb has joined #ruby
starless has quit [Quit: WeeChat 1.0.1]
braincra- has quit [Quit: bye bye]
d0ugb has quit [Remote host closed the connection]
deed02392 has quit [Quit: Zai Jian]
rahult has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
willywos has joined #ruby
braincrash has joined #ruby
jenrzzz has joined #ruby
NoNMaDDeN has joined #ruby
msmith has joined #ruby
einarj has joined #ruby
msmith has quit [Ping timeout: 265 seconds]
einarj has quit [Ping timeout: 250 seconds]
emmesswhy has quit [Quit: This computer has gone to sleep]
SilkFox has joined #ruby
iinzg has quit [Ping timeout: 272 seconds]
hellangel7 has joined #ruby
emmesswhy has joined #ruby
SilkFox has quit [Ping timeout: 265 seconds]
jasooon has quit [Ping timeout: 265 seconds]
hiyosi has quit [Read error: Connection reset by peer]
hiyosi has joined #ruby
jasooon has joined #ruby
matt_m has joined #ruby
lele has quit [Ping timeout: 260 seconds]
beneggett has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
doug1 has quit [Ping timeout: 250 seconds]
lele has joined #ruby
d0ugb has joined #ruby
d0ugb has quit [Remote host closed the connection]
beneggett has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jenrzzz has quit [Ping timeout: 265 seconds]
kireevco has joined #ruby
jasooon has quit [Ping timeout: 240 seconds]
mozzarella has quit [Ping timeout: 255 seconds]
doug1 has joined #ruby
nisstyre has quit [Ping timeout: 265 seconds]
greygrissom has joined #ruby
pu22l3r has quit [Remote host closed the connection]
patrick99e99 has joined #ruby
<shevy> good
<shevy> if you would doubt it
mozzarella has joined #ruby
<shevy> you would have to use
<shevy> perl
patrick99e99 has quit [Ping timeout: 256 seconds]
linojon has quit [Quit: linojon]
doug1 has quit [Read error: No route to host]
yfeldblum has joined #ruby
<eam> shevy: hello
beneggett has joined #ruby
Scotteh_ has joined #ruby
Scotteh has quit [Ping timeout: 260 seconds]
tatsuo has joined #ruby
yfeldblum has quit [Ping timeout: 260 seconds]
mozzarella has quit [Quit: WeeChat 1.1-dev]
mozzarella has joined #ruby
emmesswhy has joined #ruby
<razieliyo> and this way it's going! https://github.com/alesegdia/ragman
<razieliyo> slow but going
<razieliyo> with this rate of work I'll never end
sevenseacat has joined #ruby
emmesswhy has quit [Client Quit]
<soahccc> So file sockets don't work on windows right? Is there any non-port alternative I could use?
mercwithamouth has quit [Ping timeout: 250 seconds]
rkalfane has quit [Quit: Textual IRC Client: www.textualapp.com]
kireevco has quit [Quit: Leaving.]
<Nilium> soahccc: Like winsock?
timonv_ has joined #ruby
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Nilium> Could also use ZeroMQ if you're just using sockets for IPC.
lxsameer has joined #ruby
lxsameer has joined #ruby
keen_____ has joined #ruby
<soahccc> Nilium: Well I have a ruby daemon process and I would like to have a custom REPL. Generally the concept of a socket works for me but I only worked with TCP sockets
<Nilium> But is it purely for inter-process comm?
keen____ has quit [Ping timeout: 245 seconds]
Wolland has joined #ruby
iamdoo2 has joined #ruby
timonv_ has quit [Ping timeout: 255 seconds]
<soahccc> Nilium: yeah but session based (I don't know if that makes sense). At the end I want to run a command to get into pry which then can invoke stuff in the daemonized process
msmith has joined #ruby
<soahccc> so yeah I guess that is IPC
tonini has joined #ruby
<Nilium> Well, sessions are more your code's problem and less the sockets. If you just want good cross-platform IPC sockets, take a look at ZeroMQ.
<Nilium> Also works fairly well for thread communication.
einarj has joined #ruby
mercwithamouth has joined #ruby
<Nilium> I can't remember which ZMQ gem is current though, so you'll have to look into that
<soahccc> would you just need the gem or still the installer? ZeroMQ seems nice but it needs to be installed, no?
Wolland_ has quit [Ping timeout: 265 seconds]
<Nilium> Far as I know, you'll need to have libzmq installed somehow, but I'm not sure about an installer there.
benzrf is now known as benzrf|offline
<Nilium> If ZeroMQ has an installer, it'd be news to me, but I don't use Windows, so libraries with installers are kind of rare
<Nilium> Kind of limited to the likes of Qt and other ones that're so big that building the entire thing might be measured in days
<soahccc> Yeah I just would like to reduce that as the windows installer is already hell... tar, git, ruby, devkit, ...
<soahccc> the installer for my program I mean.
<Nilium> Could just bundle the shared library with it.
tonini has quit [Ping timeout: 250 seconds]
VBlizzard has joined #ruby
msmith has quit [Ping timeout: 256 seconds]
einarj has quit [Ping timeout: 244 seconds]
mary5030 has quit [Remote host closed the connection]
<soahccc> I have 28 lines forming a simple chat server. That must be doable with files instead of ports :( There is UNIXsocket and pain for windows :)
<soahccc> I had a hard time supporting windows so far... It's really annoying
<Nilium> There's also winsock, depending on whether you want to start writing stuff in C.
<soahccc> I'm not that into C I'm afraid
badhatter has quit [Read error: Connection reset by peer]
Blizzy has quit [Ping timeout: 258 seconds]
<Nilium> I'm not sure there're any really simple options for Windows, anyway. It's not exactly known for being POSIX-friendly.
siwica has quit [Ping timeout: 240 seconds]
<soahccc> yeah I had a funny time figuring out how to update the PATH
kireevco has joined #ruby
<soahccc> ended up using a 3rd party tool
fabrice31 has joined #ruby
arclitgo1d has joined #ruby
<arclitgo1d> ayup
SilkFox has joined #ruby
thsig_ has quit [Remote host closed the connection]
tonini has joined #ruby
yfeldblum has joined #ruby
<soahccc> Would it be dirty to try to bind to a port and save that like a pid in a file? I don't actually mind the TCP socket but the configuration step for multiple instances of the app
arclitgo1d has quit [Quit: leaving]
Takle_ has quit [Remote host closed the connection]
fabrice31 has quit [Ping timeout: 244 seconds]
SilkFox has quit [Ping timeout: 260 seconds]
* Nilium shrugs
<shevy> if you can write to the filesystem
<shevy> sure - you put extra information into files
<soahccc> I mean "trying to find an empty port"
badhatter has joined #ruby
ponga has quit [Remote host closed the connection]
sepp2k has quit [Read error: Connection reset by peer]
tonini has quit [Ping timeout: 250 seconds]
koderok has joined #ruby
benzrf|offline is now known as benzrf
hamakn has quit [Remote host closed the connection]
mary5030 has joined #ruby
emmesswhy has joined #ruby
havenwood has quit [Remote host closed the connection]
<shevy> dumdedum
nonks has joined #ruby
Channel6 has joined #ruby
cn28h has quit [Ping timeout: 245 seconds]
mary5030 has quit [Remote host closed the connection]
willywos has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Fire-Dragon-DoL has joined #ruby
cn28h has joined #ruby
ylluminarious has joined #ruby
starkhalo has quit [Ping timeout: 250 seconds]
yfeldblu_ has joined #ruby
chrishough has quit [Quit: Textual IRC Client: www.textualapp.com]
cn28h has quit [Ping timeout: 245 seconds]
yfeldblum has quit [Ping timeout: 250 seconds]
iamdoo2 has quit [Remote host closed the connection]
ylluminarious has quit [Ping timeout: 245 seconds]
Wolland has quit [Remote host closed the connection]
cn28h has joined #ruby
kobain has quit [Quit: KVIrc 4.1.3 Equilibrium http://www.kvirc.net/]
yfeldblum has joined #ruby
toretore has joined #ruby
yfeldblu_ has quit [Ping timeout: 256 seconds]
hellangel7 has quit [Ping timeout: 256 seconds]
tatsuo has quit [Remote host closed the connection]
klaut has joined #ruby
mois3x has quit [Quit: mois3x]
msmith has joined #ruby
Nilium has quit [Ping timeout: 272 seconds]
oleo__ has joined #ruby
oleo is now known as Guest31007
msmith has quit [Ping timeout: 250 seconds]
nonks has quit [Ping timeout: 244 seconds]
Guest31007 has quit [Ping timeout: 244 seconds]
zorak8 has quit [Ping timeout: 250 seconds]
SilkFox has joined #ruby
iinzg has joined #ruby
hamakn has joined #ruby
Wolland has joined #ruby
abuzze has joined #ruby
abuzze has quit [Remote host closed the connection]
magic_ has quit [Quit: Leaving]
magic_ has joined #ruby
abuzze has joined #ruby
SilkFox has quit [Ping timeout: 272 seconds]
tonini has joined #ruby
toretore has quit [Quit: This computer has gone to sleep]
boombadaroomba has joined #ruby
Wolland has quit [Ping timeout: 245 seconds]
agjacome has joined #ruby
ctp has joined #ruby
boombadaroomba has quit [Ping timeout: 250 seconds]
tonini has quit [Ping timeout: 250 seconds]
tonini has joined #ruby
RikkiMongoose has joined #ruby
RikkiMongoose has quit [Client Quit]
diegoviola has quit [Quit: WeeChat 1.0.1]
robbyoconnor has joined #ruby
iamdoo2 has joined #ruby
koderok has quit [Ping timeout: 245 seconds]
koderok has joined #ruby
patrick99e99 has joined #ruby
kireevco has quit [Quit: Leaving.]
koderok has quit [Read error: Connection reset by peer]
mary5030 has joined #ruby
koderok has joined #ruby
Channel6 has quit [Quit: Leaving]
patrick99e99 has quit [Ping timeout: 256 seconds]
Wolland has joined #ruby
timonv_ has joined #ruby
Lewix has quit [Remote host closed the connection]
timonv_ has quit [Ping timeout: 240 seconds]
Lewix has joined #ruby
Wolland has quit [Ping timeout: 265 seconds]
Rollabunna has quit [Quit: Leaving...]
Lewix has quit [Ping timeout: 256 seconds]
kireevco has joined #ruby
fabrice31 has joined #ruby
alem0lars|away is now known as alem0lars
emmesswhy has quit [Quit: This computer has gone to sleep]
NoNMaDDeN has quit [Quit: Leaving...]
msmith has joined #ruby
abuzze_ has joined #ruby
fabrice31 has quit [Ping timeout: 265 seconds]
kireevco has quit [Quit: Leaving.]
kireevco has joined #ruby
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #ruby
techsethi has quit [Quit: techsethi]
sivoais has quit [Ping timeout: 245 seconds]
abuzze has quit [Ping timeout: 244 seconds]
msmith has quit [Ping timeout: 240 seconds]
sivoais has joined #ruby
mary5030 has quit [Remote host closed the connection]
kireevco has quit [Quit: Leaving.]
SilkFox has joined #ruby
ht__th has joined #ruby
ctp has quit [Quit: I've got an 8 hour ticket to dream land. ZZZzzz…]
kireevco has joined #ruby
kireevco has quit [Client Quit]
SilkFox has quit [Ping timeout: 265 seconds]
kireevco has joined #ruby
ramfjord has quit [Ping timeout: 258 seconds]
kireevco has quit [Ping timeout: 250 seconds]
rbrs has joined #ruby
benzrf is now known as benzrf|offline
codecop has joined #ruby
benzrf|offline is now known as benzrf
rahult has joined #ruby
tvw has joined #ruby
benzrf is now known as benzrf|offline
jimbo3918 has joined #ruby
Scotteh_ has quit [Ping timeout: 244 seconds]
JohnBat26 has joined #ruby
ylluminarious has joined #ruby
bMalum has joined #ruby
andrewlio has joined #ruby
bigmac has joined #ruby
rbrs has quit [Quit: Leaving]
muhammadn has joined #ruby
hellangel7 has joined #ruby
ylluminarious has quit [Ping timeout: 265 seconds]
Wolland has joined #ruby
razieliyo has quit [Quit: Saliendo]
User458764 has joined #ruby
jheg has joined #ruby
Wolland has quit [Ping timeout: 265 seconds]
SCHAAP137 has joined #ruby
atmosx has quit [Quit: WeeChat 0.4.4-dev]
timonv_ has joined #ruby
tonini has quit [Ping timeout: 250 seconds]
msmith has joined #ruby
luminor has joined #ruby
timonv_ has quit [Ping timeout: 244 seconds]
msmith has quit [Ping timeout: 255 seconds]
Versality has joined #ruby
Kuraiko has quit [Quit: Kuraiko]
SilkFox has joined #ruby
tonini has joined #ruby
agjacome has quit [Ping timeout: 255 seconds]
Takle has joined #ruby
SilkFox has quit [Ping timeout: 260 seconds]
jgt has joined #ruby
Takle has quit [Ping timeout: 245 seconds]
mary5030 has joined #ruby
mary5030 has quit [Ping timeout: 265 seconds]
KC9YDN has quit [Quit: "Let a hundred flowers bloom: let a hundred schools of thought contend." - Mao Zedong]
nonks has joined #ruby
ARCADIVS has quit [Quit: ARCADIVS]
yfeldblum has quit [Ping timeout: 256 seconds]
duncannz has quit [Remote host closed the connection]
yfeldblum has joined #ruby
jimbo3918 has quit [Quit: Leaving]
Hobogrammer_ has quit [Ping timeout: 255 seconds]
rippa has joined #ruby
ndrei has quit [Ping timeout: 272 seconds]
Cache_Money has joined #ruby
renderful has joined #ruby
spider-mario has joined #ruby
KC9YDN has joined #ruby
spider-mario has quit [Remote host closed the connection]
spider-mario has joined #ruby
renderful has quit [Ping timeout: 272 seconds]
Wolland has joined #ruby
decoponio has joined #ruby
fabrice31 has joined #ruby
srkn has joined #ruby
<jgt> ¡Hola!
<jgt> How do I access a method directly outside a Rake namespace?
tonini has quit [Ping timeout: 250 seconds]
Wolland has quit [Ping timeout: 244 seconds]
<jgt> if I have def foo; end; namespace :bar { task :baz { foo } }, I can’t access foo from inside baz
fabrice31 has quit [Ping timeout: 245 seconds]
srkn has left #ruby ["WeeChat 1.0.1"]
<jgt> nevermind
nonks has quit [Ping timeout: 250 seconds]
Versality has quit [Read error: Connection reset by peer]
Versality has joined #ruby
muhammadn has quit [Remote host closed the connection]
jheg has quit [Quit: jheg]
bMalum has quit [Quit: bMalum]
Spami has quit [Quit: This computer has gone to sleep]
timonv_ has joined #ruby
msmith has joined #ruby
timonv_ has quit [Ping timeout: 255 seconds]
oo_ has joined #ruby
msmith has quit [Ping timeout: 245 seconds]
nonks has joined #ruby
Hanmac has quit [Ping timeout: 265 seconds]
Akagi201 has joined #ruby
Versality has quit [Read error: Connection reset by peer]
Versality has joined #ruby
SilkFox has joined #ruby
j_mcnally has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
SilkFox has quit [Ping timeout: 244 seconds]
jheg has joined #ruby
abuzze_ has quit [Remote host closed the connection]
abuzze has joined #ruby
luminor has quit []
valeriansaliou has joined #ruby
Hanmac has joined #ruby
abuzze has quit [Ping timeout: 265 seconds]
i8igmac has quit [Quit: Leaving]
jheg has quit [Quit: jheg]
Cache_Money has quit [Quit: Cache_Money]
luminor has joined #ruby
Spami has joined #ruby
greygrissom has quit []
carraroj has joined #ruby
Spami has quit [Ping timeout: 245 seconds]
nfk has joined #ruby
valeriansaliou has quit [Quit: Be back later ...]
Wolland has joined #ruby
livathinos has joined #ruby
tonini has joined #ruby
Spami has joined #ruby
Wolland has quit [Ping timeout: 255 seconds]
carraroj has quit [Ping timeout: 260 seconds]
ringarin has joined #ruby
tonini has quit [Ping timeout: 250 seconds]
jenrzzz has joined #ruby
jgt has quit [Ping timeout: 240 seconds]
kasperti_ has joined #ruby
carraroj has joined #ruby
msmith has joined #ruby
timonv_ has joined #ruby
t_p has quit [Quit: Computer has gone to sleep.]
beneggett has quit [Quit: Textual IRC Client: www.textualapp.com]
kevinfagan has quit [Max SendQ exceeded]
kevinfagan has joined #ruby
Photism has quit [Quit: Leaving]
kevinfagan has quit [Excess Flood]
msmith has quit [Ping timeout: 258 seconds]
kevinfagan has joined #ruby
tonini has joined #ruby
SilkFox has joined #ruby
jgt has joined #ruby
Joufflu has quit [Ping timeout: 265 seconds]
theotherstupidgu has joined #ruby
oo_ has quit [Remote host closed the connection]
oo__ has joined #ruby
SilkFox has quit [Ping timeout: 240 seconds]
tonini has quit [Quit: Lost terminal]
tonini has joined #ruby
gauke has joined #ruby
Pupeno_ has quit [Remote host closed the connection]
jgt has quit [Ping timeout: 258 seconds]
merqlove has joined #ruby
hmsimha has quit [Ping timeout: 240 seconds]
Pupeno has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
weemsledeux has joined #ruby
weemsledeux has joined #ruby
amijan has joined #ruby
gauke has quit [Quit: gauke]
claymore has joined #ruby
max96at|off is now known as max96at
hellangel7 has quit [Remote host closed the connection]
livathinos has quit [Remote host closed the connection]
jottr has joined #ruby
harax_ has joined #ruby
shredding has joined #ruby
fabrice31 has joined #ruby
codecop has quit [Remote host closed the connection]
patrick99e99 has joined #ruby
rahult is now known as rahult_
Deele has joined #ruby
kies has quit [Ping timeout: 260 seconds]
fabrice31 has quit [Ping timeout: 244 seconds]
kies has joined #ruby
patrick99e99 has quit [Ping timeout: 245 seconds]
Wolland has joined #ruby
Polysics has joined #ruby
harax_ has quit [Ping timeout: 265 seconds]
nonks has quit [Quit: WeeChat 1.0]
amijan has left #ruby [#ruby]
<Hijiri> 2
Wolland has quit [Ping timeout: 265 seconds]
aaronite has joined #ruby
<aaronite> hello, how do I access a variable from a class?
licantropoo has joined #ruby
<licantropoo> aloaaaa
licantropoo has left #ruby [#ruby]
rahult_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shredding has quit [Quit: shredding]
rahult has joined #ruby
Polysics has quit [Quit: Colloquy for iPad - http://colloquy.mobi]
<tobiasvl> aaronite: what variable?
niklasb has joined #ruby
niklasb has quit [Client Quit]
<aaronite> tobiasvl: basically, The server I connected to using a socket returned a key
<aaronite> Since i'm using a class I need that in my other file
niklasb has joined #ruby
<aaronite> nvm i found another way around it
msmith has joined #ruby
luckyruby has joined #ruby
michael_mbp has quit [Excess Flood]
luminor has quit []
shredding has joined #ruby
aaronite has quit [Quit: leaving]
michael_mbp has joined #ruby
jgt has joined #ruby
msmith has quit [Ping timeout: 240 seconds]
carraroj has quit [Ping timeout: 240 seconds]
amundj has joined #ruby
bMalum has joined #ruby
SilkFox has joined #ruby
<tobiasvl> oook
oo__ has quit [Remote host closed the connection]
Scotteh has joined #ruby
lucyinthesky has joined #ruby
lucyinthesky has left #ruby [#ruby]
Spami has quit [Ping timeout: 255 seconds]
oo__ has joined #ruby
iamdoo2 has quit []
rahult has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
claw has joined #ruby
rahult has joined #ruby
claw___ has quit [Ping timeout: 260 seconds]
SilkFox has quit [Ping timeout: 260 seconds]
otakbeku has joined #ruby
otakbeku has quit [Client Quit]
luminor has joined #ruby
otakbeku has joined #ruby
otakbeku has quit [Client Quit]
godd2 has quit [Ping timeout: 255 seconds]
KeroroGunsou has joined #ruby
[[vedic]] has joined #ruby
ringarin has quit [Ping timeout: 244 seconds]
vyorkin has joined #ruby
Versality has quit [Quit: Be back later ...]
klaut has quit [Remote host closed the connection]
Versality has joined #ruby
timonv_ has quit [Remote host closed the connection]
Devr3d has joined #ruby
KeroroGunsou has quit [Quit: leaving]
KeroroGunsou has joined #ruby
KeroroGunsou has quit [Client Quit]
m8 has joined #ruby
shredding has quit [Quit: shredding]
koderok has quit [Ping timeout: 255 seconds]
iinzg has quit [Ping timeout: 258 seconds]
rpag has quit [Quit: Leaving]
ylluminarious has joined #ruby
Trieste has quit [Ping timeout: 260 seconds]
davidhq has joined #ruby
jonr22 has joined #ruby
moritzs has joined #ruby
Wolland has joined #ruby
ylluminarious has quit [Ping timeout: 264 seconds]
jottr has quit [Read error: Connection reset by peer]
jottr_ has joined #ruby
Trieste has joined #ruby
jonr22 has quit [Remote host closed the connection]
kirun has joined #ruby
Wolland has quit [Ping timeout: 260 seconds]
nateberkopec has joined #ruby
amundj has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Versality has quit [Remote host closed the connection]
Versality has joined #ruby
kaspergrubbe has joined #ruby
oleo__ is now known as oleo
shredding has joined #ruby
shredding has quit [Client Quit]
oleo has quit [Remote host closed the connection]
sinkensabe has joined #ruby
Timgauthier has joined #ruby
kaspergrubbe has quit [Ping timeout: 240 seconds]
shredding has joined #ruby
oleo has joined #ruby
Spami has joined #ruby
eyeinthesky has joined #ruby
hellangel7 has joined #ruby
msmith has joined #ruby
siwica has joined #ruby
vyorkin has quit [Quit: WeeChat 1.0.1]
_ixti_ has joined #ruby
msmith has quit [Ping timeout: 255 seconds]
luminor has quit []
Scotteh_ has joined #ruby
bMalum has quit [Quit: bMalum]
timonv_ has joined #ruby
sigurding has joined #ruby
luminor has joined #ruby
Spami has quit [Ping timeout: 240 seconds]
Scotteh has quit [Ping timeout: 244 seconds]
luminor has quit [Client Quit]
sinkensabe has quit [Remote host closed the connection]
kaspergrubbe has joined #ruby
eyeinthesky is now known as lucyinthesky
oo__ has quit [Remote host closed the connection]
Spami has joined #ruby
SilkFox has joined #ruby
timonv_ has quit [Remote host closed the connection]
timonv_ has joined #ruby
luminor has joined #ruby
jimbach has joined #ruby
lucyinthesky has quit [Quit: Leaving]
abuzze has joined #ruby
SilkFox has quit [Ping timeout: 240 seconds]
shredding has quit [Quit: shredding]
abuzze has quit [Ping timeout: 265 seconds]
oo_ has joined #ruby
fabrice31 has joined #ruby
luminor has quit []
luminor has joined #ruby
timonv_ has quit [Remote host closed the connection]
lxsameer has quit [Remote host closed the connection]
fabrice31 has quit [Ping timeout: 245 seconds]
harax_ has joined #ruby
oo_ has quit [Remote host closed the connection]
shredding has joined #ruby
oo_ has joined #ruby
luminor has quit [Ping timeout: 272 seconds]
merqlove has quit [Quit: Connection closed for inactivity]
koderok has joined #ruby
sinkensabe has joined #ruby
<pontiki> Librarian?
timonv_ has joined #ruby
rikai has quit [Quit: No Ping reply in 180 seconds.]
koderok has quit [Read error: Connection reset by peer]
koderok has joined #ruby
harax_ has quit [Ping timeout: 260 seconds]
Timgauthier is now known as timgauthier_away
oo_ has quit [Ping timeout: 265 seconds]
timgauthier_away has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
techsethi has joined #ruby
Pupeno has quit [Remote host closed the connection]
ValicekB has quit [Ping timeout: 260 seconds]
jeregrine has quit [Ping timeout: 260 seconds]
riton has quit [Ping timeout: 260 seconds]
ec has quit [Ping timeout: 260 seconds]
shtirlic has quit [Ping timeout: 260 seconds]
tyll_ has quit [Ping timeout: 260 seconds]
mosez has quit [Ping timeout: 260 seconds]
ggherdov has quit [Ping timeout: 260 seconds]
jokke has quit [Ping timeout: 260 seconds]
kwd has quit [Ping timeout: 260 seconds]
tekacs has quit [Ping timeout: 260 seconds]
adambeynon has quit [Ping timeout: 260 seconds]
Tranquility___ has quit [Ping timeout: 260 seconds]
gregf_ has quit [Ping timeout: 260 seconds]
jrunning has quit [Ping timeout: 260 seconds]
peckermanzzz has quit [Ping timeout: 260 seconds]
shredding has quit [Ping timeout: 260 seconds]
sjohnsen has quit [Ping timeout: 260 seconds]
papal has quit [Ping timeout: 260 seconds]
gkra has quit [Ping timeout: 260 seconds]
fella7s has quit [Ping timeout: 260 seconds]
machty has quit [Ping timeout: 260 seconds]
yasu has quit [Ping timeout: 260 seconds]
siwica has quit [Remote host closed the connection]
xwq17 has quit [Ping timeout: 260 seconds]
Darryl has quit [Ping timeout: 260 seconds]
Nahra has quit [Ping timeout: 260 seconds]
Affix has quit [Ping timeout: 260 seconds]
mityaz has quit [Ping timeout: 260 seconds]
dr_toboggan has quit [Ping timeout: 260 seconds]
happyface_ has quit [Ping timeout: 260 seconds]
ohcibi has quit [Ping timeout: 260 seconds]
kaplejon has quit [Ping timeout: 260 seconds]
Caius has quit [Ping timeout: 260 seconds]
Scotteh_ has quit [Ping timeout: 260 seconds]
lsmola has quit [Ping timeout: 260 seconds]
bhaak has quit [Ping timeout: 260 seconds]
magic has quit [Ping timeout: 260 seconds]
Guest71097 has quit [Ping timeout: 260 seconds]
michael_mbp has quit [Ping timeout: 260 seconds]
heyimwill has quit [Ping timeout: 260 seconds]
ph8 has quit [Ping timeout: 260 seconds]
{xenomorph} has quit [Ping timeout: 260 seconds]
kalz has quit [Ping timeout: 260 seconds]
kalleth has quit [Ping timeout: 260 seconds]
sirecote has quit [Ping timeout: 260 seconds]
[[vedic]] has quit [Ping timeout: 260 seconds]
hfp has quit [Ping timeout: 260 seconds]
caveat- has quit [Ping timeout: 260 seconds]
wookiehangover has quit [Ping timeout: 260 seconds]
thomasfedb has quit [Ping timeout: 260 seconds]
maZtah has quit [Ping timeout: 260 seconds]
phrozen77 has quit [Ping timeout: 260 seconds]
sptq has quit [Ping timeout: 260 seconds]
skmp has quit [Ping timeout: 260 seconds]
lpaste has quit [Ping timeout: 260 seconds]
alem0lars has quit [Ping timeout: 260 seconds]
heftig has quit [Ping timeout: 260 seconds]
BLuEGoD has quit [Ping timeout: 260 seconds]
mattp_ has quit [Ping timeout: 260 seconds]
oso96_2000 has quit [Ping timeout: 260 seconds]
ceej has quit [Ping timeout: 260 seconds]
JaTochNietDan has quit [Ping timeout: 260 seconds]
xMopxShell has quit [Ping timeout: 260 seconds]
iaj_ has quit [Read error: Connection reset by peer]
nemesit|znc has quit [Ping timeout: 260 seconds]
Hien has quit [Ping timeout: 260 seconds]
HashNuke has quit [Ping timeout: 260 seconds]
Mekkis_ has joined #ruby
Caius has joined #ruby
leslie has quit [Ping timeout: 260 seconds]
Mekkis has quit [Ping timeout: 260 seconds]
lele has quit [Excess Flood]
sjohnsen has joined #ruby
codecop has joined #ruby
SilkFox has joined #ruby
fella6s has joined #ruby
patrick99e99 has joined #ruby
Nahra` has joined #ruby
blueOxigen has joined #ruby
sinkensabe has quit [Remote host closed the connection]
shredding_ has joined #ruby
bluOxigen has quit [Ping timeout: 245 seconds]
riton- has joined #ruby
tyll has joined #ruby
gregf__ has joined #ruby
adambeynon_ has joined #ruby
Scotteh__ has joined #ruby
jeregrine has joined #ruby
jokke1 has joined #ruby
siwica1 has joined #ruby
kith_ has joined #ruby
mosez_ has joined #ruby
jenrzzz has quit [Ping timeout: 265 seconds]
gkra_ has joined #ruby
lxsameer has joined #ruby
bhaak_ has joined #ruby
yasu_ has joined #ruby
magic- has joined #ruby
dr_tobog1an has joined #ruby
xwq17_ has joined #ruby
iaj has joined #ruby
kaplejon_ has joined #ruby
ec__ has joined #ruby
ixx has joined #ruby
Affix_ has joined #ruby
JaTochNietDan_ has joined #ruby
ixx is now known as Guest79080
skmp_ has joined #ruby
patrick99e99 has quit [Ping timeout: 256 seconds]
Darryl_ has joined #ruby
lsmola_ has joined #ruby
Hien_ has joined #ruby
thomasfedb_ has joined #ruby
JaTochNietDan_ is now known as JaTochNietDan
sptq_ has joined #ruby
riton- is now known as riton
sptq_ is now known as sptq
magic- is now known as magic
shredding_ is now known as shredding
riton has quit [Changing host]
riton has joined #ruby
peckermanzzz has joined #ruby
hfp_ has joined #ruby
adambeynon_ is now known as adambeynon
tekacs has joined #ruby
{xenomorph} has joined #ruby
Caius has joined #ruby
Caius has quit [Changing host]
mattp_ has joined #ruby
mrfelcio has quit [Ping timeout: 260 seconds]
nuck has quit [Ping timeout: 260 seconds]
gogiel_ has quit [Ping timeout: 260 seconds]
kith has quit [Ping timeout: 260 seconds]
aef has quit [Ping timeout: 260 seconds]
ccooke has quit [Ping timeout: 260 seconds]
nemesit|znc has joined #ruby
caveat- has joined #ruby
wookiehangover has joined #ruby
phrozen77 has joined #ruby
Affix_ is now known as Affix
xMopxShell has joined #ruby
gogiel has joined #ruby
HashNuke has joined #ruby
Wolland has joined #ruby
hfp_ is now known as hfp
ValicekB_ has joined #ruby
michael_mbp has joined #ruby
shtirlic has joined #ruby
ccooke has joined #ruby
oso|away has joined #ruby
ohcibi has joined #ruby
jrunning_ has joined #ruby
ph8 has joined #ruby
arup_r has joined #ruby
heftig has joined #ruby
kalleth has joined #ruby
maZtah has joined #ruby
oso|away is now known as oso96_2000
Tranquility____ has joined #ruby
happyface_ has joined #ruby
inffcs00 has joined #ruby
skmp_ is now known as skmp
sirecote has joined #ruby
machty has joined #ruby
leslie has joined #ruby
leslie has quit [Changing host]
leslie has joined #ruby
nuck has joined #ruby
lpaste has joined #ruby
aef has joined #ruby
ceej has joined #ruby
rikai has joined #ruby
kaplejon_ is now known as kaplejon
Versality_ has joined #ruby
papal has joined #ruby
BLuEGoD has joined #ruby
siwica1 has quit [Ping timeout: 265 seconds]
heyimwill has joined #ruby
ValicekB_ is now known as ValicekB
Versality has quit [Read error: Connection reset by peer]
Wolland has quit [Ping timeout: 258 seconds]
ggherdov has joined #ruby
siwica has joined #ruby
shredding has quit [Quit: shredding]
mityaz has joined #ruby
Timgauthier has joined #ruby
kalz has joined #ruby
alem0lars has joined #ruby
jokke1 is now known as jokke
iinzg has joined #ruby
shredding has joined #ruby
weemsledeux has quit [Read error: Connection reset by peer]
sigurding has quit [Quit: sigurding]
shredding has quit [Client Quit]
Takle has joined #ruby
nateberkopec has quit [Quit: Leaving...]
harax_ has joined #ruby
enebo has joined #ruby
rippa has joined #ruby
timonv_ has quit [Remote host closed the connection]
msmith has joined #ruby
carraroj has joined #ruby
arup_r has quit [Quit: Leaving.]
cibs has quit [*.net *.split]
eshy has quit [*.net *.split]
Timgauthier is now known as timgauthier_away
timgauthier_away has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
msmith has quit [Ping timeout: 256 seconds]
cibs has joined #ruby
eshy has joined #ruby
trollvictim has joined #ruby
timonv_ has joined #ruby
tonini has quit [Ping timeout: 250 seconds]
penny_lanee has joined #ruby
carraroj has quit [Quit: Konversation terminated!]
kaspert__ has joined #ruby
penny_lanee has quit [Remote host closed the connection]
iiinzg has joined #ruby
eka_ has joined #ruby
lampd1_ has joined #ruby
mbr__ has joined #ruby
lucyinthesky has joined #ruby
Versality_ has quit [Quit: Lingo: www.lingoirc.com]
Versality has joined #ruby
jimbach_ has joined #ruby
BraddBitt has joined #ruby
ixx has joined #ruby
gogiel_ has joined #ruby
Devr3d has quit [Ping timeout: 272 seconds]
ixx is now known as Guest13245
taptapdan_ has joined #ruby
Bish_ has joined #ruby
ccooke_ has joined #ruby
BombAw has joined #ruby
phutchins has joined #ruby
Timgauthier has joined #ruby
jxf has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
xMopxShe- has joined #ruby
TakumoKatekari has joined #ruby
Versality has quit [Read error: Connection reset by peer]
p8952_ has joined #ruby
lele has joined #ruby
Versality has joined #ruby
trollvictim has quit [*.net *.split]
iinzg has quit [*.net *.split]
ccooke has quit [*.net *.split]
gogiel has quit [*.net *.split]
xMopxShell has quit [*.net *.split]
Guest79080 has quit [*.net *.split]
jimbach has quit [*.net *.split]
moritzs has quit [*.net *.split]
kasperti_ has quit [*.net *.split]
matt_m has quit [*.net *.split]
lampd1 has quit [*.net *.split]
eka has quit [*.net *.split]
kartouch has quit [*.net *.split]
taptapdan has quit [*.net *.split]
oetjenj has quit [*.net *.split]
BombStrike has quit [*.net *.split]
helpa has quit [*.net *.split]
Takumo has quit [*.net *.split]
Morrolan has quit [*.net *.split]
p8952 has quit [*.net *.split]
mbr has quit [*.net *.split]
BraddPitt has quit [*.net *.split]
Adran has quit [*.net *.split]
Bish has quit [*.net *.split]
Guest49956 has quit [*.net *.split]
St_Marx has quit [*.net *.split]
DrCode has quit [*.net *.split]
end_guy has quit [*.net *.split]
BombAw is now known as BombStrike
taptapdan_ is now known as taptapdan
Morrolan_ has joined #ruby
oetjenj has joined #ruby
Adran has joined #ruby
_ixti_ has quit [Ping timeout: 260 seconds]
Morrolan_ is now known as Morrolan
moritzs has joined #ruby
Scotteh has joined #ruby
ta has quit [Ping timeout: 255 seconds]
Scotteh__ has quit [Ping timeout: 244 seconds]
AlSquire has joined #ruby
sigurding has joined #ruby
dangerousdave has joined #ruby
unshadow has joined #ruby
<unshadow> so, seems socket.closed? is always returning false, unless call
<unshadow> * unless I call socket.close
<unshadow> how can I check that the other end is still reading from the socket ?
<unshadow> or that the other side hasent disconnected ?
ylluminarious has joined #ruby
Devr3d has joined #ruby
realDAB has joined #ruby
Helious has joined #ruby
lucyinthesky has quit [Quit: Leaving]
Wolland has joined #ruby
claymore has quit [Ping timeout: 265 seconds]
ylluminarious has quit [Ping timeout: 244 seconds]
timonv_ has quit [Remote host closed the connection]
bMalum has joined #ruby
kartouch has joined #ruby
Marc has joined #ruby
claw has quit [Quit: Konversation terminated!]
claw has joined #ruby
vlad_sta- has quit [Ping timeout: 244 seconds]
Marc is now known as Guest73151
_KaszpiR_ has quit [Ping timeout: 244 seconds]
Guest4372 has joined #ruby
Azure has quit [Excess Flood]
Mia has quit [Read error: Connection reset by peer]
Mia has joined #ruby
claymore has joined #ruby
_KaszpiR_ has joined #ruby
vlad_starkov has joined #ruby
Wolland has quit [Ping timeout: 240 seconds]
parduse has quit [Ping timeout: 244 seconds]
charliesome has quit [Quit: zzz]
livathinos has joined #ruby
Azure has joined #ruby
livathin_ has joined #ruby
parduse has joined #ruby
realDAB has quit [Quit: realDAB]
ValicekB has quit [Ping timeout: 244 seconds]
claymore has quit [Client Quit]
robbyoconnor has quit [Ping timeout: 250 seconds]
Tricon has quit [Ping timeout: 250 seconds]
Tricon has joined #ruby
marr has joined #ruby
iiinzg has quit [Ping timeout: 260 seconds]
livathinos has quit [Ping timeout: 255 seconds]
cephalostrum has quit [Ping timeout: 244 seconds]
mahlon has quit [Ping timeout: 269 seconds]
jriese has quit [Ping timeout: 244 seconds]
ta has joined #ruby
cephalostrum has joined #ruby
hellangel7 has quit [Remote host closed the connection]
pu22l3r has joined #ruby
jriese has joined #ruby
Paperboy has joined #ruby
jgt has quit [Ping timeout: 255 seconds]
<Paperboy> http://itch.io/games/genre-puzzle Free Games Here
nateberkopec has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ValicekB has joined #ruby
dangerousdave has joined #ruby
Guest4372 has quit [Ping timeout: 250 seconds]
davedev24_ has joined #ruby
carraroj has joined #ruby
sigurding has quit [Quit: sigurding]
msmith has joined #ruby
abuzze has joined #ruby
Vile` has quit [Ping timeout: 245 seconds]
Vile` has joined #ruby
msmith has quit [Ping timeout: 260 seconds]
abuzze has quit [Ping timeout: 265 seconds]
jottr_ has quit [Ping timeout: 245 seconds]
tonini has joined #ruby
fabrice31 has joined #ruby
<shevy> you people are so lazy on sundays
mbr__ is now known as mbr
SilkFox has quit [Ping timeout: 265 seconds]
diegoviola has joined #ruby
shredding has joined #ruby
tonini has quit [Ping timeout: 250 seconds]
timonv_ has joined #ruby
panini has joined #ruby
thsig has joined #ruby
fabrice31 has quit [Ping timeout: 250 seconds]
<wasamasa> "Probably the world's first mermaid bra simulator."
<wasamasa> NOPE
luckyruby has quit [Ping timeout: 255 seconds]
op-victim has joined #ruby
Paperboy has quit []
thsig_ has joined #ruby
Versality has quit [Quit: Lingo: www.lingoirc.com]
bcavileer_ has quit [Ping timeout: 272 seconds]
thsig__ has joined #ruby
MiracleBlue has quit [Ping timeout: 265 seconds]
n1ftyn8 has quit [Ping timeout: 272 seconds]
<shevy> are you diving in the dark areas of the internetz again wasamasa
casual has quit [Ping timeout: 272 seconds]
tonini has joined #ruby
thsig has quit [Ping timeout: 240 seconds]
<wasamasa> shevy: no, I just clicked this bot's link
<shevy> the dark bot was rising
mahlon has joined #ruby
kwd has joined #ruby
Wolland has joined #ruby
op-victim is now known as lucyinthesky
maZtah has quit [Ping timeout: 272 seconds]
Tranquility____ has quit [Ping timeout: 272 seconds]
jeregrine has quit [Ping timeout: 272 seconds]
ewilliam has quit [Ping timeout: 272 seconds]
vcoinminer______ has quit [Ping timeout: 272 seconds]
hellschreiber has quit [Ping timeout: 272 seconds]
cstrahan has quit [Ping timeout: 272 seconds]
rfv has quit [Ping timeout: 272 seconds]
chrisseaton has quit [Ping timeout: 272 seconds]
callenb__ has quit [Ping timeout: 272 seconds]
joshingly has quit [Ping timeout: 272 seconds]
bjeanes has quit [Ping timeout: 272 seconds]
pusewicz has quit [Ping timeout: 272 seconds]
tmoore has quit [Ping timeout: 272 seconds]
tarcwynne__ has quit [Ping timeout: 272 seconds]
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ceej has quit [Ping timeout: 265 seconds]
Darryl_ has quit [Ping timeout: 265 seconds]
charles81 has quit [Ping timeout: 265 seconds]
skmp has quit [Ping timeout: 265 seconds]
Akuma has quit [Quit: So long sukkas!]
tonini has quit [Read error: Connection reset by peer]
adambeynon has quit [Ping timeout: 272 seconds]
thsig_ has quit [Ping timeout: 260 seconds]
tonini has joined #ruby
<drizz> irccloud seems stable
Guest31 has joined #ruby
inffcs00 has quit [Ping timeout: 272 seconds]
featheryahn has quit [Ping timeout: 272 seconds]
tiagonobre_ has quit [Ping timeout: 272 seconds]
pfg has quit [Ping timeout: 272 seconds]
Guest31 has quit [Quit: Textual IRC Client: www.textualapp.com]
phutchins has quit [Ping timeout: 255 seconds]
Versality has joined #ruby
Akuma has joined #ruby
dangerousdave has joined #ruby
havenwood has joined #ruby
St_Marx has joined #ruby
sigurding has joined #ruby
Akuma has quit [Client Quit]
Versality_ has joined #ruby
techsethi has quit [Read error: Connection reset by peer]
pothibo has joined #ruby
Akuma has joined #ruby
sepp2k has joined #ruby
Scotteh_ has joined #ruby
Pupeno has joined #ruby
dh64 has joined #ruby
Versality_ has quit [Quit: Lingo: www.lingoirc.com]
alaa has joined #ruby
dh64 has quit [Client Quit]
Scotteh has quit [Ping timeout: 244 seconds]
claymore has joined #ruby
dh64 has joined #ruby
patrick99e99 has joined #ruby
renderful has joined #ruby
AmBienCeD has quit [Read error: Connection reset by peer]
dh64 has quit [Client Quit]
Pupeno has quit [Ping timeout: 265 seconds]
unshadow has quit [Quit: leaving]
Guest77221 has joined #ruby
Scotteh has joined #ruby
lxsameer has quit [Ping timeout: 265 seconds]
_JamieD_ has quit [Quit: _JamieD_]
andrewlio has quit [Remote host closed the connection]
benzrf|offline is now known as benzrf
patrick99e99 has quit [Ping timeout: 256 seconds]
Scotteh__ has joined #ruby
Guest77221 is now known as IceDragon
renderful has quit [Ping timeout: 244 seconds]
harax_ has quit [Ping timeout: 272 seconds]
Scotteh_ has quit [Ping timeout: 260 seconds]
phutchins has joined #ruby
alaa has quit [Quit: leaving]
Scotteh has quit [Ping timeout: 255 seconds]
apeiros has quit [Read error: Connection reset by peer]
apeiros has joined #ruby
Timgauthier is now known as timgauthier_away
bhaak_ is now known as bhaak
timgauthier_away has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
AmBienCeD has joined #ruby
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby
Timgauthier has joined #ruby
VanillaGoat_ has joined #ruby
Kricir has joined #ruby
Kricir has quit [Client Quit]
Versality has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
VanillaGoat__ has quit [Ping timeout: 255 seconds]
phutchins has quit [Ping timeout: 265 seconds]
bMalum has quit [Quit: bMalum]
Channel6 has joined #ruby
phutchins has joined #ruby
VBlizzard has quit [Ping timeout: 255 seconds]
Joufflu has joined #ruby
charliesome has joined #ruby
tatsuo has joined #ruby
VBlizzard has joined #ruby
aspiers has quit [Quit: WeeChat 0.4.3]
zorak8 has joined #ruby
aspiers has joined #ruby
gauke has joined #ruby
lxsameer has joined #ruby
kaspert__ has quit []
benzrf is now known as benzrf|offline
msmith has joined #ruby
vyorkin has joined #ruby
VBlizzard is now known as Blizzy
nrsk has joined #ruby
jottr has joined #ruby
zorak8 has quit [Ping timeout: 260 seconds]
hamakn has quit [Remote host closed the connection]
askhat has joined #ruby
DLSteve has joined #ruby
SilkFox has joined #ruby
askhat has quit [Quit: Leaving]
hamakn has joined #ruby
jgt has joined #ruby
hoomeu8 has joined #ruby
<hoomeu8> whats the diff between caller and scope
jottr has quit [Ping timeout: 255 seconds]
marr has quit [Ping timeout: 256 seconds]
cina has joined #ruby
timonv_ has quit [Remote host closed the connection]
sigurding has quit [Quit: sigurding]
telling has joined #ruby
telling has left #ruby [#ruby]
zorak8 has joined #ruby
SilkFox has quit [Ping timeout: 272 seconds]
lucyinthesky has quit [Quit: golden slumbers]
endash has quit [Quit: endash]
nateberkopec has quit [Quit: Leaving...]
<apeiros> one thing is an object, the other is about variable and method visibility
msmith has quit [Remote host closed the connection]
<hoomeu8> apeiros: when we talk about a caller, isn't it the execution context
<hoomeu8> apeiros: I am not talking about the caller object itself, I'm talking about the cs term
endash has joined #ruby
<apeiros> caller is the thing which calls a method
<apeiros> what you understand under caller depends a lot on context
<hoomeu8> apeiros: that would be a receiver
<apeiros> it can be a file+line of code, it can be an object
<apeiros> hoomeu8: no
<apeiros> receiver is the object *on which* you call the method
<apeiros> the object which *responds* to the method call.
sevenseacat has quit [Quit: Leaving.]
<apeiros> so the relation is: caller calls a method on the receiver
Takle has quit [Remote host closed the connection]
<apeiros> and I think the naming becomes obvious in that phrase :)
<havenwood> hoomeu8: callers call, receivers receive
<hoomeu8> apeiros: right thanks but i still do not picture what a caller is.. when people use the term caller it seems to refer to an execution context
<eam> goto's gonna goto
<apeiros> hoomeu8: yes, the execution context where a method is called
<apeiros> as I said, what is understood under "caller" depends a lot on context.
<hoomeu8> which is the scope
<havenwood> hoomeu8: the callers is doing the calling
<apeiros> hoomeu8: no, which *has* a scope
<apeiros> has, not is
<apeiros> every context has a scope, or rather, multiple scopes
<hoomeu8> scope of the receiver*
Helious has quit [Quit: Be back later ...]
<havenwood> hoomeu8: the difference between caller and scope is like the difference between ice cream shop patrons and buildings
<apeiros> scope determines which instance variable is resolved by a name, which method, which local variable, etc.
<apeiros> all those scopes come together in a given context
<apeiros> e.g. @ivars are scoped by object
<apeiros> local vars are scoped lexically
<apeiros> constants are scoped lexically with a bit of lookup logic
cina has quit [Ping timeout: 245 seconds]
<apeiros> and methods are scoped the same as ivars
Takle_ has joined #ruby
Soda has joined #ruby
phutchins has quit [Ping timeout: 244 seconds]
tatsuo has quit [Remote host closed the connection]
Helious has joined #ruby
tonini has quit [Ping timeout: 250 seconds]
<hoomeu8> Variables are said to be lexically scoped if they're accessible during compile time, in C like languages lexical scoping is usually delimited by blocks. Scope is the environment context. A caller is the environment context of the method being called or simply the context of execution.
<hoomeu8> apeiros: thoughts on that.
<apeiros> hoomeu8: does not apply fully to ruby
<apeiros> see above
<apeiros> lvars & constants are lexically scoped
rahult has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<hoomeu8> lvars?
<apeiros> local variables
<hoomeu8> in ruby the delimiter is the def keyword or class or module
<apeiros> $gvars = global variables, @@cvars = class variables, @ivars = instance variables, Constants, lvars
<apeiros> yes, def/class/module change scopes
<apeiros> but def changes different scopes than class/module
<hoomeu8> as for constants..please explain
<apeiros> def e.g. does not change constant scope. class/module do.
Helious has quit [Ping timeout: 265 seconds]
<apeiros> also you don't need a keyword to change ivar scope. see instance_exec and co.
yasu_ is now known as yasu
<hoomeu8> oh right, can you remind me the difference between instance_eval class_eval instance_exec i never seem to be bale to remember it
pusewicz has joined #ruby
alaa00 has joined #ruby
<apeiros> they are about changing different scopes. the documentation does a better job at explaining them.
mercwithamouth has quit [Ping timeout: 245 seconds]
jenrzzz has joined #ruby
Timgauthier is now known as timgauthier_away
timgauthier_away has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
alaa00 has quit [Client Quit]
banister has joined #ruby
mary5030 has joined #ruby
vcoinminer______ has joined #ruby
Timgauthier has joined #ruby
<hoomeu8> apeiros: ah class eval evaluates the block in the context of the class and instance_eval in the context of the instance
alaa00 has joined #ruby
alol__ has joined #ruby
dr_tobog1an is now known as dr_toboggan
banisterfiend has quit [Ping timeout: 245 seconds]
joshingly has joined #ruby
harax_ has joined #ruby
Tranquility____ has joined #ruby
{xenomorph} is now known as xenomorph
jeregrine has joined #ruby
tiagonobre_ has joined #ruby
jenrzzz has quit [Ping timeout: 272 seconds]
Helious has joined #ruby
Helious has quit [Client Quit]
featheryahn has joined #ruby
bjeanes has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
Spami has joined #ruby
pu22l3r has quit [Remote host closed the connection]
Helious has joined #ruby
Spami has quit [Remote host closed the connection]
Helious has quit [Client Quit]
hellschreiber has joined #ruby
adambeynon has joined #ruby
harax_ has quit [Ping timeout: 244 seconds]
panini has quit [Quit: Leaving]
* havenwood plots to use #private_constant
vitkovsky has joined #ruby
theotherstupidgu has quit [Ping timeout: 245 seconds]
Ridley5 is now known as zzz_Ridley
hamakn has quit [Remote host closed the connection]
zorak8 has quit [Ping timeout: 256 seconds]
dkphenom has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
alaa00 has quit [Quit: Lost terminal]
<havenwood> anyone ever seen #const_missing in the wild?
rkalfane has joined #ruby
alaa00 has joined #ruby
<Morrolan> Yea. Uh, RSpec I think?
bMalum has joined #ruby
hamakn has joined #ruby
n1ftyn8 has joined #ruby
<havenwood> Morrolan: ahh, interesting - was surprised rspec used drb too
nrsk has quit [Ping timeout: 256 seconds]
<havenwood> Morrolan: i haven't actually looked at rspec code, i need to take a look!
<Morrolan> I imagine they have some interesting code, given their DSL
maZtah has joined #ruby
abuzze has joined #ruby
zorak8 has joined #ruby
<havenwood> Morrolan: hmm, seems they may use neither now, dunno
<apeiros> havenwood: for autoloading, yes
<havenwood> apeiros: ahh
yfeldblum has quit [Ping timeout: 255 seconds]
tonini has joined #ruby
timonv_ has joined #ruby
ceej has joined #ruby
<apeiros> though I think one should prefer Kernel#autoload, especially since it's now supposedly thread safe
<apeiros> at least iirc
Pupeno has joined #ruby
bMalum has quit [Quit: bMalum]
<havenwood> apeiros: aye, i think a lot of folk got the word it wasn't thread safe and was due to be deprecated but not the update that it's been made thread safe and is no longer shunned
<apeiros> havenwood: yeah, but they went ahead and built an even worse (safety-wise) system based on const_missing :D
<havenwood> hehe
ssut__ has joined #ruby
charliesome has quit [Quit: zzz]
<havenwood> no longer shunned for that particular reason*
Zesty has joined #ruby
abuzze has quit [Ping timeout: 265 seconds]
vitkovsky has quit [Remote host closed the connection]
tmoore has joined #ruby
<havenwood> rails gets to keep doing there thing
charles81 has joined #ruby
bcavileer_ has joined #ruby
<havenwood> thier*
<havenwood> jeesh
<havenwood> require 'English'
nateberkopec has joined #ruby
fabrice31 has joined #ruby
Versality has joined #ruby
Zesty has quit [Client Quit]
rpag has joined #ruby
strayson has joined #ruby
Versality has quit [Client Quit]
strayson has left #ruby [#ruby]
rfv has joined #ruby
Versality has joined #ruby
casual has joined #ruby
Darryl_ has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
skmp has joined #ruby
shredding has quit [Quit: shredding]
TakumoKatekari is now known as Takumo
fabrice31 has quit [Ping timeout: 260 seconds]
AlexRussia has quit [Quit: WeeChat 1.1-dev]
callenb__ has joined #ruby
rkazak has joined #ruby
Pupeno has quit [Remote host closed the connection]
peeja_ has joined #ruby
bMalum has joined #ruby
dkphenom has joined #ruby
sinkensabe has joined #ruby
MiracleBlue has joined #ruby
strayson has joined #ruby
strayson has left #ruby [#ruby]
SilkFox has joined #ruby
chrisseaton has joined #ruby
Pupeno has joined #ruby
timonv_ has quit [Remote host closed the connection]
ptrrr has joined #ruby
cstrahan has joined #ruby
sinkensabe has quit [Remote host closed the connection]
ewilliam has joined #ruby
hellangel7 has joined #ruby
starkhalo has joined #ruby
tarcwynne__ has joined #ruby
theotherstupidgu has joined #ruby
msmith has joined #ruby
Scotteh has joined #ruby
sinkensabe has joined #ruby
sinkensabe has quit [Remote host closed the connection]
tonini has quit [Ping timeout: 250 seconds]
pfg has joined #ruby
tonini has joined #ruby
Scotteh__ has quit [Ping timeout: 244 seconds]
msmith has quit [Ping timeout: 250 seconds]
mary5030 has quit [Remote host closed the connection]
timonv_ has joined #ruby
inffcs00 has joined #ruby
vyorkin has quit [Quit: WeeChat 1.0.1]
koderok has quit [Ping timeout: 255 seconds]
einarj has joined #ruby
gsd has joined #ruby
einarj has quit [Read error: Connection reset by peer]
<shevy> require 'Russian'
Helious has joined #ruby
einarj has joined #ruby
Helious has quit [Client Quit]
tonini has quit [Ping timeout: 250 seconds]
DrCode has joined #ruby
einarj has quit [Read error: Connection reset by peer]
einarj has joined #ruby
yfeldblum has joined #ruby
rbrs has joined #ruby
einarj has quit [Read error: Connection reset by peer]
einarj has joined #ruby
Soda has quit [Remote host closed the connection]
bMalum_ has joined #ruby
Helious has joined #ruby
bMalum has quit [Ping timeout: 260 seconds]
bMalum_ is now known as bMalum
yfeldblum has quit [Ping timeout: 245 seconds]
einarj has quit [Ping timeout: 245 seconds]
_ixti_ has joined #ruby
rkazak has quit [Ping timeout: 272 seconds]
patrick99e99 has joined #ruby
pothibo has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
mercwithamouth has joined #ruby
Timgauthier is now known as timgauthier_away
timgauthier_away has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
shredding has joined #ruby
agjacome has joined #ruby
maletor_ has joined #ruby
aspires has joined #ruby
Asher has joined #ruby
zzz_Ridley is now known as Ridley5
patrick99e99 has quit [Ping timeout: 245 seconds]
Ridley5 is now known as zzz_Ridley
end_guy has joined #ruby
andrewlio has joined #ruby
Lewix has joined #ruby
kobain has joined #ruby
<Lewix> Hi all
* Lewix haven't seen centrx for a while
Photism has joined #ruby
Techguy305 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
<shevy> php ate him
Techguy305 has joined #ruby
Techguy305 has quit [Client Quit]
<Lewix> aha
Techguy305 has joined #ruby
siwica has quit [Remote host closed the connection]
siwica has joined #ruby
IcyDragon has joined #ruby
<shevy> it's why I warn people about the dangers of php
IceDragon has quit [Ping timeout: 255 seconds]
jimmyhoughjr has joined #ruby
alaa00 has quit [Read error: Connection reset by peer]
mary5030 has joined #ruby
jottr has joined #ruby
<shevy> so who of you is doing anything with ruby + multimedia
shredding has quit [Quit: shredding]
siwica has quit [Remote host closed the connection]
livathin_ has quit [Remote host closed the connection]
<rpag> what do you mean by multimedia
<havenwood> shevy: i color my text
alaa00 has joined #ruby
<rpag> with shell codez?
tonini has joined #ruby
<havenwood> crayon
<rpag> hahaha
az7ar_away is now known as az7ar
robbyoconnor has joined #ruby
gauke has quit [Quit: gauke]
<rpag> shevy, are you doing much with Qt/GTK & Ruby?
<Lewix> like games?
chipotle has quit [Quit: cya]
<rpag> i thought ruby was too slow and the dependencies too many for that to work out well
dkphenom has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
siwica has joined #ruby
rkalfane has quit [Quit: Textual IRC Client: www.textualapp.com]
sargas_ has joined #ruby
jaygen has joined #ruby
tyll has quit [Ping timeout: 265 seconds]
sargas_ has quit [Changing host]
sargas_ has joined #ruby
sargas_ has quit [Client Quit]
aspires has quit []
sargas_ has joined #ruby
Scotteh_ has joined #ruby
tyll has joined #ruby
zorak8 has quit [Ping timeout: 245 seconds]
sargas_ has quit [Changing host]
sargas_ has joined #ruby
starless has joined #ruby
Scotteh has quit [Ping timeout: 260 seconds]
rkalfane has joined #ruby
mesamoo has joined #ruby
kasperti_ has joined #ruby
sargas_ is now known as sargas
shredding has joined #ruby
Scotteh has joined #ruby
P-NuT has joined #ruby
<P-NuT> Hi all, Does anyone have an example of how to run a query with the mysql2 gem, and if it returns a result then return true else return false.
<P-NuT> Any ideas how to do this?
jaygen has quit []
jgt has quit [Ping timeout: 265 seconds]
Scotteh_ has quit [Ping timeout: 244 seconds]
<Lewix> shevy, havenwood: https://twitter.com/contextualdev/status/526373471803043840 would you agree with that? "no meaningful difference"
shedd has joined #ruby
shedd has quit [Remote host closed the connection]
ptrrr has quit [Quit: ptrrr]
msmith has joined #ruby
<havenwood> Lewix: passing by reference or by value makes me think of DRb, where the distinction does matter
<havenwood> does it Marshal?
<havenwood> Lewix: i don't know if you're familiar with DRbObjects?
jimmyhoughjr has quit [Quit: Textual IRC Client: www.textualapp.com]
<havenwood> Lewix: anyways, if it can be serialized it Marshals the Object and copies the value over, passing by value
thsig__ has quit [Remote host closed the connection]
<havenwood> Lewix: passing by reference is a bit more complicated
robbyoconnor has quit [Quit: Konversation terminated!]
msmith has quit [Ping timeout: 244 seconds]
<havenwood> DRb serializes an Object containing a reference to the original un-Marshalable Object
<Lewix> havenwood: I'm not familiar with DRbObjects, but I just think that in this instance the author of effective ruby is wrong. He believes that there's no real difference between call by sharing and call by refrence
<Lewix> whereas assignments to function arguments within the function aren't visible to the caller
<havenwood> Lewix: DRb is in the Ruby stdlib and the distinction makes sense and is used in that context.
<havenwood> Lewix: Maybe aside the point from what you're saying though?
hamakn has quit [Remote host closed the connection]
<Lewix> I guess my voice does not count =)
sargas has quit [Quit: This computer has gone to sleep]
vivekrai has joined #ruby
<havenwood> Lewix: DRb automatically tries to pass by value and if it can't it tries passing by reference.
<havenwood> Lewix: Some folk advise therefore only passing stuff that's serializable, relying on the standard pass by value.
<Lewix> copy/paste from the book "Most objects are passed around as references and not as actual values.The same is true when objects are passed as method arguments. The method will receive a reference to the object and not a new copy. "
<vivekrai> Hi all. I have added few methods to a module as module_function.
<vivekrai> Is it possible to have a list of the added methods?
<havenwood> Lewix: i guess a different layer of abstraction, dunno! :O
chipotle has joined #ruby
<vivekrai> I have a piece of code which would call those methods automatically, and I don't know how many methods there would be.
maletor_ has quit [Quit: Computer has gone to sleep.]
thsig has joined #ruby
<havenwood> >> module Example; module_function def example; :example end end; Example.methods false
<eval-in__> havenwood => [:example] (https://eval.in/210321)
Helious has quit [Quit: Be back later ...]
<havenwood> vivekrai: along those ^ lines?
<Lewix> havenwood: and on twitter he agrees that it's pass by value but believe that theres no meaningful difference however I think it's important to know the difference and not abuse pass by reference . According to him I'm wrong
<vivekrai> havenwood: Let me try that out.
P-NuT has quit [Quit: This computer has gone to sleep]
ylluminarious has joined #ruby
badhatter has quit [Ping timeout: 265 seconds]
abuzze has joined #ruby
benzrf|offline is now known as benzrf
tyll has quit [Ping timeout: 240 seconds]
thsig has quit [Remote host closed the connection]
<havenwood> Lewix: call by object sharing
ylluminarious has quit [Ping timeout: 260 seconds]
abuzze has quit [Ping timeout: 265 seconds]
<rpag> Lewix, i don't think the distinction matters
tyll has joined #ruby
<rpag> at least in ruby
<rpag> in a language like C, it's more obvious
bzf has left #ruby ["Linkinus - http://linkinus.com"]
<rpag> but the behavior it comes closest to in ruby, in my mind, is "pass by reference"
timonv_ has quit [Remote host closed the connection]
<havenwood> Lewix: “Strictly speaking, Ruby passes by reference. However, what Ruby passes is a reference value of an object so that you can modify the object that the reference value is pointing to with Ruby’s destructive method (= methods ending with !).” Excerpt From: Masatoshi Seki. “The dRuby Book (for Johnneylee Jack Rollins).” iBooks.
badhatter has joined #ruby
badhatter has quit [Changing host]
badhatter has joined #ruby
<benzrf> in
* benzrf picks up his megaphone
<benzrf> HASKELL
* benzrf puts down his megaphone
sargas has joined #ruby
<benzrf> there is no significant distinction between pass by val and pass by ref
jimmyhoughjr has joined #ruby
fabrice31 has joined #ruby
thsig has joined #ruby
sinkensabe has joined #ruby
<havenwood> road. ro....ad....
<rpag> last time i argued ruby passes by reference in #ruby i was told it doesn't because ruby doesn't have references, it has objects, and you just pass objects around
<rpag> i didnt quite get that way of thinking
<rpag> so now i just dont care more or less
<benzrf> such nonsense
<havenwood> Hanmac: a maestro!
kristofferR has joined #ruby
livathinos has joined #ruby
mary5030 has quit [Remote host closed the connection]
<Hanmac> look at the second cat in the end ;P
bMalum has quit [Quit: bMalum]
<havenwood> Pry.commands.rename_command '%cat', 'cat'
fabrice31 has quit [Ping timeout: 260 seconds]
Helious has joined #ruby
<rpag> why? o_O
sinkensabe has quit [Remote host closed the connection]
<havenwood> rpag: for globally scoped local variables named `cat` of course!
<rpag> oh hah
<havenwood> alias cat="say meow meow meow"
<rpag> there's nyan-cat in pry too
<rpag> fuck
<rpag> cant leave that command
<benzrf> hah
<rpag> ctrl+c did it
thsig has quit [Remote host closed the connection]
bMalum has joined #ruby
alaa00 has quit [Ping timeout: 272 seconds]
Petru has joined #ruby
<havenwood> say --voice="Pipe Organ" `echo meow$catcat{1..100}`
<havenwood> OS X ^
<havenwood> oh dear, i've actually made it listening to 32
Helious has quit [Quit: Be back later ...]
sargas has quit [Quit: This computer has gone to sleep]
pushpak has joined #ruby
ssut__ has quit [Quit: Connection closed for inactivity]
livathinos has quit [Remote host closed the connection]
alem0lars is now known as alem0lars|away
pushpak has quit [Client Quit]
P-NuT has joined #ruby
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Versalit_ has joined #ruby
Versality has quit [Read error: Connection reset by peer]
lolmaus has quit [Quit: Konversation terminated!]
<havenwood> and ship it: alias cat="echo \"=^.^=\" && say --voice=\"Pipe Organ\" \"$(yes meow | head -n 33)\""
peeja_ has quit [Quit: Connection closed for inactivity]
<benzrf> how i do on gnu/linux
<shevy> I approve the use of cats in this channel
<havenwood> benzrf: distro?
<benzrf> crunchbang
<benzrf> aka debian
<havenwood> benzrf: pt-get install espeak
<havenwood> apt*
<benzrf> i got espeak
<benzrf> how do i get organ cat
<havenwood> ahhh, i don't know if espeak can organ :O
<rpag> espeak is 'say' for linux?
livathinos has joined #ruby
<havenwood> benzrf: checking langs
<rpag> hah
<rpag> awesome
<havenwood> benzrf: hrm, i have no voices on this debian box: espeak --voices="?"
<rpag> i have none either
<rpag> just the default
rkazak has joined #ruby
<rpag> i had no clue linux had an alternative for that though
<benzrf> I’d just like to interject for a moment. What you’re refering to as Linux, is in fact, GNU/LInux, or as I’ve recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.
<benzrf> Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called “Linux”, and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.
<benzrf> There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine’s resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself;
<benzrf> it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called “Linux” distributions are really distributions of GNU/Linux.
shevy has quit [Read error: Connection reset by peer]
<rpag> hahaha
<rpag> yeah
<rpag> forgot
<rpag> GNU/Linux*
Versalit_ is now known as Versality
thsig has joined #ruby
sinkensabe has joined #ruby
boombadaroomba has joined #ruby
ptrrr has joined #ruby
thsig_ has joined #ruby
virtualize has quit [Ping timeout: 240 seconds]
sinkensabe has quit [Remote host closed the connection]
nateberkopec has quit [Quit: Leaving...]
jottr has quit [Read error: Connection reset by peer]
thsig has quit [Ping timeout: 256 seconds]
rkalfane has joined #ruby
badhatter has quit [Quit: Leaving]
boombadaroomba has quit [Ping timeout: 258 seconds]
jottr has joined #ruby
<havenwood> though it should unalias itself before running so if cancelled there's no trace why it happend: alias cat="unalias cat && echo \"=^.^=\" && say --voice=\"Pipe Organ\" \"$(yes meow | head -n 33)\""
maletor_ has joined #ruby
<havenwood> and that should probably be in a dotfile
sinkensabe has joined #ruby
<havenwood> or in /etc/paths
msmith has joined #ruby
<havenwood> though that'd give it away, could be sneakier
badhatter has joined #ruby
badhatter has quit [Changing host]
badhatter has joined #ruby
yfeldblum has joined #ruby
carraroj has quit [Quit: Konversation terminated!]
aaronite has joined #ruby
<aaronite> What's better, Ruby or Sapphire?
<rpag> sapphire
<havenwood> aaronite: the only difference is the color
rbrs has quit [Remote host closed the connection]
<aaronite> havenwood: ok
<aaronite> i like blue more
rkalfane has quit [Client Quit]
<havenwood> aaronite: but Ruby.
bMalum has quit [Quit: bMalum]
msmith has quit [Ping timeout: 250 seconds]
claw_ has joined #ruby
<havenwood> aaronite: Don't rule out Padparadscha!
ta has quit [Ping timeout: 250 seconds]
yfeldblum has quit [Ping timeout: 258 seconds]
jottr_ has joined #ruby
gaganjyot has joined #ruby
ta has joined #ruby
estebanrules has joined #ruby
sinkensabe has quit [Ping timeout: 272 seconds]
jottr has quit [Ping timeout: 244 seconds]
claw has quit [Ping timeout: 240 seconds]
Hobogrammer has joined #ruby
<benzrf> emerald is pretty good
<benzrf> u can get rayquaza
shevy has joined #ruby
oleo__ has joined #ruby
oleo is now known as Guest88284
hellangel7 has quit [Remote host closed the connection]
patrick99e99 has joined #ruby
mengu has joined #ruby
mengu has joined #ruby
Guest88284 has quit [Ping timeout: 265 seconds]
blueOxigen has quit [Ping timeout: 265 seconds]
Helious has joined #ruby
ta has quit [Ping timeout: 244 seconds]
badhatter has quit [Read error: Connection reset by peer]
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
klaut has joined #ruby
Guest88984 has joined #ruby
badhatter has joined #ruby
badhatter has quit [Changing host]
badhatter has joined #ruby
Scotteh_ has joined #ruby
Takle_ has quit [Remote host closed the connection]
patrick99e99 has quit [Ping timeout: 256 seconds]
mahyuddin has joined #ruby
ta has joined #ruby
Scotteh has quit [Ping timeout: 244 seconds]
Takle has joined #ruby
shredding has quit [Quit: shredding]
pu22l3r has joined #ruby
Avahey has joined #ruby
Helious has quit [Quit: Be back later ...]
kingman has quit [Read error: Connection reset by peer]
lampd1_ is now known as lampd1
timonv_ has joined #ruby
bMalum has joined #ruby
zorak8 has joined #ruby
Asher has quit [Quit: Leaving.]
maletor_ has quit [Quit: Computer has gone to sleep.]
tonini has quit [Quit: leaving]
jimbach_ has quit [Remote host closed the connection]
xMopxShe- is now known as xMopxShell
godd2 has joined #ruby
alaa00 has joined #ruby
aaronite has quit [Quit: leaving]
jgt has joined #ruby
klaut_ has joined #ruby
rbrs has joined #ruby
klaut has quit [Ping timeout: 255 seconds]
mercwithamouth has quit [Ping timeout: 255 seconds]
timonv_ has quit [Ping timeout: 250 seconds]
shredding has joined #ruby
timonv_ has joined #ruby
jimbach has joined #ruby
livathinos has quit []
pu22l3r has quit [Remote host closed the connection]
P-NuT has quit [Quit: This computer has gone to sleep]
oleo__ has quit [Quit: Verlassend]
hoomeu8 has quit [Quit: Page closed]
estebanrules has quit [Quit: WeeChat 1.0.1]
lkba has joined #ruby
sinkensabe has joined #ruby
Guest88984 has quit [Ping timeout: 255 seconds]
oleo__ has joined #ruby
oso96_2000 is now known as oso|away
sinkensabe has quit [Remote host closed the connection]
gtrak has joined #ruby
koell has left #ruby ["WeeChat 0.4.2"]
jottr_ is now known as jottr
rkazak has left #ruby [#ruby]
SCHAAP137 has quit [Remote host closed the connection]
ptrrr has quit [Quit: ptrrr]
IcyDragon has quit [Ping timeout: 260 seconds]
yfeldblum has joined #ruby
greygrissom has joined #ruby
IcyDragon has joined #ruby
User458764 has quit [Quit: Textual IRC Client: www.textualapp.com]
timonv_ has quit [Remote host closed the connection]
shredding has quit [Quit: shredding]
yfeldblum has quit [Ping timeout: 265 seconds]
msmith has joined #ruby
Kuraiko has joined #ruby
timonv_ has joined #ruby
enebo has quit [Quit: enebo]
gaganjyot has quit [Quit: Leaving]
abuzze has joined #ruby
boombadaroomba has joined #ruby
boombadaroomba has quit [Remote host closed the connection]
msmith has quit [Ping timeout: 265 seconds]
alaa00 has quit [Ping timeout: 244 seconds]
alem0lars|away is now known as alem0lars
thsig_ has quit [Remote host closed the connection]
oleo__ is now known as oleo
abuzze has quit [Ping timeout: 265 seconds]
boombadaroomba has joined #ruby
maletor_ has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
asmodlol has joined #ruby
fabrice31 has joined #ruby
it0a has joined #ruby
PeterBoy has joined #ruby
Juanchito has joined #ruby
ylluminarious has joined #ruby
klaut has joined #ruby
klaut_ has quit [Read error: Connection reset by peer]
jdj_dk_ has joined #ruby
fabrice31 has quit [Ping timeout: 260 seconds]
ringarin has joined #ruby
j_mcnally has joined #ruby
ylluminarious has quit [Ping timeout: 264 seconds]
Axy has joined #ruby
toretore has joined #ruby
zorak8 has quit [Ping timeout: 258 seconds]
Mia has quit [Ping timeout: 265 seconds]
jimmyhoughjr has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
zorak8 has joined #ruby
end_guy has quit [Ping timeout: 246 seconds]
end_guy has joined #ruby
mercwithamouth has joined #ruby
jimbach has quit [Remote host closed the connection]
klaut has quit [Ping timeout: 265 seconds]
ta has quit [Read error: Connection reset by peer]
ta has joined #ruby
klaut has joined #ruby
maletor_ has quit [Quit: Computer has gone to sleep.]
IcyDragon is now known as IceDragon
ChoiKyuSang has quit [Quit: Going offline, see ya! (www.adiirc.com)]
User458764 has joined #ruby
P-NuT has joined #ruby
<shevy> hey IceDragon
<shevy> still icing it up with ruby?
<IceDragon> I'm playing with Go now, I still use ruby (well, mruby)
<shevy> :(
<shevy> they abandon us!
<shevy> tiobe is right!
<Lewix> IceDragon: Go is awesome
jimbach has joined #ruby
theotherstupidgu has quit [Ping timeout: 255 seconds]
jdj_dk__ has joined #ruby
Takle has quit [Remote host closed the connection]
<IceDragon> shevy: I have not abandoned ruby :3
<IceDragon> I just added Go to my list of "Languages that I know now"
<Lewix> did you see the new smartBand of Lenovo
kristofferR has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ChoiKyuSang has joined #ruby
<Lewix> IceDragon: what do you do with Go, and what do you do with mruby
thsig has joined #ruby
<IceDragon> Lewix: I was staring at Go code for hours and couldn't understand what was happening...
theotherstupidgu has joined #ruby
atmosx has joined #ruby
duncannz has joined #ruby
decoponio has quit [Quit: Leaving...]
<shevy> so like haskell
jdj_dk_ has quit [Ping timeout: 244 seconds]
yfeldblum has joined #ruby
rbrs has quit [Remote host closed the connection]
<IceDragon> Lewix: World Domination obviously, what else would you do with programming?!
<IceDragon> Lewix: jokes aside, flynn uses Go, and I try helping out with flynn, so there is the Go
<IceDragon> Lewix: mruby on the other hand, I use it as a scripting language for a game engine in my spare time
<shevy> YES
<shevy> MRUBY FOR THE WIN!
thsig has quit [Ping timeout: 260 seconds]
<Lewix> IceDragon: you're right pinky
<Lewix> IceDragon: what's flynn
<Lewix> shevy: haskell is...more like looking at the code in terms of years not hours
zorak8 has quit [Ping timeout: 260 seconds]
<Lewix> Pinky: Gee, Brain, what do you want to do tonight?
<Lewix> Brain: The same thing we do every night, Pinky - try to take over the world!
yfeldblum has quit [Ping timeout: 255 seconds]
BTRE has quit [Quit: Leaving]
<shevy> lol
<IceDragon> And I use ruby to solve every other problem I have with the daily usage of my computer (its my calculator, reminder, auto-force-download-sync, WORLD DOMINATION :D)
<IceDragon> etc..
rkalfane has joined #ruby
P-NuT has quit [Quit: Leaving]
f0ster has joined #ruby
gsd has joined #ruby
duncannz has quit [Remote host closed the connection]
Helious has joined #ruby
<Lewix> IceDragon: do you have a github with your world domination tools
duncannz has joined #ruby
marr has joined #ruby
<shevy> iron maiden
<shevy> back stretcher
<shevy> groin twister
kasperti_ has quit []
<shevy> show us the goodies IceDragon!
kasperti_ has joined #ruby
bigmac has joined #ruby
msmith has joined #ruby
IceDragon has quit [Ping timeout: 265 seconds]
ndrei has joined #ruby
ndrei_ has joined #ruby
IceDragon has joined #ruby
JohnBat26 has joined #ruby
Wolland_ has joined #ruby
reinaldob has joined #ruby
ramfjord has joined #ruby
alem0lars is now known as alem0lars|away
mary5030 has joined #ruby
msmith has quit [Ping timeout: 260 seconds]
duncannz has quit [Remote host closed the connection]
Scotteh has joined #ruby
<IceDragon> mehhhhh
Wolland has quit [Ping timeout: 265 seconds]
duncannz has joined #ruby
sargas has joined #ruby
sargas has quit [Client Quit]
reinaldob has quit [Ping timeout: 240 seconds]
sargas has joined #ruby
volpe has joined #ruby
volpe has left #ruby [#ruby]
babykosh has joined #ruby
Scotteh_ has quit [Ping timeout: 260 seconds]
<shevy> what a sexy dragon roar
boombadaroomba has quit [Remote host closed the connection]
Soda has joined #ruby
az7ar is now known as az7ar_away
az7ar_away is now known as az7ar
gtrak has quit [Ping timeout: 250 seconds]
benzrf is now known as benzrf|offline
IceDragon has quit [Ping timeout: 256 seconds]
renderful has joined #ruby
asmodchan has joined #ruby
ghostmoth has joined #ruby
Takle has joined #ruby
duncannz has quit [Remote host closed the connection]
Helious has quit [Quit: Be back later ...]
duncannz has joined #ruby
gtrak has joined #ruby
IceDragon has joined #ruby
asmodlol has quit [Ping timeout: 255 seconds]
babykosh has quit [Quit: babykosh]
vanderh0ff has joined #ruby
renderful has quit [Ping timeout: 244 seconds]
ndrei has quit [Ping timeout: 250 seconds]
ndrei_ has quit [Ping timeout: 244 seconds]
<bigmac> has any one used chilkat
<bigmac> ssl stuff
<bigmac> https
duncannz has quit [Ping timeout: 244 seconds]
sargas has quit [Quit: This computer has gone to sleep]
<Hanmac> shevy this weekend there will be no weekly build of rwx, but i did a mass of commits with a travis build in the end ... one of the bigger part is that i try to make wxBitmap dumpable with is a bit more complicated than i thought
rkazak has joined #ruby
theotherstupidgu has quit [Ping timeout: 245 seconds]
Devr3d has quit [Quit: Quitte]
az7ar is now known as az7ar_away
timonv_ has quit [Remote host closed the connection]
weemsledeux has joined #ruby
weemsledeux has joined #ruby
<bigmac> any one good at spoon feeding
<bigmac> chilkat
<bigmac> sening a get request to https.m.facebook
kristofferR has joined #ruby
<bigmac> i just suck at libs... dont understand them...
<bigmac> i want to see my header fields...
yfeldblum has joined #ruby
<bigmac> i guess i need to look at the source chilkat
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #ruby
az7ar_away is now known as az7ar
Nilium has joined #ruby
havenwood has quit [Read error: Connection reset by peer]
maletor_ has joined #ruby
atmosx has quit [Quit: Textual IRC Client: www.textualapp.com]
PeterBoy has quit [Quit: Bye Bye]
michael_mbp has quit [Excess Flood]
IceDragon has quit [Ping timeout: 240 seconds]
mercwithamouth has quit [Ping timeout: 272 seconds]
michael_mbp has joined #ruby
az7ar is now known as az7ar_away
<bigmac> chilkat.so
<banister> bigmac who is chilkat
<bigmac> its a gem
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<banister> bigmac is this chilkat http://cl.ly/image/1G2y2Q0w0n0g /cc epitron
doug1 has joined #ruby
gtrak has quit [Ping timeout: 244 seconds]
<banister> bigmac TIL pitbull writes ruby
<apeiros> the "musician"?
existensil has quit [Quit: WeeChat 0.4.2]
<pontiki> no wonder everyone is abandoning ruby
<banister> epitron re the previous image i posted ;)
<banister> eerr apeiros
<apeiros> banister: ah, lol
boombadaroomba has joined #ruby
<apeiros> vin diesel writes ruby!
<banister> groot!
rkalfane has joined #ruby
weemsledeux has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<epitron> ugh, chilkat
j_mcnally has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Lewix> apeiros: vin diesel? come on...
<epitron> lol.. it has a 30-day trial that you have to unlock with an API call
<epitron> # Any string unlocks the component for the 1st 30-days.
<epitron> success = http.UnlockComponent("Anything for 30-day trial")
<apeiros> Lewix: come on to what? where? I will! ;-p
rkalfane has quit [Client Quit]
<Lewix> apeiros: where did you read that
<apeiros> Lewix: the pic banister posted
rkalfane has joined #ruby
<epitron> bigmac: i think you'll have more luck with the "http" gem
<Lewix> apeiros: my interpretation is a bit different from yours - his head look like a ruby
benzrf|offline is now known as benzrf
<epitron> Lewix: i always imagine the "genius programmer" guy from Grandma's Boy
<shevy> Hanmac I am learning C
zarubin has joined #ruby
IceDragon has joined #ruby
<pontiki> shevy is abandoning ruby!
<shevy> this time I am working systematically through "The C Programming Language" by Ritchie
<Lewix> shevy: i'm totaly going to learn C again one of these days
<shevy> pontiki I'll keep ruby!
<apeiros> shevy: good move! C doesn't have unicode! :-p
abuzze has joined #ruby
<shevy> yeah, I can use all ansi letters
debugrr has joined #ruby
<shevy> no more snowmen function names
endash has quit [Read error: Connection reset by peer]
* apeiros heard of ansi letters for the first time
AlexRussia has joined #ruby
endash has joined #ruby
chrishough has joined #ruby
<apeiros> shevy: of course you can have snowmen function names in C!
<apeiros> you just need a proper macro, or something
<shevy> hmmmm
jimms has joined #ruby
AlexRussia has quit [Client Quit]
<shevy> HTML Entity (decimal): &#9731; Unicode Character 'SNOWMAN' (U+2603)
<shevy> perhaps I can write this for X-mas
AlexRussia has joined #ruby
<Lewix> epitron: what kind of show is that
<epitron> the kind that's 90 minutes long and is displayed in movie theatres
thsig has joined #ruby
<shevy> the kind of show where you pee your pants
Avahey has quit [Quit: Connection closed for inactivity]
Takle has quit [Read error: Connection reset by peer]
abuzze has quit [Ping timeout: 265 seconds]
Takle has joined #ruby
rahult has joined #ruby
jdj_dk__ has quit [Remote host closed the connection]
mercwithamouth has joined #ruby
gtrak has joined #ruby
rkalfane has quit [Quit: Textual IRC Client: www.textualapp.com]
fabrice31 has joined #ruby
msmith has joined #ruby
reinaldob has joined #ruby
weemsledeux has joined #ruby
rkalfane has joined #ruby
maletor_ has quit [Quit: Computer has gone to sleep.]
JDHankle has joined #ruby
IceDragon has quit [Ping timeout: 245 seconds]
jimms has quit [Remote host closed the connection]
IceDragon has joined #ruby
mercwithamouth has quit [Ping timeout: 250 seconds]
m8 has quit [Quit: Sto andando via]
hamakn has joined #ruby
<Lewix> epitron: that short video didn't make me laugh , not even once
<epitron> me either
gregf has quit [Quit: WeeChat 1.0.1]
msmith has quit [Ping timeout: 240 seconds]
fabrice31 has quit [Ping timeout: 265 seconds]
gregf has joined #ruby
Hien_ has quit [Ping timeout: 272 seconds]
alaa00 has joined #ruby
Hien has joined #ruby
hamakn has quit [Ping timeout: 245 seconds]
maletor_ has joined #ruby
PeterBoy has joined #ruby
<bigmac> so, whats the simplist way to send a get request to facebook
timonv_ has joined #ruby
<bigmac> net::https ?
SilkFox has quit [Ping timeout: 265 seconds]
<bigmac> i dont know what im doing
<bigmac> i need to quit using sockets
andrewlio has quit [Remote host closed the connection]
nisstyre has joined #ruby
mercwithamouth has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
<bigmac> get request with header fields...
amen467 has joined #ruby
nisstyre has joined #ruby
nisstyre has quit [Changing host]
amen467 has left #ruby [#ruby]
Versality has quit [Quit: Textual IRC Client: www.textualapp.com]
j_mcnally has joined #ruby
Versality has joined #ruby
az7ar_away is now known as az7ar
jimbach has quit [Remote host closed the connection]
gtrak has quit [Ping timeout: 255 seconds]
<Morrolan> bigmac: Net::HTTP for stdlib. If you're okay with using a gem, then I've heard good things about httparty.
kirun has quit [Quit: Client exiting]
jimms has joined #ruby
kristofferR has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gtrak has joined #ruby
doug1 has quit [Ping timeout: 240 seconds]
Alina-malina has quit [Read error: Connection reset by peer]
Alina-malina has joined #ruby
IceDragon has quit [Ping timeout: 245 seconds]
<bigmac> Morrolan: ok, thanks for the share. ill try now to modify my headers
IceDragon has joined #ruby
<bigmac> wresponse = HTTParty.get('https://site.com/')
<bigmac> wresponse = HTTParty.get('https://site.com/', [cookie: mine here])
jdj_dk has joined #ruby
mengu has quit [Remote host closed the connection]
az7ar is now known as az7ar_away
Visual_E has joined #ruby
IceDragon has quit [Ping timeout: 240 seconds]
spider-mario has quit [Remote host closed the connection]
mary5030 has quit [Remote host closed the connection]
<Morrolan> In general, take a look at the 'examples' directory. :)
jdj_dk has quit [Ping timeout: 245 seconds]
doug1 has joined #ruby
IceDragon has joined #ruby
jimmyhoughjr has joined #ruby
arescorpio has joined #ruby
folippi has joined #ruby
Lewix has quit [Remote host closed the connection]
<folippi> I'm making a regex that will catch all content-type image/***, except for gif. The problem is doing the "not 'gif'" part. The closest I get is /\Aimage\/^[gif]*\Z/, but that does not work. String that shall pass are "image/jpeg", "image/png" but not "image/gif". How do you in a regex negate a sequence of characters?
<apeiros> folippi: (?!gif)
<apeiros> read about look-arounds. note that they're non-consuming ("cursor" does not advance)
PeterBoy has quit [Quit: Bye Bye]
<folippi> apeiros: like so "\Aimage\/(?!gif)\z"? When I test that against "image/gif" and "image/jpeg" both do not match
<folippi> I'll read up on look-arounds. Thanks for the tip!
<apeiros> folippi: as said, (?!…) is non-consuming. so your regex only matches "image/"
<apeiros> /\Aimage\/(?!gif)\w+\z # e.g.
rahult has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<folippi> Cool! You are totally right. And thanks a lot for pointing towards look-arounds, that was a gap in my regex knowledge
Pupeno has quit [Quit: Leaving...]
claymore has quit [Quit: Leaving]
reinaldob has quit [Remote host closed the connection]
rahult has joined #ruby
rahult is now known as rahult_
kasperti_ has quit []
wyclif has joined #ruby
<wyclif> hey
rahult_ is now known as rahult
amundj has joined #ruby
nonks has joined #ruby
amundj has quit [Client Quit]
wyclif has quit [Quit: bye]
gtrak has quit [Ping timeout: 245 seconds]
drawingthesun has quit [Ping timeout: 244 seconds]
zarubin has quit [Quit: Leaving.]
doug1 has quit [Ping timeout: 255 seconds]
greygrissom has quit [Remote host closed the connection]
nonks has quit [Quit: WeeChat 1.0]
max96at is now known as max96at|off
Joufflu has quit [Read error: Connection reset by peer]
alaa00 has quit [Ping timeout: 265 seconds]
jimmyhoughjr has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
folippi has quit [Read error: Connection reset by peer]
ghostmoth has quit [Quit: ghostmoth]
nonks has joined #ruby
zarubin has joined #ruby
Versality has quit [Quit: Lingo: www.lingoirc.com]
nonks has quit [Client Quit]
msmith has joined #ruby
nonks has joined #ruby
IceDragon has quit [Ping timeout: 244 seconds]
IceDragon has joined #ruby
jdj_dk has joined #ruby
Lewix has joined #ruby
chrisja has joined #ruby
weemsledeux has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nonks has quit [Remote host closed the connection]
zarubin has quit [Quit: Leaving.]
maletor_ has quit [Quit: Computer has gone to sleep.]
j_mcnally has quit [Read error: Connection reset by peer]
nonks has joined #ruby
Fire-Dragon-DoL has quit [Quit: Leaving.]
jimbach has joined #ruby
jgt has quit [Ping timeout: 260 seconds]
nfk has quit [Quit: yawn]
einarj has joined #ruby
Visual_E has quit [Quit: Down the |]
eka_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
weemsledeux has joined #ruby
SilkFox has joined #ruby
it0a has quit [Ping timeout: 260 seconds]
Wolland_ has quit [Ping timeout: 245 seconds]
spastorino has joined #ruby
it0a has joined #ruby
patrick99e99 has joined #ruby
rahult has quit [Read error: Connection reset by peer]
rahult_ has joined #ruby
SilkFox has quit [Ping timeout: 272 seconds]
codecop has quit [Remote host closed the connection]
cherwin has joined #ruby
eka has joined #ruby
patrick99e99 has quit [Ping timeout: 256 seconds]
lxsameer has quit [Quit: Leaving]
DLSteve has quit [Quit: Leaving]
MSY has joined #ruby
robustus has quit [Ping timeout: 255 seconds]
MSY is now known as Guest26456
<shevy> anyone has a collection of image-manipulation snippets, using ruby?
Guest26456 has quit [Client Quit]
<shevy> lol
wyclif has joined #ruby
<shevy> DESCRIPTION: Stub gem for an upcoming image processing library.
<shevy> LICENSE: Copyright 2006, 2007 Cloudburst, LLC. Licensed under the AFL 3.0; see the included LICENSE file.
<shevy> so they wrote a stub gem... haven't updated it in soon 8 years... but were busy enough to add a LICENSE to something that does not exist
<shevy> now if that is not a huh moment I don't know what is ...
<wyclif> hey everybody
it0a has quit [Quit: WeeChat 1.0.1]
wyclif has quit [Client Quit]
it0a has joined #ruby
robustus has joined #ruby
ringaring has joined #ruby
rh1n0 has joined #ruby
jdj_dk has quit [Ping timeout: 272 seconds]
timonv_ has quit [Remote host closed the connection]
rh1n0 has quit [Max SendQ exceeded]
djbkd has joined #ruby
_djbkd has joined #ruby
boombadaroomba has quit [Remote host closed the connection]
ringarin has quit [Ping timeout: 258 seconds]
apeiros has quit []
mary5030 has joined #ruby
agjacome has quit [Ping timeout: 265 seconds]
djbkd has quit [Ping timeout: 245 seconds]
apeiros has joined #ruby
nowthatsamatt has joined #ruby
<nowthatsamatt> In this:
<nowthatsamatt> command => "/bin/bash /usr/share/doc/wordpress/examples/setup-mysql -n wordpress $(/sbin/ifconfig eth1 | grep 'inet addr' | awk -F: '{print $2}' | awk '{print $1}')",
<nowthatsamatt> how would I get the $() to be its own var in ruby
<nowthatsamatt> something like: x = exec(“/sbin/ifconfig eth1 | grep 'inet addr' | awk -F: '{print $2}' | awk '{print $1}’”) but i don't know how to put it in
stoddart has joined #ruby
starless has quit [Ping timeout: 245 seconds]
<stoddart> hi everybody
xcyclist has joined #ruby
<Lewix> what do they mean by cucumber features and Rdoc..im confused https://github.com/rspec/rspec
<tmoore> nowthatsamatt: that's what backticks do: x = `/sbin/ifconfig eth1 | grep 'inet addr' | awk -F: '{print $2}' | awk '{print $1}'`
<tmoore> but... there is almost certainly a more direct way to do this
vivekrai has quit [Quit: Connection closed for inactivity]
abuzze has joined #ruby
klaut has quit [Remote host closed the connection]
stoddart has quit [Quit: leaving]
<shevy> maybe!
<shevy> that is a haskell idiom
<shevy> let's run this code ... maybe
andrewlio has joined #ruby
desktop has joined #ruby
zorak8 has joined #ruby
debugrr has quit [Ping timeout: 255 seconds]
andrewlio has quit [Client Quit]
stoddart has joined #ruby
<stoddart> hey
abuzze has quit [Ping timeout: 265 seconds]
Petru has quit [Quit: Leaving]
j_mcnally has joined #ruby
mary5030 has quit [Remote host closed the connection]
bMalum has quit [Quit: bMalum]
<shevy> hey stoddart
<stoddart> :new
<stoddart> hey
<shevy> lol
<shevy> :old
<stoddart> yeah, haven't used irssi for a while :)
fabrice31 has joined #ruby
<JDHankle> :newish
<shevy> I always mistype with irssi
AlSquire has quit [Quit: This computer has gone to sleep]
mary5030 has joined #ruby
<stoddart> trying to get my tmux/irssi setup mojo working
Soda has quit [Remote host closed the connection]
starless has joined #ruby
mary5030_ has joined #ruby
jdj_dk has joined #ruby
mary5030 has quit [Read error: Connection reset by peer]
fabrice31 has quit [Ping timeout: 240 seconds]
Deele has quit [Ping timeout: 260 seconds]
einarj has quit [Remote host closed the connection]
banister is now known as banisterfiend
SilkFox has joined #ruby
jimms has quit [Remote host closed the connection]
Kuraiko_ has joined #ruby
rubie has joined #ruby
Kuraiko_ has quit [Client Quit]
IceDragon has quit [Ping timeout: 265 seconds]
IceDragon has joined #ruby
zorak8 has quit [Ping timeout: 250 seconds]
Kuraiko has quit [Ping timeout: 265 seconds]
Takle has quit [Remote host closed the connection]
ccooke_ is now known as ccooke
<rubie> hi all: im having a hard time figuring out a way around this problem, care to take a look? https://gist.github.com/gabrie30/2871803dfdac4da43659
az7ar_away is now known as az7ar
j_mcnally has quit [Read error: Connection reset by peer]
j_mcnally has joined #ruby
jdj_dk has quit [Ping timeout: 244 seconds]