apeiros changed the topic of #ruby-lang to: Ruby 2.0.0-p353: http://ruby-lang.org (Ruby 1.9.3-p484) || Paste >3 lines of text on http://gist.github.com || RubyConf 2013 at http://www.justin.tv/confreaks
Cakey has joined #ruby-lang
nertzy has quit [Ping timeout: 246 seconds]
Onixs has joined #ruby-lang
nertzy has joined #ruby-lang
BubonicPestilenc is now known as BPestilence
<BPestilence> Hey guys
<BPestilence> Am I allowed to ask here general questions, instead of pure ruby? :)
<r0bglees0n> sure go for it
<BPestilence> Atm, i'm trying to understand to to calculate cost of renting car
<BPestilence> But my problem inside different plans for car it taken for longer than 24h
<BPestilence> as example:
<BPestilence> 25dec: all day $1/h
<BPestilence> 26dec: 00:00 -> 12:00 $1.5/h
<BPestilence> 12:00 - 18:00: 1.75/h
<BPestilence> 18:00 - 21:00: $2.5/h
<BPestilence> & etc.
<r0bglees0n> got it
<BPestilence> Atm i have start time and stop time
<BPestilence> of car
<BPestilence> but i'm totally messed how to store plan's prices inside DB, as well as counting COST
<BPestilence> if time crosses through different plans
<BPestilence> i know i can do "brute-f" by seconds... but i think it will be ridiculous way
<r0bglees0n> couldn't you have a `rates` table that aligned a period(1 - 24hr) and applied a price?
<BPestilence> and yes and know
<Jamo> Id probably implement it as a kinda recursive solution, like for each day and it has to figure if there are hourly or other procese
<BPestilence> atm, i'm using this 24h circle
hogeo has joined #ruby-lang
<BPestilence> but...
<BPestilence> we need to make custom plans for 28th Dec, 29-31, 1-5jan, 6-10jan, then continue with base plan
<BPestilence> oh
<BPestilence> i think i just got it...
<r0bglees0n> cool
<BPestilence> i can to oterate though chunks of time
<BPestilence> and if new chunk is not in previous plan
<BPestilence> i'll re-request plan for new chunk
<r0bglees0n> couldn't you define the 'chunks' as rates who are applied to a date(minus year) and time, that you could use for search and to apply a discount or whatever youre doing?
hogeo has quit [Ping timeout: 240 seconds]
vlad_starkov has joined #ruby-lang
<BPestilence> ok, i think i got how to write code for this :)
<BPestilence> another questionon same thing
<BPestilence> how to store plans inside db...
<BPestilence> as we have now base plan
<BPestilence> that have 3-5 parts per day (depends on plan
<BPestilence> 1 part is <time start> <time end> <price per hour>
<BPestilence> *each part
<r0bglees0n> i think you should have a plan with rates who can apply discounts over periods
<r0bglees0n> or apply charges
<BPestilence> can u be more detailed in "plan with rates" ?
shevy has left #ruby-lang [#ruby-lang]
<r0bglees0n> a plan would be a table and rates would also be a table of those three columns you said
<BPestilence> hm...
<BPestilence> some more info for you:
<BPestilence> for each brand of car, we have different plans
<BPestilence> it will lead to N of "plan" tables
<BPestilence> which is not good
heftig has quit [Remote host closed the connection]
Cakey has quit [Ping timeout: 272 seconds]
<BPestilence> example:
heftig has joined #ruby-lang
<BPestilence> Lexus, 28dec: $10/h, 30dec-10jan: $20/h
<BPestilence> Daewoo: 28dec: $5/h, 30-5jan: $10/h, 5-10jan: $7.5/h
<BPestilence> and this is overwriting plans
<BPestilence> this is holidays plans :)
<BPestilence> there is also "base 5-day plan" and "base weekend-plan"
<BPestilence> which consists of (morning + day) + (evening) + (night) prices
vlad_starkov has quit [Ping timeout: 248 seconds]
arBmind has quit [Ping timeout: 260 seconds]
daikan has joined #ruby-lang
<BPestilence> r0bglees0n: http://cl.ly/image/1B2N0Y142U0N something like that
<r0bglees0n> BPestilence: well, it sounds like a rate should be scoped to a car then
<r0bglees0n> or a model
kitak has joined #ruby-lang
<r0bglees0n> its very hard to do anything but take best guesses
<BPestilence> =)
<BPestilence> Generally, discussion is best way to help in such situation :)
<r0bglees0n> sure
<BPestilence> and once i draw it....
<BPestilence> i got idea
seanlinsley has quit [Quit: …]
daikan has quit [Ping timeout: 260 seconds]
deol has joined #ruby-lang
seanlinsley has joined #ruby-lang
tylersmith has joined #ruby-lang
<BPestilence> tyvm, looks like you helped me a lot!
<BPestilence> going back to writing :)
<BPestilence> r0bglees0n:
daikan has joined #ruby-lang
seanlinsley has quit [Read error: Connection reset by peer]
seanlinsley_ has joined #ruby-lang
deol has quit [Ping timeout: 260 seconds]
jon__ has quit [Quit: Konversation terminated!]
tylersmith has quit [Ping timeout: 248 seconds]
wallerdev has joined #ruby-lang
heftig has quit [Ping timeout: 264 seconds]
heftig has joined #ruby-lang
tylersmith has joined #ruby-lang
hogeo has joined #ruby-lang
io_syl has quit []
tahzeem has quit [Ping timeout: 260 seconds]
<r0bglees0n> BPestilence: youre welcome pal
tkuchiki has joined #ruby-lang
<BPestilence> omfg
<BPestilence> sometimes php's devs killing me -.-
hogeo has quit [Remote host closed the connection]
iliketur_ has joined #ruby-lang
tape1 has quit [Ping timeout: 246 seconds]
iliketur_ has quit [Client Quit]
<ozkan> Why is that @BPestilence
<BPestilence> hm...
<BPestilence> mainly it's all one person
<BPestilence> he couldn't provide of any examples without hacking server/unescaped variable to argument my eval :)
<BPestilence> he heard bad about eval, but he don't know where it comes from :D
<BPestilence> and about "this code will lead to sql inj"
<BPestilence> intVal ALWAYS return int -.-
<BPestilence> can somebody teach me how to sqlInj using binary code? :D
<ozkan> :)
<BPestilence> I'm really interested... how this will lead to hack:
<BPestilence> 1.rb: eval(2.rb) 2.rb: print 1
postmodern has quit [Quit: Leaving]
hogeo has joined #ruby-lang
<ozkan> memorization, instead of learning is no good
iliketur_ has joined #ruby-lang
vlad_starkov has joined #ruby-lang
marr has quit [Ping timeout: 246 seconds]
<BPestilence> ;)
rockpapergoat has joined #ruby-lang
prc has quit [Quit: Leaving.]
vlad_starkov has quit [Ping timeout: 264 seconds]
achiu has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
hogeo has joined #ruby-lang
deol has joined #ruby-lang
rockpapergoat has quit [Remote host closed the connection]
deol has quit [Ping timeout: 272 seconds]
io_syl has joined #ruby-lang
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #ruby-lang
Asher has joined #ruby-lang
Asher has quit [Quit: Leaving.]
havenwood has quit []
Asher has joined #ruby-lang
mindriot101 has quit [Remote host closed the connection]
benanne has quit [Quit: kbai]
kurko_ has quit [Ping timeout: 248 seconds]
kurko_ has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
deol has joined #ruby-lang
hahuang65 has quit [Ping timeout: 246 seconds]
Onixs has quit [Quit: Caught sigterm, terminating...]
Cakey has joined #ruby-lang
faces has joined #ruby-lang
Onixs has joined #ruby-lang
nertzy2 has joined #ruby-lang
r0bby_ has joined #ruby-lang
Muz_ has joined #ruby-lang
onewheelskyward has quit [Ping timeout: 240 seconds]
symm- has quit [Ping timeout: 261 seconds]
Authenti1ator has joined #ruby-lang
hackeron_ has joined #ruby-lang
jds_ has joined #ruby-lang
igalic_ has joined #ruby-lang
mbr_ has joined #ruby-lang
anulman1 has joined #ruby-lang
FastJack_ has joined #ruby-lang
onewheelskyward has joined #ruby-lang
vlad_starkov has joined #ruby-lang
hackeron_ has quit [Ping timeout: 240 seconds]
wallerdev has quit [Quit: wallerdev]
crazysim_ has joined #ruby-lang
hackeron_ has joined #ruby-lang
darix- has joined #ruby-lang
nertzy has quit [*.net *.split]
anulman has quit [*.net *.split]
robbyoconnor has quit [*.net *.split]
face has quit [*.net *.split]
falten has quit [*.net *.split]
hackeron has quit [*.net *.split]
crazysim has quit [*.net *.split]
igalic has quit [*.net *.split]
yorickpeterse has quit [*.net *.split]
bahar has quit [*.net *.split]
jeer has quit [*.net *.split]
jds has quit [*.net *.split]
Muz has quit [*.net *.split]
mame0 has quit [*.net *.split]
darix has quit [*.net *.split]
Authenticator has quit [*.net *.split]
Reen has quit [*.net *.split]
FastJack has quit [*.net *.split]
felipe has quit [*.net *.split]
machuga has quit [*.net *.split]
mbr has quit [*.net *.split]
KillerFox has quit [*.net *.split]
bahar has joined #ruby-lang
darix- is now known as darix
jds_ is now known as jds
vlad_starkov has quit [Read error: Connection reset by peer]
charliesome has joined #ruby-lang
<rue> The hell was that, an autoremove of _ and -?
Guest75174 has joined #ruby-lang
Guest75174 has quit [Excess Flood]
h0rrorvacui has quit [Quit: Leaving]
machuga has joined #ruby-lang
yorickpeterse has joined #ruby-lang
Onixs has quit [Ping timeout: 272 seconds]
Elico has quit [Quit: Elico]
io_syl has quit []
Raycaster has joined #ruby-lang
postmodern has joined #ruby-lang
ozkan has quit [Quit: Leaving...]
deol has quit [Remote host closed the connection]
deol has joined #ruby-lang
deol has quit [Ping timeout: 260 seconds]
snsei has quit [Remote host closed the connection]
snsei has joined #ruby-lang
Coincidental has joined #ruby-lang
iliketur_ has quit [Quit: zzzzz…..]
Raycaster has quit [Read error: Connection reset by peer]
|jemc| has joined #ruby-lang
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
ozkan has joined #ruby-lang
fire has joined #ruby-lang
deol has joined #ruby-lang
nertzy2 has quit [Ping timeout: 240 seconds]
ozkan has quit [Ping timeout: 272 seconds]
iliketur_ has joined #ruby-lang
deol has quit [Ping timeout: 260 seconds]
thinkdevcode has joined #ruby-lang
hahuang65 has joined #ruby-lang
CaptainJet has quit []
nertzy2 has joined #ruby-lang
io_syl has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
kurko_ has quit [Ping timeout: 246 seconds]
Tearan has joined #ruby-lang
snsei has quit [Remote host closed the connection]
kurko_ has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hahuang65 has quit [Ping timeout: 272 seconds]
hogeo has joined #ruby-lang
hahuang65 has joined #ruby-lang
r0bby_ has quit [Max SendQ exceeded]
r0bby_ has joined #ruby-lang
|jemc| has quit [Ping timeout: 264 seconds]
hahuang65 has quit [Ping timeout: 272 seconds]
retro|cz has quit [Ping timeout: 264 seconds]
iliketur_ has quit [Quit: zzzzz…..]
seanlinsley_ is now known as seanlinsley
cnivolle has quit [Remote host closed the connection]
cnivolle has joined #ruby-lang
iliketur_ has joined #ruby-lang
soba has joined #ruby-lang
kurko_ has quit [Ping timeout: 240 seconds]
unrealhoang has joined #ruby-lang
Hitoribocchi has joined #ruby-lang
kurko_ has joined #ruby-lang
vlad_starkov has joined #ruby-lang
<Hitoribocchi> Anyone has any idea on how to convert a JSON to XML feed (using Oj & Ox gems)?
<Hitoribocchi> Or is cobravsmongoose a better option?
soba has quit [Ping timeout: 240 seconds]
cnivolle has quit [Ping timeout: 246 seconds]
vlad_starkov has quit [Ping timeout: 273 seconds]
Barrin6 has joined #ruby-lang
Barrin6 has quit [Max SendQ exceeded]
daikan has quit [Remote host closed the connection]
daikan has joined #ruby-lang
deol has joined #ruby-lang
Barrin6 has joined #ruby-lang
Cakey has quit [Ping timeout: 260 seconds]
daikan has quit [Ping timeout: 272 seconds]
deol has quit [Read error: Connection reset by peer]
deol has joined #ruby-lang
deol has quit [Remote host closed the connection]
charliesome has joined #ruby-lang
<pipecloud> Hitoribocchi: Why do you need some other gem other than just multi_json and multi_xml?
jxie has joined #ruby-lang
mistym has quit [Remote host closed the connection]
Cakey has joined #ruby-lang
jxie has quit [Ping timeout: 240 seconds]
jxie has joined #ruby-lang
datanoise has quit [Ping timeout: 272 seconds]
jerrytgarcia has quit [Quit: WeeChat 0.4.2]
datanoise has joined #ruby-lang
mdedetrich has joined #ruby-lang
vlad_starkov has joined #ruby-lang
diegoviola has joined #ruby-lang
datanoise has quit [Ping timeout: 272 seconds]
vlad_starkov has quit [Read error: Connection reset by peer]
iliketur_ has quit [Quit: zzzzz…..]
ozkan has joined #ruby-lang
ozkan has quit [Ping timeout: 272 seconds]
Mon_Ouie has quit [Read error: Operation timed out]
thinkdevcode has quit [Remote host closed the connection]
iliketur_ has joined #ruby-lang
iliketur_ has quit [Excess Flood]
iliketur_ has joined #ruby-lang
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #ruby-lang
deol has joined #ruby-lang
deol has quit [Ping timeout: 240 seconds]
<Hitoribocchi> pipecloud: Speed issues.
<pipecloud> Hitoribocchi: Have you benchmarked?
thinkdevcode has joined #ruby-lang
<Hitoribocchi> Not really.
<Hitoribocchi> Looking for best solutions for JSON -> XML (either via hash or direct to XML).
datanoise has joined #ruby-lang
thinkdevcode has quit [Ping timeout: 248 seconds]
vlad_starkov has joined #ruby-lang
datanoise has quit [Ping timeout: 246 seconds]
vlad_starkov has quit [Read error: Connection reset by peer]
Coincidental has quit [Remote host closed the connection]
daikan has joined #ruby-lang
daikan has quit [Ping timeout: 264 seconds]
ozkan has joined #ruby-lang
deol has joined #ruby-lang
deol has quit [Ping timeout: 248 seconds]
ozkan has quit [Ping timeout: 264 seconds]
iliketur_ has quit [Quit: zzzzz…..]
kurko_ has quit [Quit: Computer has gone to sleep.]
ender_ has joined #ruby-lang
ender__ has joined #ruby-lang
ender_ has quit [Ping timeout: 240 seconds]
mistym has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
datanoise has joined #ruby-lang
ItSANgo__ has quit [Ping timeout: 260 seconds]
ender_ has joined #ruby-lang
ender__ has quit [Ping timeout: 240 seconds]
ItSANgo_ has joined #ruby-lang
Barrin6 has quit [Quit: Leaving]
diegoviola has quit [Quit: WeeChat 0.4.2]
hogeo has quit [Remote host closed the connection]
hogeo has joined #ruby-lang
Guest579 has joined #ruby-lang
Guest579 has quit [Changing host]
Guest579 has joined #ruby-lang
Guest579 is now known as diegoviola
datanoise has quit [Ping timeout: 240 seconds]
hogeo has quit [Ping timeout: 240 seconds]
kitak has quit [Remote host closed the connection]
<freedrull> is it a security risk to store vcr cassettes in a public repo from an s3 transaction that used your credentials?
tylersmith has joined #ruby-lang
<r0bglees0n> freedrull: yes
vlad_starkov has joined #ruby-lang
vlad_sta_ has joined #ruby-lang
hogeo has joined #ruby-lang
daikan has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 246 seconds]
tylersmith has quit [Ping timeout: 248 seconds]
daikan has quit [Ping timeout: 246 seconds]
hogeo has quit [Remote host closed the connection]
Coincidental has joined #ruby-lang
hogeo has joined #ruby-lang
Onixs has joined #ruby-lang
hahuang65 has joined #ruby-lang
hogeo_ has joined #ruby-lang
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
hogeo has quit [Read error: No route to host]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hahuang65 has quit [Ping timeout: 240 seconds]
datanoise has joined #ruby-lang
hogeo_ has quit [Remote host closed the connection]
charliesome has joined #ruby-lang
datanoise has quit [Ping timeout: 248 seconds]
hogeo_ has joined #ruby-lang
iliketur_ has joined #ruby-lang
vlad_sta_ has quit [Remote host closed the connection]
<pipecloud> freedrull: Look at the cassette and see if there's anything sensitive in it.
hogeo_ has quit [Remote host closed the connection]
hogeo has joined #ruby-lang
hogeo has quit [Read error: Connection reset by peer]
hogeo_ has joined #ruby-lang
iliketur_ has quit [Quit: zzzzz…..]
iliketur_ has joined #ruby-lang
iliketur_ has quit [Remote host closed the connection]
<r0bglees0n> also make sure if it is compressed, you uncompress it
iliketur_ has joined #ruby-lang
Kabaka has quit [Ping timeout: 260 seconds]
Coincidental has quit [Remote host closed the connection]
jerrytgarcia has joined #ruby-lang
Coincidental has joined #ruby-lang
Sagane has joined #ruby-lang
lewix has quit [Remote host closed the connection]
datanoise has joined #ruby-lang
tylersmith has joined #ruby-lang
ozkan has joined #ruby-lang
daikan has joined #ruby-lang
Tearan has quit [Quit: Sleepy Badger....]
tylersmith has quit [Ping timeout: 246 seconds]
iliketur_ has quit [Quit: zzzzz…..]
daikan has quit [Ping timeout: 272 seconds]
Tearan has joined #ruby-lang
rubyrebbel has joined #ruby-lang
rubyrebbel has quit [Client Quit]
Tearan has quit [Ping timeout: 248 seconds]
datanoise has quit [Ping timeout: 264 seconds]
Hitoribocchi has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
jxie has quit [Quit: leaving]
jason` has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
Cakey has quit [Ping timeout: 248 seconds]
datanoise has joined #ruby-lang
<pipecloud> Depress it if you've pressed it.
ender_ has quit [Ping timeout: 240 seconds]
hogeo_ has quit [Remote host closed the connection]
workmad3 has joined #ruby-lang
datanoise has quit [Ping timeout: 272 seconds]
hogeo has joined #ruby-lang
<freedrull> pipecloud: hmm my access key id is in there unencrypted but my secret access key isnt
<freedrull> not great but at least its not in there unencrypted at least...
<freedrull> hmm maybe i can use that fake s3 project with vcr
<pipecloud> freedrull: Why not just not push your tapes?
<pipecloud> Let whoever clones create tapes with their own credentials.
<pipecloud> Turn your tapes into proper fixtures and use webmock to get them returned upon requesting certain things?
<r0bglees0n> freedrull: are you sure your password/secret is not there?
<r0bglees0n> how are you managing to finish an auth cycle in that case?
hogeo has quit [Remote host closed the connection]
<r0bglees0n> i would remove the file asap and remove it from git history altogether, which can be tricky iirc
<freedrull> pipecloud: not unencrypted or something, at least
hogeo has joined #ruby-lang
<r0bglees0n> that doesn't matter
<r0bglees0n> you can make a request with it
<pipecloud> I'd be a lot more careful than that.
<freedrull> yeah im not sure how you would manage to authorize without
<freedrull> welp better change my key
<r0bglees0n> sounds like a good idea
hogeo has quit [Ping timeout: 272 seconds]
tahzeem has joined #ruby-lang
tylersmith has joined #ruby-lang
hogeo has joined #ruby-lang
daikan has joined #ruby-lang
Coincidental has quit [Remote host closed the connection]
jason` has left #ruby-lang [#ruby-lang]
tylersmith has quit [Ping timeout: 272 seconds]
tbuehlmann has joined #ruby-lang
r0bglees0n has quit [Quit: WeeChat 0.4.1]
r0bgleeson has joined #ruby-lang
datanoise has joined #ruby-lang
daikan has quit [Ping timeout: 272 seconds]
Voker57 has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
datanoise has quit [Ping timeout: 272 seconds]
r0bgleeson has quit [Ping timeout: 240 seconds]
marr has joined #ruby-lang
marr has quit [Client Quit]
retro|cz has joined #ruby-lang
mindriot101 has joined #ruby-lang
mistym has joined #ruby-lang
nertzy2 has quit [Quit: This computer has gone to sleep]
workmad3 has quit [Ping timeout: 240 seconds]
Cakey has joined #ruby-lang
felipe has joined #ruby-lang
tylersmith has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
charliesome has joined #ruby-lang
daikan has joined #ruby-lang
tylersmith has quit [Ping timeout: 272 seconds]
Cakey has quit [Read error: Connection reset by peer]
FastJack_ has quit [Quit: leaving]
daikan has quit [Ping timeout: 264 seconds]
arBmind has joined #ruby-lang
FastJack has joined #ruby-lang
deol has joined #ruby-lang
hogeo has joined #ruby-lang
shiyas has joined #ruby-lang
Mon_Ouie has quit [Ping timeout: 272 seconds]
deol has quit [Ping timeout: 240 seconds]
datanoise has joined #ruby-lang
skmp has quit [Quit: Leaving.]
Cakey has joined #ruby-lang
datanoise has quit [Ping timeout: 240 seconds]
shiyas has quit [Quit: shiyas]
hogeo has quit [Remote host closed the connection]
MaddinXx has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
io_syl has quit []
hogeo has joined #ruby-lang
hogeo has quit [Remote host closed the connection]
jxie has joined #ruby-lang
x0f has quit [Ping timeout: 260 seconds]
tylersmith has joined #ruby-lang
x0f has joined #ruby-lang
jxie has quit [Ping timeout: 260 seconds]
jxie has joined #ruby-lang
daikan has joined #ruby-lang
cored has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
tylersmith has quit [Ping timeout: 272 seconds]
Guest90190 has joined #ruby-lang
diegoviola has quit [Ping timeout: 264 seconds]
Guest90190 has quit [Changing host]
Guest90190 has joined #ruby-lang
Guest90190 is now known as diegoviola
arBmind has quit [Quit: Leaving.]
daikan has quit [Ping timeout: 240 seconds]
x0f has quit [Ping timeout: 248 seconds]
deol has joined #ruby-lang
x0f has joined #ruby-lang
unrealhoang has quit [Remote host closed the connection]
deol has quit [Ping timeout: 240 seconds]
hahuang65 has joined #ruby-lang
hahuang65 has quit [Ping timeout: 240 seconds]
tape1 has joined #ruby-lang
daikan has joined #ruby-lang
snsei has joined #ruby-lang
symm- has joined #ruby-lang
arBmind has joined #ruby-lang
nertzy2 has joined #ruby-lang
DouweM has joined #ruby-lang
daikan has quit [Remote host closed the connection]
daikan has joined #ruby-lang
daikan has quit [Ping timeout: 248 seconds]
snsei has quit [Remote host closed the connection]
mbr_ has quit [Quit: leaving]
nertzy2 has quit [Quit: This computer has gone to sleep]
daikan has joined #ruby-lang
tylersmith has joined #ruby-lang
datanoise has joined #ruby-lang
mistym has quit [Remote host closed the connection]
thmzlt has joined #ruby-lang
tylersmith has quit [Ping timeout: 240 seconds]
datanoise has quit [Ping timeout: 272 seconds]
deol has joined #ruby-lang
mindriot101 has quit [Remote host closed the connection]
smashwilson has joined #ruby-lang
deol has quit [Ping timeout: 260 seconds]
daikan has quit [Remote host closed the connection]
daikan has joined #ruby-lang
symm- has quit [Ping timeout: 248 seconds]
daikan has quit [Ping timeout: 246 seconds]
shinnya has joined #ruby-lang
shiyas has joined #ruby-lang
Cakey has quit [Read error: Connection reset by peer]
retro|cz has quit [Read error: Operation timed out]
prc has joined #ruby-lang
breakingthings has joined #ruby-lang
cored has quit [Ping timeout: 272 seconds]
diego1 has joined #ruby-lang
diego1 has joined #ruby-lang
diego1 has quit [Changing host]
diegoviola has quit [Ping timeout: 248 seconds]
diego1 is now known as diegoviola
cored has joined #ruby-lang
daikan has joined #ruby-lang
KillerFox has joined #ruby-lang
falten has joined #ruby-lang
Reen has joined #ruby-lang
mame0 has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
daikan has quit [Ping timeout: 272 seconds]
vpretzel has joined #ruby-lang
daikan has joined #ruby-lang
daikan has quit [Ping timeout: 264 seconds]
shiyas has left #ruby-lang [#ruby-lang]
tylersmith has joined #ruby-lang
thmzlt has quit [Remote host closed the connection]
thmzlt has joined #ruby-lang
nXqd has joined #ruby-lang
tylersmith has quit [Ping timeout: 272 seconds]
datanoise has joined #ruby-lang
cored has quit [Ping timeout: 272 seconds]
deol has joined #ruby-lang
deol has quit [Ping timeout: 240 seconds]
cored has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
datanoise has quit [Ping timeout: 240 seconds]
cored has quit [Ping timeout: 248 seconds]
mr_red1 has left #ruby-lang [#ruby-lang]
cored has joined #ruby-lang
guns has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
nXqd has quit [Quit: leaving]
cored has quit [Ping timeout: 248 seconds]
cored has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
cored has quit [Read error: Connection reset by peer]
Czupa has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
retro|cz has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby-lang
tkuchiki has quit [Ping timeout: 240 seconds]
thinkdevcode has joined #ruby-lang
thinkdevcode has quit [Ping timeout: 248 seconds]
tylersmith has joined #ruby-lang
postmodern has quit [Quit: Leaving]
mistym has joined #ruby-lang
datanoise has joined #ruby-lang
tylersmith has quit [Ping timeout: 272 seconds]
jeer has joined #ruby-lang
cnivolle has joined #ruby-lang
mistym has quit [Ping timeout: 264 seconds]
datanoise has quit [Ping timeout: 246 seconds]
hackndoes has joined #ruby-lang
hackndoes is now known as Guest48142
skade has joined #ruby-lang
thinkdevcode has joined #ruby-lang
relix has joined #ruby-lang
thinkdev_ has joined #ruby-lang
thinkdev_ has quit [Client Quit]
thinkdevcode has quit [Ping timeout: 250 seconds]
relix has quit [Max SendQ exceeded]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
datanoise has joined #ruby-lang
daikan has joined #ruby-lang
mbj has joined #ruby-lang
willywos has joined #ruby-lang
daikan has quit [Ping timeout: 246 seconds]
tylersmi_ has joined #ruby-lang
rippa has joined #ruby-lang
symm- has joined #ruby-lang
mbj has quit [Ping timeout: 252 seconds]
mbj has joined #ruby-lang
Guest92813 has joined #ruby-lang
diegoviola has quit [Ping timeout: 272 seconds]
Guest92813 has quit [Changing host]
Guest92813 has joined #ruby-lang
Guest92813 is now known as diegoviola
deol has joined #ruby-lang
apeiros has joined #ruby-lang
skmp has joined #ruby-lang
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
rippa has quit [Ping timeout: 248 seconds]
deol has quit [Ping timeout: 245 seconds]
snsei has joined #ruby-lang
lewix has joined #ruby-lang
willywos has quit []
snsei has quit [Remote host closed the connection]
Pyro24 has joined #ruby-lang
seanlinsley has quit [Quit: …]
r0bby_ has quit [Ping timeout: 246 seconds]
seanlinsley has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
guns has quit [Read error: Connection reset by peer]
havenwood has joined #ruby-lang
vlad_starkov has joined #ruby-lang
MaddinXx has quit [Remote host closed the connection]
vlad_starkov has quit [Read error: Connection reset by peer]
rippa has joined #ruby-lang
daikan has joined #ruby-lang
r0bby_ has joined #ruby-lang
daikan has quit [Ping timeout: 252 seconds]
rippa has quit [Ping timeout: 248 seconds]
ozkan has quit [Quit: Leaving...]
mistym has joined #ruby-lang
r0bby_ has quit [Ping timeout: 252 seconds]
mistym has quit [Ping timeout: 246 seconds]
snsei has joined #ruby-lang
__butch__ has joined #ruby-lang
snsei has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
skade has joined #ruby-lang
seanlinsley has quit [Quit: …]
ozkan has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
<yorickpeterse> hai
DouweM has quit [Quit: Leaving...]
ozkan has quit [Ping timeout: 252 seconds]
r0bgleeson has joined #ruby-lang
forkknifespoon has joined #ruby-lang
r0bby_ has joined #ruby-lang
Guest48142 has quit [Remote host closed the connection]
havenwood has quit [Remote host closed the connection]
deol has joined #ruby-lang
havenwood has joined #ruby-lang
ozkan has joined #ruby-lang
cmckni3 has quit [Ping timeout: 245 seconds]
cmckni3 has joined #ruby-lang
ozkan has quit [Ping timeout: 260 seconds]
MaddinXx has joined #ruby-lang
fire has quit [Quit: WeeChat 0.4.1]
seanlinsley has joined #ruby-lang
kurko_ has joined #ruby-lang
shinnya has quit [Ping timeout: 272 seconds]
daikan has joined #ruby-lang
io_syl has joined #ruby-lang
ender_ has joined #ruby-lang
ender__ has joined #ruby-lang
daikan has quit [Ping timeout: 240 seconds]
lewix has quit [Remote host closed the connection]
ender_ has quit [Ping timeout: 240 seconds]
lupine_85 has joined #ruby-lang
lupine has quit [Excess Flood]
lupine_85 is now known as lupine
datanoise has quit [Ping timeout: 267 seconds]
r0bgleeson has quit [Read error: Connection reset by peer]
r0bgleeson has joined #ruby-lang
jerrytgarcia has quit [Quit: WeeChat 0.4.2]
kurko_ has quit [Ping timeout: 272 seconds]
datanoise has joined #ruby-lang
hahuang65 has joined #ruby-lang
CaptainJet has joined #ruby-lang
bahar has quit [Changing host]
bahar has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
kurko_ has joined #ruby-lang
jerrytgarcia has joined #ruby-lang
havenwood has quit [Ping timeout: 246 seconds]
skmp has quit [Quit: Leaving.]
Tearan has joined #ruby-lang
tahzeem has quit [Ping timeout: 240 seconds]
MaddinXx has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
mbr has joined #ruby-lang
Guest27856 has joined #ruby-lang
sandeepk has joined #ruby-lang
diegoviola has quit [Ping timeout: 252 seconds]
xcess_denied has joined #ruby-lang
xcess_denied has left #ruby-lang [#ruby-lang]
Guest27856 has quit [Changing host]
Guest27856 has joined #ruby-lang
Guest27856 is now known as diegoviola
MaddinXx_ has joined #ruby-lang
daikan has joined #ruby-lang
havenwood has joined #ruby-lang
daikan has quit [Ping timeout: 252 seconds]
havenwood has quit [Ping timeout: 272 seconds]
Tearan has quit [Quit: Sleepy Badger....]
mistym has joined #ruby-lang
nertzy2 has joined #ruby-lang
igalic_ has quit [Changing host]
igalic_ has joined #ruby-lang
mistym has quit [Ping timeout: 272 seconds]
eval-in has quit [Read error: Operation timed out]
eval-in has joined #ruby-lang
valeri_ufo has quit [Read error: Connection reset by peer]
valeri_uF0 has joined #ruby-lang
mucker has quit []
breakingthings has quit []
havenwood has joined #ruby-lang
breakingthings has joined #ruby-lang
tahzeem has joined #ruby-lang
havenwood has quit [Ping timeout: 252 seconds]
ozkan has joined #ruby-lang
nathanstitt has joined #ruby-lang
r0bgleeson has quit [Ping timeout: 272 seconds]
ozkan has quit [Ping timeout: 246 seconds]
DouweM has joined #ruby-lang
ulisescab has joined #ruby-lang
lewix has joined #ruby-lang
MaddinXx_ has quit [Remote host closed the connection]
daikan has joined #ruby-lang
deol has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
robonerd has quit [Ping timeout: 272 seconds]
daikan has quit [Ping timeout: 252 seconds]
robonerd has joined #ruby-lang
iliketur_ has joined #ruby-lang
kirin` has quit [Ping timeout: 272 seconds]
kirin` has joined #ruby-lang
deol has joined #ruby-lang
diegoviola has quit [Quit: WeeChat 0.4.2]
cir0x has joined #ruby-lang
<robonerd> it's unfortunate ruby is a dead end now
<robonerd> it had a lot of promise
robonerd has left #ruby-lang ["..."]
<yorickpeterse> what?
<yorickpeterse> well I guess we better pack our stuff folks
sandeepk has quit [Ping timeout: 245 seconds]
<yorickpeterse> Ruby is a dead end
<yxhuvud> yes - asm will be relevant much longer.
Coincidental has joined #ruby-lang
Coincidental has quit [Ping timeout: 246 seconds]
Elico has joined #ruby-lang
havenwood has joined #ruby-lang
Coincidental has joined #ruby-lang
lewix has quit [Remote host closed the connection]
deol has quit [Remote host closed the connection]
kurko_ has quit [Quit: Computer has gone to sleep.]
deol has joined #ruby-lang
DouweM has quit [Quit: Leaving...]
havenwood has quit [Ping timeout: 245 seconds]
<whitequark> I would actually be making crazy money writing COBOL
<whitequark> I mean really, http://www.netcobol.com/
<whitequark> it's still very much alive.
<yorickpeterse> you would also hate yourself
<yorickpeterse> and quite possibly kill yourself 2 months in
<whitequark> for writing COBOL? naw, not really
<whitequark> for working for a bank and/or a hospital, because that's the only ones who still use that crap? HELL YES
ozkan has joined #ruby-lang
deol has quit [Ping timeout: 260 seconds]
symm- has quit [Ping timeout: 260 seconds]
cir0x has quit [Remote host closed the connection]
ozkan has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
<yxhuvud> yes, it would be a good idea to remember that there are reasons for still using cobol, and those reasons are often indicators for not wanting to work there.
Tearan has joined #ruby-lang
benlovell has joined #ruby-lang
r0bgleeson has joined #ruby-lang
Tearan has quit [Client Quit]
nertzy3 has joined #ruby-lang
ericwood has left #ruby-lang [#ruby-lang]
Coincidental has quit [Remote host closed the connection]
ericwood has joined #ruby-lang
<ericwood> cobol 4 lyfe
Coincide_ has joined #ruby-lang
nertzy2 has quit [Ping timeout: 246 seconds]
daikan has joined #ruby-lang
iliketur_ has quit [Quit: zzzzz…..]
daikan has quit [Ping timeout: 272 seconds]
Tearan_ has joined #ruby-lang
benlovell has quit [Ping timeout: 245 seconds]
havenwood has joined #ruby-lang
mistym has joined #ruby-lang
forkknifespoon has quit [Remote host closed the connection]
iliketur_ has joined #ruby-lang
mistym has quit [Ping timeout: 240 seconds]
Tearan_ is now known as Tearan
Tearan_ has joined #ruby-lang
lsegal has joined #ruby-lang
cmckni3 has quit [Ping timeout: 245 seconds]
Tearan_ has quit [Client Quit]
Tearan has quit [Disconnected by services]
Tearan has joined #ruby-lang
Tearan has quit [Client Quit]
Tearan has joined #ruby-lang
mistym has joined #ruby-lang
matp has quit [Quit: ZZZzzz…]
MaddinXx_ has joined #ruby-lang
MaddinXx_ has quit [Remote host closed the connection]
jerrytgarcia has quit [Quit: WeeChat 0.4.2]
ozkan has joined #ruby-lang
matp has joined #ruby-lang
ozkan has quit [Ping timeout: 252 seconds]
mbj has quit [Ping timeout: 252 seconds]
<epitron> has anyone noticed rubygems being very very very slow in 2.1.0?
<epitron> it's doing something very strange for me: http://showterm.io/5530e67c6956d1be2dba4
daikan has joined #ruby-lang
<epitron> for each gem dependency, it's downloading every single version of that gem's gemspecs
<epitron> one at a time >_<
vlad_starkov has quit [Remote host closed the connection]
cbreeze has joined #ruby-lang
daikan has quit [Ping timeout: 245 seconds]
<tbuehlmann> that's intended, you now constitute a hidden rubygems mirror
ulisescab has left #ruby-lang [#ruby-lang]
<epitron> is there a way to make it fast again? :)
tape1 has quit [Read error: Connection reset by peer]
<tbuehlmann> heh, no idea
<epitron> guh
r0bgleeson has quit [Ping timeout: 246 seconds]
deol has joined #ruby-lang
tape1 has joined #ruby-lang
<havenwood> epitron: Maybe?: --minimal-deps
<havenwood> Just saw that RubyGems 2.2.0 was released. :)
<epitron> can i gem install rubygems 2.2.0?
<tbuehlmann> well, $ gem update --system
<epitron> ah yes, i forgot about that
<epitron> hrm.. still does it
<epitron> still does it with --minimal-deps too
<epitron> the problem isn't the deps, it's searching for the deps by retrieving all the gemspecs ever
mannyt has joined #ruby-lang
mannyt has quit [Ping timeout: 245 seconds]
kaiza has joined #ruby-lang
mannyt has joined #ruby-lang
johnmilton has joined #ruby-lang
lewix has joined #ruby-lang
ozkan has joined #ruby-lang
mannyt has quit [Ping timeout: 245 seconds]
tbuehlmann has quit [Remote host closed the connection]
smashwilson has quit [Quit: Leaving]
lewix has quit [Remote host closed the connection]
deol has quit [Ping timeout: 245 seconds]
kurko_ has quit [Ping timeout: 260 seconds]
vlad_starkov has joined #ruby-lang
kurko_ has joined #ruby-lang
dingus_khan has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
RobertBirnie has joined #ruby-lang
nertzy3 has quit [Quit: This computer has gone to sleep]
<RobertBirnie> based on ruby style, should I have both sets of parentheses? create_facts(YAML::load_file(@fact_file))
<ericwood> yes
<ericwood> personal preference, but most style guides will tell you to do that
<RobertBirnie> super! i thought it looked easier to read than using the space
<havenwood> RobertBirnie: But if you're going to omit one or the other choose the outmost nested: create_facts YAML::load_file(@fact_file)
havenwood has quit [Remote host closed the connection]
Czupa has quit [Remote host closed the connection]
daikan has joined #ruby-lang
havenwood has joined #ruby-lang
havenn has joined #ruby-lang
kurko_ has quit [Quit: Computer has gone to sleep.]
havenwood has quit [Read error: Connection reset by peer]
knu has quit [Ping timeout: 240 seconds]
iliketur_ has quit [Quit: zzzzz…..]
daikan has quit [Ping timeout: 246 seconds]
marr has joined #ruby-lang
cbreeze has quit [Quit: cbreeze]
__butch__ has quit [Quit: Leaving.]
datanoise has quit [Ping timeout: 246 seconds]
Bosox20051 has joined #ruby-lang
vlad_starkov has joined #ruby-lang
Elico has quit [Quit: Elico]
kith has quit [Quit: kith]
Elico has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 245 seconds]
relix has joined #ruby-lang
kurko_ has joined #ruby-lang
kwando_ has joined #ruby-lang
breakingthings has quit []
mistym_ has joined #ruby-lang
mistym has quit [Ping timeout: 246 seconds]
CoreData has joined #ruby-lang
face has joined #ruby-lang
_dumfries has quit [Read error: Operation timed out]
faces has quit [Ping timeout: 240 seconds]
_dumfries has joined #ruby-lang
deol has joined #ruby-lang
h0rrorvacui has joined #ruby-lang
deol has quit [Ping timeout: 245 seconds]
symm- has joined #ruby-lang
jxie has quit [Quit: leaving]
datanoise has joined #ruby-lang
kurko_ has quit [Ping timeout: 245 seconds]
kurko_ has joined #ruby-lang
kwando_ has quit [Quit: leaving]
datanoise has quit [Ping timeout: 260 seconds]
mdedetrich has joined #ruby-lang
daikan has joined #ruby-lang
skade has joined #ruby-lang
havenn is now known as havenwood
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
daikan has quit [Ping timeout: 246 seconds]
iliketur_ has joined #ruby-lang
workmad3 has joined #ruby-lang
vlad_starkov has joined #ruby-lang
thmzlt_ has joined #ruby-lang
Oloryn_lt2 has joined #ruby-lang
iliketur_ has quit [Quit: zzzzz…..]
vlad_starkov has quit [Read error: Connection reset by peer]
fieldsonrails has joined #ruby-lang
ozkan has quit [Quit: Leaving...]
thmzlt has quit [Ping timeout: 246 seconds]
drbrain has quit [Ping timeout: 245 seconds]
workmad3 has quit [Ping timeout: 245 seconds]
tape1 has quit [Ping timeout: 260 seconds]
Galvatron1 has joined #ruby-lang