apeiros changed the topic of #ruby-lang to: Ruby 2.1.0; 2.0.0-p353; 1.9.3-p484: http://ruby-lang.org || Paste >3 lines of text on http://gist.github.com || RubyConf 2013 at http://www.justin.tv/confreaks
<centrx> ykk`, Try also #ruby and #rubyonrails
<ykk`> ahh of course
<ykk`> sorry =P
<ykk`> people usually use Javascript for it but I don't know enough of it and if it can be resolved with Ruby might as well stick to what i know
elliotec has joined #ruby-lang
AngelofSilence has quit [Ping timeout: 245 seconds]
araujo has joined #ruby-lang
jacky has joined #ruby-lang
jacky has quit [Changing host]
jacky has joined #ruby-lang
jacky has quit [Excess Flood]
amerine has quit [Quit: Computer has gone to sleep.]
jhass is now known as jhass|off
kalehv has quit [Remote host closed the connection]
elia has quit [Quit: Computer has gone to sleep.]
rnea has joined #ruby-lang
rnea has quit [Client Quit]
dingus_khan has quit [Remote host closed the connection]
kotk1 has quit [Quit: Leaving...]
solars has quit [Ping timeout: 245 seconds]
AngelofSilence has joined #ruby-lang
senseinerd has joined #ruby-lang
senseinerd has quit [Client Quit]
Lewix has joined #ruby-lang
VTLob has quit [Quit: VTLob]
<AngelofSilence> Note to self: make sure to read the entire virtualbox preset text before spending half an hour trying to figure out why virtualbox wouldn't use amd-v
elia has joined #ruby-lang
havenwood has joined #ruby-lang
DevDoo has quit [Read error: No route to host]
francisfish has joined #ruby-lang
DevDoo has joined #ruby-lang
saarinen has joined #ruby-lang
hahuang65 has joined #ruby-lang
DevDoo has quit [Remote host closed the connection]
DevDoo has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
francisfish has quit [Ping timeout: 252 seconds]
Lewix has quit [Remote host closed the connection]
elliotec has quit [Remote host closed the connection]
jackyalc- has joined #ruby-lang
elliotec has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
jackyalc- has quit [Excess Flood]
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby-lang
elliotec has joined #ruby-lang
rsl has quit [Read error: Connection reset by peer]
rsl has joined #ruby-lang
saarinen has quit [Quit: saarinen]
kalehv has joined #ruby-lang
mistym has quit [Remote host closed the connection]
kalehv has quit [Ping timeout: 252 seconds]
Onixs has quit [Ping timeout: 272 seconds]
dingus_khan has joined #ruby-lang
saarinen has joined #ruby-lang
ykk` has quit [Quit: ykk`]
jackyalc- has joined #ruby-lang
jackyalc- has quit [Excess Flood]
DevDoo has quit [Remote host closed the connection]
jsullivandigs has quit [Remote host closed the connection]
mistym has joined #ruby-lang
DevDoo has joined #ruby-lang
amerine has joined #ruby-lang
amerine_ has joined #ruby-lang
sepp2k has quit [Read error: Connection reset by peer]
amerine has quit [Ping timeout: 260 seconds]
dingus_khan has quit [Remote host closed the connection]
iliketurtles has quit [Quit: zzzzz…..]
heftig has quit [Quit: Quitting]
jackyalc- has joined #ruby-lang
jackyalc- has quit [Excess Flood]
kig has joined #ruby-lang
dingus_khan has joined #ruby-lang
asahi has quit [Quit: Leaving.]
kig is now known as kigster
<dingus_khan> centrx: if you're around, could i bother you for a some advising on an OO design question?
<centrx> Shoot
kalehv has joined #ruby-lang
<dingus_khan> ok that was fast, hang on while i make a paste, lol
<dingus_khan> fully expected more latency hah
<centrx> Depends on where I am
<dingus_khan> totally, i just figured most people are busy most of the time, heh, sorry for being unprepared; here's the paste: http://codepad.org/WsPUrgMX
<centrx> You must be very lucky
<dingus_khan> so i think i'm going insane, lost in my own head on how to *properly* structure this thing
<dingus_khan> centrx: definitely feeling lucky right now!
marcdel has quit []
<dingus_khan> obviously not complete, i keep writing individual parts while i struggle with how best to tie them together, that sort of thing
DevDoo has quit [Remote host closed the connection]
<centrx> What is Customer going to use from Reader?
<dingus_khan> i guess the question is, for best OO design in a standalone program like this in pure ruby, does it make sense to separate out those Reader functions into a module like that?
kalehv has quit [Ping timeout: 245 seconds]
<dingus_khan> ah right, so i was about to place some methods that Customer could use, like inputs, but i feel like that doesn't make sense
mistym has quit [Remote host closed the connection]
<centrx> It makes sense to have your CsvReader in a separate class/module
<centrx> But it seems awkward to have Hotel extend Reader or Customer extend Reader
<dingus_khan> right? how do i create a collection that exists as an object in an OO way that isn't just a disembodied method?
Lewix has joined #ruby-lang
<dingus_khan> i can't think of a sensible way to make a separate class for the purposes of handling the data structure that houses the hotel selections
marcdel has joined #ruby-lang
<centrx> dingus_khan, You could have the Reader return an array of hashes, instead of creating Hotels within it
<dingus_khan> or am i wrong, that there should be a separate class to manage things like IO and providing the hash of hotels? i seriously feel insane, like this is obvious somehow
cnivolle has quit [Remote host closed the connection]
DevDoo has joined #ruby-lang
<centrx> dingus_khan, This would separate and genericize the Reader logic from the particular class that is being read
<dingus_khan> ok, so have reader in fact create the data structure--does it then make sense to move the methods like #cheapest and #return_rates to the module if i'm extending it, or am i moving too many Hotel-specific concerns out to a module?
<dingus_khan> right, that makes sense. hmm... so i would return the array of hashes/hash it currently creates to the global scope?
<centrx> dingus_khan, Right now it seems small enough that you should keep it there
<centrx> cheapest should be a class method
surtin has joined #ruby-lang
<dingus_khan> yeah that feels right too; so the extending of Reader in Hotel isn't a good practice, or is patently unnecessary in a program this small?
<dingus_khan> part of it is that i wanted to sort of design it "with the future in mind", as in if i ever decided to make it more complex or swap out CSVs for an ORM like AR or something
surtin has quit [Client Quit]
<centrx> Mixing the Reader with the object seems unnecessary or would cause confusion
<centrx> The component that handles input from data sources should be separate from the object ultimately created
<dingus_khan> centrx: ok, yeah, it's definitely only mostly confused me so far, my original line of thought having become more vague as i added more parts
<dingus_khan> centrx: so in this case, Reader should in fact handle data input from a file/CSV, but the CLI input should be separate from the Reader?
tanema has joined #ruby-lang
<centrx> dingus_khan, If you mean command-line argument, yes
existensil_ has quit [Read error: Operation timed out]
<centrx> dingus_khan, Otherwise, reading a CSV from stdin is the same logic as reading a CSV with File.open
<dingus_khan> i was thinking of making the #inputs for collecting CLI arguments a class method of customer, part of the extending Reader in Customer
<dingus_khan> centrx: yep, i did mean command arguments from the terminal when it's running
jackyalc- has joined #ruby-lang
jackyalc- has quit [Excess Flood]
mbj has quit [Quit: leaving]
havenwood has quit [Read error: Connection reset by peer]
havenwood has joined #ruby-lang
<centrx> dingus_khan, Yes, that is totally separate, and use OptionParser for it. http://ruby-doc.org/stdlib-2.1.0/libdoc/optparse/rdoc/OptionParser.html
diegoviola has joined #ruby-lang
<dingus_khan> centrx: whoa, definitely going to need to study that for a minute, thank you! is that part of the standard library?
<centrx> Yes
existensil has joined #ruby-lang
<dingus_khan> sweet, reading now
marcdel has quit [Ping timeout: 272 seconds]
Lewix has quit [Remote host closed the connection]
symm- has quit [Ping timeout: 260 seconds]
Lewix has joined #ruby-lang
<dingus_khan> wow, that's interesting, a bit for complex for me right now, but i'm messing with the demo
jackhammer2022 has quit [Quit: Computer has gone to sleep.]
mykoweb has quit [Remote host closed the connection]
<dingus_khan> centrx: given the time constraints on this, i think i need to push learning the option parser for right now--i intend to explore it further in the future though. my needs are pretty basic for the moment, so i'm going to try and get this functional first, fair?
<dingus_khan> push back*
<centrx> Sure
<centrx> I would mention that the OptionParser is really much easier than the documentation looks
<centrx> I had the same thought when I read it, but in the end it is simple if you are using basic arguments
jackhammer2022 has joined #ruby-lang
<dingus_khan> ah see, i had a feeling that was the case, given the difference between the "simple" example and the full-size program they use as the demo
<dingus_khan> so the method i have for splitting and converting user input i have now, that would transfer fairly easily to the option parser?
jackyalc- has joined #ruby-lang
jackyalc- has quit [Excess Flood]
<centrx> dingus_khan, I don't know what that inputs method does. It would take some digging to figure it out :)
havenwood has quit [Ping timeout: 246 seconds]
arBmind has quit [Ping timeout: 252 seconds]
bzalasky has quit [Remote host closed the connection]
arBmind has joined #ruby-lang
<dingus_khan> centrx: ah yes, sorry, i definitely did not observe the conventional wisdom of "if you use a regex to solve one problem, you've now got two problems", hah
bzalasky has joined #ruby-lang
jsullivandigs has joined #ruby-lang
<dingus_khan> i'm just more comfortable using rubular to smash out those expressions in the kind of rush i'm in
<dingus_khan> old habits!
havenwood has joined #ruby-lang
jackyalc- has joined #ruby-lang
jackyalc- has quit [Excess Flood]
marcdel has joined #ruby-lang
mistym has joined #ruby-lang
SteveBenner09 has joined #ruby-lang
pr0ton has joined #ruby-lang
francisfish has joined #ruby-lang
tanema has quit [Remote host closed the connection]
tanema has joined #ruby-lang
francisfish has quit [Ping timeout: 272 seconds]
elliotec has quit [Remote host closed the connection]
elliotec has joined #ruby-lang
<dingus_khan> centrx: if i'm not bothering you yet, a thought: removing the #return_rates out of Hotel and placing in Reader, or somehow using something like a class containing something like the OptionParser to contain that?
<centrx> Does return_rates read from a CSV?
tanema has quit [Ping timeout: 252 seconds]
amerine_ has quit [Quit: Computer has gone to sleep.]
<centrx> Is return_rates a command-line option?
<dingus_khan> centrx: it does not, it's relying on a hash of the hotel objects being passed in
<dingus_khan> it is not; it's an instance method for Hotel right now.
<dingus_khan> that changes invoking the #cheapest method though
<dingus_khan> scoping, ack
<centrx> Right, so sounds like it belongs in Hotel
SteveBenner09 has quit [Remote host closed the connection]
SteveBenner09 has joined #ruby-lang
<dingus_khan> ok, thanks for that; i feel like that's mostly the way it's supposed to be, just wanted a check on that
RoxasShadowRS has quit [Read error: Connection reset by peer]
nirix has quit [Read error: Operation timed out]
mykoweb has joined #ruby-lang
ykk` has joined #ruby-lang
ykk` has quit [Client Quit]
havenwood has quit [Remote host closed the connection]
PantsMeh has joined #ruby-lang
havenwood has joined #ruby-lang
abstr4ct has quit [Ping timeout: 260 seconds]
Lewix has quit [Remote host closed the connection]
havenwood has quit [Ping timeout: 246 seconds]
pabloh has joined #ruby-lang
michaeldeol has quit [Quit: Computer has gone to sleep.]
Mousse_ has quit [Quit: Computer has gone to sleep.]
michaeldeol has joined #ruby-lang
dorei has quit []
savage-_ has quit [Ping timeout: 272 seconds]
michaeldeol has quit [Ping timeout: 260 seconds]
chancancode has quit [Ping timeout: 264 seconds]
bzalasky has quit [Remote host closed the connection]
lacrosse has quit [Ping timeout: 272 seconds]
lacrosse has joined #ruby-lang
savage-__ has joined #ruby-lang
mjc_ has quit [Ping timeout: 272 seconds]
bcardarella has quit [Ping timeout: 272 seconds]
kigster has quit []
chancancode has joined #ruby-lang
mjc_ has joined #ruby-lang
jackyalcine has joined #ruby-lang
tectonic has joined #ruby-lang
bcardarella has joined #ruby-lang
sree has joined #ruby-lang
<AngelofSilence> Hey guys, I'm having a bit of trouble..
ikrima has quit [Ping timeout: 260 seconds]
<AngelofSilence> I rarely use linux, but I'm using ubuntu in a vm to work with this gem.
<AngelofSilence> I'm attempting to install the gem, but it says it needs ruby 1.9.1 or greater.
<AngelofSilence> I installed ruby 1.9.1 but when i do ruby -v it tells me the version is 1.8.7
<AngelofSilence> does ubuntu have a built-in version of ruby or something?
elliotec has quit [Remote host closed the connection]
elliotec has joined #ruby-lang
DevDoo has quit [Remote host closed the connection]
sree is now known as new_programmer
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #ruby-lang
<dingus_khan> AngelofSilence: i do remember seeing that ruby is a default package at some point, plus i found this: http://stackoverflow.com/questions/1892877/how-do-i-make-ruby-1-9-the-default-ruby-on-ubuntu
<dingus_khan> AngelofSilence: is it possible to install something like RVM on that vm?
pabloh has quit [Ping timeout: 260 seconds]
nXqd has joined #ruby-lang
<centrx> zenspider, What is the difference between Ruby Parser and Ripper?
new_programmer has quit []
pabloh has joined #ruby-lang
skade has joined #ruby-lang
michaeldeol has joined #ruby-lang
ansos has quit [Read error: Connection reset by peer]
Barrin6 has quit [Quit: Leaving]
ansos has joined #ruby-lang
marcdel has quit []
skade has quit [Client Quit]
michaeldeol has quit [Read error: Connection reset by peer]
michaeldeol has joined #ruby-lang
earthquake has joined #ruby-lang
<AngelofSilence> Found it now, thanks dingus_kahn
saarinen has quit [Quit: saarinen]
michaeldeol has quit [Ping timeout: 260 seconds]
DevDoo has joined #ruby-lang
<AngelofSilence> Well what the hell?
<AngelofSilence> I'm installing this gem but it doesn't install
dingus_khan has quit [Remote host closed the connection]
<AngelofSilence> it goes over well and then i cant use it and i cant find it in any bin
dingus_khan has joined #ruby-lang
pabloh has quit [Quit: Saliendo]
<AngelofSilence> aaand fixed
kiddorails has joined #ruby-lang
kiddorails has quit [Read error: Connection reset by peer]
<dingus_khan> AngelofSilence: right on, what did it take?
<AngelofSilence> Well for some reason I messed up the bundle thing and when i went to install the generated gem it was empty
<AngelofSilence> I then attempted to gem install from github
<AngelofSilence> gem install from the gem repo*
<AngelofSilence> and for whatever reason, it would repeatedly attempt to install the empty gem
<AngelofSilence> so i had to uninstall the gem then reinstall
<AngelofSilence> so now I'm working with a slightly outdated version of the gem, but whatevs
<AngelofSilence> thanks be to whitequark
<AngelofSilence> 16k classes decompiled hah
<AngelofSilence> er
<AngelofSilence> 4k classes decompiled
<AngelofSilence> oh.. well thats not super helpful: 8.5k out of 11k methods failed to decompile
marcdel has joined #ruby-lang
nertzy2 has joined #ruby-lang
<dingus_khan> AngelofSilence: you're referring to the install log output there? interesting--i've never worked on a vm before, so i'm not really sure what's going on there. have you tried #linux?
<AngelofSilence> Everythings good in #linux
<AngelofSilence> er
<AngelofSilence> in linux
<dingus_khan> the channel that is
<AngelofSilence> I'm using a tool of whitequark's to decompile something
<dingus_khan> gotcha
<AngelofSilence> it deobfuscates and decompiles, but it failed to decompile about 70% of the classes :/
nertzy has quit [Ping timeout: 252 seconds]
bzalasky has joined #ruby-lang
<AngelofSilence> anyone know an online paste tool that can take insanely large text?
<AngelofSilence> Pastebin appears to have commited suicide.
<SteveBenner09> have you had this error in ruby 2.1: uninitialized constant FILE (NameError)
<SteveBenner09> thrown on a line where I use File.open
<SteveBenner09> my script cant find File
<dingus_khan> AngelofSilence: i've been using http://codepad.org/
<SteveBenner09> nevermind, it was a syntax error
<dingus_khan> SteveBenner09: do you have the file in the same directory and the proper path specified in your method opening the file?
<dingus_khan> whoops, too slow
kalehv has joined #ruby-lang
<AngelofSilence> Jesus christ, it still created a 9 mb text file
amerine has joined #ruby-lang
SteveBenner09 has quit []
DevDoo has quit [Remote host closed the connection]
bzalasky has quit [Remote host closed the connection]
fragamus has joined #ruby-lang
Lewix has joined #ruby-lang
kalehv has quit [Remote host closed the connection]
|jemc| has quit [Quit: WeeChat 0.4.2]
kalehv has joined #ruby-lang
kalehv has quit [Ping timeout: 252 seconds]
DevDoo has joined #ruby-lang
nXqd has quit [Ping timeout: 252 seconds]
marcdel has quit []
mehlah has quit [Quit: Leaving...]
cored has joined #ruby-lang
anna has joined #ruby-lang
anna is now known as Guest54518
francisfish has joined #ruby-lang
earthquake has quit [Quit: earthquake]
francisfish has quit [Ping timeout: 245 seconds]
michaeldeol has joined #ruby-lang
michaeldeol has quit [Ping timeout: 260 seconds]
Asher has quit [Quit: Leaving.]
Asher has joined #ruby-lang
dik_dak has quit [Ping timeout: 245 seconds]
marcdel has joined #ruby-lang
iliketurtles has joined #ruby-lang
JoshuaPaling has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
michaeldeol has joined #ruby-lang
michaeldeol has left #ruby-lang [#ruby-lang]
cored has quit [Ping timeout: 260 seconds]
dik_dak has joined #ruby-lang
rahul_j has joined #ruby-lang
amerine_ has joined #ruby-lang
amerine has quit [Ping timeout: 245 seconds]
kalehv has joined #ruby-lang
fragamus has quit [Quit: Computer has gone to sleep.]
benoit_ has quit [Ping timeout: 272 seconds]
benoit_ has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
retro|cz has quit [Ping timeout: 252 seconds]
dingus_khan has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
nXqd has joined #ruby-lang
marcdel has quit []
abstr4ct has joined #ruby-lang
PantsMeh has quit [Ping timeout: 252 seconds]
rahul_j has joined #ruby-lang
rippa has joined #ruby-lang
kalehv has quit [Remote host closed the connection]
nichtdiebohne has joined #ruby-lang
AngelofSilence has quit [Ping timeout: 245 seconds]
Guest54518 has quit [Ping timeout: 248 seconds]
marcdel has joined #ruby-lang
ecnalyr has joined #ruby-lang
<dingus_khan> centrx: have time for one more sanity check? i think i've painted myself into a corner here: http://codepad.org/1jjNNPfy
<centrx> What is this:
<centrx> hotels.each_value do |hotel|
<centrx> Hotel.return_rates(parameters, hotels)
<centrx> end
fuhgeddaboudit has joined #ruby-lang
<dingus_khan> centrx: that is Hotel accessing the class method return_rates, passing in input from terminal and the hash of the Hotel objects
<dingus_khan> crap
<dingus_khan> i'm starting to lose my mind a bit
jamo_____ has quit [Quit: Changing server]
<dingus_khan> PS just in case, please tell me if you're too busy, don't want to pester
<centrx> You are fine
<centrx> You should probably go to sleep to avoid losing your mind.
<dingus_khan> i might do that. this is technically due at the end of tomorrow, but i'm starting to wander in an infinite mental loop
<dingus_khan> thanks again though
JoshuaPaling has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nisstyre has quit [Quit: WeeChat 0.4.3]
francisfish has joined #ruby-lang
francisfish has quit [Ping timeout: 260 seconds]
iliketurtles has quit [Quit: zzzzz…..]
Barrin6 has joined #ruby-lang
fuhgeddaboudit has quit [Ping timeout: 260 seconds]
saarinen has joined #ruby-lang
iliketurtles has joined #ruby-lang
phansch has joined #ruby-lang
saarinen has quit [Ping timeout: 252 seconds]
nisstyre has joined #ruby-lang
nXqd_ has joined #ruby-lang
nXqd has quit [Ping timeout: 248 seconds]
pr0ton has quit [Quit: pr0ton]
bzalasky has joined #ruby-lang
nertzy2 has quit [Quit: This computer has gone to sleep]
nichtdiebohne has quit [Quit: Leaving...]
Lewix has quit [Remote host closed the connection]
rahul_j has quit [Quit: rahul_j]
fuhgeddaboudit has joined #ruby-lang
fuhgeddaboudit has quit [Ping timeout: 260 seconds]
dingus_khan has quit [Remote host closed the connection]
centrx has quit [Quit: Leaving]
marcdel has quit []
JoshuaPaling has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
nirix has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
amerine_ has quit [Quit: Computer has gone to sleep.]
Atw has quit [Ping timeout: 252 seconds]
dingus_khan has quit [Ping timeout: 245 seconds]
solars has joined #ruby-lang
dik_dak has quit [Quit: Leaving]
Coincidental has quit [Remote host closed the connection]
rahul_j has joined #ruby-lang
jackhammer2022 has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
DevDoo has quit [Quit: Leaving...]
mistym_ has joined #ruby-lang
mistym has quit [Ping timeout: 252 seconds]
Guest54518 has joined #ruby-lang
Barrin6 has quit [Quit: Leaving]
elliotec has quit []
rahul_j has quit [Quit: rahul_j]
phansch has quit [Quit: Leaving]
CaptainJet has quit []
Lewix has joined #ruby-lang
Guest54518 is now known as anna_
unsymbol has joined #ruby-lang
<unsymbol> moin
jackyalcine has quit [Excess Flood]
jackyalcine has joined #ruby-lang
anna_ has quit [Quit: Leaving]
francisfish has joined #ruby-lang
francisfish has quit [Ping timeout: 248 seconds]
shinnya has joined #ruby-lang
saarinen has joined #ruby-lang
saarinen has quit [Ping timeout: 260 seconds]
francisfish has joined #ruby-lang
nichtdiebohne has joined #ruby-lang
saarinen has joined #ruby-lang
saarinen has quit [Ping timeout: 252 seconds]
francisfish has quit [Remote host closed the connection]
mistym has joined #ruby-lang
francisfish has joined #ruby-lang
iliketurtles has quit [Quit: zzzzz…..]
mistym_ has quit [Ping timeout: 260 seconds]
jackyalcine has quit [Excess Flood]
jackyalcine has joined #ruby-lang
Onixs has joined #ruby-lang
jeer has quit [Ping timeout: 272 seconds]
jeer has joined #ruby-lang
jackyalcine has quit [Excess Flood]
dingus_khan has joined #ruby-lang
dingus_khan has quit [Ping timeout: 246 seconds]
diegoviola has quit [Quit: WeeChat 0.4.3]
jackyalcine has joined #ruby-lang
<certainty> moin
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby-lang
jhass|off is now known as jhass
<ddfreyne> Can someone explain to me why ri/rdoc is so *insanely* slow when installing gems?
ansostuhmieng has joined #ruby-lang
ansos has quit [Ping timeout: 252 seconds]
skade has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
<apeiros> ddfreyne: -rprofile maybe can? I wonder whether yard is faster
mykoweb has quit [Remote host closed the connection]
Mousse_ has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
<ddfreyne> apeiros: It's slow by default.
<ddfreyne> Speaking of slowness: I had a GC.start in my test setup, and removing it sped up my tests by 200% :D
dingus_khan has joined #ruby-lang
skade has joined #ruby-lang
dingus_khan has quit [Ping timeout: 260 seconds]
ikrima has joined #ruby-lang
Mousse_ has quit [Quit: Computer has gone to sleep.]
JoshuaPaling has quit [Quit: Textual IRC Client: www.textualapp.com]
<rue|w> Performance tips of champions
Mousse_ has joined #ruby-lang
Cakey has joined #ruby-lang
sepp2k has joined #ruby-lang
internal has joined #ruby-lang
tectonic has quit []
internal has quit [Excess Flood]
internal has joined #ruby-lang
phansch has joined #ruby-lang
jhass is now known as jhass|off
heftig has joined #ruby-lang
ledestin has quit [Ping timeout: 260 seconds]
internal has quit [Quit: ZNC - http://znc.in]
internal has joined #ruby-lang
jhass|off is now known as jhass
ledestin has joined #ruby-lang
Cakey has quit [Ping timeout: 248 seconds]
cnivolle has joined #ruby-lang
Mousse_ has quit [Quit: Computer has gone to sleep.]
nXqd has joined #ruby-lang
RoxasShadowRS has joined #ruby-lang
cnivolle has quit [Remote host closed the connection]
nXqd has quit [Ping timeout: 272 seconds]
cnivolle has joined #ruby-lang
ikrima has quit [Ping timeout: 260 seconds]
benanne has joined #ruby-lang
cnivolle has quit [Remote host closed the connection]
cnivolle has joined #ruby-lang
lisberoia has joined #ruby-lang
<lisberoia> hello
<lisberoia> this script is not working: https://github.com/windytan/ctape/
mehlah has joined #ruby-lang
<lisberoia> does anyone know these scripts? or, could anyone take a look at it? thanks
<certainty> lisberoia: what dou you mean by, "it's not working"?
<lisberoia> to be more specific, I can code binary to sound, but the script to read from tape seems to do nothing
<certainty> it needs the sox binary. Do you have it installed?
<lisberoia> I do have it
<lisberoia> I bough a tape recorder, which was very hard to find :(
<lisberoia> the script to read from tape only lets me press Ctrl C to exit ...
<certainty> ok that was my first shot. And you have a correct configuration file?
<lisberoia> I'm affraid I cannot answer that question correcly
<lisberoia> I think I do, but I'm not sure
<certainty> can you gist your config.yml?
<lisberoia> my config.yml file reads exactly as the default from the web site
<lisberoia> I can edit it, modify it, etc., only I don't know what to change or ammend
<certainty> i don't know this code. I just read it and guess what could go wrong :)
<lisberoia> I don't know ruby
<lisberoia> you do, could you please take a look at the tape-read.rb script and tell me what it is supposed to do? thanks
<certainty> it reads the output of the sox command and does something with it
jonr22 has joined #ruby-lang
<lisberoia> fantastic!
<certainty> it uses global state alot which doesn't make it exactly easy to follow
<lisberoia> it should process the output of the sox application
<certainty> it does
tylersmith has quit [Remote host closed the connection]
<certainty> with the configuration given it invokes it with: sox -q '-t alsa "hw:0"' -t .raw -r 44100 -c 1 -b 16 -e signed-integer -
<certainty> whatever that does
<lisberoia> it should read the audio signal from a tape player plugged to the computer
<lisberoia> and then transform that to bytes
<apeiros> the '-' at the end might mean it waits for input on stdin
<certainty> yeah
<lisberoia> I'm trying to recover the experience of saving computer files to ordinary audio tapes and then loading them back; I'm a nostalgic from the 80s
<certainty> yeah it's a cool idea. I'm just reading the blog post
<lisberoia> the blog is just awesome
<lisberoia> the video there, from Youtube, actually displays an early version of the script, in Perl, not Ruby
<certainty> lisberoia: i was going to ask if that's actually a port of some perl script
<lisberoia> it probably is
<lisberoia> I'm illiterate in Ruby or Perl
<lisberoia> just some BASIC from the 80s
<lisberoia> I'm from the field of the ... liberal arts ... :(
<certainty> lisberoia: unfortunatelly without a possibility to test it it's hard to debug
<lisberoia> I see
<lisberoia> if you don't have a tape recorder, you can use the "rec" command, record the audio output of the first script, and then play it back with mplayer or vlc to test the troublesome script
<rue|w> The script seems pretty simple. You sure you have sox working right and the device properly connected and so on?
<lisberoia> I'm almost positive
<lisberoia> sox does right anything else I tell it to; doesn't seem to be a problem with it
<certainty> and the problem is that it doesn't finish?
cnivolle has quit [Remote host closed the connection]
<lisberoia> the device is properly connected; I can even turn monitoring the audio input through my speakers on, it works great
<lisberoia> the problem is that when I run tape-read.rb it keeps waiting for god knows what, doesn't do anything, and the only possibility I have is exiting with Ctrl C
<certainty> i guess it does something but is stuck in a loop or something
<lisberoia> perhaps, but:
<certainty> or waiting for input
Mousse_ has joined #ruby-lang
<lisberoia> others should have reported such a bug before me
<lisberoia> it seems to be a problem in my end
<lisberoia> or perhaps literaly nobody else tested that script! :)
<certainty> :)
<apeiros> lisberoia: `encoding: ./tape-write.rb < FILE`
<apeiros> that's from the readme of the project
skinny_much has quit [Ping timeout: 252 seconds]
<apeiros> do you feed the script input at its stdin?
<apeiros> (the ` < FILE` part does that in the example)
justinmcp has quit [Quit: No Ping reply in 180 seconds.]
<lisberoia> yes
<certainty> apparently encoding works, but decoding doesn't
<lisberoia> that part works great
<lisberoia> indeed!!
justinmcp has joined #ruby-lang
<lisberoia> encoding works, as I said at the beggining
<apeiros> ah, tape-read.rb is the problem, not tape-write.rb, I see
<lisberoia> could you hear the screeching sound? :)
<lisberoia> you got that right, apeiros
skinny_much has joined #ruby-lang
<certainty> so either the read() blocks and nothing is coming, or it can't exit the loop for some reason. Those are my guesses
<lisberoia> I'd like to hire someone to fix that
<lisberoia> anyone? :)
<lisberoia> or perhaps just winning over a nostalgic from the 80s
<lisberoia> there's more
<lisberoia> now seriously:
saarinen has joined #ruby-lang
<lisberoia> sometimes (not always) pressing Ctrl C gives this message: "sox WARN dither: dither clipped 71 samples; decrease volume?"
skade has quit [Quit: Computer has gone to sleep.]
saarinen has quit [Ping timeout: 248 seconds]
<certainty> lisberoia: i don't know if that's related but it could be
<lisberoia> alright
<lisberoia> thanks to you all for your help!
<lisberoia> what would you suggest I do next?
<certainty> well not much help :) you could file a bugreport on github
<lisberoia> I could, but I'm not positive it is a real bug
benanne has quit [Ping timeout: 260 seconds]
<lisberoia> I e-mailed the author of the script; I'm still awaiting her reply
<certainty> lisberoia: that's a good way too.
<certainty> just be patient
tanema has joined #ruby-lang
lisberoia has quit [Quit: Lost terminal]
benanne has joined #ruby-lang
benanne has quit [Quit: kbai]
hackjoy has joined #ruby-lang
bin7me has joined #ruby-lang
tylersmith has joined #ruby-lang
symm- has joined #ruby-lang
skade has joined #ruby-lang
shinnya has quit [Ping timeout: 260 seconds]
cnivolle has joined #ruby-lang
robmiller has joined #ruby-lang
robmiller has quit [Client Quit]
tylersmith has quit [Ping timeout: 260 seconds]
skade has quit [Client Quit]
tanema has quit [Remote host closed the connection]
tanema has joined #ruby-lang
prc has joined #ruby-lang
tanema has quit [Ping timeout: 260 seconds]
jackyalcine has quit [Excess Flood]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
nXqd has joined #ruby-lang
cored has quit [Remote host closed the connection]
cored has joined #ruby-lang
nXqd has quit [Ping timeout: 252 seconds]
jackyalcine has joined #ruby-lang
VTLob has joined #ruby-lang
elia has joined #ruby-lang
symm- has quit [Ping timeout: 252 seconds]
phansch has quit [Remote host closed the connection]
nXqd_ has quit [Ping timeout: 245 seconds]
mbj has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
RobertBirnie has joined #ruby-lang
marcofernandez has joined #ruby-lang
johnmilton has joined #ruby-lang
RobertBirnie has quit [Ping timeout: 260 seconds]
jonr22 has quit [Remote host closed the connection]
dostoyevsky has joined #ruby-lang
<dostoyevsky> Hey, what ruby bindings do you recommend for freetype?
Voker57 has joined #ruby-lang
<dostoyevsky> Seems like the only working one is from 2002: http://pablotron.org/software/ft2-ruby/
mbj has left #ruby-lang [#ruby-lang]
benanne has joined #ruby-lang
kotk has joined #ruby-lang
ikrima has joined #ruby-lang
danijoo has joined #ruby-lang
tanema has joined #ruby-lang
jackyalcine has quit [Excess Flood]
cored has quit [Ping timeout: 245 seconds]
cored has joined #ruby-lang
wallerdev has joined #ruby-lang
jackyalcine has joined #ruby-lang
mehlah has quit [Quit: Leaving...]
mehlah has joined #ruby-lang
havenwood has joined #ruby-lang
tanema has quit [Remote host closed the connection]
|jemc| has joined #ruby-lang
tanema has joined #ruby-lang
nXqd has joined #ruby-lang
tanema has quit [Ping timeout: 260 seconds]
nXqd has quit [Ping timeout: 252 seconds]
wallerdev has quit [Quit: wallerdev]
hackjoy has quit [Remote host closed the connection]
symm- has joined #ruby-lang
cored has quit [Ping timeout: 260 seconds]
Sirupsen has joined #ruby-lang
<darix> dostoyevsky: why do you need bindings for freetype?
kalehv has joined #ruby-lang
kalehv has quit [Read error: Connection reset by peer]
kalehv has joined #ruby-lang
gix- has joined #ruby-lang
gix has quit [Disconnected by services]
Lewix has quit [Remote host closed the connection]
fuhgeddaboudit has joined #ruby-lang
phansch has joined #ruby-lang
fuhgeddaboudit has quit [Ping timeout: 248 seconds]
nertzy2 has joined #ruby-lang
wallerdev has joined #ruby-lang
kalehv has quit [Read error: Connection reset by peer]
kalehv has joined #ruby-lang
arBmind has joined #ruby-lang
Elico has joined #ruby-lang
bzalasky has joined #ruby-lang
fuhgeddaboudit has joined #ruby-lang
tanema has joined #ruby-lang
retro|cz has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
Sirupsen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hhatch has joined #ruby-lang
fuhgeddaboudit has quit [Ping timeout: 260 seconds]
saarinen has joined #ruby-lang
flgr has quit [Ping timeout: 272 seconds]
saarinen has quit [Ping timeout: 245 seconds]
RobertBirnie has joined #ruby-lang
nathanstitt has joined #ruby-lang
matp has quit [Ping timeout: 272 seconds]
sonne has quit [Ping timeout: 272 seconds]
fuhgeddaboudit has joined #ruby-lang
mistym_ has joined #ruby-lang
arBmind1 has joined #ruby-lang
comboy_ has joined #ruby-lang
kalehv has quit [Remote host closed the connection]
goatish_mound has joined #ruby-lang
brownies_ has joined #ruby-lang
yfeldblu_ has joined #ruby-lang
sonne has joined #ruby-lang
TheMoonMaster_ has joined #ruby-lang
matp has joined #ruby-lang
flgr has joined #ruby-lang
jsullivandigs has joined #ruby-lang
nirix_ has joined #ruby-lang
kylo_ has joined #ruby-lang
arBmind has quit [*.net *.split]
mistym has quit [*.net *.split]
nirix has quit [*.net *.split]
rsl has quit [*.net *.split]
yfeldblum has quit [*.net *.split]
TheMoonMaster has quit [*.net *.split]
brownies has quit [*.net *.split]
MouseTheLuckyDog has quit [*.net *.split]
kylo has quit [*.net *.split]
comboy has quit [*.net *.split]
[dmp] has quit [*.net *.split]
Caius has quit [*.net *.split]
unsymbol has quit [*.net *.split]
nirix_ is now known as nirix
kylo_ is now known as kylo
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MouseTheLuckyDog has joined #ruby-lang
Elico has quit [Remote host closed the connection]
mykoweb has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
rolfb has joined #ruby-lang
Lewix has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
Elico has joined #ruby-lang
havenwood has quit [Read error: Connection reset by peer]
havenwood has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
MouseTheLuckyDog has quit [Quit: Leaving]
nXqd has joined #ruby-lang
wallerdev has joined #ruby-lang
anna has joined #ruby-lang
anna is now known as Guest27504
Guest27504 is now known as anna_
Cakey has joined #ruby-lang
gix has joined #ruby-lang
nXqd has quit [Ping timeout: 245 seconds]
jlpeters has joined #ruby-lang
nisstyre has quit [Quit: WeeChat 0.4.3]
gix- has quit [Ping timeout: 252 seconds]
Cakey has quit [Ping timeout: 272 seconds]
nisstyre has joined #ruby-lang
AngelofSilence has joined #ruby-lang
elia has quit [Read error: Connection reset by peer]
anna_ has left #ruby-lang ["Leaving"]
matled has quit [Remote host closed the connection]
jtw has joined #ruby-lang
Caius has joined #ruby-lang
unsymbol has joined #ruby-lang
unsymbol has quit [Changing host]
unsymbol has joined #ruby-lang
Caius is now known as Guest62825
[dmp] has joined #ruby-lang
prc has quit [Ping timeout: 252 seconds]
matled has joined #ruby-lang
prc has joined #ruby-lang
marcdel has joined #ruby-lang
elia has joined #ruby-lang
marcdel has quit [Ping timeout: 252 seconds]
marcdel has joined #ruby-lang
jsullivandigs has joined #ruby-lang
jtw has quit [Ping timeout: 245 seconds]
bzalasky has quit [Remote host closed the connection]
jtw has joined #ruby-lang
jtw has quit [Client Quit]
marcdel has quit []
marcdel has joined #ruby-lang
marcdel has quit [Ping timeout: 265 seconds]
sepp2k1 has joined #ruby-lang
seanlinsley has quit [Quit: …]
marcdel has joined #ruby-lang
nisstyre has quit [Quit: WeeChat 0.4.3]
sepp2k has quit [Read error: Operation timed out]
nisstyre has joined #ruby-lang
nisstyre has quit [Client Quit]
bzalasky has joined #ruby-lang
iliketurtles has joined #ruby-lang
centrx has joined #ruby-lang
nisstyre has joined #ruby-lang
saarinen has joined #ruby-lang
seanlinsley has joined #ruby-lang
fuhgeddaboudit has quit [Ping timeout: 246 seconds]
jsullivandigs has quit [Remote host closed the connection]
nXqd has joined #ruby-lang
skade has joined #ruby-lang
jsullivandigs has joined #ruby-lang
nXqd has quit [Ping timeout: 260 seconds]
amerine has joined #ruby-lang
PantsMeh has joined #ruby-lang
fuhgeddaboudit has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
francisfish has quit [Remote host closed the connection]
abstr4ct has quit [Ping timeout: 272 seconds]
Elico has quit [Ping timeout: 256 seconds]
Elico has joined #ruby-lang
skade has quit [Read error: Connection reset by peer]
skade has joined #ruby-lang
Coincidental has joined #ruby-lang
dik_dak has joined #ruby-lang
itsraining has joined #ruby-lang
prognostikos has left #ruby-lang [#ruby-lang]
nXqd has joined #ruby-lang
TheMoonMaster_ is now known as TheMoonMaster
skade has quit [Read error: Connection reset by peer]
bzalasky has quit [Remote host closed the connection]
fuhgeddaboudit has quit [Ping timeout: 272 seconds]
rolfb has quit [Quit: Linkinus - http://linkinus.com]
nXqd has quit [Ping timeout: 265 seconds]
itsraining has quit [Ping timeout: 245 seconds]
ferdinand has joined #ruby-lang
marcdel has quit []
prc has quit [Quit: Leaving.]
prc has joined #ruby-lang
ferdinand has quit [Quit: WeeChat 0.4.3]
fuhgeddaboudit has joined #ruby-lang
ferdinand has joined #ruby-lang
<ferdinand> exit
<ferdinand> exit
mykoweb has quit [Ping timeout: 246 seconds]
<unsymbol> oops. :3
Cakey has joined #ruby-lang
jonr22 has joined #ruby-lang
mykoweb has joined #ruby-lang
CaptainJet has joined #ruby-lang
fuhgeddaboudit has quit [Ping timeout: 260 seconds]
<apeiros> and yet he's still here…
Cakey has quit [Ping timeout: 265 seconds]
iliketurtles has quit [Quit: zzzzz…..]
<centrx> >> exit
<eval-in> centrx => exit (SystemExit) (https://eval.in/102194)
iliketurtles has joined #ruby-lang
<unsymbol> centrx: really it's just a breakdown of the unix metaphor.
<centrx> >> break "down"
<eval-in> centrx => /tmp/execpad-13b5bcd574ec/source-13b5bcd574ec:2: Invalid break ... (https://eval.in/102196)
<unsymbol> apeiros: ^ even.
fuhgeddaboudit has joined #ruby-lang
<centrx> >> break it "down" now
<eval-in> centrx => /tmp/execpad-64651c2e44a8/source-64651c2e44a8:2: syntax error, unexpected tIDENTIFIER, expecting keyword_end (https://eval.in/102197)
itsraining has joined #ruby-lang
bzalasky has joined #ruby-lang
<unsymbol> :3
iliketurtles has quit [Quit: zzzzz…..]
bzalasky has quit [Remote host closed the connection]
itsraining has quit [Ping timeout: 245 seconds]
nXqd has joined #ruby-lang
MindfulMonk has quit [Quit: Have fun]
bin7me has quit [Read error: Connection reset by peer]
fuhgeddaboudit has quit [Ping timeout: 260 seconds]
nXqd has quit [Ping timeout: 245 seconds]
MindfulMonk has joined #ruby-lang
MindfulMonk has quit [Client Quit]
diegovio1 has joined #ruby-lang
diegovio1 is now known as diegoviola
CaptainJet has quit []
MindfulMonk has joined #ruby-lang
francisfish has joined #ruby-lang
MindfulMonk has quit [Client Quit]
MindfulMonk has joined #ruby-lang
iliketurtles has joined #ruby-lang
CaptainJet has joined #ruby-lang
mistym_ has quit [Remote host closed the connection]
Barrin6 has joined #ruby-lang
fuhgeddaboudit has joined #ruby-lang
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
dingus_khan has joined #ruby-lang
fuhgeddaboudit has quit [Ping timeout: 260 seconds]
Lewix has joined #ruby-lang
itsraining has joined #ruby-lang
iliketurtles has quit [Quit: zzzzz…..]
benanne has quit [Quit: kbai]
marcdel has joined #ruby-lang
marcdel_ has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
marcdel has quit [Ping timeout: 265 seconds]
itsraining has quit [Ping timeout: 272 seconds]
fuhgeddaboudit has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
phansch has quit [Quit: Leaving]
solars has quit [Read error: Connection reset by peer]
fuhgeddaboudit has quit [Ping timeout: 265 seconds]
amclain has joined #ruby-lang
prc has quit [Ping timeout: 265 seconds]
Atw has joined #ruby-lang
ferdinand has quit [Ping timeout: 265 seconds]
marcdel_ has quit []
ferdinand has joined #ruby-lang
internal has left #ruby-lang [#ruby-lang]
pr0ton_ has joined #ruby-lang
solars has joined #ruby-lang
skade has joined #ruby-lang
ferdinand has quit [Read error: Connection reset by peer]
ferdinand has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
matled has quit [Remote host closed the connection]
matled has joined #ruby-lang
fuhgeddaboudit has joined #ruby-lang
marcdel has joined #ruby-lang
marcdel has quit [Read error: Connection reset by peer]
marcdel has joined #ruby-lang
dingus_khan has joined #ruby-lang
pr0ton_ has quit [Quit: pr0ton_]
ferdinand has quit [Ping timeout: 265 seconds]
ferdinand has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
x0f_ has joined #ruby-lang
x0f has quit [Ping timeout: 272 seconds]
jsullivandigs has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
benanne has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
diegoviola has quit [Quit: WeeChat 0.4.3]
bzalasky has joined #ruby-lang
jsullivandigs has joined #ruby-lang
ferdinand has quit [Ping timeout: 265 seconds]
marcdel has quit []
itsraining has joined #ruby-lang
fragamus has joined #ruby-lang
dingus_khan has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
ferdinand has joined #ruby-lang
ferdinand has quit [Read error: Connection reset by peer]
ferdinand has joined #ruby-lang
woollyams has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
havenwood has quit [Ping timeout: 265 seconds]
ruby-lang324 has joined #ruby-lang
<ruby-lang324> can someone help me right a standalone method that produces the out put here? Or some guidance...
<centrx> What output?
<ruby-lang324> oops, i forgot that
<centrx> >> "string".count.lines
<eval-in> centrx => wrong number of arguments (0 for 1+) (ArgumentError) ... (https://eval.in/102203)
<centrx> >> "string".lines.count
<eval-in> centrx => 1 (https://eval.in/102204)
ferdinand has quit [Ping timeout: 272 seconds]
<centrx> %W produces an array
<centrx> Gotta go. I don't know where you are, but try #ruby if there is no one else here.
<ruby-lang324> oh ok thanjks
mistym has joined #ruby-lang
ruby-lang324 has left #ruby-lang [#ruby-lang]
tectonic has joined #ruby-lang
ferdinand has joined #ruby-lang
elliotec has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
dingus_khan has quit [Read error: Connection reset by peer]
dingus_khan has joined #ruby-lang
skade has joined #ruby-lang
hhatch has quit [Ping timeout: 248 seconds]
havenwood has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
benanne has quit [Quit: kbai]
marr has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
elliotec has quit [Read error: No route to host]
elliotec_ has joined #ruby-lang
jsullivandigs has joined #ruby-lang
francisfish has quit [Remote host closed the connection]
fragamus has quit [Quit: Computer has gone to sleep.]
lcdhoffman has joined #ruby-lang
skade has quit [Quit: Textual IRC Client: www.textualapp.com]
micalexander has joined #ruby-lang
VTLob has quit [Quit: VTLob]
relix has joined #ruby-lang
ferdinand has quit [Ping timeout: 265 seconds]
tobiasPRC has joined #ruby-lang
tectonic has quit []
AngelofSilence has quit [Ping timeout: 245 seconds]
shinnya has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
MindfulMonk has quit [Quit: Have fun]
MindfulMonk has joined #ruby-lang
arBmind1 has quit [Ping timeout: 272 seconds]
<tobiasPRC> a
Lewix has joined #ruby-lang
jonr22 has quit [Remote host closed the connection]
woollyams has quit [Ping timeout: 252 seconds]
nathanstitt has quit [Quit: I growing sleepy]
woollyams has joined #ruby-lang
Coincidental has quit [Remote host closed the connection]
johnmilton has quit [Quit: Leaving]
brownies_ has quit [Ping timeout: 252 seconds]
brownies has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fuhgeddaboudit has quit [Ping timeout: 245 seconds]
eugmill has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
kirin` has quit [Ping timeout: 246 seconds]
dingus_khan has joined #ruby-lang
kirin` has joined #ruby-lang
mistym has quit [Remote host closed the connection]
RobertBirnie has joined #ruby-lang
diegoviola has joined #ruby-lang
brownies has quit [Ping timeout: 245 seconds]
relix has joined #ruby-lang
kotk has quit [Ping timeout: 252 seconds]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]