jhass changed the topic of #ruby to: Welcome new users migrating from #ruby-lang! || Rules & more: http://ruby-community.com || Ruby 2.2.2; 2.1.6; 2.0.0-p645: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org/ruby/
<al2o3-cr> seems to work
Apocalypse has joined #ruby
Apocalypse has joined #ruby
baweaver has joined #ruby
malconis has quit [Client Quit]
<acovrig> al2o3-cr: interesting, is there a way to raw print a string (I’m wondering if there is a character that isn’t printing and therefore didn’t get copied into the IRC)?
<al2o3-cr> acovrig: do "yuorsting".bytes a paste it here
<acovrig> al2o3-cr: I’m getting the string from .split(“\n”).each do |tag| tag.strip! tag.inspect
sharpmachine has quit [Remote host closed the connection]
baweaver has quit [Remote host closed the connection]
roolo has quit [Remote host closed the connection]
<al2o3-cr> acovrig: ah i see you problem you got other whitespace in you string
<acovrig> it’s an array? no implicit conversion of Array into String, interesting
scottschecter has joined #ruby
<acovrig> al2o3-cr: shouldn’t I see that it is an array with .inspect?
s2013 has joined #ruby
<al2o3-cr> no
<acovrig> al2o3-cr: is there something like PHP’s var_dump?
michaeldeol has quit [Ping timeout: 250 seconds]
<weaksauce> acovrig what's var_dump do
rbennacer has quit [Remote host closed the connection]
simplyianm has joined #ruby
vdamewood has quit [Ping timeout: 244 seconds]
<acovrig> weaksauce: it pretty-prints a variable, string, array, object, whatever (http://php.net/manual/en/function.var-dump.php)
<al2o3-cr> you've got \xC0 and \xA0 in there
<choke> prints out an array or something in an ugly way, i think the rails variant in a controller would be puts
<weaksauce> well ruby has pretty print
sharpmachine has joined #ruby
fabrice31 has joined #ruby
<acovrig> weaksauce: of an array?
<weaksauce> well pp works but awesome_print is better
<al2o3-cr> acovrig: this is the string you pasted to irc
<choke> I added the pry gem to my projects -- but I hate testing stuff in the browser and what not so by putting "binding.pry" somewhere in my code i can inspect the outputs within the terminal which i like
<al2o3-cr> >> "coyote  ".bytes
<ruboto> al2o3-cr # => [99, 111, 121, 111, 116, 101, 32, 194, 160] (https://eval.in/384621)
<weaksauce> acovrig I use p usually when I want to see exactly what something is.
workmad3 has joined #ruby
drewo has quit [Ping timeout: 276 seconds]
<choke> although ap looks interesting too... think i'll install that and play around with it.... nice mention
dfockler has quit [Remote host closed the connection]
C1V0 has joined #ruby
<acovrig> al2o3-cr: tag.bytes returns 99 111 121 111 116 101 32 194 160 (I had it in the same puts as tag itself
<acovrig> )
fabrice31 has quit [Ping timeout: 246 seconds]
mjmac has quit [Ping timeout: 265 seconds]
pragmatism has joined #ruby
towski_ has quit [Remote host closed the connection]
flycatcher has joined #ruby
mjmac has joined #ruby
AustinLMayes has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mcclurmc has quit [Remote host closed the connection]
baweaver has joined #ruby
<al2o3-cr> acovrig: "coyote  ".gsub(/\W/, "")
granthatcher has quit []
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<al2o3-cr> >> "coyote  ".strip
<ruboto> al2o3-cr # => "coyote  " (https://eval.in/384622)
<al2o3-cr> >> "coyote  ".gsub(/\W/, "")
<ruboto> al2o3-cr # => "coyote" (https://eval.in/384623)
sharpmachine has quit [Remote host closed the connection]
<acovrig> al2o3-cr: yay, that did it, thanks; what did you do to ‘decode’ the bytes?
baweaver has quit [Ping timeout: 246 seconds]
j4cknewt has joined #ruby
<acovrig> and can I do var_name += “string” to append “string” to var_name, or do I need to do var_name = var_name + “string”?
dorei has quit []
<weaksauce> >> x="test"; x+="this"; x
<ruboto> weaksauce # => "testthis" (https://eval.in/384624)
casadei has joined #ruby
<weaksauce> acovrig be careful with strings and the plus sign though. nil + "this" would error
<acovrig> Ooh, different channels have differnet bots, I like the code exec one :)
enebo has quit [Quit: enebo]
<acovrig> weaksauce: yea, I presume it not to be an issue given just before the loop I have var_name = ‘’
<weaksauce> in general string interpolation is safer. x = "test"; y = "#{x}this"
choke has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<weaksauce> acovrig and it's usually not very idiomatic ruby to initialize things like that. if you gist your code people can help you
jaycee has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rbennacer has joined #ruby
<weaksauce> >> ["coyote ", "ugly "].map {|x| x.strip}.join(" ")
<ruboto> weaksauce # => "coyote ugly" (https://eval.in/384625)
xelkarin has quit [Quit: WeeChat 1.1.1]
yoongkang has quit [Remote host closed the connection]
<weaksauce> map and join would perhaps be faster because it's calling native c code and doesn't instantiate a bunch of strings during the iterations.
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<al2o3-cr> acovrig: actually better doing this .gsub(/[[:space:]]/, "")
hazelux has joined #ruby
blackmesa has quit [Quit: WeeChat 1.2]
casadei has quit [Ping timeout: 276 seconds]
reset has quit [Read error: Connection reset by peer]
simplyianm has quit [Read error: Connection reset by peer]
<jfarmer> acovrig What are you trying to do?
reset has joined #ruby
<lupine> progressively adding strings is pathological to the GC
reset has quit [Client Quit]
robustus has quit [Ping timeout: 255 seconds]
simplyianm has joined #ruby
daveg_ has quit [Quit: Textual IRC Client: www.textualapp.com]
<weaksauce> >> x="test"; id=x.object_id; x += "that"; [id,x.object_id]
Lucky__ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<ruboto> weaksauce # => [551041720, 551042370] (https://eval.in/384626)
jackjackdripper has quit [Quit: Leaving.]
robustus has joined #ruby
<al2o3-cr> acovrig: change .gsub!(/\W/, "") with .gsub(/[[:space:]]/, "")
<weaksauce> >> x="test"; id=x.object_id; x << "that"; [id,x.object_id]
<ruboto> weaksauce # => [540490430, 540490430] (https://eval.in/384627)
<weaksauce> I suppose that's less rough on the GC
<jfarmer> acovrig Do you have control over the markup you're parsing?
fedexo has quit [Ping timeout: 265 seconds]
mahtennek has joined #ruby
gusrub has quit [Quit: Leaving]
cndiv has quit []
Musashi007 has quit [Quit: Musashi007]
yaw has joined #ruby
bgmarx_ has quit [Remote host closed the connection]
pontiki has joined #ruby
<pontiki> hi
senayar has joined #ruby
senayar has quit [Remote host closed the connection]
bgmarx_ has joined #ruby
GitGud has quit [Ping timeout: 265 seconds]
blaines has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
n008f4g_ has quit [Ping timeout: 245 seconds]
dgutierrez1287 has joined #ruby
yaw has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bgmarx_ has quit [Remote host closed the connection]
datanoise has joined #ruby
Lucky__ has joined #ruby
segfalt has joined #ruby
rbennacer has quit [Remote host closed the connection]
mahtennek has quit []
GitGud has joined #ruby
eggoez has quit [Ping timeout: 252 seconds]
mcclurmc has joined #ruby
arturhoo has quit [Quit: arturhoo]
duderonomy has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
drewo has joined #ruby
coderhs has quit [Ping timeout: 276 seconds]
rgb-one has joined #ruby
<rgb-one> Hey
ndrei has joined #ruby
rafaelsales has joined #ruby
fgo has joined #ruby
podman has quit [Quit: Connection closed for inactivity]
eggoez has joined #ruby
<rgb-one> Majority of you guys have made use of bundler right?
<pontiki> probably
<pontiki> is this a poll?
<rgb-one> something like it
<Nilium> I tried it once then decided not to.
<rgb-one> How did you learn to use it?
RegulationD has joined #ruby
<pontiki> reading the documentatino
<Nilium> By looking at the site and going "wow this documentation sucks" and then looking at someone else's project.
ndrei has quit [Ping timeout: 256 seconds]
<pontiki> reading many Gemfiles
rafaelsales has quit [Ping timeout: 265 seconds]
<pontiki> using it
slawrence00 has joined #ruby
<weaksauce> Nilium what are you using? bunlder seems to be the de facto standard really
<Nilium> Nothing.
Creede has joined #ruby
<Nilium> I use Ruby for shell scripting.
<Nilium> Or in place of it, rather.
<rgb-one> What issues do you have with the bundler documentation Nilium?
<weaksauce> do you use gems?
GitGud has quit [Ping timeout: 252 seconds]
<Nilium> rgb-one: General lack of organization and explanation for everything.
fgo has quit [Ping timeout: 255 seconds]
dopie has joined #ruby
<Nilium> weaksauce: Yes, but I don't need to care about distributing them to other people.
<Nilium> s/them/my scripts/
<rgb-one> Nilium: When did you last use bundler?
<Nilium> About three weeks ago.
<weaksauce> I'd be unhappy when I had to reinstall ruby and installing all the gems by hand
drewo has quit [Quit: WeeChat 1.2]
<Nilium> Why do it by hand?
GitGud has joined #ruby
<weaksauce> and the eventual version conflicts.
segfalt has quit [Quit: segfalt]
Spami has quit [Quit: This computer has gone to sleep]
<Nilium> Version conflicts are a sign that you need to update anyway.
dopie has quit [Client Quit]
<rgb-one> On the first page there is a getting started guide and links to other relevant documentation, Were these not clear enough and in what way?
<pontiki> must be taking a poll
<weaksauce> well if you have a script that works with library x at version 1.0 and the gem maintainer made breaking changes with it in version 2.0. that's a problem
<Nilium> If you want to do a poll, set up a Google Doc or something for it.
<rgb-one> Good idea :)
<Nilium> That said, I don't use Ruby for anything other than small tool scripts. By the time something's hideously outdated, it probably doesn't matter.
RegulationD has quit [Ping timeout: 272 seconds]
<rgb-one> in the meantime this ruby channel is my audience
Cust0sLim3n has quit [Max SendQ exceeded]
quimrstorres has joined #ruby
<Nilium> Chances are that if I'm going to make a long-term thing, it's going to be a gem.
<Nilium> I just can't find a use for bundler.
Cust0sLim3n has joined #ruby
<rgb-one> Nilium: What is bundler in your own words?
<Nilium> Well, it's not a replacement for google docs.
<rgb-one> Nilium: haha
<rgb-one> indeed
GitGud has quit [Ping timeout: 246 seconds]
<Nilium> Seeing as it's a poll, now I just want to know what the goal is.
<rgb-one> To improve the documentation
wallerdev_ has joined #ruby
<Nilium> By the way, someone ban nambiz
<Nilium> It's a spambot
<al2o3-cr> oh, yeah was gonna mention that before good call
michaeldeol has joined #ruby
<al2o3-cr> spamming me with goldfish
quimrstorres has quit [Remote host closed the connection]
wallerdev has quit [Ping timeout: 256 seconds]
wallerdev_ is now known as wallerdev
malconis has joined #ruby
<rgb-one> I guess I will work on a poll and post it on reddit or something
<rgb-one> Thanks for the idea
codingstream has joined #ruby
michaeldeol has quit [Client Quit]
<codingstream> Is there a way to do @@foo ||= value when @@foo has not already been defined in the class?
Asher has quit [Quit: Leaving.]
wallerdev has quit [Quit: wallerdev]
<heftig> codingstream: explain some more?
sarmiena_ has quit [Quit: sarmiena_]
Asher has joined #ruby
<codingstream> heftig: instead of having to do: class Example; @@foo = 'value'; end, I'd like to not have to define @@foo first
gambl0re has joined #ruby
<nofxxx> In rake if I got rule 'a' => 'b' { |t| I can get 'a' with t.name, how to get 'b' ?
Igorshp has joined #ruby
<heftig> codingstream: and what value should it have?
oo_ has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
unshadow has quit [Ping timeout: 245 seconds]
<jfarmer> codingstream First, you almost never want to use class variables, so the fact that you're using them likely means there's something more basic off about your approach to whatever problem you're trying to solve.
<sphex> hey. what would be the recommended way to localize ruby programs?
<jfarmer> codingstream But in general, the solution is to use a method and not reference the (class/instance) variable directly
<jfarmer> def foo; @foo ||= 'default_value'; end
<jfarmer> def foo=(val); @foo = val; end
<nofxxx> sphex, i18n gem is nice
Mia has quit [Read error: Connection reset by peer]
<jfarmer> Then you can just call foo freely without having to think about whether the @foo variable is initialized
unshadow has joined #ruby
Igorshp has quit [Ping timeout: 276 seconds]
<sphex> nofxxx: alright. thanks
oo_ has quit [Remote host closed the connection]
<nofxxx> answer to my question t.source
<codingstream> jfarmer: I have a bunch of classes and I'm taking advantage of Module#name for mapping to some HTTP paths, but need to override it in a few instances
yoongkang has joined #ruby
pragmatism has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mattarse has joined #ruby
<codingstream> jfarmer: I'd like to do this at the class level, not instance level
<jfarmer> codingstream Nevertheless, you almost certainly don't want a class variable.
saadq has joined #ruby
<jfarmer> You can have instance variables at the class level, too, which is usually what you want.
hahuang65 has quit [Ping timeout: 276 seconds]
<jfarmer> But this is all abstract; I can't recommend a course of action without having more context.
<codingstream> jfarmer: ah, I see. I think that will solve this perfectly then
<codingstream> jfarmer: thanks!
<jfarmer> np
GlenK_ has joined #ruby
GlenK_ is now known as Decker
al2o3-cr has quit [Read error: Connection reset by peer]
al2o3-cr has joined #ruby
Kneecaps has joined #ruby
yaw has joined #ruby
coderhs has joined #ruby
pygospa has quit [Remote host closed the connection]
blue_deref has joined #ruby
havenwood has joined #ruby
Kneecaps has left #ruby [#ruby]
serivichi has joined #ruby
aryaching has quit [Ping timeout: 264 seconds]
choke has joined #ruby
mcclurmc has quit [Remote host closed the connection]
serivich has quit [Ping timeout: 272 seconds]
dopie has joined #ruby
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
icarus has quit [Remote host closed the connection]
pygospa has joined #ruby
cb__ has quit [Remote host closed the connection]
cb_ has joined #ruby
yfeldblum has quit [Ping timeout: 265 seconds]
_djbkd has quit [Quit: My people need me...]
jrunning_ is now known as jrunning
ItSANgo__ has quit [Ping timeout: 256 seconds]
dgutierrez1287 has quit [Remote host closed the connection]
jrunning has left #ruby [#ruby]
dede has quit [Quit: Connection closed for inactivity]
<hazelux> can anyone help me out with this issue? has_many :through is biting me. Thanks guys! https://gist.github.com/maxcodes/7c752c3c68b5b39faa80
ItSANgo__ has joined #ruby
bkxd has quit [Ping timeout: 255 seconds]
yaw has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
saadq has quit []
<havenwood> ?rails hazelux
<ruboto> hazelux, Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
<havenwood> hazelux: Rails is probably the better channel to ask. :)
centrx has quit [Quit: Shutting down, Please wait...]
charliesome has joined #ruby
cb_ has quit [Remote host closed the connection]
cb_ has joined #ruby
bkxd has joined #ruby
sevenseacat has joined #ruby
auzty has joined #ruby
yqt has quit [Ping timeout: 250 seconds]
fabrice31 has joined #ruby
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sarkyniin has quit [Ping timeout: 256 seconds]
msnyon has quit [Quit: Textual IRC Client: www.textualapp.com]
dopie has quit [Quit: This computer has gone to sleep]
cb_ has quit [Ping timeout: 265 seconds]
msnyon has joined #ruby
choke has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
symm- has quit [Quit: Leaving...]
dfockler has joined #ruby
fabrice31 has quit [Ping timeout: 264 seconds]
jtdoncas has joined #ruby
sarkyniin has joined #ruby
sigurding has joined #ruby
Rollabunna has quit [Read error: Connection reset by peer]
Rollabunna has joined #ruby
rafaelsales has joined #ruby
darkf has joined #ruby
dfockler has quit [Ping timeout: 256 seconds]
rafaelsales has quit [Remote host closed the connection]
flycatcher has quit [Quit: Leaving]
rafaelsales has joined #ruby
<sphex> hey. so what would be a good way to get a localized strftime()?
simplyianm has quit [Remote host closed the connection]
Kneecaps has joined #ruby
RegulationD has joined #ruby
Rollabunna has quit [Read error: Connection reset by peer]
Rollabunna has joined #ruby
Musashi007 has joined #ruby
sigurding has quit [Quit: sigurding]
flughafen_ has quit [Ping timeout: 264 seconds]
senayar has joined #ruby
casadei has joined #ruby
flycatcher has joined #ruby
simplyianm has joined #ruby
senayar has quit [Remote host closed the connection]
dopie has joined #ruby
iamninja has quit [Read error: Connection reset by peer]
simplyianm has quit [Remote host closed the connection]
iamninja has joined #ruby
RegulationD has quit [Ping timeout: 256 seconds]
Forgetful_Lion has joined #ruby
Al3ks_ has joined #ruby
casadei has quit [Ping timeout: 246 seconds]
<jfarmer> sphex Did you read the first page at https://www.google.com/search?q=strftime+local+time+ruby ?
<Senjai> sphex: DateTime.now.strftie
al2o3-cr has quit [Quit: the quieter you become, the more you are able to hear]
<sphex> it says these are locale-independent
<Senjai> DateTime.now represents system time
<Senjai> DateTime.current represents UTC-0
<sphex> Senjai: I mean "locale", not local. as in translated in the current locale's language.
<jfarmer> Ah, ok
Al3ks has quit [Ping timeout: 272 seconds]
<jfarmer> Like...
<jfarmer> I'm not sure what you mean.
<sphex> regular libc's strftime() is localized, but ruby disables that (prolly to not have to deal with encoding-related portability issues (perl has these)), but.. I'd like it back :p
al2o3-cr has joined #ruby
<Senjai> sphex: Strftime shouldnt be language dependent, is it?
idafyaid has joined #ruby
<Senjai> sphex: You can use I18n.l
Kneecaps has quit [Quit: Leaving...]
<Senjai> and use that to format times
<jfarmer> I'm having a hard time imagining what a "localized" time would be.
<Senjai> across certain languages
<acovrig> jfarmer: I went AFK; yes that looks nice, no I don’t have controll of the input I’m parsing; background: this was PHP and I’m new to ruby and figured I’d try switching it to ruby, so I’m probably horribly inefficient.
<jfarmer> Like, if your locale were set to Japanese it'd print out 2015年6月19日?
<jfarmer> For today's date?
comm64x has joined #ruby
<sphex> jfarmer: vendredi, le 19 juin
<sphex> yeah
<comm64x> is there a rails specific channel
<jfarmer> comm64x #rubyonrails
<havenwood> ?rails comm64x
<ruboto> comm64x, Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
<jfarmer> haha
<comm64x> ruboto: ty
comm64x has left #ruby [#ruby]
datanoise has quit [Ping timeout: 256 seconds]
<sphex> jfarmer: mostly I want localized day and month names. I'm used to just get them from strftime(). I'm gonna look into i18n then I guess. I was hoping it wouldn't be necessary. :/
<lupine> sphex, you could always use ffi
<lupine> (I don't know what the localisation disablement looks like)
<jfarmer> ah crap
<jfarmer> hold on
dopie has quit [Ping timeout: 276 seconds]
<sphex> lupine: oh ok. sounds a bit hard core, heh.
kotk has joined #ruby
mattarse has quit [Remote host closed the connection]
meatchicken has quit [Ping timeout: 265 seconds]
<havenwood> sphex: An aside, but: http://strftimer.com/
<jfarmer> > This method is similar to strftime() function defined in ISO C and POSIX. Several directives (%a, %A, %b, %B, %c, %p, %r, %x, %X, %E*, %O* and %Z) are locale dependent in the function. However this method is locale independent.
<sphex> so far I was planning to use one of the gettext modules rather than i18n/r18n. I much prefer to have english strings in the program, then xgettext them out and translate them in .po files. I hope that's possible with ruby. :/
<lupine> rails uses some magic yaml file
<lupine> dunno if there are .po imports/exports/loads
<sphex> yeah I fscking hate that
<jfarmer> The wording there is awkward (seems like it wasn't written by a native English speaker), but they mean that while the ISO C strftime() function has locale-dependent formatting options, Ruby's DateTime#strftime is locale-independent
<jfarmer> sphex Those files have to l live _somewhere_
<lupine> standards are, well, standard
<jfarmer> I'd argue that them living in your project is better than them living in some system-wide magical location
<havenwood> !ban nambiz !T 1d private message spam isn't allowed
nambiz was banned on #ruby by ChanServ [nambiz!*@*]
nambiz was kicked from #ruby by ChanServ [Banned: private message spam isn't allowed]
<lupine> but that's never fussed ruby much
<sphex> jfarmer: sure. I just want them to be .po files with strings extracted from the source. rather than an "indirect identifier" system that i18n/r18n seem to require. unless I missed something...?
<jfarmer> sphex Oh, that's faier.
<jfarmer> fair*
ramfjord_ has quit [Ping timeout: 255 seconds]
<jfarmer> But that's not how strftime works, is it?
micmus has quit [Ping timeout: 276 seconds]
<jfarmer> .po files are a gettext thing
<sphex> jfarmer: no no, separate issue
<jfarmer> right
Musashi007 has quit [Quit: Musashi007]
dopie has joined #ruby
<sphex> just saying that so far it looks like I won't be using those i18n/r18n libraries, so I was wondering if there was another, simpler way to localize my dates
<jfarmer> I don't feel like that's more or less complex, honestly.
tvw has quit [Read error: Connection reset by peer]
sdothum has quit [Ping timeout: 244 seconds]
scottschecter has quit [Quit: Leaving]
<sphex> yeah.. I'll keep reading up on them.
<pontiki> i'm not sure if gettext won't handle interpolated strings correctly
<sphex> I'm just starting to learn ruby and everything's confusing
<sphex> thanks for the help!
<sphex> pontiki: yeah... I was worrying about that. :/
<sphex> pontiki: I'd be localizing printf-like strings only I guess
axisys has quit [Remote host closed the connection]
<pontiki> if you do everything with sprintf-style formatting, it may work
<pontiki> hah
<jfarmer> I think you can do something like, e.g., i18n.localize(some_date, format: "%d %B %Y")
simplyianm has joined #ruby
shinnya has joined #ruby
<jfarmer> The fact that it is done this was has less to do with Ruby and more to do with the fact that we're in OOP-land.
mcclurmc has joined #ruby
<sphex> jfarmer: oh great. lemme try.
arcanez has left #ruby [#ruby]
<sphex> jfarmer: yeah, disabling the localization of strftime() seems like a good idea; the system will return it with the locale's encoding, and ruby would have to turn it back into unicode, and portability would probably be hell
<sphex> jfarmer: "in `enforce_available_locales!': :en is not a valid locale (I18n::InvalidLocale)"
<sphex> oh. looks like I prolly have to do *something* to initialize it.
cahya has joined #ruby
cahya has left #ruby [#ruby]
jgpawletko has joined #ruby
davedev24_ has quit [Ping timeout: 256 seconds]
davedev24_ has joined #ruby
krowv has quit [Ping timeout: 256 seconds]
mcclurmc has quit [Ping timeout: 265 seconds]
<jfarmer> sphex Yes, there are lots of considerations.
simplyianm has quit [Remote host closed the connection]
hcnewsom has joined #ruby
micmus has joined #ruby
Makorak has quit [Remote host closed the connection]
chipotle has quit [Quit: cheerio]
duderonomy has joined #ruby
Ropeney has joined #ruby
datanoise has joined #ruby
sargas has joined #ruby
RickHull has joined #ruby
<RickHull> can I set rake's --trace option in my Rakefile?
sargas has quit [Changing host]
sargas has joined #ruby
<RickHull> i'm tempted to alias rake to 'rake --trace' but i probably don't want that everywhere
krowv has joined #ruby
jfarmer has quit [Quit: Textual IRC Client: www.textualapp.com]
msnyon has quit [Ping timeout: 256 seconds]
chipotle has joined #ruby
simplyianm has joined #ruby
Cust0sLim3n has quit [Ping timeout: 265 seconds]
<RickHull> is time to kill rubyforge with fire?
<RickHull> nuke it from orbit?
Cust0sLim3n has joined #ruby
al2o3-cr has quit [Quit: the quieter you become, the more you are able to hear]
datanoise has quit [Ping timeout: 256 seconds]
shafox has joined #ruby
pontiki has quit [Quit: ZZZZZZZZ<clunk>NNNNNNNNN]
al2o3-cr has joined #ruby
scx_ has joined #ruby
coderhs has quit [Ping timeout: 264 seconds]
charliesome has quit [Quit: zzz]
acovrig has quit [Quit: acovrig]
hcnewsom has quit [Ping timeout: 246 seconds]
rbowlby has quit [Remote host closed the connection]
scx has quit [Ping timeout: 255 seconds]
braincrash has quit [Quit: bye bye]
shafox has quit []
Igorshp has joined #ruby
oo_ has joined #ruby
AustinLMayes has joined #ruby
msnyon has joined #ruby
j4cknewt has quit [Remote host closed the connection]
ItSANg___ has joined #ruby
RickHull has quit [Ping timeout: 272 seconds]
Igorshp has quit [Ping timeout: 265 seconds]
<hfp> Hi all, I'm a bit confused at the difference between a mock and a stub. It seems that one should use a mock when they want to check that a specific message was passed with specific arguments and still use the underlying class from production code. Whereas a stub is a dummy implementation that will always return the same value. Is that correct?
<i8igmac> uninitialized constant OpenURI::Error
<i8igmac> require 'open-uri'
msnyon has quit [Ping timeout: 276 seconds]
oo_ has quit [Remote host closed the connection]
<i8igmac> im not sure why im getting this error
braincrash has joined #ruby
ItSANgo__ has quit [Ping timeout: 252 seconds]
j4cknewt has joined #ruby
<i8igmac> rescue OpenURI::Error => e
ItSANg___ has quit [Ping timeout: 264 seconds]
<i8igmac> must be depreciated or something
<i8igmac> lol
harly has joined #ruby
<scx_> What is the best way to lock and unlock the file in Ruby?
scx_ is now known as scx
ixti has quit [Ping timeout: 265 seconds]
havenwood has quit [Ping timeout: 265 seconds]
<scx> (and check if file is locked)
ixti has joined #ruby
<sphex> scx: maybe File.flock?
msnyon has joined #ruby
simplyianm has quit [Remote host closed the connection]
codingstream has quit [Quit: WeeChat 1.0.1]
michaeldeol has joined #ruby
ItSANgo_ has joined #ruby
michael_mbp has quit [Excess Flood]
simplyianm has joined #ruby
michael_mbp has joined #ruby
frem has quit [Quit: Connection closed for inactivity]
QKO_ has quit [Remote host closed the connection]
<sphex> is a Struct object going to use less memory than a corresponding class with a bunch of instance variables?
chinmay_dd has joined #ruby
ItSANgo_ has quit [Ping timeout: 272 seconds]
tkuchiki has joined #ruby
ItSANgo has joined #ruby
blazes816 has joined #ruby
hazelux_ has joined #ruby
ItSANgo has quit [Max SendQ exceeded]
Makorak has joined #ruby
Agoldfish has quit [Quit: G'Bye]
<al2o3-cr> >> class Foo; def initialize(a, b); @a = a; @b = b; end; end; Struct.new("Bar", :a, :b); f = Foo.new(1,2); b = Struct::Bar.new(1,2); [ ObjectSpace.memsize_of(f), ObjectSpace.memsize_of(b) ]
<ruboto> al2o3-cr # => undefined method `memsize_of' for ObjectSpace:Module (NoMethodError) ...check link for more (https://eval.in/384633)
jfarmer has joined #ruby
<al2o3-cr> >> requre 'objspace'; class Foo; def initialize(a, b); @a = a; @b = b; end; end; Struct.new("Bar", :a, :b); f = Foo.new(1,2); b = Struct::Bar.new(1,2); [ ObjectSpace.memsize_of(f), ObjectSpace.memsize_of(b) ]
<ruboto> al2o3-cr # => undefined method `requre' for main:Object (NoMethodError) ...check link for more (https://eval.in/384634)
lewis1711 has joined #ruby
<al2o3-cr> >> require 'objspace'; class Foo; def initialize(a, b); @a = a; @b = b; end; end; Struct.new("Bar", :a, :b); f = Foo.new(1,2); b = Struct::Bar.new(1,2); [ ObjectSpace.memsize_of(f), ObjectSpace.memsize_of(b) ]
<ruboto> al2o3-cr # => [20, 20] (https://eval.in/384635)
ItSANgo has joined #ruby
Makorak has quit [Client Quit]
<sphex> al2o3-cr: awesome. thanks!
hazelux has quit [Ping timeout: 244 seconds]
<lewis1711> is there a simple ruby testing framework? one that doesn't involve sub-classing or separate files
tcrypt has quit [Ping timeout: 272 seconds]
oo_ has joined #ruby
Zamerick has joined #ruby
ItSANgo has quit [Max SendQ exceeded]
blazes816 has quit [Ping timeout: 265 seconds]
ItSANgo has joined #ruby
<phat4life> lewis1711: what are you trying to test?
symm- has joined #ruby
<lewis1711> phat4life, nothing at the moment. I am just wanting to have system that's like "write a bit of code, write a test just after it, carry on".
<lewis1711> I like having it in the same file
<phat4life> yeah you can do that easy
<phat4life> but i recommned useing seperate files
<phat4life> one sec, let me push something to github, its the simplest testing setup i have
jtdoncas has quit [Ping timeout: 264 seconds]
sargas has quit [Quit: Leaving]
nikhgupta has joined #ruby
mcclurmc has joined #ruby
gix has quit [Ping timeout: 246 seconds]
<lewis1711> phat4life, thanks. I'm a simple person, I will only unit test if it's completely thoughtless, I don't like ceremony
wookiehangover has quit [Ping timeout: 256 seconds]
tkuchiki has quit [Remote host closed the connection]
roger_rabbit has joined #ruby
AndroidLoverInSF has quit [Quit: Leaving]
gix has joined #ruby
mcclurmc has quit [Ping timeout: 244 seconds]
wookiehangover has joined #ruby
fabrice31 has joined #ruby
theery has joined #ruby
ascarter has quit [Ping timeout: 264 seconds]
<sphex> lewis1711: I would like to subscribe to your newsletter
jlast has quit [Remote host closed the connection]
<lewis1711> sphex, are you being salty?
fabrice31 has quit [Ping timeout: 264 seconds]
<phat4life> that is about as simple as it gets
<phat4life> but i don't recomend you but it in the same file
<phat4life> *put
<sphex> nope. this should be your tagline, and whatever solution you find to any problem.. would be of interrest to people. :p
<phat4life> ah, forgot something
<phat4life> ok you can look at it
<phat4life> but you really should use either rspec or mini test
<phat4life> and having a gemfile to manager any gems you might want to use is a good idea
wookiehangover has quit [Ping timeout: 256 seconds]
<lewis1711> phat4life, I had a look, thanks
Musashi007 has joined #ruby
<lewis1711> sphex, pretty much the only language I ever used unit tests in was racket, because rackunit was so simple. I search for something similar in other languages, but it's hard to find. I don't really want to write anything longer than a couple of hundred lines in ruby without unit tests, because it's so super dynamic
fgo has joined #ruby
dgutierrez1287 has joined #ruby
<phat4life> lewis1711: you can try mini test instead of rspec
<phat4life> rspec is a bit of a higher learning curve than minitest
<sphex> lewis1711: right.. I'm starting with ruby and I'm gonna need to write some tests too soon enough. :/
<sphex> ooohhh minitest sounds great then
<phat4life> rspec is worth learning tho
wookiehangover has joined #ruby
RegulationD has joined #ruby
ruby-lang413 has joined #ruby
<sphex> phat4life: alright. I'm gonna bookmark your example, I'm sure it'll help me too soon enough. so thanks!
<ruby-lang413> i'm trying to write a ruby extension in c with gcc, and i'm getting a #include <ruby.h> no such file or directory. i expected that but i'm not sure what steps to take next?
casadei has joined #ruby
<phat4life> ruby-lang413: what os
<ruby-lang413> phat4life linux mint 17
<phat4life> ruby-lang413: do you have ruby-dev installed?
fgo has quit [Ping timeout: 272 seconds]
dgutierrez1287 has quit [Ping timeout: 264 seconds]
<ruby-lang413> phat4life, no; i just checked with apt and the ruby version is 1.9.1 :\
jtdoncas has joined #ruby
Rollabunna has quit [Quit: Leaving...]
RegulationD has quit [Ping timeout: 244 seconds]
cubicool has joined #ruby
<phat4life> ruby-lang413: apt-get install ruby-dev
<phat4life> ?
<ruby-lang413> phat4life ruby-dev ruby1.9.1-dev
<phat4life> is there are reason you are on 1.9.1 and not stable?
Casty has quit [Quit: Textual IRC Client: www.textualapp.com]
casadei has quit [Ping timeout: 256 seconds]
<phat4life> ah, nvm i dunno if that matters
<ruby-lang413> phat4life, that's the output of the apt-get install ruby-dev
<phat4life> gotcha
<ruby-lang413> i suppose for my purposes it's not too important; let's say i get the 1.9.1 version
sevenseacat has quit [Quit: Me dun like you no more.]
<ruby-lang413> would i use -l to tell gcc to look for the path after that?
<cubicool> Hey guys, I've recently (last week) started using Ruby for some projects. I love the language so far, and I had a quick question I can't find an answer on. I come from a heavy Python background, and I'd like to be able to quickly (syntactically) create a Class with some attr_* attributes (instead of always using Hash).
<cubicool> I want to do this to avoid the constant operator[]() access to values.
<cubicool> Is there any shorthand for this? (For example, Python has 'namedtuple')
<phat4life> ruby-lang413: im not sure tbh i don't much much about gcc. all i can say is maybe find where that heard file exists on your machine
<sphex> cubicool: maybe Struct?
<starfox_sf> yup, Struct is what you're looking for
* cubicool googles.
<sphex> cubicool: or use ri(1)
<sphex> it seems to work almost exactly like namedtuple
<sphex> except it's mutable
<phat4life> cubicool: or an OpenStruct if you need to add attributes after instantiate it
<harly> ruby-lang413: you could try using chruby and ruby-install. much easier to manage ruby installs, it'll do everything for you and set it up as local installs for the user.
<phat4life> harly: why chruby instead of rvm?
<phat4life> or are they two different things?
<harly> they serve the same purpose. personally I like chruby. w/e.
<cubicool> Thanks guys!
<harly> the same maintaner makes both. so i use chruby along with ruby-install.
<postmodern> phat4life, fewer bells & whistles, much simpler
<harly> speak of the devil. :)
<phat4life> postmodern: what is?
<postmodern> phat4life, chruby
<phat4life> ah
<phat4life> rvm doesn't play nice with fish
<postmodern> phat4life, RVM does everything and handles every edge-case, as a result it's pretty complex and bulky
<phat4life> interesting
<harly> personally i've had zero problems using chruby. it "just works"
<postmodern> phat4life, you have to use a wrapper for fish, since fish doesn't support POSIX
<harly> well. except some debian jessie pre-release test issues. but they got fixed pretty quickly :)
msnyon has quit [Ping timeout: 272 seconds]
lewis1711 has quit [Ping timeout: 244 seconds]
<phat4life> don't judge me for using fish
baweaver has joined #ruby
mattarse has joined #ruby
ruby-lang413 has quit [Ping timeout: 246 seconds]
braincra- has joined #ruby
baweaver has quit [Ping timeout: 244 seconds]
Forgetful_Lion has quit [Remote host closed the connection]
<cubicool> Actually guys, I don't think Struct is right.
ndhamecom has quit [Quit: Textual IRC Client: www.textualapp.com]
<jfarmer> phat4life One big reason people don't like rvm is that it overwrites/wraps a lot of default shell commands like cd to do what it does.
<jfarmer> This kind of "deep interference" can lead to problems or unexpected behavior
<phat4life> i see
arescorpio has quit [Quit: Leaving.]
<cubicool> Or perhaps I'm mis-using it...
JoshL has quit []
oo_ has quit [Remote host closed the connection]
chinmay_dd has quit []
<jfarmer> taking this example: https://docs.python.org/2/library/collections.html#collections.namedtuple
cubicool has quit [Quit: Leaving.]
<jfarmer> Point = Struct.new(:x, :y)
<jfarmer> would be the Ruby equivalent
<harly> how does rvm overwrite cd? You mean to check for auto-switching?
braincrash has quit [Ping timeout: 264 seconds]
<jfarmer> harly That's the "why"
sarkyniin has quit [Quit: Quit]
<jfarmer> The how is, well, it defines its own function named "cd" in bash that wraps the original
<harly> ah. how is chruby's better? (just asking out of interest. i know not how either handle auto-detection)
<harly> well i guess i could just go look at chruby's include for it
zets has joined #ruby
Hijiri has joined #ruby
<harly> ah, just a simple trap. or zsh preexec.
casadei has joined #ruby
shinnya has quit [Ping timeout: 265 seconds]
scruple has joined #ruby
davedev2_ has joined #ruby
davedev24_ has quit [Ping timeout: 256 seconds]
ramfjord has joined #ruby
sleungcy has joined #ruby
<postmodern> harly, yeah not a lot of magic
<harly> as it should be, eh.
davedev24_ has joined #ruby
davedev2_ has quit [Ping timeout: 256 seconds]
ramfjord has quit [Ping timeout: 256 seconds]
renderfu_ has joined #ruby
nikhgupt has joined #ruby
nikhgupta has quit [Ping timeout: 276 seconds]
s2013 has joined #ruby
penzur has joined #ruby
renderfu_ has quit [Ping timeout: 244 seconds]
bkxd has quit [Ping timeout: 264 seconds]
simplyianm has quit [Read error: Connection reset by peer]
<jfarmer> Yes, rvm (and rbenv, too) try to reinvent the wheel in a lot of ways.
simplyianm has joined #ruby
_blizzy_ has quit [Ping timeout: 276 seconds]
<jfarmer> To be fair, rvm is fairly old and a lot of what it does is now better done by other things.
<jfarmer> gemsets have been almost entirely replaced by bundler, for example
tcrypt has joined #ruby
simplyianm has quit [Client Quit]
mcclurmc has joined #ruby
<postmodern> plus distros have updated their package versions, even debian and centos
Ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
RickHull has joined #ruby
ramfjord has joined #ruby
zenguy_pc has quit [Ping timeout: 276 seconds]
serivich has joined #ruby
tcrypt has quit [Ping timeout: 255 seconds]
yfeldblum has joined #ruby
serivichi has quit [Ping timeout: 255 seconds]
mcclurmc has quit [Ping timeout: 252 seconds]
rbowlby has joined #ruby
hanmac has quit [Ping timeout: 256 seconds]
jfarmer has quit [Quit: Textual IRC Client: www.textualapp.com]
shadoi has quit [Quit: Leaving.]
beneggett has joined #ruby
zacts has joined #ruby
_blizzy_ has joined #ruby
ramfjord has quit [Ping timeout: 265 seconds]
havenwood has joined #ruby
mikecmpbll has quit [Quit: i've nodded off.]
jtdoncas has quit [Ping timeout: 244 seconds]
flycatcher has quit [Quit: Leaving]
guardianx has joined #ruby
guardianx has quit [Remote host closed the connection]
beneggett has quit [Quit: ...zzz ¯\_(ツ)_/¯ zzz...]
Igorshp has joined #ruby
hanmac has joined #ruby
fgo has joined #ruby
_djbkd has joined #ruby
mujou has joined #ruby
ChoiKyuSang has joined #ruby
hakunin_ has quit [Read error: Connection reset by peer]
Igorshp has quit [Ping timeout: 245 seconds]
RickHull has left #ruby [#ruby]
ChoiKyuSang_ has joined #ruby
Tempesta has quit [Ping timeout: 264 seconds]
michaeldeol has quit [Quit: Textual IRC Client: www.textualapp.com]
fgo has quit [Ping timeout: 276 seconds]
michaeldeol has joined #ruby
psy_ has quit [Remote host closed the connection]
fedexo has joined #ruby
ChoiKyuSang has quit [Ping timeout: 265 seconds]
lewis1711 has joined #ruby
uptownhr has joined #ruby
Rapier- has quit [Ping timeout: 256 seconds]
cb_ has joined #ruby
zenguy_pc has joined #ruby
quazimodo has quit [Ping timeout: 250 seconds]
oo_ has joined #ruby
GitGud has joined #ruby
oo_ has quit [Remote host closed the connection]
ChoiKyuSang_ has left #ruby ["Closing Window"]
blue_deref has quit [Quit: bbn]
GPrime has joined #ruby
tercenya has quit [Ping timeout: 252 seconds]
Channel6 has quit [Quit: Leaving]
Channel6 has joined #ruby
LMity has joined #ruby
malconis has joined #ruby
malconis has quit [Client Quit]
Channel6 has quit [Quit: Leaving]
[k- has joined #ruby
rbowlby has quit [Remote host closed the connection]
metallicrwr has joined #ruby
LMity has quit [Ping timeout: 272 seconds]
metallicrwr is now known as yayfoxes
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fabrice31 has joined #ruby
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
beneggett has joined #ruby
chinmay_dd has joined #ruby
Musashi007 has quit [Quit: Musashi007]
psy has joined #ruby
tejasmanohar has joined #ruby
<lewis1711> this is at least the third time in my life I have spent minutes figuring out why I couldn't construct my class because I wrote "initialise" instead of "initialize".
fabrice31 has quit [Ping timeout: 252 seconds]
yayfoxes has quit [Ping timeout: 246 seconds]
swgillespie has joined #ruby
LMity has joined #ruby
houhoulis has joined #ruby
beneggett has quit [Quit: ...zzz ¯\_(ツ)_/¯ zzz...]
_djbkd has quit [Quit: My people need me...]
rgb-one has quit [Remote host closed the connection]
lxsameer has joined #ruby
RegulationD has joined #ruby
<[k-> Your class still constructs without initialize ^^
beneggett has joined #ruby
<[k-> >> class A;end;A.new.inspect
<ruboto> [k- # => "#<A:0x407b90a4>" (https://eval.in/384665)
<[k-> The best way is for you to get initialize into your head
<[k-> Or you can file an issue
<[k-> I don't recommend a dirty hack tho
lewis1711_ has joined #ruby
RegulationD has quit [Ping timeout: 276 seconds]
theery has quit [Remote host closed the connection]
<sphex> hey is there any way to make `ruby -r debug` stop on uncaught exceptions?
lewis1711 has quit [Read error: Connection reset by peer]
<[k-> Related to initialise: https://bugs.ruby-lang.org/issues/11032
j4cknewt has quit [Remote host closed the connection]
beneggett has quit [Quit: ...zzz ¯\_(ツ)_/¯ zzz...]
serivich has quit [Ping timeout: 265 seconds]
riceandbeans has joined #ruby
<riceandbeans> word
serivich has joined #ruby
<riceandbeans> what's the current one?
<riceandbeans> optparse
<riceandbeans> argparse
<riceandbeans> optionsparser
<shevy> painparse
<riceandbeans> I'm serious man
fgo has joined #ruby
nikhgupt has quit [Ping timeout: 252 seconds]
GitGud has quit [Ping timeout: 244 seconds]
kahuna_ has quit [Quit: Lost terminal]
j4cknewt has joined #ruby
AustinLMayes has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
fgo has quit [Ping timeout: 272 seconds]
santana has joined #ruby
hazelux_ has quit [Remote host closed the connection]
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<santana> what is the most mature curses library?, what do you think of canis?
tercenya has joined #ruby
uptownhr has quit [Quit: uptownhr]
LMity has quit [Ping timeout: 250 seconds]
araujo_ has joined #ruby
araujo has quit [Ping timeout: 250 seconds]
charliesome has joined #ruby
santana has quit []
serivichi has joined #ruby
Musashi007 has joined #ruby
serivich has quit [Ping timeout: 255 seconds]
<shevy> curses makes people sad
<al2o3-cr> and angry
<[k-> But there are hardly any GUI for Ruby :(
bkxd has joined #ruby
<lewis1711_> I've heard good things about termbox
<riceandbeans> curses doesn't make me sad
<shevy> the problem with GUIs in Ruby is that there aren't that many people sufficiently interested in it
<lewis1711_> I'd describe my emotion as more "bemused"
<riceandbeans> shevy: what do you mean?
<shevy> why use a traditional GUI when you can have html/css/javascript
<lewis1711_> responsiveness
<shevy> riceandbeans for instance: ask how many people here use ruby-gnome / ruby-gtk :)
<shevy> how many people here use ruby + *curses
<riceandbeans> I've done ruby gkt and qt
<riceandbeans> gtk rather
swgillespie has joined #ruby
<riceandbeans> and wxwidgets
<riceandbeans> but that took effort
<riceandbeans> and swing with jruby
<shevy> what is the biggest program you wrote there?
<[k-> Ewww swing :p
<lewis1711_> [k-, they're all bad. Swing looks uglier than QT I guess, but much nicer to code for
<riceandbeans> I wrote a really crappy IDE in GTK/QT
<riceandbeans> no
<riceandbeans> swing was the worst
<riceandbeans> java is garbage
_blizzy_ has quit [Ping timeout: 256 seconds]
<riceandbeans> I like qt the most of them
<[k-> The truth has been spoken!
<riceandbeans> feels the most natural
User458764 has joined #ruby
<lewis1711_> I like java. I'm hacking in jruby
<lewis1711_> I'm a "professional C++ programmer" (that feels weird to type). I rather dislike it. but I've never been stuck in enterprise java hell, just used it for personal stuff, so that may be why I look at it fondly. that and I use java 8 which is nice
Tempesta has joined #ruby
Ropeney has joined #ruby
swgillespie has quit [Client Quit]
coffee__cup has joined #ruby
<riceandbeans> java leaks as a language feature
<lewis1711_> I have no idea what that means
<lewis1711_> leaks memory?
<riceandbeans> yes
<riceandbeans> clearly you understood
sleungcy has quit [Quit: Connection closed for inactivity]
<[k-> Java should have garbage collected itself long ago, as they say :p
<riceandbeans> amen
<lewis1711_> riceandbeans, there was a gap of a minute between those two messages :P anyway if java is so bad why is jruby so much faster? checkmate atheists
<riceandbeans> it's not faster
<riceandbeans> it takes like 60 seconds to do initial load
<riceandbeans> my script finishes before your JVM loads
psy has quit [Ping timeout: 265 seconds]
beneggett has joined #ruby
<lewis1711_> I don't actually own the JVM
<lewis1711_> I'm just a user of it
<riceandbeans> I would rather do Mono than JVM
<riceandbeans> java is the biggest failure of a government project
EllisTAA has joined #ruby
<shevy> goverment?
<lewis1711_> I can't tell if you're an old school bearded unix programmer, or still a student
<shevy> I thought Oracle owns java's soul
pragmatism has joined #ruby
santana has joined #ruby
<lewis1711_> Oracle is just a front for the illuminati that runs the UN
<shevy> lewis1711_ ask for a pic with beard!
<shevy> workmad3 has one, a mighty beard
_draco_ has joined #ruby
Cache_Money has quit [Quit: Cache_Money]
<lewis1711_> I just hope they're conditioned
<shevy> riceandbeans do you have a mighty beard as well?
<riceandbeans> sun microsystems made java
<riceandbeans> it received contstant heavy funding and support from darpa
<shevy> sun is history
<riceandbeans> it would've never made it to oracle's buyout if not for the us govt
<riceandbeans> alas, i wish I had a glorius neckbeard
<lewis1711_> *puff puff pass* they use of a distributed vm to execute code was designed so they coudn't track down the chemtrail manufacturing plants
<riceandbeans> my girlfriend won't allowit
psy has joined #ruby
<EllisTAA> anyone know a way where i can run the methods in test concurrently?
Decker has quit []
<riceandbeans> ummm this isn't a conspiracy theory
<riceandbeans> and I'm not saying they snuck malicious code in
<riceandbeans> darpa funding is an open thing
<riceandbeans> ...and usually government does anything that it does do terribly
mcclurmc has joined #ruby
<shevy> well, there is government funding for a million projects
<riceandbeans> and most things spawned from it are utter garbage
<santana> EllisTAA: you can use threads
<riceandbeans> see java
<lewis1711_> it's not called DARPA anymore is it?
<EllisTAA> santana: how i do dat?
_draco_ has left #ruby [#ruby]
<shevy> Oracle had 132,365 employees in 2015
<lewis1711_> which is bad because... it leaks memory apparently
<EllisTAA> santana: ty i will look it up
<santana> that will help you get started
<lewis1711_> java 8 has monads now. this fact amuses me. I abuse them all the time.
beneggett has quit [Quit: ...zzz ¯\_(ツ)_/¯ zzz...]
<lewis1711_> anyway I am being OT. sorry.
<santana> EllisTAA: the documentation is also easy to read: http://ruby-doc.org/core-2.2.0/Thread.html
<santana> what is the most mature [n]curses library?
rubie has quit [Remote host closed the connection]
mcclurmc has quit [Ping timeout: 264 seconds]
j4cknewt has quit [Remote host closed the connection]
Igorshp has joined #ruby
penzur has quit [Quit: Leaving]
Lucky__ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tejasmanohar has quit [Ping timeout: 272 seconds]
gambl0re has quit [Ping timeout: 256 seconds]
<EllisTAA> does this look like it works https://gist.github.com/ellismarte/3573a213714fc29e902f
<bnagy> lewis1711_: since when is it not called DARPA?
<santana> EllisTAA: you're missing Thread.join
riceandbeans has quit [Quit: Page closed]
[k- has quit [Ping timeout: 265 seconds]
<EllisTAA> ooo ok
<bnagy> anyway, recently they've been pretty good. The cyber fast track under Mudge did a lot of good stuff
Igorshp has quit [Ping timeout: 276 seconds]
<bnagy> and the cyber grand challenge, despite being a stupid name, is making people some some REALLY cool semantic analysis / AI stuff
gianlucadv has joined #ruby
Lucky__ has joined #ruby
fedexo has quit [Read error: Connection reset by peer]
peter_paule has joined #ruby
[k- has joined #ruby
<EllisTAA> thanks santana
EllisTAA has quit [Quit: EllisTAA]
<lewis1711_> bnagy, it was renamed for a brief period
[k- has quit [Read error: Connection reset by peer]
<lewis1711_> wikipedia it if you care
beneggett has joined #ruby
dgutierrez1287 has joined #ruby
hubcaps has joined #ruby
j4cknewt has joined #ruby
casadei has quit [Remote host closed the connection]
[k- has joined #ruby
peter_paule has quit [Ping timeout: 245 seconds]
<bnagy> not really :)
michael_mbp has quit [Excess Flood]
michael_mbp has joined #ruby
chipotle has quit [Quit: cheerio]
dgutierrez1287 has quit [Ping timeout: 255 seconds]
fgo has joined #ruby
shivam_v has joined #ruby
j4cknewt has quit [Ping timeout: 265 seconds]
<shevy> haha
<shivam_v> how do you resolve Ignoring bson-2.3.0 because its extensions are not built. Try: gem pristine bson --version 2.3.0
<shivam_v> any idea what is the issue here ?
<shevy> can you install bson gem
<shivam_v> i did run bundle install
<shivam_v> and it is occuring for multiple gems
<shevy> oh no idea about bundler, I only use plain gems
<shivam_v> cool
<shivam_v> anyone out there ?
Dopagod has joined #ruby
auzty has quit [Ping timeout: 276 seconds]
<bnagy> did you install it with gem? Or did you try the thing it said to try?
C1V0 has quit [Ping timeout: 255 seconds]
<shivam_v> i didn't try yet
hazelux has joined #ruby
santana has quit [Quit: leaving]
fgo has quit [Ping timeout: 272 seconds]
<shivam_v> i tried gem pri_ext --version 1.5.1
<shivam_v> and eventually bundle install
<shivam_v> it raises the same issue while rnning the server
<shivam_v> *running
towski_ has joined #ruby
Jackneill_ has joined #ruby
pch has joined #ruby
ponga has joined #ruby
TinkerTyper has quit [Ping timeout: 265 seconds]
EllisTAA has joined #ruby
toretore has quit [Quit: This computer has gone to sleep]
hazelux has quit [Ping timeout: 256 seconds]
michael_mbp has quit [Excess Flood]
michael_mbp has joined #ruby
TinkerTyper has joined #ruby
<EllisTAA> with my threads my program runs slower. (old) https://gist.github.com/ellismarte/3573a213714fc29e902f
<EllisTAA> oops that’s the new one
wookiehangover has quit [Ping timeout: 265 seconds]
<EllisTAA> nope theyre both the new one
Dopagod has quit [Ping timeout: 272 seconds]
psy has quit [Ping timeout: 265 seconds]
swgillespie has joined #ruby
jmhmccr has quit [Quit: Connection closed for inactivity]
TinkerTyper has quit [Ping timeout: 252 seconds]
EllisTAA has quit [Quit: EllisTAA]
Rollabunna has joined #ruby
Iskarlar has joined #ruby
Jackneill_ has quit [Quit: Leaving]
krz has joined #ruby
mandarinkin has joined #ruby
auzty has joined #ruby
TinkerTyper has joined #ruby
Ilyas has joined #ruby
ndrei has joined #ruby
fabrice31 has joined #ruby
ta has quit [Remote host closed the connection]
rafaelsales has quit [Remote host closed the connection]
psy has joined #ruby
psy has quit [Max SendQ exceeded]
psy has joined #ruby
krz has quit [Read error: Connection reset by peer]
fabrice31 has quit [Ping timeout: 256 seconds]
Cust0sLim3n has quit [Read error: Connection timed out]
_ht has joined #ruby
C1V0 has joined #ruby
wookiehangover has joined #ruby
rafaelsales has joined #ruby
Cust0sLim3n has joined #ruby
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
krz has joined #ruby
ledestin has joined #ruby
mister_solo has joined #ruby
auzty has quit [Quit: Leaving]
postmodern has quit [Quit: Leaving]
towski_ has quit [Remote host closed the connection]
wookiehangover has quit [Ping timeout: 264 seconds]
swgillespie has joined #ruby
rafaelsales has quit [Ping timeout: 264 seconds]
wookiehangover has joined #ruby
RegulationD has joined #ruby
olistik has joined #ruby
shivam_v has quit [Quit: Leaving]
RegulationD has quit [Ping timeout: 256 seconds]
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ndrei has quit [Ping timeout: 244 seconds]
<matti> Is #ruby-lang now with +i?
<matti> Ah.
<matti> I see topic.
<matti> ;)
cb_ has quit [Read error: Connection reset by peer]
cb_ has joined #ruby
cb_ has joined #ruby
rubie has joined #ruby
dopie has quit [Quit: This computer has gone to sleep]
haxrbyte_ has quit [Read error: Connection reset by peer]
dseitz has quit [Quit: gnight]
Igorshp has joined #ruby
shinnya has joined #ruby
t_ has quit [Ping timeout: 276 seconds]
<zenspider> threads? what threads?
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
rubie has quit [Ping timeout: 265 seconds]
<[k-> #ruby-lang should be forwarding here
Igorshp has quit [Ping timeout: 256 seconds]
j4cknewt has joined #ruby
senayar has joined #ruby
ndrei has joined #ruby
yfeldblum has quit [Remote host closed the connection]
wmoxam has quit [Ping timeout: 250 seconds]
pleiosaur has quit [Remote host closed the connection]
peterhu has quit [Remote host closed the connection]
peterhu has joined #ruby
pch has quit [Quit: Leaving]
senayar has quit [Ping timeout: 276 seconds]
chussenot has joined #ruby
swgillespie has joined #ruby
roolo has joined #ruby
t_ has joined #ruby
ndrei has quit [Ping timeout: 264 seconds]
yfeldblum has joined #ruby
ndrei has joined #ruby
langlands has joined #ruby
wmoxam has joined #ruby
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sevenseacat has joined #ruby
User458764 has joined #ruby
psy has quit [Ping timeout: 264 seconds]
<shevy> [k- I thought it was invite only nowadays?
<[k-> Eh?
<shevy> that's the message I get
<shevy> * Cannot join #ruby-lang (Channel is invite only).
<[k-> Why is it invite only now :o
<bnagy> it doesn't exist
<shevy> it was decided to move to #ruby based on a suggestion from jhass
<bnagy> if you join it it's a redirect
serivichi has quit [Ping timeout: 265 seconds]
<bnagy> if you're already here then I guess you get the +i message
<shevy> oh
shevy has left #ruby ["I'll be back ... maybe"]
shevy has joined #ruby
<shevy> you are right bnagy
<shevy> I just tried to join #ruby-lang and ended up on #ruby
sysx1000 has joined #ruby
<sysx1000> Hello! gem install sunspot_solr -v '2.2.0' | SSL_read: decryption failed or bad record mac | OpenSSL 0.9.8zd 8 Jan 2015, platform: darwin64-x86_64-llvm | gem 2.4.8 | ruby 2.2.1
serivich has joined #ruby
<sysx1000> 2.2.1p85
<sysx1000> Can't get it working
<sysx1000> Could someone help, what to do?
<shevy> looks as if you have some problem with openssl
<sysx1000> it looks
<shevy> the error message you showed here does not seem very useful at all
<shevy> can you find the sunspot_solr gem
<shevy> download it somewhere, extract it via gem unpack *.gem
<shevy> then enter that directory and manually run the installation
<bnagy> that is a really old openssl
<bnagy> you might want to do something about that
yardenbar has quit [Quit: Leaving]
<shevy> here is a more recent one ftp://ftp.openssl.org/source/openssl-1.0.2c.tar.gz
<sysx1000> it is not so easy to play with various openssls on yosemite, etc.
<bnagy> it's not?
<bnagy> like.. install a less insecure one via ports / brew - done
<bnagy> if you don't have either of those things you're going to have a bad time developing with MRI anyway
Forgetful_Lion has joined #ruby
<sysx1000> wondering, why it was working recently...
<sysx1000> i had no problems with system openssl
j4cknewt has quit [Remote host closed the connection]
<bnagy> tbh questions like "why doesn't X obscure gem with with Y outdated openssl etc" is too many levels of unknown for me to worry about
<bnagy> *work with
<sysx1000> OK, np. manual install of gem is not a solution. trashing system openssl with homebrew one is not a solution. I will try to get less hacky stuff. thanks
<shevy> manual installation of a gem is not a solution?
<sysx1000> no
<shevy> you never provided the exact error to us
<bnagy> have fun!
<sysx1000> thx
veduardo has quit [Ping timeout: 256 seconds]
sysx1000 has left #ruby [#ruby]
<sevenseacat> its not that old an openssl, its the same as my machine has
phutchins has quit [Ping timeout: 256 seconds]
<sevenseacat> which would have been what came with this version of osx
brian_000 has joined #ruby
<bnagy> hm.. I guess you're right, they're still running that branch. zd is still insecure though :)
<brian_000> Howdy, I'm a super-noob. I know a little JS but that's it. I'm trying to build a simple webpage that integrates Stripe Checkout, and I *THINK* that needs Heroku. But I have no idea where to begin.
MatthewsFace has joined #ruby
langland_ has joined #ruby
mister_solo has quit [Ping timeout: 252 seconds]
yardenbar has joined #ruby
langlands has quit [Ping timeout: 264 seconds]
rafaelsales has joined #ruby
Jackneill has joined #ruby
fgo has joined #ruby
ahmetkapikiran has joined #ruby
swgillespie has joined #ruby
rafaelsales has quit [Ping timeout: 252 seconds]
ahmetkapikiran has quit [Client Quit]
brian_000 has quit [Quit: Leaving]
lkba_ has quit [Ping timeout: 256 seconds]
Ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
fgo has quit [Ping timeout: 250 seconds]
techsethi has joined #ruby
MatthewsFace has quit [Remote host closed the connection]
Musashi007 has quit [Quit: Musashi007]
MatthewsFace has joined #ruby
techsethi has left #ruby [#ruby]
cb_ has quit []
mcclurmc has joined #ruby
nofxx has quit [Ping timeout: 250 seconds]
nofxxx has quit [Ping timeout: 264 seconds]
MatthewsFace has quit [Ping timeout: 256 seconds]
Bed-lam has joined #ruby
quazimodo has joined #ruby
DEA7TH_ has joined #ruby
rubie has joined #ruby
ndrei has quit [Ping timeout: 250 seconds]
GPrime has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mcclurmc has quit [Ping timeout: 276 seconds]
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yottanami has joined #ruby
edwinvdg_ has joined #ruby
<yottanami> Is any better way to write a loop like `0.upto t-1`
<sevenseacat> t.times ?
rubie has quit [Ping timeout: 265 seconds]
mattarse has quit [Ping timeout: 244 seconds]
veleno has joined #ruby
<Bed-lam> Thim lin your fre wit chim probay industrie Play ea now with isie.
<Bed-lam> We'll of les.
<Bed-lam> We does. It's fly bably in't dow with Mentoo does, Vionic lisis biol. MandelayStating coo! Withe theaver. Increstriesh goes bably ing jettentos th asis of Diving full ove wit molin to your withe cook dit Korthe tos Xbox, frehe his, Lizard Stay. Mandelay molea maker withe baby, Lizard we'll of legs. As th MandelayStay execs. Vandust. Mento dresh goesh andelayindelay bes. Mandelay. Mentool. Fifa,
<Bed-lam> Nes. Sonies.
<Bed-lam> the egs, besh goes, st Kork! Woreasy isis frea! Desh goeshmatter, Vands ove th Koreasy maker.
<Bed-lam> Neshnets frea nown you! Dee of Diving come.
<sevenseacat> !mute Bed-lam
<Bed-lam> Thing jette Lizard whating flis bay execs. MandelayStay, Vandelay. Man. Vandelay, Call life!
senayar has joined #ruby
Bed-lam has left #ruby [#ruby]
edwinvdgraaf has quit [Ping timeout: 244 seconds]
lkba has joined #ruby
Mia has joined #ruby
Mia has joined #ruby
<yottanami> sevenseacat: something like t.times but I need check what is n in each loop time, like for(i=0;i<t;i++) I need the value of i
<sevenseacat> t.times do |i| ?
senayar has quit [Ping timeout: 276 seconds]
ndrei has joined #ruby
<shevy> :)
olistik has quit [Remote host closed the connection]
<shevy> a helpful cat
awer has joined #ruby
<[k-> I always need to check if i starts with 0 or 1
<[k-> So... Which is it?
langlands has joined #ruby
bMalum has joined #ruby
yottanami has quit [Quit: Leaving.]
ndrei has quit [Ping timeout: 265 seconds]
yottanami has joined #ruby
ndrei has joined #ruby
DLSteve has joined #ruby
langland_ has quit [Ping timeout: 244 seconds]
CpuID has quit [Remote host closed the connection]
troulouliou_dev has joined #ruby
ndrei has quit [Ping timeout: 255 seconds]
ndrei has joined #ruby
sysx1000 has joined #ruby
<sysx1000> ok, ssl fixed
lewis1711_ has quit [Ping timeout: 244 seconds]
<sysx1000> no need to reinstall or remove system ssl: bad idea
<sevenseacat> so what was the problem with it?
<sevenseacat> given its the same version i have
n008f4g_ has joined #ruby
<sysx1000> 1) buggy ruby-build 2) rvm with --autolibs=3
yottanami has left #ruby ["PONG :hitchcock.freenode.net"]
<sevenseacat> ah hah. i dont use either of those things
fabrice31 has joined #ruby
<sysx1000> so now ruby linked with latest openssl from homebrew
<sysx1000> system yosemite openssl left intact
dfockler has joined #ruby
ndrei has quit [Remote host closed the connection]
<sysx1000> anyway, never remove system openssl on osx
langland_ has joined #ruby
langlands has quit [Read error: Connection reset by peer]
<bnagy> .. sooo... you did what I said and it worked?
<bnagy> cool story! :)
<sysx1000> nothing changed
<sysx1000> just a new opt to rvm + reinstall of ruby-build
<sevenseacat> why do you use rvm *and* ruby-build?
last_staff has joined #ruby
fabrice31 has quit [Ping timeout: 264 seconds]
sysx1000 has left #ruby [#ruby]
fgo has joined #ruby
peter_paule has joined #ruby
dfockler has quit [Ping timeout: 276 seconds]
ndrei has joined #ruby
<shevy> [k- if it is a string, you can do: if string.start_with?('0') or string.start_with?('1'); you could also use a regex, (0|1) I think
Musashi007 has joined #ruby
<shevy> that sysx1000 dude opts to insta-quit :P
<[k-> Lol was talking about t.times do |I|
<bnagy> I give such bad advice
<bnagy> I should be ashamed
<bnagy> lucky they ignored me and did it their way
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
araujo_ has quit [Quit: Leaving]
<shevy> [k- well in that case, whenever you had some data, like an array, you can use .select prior to output
al2o3-cr has quit [Ping timeout: 244 seconds]
<shevy> so like: array.select { ... condition goes in here ... }
<shevy> in your case, the 0 or 1 as the requirement for it
<shevy> it's like a filter basically
<shevy> .select / .reject
mattarse has joined #ruby
<[k-> ;-; shevy u misunderstand
ndrei has quit [Ping timeout: 265 seconds]
<shevy> ah
olistik has joined #ruby
RegulationD has joined #ruby
<shevy> you mean the index itself
<[k-> >> 1.times { |i| i }
<ruboto> [k- # => 1 (https://eval.in/384700)
multi_io has quit [Ping timeout: 265 seconds]
<[k-> Yes!
ndrei has joined #ruby
* sevenseacat has no idea whats going on
<[k-> Now we know it is 1
<[k-> I'll forget again soon though
<shevy> I thought it starts at 0 for an array
multi_io has joined #ruby
<shevy> >> %w( a b c ).each_with_index {|content, index| print index }
<ruboto> shevy # => 012["a", "b", "c"] (https://eval.in/384701)
yfeldblum has quit [Ping timeout: 265 seconds]
codecop has joined #ruby
Deele has joined #ruby
<[k-> Hmm
seal has joined #ruby
peter_paule has quit [Ping timeout: 255 seconds]
<[k-> >> 2.times { |a| print a }
<ruboto> [k- # => 012 (https://eval.in/384702)
<[k-> Weird
<sevenseacat> why weird
<bnagy> [k-: what you think is happening isn't happening
<shevy> >> 0.times { |i| i }
<ruboto> shevy # => 0 (https://eval.in/384704)
<bnagy> >> 2.times.to_a
<ruboto> bnagy # => [0, 1] (https://eval.in/384705)
langlands has joined #ruby
<shevy> [k- now it is 0 !
revath has joined #ruby
<[k-> Yes!
<bnagy> the last 2 is the return value
RegulationD has quit [Ping timeout: 265 seconds]
dotix has joined #ruby
bruno- has joined #ruby
<[k-> Thx :3
langlan__ has joined #ruby
langland_ has quit [Ping timeout: 256 seconds]
zets has quit [Quit: Textual IRC Client: www.textualapp.com]
bMalum has quit [Quit: bMalum]
langlands has quit [Ping timeout: 246 seconds]
gianlucadv has quit [Ping timeout: 264 seconds]
spider-mario has joined #ruby
NeverDie has quit [Quit: I'm off to sleep. ZZZzzz…]
bMalum has joined #ruby
seal has quit [Quit: Ex-Chat]
chussenot has quit [Quit: chussenot]
allomov has joined #ruby
chussenot has joined #ruby
mcclurmc has joined #ruby
starfox_sf has quit [Ping timeout: 256 seconds]
Cust0sLim3n has quit [Read error: Connection timed out]
uptownhr has joined #ruby
Cust0sLim3n has joined #ruby
langlands has joined #ruby
uptownhr has quit [Client Quit]
CloCkWeRX has joined #ruby
mcclurmc has quit [Ping timeout: 276 seconds]
uptownhr has joined #ruby
uptownhr has quit [Client Quit]
langlan__ has quit [Ping timeout: 264 seconds]
Xeago has joined #ruby
bMalum has quit [Quit: bMalum]
uptownhr has joined #ruby
ndrei has quit [Ping timeout: 252 seconds]
uptownhr has quit [Client Quit]
uptownhr has joined #ruby
yfeldblum has joined #ruby
ndrei has joined #ruby
uptownhr has quit [Client Quit]
uptownhr has joined #ruby
djbkd_ has joined #ruby
lkba_ has joined #ruby
revath has quit [Ping timeout: 264 seconds]
uptownhr has quit [Client Quit]
senayar has joined #ruby
uptownhr has joined #ruby
stamina has joined #ruby
uptownhr has quit [Client Quit]
hazelux has joined #ruby
lkba has quit [Ping timeout: 256 seconds]
uptownhr has joined #ruby
pragmatism has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
uptownhr has quit [Client Quit]
uptownhr has joined #ruby
senayar has quit [Ping timeout: 252 seconds]
langland_ has joined #ruby
uptownhr has quit [Client Quit]
<scx> Does ruby have build-in support for ini files?
uptownhr has joined #ruby
<scx> Should i use inifile or something else?
<scx> i mean: require 'inifile'
hazelux has quit [Ping timeout: 256 seconds]
uptownhr has quit [Client Quit]
startupality has joined #ruby
coffee__cup has quit [Quit: Leaving]
pleiosaur has joined #ruby
langlands has quit [Ping timeout: 252 seconds]
rafaelsales has joined #ruby
<shevy> sounds like an external gem
QKO has joined #ruby
C1V0 has quit []
<shevy> there is no built-in support as far as I know for .ini files
datanoise has joined #ruby
phutchins has joined #ruby
rafaelsales has quit [Ping timeout: 256 seconds]
<jhass> scx: you might like TOML
<jhass> but nothing inbuilt for that either
CloCkWeRX has left #ruby [#ruby]
sdothum has joined #ruby
<shevy> so which $SAFE got removed? $SAFE == 2 and $SAFE == 3 ?
QKO has quit [Remote host closed the connection]
penzur has joined #ruby
datanoise has quit [Ping timeout: 272 seconds]
brettnem has quit [Quit: brettnem]
phutchins has quit [Ping timeout: 264 seconds]
djbkd_ has quit [Remote host closed the connection]
allomov has quit [Remote host closed the connection]
<[k-> Yaml is built in
<[k-> Json is too iirc
FernandoBasso has joined #ruby
iamninja has quit [Ping timeout: 252 seconds]
techsethi has joined #ruby
fantazo has joined #ruby
techsethi has quit [Ping timeout: 256 seconds]
mikecmpbll has joined #ruby
techsethi has joined #ruby
cjk101010 has quit [Ping timeout: 252 seconds]
cjk101010 has joined #ruby
peter_paule has joined #ruby
techsethi_ has joined #ruby
techsethi has quit [Ping timeout: 250 seconds]
techsethi_ is now known as techsethi
pontiki has joined #ruby
senayar has joined #ruby
senayar has quit [Remote host closed the connection]
n008f4g_ has quit [Ping timeout: 252 seconds]
mattarse has quit [Quit: Leaving]
<shevy> yeah but scx wants ini files
sigurding has joined #ruby
awer has quit [Ping timeout: 256 seconds]
sigurding has quit [Ping timeout: 272 seconds]
rubie has joined #ruby
yaw has joined #ruby
_ixti_ has joined #ruby
lordkryss has joined #ruby
rubie has quit [Ping timeout: 265 seconds]
olistik has quit [Remote host closed the connection]
techsethi_ has joined #ruby
n008f4g_ has joined #ruby
techsethi has quit [Ping timeout: 265 seconds]
techsethi_ is now known as techsethi
arturhoo has joined #ruby
ixti has quit [Ping timeout: 276 seconds]
lxsameer has quit [Quit: Leaving]
freerobby has joined #ruby
<[k-> Buttt
galeido has joined #ruby
lxsameer has joined #ruby
lxsameer has joined #ruby
micmus has quit [Ping timeout: 264 seconds]
QKO has joined #ruby
langlands has joined #ruby
mathie has quit [Quit: Quitting...]
mathie has joined #ruby
langland_ has quit [Ping timeout: 245 seconds]
<pontiki> you love butts?
yaw has quit [Read error: Connection reset by peer]
yardenbar has quit [Ping timeout: 276 seconds]
<[k-> No..................
Al3ks_ has quit [Ping timeout: 255 seconds]
yaw has joined #ruby
langland_ has joined #ruby
<sevenseacat> and you cannot lie?
sinkensabe has joined #ruby
wittyfox has joined #ruby
fabrice31 has joined #ruby
yaw has quit [Client Quit]
phutchins has joined #ruby
<[k-> I lie when I need to
langlands has quit [Ping timeout: 265 seconds]
micmus has joined #ruby
pyon has quit [Quit: fixin muh confignyareshun nyaaaa!!1]
veleno has quit [Quit: veleno]
bkxd has quit [Ping timeout: 245 seconds]
hagabaka has quit [Ping timeout: 255 seconds]
yaw has joined #ruby
yaw has quit [Client Quit]
veleno has joined #ruby
fabrice31 has quit [Ping timeout: 265 seconds]
subtwo has joined #ruby
olistik has joined #ruby
krz has quit [Quit: WeeChat 1.0.1]
sinkensabe has quit [Remote host closed the connection]
ht__ has joined #ruby
fluchtreflex has joined #ruby
fluchtreflex has joined #ruby
penzur has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bosma is now known as bosnia
bosnia is now known as bosma
pyon has joined #ruby
yardenbar has joined #ruby
pontiki has quit [Quit: ZZZZZZZZ<clunk>NNNNNNNNN]
langlands has joined #ruby
RegulationD has joined #ruby
langland_ has quit [Ping timeout: 250 seconds]
quazimodo has quit [Ping timeout: 276 seconds]
bluish has joined #ruby
wittyfox has quit [Quit: WeeChat 1.2]
Iskarlar has quit [Ping timeout: 252 seconds]
RegulationD has quit [Ping timeout: 264 seconds]
micmus has quit [Read error: Connection reset by peer]
serivichi has joined #ruby
Ropeney has joined #ruby
peter_paule has quit [Ping timeout: 250 seconds]
serivich has quit [Ping timeout: 265 seconds]
wildroman2 has joined #ruby
workmad3 has quit [Ping timeout: 256 seconds]
krowv has quit [Ping timeout: 256 seconds]
FernandoBasso has quit [Quit: WeeChat 1.2]
olistik has quit [Remote host closed the connection]
awer has joined #ruby
olistik has joined #ruby
starfox_sf has joined #ruby
olistik has quit [Remote host closed the connection]
workmad3 has joined #ruby
chussenot has quit [Quit: chussenot]
Al3ks has joined #ruby
peter_paule has joined #ruby
starfox_sf has quit [Ping timeout: 252 seconds]
workmad3 has quit [Ping timeout: 250 seconds]
CloCkWeRX has joined #ruby
peter_paule has quit [Ping timeout: 256 seconds]
workmad3 has joined #ruby
_blizzy_ has joined #ruby
mcclurmc has joined #ruby
troulouliou_dev has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 256 seconds]
renderfu_ has joined #ruby
codecop has quit [Remote host closed the connection]
bosma is now known as bosnia
bosnia is now known as bosma
mcclurmc has quit [Ping timeout: 255 seconds]
rafaelsales has joined #ruby
dgutierrez1287 has joined #ruby
renderfu_ has quit [Ping timeout: 264 seconds]
olistik has joined #ruby
datanoise has joined #ruby
rafaelsales has quit [Ping timeout: 276 seconds]
techsethi has quit [Quit: techsethi]
dgutierrez1287 has quit [Ping timeout: 265 seconds]
symm- has quit [Ping timeout: 264 seconds]
olistik has quit [Remote host closed the connection]
lxsameer has quit [Quit: Leaving]
datanoise has quit [Ping timeout: 265 seconds]
bluish has quit [Quit: bluish]
allomov has joined #ruby
centrx has joined #ruby
User458764 has joined #ruby
m8 has joined #ruby
peter_paule has joined #ruby
<yorickpeterse> [k-: you don't love butts? The fk is wrong with you?
endash has joined #ruby
<[k-> My reputation is at stake!
<[k-> Abort!
[k- has left #ruby [#ruby]
sinkensabe has joined #ruby
OrbitalKitten has joined #ruby
[k- has joined #ruby
<[k-> Is it safe now?
peter_paule has quit [Ping timeout: 265 seconds]
alex88 has joined #ruby
<shevy> where were we to do without butts
alex88 has quit [Remote host closed the connection]
<[k-> Oh butts.
iamninja has joined #ruby
<shevy> you couldn't program without them now could you?
<[k-> I could stand!
sinkensabe has quit [Remote host closed the connection]
<shevy> yeah
<shevy> program while standing
<shevy> I just don't believe you
<sevenseacat> never used a standing desk?
psy has joined #ruby
Pupeno has quit [Remote host closed the connection]
michael_mbp has quit [Excess Flood]
stan has joined #ruby
<_blizzy_> standing? while programming?
<_blizzy_> why I never!
michael_mbp has joined #ruby
pontiki has joined #ruby
pontiki has quit [Client Quit]
Guest25453 has joined #ruby
Guest25453 has left #ruby [#ruby]
<[k-> My reputation is ruined!
allomov has quit [Read error: Connection reset by peer]
* [k- sobs in a corner (if there is one)
<shevy> well you use a chair and that is why you need a butt
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
qwertme has joined #ruby
<[k-> I can use my back!
rubie has joined #ruby
* sevenseacat is sitting on a couch, with a cat.
<shevy> cats have it better there
ledestin has joined #ruby
<shevy> they can use their belly while programming
ropeney_ has joined #ruby
ropeney_ has quit [Client Quit]
ledestin has quit [Client Quit]
DLSteve has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ropeney_ has joined #ruby
rubie has quit [Ping timeout: 265 seconds]
allomov has joined #ruby
Pupeno has joined #ruby
ropeney_ has quit [Client Quit]
langland_ has joined #ruby
mcclurmc has joined #ruby
langlands has quit [Ping timeout: 276 seconds]
chinmay_dd has quit [Remote host closed the connection]
wildroman2 has quit [Remote host closed the connection]
BTRE has quit [Quit: Leaving]
mcclurmc has quit [Ping timeout: 244 seconds]
charliesome_ has joined #ruby
chussenot has joined #ruby
charliesome has quit [Read error: Connection reset by peer]
s2013 has joined #ruby
fabrice31 has joined #ruby
<[k-> I'm pretty sure they will just employ humans to program for them
krowv has joined #ruby
stan has quit [Ping timeout: 265 seconds]
<jhass> "employ"
<centrx> "brainwash"
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
BTRE has joined #ruby
fabrice31 has quit [Ping timeout: 264 seconds]
<[k-> Ohz noz
chussenot has quit [Quit: chussenot]
qwertme has joined #ruby
langlands has joined #ruby
hazelux has joined #ruby
hazelux has quit [Remote host closed the connection]
stamina has quit [Ping timeout: 265 seconds]
yfeldblum has quit [Ping timeout: 265 seconds]
freerobby has quit [Quit: Leaving.]
hagabaka has joined #ruby
davedev24_ has quit [Remote host closed the connection]
langland_ has quit [Ping timeout: 276 seconds]
tvw has joined #ruby
bMalum has joined #ruby
RegulationD has joined #ruby
datanoise has joined #ruby
dorei has joined #ruby
wildroman2 has joined #ruby
Pupeno has quit [Remote host closed the connection]
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
RegulationD has quit [Ping timeout: 244 seconds]
_tpavel has joined #ruby
Ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
nateberkopec has joined #ruby
OrbitalKitten has joined #ruby
Iskarlar has joined #ruby
arturhoo has quit [Quit: arturhoo]
Forgetful_Lion has quit [Remote host closed the connection]
starfox_sf has joined #ruby
wildroman2 has quit [Remote host closed the connection]
starfox_sf has quit [Ping timeout: 255 seconds]
k3asd` has joined #ruby
wildroman2 has joined #ruby
felltir has joined #ruby
workmad3 has joined #ruby
Papierkorb has joined #ruby
workmad3 has quit [Ping timeout: 272 seconds]
Al3ks has quit [Ping timeout: 256 seconds]
sinkensabe has joined #ruby
ziprar has joined #ruby
ziprar has joined #ruby
zipace has quit [Disconnected by services]
ziprar is now known as zipace
nateberkope has joined #ruby
araujo has joined #ruby
sinkensabe has quit [Ping timeout: 265 seconds]
nateberkopec has quit [Ping timeout: 252 seconds]
mandarinkin has quit [Ping timeout: 252 seconds]
davedev24_ has joined #ruby
wildroman2 has quit [Remote host closed the connection]
rafaelsales has joined #ruby
sinkensabe has joined #ruby
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
adamski2600 has joined #ruby
wildroman2 has joined #ruby
<shevy> so
<shevy> anyone working on something interesting as of late
Yzguy has joined #ruby
nateberkope has quit [Quit: Leaving...]
adamski2600 has quit [Client Quit]
rafaelsales has quit [Ping timeout: 265 seconds]
felltir has quit []
<[k-> I'm not working at all!
<[k-> Is that interesting or what
quazimodo has joined #ruby
kirun has joined #ruby
alex88 has joined #ruby
air_ has joined #ruby
alex88 has quit [Client Quit]
adamski2600 has joined #ruby
nateberkopec has joined #ruby
jpfuentes2 has joined #ruby
haxrbyte has joined #ruby
endash has quit [Quit: endash]
haxrbyte has quit [Client Quit]
codecop has joined #ruby
rbennacer has joined #ruby
<noethics> im messing with dashing ;o
<noethics> its kinda cool i guess
<air_> i new to this group can any ne make me understand to https://gist.github.com/aj07/7b6247d588371745e067 line 4,5
chinmay_dd has joined #ruby
<air_> i have doubt regarding pointer
<air_> why and how it has been written
x44x45x41x4E has joined #ruby
<jhass> line 4 is blank, line 5 attaches the function create_light that takes no arguments and returns a pointer
<air_> that about line 5 and 6
mandarinkin has joined #ruby
workmad3 has joined #ruby
<air_> jhass what does returning to pointer mens?
<jhass> line 6 attaches the function destroy_light that takes one pointer argument and returns nothing
<jhass> that you'll get an FFI::Pointer back I guess
<jhass> do you know what a pointer means in C?
yoongkang has quit [Remote host closed the connection]
yoongkang has joined #ruby
wildroman2 has quit [Remote host closed the connection]
<air_> ya used for addressing purpose
chinmay_dd has quit [Ping timeout: 252 seconds]
<jhass> that's what FFI maps out here, a C pointer
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<air_> jhass: see in comment , what does attach_function :puts, [ :string ], :int says?
<air_> it taked argument as string and return int
<air_> isn't
jpfuentes2 has joined #ruby
<jhass> yes
<air_> but why the puts has been written
<jhass> what do you mean
<air_> means format are changed from previous one why?
<jhass> I don't follow
benegget_ has joined #ruby
workmad3 has quit [Ping timeout: 256 seconds]
dopie has joined #ruby
<air_> can i say 2nd one wants to print the argument thats why puts has been written..
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<jhass> I'm sorry, but I still don't follow what you want to express
<air_> explain both the progRAM
<[k-> http://goruco.com - happening live
<[k-> Conference
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<air_> ist one you have done
enebo has joined #ruby
<jhass> air_: I don't understand where you're stuck, you explained what it does perfectly
beneggett has quit [Ping timeout: 252 seconds]
_tpavel has quit [Quit: Leaving]
langland_ has joined #ruby
RegulationD has joined #ruby
rbennacer has quit [Remote host closed the connection]
<air_> attach_function :puts, [ :string ], :int means it will print the argument which is in the form of string and return it to int type
sinkensabe has quit [Remote host closed the connection]
rbennacer has joined #ruby
OrbitalKitten has joined #ruby
<jhass> attach_function just makes the C function with that signature available to call it from Ruby, it doesn't say anything about the C functions behavior
GitGud has joined #ruby
<sevenseacat> [k-: man, how do these professional speakers get anything done
jenrzzz has joined #ruby
roshanavand has joined #ruby
<havenwood> sevenseacat: do they?
roshanavand has quit [Max SendQ exceeded]
<[k-> They do!
langlands has quit [Ping timeout: 252 seconds]
<sevenseacat> i dont know, i see a bunch of the same names at like every conference
roshanavand has joined #ruby
<havenwood> sevenseacat: I see a lot of folk give the same talk at every conference.
dotix has quit [Quit: Leaving]
<sevenseacat> that seems... pointless
<centrx> They're clones
l0oky has joined #ruby
<wasamasa> they need the world to know
<havenwood> I guess once you've prepared a nice talk might as well give it over and over
<sevenseacat> i mean a lot of us watch conf videos, i think i'd feel a bit ripped off if i attended a conf and saw a talk i'd already seen
<havenwood> sevenseacat: I've done exactly that.
<havenwood> sevenseacat: Gone to a talk live, oops, I've seen this talk. :(
<sevenseacat> dang
<l0oky> What's up rubyists
<havenwood> l0oky: hallooo
xxx has quit [Quit: xxx]
<sevenseacat> so much money that could have been saved by sitting at home watching youtube instead
RegulationD has quit [Ping timeout: 244 seconds]
<centrx> I thought the purpose of conferences was to connect with people
<centrx> Since you can always watch the videos, or read the book
xxx has joined #ruby
enebo has quit [Ping timeout: 265 seconds]
<sevenseacat> i guess thats another case of 'they are what you make them'
<[k-> The conference is live ;-;
<[k-> All this chatter means no one is watching it
<air_> do you organise these talks in india?
<sevenseacat> and speaking of seeing talks before
<sevenseacat> i have indeed seen amy wibowo's sweaters as a service talk before
wpp has joined #ruby
nateberkopec has quit [Quit: Leaving...]
<[k-> There's a wonderful schedule to see what's going to happen
<sevenseacat> [k-: we can read, thanks :)
nateberkopec has joined #ruby
<[k-> I doubt it hahahahha
<[k-> No one reads anymore!
<sevenseacat> [k-: kindly refrain from acting stupid, please.
<[k-> I'm sorry :(
<havenwood> goruco live stream: https://www.youtube.com/watch?v=7zpDMkvEjqs
User458764 has joined #ruby
chinmay_dd has joined #ruby
air_ has quit [Quit: Page closed]
wpp has quit [Client Quit]
bMalum has quit [Quit: bMalum]
chinmay_dd has quit [Client Quit]
wpp has joined #ruby
jenrzzz has quit [Read error: Connection reset by peer]
_blizzy_ has quit [Ping timeout: 265 seconds]
chinmay_dd has joined #ruby
mandarinkin has quit [Ping timeout: 245 seconds]
dopie has quit [Quit: This computer has gone to sleep]
JoshL has joined #ruby
devdazed has quit [Quit: Computer has gone to sleep.]
michael_mbp has quit [Excess Flood]
enebo has joined #ruby
yqt has joined #ruby
nateberkopec has quit [Quit: Leaving...]
senayar has joined #ruby
Ilyas has quit [Ping timeout: 255 seconds]
michael_mbp has joined #ruby
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<michael_mbp> hey guys
OrbitalKitten has joined #ruby
veleno has quit [Quit: veleno]
senayar has quit [Ping timeout: 256 seconds]
Torrieri has joined #ruby
Torrieri has joined #ruby
<shevy> whatup!
<centrx> The sky
<shevy> whatdown!
jenrzzz has joined #ruby
<centrx> on the groun
jinx123_ has joined #ruby
<shevy> on the groin?
dfockler has joined #ruby
<centrx> Sir Loin!
uptownhr has joined #ruby
stamina has joined #ruby
<shevy> and Sir Lancelot!
<centrx> together again!
<shevy> Sir centrx is a knight of the round table
<centrx> Sir shevy is a knight of the round table
<centrx> Fighing PHP to the death!
sevenseacat has quit [Quit: Me dun like you no more.]
Al3ks has joined #ruby
dfockler has quit [Ping timeout: 244 seconds]
<shevy> well we can always try to look at trends http://goo.gl/urZUqa
Pupeno has joined #ruby
<shevy> large gain for python; slight decrease for PHP, slight decrease for ruby but not as much as php in comparison; large decrease for perl
krz has joined #ruby
jenrzzz has quit [Ping timeout: 264 seconds]
iamninja has quit [Ping timeout: 255 seconds]
<centrx> Look at Regional Interest, all from India
A205B064 has quit [Ping timeout: 252 seconds]
rbennacer has quit [Remote host closed the connection]
rubie has joined #ruby
sarkyniin has joined #ruby
duderonomy has quit [Ping timeout: 265 seconds]
Iskarlar has quit [Ping timeout: 265 seconds]
<centrx> Ruby is actually the top one outside of India
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
devdazed has joined #ruby
Iskarlar has joined #ruby
IrishGringo has joined #ruby
kraljev11 has joined #ruby
robbyoconnor has quit [Ping timeout: 256 seconds]
icebourg has joined #ruby
<dorei> i think it's not correct :p
_ixti_ has quit [Ping timeout: 244 seconds]
<dorei> this one is more correct
<dorei> somehow google trends doesnt recognize python as a programming language :S
<dreinull75> 3.x "I" => "III". Any super simple solutions?
Xeago has quit [Remote host closed the connection]
<havenwood> Most programmers are in Tanzania apparently.
<havenwood> I do not believe...
<havenwood> >> ?I*3
<ruboto> havenwood # => "III" (https://eval.in/384724)
<dorei> google trends makes a distrinction between "search terms" and higher level concepts as programming languages, etc
* bnagy walks in
* bnagy reads scrollback
* bnagy walks out
icebourg has quit [Client Quit]
<dreinull75> havenwood unbelievable. I knew there was something :)
<dreinull75> couldn't remember what it was though.
Al3ks has quit [Remote host closed the connection]
<dorei> what's really interesting with google trends is that if one selects a smaller duration like 90days, then the graph oscilates between week days and week ends :)
sinkensabe has joined #ruby
_ixti_ has joined #ruby
starfox_sf has joined #ruby
Pupeno has quit [Remote host closed the connection]
IrishGringo has quit [Ping timeout: 256 seconds]
fantazo has quit [Quit: Verlassend]
CloCkWeRX has left #ruby [#ruby]
sinkensabe has quit [Ping timeout: 246 seconds]
Ariadeno has quit [Ping timeout: 265 seconds]
Ariadeno has joined #ruby
Ariadeno is now known as Guest82383
starfox_sf has quit [Ping timeout: 276 seconds]
Pupeno has joined #ruby
endash has joined #ruby
endash has quit [Client Quit]
qwertme has joined #ruby
wpp has quit []
Pupeno has quit [Ping timeout: 244 seconds]
yayfoxes has joined #ruby
<jhass> well, I think ideally it would differ depending on --bar is defined as an option or not
<jhass> if it is defined as an option it can't be consumed as an argument for another option
<jhass> if it isn't then it can
roshanavand has quit [Quit: Leaving]
<jhass> mmh, though I guess that would need a third variant
<ljarvis> yeah I thought that too, but then we can raise on invalid/unknown options being provided
zenguy_pc has quit [Read error: No route to host]
<jhass> that is --bar --foo --bar should work
<ljarvis> right
<jhass> well, or require --foo=--bar if the argument should start with a -
Al3ks has joined #ruby
<ljarvis> i guess, though it seems restrictive
dross has joined #ruby
<ljarvis> i should check what more parsers do
<ljarvis> does crystal have a go-to option parser?
<jhass> yeah, though it's just a copy of optparse, even more basic I guess: https://github.com/manastech/crystal/blob/master/src/option_parser.cr
<ljarvis> ah
sandstrom has joined #ruby
k3asd` has quit [Ping timeout: 265 seconds]
rafaelsales has joined #ruby
alex88 has joined #ruby
AvidChronos has quit [Ping timeout: 244 seconds]
c355E3B has joined #ruby
dross has quit [Ping timeout: 256 seconds]
rafaelsales has quit [Ping timeout: 276 seconds]
senayar has joined #ruby
senayar has quit [Changing host]
senayar has joined #ruby
hubcaps has quit [Ping timeout: 256 seconds]
senayar has quit [Ping timeout: 250 seconds]
sarkyniin has quit [Ping timeout: 272 seconds]
autrilla has joined #ruby
zenguy_pc has joined #ruby
aryaching has joined #ruby
yfeldblum has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
peter_paule has joined #ruby
workmad3 has joined #ruby
premera has quit [Ping timeout: 265 seconds]
nateberkopec has joined #ruby
ht__ has quit [Quit: Konversation terminated!]
premera has joined #ruby
premera has quit [Excess Flood]
NeverDie has joined #ruby
premera has joined #ruby
premera has quit [Excess Flood]
sarkyniin has joined #ruby
psy has quit [Disconnected by services]
mcclurmc has joined #ruby
zenguy_pc has quit [Read error: Connection reset by peer]
premera has joined #ruby
premera has quit [Excess Flood]
workmad3 has quit [Ping timeout: 245 seconds]
premera has joined #ruby
premera has quit [Excess Flood]
dross has joined #ruby
premera has joined #ruby
peter_paule has quit [Ping timeout: 276 seconds]
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
ducklobster has joined #ruby
premera has joined #ruby
mcclurmc has quit [Ping timeout: 265 seconds]
s2013 has joined #ruby
<jhass> \o/ 1k users on a weekend!
RegulationD has joined #ruby
l0oky has quit [Read error: Connection reset by peer]
endash has joined #ruby
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
duggiefresh has joined #ruby
chipotle has joined #ruby
duggiefresh is now known as Guest74236
RegulationD has quit [Ping timeout: 272 seconds]
GPrime has joined #ruby
nateberkopec has quit [Quit: Leaving...]
dross has quit [Ping timeout: 272 seconds]
bronson has joined #ruby
ponga has quit []
zenguy_pc has joined #ruby
penzur has joined #ruby
sinkensabe has joined #ruby
<shevy> 500 bots!!!
<shevy> bot ljarvis bot dorei bot dreinull75
<jhass> so what? users are users, AI or not
bronson has quit [Ping timeout: 246 seconds]
<shevy> dorei btw your trend reaches back only one year? how do you set this? http://goo.gl/WYSR0h
woodruffw has quit [Quit: And then he took off.]
woodruffw has joined #ruby
mujou has quit [Quit: Leaving...]
livathinos has joined #ruby
darkf has quit [Quit: Leaving]
livathinos has quit [Client Quit]
systemd0wn has quit [Remote host closed the connection]
Rapier- has joined #ruby
sinkensabe has quit [Ping timeout: 265 seconds]
systemd0wn has joined #ruby
langlands has joined #ruby
woodruffw has quit [Client Quit]
woodruffw has joined #ruby
uptownhr has quit [Quit: uptownhr]
langland_ has quit [Ping timeout: 244 seconds]
oo_ has joined #ruby
robbyoconnor has joined #ruby
hfp has quit [Ping timeout: 255 seconds]
hfp_work has quit [Ping timeout: 256 seconds]
blue_deref has joined #ruby
premera has quit [Ping timeout: 256 seconds]
ponga has joined #ruby
tejasmanohar has joined #ruby
zenguy_pc has quit [Read error: Connection reset by peer]
robbyoconnor has quit [Read error: Connection reset by peer]
r0bby_ has joined #ruby
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
r0bby_ has quit [Client Quit]
premera has joined #ruby
premera has quit [Excess Flood]
hfp_work has joined #ruby
greenbagels has joined #ruby
Scub_ has quit [Ping timeout: 276 seconds]
datanoise has quit [Ping timeout: 255 seconds]
premera has joined #ruby
premera has quit [Excess Flood]
hfp has joined #ruby
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
premera has quit [Excess Flood]
premera has joined #ruby
jackjackdripper has joined #ruby
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
araujo has quit [Quit: Leaving]
leitz has joined #ruby
<shevy> ldd ruby
<shevy> libpng12.so.0 => not found
uptownhr has joined #ruby
jackjackdripper has quit [Client Quit]
<shevy> now why does my ruby depend on libpng at all...
peter_paule has joined #ruby
<leitz> I'm trying to iterate through an array but not succeeding. Operator Error, just not sure what. https://gist.github.com/LeamHall/52fd5047560ece6e8f0a
hfp_work has quit [Ping timeout: 245 seconds]
araujo has joined #ruby
baweaver has joined #ruby
hfp has quit [Ping timeout: 272 seconds]
<shevy> this code does not make sense
<bnagy> leitz: what is your actual problem?
<shevy> item.strip!
<shevy> superfluous
baweaver_ has joined #ruby
<shevy> also, puts character.item
<bnagy> it looks like you're trying to send but failing
<shevy> try to use .send(item)
Agoldfish has joined #ruby
tejasmanohar has quit [Quit: WeeChat 1.1.1]
hfp has joined #ruby
fedexo has joined #ruby
baweave__ has joined #ruby
hfp_work has joined #ruby
rubie has quit [Remote host closed the connection]
stamina has quit [Ping timeout: 244 seconds]
<leitz> The error is "./lib/trav_functions.rb:69:in `out_txt': undefined method `item' for #<Marine:0x7f8c51759600> (NoMethodError)"
[k- has quit [Ping timeout: 246 seconds]
peter_paule has quit [Ping timeout: 256 seconds]
IrishGringo has joined #ruby
<leitz> The idea is to get to "item = character.item" so the puts can be called "puts "career name ..."
baweaver has quit [Ping timeout: 272 seconds]
<leitz> The failing line is the "puts character.item" line.
<shevy> did you update your code
baweaver_ has quit [Ping timeout: 264 seconds]
chinmay_dd has quit []
<shevy> .item is always the method called item() and never the block-variable you used above called |item|
Rapier- has quit [Ping timeout: 252 seconds]
<shevy> item.strip! does not make any sense because your array already looks like this:
<shevy> >> output_sequence = %w(career rank name upp gender age terms)
<ruboto> shevy # => ["career", "rank", "name", "upp", "gender", "age", "terms"] (https://eval.in/384744)
<leitz> shevy, how do I reference the block value?
<shevy> so calling .strip there is totally useless
Rapier- has joined #ruby
<shevy> don't put a preceding '.' character for instance
yoongkang has quit [Remote host closed the connection]
<shevy> the ruby parser will correctly interprete this code to invoke the .item() method on that object
mcpierce has joined #ruby
<leitz> so use "characteritem"
zenguy_pc has joined #ruby
<jhass> leitz: puts character.public_send item
baweave__ has quit [Read error: Connection reset by peer]
<leitz> There is no "item()" variable or method, each of those is a value. So "character..career" is "Marine"
znz_jp has quit [Quit: kill -QUIT $$]
fgo has quit [Ping timeout: 264 seconds]
<leitz> jhass, no pubilc_send method.
<jhass> leitz: get a supported ruby version
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
erts has joined #ruby
<jhass> if you don't have public_send that means you're on 1.8, which beyond dead
<shevy> leitz you can use .send()
<jhass> but you should update your ruby instead
al2o3-cr has joined #ruby
<shevy> leitz "characteritem" will be a different thing again, just because "item" is part of that name does not mean that it has anything to do with any other "item"
<ljarvis> s
<ljarvis> oops
<ljarvis> wrong screen
<shevy> hey
<shevy> what was the right screen
<ljarvis> the one that is not irc
<shevy> oh
<ljarvis> s = git status
rafaelsales has joined #ruby
znz_jp has joined #ruby
<shevy> oh wow... first time that I have this error
<shevy> rubygems/specification.rb:2112:in `raise_if_conflicts': Unable to activate program_information-1.0.27, because colours-0.0.32 conflicts with colours (>= 0.10) (Gem::ConflictError)
<jhass> time to use bundler :P
f209 has joined #ruby
yoongkang has joined #ruby
yfeldblum has quit [Ping timeout: 256 seconds]
<f209> Hi guys, have a question about Ruby.. Is the Trie data structure part of available collections by default?
<f209> or is it something I'd have to write?
<jhass> not aware it's in core
peter_paule has joined #ruby
<shevy> jhass hmm but bundler can not bypass a restriction like that or?
<f209> darn ok
<jhass> f209: http://ruby-doc.org/core-2.2.2/ has a neat search
<ponga> If i wanted to write a gui in ruby crossplatform but don't want to use shoes, is qtruby a good option to go for?
<jhass> shevy: it might be able to resolve to a version that both support, or at least more clearly point out why the conflict is happening
<shevy> I just rebuilt my ruby and there is no more libpng dependency \o/
<f209> thanks
x44x45x41x4E has quit [Ping timeout: 256 seconds]
<f209> I'm applying for this job and they literally gave me this academic problem: based on Find Longest Word Made of Other Words
rafaelsales has quit [Ping timeout: 244 seconds]
<f209> they said I can write it in C, C++, Java, Python or Ruby
AustinLMayes has joined #ruby
<f209> none of which I use regularly
<shevy> ponga you could use ruby-gnome :)
<jhass> f209: can you use external libraries? I'm sure there's a gem for it :P
<f209> so I'm debating which language it would likely be easiest for me to write it in
<ponga> shevy: does it run on windows too?
<shevy> ponga yeah
<f209> it doesn't say you can so I'm assuming no
<shevy> ponga ideally, if you can, try to make the underlying code base as generic as possible, and then once that is done, add the GUI to it
<shevy> then you can add any GUI to it when you want to, without it being tightly coupled to the GUI
AustinLMayes has quit [Max SendQ exceeded]
<ponga> thank you , shevy is there a reason you recommend gnome over qt that i might want to hear
<shevy> dunno. it has a wiki actually which helps
<shevy> qtruby looked fancier when I tried it
olistik has joined #ruby
<f209> such a pain in the ass that they want me to write a trie data structure
<shevy> if you know of a wiki for qtruby lemme know
zenguy_pc has quit [Read error: No route to host]
yoongkang has quit [Remote host closed the connection]
<bnagy> f209: tries are trivial :/
<f209> writing the whole data structure?
<jhass> yeah, looks simple
<bnagy> which is probably the point of the exercise I guess
langland_ has joined #ruby
<bnagy> like a hash can be used as a ghetto trie with no extra code
Exuma has joined #ruby
<jhass> "ghetto trie", we should see how long a WP page on that would survive :D
langlan__ has joined #ruby
woodruffw has quit [Quit: And then he took off.]
woodruffw has joined #ruby
starfox_sf has joined #ruby
<bnagy> is that one of the embargoed US words?
langlands has quit [Ping timeout: 245 seconds]
aryaching has quit [Ping timeout: 276 seconds]
<f209> since tries are trivial...mind if i ask you a question or two
shazaum_ has joined #ruby
<f209> assuming we're talking about a-z
<f209> no numbers
<f209> is a trie essentially a tree...where the max nodes level 1 are the letters in the alphabet..
<f209> and subsequently each node on level 2...has x children
al2o3-cr has quit [Ping timeout: 250 seconds]
<f209> where x is equal to the number of letters in position 2 of the word?
<ponga> shevy: i can't find a good wiki for qtruby, i will stick to gnome ruby then
ruv has joined #ruby
Exuma has quit [Client Quit]
<bnagy> without bothering to wikipedia, my understanding is that it's a compressed DAG where the end nodes are the end of a word
JoshL has quit []
langland_ has quit [Ping timeout: 264 seconds]
<bnagy> so you keep following available paths and then suddenly you find you're at an end node so c->a->t[terminal] means cat is a word
theery has joined #ruby
<f209> yea that's what i thought.
<bnagy> I've used them in ruby before, but the stack is small so recursive searches can be tricksy
s2013 has joined #ruby
<bnagy> probablt changed now, I don't knw
Torrieri has quit [Quit: Be back later ...]
<bnagy> I think if you start with a hash, though, it's pretty natural
starfox_sf has quit [Ping timeout: 264 seconds]
<bnagy> you can add more or less formal looking navigation methods, but it's the depth recursion you have to watch out for
theery has quit [Remote host closed the connection]
Guest1 has joined #ruby
rbennacer has joined #ruby
Pupeno has joined #ruby
Pupeno has quit [Changing host]
Pupeno has joined #ruby
Guest1 has quit [Quit: if you want an nice chat with new users and new network so visit us on /server irc.ind.in:6667 -j #lobby and have fun, enjoy your chat. Thanks.]
j4cknewt has joined #ruby
revath has joined #ruby
df has quit [Quit: .]
df has joined #ruby
uber has quit [Ping timeout: 264 seconds]
penzur has quit [Quit: Textual IRC Client: www.textualapp.com]
endash has quit [Quit: endash]
gambl0re has joined #ruby
alex88 has quit []
Torrieri has joined #ruby
Torrieri has joined #ruby
sinkensabe has joined #ruby
zenguy_pc has joined #ruby
Pupeno has quit [Ping timeout: 256 seconds]
nofxxx has joined #ruby
nofxx has joined #ruby
DLSteve has joined #ruby
kraljev11 has quit [Ping timeout: 245 seconds]
peter_paule has quit [Ping timeout: 244 seconds]
zenguy_pc has quit [Max SendQ exceeded]
houhoulis has quit [Remote host closed the connection]
kraljev11 has joined #ruby
workmad3 has joined #ruby
zenguy_pc has joined #ruby
oo_ has quit [Remote host closed the connection]
sinkensabe has quit [Ping timeout: 252 seconds]
zenguy_pc has quit [Read error: No route to host]
nisstyre has joined #ruby
langlan__ has quit [Ping timeout: 264 seconds]
qwertme has joined #ruby
bMalum has joined #ruby
renderfu_ has joined #ruby
nisstyre has quit [Changing host]
nisstyre has joined #ruby
rippa has joined #ruby
uber has joined #ruby
x44x45x41x4E has joined #ruby
workmad3 has quit [Ping timeout: 255 seconds]
renderfu_ has quit [Ping timeout: 264 seconds]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
datanoise has joined #ruby
Zamerick_ has joined #ruby
kraljev11 has quit [Remote host closed the connection]
Papierkorb has quit [Remote host closed the connection]
kraljev11 has joined #ruby
Papierkorb has joined #ruby
RegulationD has joined #ruby
Zamerick has quit [Ping timeout: 265 seconds]
fantazo has joined #ruby
drewo has joined #ruby
amclain has joined #ruby
datanoise has quit [Ping timeout: 252 seconds]
shazaum_ has quit [Quit: This computer has gone to sleep]
bMalum has quit [Quit: bMalum]
RegulationD has quit [Ping timeout: 264 seconds]
zenguy_pc has joined #ruby
fantazo has quit [Ping timeout: 265 seconds]
mannyt has joined #ruby
Al3ks has quit [Remote host closed the connection]
rubie has joined #ruby
yayfoxes has quit [Ping timeout: 256 seconds]
senayar has joined #ruby
freerobby has joined #ruby
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mdih has quit [Ping timeout: 264 seconds]
blue_deref has quit [Quit: bbn]
fgo has joined #ruby
otherj has joined #ruby
x44x45x41x4E has quit [Ping timeout: 255 seconds]
rubie has quit [Ping timeout: 265 seconds]
c355E3B has quit [Quit: Connection closed for inactivity]
<chridal> { "GCM":"{\"data\":{\"message\":\"Test\"}}" } <- I need to achieve this json structure in Ruby. Any thoughts any one?
<chridal> Can't seem to be able to get it to work...
blackmesa has joined #ruby
senayar has quit [Ping timeout: 244 seconds]
duderonomy has joined #ruby
[H]unt3r has joined #ruby
fgo has quit [Ping timeout: 264 seconds]
fantazo has joined #ruby
Guest74236 has quit [Remote host closed the connection]
Pupeno has joined #ruby
Guest98267 has joined #ruby
jtdoncas has joined #ruby
otherj has quit [Quit: .]
starfox_sf has joined #ruby
newish has joined #ruby
blue_deref has joined #ruby
<newish> www.VALBOT.COM provides domain valuations. Reporting globally on Site Traffic, Pagerank, Malware, WHOIS data, SEO & even Social Media presence.
<havenwood> !mute newish
newish has left #ruby [#ruby]
aryaching has joined #ruby
IrishGringo has quit [Ping timeout: 265 seconds]
datanoise has joined #ruby
<havenwood> chridal: Have you tried parsing that String with Ruby's JSON module?
jtdoncas has quit [Ping timeout: 256 seconds]
Guest98267 has quit [Ping timeout: 265 seconds]
mcclurmc has joined #ruby
<chridal> What do you mean?
<chridal> havenwood:
<havenwood> >> require 'json'; JSON.parse '{ "GCM":"{\"data\":{\"message\":\"Test\"}}" }'
<ruboto> havenwood # => {"GCM"=>"{\"data\":{\"message\":\"Test\"}}"} (https://eval.in/384770)
kraljev11 has quit [Quit: kraljev11]
<chridal> havenwood: I am unsure what this tells me
kraljev11 has joined #ruby
<chridal> What I am struggling is getting that inner part wrapped in quotes
claptor has joined #ruby
<havenwood> >> require 'json'; {:data=>{:message=>"Test"}}.to_json
<ruboto> havenwood # => "{\"data\":{\"message\":\"Test\"}}" (https://eval.in/384771)
lapide_viridi has joined #ruby
yoongkang has joined #ruby
drewo has quit [Ping timeout: 255 seconds]
<havenwood> chridal: ^ JSON
<chridal> that doesn't solve it?
<chridal> { "GCM":"{\"data\":{\"message\":\"Test\"}}" } is what I need
blackmesa has quit [Ping timeout: 256 seconds]
<chridal> first part (GCM) does not have escaped quotes
<chridal> where as everything else does
mcclurmc has quit [Ping timeout: 255 seconds]
micmus has joined #ruby
swgillespie has joined #ruby
_blizzy_ has joined #ruby
<chridal> Think I got it working, I separated the inner and outer part and called .to_json on both of them.
blackmesa has joined #ruby
<chridal> Thanks, though.
Soda has joined #ruby
swgillespie has quit [Max SendQ exceeded]
qwertme has joined #ruby
revath has quit [Quit: Leaving.]
qwertme has quit [Client Quit]
swgillespie has joined #ruby
wildroman2 has joined #ruby
revath has joined #ruby
rubie has joined #ruby
kraljev11_ has joined #ruby
djbkd_ has joined #ruby
AlexRussia has quit [Ping timeout: 256 seconds]
drewo has joined #ruby
Channel6 has joined #ruby
kraljev11 has quit [Ping timeout: 245 seconds]
enebo has quit [Quit: enebo]
djellemah__ has quit [Ping timeout: 252 seconds]
sinkensabe has joined #ruby
<IceDragon> >> require 'json'; { "GCM" => { "data" => { "message" => "Test" } }.to_json }.to_json
<ruboto> IceDragon # => "{\"GCM\":\"{\\\"data\\\":{\\\"message\\\":\\\"Test\\\"}}\"}" (https://eval.in/384772)
lordkryss has quit [Quit: Connection closed for inactivity]
<havenwood> chridal: That's what I was trying to point out. :)
* jhass has a deja-vu
<IceDragon> chridal: ^
<IceDragon> Ignore the first set of quotes and I think you have what you want
<IceDragon> Hi jhass, havenwood, what's the latest and greatest?
<jhass> #ruby-offtopic is a thing now
Soda has quit [Remote host closed the connection]
<IceDragon> Should I terrified?
wildroman2 has quit [Remote host closed the connection]
<IceDragon> *be
<jhass> that we're not sure of yet
IrishGringo has joined #ruby
<IceDragon> Then I belive I should be terrified
<chridal> It seems that the issue was not that the code from before wasn't working, but that I actually had to kill rake running resque for the files to reload...
<chridal> hence deja-vu
drewo has quit [Quit: WeeChat 1.2]
sinkensabe has quit [Ping timeout: 255 seconds]
fabrice31 has joined #ruby
<IceDragon> zombies
<Spaceghostc2c> zombros
fabrice31 has quit [Ping timeout: 252 seconds]
iamninja has joined #ruby
sarkyniin has quit [Ping timeout: 264 seconds]
<shevy> zombreros
EllisTAA has joined #ruby
* IceDragon noms shevy
Soda has joined #ruby
zenguy_pc has quit [Read error: No route to host]
<EllisTAA> does anyone know why even though i put my code into threads they dont run faster than if they weren’t in threads?
<IceDragon> because threads?
<Spaceghostc2c> EllisTAA: Depends.
aryaching has quit []
<EllisTAA> did i event make them correctly?
<Spaceghostc2c> EllisTAA: I think those things are all VM.
<Spaceghostc2c> Ruby has a GVL.
flughafen_ has joined #ruby
<IceDragon> EllisTAA: You're joining the threads with the main one, it boils down to the same.
symm- has joined #ruby
<EllisTAA> icedragon: what do you mean the main one?
<jhass> EllisTAA: what does join do?
<IceDragon> Thread#join merges the target thread into the current one and waits for its execution (not the proper defintion, but its what it does)
<IceDragon> @EllisTAA: ^
<EllisTAA> hmmm ok
bgmarx has joined #ruby
aryaching has joined #ruby
nahtnam has joined #ruby
EllisTAA has quit [Quit: EllisTAA]
<IceDragon> EllisTAA: I commented on your gist, and then I realized you left... FML
stamina has joined #ruby
sarkyniin has joined #ruby
<sphex> hey. I'm trying to figure out the right way to do something... I need to code something that works as a small state machine. I was trying to set up a transition table as a class variable, but I'm not sure what to use as function pointers. I see there are a lot of options. lambda/Proc should work just fine, but I dunno if that's the best way.
sargas has joined #ruby
sargas has quit [Max SendQ exceeded]
flughafen_ has quit [Ping timeout: 252 seconds]
sargas has joined #ruby
sargas has quit [Max SendQ exceeded]
sargas has joined #ruby
rafaelsales has joined #ruby
bgmarx has quit [Remote host closed the connection]
MatthewsFace has joined #ruby
<IceDragon> sphex: Depends on your needs, I use objects as my function pointers (they all respond to something like #process or standard #call), lambda/procs work fine for small parts of your code, but if it needs alot of state and helper methods, its best to wrap it into something Callable (an Object that responds to #call and #to_proc)
GPrime has quit [Quit: Textual IRC Client: www.textualapp.com]
<IceDragon> s/alot/a lot/
zacts has quit [Quit: leaving]
GPrime has joined #ruby
senayar has joined #ruby
<sphex> IceDragon: ok. yeah I don't need a lot of states at all. but I'm confused about instance/class/bound/unbound methods, so I dunno if I could have been using methods in my table somehow.
leitz has quit [Quit: Nappy time]
zenguy_pc has joined #ruby
rafaelsales has quit [Ping timeout: 265 seconds]
rbennacer has quit [Remote host closed the connection]
zacts has joined #ruby
<sphex> IceDragon: the thing is I'd like my state functions to be able to access the class' instance variables
dionysus69 has joined #ruby
NeverDie has quit [Quit: I'm off to sleep. ZZZzzz…]
<IceDragon> sphex: Can you gist an example?
RegulationD has joined #ruby
<shevy> IceDragon I want a RubyOS
codecop has quit [Remote host closed the connection]
senayar has quit [Ping timeout: 252 seconds]
<phat4life> shevy: lol
<IceDragon> shevy: Pfft, then make it ;D
<shevy> IceDragon don't think this could realistically happen by one person alone
<IceDragon> I wish I could exterminate python, but its just everywhere ;-;
<phat4life> shevy: not true
<shevy> phat4life yeah because so many big projects today are made by one person :)
<phat4life> shevy: look at templeos
<shevy> awesome graphics
<Spaceghostc2c> IceDragon: Just desecrate the Steve Irwin's grave and use necromancy to set him loose on a python-killing tirade.
<Spaceghostc2c> If anyone could do it, it would be Steve Irwin.
<sphex> IceDragon: well.. not even yet. :/ I guess I should at least try to get it working with lambdas first and see if they can be made to capture the instance.
revath has quit [Ping timeout: 265 seconds]
blackmesa has quit [Ping timeout: 246 seconds]
<IceDragon> Except one thing, I'm a dragon and IceDragon at that, not a necromancer
<Spaceghostc2c> IceDragon: Make a friend.
ruv has quit [Ping timeout: 252 seconds]
<shevy> he is a dragon
<shevy> what friend could he possibly have?
<shevy> everybody hates them after having watched that red one in The Hobbit
RegulationD has quit [Ping timeout: 246 seconds]
<Spaceghostc2c> shevy: He has things to offer. Like not killing them, unless he's hungry.
<shevy> yeah, classical blackmail :D
<IceDragon> shevy, aren't we the best of buds, comrades, amigos, brothers in arms, and all dat jazz?
<shevy> no
timonv has joined #ruby
<shevy> you must die... did you not watch the dragonhunters?
<IceDragon> But I'm a good dragon!
<IceDragon> ;-; I stopped kidnapping princesses and burning farms!
duggiefresh has joined #ruby
<shevy> what about sheep
<IceDragon> I even stopped eating the knights that came to rescue the princesses too
duggiefresh is now known as Guest53309
<IceDragon> ;-;
<IceDragon> Ah... well, um.. ah, about that
* IceDragon scoots away
dionysus69 has quit [Ping timeout: 265 seconds]
<phat4life> shevy: there are a lot of amazing progjects done by a few people, you just need to build community around it
<IceDragon> You just need to make it a thing ;3
mcclurmc has joined #ruby
Guest53309 has quit [Ping timeout: 256 seconds]
psy_ has joined #ruby
Cache_Money has joined #ruby
mcclurmc has quit [Ping timeout: 256 seconds]
marr has joined #ruby
ttilley has joined #ruby
blackmesa has joined #ruby
ttilley has quit [Changing host]
ttilley has joined #ruby
workmad3 has joined #ruby
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
workmad3 has quit [Ping timeout: 276 seconds]
zz_Outlastsheep is now known as Outlastsheep
lkba has joined #ruby
sinkensabe has joined #ruby
vasilakisfil_ has joined #ruby
dgutierrez1287 has joined #ruby
mhib has joined #ruby
<vasilakisfil_> is there any quick way to compute the following? "/api/v1/users/148" ==> ["/","/api/","/api/v1","/api/v1/users","/api/v1/users/148"]
sinkensabe has quit [Remote host closed the connection]
sinkensabe has joined #ruby
endash has joined #ruby
lkba_ has quit [Ping timeout: 252 seconds]
t_mmyv has joined #ruby
slackbotgz has quit [Remote host closed the connection]
slackbotgz has joined #ruby
[H]unt3r has quit [Quit: Leaving]
GPrime has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
malconis has joined #ruby
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
datanoise has quit [Ping timeout: 244 seconds]
Alayde_ has joined #ruby
blackmesa has quit [Ping timeout: 256 seconds]
wildroman2 has joined #ruby
al2o3-cr has joined #ruby
j4cknewt has quit [Remote host closed the connection]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rbowlby has joined #ruby
<aep> vasilakisfil_: "/api/v1/users/148".enum_for(:scan,/\//).map {$~.pre_match; }
<aep> or:
<aep> "/api/v1/users/148".enum_for(:scan,/\//).map {$~.string[0..$~.offset(0)[1]-1] }
adamski2600 has quit [Remote host closed the connection]
adamski2600 has joined #ruby
wildroman2 has quit [Remote host closed the connection]
<aep> err, i have no idea why i used enum_for
<vasilakisfil_> aep: thanks! a=[]; string.split('/').each{|p| next if p.blank?; a << a.last.to_s + '/' + p}; <-- that was my fastest way
<aep> your version looks more readable to be honest :P
jtdoncas has joined #ruby
adamski2600 has quit [Ping timeout: 246 seconds]
<jhass> >> "/api/v1/users/148".split(/(?<=\/)/).each_with_object([]) {|component, paths| paths << "#{paths.last}#{component}" } # vasilakisfil_ aep
<ruboto> jhass # => ["/", "/api/", "/api/v1/", "/api/v1/users/", "/api/v1/users/148"] (https://eval.in/384802)
<jhass> slightly cleaner version
<aep> nice
<aep> i didnt know about each_with_object. thats pretty cool
cashnguns has joined #ruby
senayar has joined #ruby
borodin has quit [Ping timeout: 272 seconds]
kadoppe has quit [Ping timeout: 244 seconds]
IrishGringo has quit [Read error: Connection reset by peer]
MVPhelp has quit [Remote host closed the connection]
sinkensabe has quit [Remote host closed the connection]
baweaver has joined #ruby
<vasilakisfil_> indeed!
freerobby has quit [Quit: Leaving.]
djbkd_ has quit []
kadoppe has joined #ruby
MVPhelp has joined #ruby
IrishGringo has joined #ruby
Alayde_ has quit [Ping timeout: 252 seconds]
EllisTAA has joined #ruby
senayar has quit [Ping timeout: 265 seconds]
Al3ks has joined #ruby
baweaver_ has joined #ruby
baweaver has quit [Ping timeout: 245 seconds]
baweaver has joined #ruby
baweave__ has joined #ruby
dgutierrez1287 has quit [Remote host closed the connection]
User458764 has joined #ruby
baweaver_ has quit [Ping timeout: 244 seconds]
baweave__ has quit [Read error: Connection reset by peer]
Limix has joined #ruby
jpfuentes2 has joined #ruby
baweaver has quit [Read error: Connection reset by peer]
toretore has joined #ruby
ruby-lang521 has joined #ruby
baweaver has joined #ruby
DLSteve has quit [Quit: Textual IRC Client: www.textualapp.com]
<ruby-lang521> i am trying to get the google analytics data from ruby.. what is the best gem for it ?
<ruby-lang521> <br>i am trying to get the google analytics data from ruby.. what is the best gem for it ?<br>
<ruby-lang521> <b>i am trying to get the google analytics data from ruby.. what is the best gem for it ?<b>
wildroman2 has joined #ruby
mcclurmc has joined #ruby
freerobby has joined #ruby
iamninja has quit [Ping timeout: 256 seconds]
dross has joined #ruby
<jhass> ruby-lang521: it came through the first time
fantazo has quit [Quit: Verlassend]
<jhass> and this is IRC, not a webbrowser ;P
riceandbeans has joined #ruby
<jhass> ruby-lang521: anyway, which options did you find?
dgutierrez1287 has joined #ruby
<ruby-lang521> i am figuring out how to use this irc as well
<riceandbeans> https://gist.github.com/strangelittlemonkey/9e259fc631fe52e54bf9 can anyone tell me why when run, than script still lists .. as a directory?
<ruby-lang521> i found garb and gattica.. both are old and has bugs and errors in it
<ruby-lang521> do you have any idea <jhass> ?
mcclurmc has quit [Ping timeout: 255 seconds]
<jhass> ruby-lang521: searching for google analytics on rubygems.org turns up https://rubygems.org/gems/lazy_google_analytics
<jhass> last update from 2013 though
kraljev11_ has quit [Ping timeout: 252 seconds]
phizzbuzz has quit [Ping timeout: 255 seconds]
baweaver has quit [Remote host closed the connection]
duderonomy has quit [Ping timeout: 245 seconds]
<riceandbeans> jhass: :\ any idea for me?
<jhass> riceandbeans: yeah, keep http://ruby-community.com/pages/user_rules#rule_2_7 in mind
dopie has joined #ruby
<weaksauce> riceandbeans you shouldn't try to mutate a list like that.
Xeago has joined #ruby
<riceandbeans> ok, so my style is wrong, but why is .. still shown?
<jhass> yeah, mutating the list while iterating over it probably causes the loop to jump over the entry after the one you delete, in this case ".."
<riceandbeans> ok
<jhass> use .reject
<riceandbeans> I guess I could just hard code the . and .. in a .delete too
<jhass> or use Dir::[]/Dir::glob
<riceandbeans> the other names with . would be better with reject though I guess
<riceandbeans> I'm going to try to reimplement world in ruby to learn
<riceandbeans> I figured ls would be the easiest start
<riceandbeans> well, after head and tail
<riceandbeans> I think top is going to be difficult
alem0lars has quit [Ping timeout: 252 seconds]
<riceandbeans> but...I think it'll be a good learning experience
t_ has quit [Ping timeout: 252 seconds]
Stany has joined #ruby
blizzy has joined #ruby
Agoldfish378 has joined #ruby
fabrice31 has joined #ruby
rafaelsales has joined #ruby
alem0lars has joined #ruby
dgutierrez1287 has quit [Remote host closed the connection]
skyrocker1 has joined #ruby
yorickpeterse1 has joined #ruby
towski_ has joined #ruby
yorickpeterse1 has quit [Changing host]
yorickpeterse1 has joined #ruby
apt-get_ has joined #ruby
yorickpeterse has quit [Disconnected by services]
yorickpeterse1 is now known as yorickpeterse
cek_ has joined #ruby
harleypig_ has joined #ruby
strmpnk_ has joined #ruby
djbender_ has joined #ruby
crdpink has joined #ruby
jcp has joined #ruby
culturelabs_ has joined #ruby
AdamMeghji_ has joined #ruby
perrier_ has joined #ruby
alekst__ has joined #ruby
Meeh_ has joined #ruby
justinmcp_ has joined #ruby
cina_ has joined #ruby
phizzbuzz has joined #ruby
ramblinpeck____ has joined #ruby
jxf_ has joined #ruby
rgs_ has joined #ruby
drewdavis_ has joined #ruby
dfockler has joined #ruby
sarkyniin has quit [Ping timeout: 256 seconds]
shaman42 has joined #ruby
jzigmund_ has joined #ruby
dgutierrez1287 has joined #ruby
chadrien_ has joined #ruby
romero_ has joined #ruby
peteyg_ has joined #ruby
jinx123 has joined #ruby
fabrice31 has quit [Ping timeout: 276 seconds]
tvl has joined #ruby
rafaelsales has quit [Ping timeout: 256 seconds]
DefV_ has joined #ruby
charliesome has joined #ruby
lacrosse___ has joined #ruby
t-richards_ has joined #ruby
Papierkorb has quit [Quit: ArchLinux completes an endless loop faster than any other distro!]
dopie has quit [Quit: This computer has gone to sleep]
ponga has quit [Quit: Connection closed for inactivity]
okdas_ has joined #ruby
Shidash_ has joined #ruby
waxjar_ has joined #ruby
george2_ has joined #ruby
Evan_ has joined #ruby
ElderFain- has joined #ruby
mistym_ has joined #ruby
Junaos_ has joined #ruby
Brando753-o_O_o has joined #ruby
fredsir_ has joined #ruby
pjaspers_ has joined #ruby
duoi_ghost has joined #ruby
hyperdrive has joined #ruby
psmolen_ has joined #ruby
Klumben_ has joined #ruby
mistym_ has quit [Changing host]
mistym_ has joined #ruby
mistym has quit [Disconnected by services]
mistym_ is now known as mistym
soahccc_ has joined #ruby
mathie_ has joined #ruby
omegahm|BNC has joined #ruby
dfockler has quit [Ping timeout: 265 seconds]
sfr^^ has joined #ruby
kartouch_ has joined #ruby
LBRapid_ has joined #ruby
Plas has joined #ruby
retornam_ has joined #ruby
Billias_ has joined #ruby
SegFaultAX_ has joined #ruby
pabs_ has joined #ruby
johnhame- has joined #ruby
baweaver has joined #ruby
<riceandbeans> reject definitely worked, thank you
DarkBushido_ has joined #ruby
jmhmccr has joined #ruby
jimeh_ has joined #ruby
wookiehangover_ has joined #ruby
Junaos has quit [Disconnected by services]
baweaver has quit [Remote host closed the connection]
Outlastsheep is now known as zz_Outlastsheep
Junaos_ is now known as Junaos
cashnguns has quit [*.net *.split]
_blizzy_ has quit [*.net *.split]
Agoldfish has quit [*.net *.split]
charliesome_ has quit [*.net *.split]
centrx has quit [*.net *.split]
mathie has quit [*.net *.split]
wookiehangover has quit [*.net *.split]
hanmac has quit [*.net *.split]
eggoez has quit [*.net *.split]
Creede has quit [*.net *.split]
omegahm has quit [*.net *.split]
unclouded has quit [*.net *.split]
terrellt has quit [*.net *.split]
waxjar has quit [*.net *.split]
Tamae has quit [*.net *.split]
crdpink2 has quit [*.net *.split]
fredsir has quit [*.net *.split]
jordanm has quit [*.net *.split]
Billias has quit [*.net *.split]
GGMethos has quit [*.net *.split]
perrier has quit [*.net *.split]
GnuYawk has quit [*.net *.split]
lokulin has quit [*.net *.split]
rgs has quit [*.net *.split]
duoi has quit [*.net *.split]
tekacs has quit [*.net *.split]
melter has quit [*.net *.split]
psmolen has quit [*.net *.split]
Dwarf has quit [*.net *.split]
ElderFain has quit [*.net *.split]
LBRapid has quit [*.net *.split]
Meeh has quit [*.net *.split]
Shidash has quit [*.net *.split]
tobiasvl has quit [*.net *.split]
kartouch has quit [*.net *.split]
ckrailo has quit [*.net *.split]
djbender has quit [*.net *.split]
t-richards has quit [*.net *.split]
coderkevin has quit [*.net *.split]
alekst_ has quit [*.net *.split]
jxf has quit [*.net *.split]
bove has quit [*.net *.split]
lacrosse__ has quit [*.net *.split]
holsee_ has quit [*.net *.split]
firevolt has quit [*.net *.split]
Guest85414______ has quit [*.net *.split]
strmpnk has quit [*.net *.split]
AdamMeghji has quit [*.net *.split]
troter___ has quit [*.net *.split]
chrisseaton has quit [*.net *.split]
MiracleBlue has quit [*.net *.split]
ramblinpeck_ has quit [*.net *.split]
cstrahan has quit [*.net *.split]
cek has quit [*.net *.split]
culturelabs has quit [*.net *.split]
akahn has quit [*.net *.split]
harleypig has quit [*.net *.split]
retornam has quit [*.net *.split]
PlasmaStar has quit [*.net *.split]
polyrob has quit [*.net *.split]
jzigmund has quit [*.net *.split]
programmerq has quit [*.net *.split]
BLuEGoD has quit [*.net *.split]
Nightmare has quit [*.net *.split]
blackjid has quit [*.net *.split]
chadrien has quit [*.net *.split]
DarkBushido has quit [*.net *.split]
Brando753 has quit [*.net *.split]
canton7 has quit [*.net *.split]
SegFaultAX has quit [*.net *.split]
certainty has quit [*.net *.split]
pabs has quit [*.net *.split]
drewdavis has quit [*.net *.split]
jokke has quit [*.net *.split]
DefV has quit [*.net *.split]
soahccc has quit [*.net *.split]
johnhamelink has quit [*.net *.split]
Klumben has quit [*.net *.split]
mosez has quit [*.net *.split]
RealMarc has quit [*.net *.split]
cina has quit [*.net *.split]
romero has quit [*.net *.split]
reprazent has quit [*.net *.split]
jimeh has quit [*.net *.split]
sfr^ has quit [*.net *.split]
tylersmith has quit [*.net *.split]
universa1 has quit [*.net *.split]
mozzarella has quit [*.net *.split]
jeaye has quit [*.net *.split]
george2 has quit [*.net *.split]
bascht has quit [*.net *.split]
pjaspers has quit [*.net *.split]
EvanGuru has quit [*.net *.split]
javawizard has quit [*.net *.split]
justinmcp has quit [*.net *.split]
mnemon has quit [*.net *.split]
peteyg has quit [*.net *.split]
marcoamorales has quit [*.net *.split]
okdas has quit [*.net *.split]
hdrv has quit [*.net *.split]
callumacrae has quit [*.net *.split]
finges has quit [*.net *.split]
shaman42_ has quit [*.net *.split]
jinx123_ has quit [*.net *.split]
jidar has quit [*.net *.split]
ytti has quit [*.net *.split]
retornam_ is now known as retornam
Junaos has joined #ruby
Junaos has quit [Changing host]
Brando753-o_O_o is now known as Brando753
ElderFain- is now known as ElderFain
ElderFain has joined #ruby
ElderFain has quit [Changing host]
omegahm|BNC is now known as omegahm
tvl is now known as tobiasvl
wookiehangover_ is now known as wookiehangover
Billias_ is now known as Billias
johnhame- is now known as johnhamelink
SegFaultAX_ is now known as SegFaultAX
Plas is now known as PlasmaStar
george2_ is now known as george2
mosez has joined #ruby
Guest85414______ has joined #ruby
callumacrae has joined #ruby
dgutierrez1287 has quit [Remote host closed the connection]
allomov has quit [Read error: Connection reset by peer]
reprazent has joined #ruby
djbender_ is now known as djbender
allomov has joined #ruby
tekacs has joined #ruby
polyrob has joined #ruby
C1V0 has joined #ruby
harleypig_ is now known as harleypig
<riceandbeans> so with an example like the one in http://docs.ruby-lang.org/en/2.1.0/OptionParser.html is it possible to escape the last argument in ARGV?
last_staff has quit [Quit: last_staff]
Nightmare has joined #ruby
ringarin has joined #ruby
<riceandbeans> say you're writing ls, you want to have the ease of the flags, but still be able to just have the last argument be the match group
universa1 has joined #ruby
Creede has joined #ruby
AdamMeghji_ is now known as AdamMeghji
hyperdrive has quit [Changing host]
hyperdrive has joined #ruby
hyperdrive is now known as hdrv
finges has joined #ruby
Limix has quit [Quit: Limix]
eggoez has joined #ruby
ramblinpeck____ is now known as ramblinpeck_
t-richards_ is now known as t-richards
cek_ is now known as cek
jeaye has joined #ruby
marcoamorales has joined #ruby
konieczkow has joined #ruby
mozzarella has joined #ruby
GnuYawk has joined #ruby
alekst__ is now known as alekst_
lacrosse___ is now known as lacrosse__
apt-get_ is now known as apt-get
apt-get is now known as sarkyniin
RealMarc has joined #ruby
tylersmith has joined #ruby
canton7 has joined #ruby
melter has joined #ruby
ChoiKyuSang has joined #ruby
certainty has joined #ruby
mnemon has joined #ruby
canton7 has quit [Changing host]
canton7 has joined #ruby
jokke has joined #ruby
programmerq has joined #ruby
bascht has joined #ruby
hanmac has joined #ruby
akahn has joined #ruby
cstrahan has joined #ruby
chrisseaton has joined #ruby
datanoise has joined #ruby
centrx has joined #ruby
jxf_ is now known as jxf
langlands has joined #ruby
_blizzy_ has joined #ruby
ringarin has quit [Ping timeout: 246 seconds]
GGMethos has joined #ruby
f2099 has joined #ruby
BLuEGoD has joined #ruby
MiracleBlue has joined #ruby
Dwarf has joined #ruby
marr123 has joined #ruby
langland_ has joined #ruby
ht has joined #ruby
<jhass> you can modify ARGV if everything else fails
strmpnk_ is now known as strmpnk
ht is now known as Guest36907
culturelabs_ is now known as culturelabs
jamo___ has joined #ruby
kiki_lam1 has joined #ruby
IrishGringo_ has joined #ruby
ytti has joined #ruby
fedexo_ has joined #ruby
pasv has joined #ruby
sphex_ has joined #ruby
kloeri_ has joined #ruby
ndrei_ has joined #ruby
chrisarc1nd has joined #ruby
rgs has joined #ruby
ebarrett_ has joined #ruby
pasv is now known as Guest70152
kaspergr1bbe has joined #ruby
troter___ has joined #ruby
coderkevin has joined #ruby
firevolt has joined #ruby
langlands has quit [Ping timeout: 264 seconds]
lokulin_ has joined #ruby
Aryasam has joined #ruby
pontiki has joined #ruby
kadoppe_ has joined #ruby
mathie has joined #ruby
mighty_gorilla has joined #ruby
trollface has joined #ruby
sfr^ has joined #ruby
_df has joined #ruby
DarkBushido has joined #ruby
LBRapid has joined #ruby
epochwolf|2 has joined #ruby
holsee_ has joined #ruby
teotwaki_ has joined #ruby
prasselpikachu_ has joined #ruby
duoi has joined #ruby
JaTochNietDan_ has joined #ruby
Billias_ has joined #ruby
lupine_85 has joined #ruby
Seich_ has joined #ruby
nullwarp_ has joined #ruby
jalcine- has joined #ruby
Shidash has joined #ruby
rvchangu- has joined #ruby
iooner_ has joined #ruby
blackjid has joined #ruby
cjk101010_ has joined #ruby
jimeh has joined #ruby
freerobby has quit [Quit: Leaving.]
znz_jp0 has joined #ruby
Creede has quit [*.net *.split]
universa1 has quit [*.net *.split]
Nightmare has quit [*.net *.split]
wookiehangover has quit [*.net *.split]
jimeh_ has quit [*.net *.split]
DarkBushido_ has quit [*.net *.split]
johnhamelink has quit [*.net *.split]
Billias has quit [*.net *.split]
callumacrae has quit [*.net *.split]
PlasmaStar has quit [*.net *.split]
SegFaultAX has quit [*.net *.split]
kartouch_ has quit [*.net *.split]
LBRapid_ has quit [*.net *.split]
mathie_ has quit [*.net *.split]
sfr^^ has quit [*.net *.split]
Klumben_ has quit [*.net *.split]
psmolen_ has quit [*.net *.split]
george2 has quit [*.net *.split]
duoi_ghost has quit [*.net *.split]
Shidash_ has quit [*.net *.split]
waxjar_ has quit [*.net *.split]
mistym has quit [*.net *.split]
charliesome has quit [*.net *.split]
drewdavis_ has quit [*.net *.split]
rgs_ has quit [*.net *.split]
AdamMeghji has quit [*.net *.split]
crdpink has quit [*.net *.split]
djbender has quit [*.net *.split]
blizzy has quit [*.net *.split]
IrishGringo has quit [*.net *.split]
kadoppe has quit [*.net *.split]
marr has quit [*.net *.split]
psy_ has quit [*.net *.split]
df has quit [*.net *.split]
f209 has quit [*.net *.split]
znz_jp has quit [*.net *.split]
fedexo has quit [*.net *.split]
krowv has quit [*.net *.split]
subtwo has quit [*.net *.split]
cjk101010 has quit [*.net *.split]
ndrei has quit [*.net *.split]
Deele has quit [*.net *.split]
_ht has quit [*.net *.split]
Tempesta has quit [*.net *.split]
mjmac has quit [*.net *.split]
skarn has quit [*.net *.split]
jalcine has quit [*.net *.split]
larissa has quit [*.net *.split]
weszlem has quit [*.net *.split]
torpig has quit [*.net *.split]
marienz has quit [*.net *.split]
michaelreid has quit [*.net *.split]
weaksauce has quit [*.net *.split]
sphex has quit [*.net *.split]
lupine has quit [*.net *.split]
ebarrett has quit [*.net *.split]
moted has quit [*.net *.split]
j416 has quit [*.net *.split]
kiki_lamb has quit [*.net *.split]
Paradox has quit [*.net *.split]
mattp_ has quit [*.net *.split]
nullwarp has quit [*.net *.split]
jnormandeau has quit [*.net *.split]
sarlalian has quit [*.net *.split]
iooner has quit [*.net *.split]
kstuart has quit [*.net *.split]
pocketprotector has quit [*.net *.split]
martinbmadsen has quit [*.net *.split]
cbednarski has quit [*.net *.split]
prasselpikachu has quit [*.net *.split]
jsrn has quit [*.net *.split]
bttf has quit [*.net *.split]
andrewstewart has quit [*.net *.split]
bcavileer has quit [*.net *.split]
amitchellbullard has quit [*.net *.split]
maZtah has quit [*.net *.split]
twistedpixels has quit [*.net *.split]
kaspergrubbe has quit [*.net *.split]
kloeri has quit [*.net *.split]
RoryHughes has quit [*.net *.split]
teotwaki has quit [*.net *.split]
jaxxstorm has quit [*.net *.split]
hollywood has quit [*.net *.split]
ss_ss has quit [*.net *.split]
Guest66070 has quit [*.net *.split]
cschneid has quit [*.net *.split]
niko has quit [*.net *.split]
epochwolf has quit [*.net *.split]
kies^ has quit [*.net *.split]
drbrain has quit [*.net *.split]
rvchangue has quit [*.net *.split]
Seich has quit [*.net *.split]
jamo has quit [*.net *.split]
mduk has quit [*.net *.split]
JaTochNietDan has quit [*.net *.split]
chrisarcand has quit [*.net *.split]
Billias_ is now known as Billias
_df is now known as df
lupine_85 is now known as lupine
nullwarp_ is now known as nullwarp
teotwaki_ is now known as teotwaki
epochwolf|2 is now known as epochwolf
JaTochNietDan_ is now known as JaTochNietDan
rvchangu- is now known as rvchangue
ss_ss has joined #ruby
dross has quit [Ping timeout: 244 seconds]
drewdavis has joined #ruby
Guest36907 is now known as _ht
kloeri_ is now known as kloeri
PlasmaStar has joined #ruby
RoryHughes has joined #ruby
weaksauce has joined #ruby
george2 has joined #ruby
AdamMeghji has joined #ruby
blackmesa has joined #ruby
ckrailo has joined #ruby
martinbmadsen has joined #ruby
langland_ has quit [Ping timeout: 245 seconds]
johnhamelink has joined #ruby
peter_paule has joined #ruby
mistym has joined #ruby
Lucky__ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sphex_ is now known as sphec
sphec is now known as sphex
larissa has joined #ruby
j416 has joined #ruby
jnormandeau has joined #ruby
blackmes1 has joined #ruby
crdpink has joined #ruby
drbrain has joined #ruby
bttf has joined #ruby
Asher2 has joined #ruby
jtdowney_ has joined #ruby
_jesterfraud has joined #ruby
kartouch has joined #ruby
universa1 has joined #ruby
jidar has joined #ruby
SegFaultAX has joined #ruby
wookiehangover has joined #ruby
higuys has joined #ruby
Sembei has joined #ruby
torpig has joined #ruby
unclouded has joined #ruby
twistedpixels has joined #ruby
beneggett has joined #ruby
maZtah has joined #ruby
endash has quit [Quit: endash]
FernandoBasso has joined #ruby
senayar has joined #ruby
EllisTAA has quit [Quit: EllisTAA]
Derasi has joined #ruby
philtr_ has joined #ruby
davedev2_ has joined #ruby
Ariadeno has joined #ruby
andrewstewart has joined #ruby
claw_ has joined #ruby
meshugga1 has joined #ruby
chrisarcand has joined #ruby
Ariadeno is now known as Guest81882
Lucky_ has joined #ruby
ada2358_ has joined #ruby
opalraav1 has joined #ruby
cbednarski has joined #ruby
yfeldblum has joined #ruby
Deele has joined #ruby
jsrn_ has joined #ruby
cschneid has joined #ruby
Nightmare has joined #ruby
marienz has joined #ruby
pocketprotector has joined #ruby
waxjar has joined #ruby
jordanm has joined #ruby
jaxxstorm has joined #ruby
kstuart has joined #ruby
michaelreid has joined #ruby
niko has joined #ruby
Creede has joined #ruby
psmolen_ has joined #ruby
kies^ has joined #ruby
psy_ has joined #ruby
mattp_ has joined #ruby
sarlalian has joined #ruby
mduk has joined #ruby
krowv has joined #ruby
moted has joined #ruby
callumacrae has joined #ruby
unshadow_ has joined #ruby
Skelz0r_ has joined #ruby
badeball_ has joined #ruby
langlands has joined #ruby
charliesome has joined #ruby
ericmeds_ has joined #ruby
systemd0wn_ has joined #ruby
pocketprotector has quit [Max SendQ exceeded]
cschneid has quit [Max SendQ exceeded]
xsdg_ has joined #ruby
Rennex_ has joined #ruby
moloch has joined #ruby
pontiki has quit [Quit: <poit>]
atmosx_ has joined #ruby
cschneid has joined #ruby
rdema_ has joined #ruby
jordanm is now known as Guest81906
contradictioned_ has joined #ruby
dijikul has joined #ruby
Liam` has joined #ruby
Sypheren_ has joined #ruby
pocketprotector has joined #ruby
valeri_uF0 has joined #ruby
langland_ has joined #ruby
sash__ has joined #ruby
EvilJStoker_ has joined #ruby
EvilJStoker_ has joined #ruby
Kero_ has joined #ruby
magicien_ has joined #ruby
drager_ has joined #ruby
EllisTAA has joined #ruby
sivoais_ has joined #ruby
pabs_ is now known as pabs
constantinexvi_ has joined #ruby
shtirlic_ has joined #ruby
elaptics` has joined #ruby
rmoriz_ has joined #ruby
timonv has quit [Ping timeout: 250 seconds]
mcpierce` has joined #ruby
senayar has quit [Ping timeout: 264 seconds]
sjohnsen- has joined #ruby
bougyman_ has joined #ruby
tekmaster has joined #ruby
goezz has joined #ruby
leslie_ has joined #ruby
ElderFain- has joined #ruby
dbussink_ has joined #ruby
lapide_viridi has quit [Read error: Connection reset by peer]
cashnguns has joined #ruby
atomi_ has joined #ruby
funnel_ has joined #ruby
_Tristan-Speccy_ has joined #ruby
zack6849_ has joined #ruby
langlands has quit [Ping timeout: 255 seconds]
rbowlby has quit []
mjmac_ has joined #ruby
bcavileer has joined #ruby
djbender has joined #ruby
brb3_ has joined #ruby
bakednotfried_ has joined #ruby
skakri` has joined #ruby
shawnatyger has joined #ruby
moredhel- has joined #ruby
Armand has joined #ruby
amitchellbullard has joined #ruby
pusewicz_ has joined #ruby
Klumben has joined #ruby
Armand is now known as Guest60138
Hien_ has joined #ruby
russt_ has joined #ruby
chridal_ has joined #ruby
bougyman_ has quit [Changing host]
bougyman_ has joined #ruby
adambeynon_ has joined #ruby
Drakevr_ has joined #ruby
Evan- has joined #ruby
thiagovsk_ has joined #ruby
bryancp_ has joined #ruby
hellschreiber_ has joined #ruby
zzak_ has joined #ruby
fluchtreflex_ has joined #ruby
charles81_ has joined #ruby
dross has joined #ruby
bove has joined #ruby
c355E3B has joined #ruby
jasonmit has joined #ruby
segv_ has joined #ruby
dgutierrez1287 has joined #ruby
workmad3 has joined #ruby
skarn has joined #ruby
blackmesa has quit [*.net *.split]
AdamMeghji has quit [*.net *.split]
coderkevin has quit [*.net *.split]
troter___ has quit [*.net *.split]
chrisarc1nd has quit [*.net *.split]
centrx has quit [*.net *.split]
eggoez has quit [*.net *.split]
tekacs has quit [*.net *.split]
Evan_ has quit [*.net *.split]
ElderFain has quit [*.net *.split]
strmpnk has quit [*.net *.split]
lkba has quit [*.net *.split]
nahtnam has quit [*.net *.split]
micmus has quit [*.net *.split]
gambl0re has quit [*.net *.split]
systemd0wn has quit [*.net *.split]
Guest82383 has quit [*.net *.split]
benegget_ has quit [*.net *.split]
davedev24_ has quit [*.net *.split]
tvw has quit [*.net *.split]
pyon has quit [*.net *.split]
fluchtreflex has quit [*.net *.split]
unshadow has quit [*.net *.split]
Asher has quit [*.net *.split]
Apocalypse has quit [*.net *.split]
jesterfraud has quit [*.net *.split]
jtdowney has quit [*.net *.split]
chris2 has quit [*.net *.split]
mcpierce has quit [*.net *.split]
mrsolo has quit [*.net *.split]
soulcake has quit [*.net *.split]
thiagovsk has quit [*.net *.split]
JakFrist has quit [*.net *.split]
valeri_ufo has quit [*.net *.split]
Pisuke has quit [*.net *.split]
i8igmac has quit [*.net *.split]
sivoais has quit [*.net *.split]
atomi has quit [*.net *.split]
ericmeds has quit [*.net *.split]
constantinexvi has quit [*.net *.split]
moshee has quit [*.net *.split]
claw has quit [*.net *.split]
Caius has quit [*.net *.split]
Sypheren has quit [*.net *.split]
opalraava has quit [*.net *.split]
leslie has quit [*.net *.split]
funnel has quit [*.net *.split]
dbussink has quit [*.net *.split]
Skelz0r has quit [*.net *.split]
zack6849 has quit [*.net *.split]
jenksy has quit [*.net *.split]
yxhuvud has quit [*.net *.split]
pskosinski has quit [*.net *.split]
machty has quit [*.net *.split]
zzak has quit [*.net *.split]
_chs_ has quit [*.net *.split]
hoey has quit [*.net *.split]
bakednotfried has quit [*.net *.split]
Lloyd has quit [*.net *.split]
countryHick has quit [*.net *.split]
brb3 has quit [*.net *.split]
prosodyContext has quit [*.net *.split]
daxroc has quit [*.net *.split]
mjc_ has quit [*.net *.split]
yo61 has quit [*.net *.split]
shelling__ has quit [*.net *.split]
neektza has quit [*.net *.split]
ggherdov has quit [*.net *.split]
neersighted has quit [*.net *.split]
krainboltgreene has quit [*.net *.split]
pmarreck has quit [*.net *.split]
cbetta has quit [*.net *.split]
glowcoil has quit [*.net *.split]
petems has quit [*.net *.split]
charles81 has quit [*.net *.split]
bryancp has quit [*.net *.split]
n1ftyn8 has quit [*.net *.split]
PhilK has quit [*.net *.split]
adambeynon has quit [*.net *.split]
hellschreiber has quit [*.net *.split]
featheryahn_ has quit [*.net *.split]
mroth has quit [*.net *.split]
pusewicz has quit [*.net *.split]
sash_ has quit [*.net *.split]
bougyman has quit [*.net *.split]
shawnacscott has quit [*.net *.split]
badeball has quit [*.net *.split]
moredhel has quit [*.net *.split]
rdema has quit [*.net *.split]
atmosx has quit [*.net *.split]
elaptics has quit [*.net *.split]
chridal has quit [*.net *.split]
Hien has quit [*.net *.split]
coffeeju1 has quit [*.net *.split]
shevy has quit [*.net *.split]
Kero has quit [*.net *.split]
russt has quit [*.net *.split]
Rennex has quit [*.net *.split]
ada2358 has quit [*.net *.split]
shtirlic has quit [*.net *.split]
rmoriz has quit [*.net *.split]
sparr has quit [*.net *.split]
EvilJStoker has quit [*.net *.split]
zly has quit [*.net *.split]
low-profile has quit [*.net *.split]
oddmunds has quit [*.net *.split]
asi_ has quit [*.net *.split]
magicien has quit [*.net *.split]
jtperreault has quit [*.net *.split]
hplar has quit [*.net *.split]
skakri has quit [*.net *.split]
Drakevr has quit [*.net *.split]
meshugga has quit [*.net *.split]
atom3 has quit [*.net *.split]
Tristan-Speccy has quit [*.net *.split]
_jasonmit has quit [*.net *.split]
drager has quit [*.net *.split]
xsdg has quit [*.net *.split]
philtr has quit [*.net *.split]
sjohnsen has quit [*.net *.split]
segv has quit [*.net *.split]
contradictioned has quit [*.net *.split]
rj-code has quit [*.net *.split]
ElderFain- is now known as ElderFain
segv_ is now known as segv
EvilJStoker_ is now known as EvilJStoker
ericmeds_ is now known as ericmeds
valeri_uF0 is now known as valeri_ufo
funnel_ is now known as funnel
Asher2 has quit [Quit: Leaving.]
ElderFain has quit [Changing host]
ElderFain has joined #ruby
thiagovsk_ is now known as thiagovsk
hplar has joined #ruby
zzak_ is now known as zzak
yxhuvud has joined #ruby
niko has quit [Ping timeout: 606 seconds]
coffeeju1 has joined #ruby
bryancp_ is now known as bryancp
micmus has joined #ruby
zets has joined #ruby
Matthews_ has joined #ruby
dopie has joined #ruby
jtperreault has joined #ruby
Igorshp has joined #ruby
riceandbeans has quit [Quit: Page closed]
last_staff has joined #ruby
spectra has joined #ruby
marens_ has joined #ruby
workmad3 has quit [Ping timeout: 250 seconds]
atom3 has joined #ruby
Caius has joined #ruby
soulcake has joined #ruby
rj-code has joined #ruby
rtl_ has joined #ruby
Caius has quit [Changing host]
Caius has joined #ruby
soulcake has quit [Changing host]
soulcake has joined #ruby
mbeasley has joined #ruby
blenny_ has joined #ruby
chris2 has joined #ruby
Affix-Phobos has joined #ruby
low-profile has joined #ruby
bigmac_ has joined #ruby
daed has quit [Ping timeout: 255 seconds]
ghormoon has quit [Ping timeout: 255 seconds]
Affix has quit [Ping timeout: 255 seconds]
rhg135 has quit [Ping timeout: 255 seconds]
spectra- has quit [Ping timeout: 255 seconds]
blenny has quit [Ping timeout: 255 seconds]
ujjain has quit [Ping timeout: 255 seconds]
julieeharshaw has quit [Ping timeout: 255 seconds]
Coraline has quit [Ping timeout: 255 seconds]
rtl has quit [Ping timeout: 255 seconds]
rippa has quit [Ping timeout: 255 seconds]
kenichi has quit [Ping timeout: 255 seconds]
cvtsx has quit [Ping timeout: 255 seconds]
Silex has quit [Ping timeout: 255 seconds]
undeadaedra has quit [Ping timeout: 255 seconds]
kenichi_ has joined #ruby
zlude has quit [Ping timeout: 255 seconds]
sn0wb1rd has quit [Ping timeout: 255 seconds]
ghormoon_ has joined #ruby
lkba has joined #ruby
cvtsx has joined #ruby
smooth_penguin has joined #ruby
yeltzooo9 has quit [Excess Flood]
Coraline has joined #ruby
badeball has joined #ruby
araujo has quit [Ping timeout: 255 seconds]
tskogberg has quit [Ping timeout: 255 seconds]
nitrix has quit [Ping timeout: 255 seconds]
navs__ has joined #ruby
EllisTAA has quit [Quit: EllisTAA]
Affix-Phobos is now known as Affix
nnnn has joined #ruby
raddazong has joined #ruby
devyn_ has joined #ruby
Hamled|Erp has joined #ruby
pyon has joined #ruby
oddmunds1 has joined #ruby
c-c_ has joined #ruby
ducklobster has quit [Ping timeout: 255 seconds]
ght has quit [Ping timeout: 255 seconds]
Someguy123 has quit [Ping timeout: 255 seconds]
Pumpkin-_ has quit [Ping timeout: 255 seconds]
suffice_ has joined #ruby
sphex_ has joined #ruby
Matthews_ has quit [Ping timeout: 246 seconds]
Affix is now known as Guest14837
kloeri_ has joined #ruby
n008f4g__ has joined #ruby
exceion_ has joined #ruby
subtwo has joined #ruby
ujjain has joined #ruby
ujjain has quit [Changing host]
ujjain has joined #ruby
tskogberg has joined #ruby
sn0wb1rd has joined #ruby
dostoyev1ky has joined #ruby
freeze_ has joined #ruby
adaedra has joined #ruby
niko has joined #ruby
bigmac_ has quit [Ping timeout: 255 seconds]
dfoolz has quit [Ping timeout: 255 seconds]
akhkharu has quit [Ping timeout: 255 seconds]
rhg135 has joined #ruby
julieeharshaw has joined #ruby
ght has joined #ruby
Pumpkin- has joined #ruby
Silex has joined #ruby
nickjj has quit [Ping timeout: 255 seconds]
featheryahn_ has joined #ruby
datanoise has quit [Ping timeout: 272 seconds]
n1ftyn8 has joined #ruby
kappy has quit [Remote host closed the connection]
dfoolz has joined #ruby
zlude has joined #ruby
Adran has quit [Quit: Este é o fim.]
Someguy123 has joined #ruby
pskosinski has joined #ruby
glowcoil has joined #ruby
_chs_ has joined #ruby
[spoiler] has joined #ruby
daxroc has joined #ruby
strmpnk has joined #ruby
_chs_ is now known as Guest93067
brainslug has joined #ruby
MyMind has joined #ruby
_ht has quit [Quit: Konversation terminated!]
Azure|dc has joined #ruby
DANtheBE- has joined #ruby
constantinexvi has joined #ruby
bougyman has joined #ruby
bougyman has joined #ruby
jinie_ has joined #ruby
hyperdrive has joined #ruby
langland_ has quit [Ping timeout: 256 seconds]
Olipro_ has joined #ruby
Log1x_ has joined #ruby
michaeldeol has joined #ruby
michaeldeol has quit [Client Quit]
malconis has joined #ruby
thejoecarroll has joined #ruby
gr33n7007h has joined #ruby
cbetta has joined #ruby
ged_ has joined #ruby
petems has joined #ruby
PhilK has joined #ruby
bartj3_ has joined #ruby
skarn has quit [*.net *.split]
c355E3B has quit [*.net *.split]
bove has quit [*.net *.split]
charles81_ has quit [*.net *.split]
jasonmit has quit [*.net *.split]
adambeynon_ has quit [*.net *.split]
Klumben has quit [*.net *.split]
hellschreiber_ has quit [*.net *.split]
Hien_ has quit [*.net *.split]
amitchellbullard has quit [*.net *.split]
pusewicz_ has quit [*.net *.split]
brb3_ has quit [*.net *.split]
djbender has quit [*.net *.split]
bcavileer has quit [*.net *.split]
mjmac_ has quit [*.net *.split]
cashnguns has quit [*.net *.split]
dbussink_ has quit [*.net *.split]
goezz has quit [*.net *.split]
leslie_ has quit [*.net *.split]
bougyman_ has quit [*.net *.split]
constantinexvi_ has quit [*.net *.split]
rmoriz_ has quit [*.net *.split]
shtirlic_ has quit [*.net *.split]
cschneid has quit [*.net *.split]
atmosx_ has quit [*.net *.split]
moloch has quit [*.net *.split]
charliesome has quit [*.net *.split]
badeball_ has quit [*.net *.split]
cbednarski has quit [*.net *.split]
opalraav1 has quit [*.net *.split]
andrewstewart has quit [*.net *.split]
Derasi has quit [*.net *.split]
davedev2_ has quit [*.net *.split]
twistedpixels has quit [*.net *.split]
maZtah has quit [*.net *.split]
wookiehangover has quit [*.net *.split]
_jesterfraud has quit [*.net *.split]
SegFaultAX has quit [*.net *.split]
bttf has quit [*.net *.split]
crdpink has quit [*.net *.split]
ckrailo has quit [*.net *.split]
weaksauce has quit [*.net *.split]
cjk101010_ has quit [*.net *.split]
firevolt has quit [*.net *.split]
sphex has quit [*.net *.split]
kloeri has quit [*.net *.split]
chrisseaton has quit [*.net *.split]
omegahm has quit [*.net *.split]
jmhmccr has quit [*.net *.split]
pjaspers_ has quit [*.net *.split]
hdrv has quit [*.net *.split]
fredsir_ has quit [*.net *.split]
t-richards has quit [*.net *.split]
tobiasvl has quit [*.net *.split]
culturelabs has quit [*.net *.split]
cek has quit [*.net *.split]
harleypig has quit [*.net *.split]
MatthewsFace has quit [*.net *.split]
autrilla has quit [*.net *.split]
Iskarlar has quit [*.net *.split]
yardenbar has quit [*.net *.split]
n008f4g_ has quit [*.net *.split]
TinkerTyper has quit [*.net *.split]
havenwood has quit [*.net *.split]
braincra- has quit [*.net *.split]
cj has quit [*.net *.split]
lala has quit [*.net *.split]
Thr3d has quit [*.net *.split]
code_ has quit [*.net *.split]
x0f has quit [*.net *.split]
Prawnzy has quit [*.net *.split]
devyn has quit [*.net *.split]
bjornar has quit [*.net *.split]
c0ncealed has quit [*.net *.split]
jack_rabbit has quit [*.net *.split]
bihi has quit [*.net *.split]
GarethAdams has quit [*.net *.split]
AnoHito_ has quit [*.net *.split]
KrzaQ has quit [*.net *.split]
Silent__ has quit [*.net *.split]
joaomdmoura has quit [*.net *.split]
ZYPP has quit [*.net *.split]
Zimsky_ has quit [*.net *.split]
jinie has quit [*.net *.split]
Log1x has quit [*.net *.split]
hal_9000 has quit [*.net *.split]
suffice has quit [*.net *.split]
Cybergeek has quit [*.net *.split]
im0b has quit [*.net *.split]
PierreRambaud has quit [*.net *.split]
bartj3 has quit [*.net *.split]
ratazzi has quit [*.net *.split]
pcfreak30 has quit [*.net *.split]
Zarthus has quit [*.net *.split]
jmcc has quit [*.net *.split]
frankS2 has quit [*.net *.split]
dmoe has quit [*.net *.split]
rflot has quit [*.net *.split]
whoojemaflip has quit [*.net *.split]
cardoni has quit [*.net *.split]
HashNuke has quit [*.net *.split]
knowtheory has quit [*.net *.split]
[diecast] has quit [*.net *.split]
jpinnix______ has quit [*.net *.split]
rfv has quit [*.net *.split]
manveru has quit [*.net *.split]
zrl has quit [*.net *.split]
deimos has quit [*.net *.split]
pizzaops has quit [*.net *.split]
alxndr has quit [*.net *.split]
bjeanes has quit [*.net *.split]
jeregrine has quit [*.net *.split]
sirecote has quit [*.net *.split]
dostoyevsky has quit [*.net *.split]
dwn has quit [*.net *.split]
Olipro has quit [*.net *.split]
artmann has quit [*.net *.split]
sorah has quit [*.net *.split]
MuffinPimp has quit [*.net *.split]
hoelzro has quit [*.net *.split]
alakra has quit [*.net *.split]
joast has quit [*.net *.split]
Hamled has quit [*.net *.split]
CHVNX has quit [*.net *.split]
v0n has quit [*.net *.split]
danoo_ has quit [*.net *.split]
Scient has quit [*.net *.split]
freeze has quit [*.net *.split]
Miron has quit [*.net *.split]
cgrieger^away has quit [*.net *.split]
DANtheBEASTman has quit [*.net *.split]
marens has quit [*.net *.split]
Diabolik has quit [*.net *.split]
ekem has quit [*.net *.split]
exceion has quit [*.net *.split]
MissionCritical has quit [*.net *.split]
Bish has quit [*.net *.split]
Kilo`byte has quit [*.net *.split]
thejoecarroll_ has quit [*.net *.split]
smooth_p1nguin has quit [*.net *.split]
madhatter has quit [*.net *.split]
navs_ has quit [*.net *.split]
c-c has quit [*.net *.split]
neektza has joined #ruby
perrier__ has joined #ruby
hyperdrive has quit [Changing host]
hyperdrive has joined #ruby
KrzaQ has joined #ruby
hyperdrive is now known as hdrv
Olipro_ is now known as Olipro
nahtnam has joined #ruby
dopie has quit [Quit: This computer has gone to sleep]
pjaspers has joined #ruby
rafaelsales has joined #ruby
jasonmit has joined #ruby
krzkrz has joined #ruby
javawizard has joined #ruby
hfp_ has joined #ruby
Igorshp has quit [Remote host closed the connection]
code_ has joined #ruby
peteyg has joined #ruby
smooth_p1nguin has joined #ruby
crdpink has joined #ruby
ejnahc_ has joined #ruby
TinkerTyper has joined #ruby
papercod1 has joined #ruby
premera has quit [Remote host closed the connection]
Igorshp has joined #ruby
Casty has joined #ruby
f209 has joined #ruby
freeze_ is now known as freeze
cout_ has joined #ruby
ndrei has joined #ruby
superspring has joined #ruby
hachiya_ has joined #ruby
AnoHito_ has joined #ruby
brandon_ has joined #ruby
sts_ has joined #ruby
omegahm has joined #ruby
Guest45313 has joined #ruby
Zarthus has joined #ruby
mosez_ has joined #ruby
exceion has joined #ruby
x0f has joined #ruby
_jesterfraud has joined #ruby
kloeri has joined #ruby
perrier_ has quit [Ping timeout: 244 seconds]
Azure has quit [Read error: Connection reset by peer]
peteyg_ has quit [Ping timeout: 244 seconds]
aryaching has quit [Ping timeout: 244 seconds]
csmb_ has quit [Ping timeout: 244 seconds]
LiquidInsect has quit [Ping timeout: 244 seconds]
maxmanders has quit [Ping timeout: 244 seconds]
ejnahc has quit [Ping timeout: 244 seconds]
camt has quit [Ping timeout: 244 seconds]
al2o3-cr has quit [Remote host closed the connection]
hfp has quit [Ping timeout: 244 seconds]
bosma has quit [Ping timeout: 244 seconds]
cats has quit [Ping timeout: 244 seconds]
Synthead has quit [Ping timeout: 244 seconds]
JimmyNeutron has quit [Ping timeout: 244 seconds]
Rixius has quit [Ping timeout: 244 seconds]
SebastianThorn has quit [Ping timeout: 244 seconds]
jriese has quit [Ping timeout: 244 seconds]
papercode has quit [Ping timeout: 244 seconds]
redondos has quit [Ping timeout: 244 seconds]
cout has quit [Ping timeout: 244 seconds]
Jello_Raptor has quit [Ping timeout: 244 seconds]
cherwin has quit [Ping timeout: 244 seconds]
exceion_ has quit [Ping timeout: 244 seconds]
smooth_penguin has quit [Ping timeout: 244 seconds]
Sembei has quit [Ping timeout: 244 seconds]
jcp has quit [Ping timeout: 244 seconds]
yorickpeterse has quit [Ping timeout: 244 seconds]
krz has quit [Ping timeout: 244 seconds]
Zackio has quit [Ping timeout: 244 seconds]
super has quit [Ping timeout: 244 seconds]
Guest45180 has quit [Ping timeout: 244 seconds]
Sthebig has quit [Ping timeout: 244 seconds]
nomadic has quit [Ping timeout: 244 seconds]
Rager has quit [Ping timeout: 244 seconds]
hachiya has quit [Ping timeout: 244 seconds]
superspring_ has quit [Ping timeout: 244 seconds]
Guest62664 has quit [Ping timeout: 244 seconds]
sente has quit [Ping timeout: 244 seconds]
dhruvasagar has quit [Ping timeout: 244 seconds]
unshadow_ has quit [Ping timeout: 244 seconds]
ndrei_ has quit [Ping timeout: 244 seconds]
mosez has quit [Ping timeout: 244 seconds]
kirun has quit [Ping timeout: 244 seconds]
ged has quit [Ping timeout: 244 seconds]
sente has joined #ruby
tchebb has quit [Ping timeout: 244 seconds]
Senjai has quit [Ping timeout: 244 seconds]
TDJACR_ has quit [Ping timeout: 244 seconds]
apeiros has quit [Ping timeout: 244 seconds]
kitallis has quit [Ping timeout: 244 seconds]
nnnn has quit [Ping timeout: 244 seconds]
skakri` has quit [Ping timeout: 244 seconds]
f2099 has quit [Ping timeout: 244 seconds]
fumduq has quit [Ping timeout: 244 seconds]
bradland has quit [Ping timeout: 244 seconds]
subtwo has quit [Read error: Connection reset by peer]
last_staff has quit [Ping timeout: 244 seconds]
serivichi has quit [Ping timeout: 244 seconds]
Guest24987 has quit [Ping timeout: 244 seconds]
daed has joined #ruby
hfp_ is now known as hfp
duper` has joined #ruby
aryaching_ has joined #ruby
bradland has joined #ruby
sts_ is now known as Guest36007
JimmyNeutron has joined #ruby
nickjj has joined #ruby
tchebb_ has joined #ruby
aryaching_ is now known as aryaching
kitallis has joined #ruby
Synthead has joined #ruby
tchebb_ is now known as tchebb
jriese has joined #ruby
fumduq has joined #ruby
qubits has quit [Ping timeout: 255 seconds]
csmb has joined #ruby
roolo has quit [Remote host closed the connection]
cherwin has joined #ruby
Drakevr_ has quit [Ping timeout: 244 seconds]
Skelz0r_ has quit [Ping timeout: 244 seconds]
ruisantos has quit [Ping timeout: 244 seconds]
maxmanders has joined #ruby
nomadic has joined #ruby
MuffinPimp has joined #ruby
Sthebig has joined #ruby
yorickpeterse has joined #ruby
Drakevr has joined #ruby
redondos has joined #ruby
redondos has quit [Changing host]
redondos has joined #ruby
Zackio has joined #ruby
Rixius has joined #ruby
cats has joined #ruby
apeiros has joined #ruby
towski_ has quit [Remote host closed the connection]
Drakevr has quit [Changing host]
Drakevr has joined #ruby
Jello_Raptor has joined #ruby
TDJACR has joined #ruby
mroth has joined #ruby
rafaelsales has quit [Ping timeout: 256 seconds]
Igorshp has quit [Ping timeout: 256 seconds]
rafaelsales has joined #ruby
bosma has joined #ruby
Guest60848 has joined #ruby
dhruvasagar has joined #ruby
troter___ has joined #ruby
LiquidInsect has joined #ruby
camt has joined #ruby
kloeri_ has quit [Ping timeout: 610 seconds]
bihi has joined #ruby
dwn has joined #ruby
dwn has joined #ruby
jtdoncas has quit [Ping timeout: 272 seconds]
SebastianThorn has joined #ruby
ruisantos has joined #ruby
shelling__ has joined #ruby
Lloyd has joined #ruby
unshadow has joined #ruby
workmad3 has joined #ruby
Yzguy has quit [Quit: I'm sleeping, go away.]
dostoyev1ky is now known as dostoyevsky
AdamMeghji has joined #ruby
Skelz0r has joined #ruby
yo61 has joined #ruby
Miron has joined #ruby
opalraava has joined #ruby
felixjet_ has joined #ruby
machty has joined #ruby
sivoais_ is now known as sivoais
olistik_ has joined #ruby
sivoais has quit [Changing host]
sivoais has joined #ruby
cj has joined #ruby
leslie has joined #ruby
leslie has joined #ruby
Sypheren has joined #ruby
shtirlic has joined #ruby
sinkensabe has joined #ruby
coderkevin has joined #ruby
hoey has joined #ruby
mrsolo has joined #ruby
rmoriz has joined #ruby
knu0 has joined #ruby
krainboltgreene has joined #ruby
KrzaQ has quit [Disconnected by services]
bruno-_ has joined #ruby
neersighted has joined #ruby
Asher has joined #ruby
KrzaQ has joined #ruby
workmad3 has quit [Ping timeout: 256 seconds]
asi_ has joined #ruby
jxie_ has joined #ruby
tvl has joined #ruby
tvl is now known as tobiasvl
ex0ns_ has joined #ruby
Mohan has joined #ruby
okdas has joined #ruby
okdas has joined #ruby
jcp has joined #ruby
dbussink has joined #ruby
edwinvdgraaf has joined #ruby
nikky3 has joined #ruby
pingveno_ has joined #ruby
allomov_ has joined #ruby
zly has joined #ruby
Mohan is now known as Guest15686
spider-mario_ has joined #ruby
Sebastia1Thorn has joined #ruby
mosez has joined #ruby
starfox_1f has joined #ruby
olistik has quit [Read error: Connection reset by peer]
Sypheren_ has quit [Ping timeout: 264 seconds]
hypnosb has quit [Ping timeout: 264 seconds]
knu has quit [Ping timeout: 264 seconds]
csaunders has quit [Ping timeout: 264 seconds]
SirFunk has quit [Ping timeout: 264 seconds]
haroldwu_ has joined #ruby
eregon_ has joined #ruby
ahuman_ has joined #ruby
sts__ has joined #ruby
artmann has joined #ruby
cina has joined #ruby
brandon__ has joined #ruby
braincrash has joined #ruby
bakednotfried has joined #ruby
spider-mario has quit [Disconnected by services]
ukd1_ has joined #ruby
spider-mario_ is now known as spider-mario
FastJack_ has joined #ruby
fluchtreflex has joined #ruby
fluchtreflex has quit [Changing host]
fluchtreflex has joined #ruby
m4rCsi has joined #ruby
maxmanders_ has joined #ruby
Diabolik has joined #ruby
ezra_ has joined #ruby
jeaye_ has joined #ruby
Zimsky_ has joined #ruby
stoked has joined #ruby
stoked has joined #ruby
M-Techni1 has joined #ruby
Jackneill has quit [Remote host closed the connection]
rikai_ has joined #ruby
uber_ has joined #ruby
freedrul1 has joined #ruby
adamski2600 has joined #ruby
lordkryss has joined #ruby
tommylom1ykins has joined #ruby
hoelzro has joined #ruby
wildroman3 has joined #ruby
Mellett68_ has joined #ruby
awer_ has joined #ruby
yoongkan_ has joined #ruby
gnarf_ has joined #ruby
robustus|Off has joined #ruby
swgillespie has joined #ruby
JoPhantom has joined #ruby
scpike_ has joined #ruby
n008f4g_ has joined #ruby
stnly_ has joined #ruby
Beoran_ has joined #ruby
zonetti_ has joined #ruby
Hien has joined #ruby
ndrei_ has joined #ruby
skarn has joined #ruby
pingveno has quit [Ping timeout: 264 seconds]
ggherdov has joined #ruby
KillerFox has quit [Ping timeout: 264 seconds]
PaulePanter has quit [Ping timeout: 264 seconds]
Mohan_ has quit [Ping timeout: 264 seconds]
musty has quit [Ping timeout: 264 seconds]
zonetti has quit [Ping timeout: 264 seconds]
SebastianThorn has quit [Ping timeout: 264 seconds]
maxmanders has quit [Ping timeout: 264 seconds]
nickjj has quit [Ping timeout: 264 seconds]
mosez_ has quit [Ping timeout: 264 seconds]
Guest36007 has quit [Ping timeout: 264 seconds]
fluchtreflex_ has quit [Ping timeout: 264 seconds]
Guest60138 has quit [Ping timeout: 264 seconds]
jeaye has quit [Ping timeout: 264 seconds]
allomov has quit [Ping timeout: 264 seconds]
okdas_ has quit [Ping timeout: 264 seconds]
starfox_sf has quit [Ping timeout: 264 seconds]
uber has quit [Ping timeout: 264 seconds]
felixjet has quit [Ping timeout: 264 seconds]
sonOfRa has quit [Ping timeout: 264 seconds]
nifoc has quit [Ping timeout: 264 seconds]
ex0ns has quit [Ping timeout: 264 seconds]
nizmow_ has quit [Ping timeout: 264 seconds]
rikai has quit [Ping timeout: 264 seconds]
kq_away has quit [Ping timeout: 264 seconds]
eregon has quit [Ping timeout: 264 seconds]
inukshuk has quit [Ping timeout: 264 seconds]
DylanJ has quit [Ping timeout: 264 seconds]
lguardiola has quit [Ping timeout: 264 seconds]
gnarf has quit [Ping timeout: 264 seconds]
dwn has quit [Ping timeout: 264 seconds]
brandon_ has quit [Ping timeout: 264 seconds]
javawizard has quit [Ping timeout: 264 seconds]
Silex has quit [Ping timeout: 264 seconds]
xsdg_ has quit [Ping timeout: 264 seconds]
benlieb has quit [Ping timeout: 264 seconds]
Beoran has quit [Ping timeout: 264 seconds]
FastJack has quit [Ping timeout: 264 seconds]
brixen has quit [Ping timeout: 264 seconds]
xybre has quit [Ping timeout: 264 seconds]
ukd1 has quit [Ping timeout: 264 seconds]
ahuman has quit [Ping timeout: 264 seconds]
alexblom has quit [Ping timeout: 264 seconds]
kiki_lam1 has quit [Remote host closed the connection]
bakednotfried_ has quit [Ping timeout: 264 seconds]
drager_ has quit [Ping timeout: 264 seconds]
cina_ has quit [Ping timeout: 264 seconds]
yoongkang has quit [Ping timeout: 264 seconds]
iamayam has quit [Ping timeout: 264 seconds]
_5moufl has quit [Ping timeout: 264 seconds]
CaptainCibai has quit [Ping timeout: 264 seconds]
ezra has quit [Ping timeout: 264 seconds]
forgot has quit [Ping timeout: 264 seconds]
edwinvdg_ has quit [Ping timeout: 264 seconds]
bruno- has quit [Ping timeout: 264 seconds]
pl1ght has quit [Ping timeout: 264 seconds]
edwardly has quit [Ping timeout: 264 seconds]
tbuehlmann has quit [Ping timeout: 264 seconds]
erichmenge has quit [Ping timeout: 264 seconds]
xMopxShell has quit [Ping timeout: 264 seconds]
sideshowcoder has quit [Ping timeout: 264 seconds]
bashusr has quit [Ping timeout: 264 seconds]
M-Technic has quit [Ping timeout: 264 seconds]
scpike has quit [Ping timeout: 264 seconds]
freedrull has quit [Ping timeout: 264 seconds]
lady3bean has quit [Ping timeout: 264 seconds]
skyrocker1 has quit [Ping timeout: 264 seconds]
awer has quit [Ping timeout: 264 seconds]
robustus has quit [Ping timeout: 264 seconds]
stonith has quit [Ping timeout: 264 seconds]
Kovensky has quit [Ping timeout: 264 seconds]
haroldwu has quit [Ping timeout: 264 seconds]
m4rCsi_ has quit [Ping timeout: 264 seconds]
tommylommykins has quit [Ping timeout: 264 seconds]
[ace] has quit [Ping timeout: 264 seconds]
dfedde has quit [Ping timeout: 264 seconds]
Takumo has quit [Ping timeout: 264 seconds]
benatkin has quit [Ping timeout: 264 seconds]
wlanboy has quit [Ping timeout: 264 seconds]
wasamasa has quit [Ping timeout: 264 seconds]
ggherdov has quit [Ping timeout: 264 seconds]
n008f4g__ has quit [Ping timeout: 264 seconds]
wildroman2 has quit [Ping timeout: 264 seconds]
thalassa has quit [Ping timeout: 264 seconds]
ndrei has quit [Ping timeout: 264 seconds]
Zarthus has quit [Ping timeout: 264 seconds]
\13k has quit [Ping timeout: 264 seconds]
stnly has quit [Remote host closed the connection]
robustus|Off is now known as robustus
hypnosb has joined #ruby
sparr has joined #ruby
zonetti_ is now known as zonetti
\13k_ has joined #ruby
alexblom has joined #ruby
nifoc has joined #ruby
lguardiola has joined #ruby
Kovensky has joined #ruby
mayamai has joined #ruby
Aryasam has quit [Quit: Bye]
xybre has joined #ruby
tbuehlmann has joined #ruby
csaunders has joined #ruby
Blue_Ice has quit [Remote host closed the connection]
PaulePanter has joined #ruby
sideshowcoder has joined #ruby
SirFunk has joined #ruby
lady3bean has joined #ruby
DylanJ has joined #ruby
mayamai is now known as iamayam
kiki_lamb has joined #ruby
nizmow has joined #ruby
dfedde has joined #ruby
Blue_Ice has joined #ruby
Blue_Ice has quit [Changing host]
Blue_Ice has joined #ruby
kq_away has joined #ruby
musty has joined #ruby
KillerFox has joined #ruby
marr123 is now known as marr
erichmenge has joined #ruby
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
drager has joined #ruby
mame2 has quit [Ping timeout: 264 seconds]
edwardly has joined #ruby
edwardly has quit [Changing host]
edwardly has joined #ruby
skyrocker has joined #ruby
Apocalypse has joined #ruby
sonOfRa has joined #ruby
f209 has left #ruby [#ruby]
Tamae has joined #ruby
inukshuk has joined #ruby
Zarthus has joined #ruby
mame2 has joined #ruby
wildroman3 has quit [Remote host closed the connection]
_5moufl has joined #ruby
terrellt has joined #ruby
xMopxShell has joined #ruby
Apocalypse is now known as Guest84485
niko has quit [Ping timeout: 627 seconds]
nnnn has joined #ruby
tbuehlmann has quit [Changing host]
tbuehlmann has joined #ruby
Silex has joined #ruby
xsdg has joined #ruby
CaptainCibai has joined #ruby
pl1ght has joined #ruby
bashusr has joined #ruby
wasamasa has joined #ruby
Guest81906 has quit [Quit: Konversation terminated!]
wasamasa has joined #ruby
wasamasa has quit [Changing host]
Klumben has joined #ruby
adamski2600 has quit [Ping timeout: 246 seconds]
wlanboy has joined #ruby
Guest81906 has joined #ruby
segfalt has joined #ruby
benlieb has joined #ruby
Takumo has joined #ruby
Takumo has quit [Changing host]
Takumo has joined #ruby
Guest81906 has quit [Client Quit]
forgot has joined #ruby
benatkin has joined #ruby
Adran- has joined #ruby
brixen has joined #ruby
Bish has joined #ruby
mhib has quit [Remote host closed the connection]
[ace] has joined #ruby
Scient has joined #ruby
cjk101010 has joined #ruby
niko has joined #ruby
queequeg2 has joined #ruby
micmus has quit [Quit: Leaving]
Adran- has quit [Changing host]
Adran- has joined #ruby
jso- has joined #ruby
Karunamon|2 has joined #ruby
Adran- is now known as Adran
rx has joined #ruby
Davey_ has joined #ruby
sinkensabe has quit [Remote host closed the connection]
Guest45313 has quit [Changing host]
Guest45313 has joined #ruby
Xeago has quit [Remote host closed the connection]
Guest45313 is now known as nitrix
prosodyContext has joined #ruby
Zamerick__ has joined #ruby
FifthWall_ has joined #ruby
shreknet has joined #ruby
robustus|Off has joined #ruby
gambl0re has joined #ruby
soulcake has quit [Ping timeout: 277 seconds]
ggherdov has joined #ruby
slackbotgz1 has joined #ruby
soulcake has joined #ruby
soulcake has quit [Changing host]
soulcake has joined #ruby
nnnn has quit [Quit: leaving]
_fumk has joined #ruby
swistak35_ has joined #ruby
sweeper_ has joined #ruby
quazimod1 has joined #ruby
verto_ has joined #ruby
joevandy1 has joined #ruby
godemperor has joined #ruby
sevvie_ has joined #ruby
peterhu_ has joined #ruby
Stany has quit [Ping timeout: 255 seconds]
queequeg1 has quit [Ping timeout: 255 seconds]
clamstar has quit [Ping timeout: 255 seconds]
Davey has quit [Ping timeout: 255 seconds]
Davey_ is now known as Davey
rx is now known as clamstar
jso has quit [Ping timeout: 255 seconds]
Karunamon has quit [Ping timeout: 255 seconds]
cashnguns has joined #ruby
eggoez has joined #ruby
gr33n7007h is now known as al2o3-cr
Doc_IX has joined #ruby
matp has joined #ruby
robustus has quit [Ping timeout: 255 seconds]
robustus|Off is now known as robustus
Urocyon has joined #ruby
Sp4rKy_ has joined #ruby
Alayde_ has joined #ruby
acovrig has joined #ruby
krzkrz has quit [Quit: WeeChat 1.0.1]
blowmage` has joined #ruby
djbkd_ has joined #ruby
pipework has joined #ruby
Rennex has joined #ruby
aredridel has joined #ruby
stryek_ has joined #ruby
Paradox has joined #ruby
Kamilion|ZNC has joined #ruby
jamo has joined #ruby
imajes_ has joined #ruby
Gnubie__ has joined #ruby
Esya- has joined #ruby
hasB4K_ has joined #ruby
bhaak_ has joined #ruby
numberte1 has joined #ruby
jidar_ has joined #ruby
loop3r_ has joined #ruby
davedev24_ has joined #ruby
jsaak_ has joined #ruby
three18t- has joined #ruby
darithorn has quit [Read error: Connection reset by peer]
bkutil__ has joined #ruby
allomov_ has quit [Remote host closed the connection]
phreakocious_ has joined #ruby
Zamerick_ has quit [Ping timeout: 255 seconds]
higuys has quit [Ping timeout: 255 seconds]
swistak35 has quit [Ping timeout: 255 seconds]
FifthWall has quit [Ping timeout: 255 seconds]
avalarion has quit [Ping timeout: 255 seconds]
slackbotgz has quit [Ping timeout: 255 seconds]
matp_ has quit [Ping timeout: 255 seconds]
verto has quit [Ping timeout: 255 seconds]
fumk has quit [Ping timeout: 255 seconds]
Kamilion has quit [Ping timeout: 255 seconds]
Doc_X has quit [Ping timeout: 255 seconds]
sevvie has quit [Ping timeout: 255 seconds]
quazimodo has quit [Ping timeout: 255 seconds]
sweeper has quit [Ping timeout: 255 seconds]
sfiggins has quit [Ping timeout: 255 seconds]
blowmage has quit [Ping timeout: 255 seconds]
joevandyk has quit [Ping timeout: 255 seconds]
peterhu has quit [Ping timeout: 255 seconds]
godemper1r has quit [Ping timeout: 255 seconds]
C1V0 has quit [Ping timeout: 255 seconds]
three18ti has quit [Ping timeout: 255 seconds]
hasB4K has quit [Ping timeout: 255 seconds]
Sp4rKy has quit [Ping timeout: 255 seconds]
Esya has quit [Ping timeout: 255 seconds]
trollface has quit [Ping timeout: 255 seconds]
chishiki has quit [Ping timeout: 255 seconds]
Spaceghostc2c has quit [Ping timeout: 255 seconds]
imajes has quit [Ping timeout: 255 seconds]
jidar has quit [Ping timeout: 255 seconds]
Aria has quit [Ping timeout: 255 seconds]
stryek has quit [Ping timeout: 255 seconds]
dabradley has quit [Ping timeout: 255 seconds]
Rennex_ has quit [Ping timeout: 255 seconds]
Gnubie_ has quit [Ping timeout: 255 seconds]
Jamo__ has quit [Ping timeout: 255 seconds]
musl has quit [Ping timeout: 255 seconds]
numberten has quit [Ping timeout: 255 seconds]
loop3r has quit [Ping timeout: 255 seconds]
phreakocious has quit [Ping timeout: 255 seconds]
zenguy_pc has quit [Ping timeout: 255 seconds]
djbkd has quit [Ping timeout: 255 seconds]
jsaak has quit [Ping timeout: 255 seconds]
bkutil_ has quit [Ping timeout: 255 seconds]
bhaak has quit [Ping timeout: 255 seconds]
aninaki has quit [Ping timeout: 255 seconds]
mozzarella has quit [Ping timeout: 255 seconds]
ozzloy has quit [Ping timeout: 255 seconds]
flughafen has quit [Ping timeout: 255 seconds]
Kamilion|ZNC is now known as Kamilion
adac has joined #ruby
imajes_ is now known as imajes
rhg135 has quit [Ping timeout: 255 seconds]
C1V0 has joined #ruby
ozzloy has joined #ruby
cashnguns has quit [Quit: I'm just an old fashioned cowboy]
rhg135 has joined #ruby
aninaki has joined #ruby
zenguy_pc has joined #ruby
dross has quit [Ping timeout: 256 seconds]
sinkensabe has joined #ruby
dseitz has joined #ruby
weaksauce has joined #ruby
djbkd has joined #ruby
j4cknewt has joined #ruby
helpa-bot has joined #ruby
twistedpixels has joined #ruby
<acovrig> What is the best way to create a big SQL query? this is what I have at the moment: https://gist.github.com/acovrig/f98199f807a2673c334d
diego_k has joined #ruby
helpa has quit [Remote host closed the connection]
diegok has quit [Read error: Connection reset by peer]
ss_much has quit [Ping timeout: 246 seconds]
ryotarai has quit [Ping timeout: 246 seconds]
Spleeze has quit [Ping timeout: 246 seconds]
ryotarai_ has joined #ruby
Some-body_ has joined #ruby
ryotarai_ is now known as ryotarai
Guest34108 has quit [Ping timeout: 246 seconds]
DarthGandalf has quit [Ping timeout: 246 seconds]
sindork has quit [Ping timeout: 246 seconds]
DLSteve has joined #ruby
peter_paule has quit [Ping timeout: 246 seconds]
akkad has quit [Ping timeout: 246 seconds]
gattuso has quit [Ping timeout: 246 seconds]
Some-body_ is now known as DarthGandalf
gf3 has quit [Ping timeout: 246 seconds]
peter_paule has joined #ruby
ss_much has joined #ruby
helpa-bot has quit [Remote host closed the connection]
sargas has quit [Quit: Leaving]
GnuYawk has quit [Ping timeout: 246 seconds]
connor_goodwolf has quit [Ping timeout: 246 seconds]
helpa has joined #ruby
jidar_ is now known as jidar
Guest60848 is now known as bourbon
soulcake has quit [*.net *.split]
atom3 has quit [*.net *.split]
rj-code has quit [*.net *.split]
Caius has quit [*.net *.split]
j416 has quit [Ping timeout: 246 seconds]
shortdudey123 has quit [Ping timeout: 246 seconds]
C0deMaver1ck has joined #ruby
<toretore> acovrig: what sql library are you using? you might be better off with something like sequel
sindork has joined #ruby
connor_goodwolf has joined #ruby
j416_ has joined #ruby
<toretore> that can do the escaping and query generation for you
gf3 has joined #ruby
j416_ is now known as j416
Spleeze has joined #ruby
<acovrig> toretore: mysql2, but it’s just what I found first, would sequel be better (MySQL backend)
<weaksauce> acovrig just do multi line strings. no need for the += like that. and I second the suggestion from toretore that you probably shouldn't be doing it manually.
Asher has quit [Ping timeout: 252 seconds]
shortdudey123 has joined #ruby
<toretore> acovrig: i haven't used it myself, but it sounds like it would be a better choice
ltd has quit [Ping timeout: 246 seconds]
fabrice31 has joined #ruby
michael_mbp has quit [Excess Flood]
datanoise has joined #ruby
mcclurmc has joined #ruby
<acovrig> weaksauce: yea, that’s why I asked, I thougth there was a better way of doing it, but didn’t know what.
hplar has quit [Ping timeout: 246 seconds]
akkad has joined #ruby
rcs has quit [Ping timeout: 246 seconds]
gattuso has joined #ruby
Asher has joined #ruby
Cybergeek has joined #ruby
atom3 has joined #ruby
Caius has joined #ruby
soulcake has joined #ruby
rj-code has joined #ruby
sirecote has joined #ruby
michael_mbp has joined #ruby
fredsir has joined #ruby
aryaching has quit []
rcs has joined #ruby
bjornar has joined #ruby
mcclurmc has quit [Ping timeout: 276 seconds]
fabrice31 has quit [Ping timeout: 276 seconds]
blackmes1 has quit [Ping timeout: 252 seconds]
chishiki has joined #ruby
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Mon_Ouie has joined #ruby
decoponio has quit [Read error: Connection reset by peer]
al2o3-cr is now known as gr33n7007h
decoponio has joined #ruby
blackmes1 has joined #ruby
musl has joined #ruby
Musashi007 has quit [Quit: Musashi007]
jfarmer has joined #ruby
flughafen has joined #ruby
peter_paule has quit [Ping timeout: 264 seconds]
mozzarella has joined #ruby
jenrzzz has joined #ruby
j4cknewt has quit [Remote host closed the connection]
IrishGringo_ has quit [Ping timeout: 265 seconds]
mjmac has joined #ruby
stamina has quit [Remote host closed the connection]
MissionCritical has joined #ruby
brb3_ has joined #ruby
djbender has joined #ruby
erts has quit [Ping timeout: 250 seconds]
nickjj has joined #ruby
datanoise has quit [Ping timeout: 276 seconds]
fedexo_ has quit [Ping timeout: 265 seconds]
greencode has joined #ruby
Guest14837 has quit [Changing host]
Guest14837 has joined #ruby
aridere has quit [Ping timeout: 272 seconds]
Guest14837 is now known as Affix
GnuYawk has joined #ruby
RegulationD has joined #ruby
brb3_ has quit []
brb3_ has joined #ruby
NeverDie has joined #ruby
brb3_ has quit [Client Quit]
jack_rabbit has joined #ruby
mikecmpbll has quit [Quit: ciao.]
RegulationD has quit [Ping timeout: 246 seconds]
j4cknewt has joined #ruby
brb3_ has joined #ruby
davedev2_ has joined #ruby
theery has joined #ruby
bosma has quit [Quit: Leaving]
brb3_ has quit [Client Quit]
sinkensabe has quit [Remote host closed the connection]
davedev24_ has quit [Ping timeout: 246 seconds]
sandstrom has joined #ruby
kahuna_ has joined #ruby
charliesome has joined #ruby
kahuna_ has quit [Client Quit]
t_ has joined #ruby
kahuna_ has joined #ruby
sinkensabe has joined #ruby
greencode has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 256 seconds]
m8 has quit [Ping timeout: 246 seconds]
nikky3 has left #ruby ["WeeChat 1.1.1"]
Xeago has joined #ruby
DEA7TH_ has quit [Ping timeout: 245 seconds]
aridere has joined #ruby
jeregrine has joined #ruby
Casty has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sinkensabe has quit [Remote host closed the connection]
DLSteve has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Limix has joined #ruby
segfalt has quit [Quit: segfalt]
pizzaops has joined #ruby
ledestin has joined #ruby
GPrime has joined #ruby
Xeago has quit [Ping timeout: 252 seconds]
tagrudev has joined #ruby
chris2 has quit [Ping timeout: 256 seconds]
mjc_ has joined #ruby
PierreRambaud has joined #ruby
brb3_ has joined #ruby
brb3_ has quit [Client Quit]
[H]unt3r has joined #ruby
Casty has joined #ruby
ScottehM has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
tagrudev has quit [Remote host closed the connection]
blenny_ is now known as blenny
otisZart has joined #ruby
JoshL has joined #ruby
bigmac_ has joined #ruby
joast has joined #ruby
pcfreak30 has joined #ruby
Casty has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mcclurmc has joined #ruby
symm- has quit [Ping timeout: 276 seconds]
mcclurmc has quit [Ping timeout: 256 seconds]
workmad3 has joined #ruby
musgravejw has joined #ruby
Alayde_ has quit [Ping timeout: 264 seconds]
axilla has quit [Ping timeout: 250 seconds]
rbennacer has joined #ruby
dominic has joined #ruby
sinkensabe has joined #ruby
spider-mario has quit [Remote host closed the connection]
postmodern has joined #ruby
kenichi_ is now known as kenichi
gr33n7007h is now known as al2o3-cr
workmad3 has quit [Ping timeout: 252 seconds]
shevy has joined #ruby
rbennacer has quit [Ping timeout: 264 seconds]
sross_work|2 has joined #ruby
awer_ has quit [Ping timeout: 252 seconds]
sross07 has quit [Read error: Connection reset by peer]
HotCoder has joined #ruby
dgutierrez1287 has quit [Remote host closed the connection]
xelkarin has joined #ruby
adamski2600 has joined #ruby
lurk620 has joined #ruby
axilla has joined #ruby
ndrei_ has quit [Ping timeout: 276 seconds]
GitGud has quit [Ping timeout: 252 seconds]
<lurk620> i have a question about ruby syntax
<acovrig> how would I make this in sequel? SELECT RefURI FROM table_name WHERE (URI is null OR URI='' OR caption IS NULL) AND (tags IS NULL OR tags != 'del');
HotCoder has quit [Client Quit]
armyriad has quit [Ping timeout: 246 seconds]
GitGud has joined #ruby
<lurk620> do all methods have to be written with the parameters in parentheses? because in rails apparently certain methods look like this: https://gist.github.com/anonymous/9b653d45c4219ff4599a
musgravejw is now known as tractatus
RegulationD has joined #ruby
armyriad has joined #ruby
revath has joined #ruby
<lurk620> the method has_many takes the argument :destinations, but the argument isn't in parentheses
Senjai has joined #ruby
adamski2600 has quit [Ping timeout: 264 seconds]
<lurk620> anyone?
<al2o3-cr> yeah, methods can be with or without
tractatus is now known as musgravejw
Asher has quit [Ping timeout: 256 seconds]
brb3_ has joined #ruby
Cache_Money has quit [Quit: Cache_Money]
Kilo`byte has joined #ruby
<al2o3-cr> lurk620: yeah, try in irb/pry
musgravejw is now known as tractatus
Asher has joined #ruby
brb3_ has quit [Client Quit]
casadei has joined #ruby
weszlem has joined #ruby
brb3 has joined #ruby
A205B064 has joined #ruby
scottschecter has joined #ruby
<lurk620> al2o3-cr: got it, thanks
konieczkow has quit [Ping timeout: 265 seconds]
<al2o3-cr> lurk620: np :)
brb3 has quit [Client Quit]
brb3 has joined #ruby
datanoise has joined #ruby
qubits has joined #ruby
theery has quit [Remote host closed the connection]
<weaksauce> lurk620 as long as the removal of the parens don't create ambiguity (nested function calls typically) they can be removed
djbkd has quit [Remote host closed the connection]
veleno has joined #ruby
malconis has quit [Ping timeout: 250 seconds]
malconis_ has joined #ruby
subtwo has joined #ruby
jenrzzz has joined #ruby
al2o3-cr has quit [Quit: the quieter you become, the more you are able to hear]
brb3 has quit []
brb3 has joined #ruby
Creede has quit [Ping timeout: 256 seconds]
sinkensabe has quit [Remote host closed the connection]
dross has joined #ruby
sorah has joined #ruby
nertzy3 has joined #ruby
Musashi007 has joined #ruby
j4cknewt has quit [Remote host closed the connection]
ZOMGITSABEAR1 has joined #ruby
erichmenge_ has joined #ruby
djbkd_ has quit [Remote host closed the connection]
<acovrig> DB.run(sql) seems to return a nil, and DB[sql] returns a dataset object, but DB[sql].count doesn’t seem to work...
tractatus has quit [Ping timeout: 256 seconds]
harly_ has joined #ruby
djbkd has joined #ruby
_djbkd has joined #ruby
mbeasley_ has joined #ruby
jenrzzz has quit [Ping timeout: 276 seconds]
axilla has quit [Ping timeout: 246 seconds]
elaptics has joined #ruby
j4cknewt has joined #ruby
dross has quit [Read error: Connection reset by peer]
lotherk_ has joined #ruby
segv_ has joined #ruby
dross has joined #ruby
erichmenge has quit [Ping timeout: 246 seconds]
ZOMGITSABEAR has quit [Ping timeout: 246 seconds]
nertzy2 has quit [Ping timeout: 246 seconds]
blake has quit [Ping timeout: 246 seconds]
mbeasley has quit [Ping timeout: 246 seconds]
Mekkis has quit [Ping timeout: 246 seconds]
harly has quit [Ping timeout: 246 seconds]
Eising has quit [Ping timeout: 246 seconds]
Muz has quit [Ping timeout: 246 seconds]
elaptics` has quit [Ping timeout: 246 seconds]
adam12 has quit [Ping timeout: 246 seconds]
segv has quit [Ping timeout: 246 seconds]
lotherk has quit [Ping timeout: 246 seconds]
russt_ has quit [Ping timeout: 246 seconds]
mello_ has quit [Ping timeout: 246 seconds]
_djbkd has quit [Remote host closed the connection]
erichmenge_ is now known as erichmenge
segv_ is now known as segv
Limix has quit [Quit: Limix]
lhz has joined #ruby
Mekkis_ has joined #ruby
uptownhr has quit [Quit: uptownhr]
_djbkd has joined #ruby
Eising has joined #ruby
Muz has joined #ruby
mello has joined #ruby
wasamasa has quit [Ping timeout: 246 seconds]
go|dfish has quit [Ping timeout: 246 seconds]
enebo has joined #ruby
soulcake has quit [Ping timeout: 275 seconds]
al2o3-cr has joined #ruby
jfarmer has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
TheMoonMaster has joined #ruby
dabradley has joined #ruby
wasamasa has joined #ruby
wasamasa has quit [Changing host]
wasamasa has joined #ruby
Adran has quit [Quit: Este é o fim.]
soulcake has joined #ruby
go|dfish has joined #ruby
djbkd has quit [Ping timeout: 246 seconds]
adam| has joined #ruby
russt has joined #ruby
Silent__ has joined #ruby
scx_ has joined #ruby
Adran has joined #ruby
soulcake has quit [Changing host]
soulcake has joined #ruby
xelkarin has quit [Quit: WeeChat 1.1.1]
veleno has quit [Quit: veleno]
uptownhr has joined #ruby
FernandoBasso has quit [Quit: WeeChat 1.2]
lurk620 has quit [Ping timeout: 246 seconds]
ruv has joined #ruby
scx has quit [Ping timeout: 252 seconds]
charliesome has quit [Quit: zzz]
xelkarin has joined #ruby
dross has quit [Ping timeout: 256 seconds]
fabrice31 has joined #ruby
idafyaid has quit [Ping timeout: 264 seconds]
scx has joined #ruby
C1V0 has quit []
dgutierrez1287 has joined #ruby
scx_ has quit [Ping timeout: 252 seconds]
zets_ has joined #ruby
zets has quit [Ping timeout: 246 seconds]
wmoxam has quit [Remote host closed the connection]
Asher has quit [Read error: No route to host]
revath has quit [Ping timeout: 252 seconds]
zets_ is now known as zets
lemur has joined #ruby
revath has joined #ruby
<lemur> http://imgur.com/filoJwp - dangit shevy
fabrice31 has quit [Ping timeout: 264 seconds]
Asher has joined #ruby
dfockler has joined #ruby
lemur is now known as baweaver
kenndel has joined #ruby
hplar has joined #ruby
dfockler has quit [Ping timeout: 276 seconds]
adamski2600 has joined #ruby
dross has joined #ruby
sinkensabe has joined #ruby
revath has quit [Ping timeout: 276 seconds]
fgo has joined #ruby
ZYPP has joined #ruby
mcclurmc has joined #ruby
j4cknewt has quit [Remote host closed the connection]
wmoxam has joined #ruby
_pakchoi_ has joined #ruby
sinkensabe has quit [Remote host closed the connection]
<elektronaut> i'm ruby 1.8.7 freee. what a glorious day.
mcclurmc has quit [Ping timeout: 276 seconds]
<sphex_> hey. is there a standard exception class for format errors in input files, with fields for the file name and line number, etc?
fgo has quit [Ping timeout: 256 seconds]
cabreraM516 has joined #ruby
sphex_ is now known as sphex
[H]unt3r has quit [Quit: Leaving]