havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.4.0, 2.3.3 & 2.2.6: https://www.ruby-lang.org || Paste >3 lines of text to: https://gist.github.com || Rails questions? Ask in: #RubyOnRails || Logs: https://irclog.whitequark.org/ruby
adam12 is now known as adam
adam is now known as Guest14788
verumnost has quit []
duckpuppy has joined #ruby
ivanskie has quit [Quit: Going offline, see ya! (www.adiirc.com)]
Pupeno has joined #ruby
Pupeno has joined #ruby
Pupeno has quit [Changing host]
wrkrcoop has quit [Client Quit]
enterprisey has joined #ruby
duckpuppy has quit [Ping timeout: 272 seconds]
StoneCypher has quit [Ping timeout: 240 seconds]
chouhoulis has joined #ruby
gnufied has joined #ruby
chouhoul_ has quit [Ping timeout: 246 seconds]
chouhou__ has joined #ruby
Torrone has quit [Read error: Connection reset by peer]
Sja91 has joined #ruby
Pupeno has quit [Remote host closed the connection]
eelster has joined #ruby
<Sja91> Heya all, i'm having a bit of an issue. where ternary operators are being a bit unagreeable with my code....
<Sja91> heres an example of it not working: https://repl.it/FCgf
<Sja91> is it not justA == B ? true : false
chouhoulis has quit [Ping timeout: 245 seconds]
<eam> Sja91: ++ is not a ruby operator
<Sja91> ....
<Sja91> Fail
<Sja91> Thanks
<Sja91> ( fail on me, not ruby )
<eam> no prob!
<eam> (I do that all the time)
<Sja91> the error said unexpected ":" so i never looked at the ++ XD
<Sja91> seemed like plain english to me
<Sja91> wonder why theres no ++ though.... with allll the things that ruby decided to add to make programmer's lives faster and easier.... no ++ ??
<eam> the postfix/prefix increment operators are actually quite a problem in languages which implement them
<Sja91> oh?
wrkrcoop has joined #ruby
<eam> there's ambiguity in how they're sequenced
<Sja91> is that due to confusion, or run/compile time?
<Sja91> I've never felt confused by them, and C++ seems to do it just fine, never unexpected behaviour
<eam> Sja91: see for example http://c-faq.com/expr/index.html
<Sja91> Oh well, +=1 is just as good XD
StoneCypher has joined #ruby
<eam> C++ has rather serious trouble with them, it's an easy way to create undefined behavior
<eam> Sja91: are you familiar with C++ sequence points?
<Sja91> Hmm, I can see how it'd be confusing if you didn't know your way around it intimately
<eam> well it's not just confusing, the compiler itself can't specify a behavior
DLSteve has joined #ruby
dionysus69 has quit [Ping timeout: 258 seconds]
ddffg has quit [Ping timeout: 248 seconds]
StoneCypher has quit [Ping timeout: 246 seconds]
milardovich has joined #ruby
gloscombe has quit [Quit: gloscombe]
<zenspider> Sja91: ++ doesn't really make sense in ruby. 'a' isn't a value, it's just a name.
dcunit3d has quit [Ping timeout: 248 seconds]
<Sja91> huh?
<eam> surely ++ makes as much sense as -@?
wilbert has joined #ruby
<Sja91> No idea what that means
hahuang65 has joined #ruby
mello has joined #ruby
Guest26723 is now known as ged
ged is now known as Guest61854
gnufied has quit [Ping timeout: 255 seconds]
Kug3lis has quit [Ping timeout: 272 seconds]
wilbert has quit [Ping timeout: 246 seconds]
ur5us has joined #ruby
wrkrcoop has quit [Quit: wrkrcoop]
<SeepingN> x++ is x += 1
mello has quit [Ping timeout: 246 seconds]
choke_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<SeepingN> I'd rather have += and be able to jump by 2 or whatever else
<Sja91> mhm
chouhou__ has quit [Remote host closed the connection]
<Yonk_> Hello all
<zenspider> eam: what's the internal naming of methods have to do with anything?
<zenspider> SeepingN: what's ++x?
hahuang61 has joined #ruby
f3_ has quit [Ping timeout: 258 seconds]
eelster has quit [Read error: Connection reset by peer]
StoneCypher has joined #ruby
<SeepingN> nothing
<SeepingN> in C it would be the same as x++ except that the 1 is added after the line is evaluated
<SeepingN> er, before.
<SeepingN> something with when it's updated
agent_white has quit [Quit: bbl]
<toretore> i find it amusing that c++ has problems with the ++ operator
<zenspider> SeepingN: I meant in C, yes... and yes, it is incremented before it is passed as an argument to whatever
<zenspider> whereas x++ is decremented after. not sure how that should work in a language like ruby
matp has quit [Remote host closed the connection]
<eam> zenspider: oh I meant that both were prefix operators
Kug3lis has joined #ruby
StoneCypher has quit [Ping timeout: 255 seconds]
matp has joined #ruby
<eam> I agree the concept of ++ as a postfix operator doesn't make much sense in ruby
eelster has joined #ruby
Silox| has quit [Quit: Connection closed for inactivity]
Devalo has joined #ruby
<toretore> but neither does ++x, because it differs from -x in that it is assumed to change x
<eam> - can change x
<eam> methods often have side effects in their receivers
cibs has quit [Ping timeout: 268 seconds]
<toretore> but not in immutable ones :P
<toretore> on*
dcunit3d has joined #ruby
<eam> >> class Fixnum; def -@; self + 1; end; end; x = 5; -x
<eam> oh am I not identified?
igniting has quit [Ping timeout: 272 seconds]
eam has quit [Changing host]
eam has joined #ruby
<eam> >> class Fixnum; def -@; self + 1; end; end; x = 5; -x
<ruby[bot]> eam: # => 6 (https://eval.in/711007)
cibs has joined #ruby
<eam> for example
<toretore> that doesn't mutate the receiver
hotpanca_ has quit [Remote host closed the connection]
Devalo has quit [Ping timeout: 246 seconds]
<eam> oh, yeah
<eam> make a new fixnum :P
<zenspider> fixnums are a special optimization tho...
<zenspider> the point still stands
<zenspider> except as written above... that wouldn't be mutative anyways :P
<eam> yeah
<toretore> a special optimization in that they're not mutable?
<zenspider> their value is embedded in the pointer, not a reference to a separate object just to point to `4`
<zenspider> so they're immutable and not deduped or anything
<eam> they don't need to be though, so long as we're willing to give up the optimization
<toretore> but that doesn't have anything to do with mutability, conceptually
<eam> I could just use a Bignum for the example
Gadgetoid has joined #ruby
brent__ has quit [Remote host closed the connection]
dcunit3d has quit [Ping timeout: 246 seconds]
<zenspider> eam: that would seriously suck
<zenspider> but yes, it is an implementation detail
brent__ has joined #ruby
Kug3lis has quit [Read error: Connection reset by peer]
enterprisey has quit [Remote host closed the connection]
<zenspider> toretore: well... it does... in that every reference to that fixnum is copied
<toretore> yes, technically, hence the "conceptually" qualifier :)
gnufied has joined #ruby
maloik has quit [Remote host closed the connection]
hotpancakes has joined #ruby
maloik has joined #ruby
hahuang61 has quit [Ping timeout: 245 seconds]
dcunit3d has joined #ruby
duckpuppy has joined #ruby
tomphp has joined #ruby
username1 has quit [Ping timeout: 271 seconds]
mello has joined #ruby
duckpuppy has quit [Ping timeout: 255 seconds]
jhass has quit [Ping timeout: 248 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
Kug3lis has joined #ruby
enyo_ has joined #ruby
Nanuq has quit [Quit: leaving]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
AndrewIsHere has quit []
Anonymoose2 has joined #ruby
enyo_ has quit [Ping timeout: 248 seconds]
gusrub_ has quit []
sneakers has quit [Ping timeout: 255 seconds]
reverberations has quit [Ping timeout: 240 seconds]
Anonymoose2 has quit [Read error: Connection reset by peer]
StoneCypher has joined #ruby
reverberations has joined #ruby
Anonymoose2 has joined #ruby
_djbkd has quit [Quit: My people need me...]
ur5us has quit [Remote host closed the connection]
mustmodify has joined #ruby
AndBobsYourUncle has quit [Remote host closed the connection]
AndBobsYourUncle has joined #ruby
reverberations has quit [Ping timeout: 245 seconds]
StoneCypher has quit [Ping timeout: 272 seconds]
Kug3lis has quit [Read error: Connection reset by peer]
wilbert has joined #ruby
Gasher has quit [Quit: Leaving]
spacheco has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
milardovich has quit [Remote host closed the connection]
Evesy has quit [Remote host closed the connection]
Kug3lis has joined #ruby
AndBobsYourUncle has quit [Remote host closed the connection]
nankyokusei has joined #ruby
Guest61854 is now known as ged
saladus has joined #ruby
ged is now known as Guest55901
CloCkWeRX has joined #ruby
StoneCypher has joined #ruby
Cadillactica has joined #ruby
Cadillactica has quit [Client Quit]
nankyokusei has quit [Ping timeout: 255 seconds]
StoneCypher has quit [Ping timeout: 272 seconds]
Kug3lis has quit [Read error: Connection reset by peer]
boombox_ has joined #ruby
enterprisey has joined #ruby
<baweaver> mustmodify: spaces inside parens aren't very common
<baweaver> and parens with if aren't used
<baweaver> also save your gist as .rb for syntax highlighting
BTRE has joined #ruby
<baweaver> line 20: add hash if ['application', Rails.env].include?(env.to_s)
parsnip has joined #ruby
reverberations has joined #ruby
dman91 has joined #ruby
<baweaver> 49: if you use guard type statements you can simplify a lot of it.
<baweaver> Also sane defaults work wonders
<baweaver> like line 36
<baweaver> if you modify line 28: File.exists?(filepath) ? YAML.load(ERB.new(IO.read(filepath)).result) : []
<baweaver> each can work on an empty array and won't execute anything
Anonymoose2 has quit [Ping timeout: 256 seconds]
<baweaver> so line 34 would become: self.class.read(filepath).each { |env, data| self.add_by_environment(env, data) }
reverberations has quit [Ping timeout: 272 seconds]
AndBobsYourUncle has joined #ruby
mwlang has quit [Quit: mwlang]
splud has quit [Quit: splud]
spacheco has quit [Remote host closed the connection]
spacheco has joined #ruby
hahuang61 has joined #ruby
Sja91 has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
mwlang has joined #ruby
boombox_ has quit [Remote host closed the connection]
Kug3lis has joined #ruby
wilbert has quit [Ping timeout: 256 seconds]
spacheco has quit [Ping timeout: 255 seconds]
testuser1 has quit [Quit: Leaving.]
hahuang61 has quit [Ping timeout: 240 seconds]
StoneCypher has joined #ruby
Guest14788 is now known as adam12
duckpuppy has joined #ruby
saneax is now known as saneax-_-|AFK
saladus has quit [Quit: WeeChat 1.6]
reverberations has joined #ruby
tsunamie has joined #ruby
brent__ has quit [Ping timeout: 258 seconds]
brendan- has joined #ruby
malconis has quit [Read error: Connection reset by peer]
spearthistle has quit [Quit: Leaving]
StoneCypher has quit [Ping timeout: 255 seconds]
eelster has quit [Quit: leaving]
duckpuppy has quit [Ping timeout: 246 seconds]
SmiteClub has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
dman91 has quit [Ping timeout: 272 seconds]
<mustmodify> baweaver: Oh geez I got distracted. Let me read all your comments!
Anonymoose2 has joined #ruby
Dobler has joined #ruby
mello has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has joined #ruby
minimalism has quit [Quit: minimalism]
eelster has joined #ruby
<mustmodify> I'm not sure line 20 should be modified.
malconis has joined #ruby
reverberations has quit [Ping timeout: 255 seconds]
<mustmodify> because the config.yml file has environments as root keys, hanled in #load
minimalism has joined #ruby
<mustmodify> baweaver: I like what you did with method missing.
<mustmodify> especially putting the return value on the same line as `else`
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
raul782 has joined #ruby
AndBobsYourUncle has joined #ruby
raul782 has quit [Read error: Connection reset by peer]
AndBobsYourUncle has quit [Remote host closed the connection]
raul782 has joined #ruby
AndBobsYourUncle has joined #ruby
raul782 has quit [Remote host closed the connection]
aremaref has quit [Ping timeout: 246 seconds]
raul782 has joined #ruby
<woodruffw> mustmodify: i wrote a config class similar to yours for a project of mine, it might be worth referencing: https://github.com/muzak-project/muzak/blob/master/lib/muzak/config.rb
Jayson_Virissimo has joined #ruby
<mustmodify> Kebab Case... like ... shihkabob... someThingLikeThis ?
<woodruffw> mustmodify: something-like-this
<mustmodify> oh. The skewer.
<mustmodify> lol
<mustmodify> ok then
<woodruffw> yep ;)
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
AndBobsYourUncle has joined #ruby
yfeldblu_ has joined #ruby
yfeldblum has quit [Ping timeout: 255 seconds]
TomyLobo has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
reverberations has joined #ruby
Anonymoose2 has quit [Ping timeout: 272 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 246 seconds]
dcunit3d has quit [Ping timeout: 245 seconds]
benlieb has joined #ruby
CloCkWeRX has quit [Ping timeout: 248 seconds]
username_ has joined #ruby
StoneCypher has joined #ruby
paramourne has quit [Ping timeout: 258 seconds]
dcunit3d has joined #ruby
dhollinger has quit [Ping timeout: 258 seconds]
StoneCypher has quit [Ping timeout: 246 seconds]
enilsen16 has quit [Quit: enilsen16]
AndBobsYourUncle has joined #ruby
username_ has quit [Ping timeout: 255 seconds]
jenrzzz has joined #ruby
dhollinger has joined #ruby
d^sh_ has quit [Ping timeout: 240 seconds]
nadir has joined #ruby
doubleemms has joined #ruby
d^sh has joined #ruby
matp has quit [Remote host closed the connection]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Devalo has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
p0p0pr37 has quit [Changing host]
p0p0pr37 has joined #ruby
matp has joined #ruby
Guest55901 is now known as ged
reverberations has quit [Ping timeout: 246 seconds]
ged is now known as Guest41322
arescorpio has joined #ruby
hanmac has quit [Ping timeout: 245 seconds]
harfangk has joined #ruby
reverberations has joined #ruby
Immune has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
CloCkWeRX has joined #ruby
herbmillerjr has quit [Quit: Konversation terminated!]
StoneCypher has joined #ruby
SeepingN has joined #ruby
herbmillerjr has joined #ruby
wilbert has joined #ruby
jameser has joined #ruby
StoneCypher has quit [Ping timeout: 245 seconds]
Channel6 has joined #ruby
enyo_ has joined #ruby
AndBobsYourUncle has joined #ruby
wilbert has quit [Ping timeout: 272 seconds]
duckpuppy has joined #ruby
aidalgol has joined #ruby
hanmac has joined #ruby
hotpancakes has quit [Remote host closed the connection]
hotpancakes has joined #ruby
Dobler has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enyo_ has quit [Ping timeout: 255 seconds]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
eaxxae has joined #ruby
eaxxae has joined #ruby
eaxxae has quit [Changing host]
Kug3lis has quit [Read error: Connection reset by peer]
duckpuppy has quit [Ping timeout: 255 seconds]
pawnbox has joined #ruby
milardovich has joined #ruby
hotpancakes has quit [Ping timeout: 255 seconds]
duderonomy has quit [Ping timeout: 255 seconds]
pawnbox has quit [Read error: Connection reset by peer]
pawnbox has joined #ruby
AndBobsYourUncle has joined #ruby
pawnbox has quit [Read error: Connection reset by peer]
pawnbox has joined #ruby
milardovich has quit [Ping timeout: 258 seconds]
raul782 has quit []
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
bilal80 has joined #ruby
pawnbox has quit [Remote host closed the connection]
mwlang has quit [Quit: mwlang]
howdoi has joined #ruby
hotpancakes has joined #ruby
yfeldblu_ has quit [Quit: Leaving...]
Kug3lis has joined #ruby
enilsen16 has joined #ruby
sylario has quit [Quit: Connection closed for inactivity]
AndBobsYourUncle has joined #ruby
cibs has quit [Ping timeout: 268 seconds]
Kug3lis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jenrzzz has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
pawnbox has joined #ruby
nankyokusei has joined #ruby
LoneHerm_ has joined #ruby
cibs has joined #ruby
duderonomy has joined #ruby
pawnbox has quit [Remote host closed the connection]
mikecmpbll has quit [Quit: inabit. zz.]
nankyokusei has quit [Ping timeout: 245 seconds]
d0nn1e has quit [Ping timeout: 258 seconds]
dcunit3d has quit [Ping timeout: 246 seconds]
d0nn1e has joined #ruby
cibs has quit [Ping timeout: 268 seconds]
hotpancakes has quit [Remote host closed the connection]
pawnbox has joined #ruby
ianmethyst has quit [Quit: WeeChat 1.6]
bilal80 has left #ruby [#ruby]
despai has quit [Quit: Leaving]
CloCkWeRX has quit [Ping timeout: 240 seconds]
cibs has joined #ruby
hahuang61 has joined #ruby
wilbert has joined #ruby
Guest41322 is now known as ged
ged is now known as Guest97730
LoneHerm_ has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 240 seconds]
hahuang65 has quit [Remote host closed the connection]
wilbert has quit [Ping timeout: 248 seconds]
braincrash has quit [Quit: bye bye]
duckpuppy has joined #ruby
skweek has quit [Ping timeout: 246 seconds]
JoshS has joined #ruby
duckpuppy has quit [Ping timeout: 240 seconds]
benlieb has quit [Quit: benlieb]
eelster has left #ruby [#ruby]
CloCkWeRX has joined #ruby
arescorpio has quit [Quit: Leaving.]
braincrash has joined #ruby
milardovich has joined #ruby
CloCkWeRX has quit [Ping timeout: 248 seconds]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
milardovich has quit [Ping timeout: 258 seconds]
Jayson_Virissimo has quit []
Alayde has joined #ruby
amclain has quit [Quit: Leaving]
Alayde has quit [Ping timeout: 248 seconds]
hachface has joined #ruby
cdg has quit [Remote host closed the connection]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
nowhere_man has joined #ruby
OTORelic2 has quit [Ping timeout: 258 seconds]
hachface has left #ruby [#ruby]
split_join has joined #ruby
hotpancakes has joined #ruby
jenrzzz has quit [Ping timeout: 272 seconds]
CloCkWeRX has joined #ruby
blackbom1 has joined #ruby
AndBobsYourUncle has joined #ruby
blackbombay has quit [Ping timeout: 256 seconds]
AndBobsYourUncle has quit [Remote host closed the connection]
ramfjord has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has joined #ruby
petrichorx_ has joined #ruby
split_join has quit [Quit: leaving]
dopamean1 has quit [Ping timeout: 256 seconds]
AndBobsYourUncle has quit [Remote host closed the connection]
Devalo has joined #ruby
milardovich has joined #ruby
enyo has joined #ruby
CloCkWeRX has quit [Ping timeout: 240 seconds]
Channel6 has quit [Quit: Leaving]
gix has quit [Ping timeout: 255 seconds]
Devalo has quit [Ping timeout: 246 seconds]
milardovich has quit [Ping timeout: 240 seconds]
anisha has joined #ruby
cdg has joined #ruby
enyo has quit [Ping timeout: 258 seconds]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
gix has joined #ruby
nadir has quit [Quit: Connection closed for inactivity]
jud has joined #ruby
jud has joined #ruby
jud has quit [Changing host]
duckpuppy has joined #ruby
testuser1 has joined #ruby
duckpuppy has quit [Ping timeout: 245 seconds]
blackwind_123 has quit [Ping timeout: 245 seconds]
Guest97730 is now known as ged
ged is now known as Guest81711
blackwind_123 has joined #ruby
boombox_ has joined #ruby
CloCkWeRX has joined #ruby
milardovich has joined #ruby
cdg has quit [Remote host closed the connection]
milardovich has quit [Ping timeout: 248 seconds]
enyo has joined #ruby
djbkd has quit [Remote host closed the connection]
pilne has quit [Quit: Quitting!]
osboxes_ has quit [Ping timeout: 256 seconds]
djbkd has joined #ruby
ramfjord has joined #ruby
enilsen16 has quit [Quit: enilsen16]
enyo has quit [Ping timeout: 272 seconds]
moei has quit [Read error: Connection reset by peer]
Miron has quit [Ping timeout: 240 seconds]
pawnbox has quit [Ping timeout: 246 seconds]
pawnbox has joined #ruby
Miron has joined #ruby
OTORelic2 has joined #ruby
moei has joined #ruby
pawnbox has quit [Remote host closed the connection]
enyo has joined #ruby
alan_w has quit [Quit: WeeChat 1.4]
swills has quit [Read error: Connection reset by peer]
Emmanuel_Chanel has quit [Ping timeout: 258 seconds]
swills has joined #ruby
enyo has quit [Ping timeout: 248 seconds]
jameser has quit [Ping timeout: 258 seconds]
milardovich has joined #ruby
nankyokusei has joined #ruby
blackwind_123 has quit [Ping timeout: 256 seconds]
milardovich has quit [Ping timeout: 248 seconds]
nankyokusei has quit [Ping timeout: 248 seconds]
AndBobsYourUncle has joined #ruby
govg has quit [Ping timeout: 246 seconds]
aeontech has joined #ruby
Devalo has joined #ruby
duckpuppy has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
reverberations has quit [Ping timeout: 248 seconds]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
OTORelic2 has quit [Ping timeout: 245 seconds]
conta has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
Devalo has quit [Ping timeout: 258 seconds]
conta has quit [Ping timeout: 248 seconds]
hahuang61 has joined #ruby
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hahuang61 has quit [Ping timeout: 258 seconds]
marcdel has quit [Ping timeout: 256 seconds]
hutch34 has quit [Ping timeout: 256 seconds]
muelleme has joined #ruby
hotpancakes has quit [Remote host closed the connection]
testuser1 has quit [Quit: Leaving.]
x00r__ has joined #ruby
pawnbox has joined #ruby
hotpancakes has joined #ruby
minimalism has quit [Quit: minimalism]
Coldblackice has joined #ruby
Coldblackice has quit [Client Quit]
pawnbox has quit [Remote host closed the connection]
muelleme has quit [Ping timeout: 245 seconds]
pawnbox has joined #ruby
symm- has quit [Quit: Leaving...]
Guest81711 is now known as ged
pawnbox has quit [Ping timeout: 258 seconds]
ged is now known as Guest63930
eaxxae has quit [Quit: Leaving]
Coldblackice has joined #ruby
IANIMATEDYOU has joined #ruby
boombox_ has quit [Remote host closed the connection]
<IANIMATEDYOU> I'm in a pretty sad financial space this post-holiday season. I cook pizzas for a living, but have been animating (see gif above) most of my adult life. I recently made a fiverr account in a lousy effort to make some extra money in these cold January months. I can create a rotoscoped animated image (like the one posted) of any picture you give me f
<IANIMATEDYOU> or a small price. I figured advertising here, while extremely annoying, was worth a shot. Anyway here's a link to the fiverr gig https://www.fiverr.com/nicodaunt/animate-any-picture-you-send-me. Let me know if I can help you, help me.
voker57 has quit [Ping timeout: 240 seconds]
voker57 has joined #ruby
voker57 has quit [Changing host]
voker57 has joined #ruby
IANIMATEDYOU has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
swills has quit [Read error: Connection reset by peer]
swills has joined #ruby
hotpancakes has quit [Remote host closed the connection]
hotpancakes has joined #ruby
govg has joined #ruby
lele has joined #ruby
duckpuppy has quit [Ping timeout: 256 seconds]
milardovich has joined #ruby
charliesome has joined #ruby
jhass has joined #ruby
duckpuppy has joined #ruby
milardovich has quit [Ping timeout: 248 seconds]
jameser has joined #ruby
marcdel has joined #ruby
enyo has joined #ruby
Channel6 has joined #ruby
hotpanca_ has joined #ruby
jameser has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enyo has quit [Ping timeout: 246 seconds]
hotpancakes has quit [Ping timeout: 255 seconds]
testuser1 has joined #ruby
duckpuppy has quit [Ping timeout: 272 seconds]
pawnbox has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
petrichorx_ has quit [Quit: Connection closed for inactivity]
marcdel has quit [Ping timeout: 248 seconds]
pytuger has joined #ruby
hahuang61 has joined #ruby
brent__ has joined #ruby
hahuang61 has quit [Ping timeout: 255 seconds]
dopamean1 has joined #ruby
brent__ has quit [Ping timeout: 256 seconds]
mello has joined #ruby
domgetter has joined #ruby
h1fuelce_ has quit [Ping timeout: 255 seconds]
h1fuelcell has joined #ruby
mello has quit [Ping timeout: 245 seconds]
Emmanuel_Chanel has joined #ruby
duckpuppy has joined #ruby
jameser has joined #ruby
SmiteClub has quit [Read error: Connection reset by peer]
jameser has quit [Client Quit]
duckpuppy has quit [Ping timeout: 255 seconds]
ifctj has joined #ruby
SeepingN has quit [Ping timeout: 245 seconds]
enterprisey has quit [Remote host closed the connection]
milardovich has joined #ruby
Guest63930 is now known as ged
govg has quit [Ping timeout: 248 seconds]
ged is now known as Guest33245
pawnbox has quit [Ping timeout: 245 seconds]
ddffg has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
duper has quit [Ping timeout: 248 seconds]
bocaneri has joined #ruby
nankyokusei has joined #ruby
govg has joined #ruby
duper has joined #ruby
nankyokusei has quit [Ping timeout: 248 seconds]
duckpuppy has joined #ruby
jenrzzz has quit [Ping timeout: 245 seconds]
jameser has joined #ruby
AndBobsYourUncle has joined #ruby
jameser has quit [Client Quit]
Devalo has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
duckpuppy has quit [Ping timeout: 258 seconds]
Devalo has quit [Ping timeout: 258 seconds]
Channel6 has quit [Quit: Leaving]
naprimer_2 has joined #ruby
MashaSakura has quit [Ping timeout: 255 seconds]
saneax-_-|AFK is now known as saneax
xen0fon has joined #ruby
blackbom1 has quit [Ping timeout: 246 seconds]
milardovich has joined #ruby
eaxxae has joined #ruby
eaxxae has joined #ruby
milardovich has quit [Ping timeout: 258 seconds]
mmasaki has quit [Ping timeout: 248 seconds]
pawnbox has joined #ruby
ARCADIVS has joined #ruby
x00r__ has quit [Ping timeout: 248 seconds]
pawnbox has quit [Read error: No route to host]
pawnbox has joined #ruby
duckpuppy has joined #ruby
mmasaki has joined #ruby
Devalo has joined #ruby
blackbom1 has joined #ruby
jameser has joined #ruby
jameser has quit [Client Quit]
saneax is now known as saneax-_-|AFK
enyo has joined #ruby
pawnbox has quit [Ping timeout: 272 seconds]
Terens has joined #ruby
duckpuppy has quit [Ping timeout: 248 seconds]
duckpuppy has joined #ruby
milardovich has joined #ruby
ifctj has quit [Ping timeout: 256 seconds]
Dobler has joined #ruby
enyo has quit [Ping timeout: 272 seconds]
testuser1 has quit [Quit: Leaving.]
dionysus69 has joined #ruby
milardovich has quit [Ping timeout: 246 seconds]
Guest33245 is now known as ged
ged is now known as Guest23805
duckpuppy has quit [Ping timeout: 256 seconds]
jameser has joined #ruby
eaxxae has quit [Quit: This computer has gone to sleep]
eaxxae has joined #ruby
eaxxae has joined #ruby
dcunit3d has joined #ruby
jameser has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duckpuppy has joined #ruby
postmodern has quit [Quit: Leaving]
aeontech has quit [Quit: aeontech]
djbkd has quit [Quit: Leaving...]
duckpuppy has quit [Ping timeout: 246 seconds]
pawnbox has joined #ruby
pawnbox has quit [Read error: Connection reset by peer]
pawnbox has joined #ruby
hotpanca_ has quit [Remote host closed the connection]
eaxxae has quit [Quit: This computer has gone to sleep]
nadir has joined #ruby
brent__ has joined #ruby
jcao219 has quit [Ping timeout: 245 seconds]
xen0fon has quit [Ping timeout: 258 seconds]
skweek has joined #ruby
brent__ has quit [Ping timeout: 248 seconds]
djbkd has joined #ruby
pawnbox has quit [Remote host closed the connection]
mello has joined #ruby
jameser has joined #ruby
mello has quit [Ping timeout: 240 seconds]
pawnbox has joined #ruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
jameser has quit [Client Quit]
M-Technic has quit [Ping timeout: 240 seconds]
TreyG has joined #ruby
djbkd has quit [Remote host closed the connection]
djbkd has joined #ruby
manjaro-kde5__ has joined #ruby
TomyLobo has joined #ruby
milardovich has joined #ruby
Fernando-Basso has joined #ruby
iwmrby has joined #ruby
djbkd has quit [Ping timeout: 248 seconds]
milardovich has quit [Ping timeout: 240 seconds]
govg has quit [Ping timeout: 240 seconds]
instigator has joined #ruby
Bamborole has joined #ruby
pawnbox has quit [Remote host closed the connection]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
<instigator> Hello. I have been experiencing a problem with following line of code: c = resp.header['Set-Cookie'].split("="). Its suppose to split the cookie text value on the "=" delimiter. However I get the following error: undefined method 'split' for nil:NilClass (NoMethodError). Testing to see what type Set-Cookie value is I used: resp.header['Set-Cookie'].instance_of? String which returns false
jcao219 has joined #ruby
<instigator> been searching but havent found out what type resp.header['Set-Cookie'] returns
toretore has quit [Ping timeout: 256 seconds]
M-Technic has joined #ruby
byte512 has quit [Ping timeout: 255 seconds]
StoneCypher has joined #ruby
element119 has joined #ruby
beatleboy07 has joined #ruby
beatleboy07 has quit [Client Quit]
nankyokusei has joined #ruby
Bamborole has quit [Remote host closed the connection]
StoneCypher has quit [Ping timeout: 246 seconds]
Terens has quit [Ping timeout: 240 seconds]
nankyokusei has quit [Ping timeout: 248 seconds]
SeepingN has joined #ruby
<SpComb> instigator: does the HTTP response actually have a Set-Cookie header? indexing on header will probably give you nil if there is no such header
Guest23805 is now known as ged
ged is now known as Guest60566
AndBobsYourUncle has joined #ruby
manjaro-kde5__ has quit [Ping timeout: 240 seconds]
Guest9033 has joined #ruby
mostlybadfly has quit [Quit: Connection closed for inactivity]
pawnbox has joined #ruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
pawnbox has quit [Remote host closed the connection]
gix has quit [Ping timeout: 258 seconds]
TreyG_ has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
AndBobsYourUncle has joined #ruby
gix has joined #ruby
Guest9033 has quit []
mikecmpbll has joined #ruby
squ has joined #ruby
TreyG has quit [Ping timeout: 256 seconds]
<squ> what this does? http://vpaste.net/4KJBG
<squ> its launcher script for program named 'istats'
<blackbom1> squ: it's a rubygems wrapper script.
<blackbom1> it loads bin/istats from the gem, and before that it has some logic that you can use to load a specific version of the gem.
Yxhuvud has quit [Ping timeout: 256 seconds]
<squ> yep, that is what I see
<squ> for unknown to me reasons:
andrzejku has joined #ruby
<squ> istats --version
<squ> iStats v1.4.0
<squ> istats --version
<squ> iStats v1.2.0
andrzejku has quit [Client Quit]
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
andrzejku has joined #ruby
<blackbom1> the syntax is like so: istats _v1.2.0_ --version OR istats _v.1.4.0_ --version
<blackbom1> sorry
<blackbom1> without the 'v' prefix
govg has joined #ruby
<squ> how to fix that?
<squ> I want newest version only, don't want old binary
hotpancakes has joined #ruby
<squ> why it chooses the old version?
<squ> why it doesn't clean up old binaries?
<dionysus69> hey apeiros!
<dionysus69> I am addressing you because you are more or less familiar with my case
<dionysus69> so I am about to get started on executing the specific random algorithm was talking about before, distributing n items over m categories each filled with x users
al2o3-cr has quit [Ping timeout: 255 seconds]
<dionysus69> so we talked about permutation, I have question regarding that, where do I save results of the permutation? so lets say the set of n items gets created, at the create action I would then execute all the stuff that would create distributed "packages", where do I save those packages? create separate model for it? whats the conventional way of storing such permutations?
milardovich has joined #ruby
<element119> dionysus69: wouldn't each item have a category_id?
<dionysus69> btw anyone is welcome to give some hints. the whole story is: I have lets say 100 questions. there are lets say 10 packages, and each package should have 20 questions. so there naturally will be repetitions because pool is not enough
<element119> or is it more complicated
hotpancakes has quit [Ping timeout: 255 seconds]
<dionysus69> well the whole picture is pretty complicated but yes each item has a category id in the db
<dionysus69> I am doing all this in rails
<element119> oh well if you have any given question potentially being in several packages
nowhere_man has quit [Read error: Connection reset by peer]
<element119> then you'll need a table to associate packages with questions
nowhere_man has joined #ruby
jenrzzz has quit [Ping timeout: 258 seconds]
<element119> e.g. PackageQuestion (id, question_id, package_id)
<dionysus69> so the package is a quiz consisting of questions. as we know users take quiz not at the same time so I have to do permutation of combinations ahead of time and then give users their share of questions (the quiz has to be as random as possible accross the packages, but it has to use up all the possible questions in the pool)
<dionysus69> ok ill post a lil gist of relationships one sek
<element119> right, I was just indicating a potential schema
enyo has joined #ruby
aryaching has quit [Ping timeout: 248 seconds]
<dionysus69> variable number of questions have to be selected from each question category too. its not like same number of questions from each question
<dionysus69> so the picture is quite complicated, at least for me xD
milardovich has quit [Ping timeout: 246 seconds]
<dionysus69> and well ye, all that has to be done randomly.
pawnbox has joined #ruby
<dionysus69> ok so there is a group of users. and quiz belongs to group. so quiz knows how many users will be taking quiz. so the permutation can be done for that many users for each quiz.
instigator has left #ruby [#ruby]
gloscombe has joined #ruby
<dionysus69> and then I would distribute "ready made quizzes" from a "quiz_permutation" table. after editing the existing quiz the permutation would rerun and existing ones deleted.
<dionysus69> how does all that sound?
enyo has quit [Ping timeout: 255 seconds]
element119 has left #ruby ["i've probably fallen asleep, in PT"]
verumnost has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
al2o3-cr has joined #ruby
AndBobsYourUncle has joined #ruby
verumnost has quit [Remote host closed the connection]
verumnost has joined #ruby
verumnost has left #ruby [#ruby]
aidalgol has quit [Quit: zZZZzzz]
polysics has joined #ruby
blackwind_123 has joined #ruby
milardovich has joined #ruby
duckpuppy has joined #ruby
milardovich has quit [Ping timeout: 248 seconds]
manjaro-kde5__ has joined #ruby
manjaro-kde5__ has quit [Client Quit]
manjaro-kde5__ has joined #ruby
duckpuppy has quit [Ping timeout: 240 seconds]
Guest60566 is now known as ged
manjaro-kde5__ has quit [Ping timeout: 258 seconds]
ged is now known as Guest39266
Bamborole has joined #ruby
pawnbox has quit [Remote host closed the connection]
hahuang61 has joined #ruby
pawnbox has joined #ruby
milardovich has joined #ruby
dopamean1 has quit [Ping timeout: 240 seconds]
hahuang61 has quit [Ping timeout: 255 seconds]
joast has quit [Ping timeout: 245 seconds]
quaristice has joined #ruby
mello has joined #ruby
jcao219 has quit [Ping timeout: 256 seconds]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
mello has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has joined #ruby
brent__ has joined #ruby
jackjackdripper has joined #ruby
element119 has joined #ruby
brent__ has quit [Ping timeout: 256 seconds]
Bamborole has quit [Read error: Connection reset by peer]
anna` has joined #ruby
TreyG has joined #ruby
osboxes has joined #ruby
anna` has left #ruby ["Textual IRC Client: www.textualapp.com"]
vuoto has joined #ruby
TreyG_ has quit [Ping timeout: 248 seconds]
Guest96397 has joined #ruby
Guest96397 has quit [Client Quit]
Yxhuvud has joined #ruby
nanoz has joined #ruby
nanoz has joined #ruby
nanoz has quit [Changing host]
marr has joined #ruby
StoneCypher has joined #ruby
milardovich has quit [Remote host closed the connection]
milardovich has joined #ruby
nankyokusei has joined #ruby
osboxes has quit [Ping timeout: 245 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
StoneCypher has quit [Ping timeout: 255 seconds]
milardovich has quit [Ping timeout: 246 seconds]
nankyokusei has quit [Ping timeout: 256 seconds]
duckpuppy has joined #ruby
Gasher has joined #ruby
TreyG_ has joined #ruby
duckpuppy has quit [Ping timeout: 255 seconds]
aspiers has quit [Ping timeout: 258 seconds]
TreyG has quit [Ping timeout: 248 seconds]
gnufied has quit [Quit: Leaving]
domgetter has quit [Ping timeout: 240 seconds]
xen0fon has joined #ruby
enyo has joined #ruby
xen0fon has quit [Remote host closed the connection]
xen0fon has joined #ruby
Guest39266 is now known as ged
Mon_Ouie has joined #ruby
ged is now known as Guest58609
saneax-_-|AFK is now known as saneax
enyo has quit [Ping timeout: 256 seconds]
hotpancakes has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
saneax is now known as saneax-_-|AFK
jair has quit [Ping timeout: 245 seconds]
mikecmpbll has quit [Quit: inabit. zz.]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
jair has joined #ruby
sepp2k has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
govg has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has joined #ruby
last_staff has joined #ruby
mikecmpbll has joined #ruby
tmtwd has joined #ruby
psychicist__ has joined #ruby
milardovich has joined #ruby
saneax-_-|AFK is now known as saneax
hotpancakes has quit [Ping timeout: 255 seconds]
sdothum has joined #ruby
milardovich has quit [Ping timeout: 245 seconds]
Xeago has quit [Ping timeout: 248 seconds]
tk__ has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
mikecmpbll has quit [Quit: inabit. zz.]
Iacobus__ has quit [Ping timeout: 246 seconds]
the-eat-scout has quit [Ping timeout: 258 seconds]
dmnd has quit [Ping timeout: 258 seconds]
Terens has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
AndBobsYourUncle has joined #ruby
Xeago has joined #ruby
Terens has quit [Ping timeout: 272 seconds]
duckpuppy has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
duckpuppy has quit [Ping timeout: 258 seconds]
<zenspider> squ: rubygems DOES pick the latest version by default
Pupeno has joined #ruby
Pupeno has joined #ruby
Pupeno has quit [Changing host]
vuoto has quit [Remote host closed the connection]
psychicist__ has quit [Quit: leaving]
<squ> zenspider: how its picking v.1.2
milardovich has joined #ruby
hahuang61 has joined #ruby
Rutix has quit []
milardovich has quit [Ping timeout: 248 seconds]
Pupeno has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 255 seconds]
byte512 has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
AndBobsYourUncle has joined #ruby
mello has joined #ruby
tomphp has joined #ruby
dmitrysinina[m] has joined #ruby
mello has quit [Ping timeout: 240 seconds]
Guest58609 is now known as ged
ged is now known as Guest79789
saneax is now known as saneax-_-|AFK
fatbob has quit [Ping timeout: 246 seconds]
ericx2x_ has joined #ruby
iwmrby has quit [Quit: WeeChat 1.6]
Blaguvest has joined #ruby
StoneCypher has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nankyokusei has joined #ruby
tomphp has joined #ruby
StoneCypher has quit [Ping timeout: 272 seconds]
charliesome has joined #ruby
ianmethyst has joined #ruby
ianmethyst has quit [Client Quit]
tomphp has quit [Read error: Connection reset by peer]
nankyokusei has quit [Ping timeout: 248 seconds]
biberu has joined #ruby
jshjsh has joined #ruby
ponga has joined #ruby
SpiffTR has joined #ruby
duckpuppy has joined #ruby
JoshS has quit [Ping timeout: 248 seconds]
sepp2k has quit [Ping timeout: 248 seconds]
Devalo has quit [Read error: Connection timed out]
enyo_ has joined #ruby
SpiffTR has quit [Client Quit]
Devalo has joined #ruby
milardovich has joined #ruby
conta has joined #ruby
duckpuppy has quit [Ping timeout: 245 seconds]
ianmethyst has joined #ruby
enyo_ has quit [Ping timeout: 255 seconds]
conta has quit [Ping timeout: 258 seconds]
brent__ has joined #ruby
mikecmpbll has joined #ruby
ianmethyst has quit [Quit: WeeChat 1.6]
ianmethyst has joined #ruby
ianmethyst has quit [Client Quit]
ianmethyst has joined #ruby
brent__ has quit [Ping timeout: 245 seconds]
tomphp has joined #ruby
dmnd has joined #ruby
sepp2k has joined #ruby
mello has joined #ruby
mello has quit [Ping timeout: 255 seconds]
toretore has joined #ruby
biberu has quit [Read error: Connection reset by peer]
anisha has quit [Quit: This computer has gone to sleep]
bhaak has quit [Ping timeout: 255 seconds]
pawnbox has quit [Remote host closed the connection]
tomphp has quit [Ping timeout: 245 seconds]
pawnbox has joined #ruby
bhaak has joined #ruby
govg has joined #ruby
byte512 has quit [Ping timeout: 245 seconds]
Guest79789 is now known as ged
mello has joined #ruby
ged is now known as Guest94066
insanedreamer has joined #ruby
hotpancakes has joined #ruby
insanedreamer has quit [Client Quit]
bhaak has quit [Ping timeout: 240 seconds]
tomphp has joined #ruby
pilne has joined #ruby
Iacobus__ has joined #ruby
the-eat-scout has joined #ruby
jameser has joined #ruby
mwlang has joined #ruby
mwlang has quit [Client Quit]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
aryaching has joined #ruby
eaxxae has joined #ruby
eaxxae has joined #ruby
jameser_ has joined #ruby
Guest9694 is now known as ndrst
biberu has joined #ruby
jameser has quit [Ping timeout: 246 seconds]
milardovich has quit [Read error: Connection reset by peer]
milardovich has joined #ruby
CloCkWeRX has quit [Quit: Leaving.]
darkyes has joined #ruby
hotpancakes has quit [Ping timeout: 255 seconds]
darkyes has quit [Client Quit]
petrichorx_ has joined #ruby
tomphp has joined #ruby
duckpuppy has joined #ruby
vuoto has joined #ruby
duckpuppy has quit [Ping timeout: 246 seconds]
naprimer_2 is now known as MisterMax
Pupeno has joined #ruby
Pupeno has quit [Changing host]
Pupeno has joined #ruby
koldbrutality has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has quit [Read error: Connection timed out]
hahuang61 has joined #ruby
AndBobsYourUncle has joined #ruby
TreyG has joined #ruby
StoneCypher has joined #ruby
<ytti> whatis your preference for REST API documentation
<ytti> swagger.io?
TreyG_ has quit [Ping timeout: 246 seconds]
gigetoo has quit [Ping timeout: 248 seconds]
hahuang61 has quit [Ping timeout: 255 seconds]
gigetoo has joined #ruby
StoneCypher has quit [Ping timeout: 246 seconds]
Fernando-Basso has quit [Quit: WeeChat 1.6]
joast has joined #ruby
koldbrutality has joined #ruby
lxsameer has joined #ruby
Pupeno has quit [Remote host closed the connection]
hosttor has joined #ruby
gheegh has joined #ruby
dionysus69 has quit [Remote host closed the connection]
dionysus69 has joined #ruby
tmtwd has quit [Ping timeout: 258 seconds]
Guest19 has joined #ruby
Devalo has quit [Read error: Connection timed out]
jenrzzz has joined #ruby
Pupeno has joined #ruby
mostlybadfly has joined #ruby
Devalo has joined #ruby
ruby-lang577 has joined #ruby
<ruby-lang577> if size > 10 || size.to_s =~ /[a-z]/ size = 3 end
<ruby-lang577> can anyone tell me why dinn't size match a-z
<ruby-lang577> if i enter size as "a"
<ruby-lang577> ?
<matthewd> >> size = "a"; size > 10
<ruby[bot]> matthewd: # => comparison of String with 10 failed (ArgumentError) ...check link for more (https://eval.in/711477)
<ruby-lang577> i wan from a-z
d0nn1e has quit [Ping timeout: 248 seconds]
<matthewd> If size was "a", the first comparison would raise the above exception
<ruby-lang577> i put ||
<ruby-lang577> means or
<ruby-lang577> why didn't the regex match from a-z
<ruby-lang577> even though i convert it to string
<matthewd> What was it before you converted it?
<ruby-lang577> it was integer
<ruby-lang577> size = gets.chomp.to_i
<matthewd> And which integer, when you call to_s, contains a letter?
<ruby-lang577> i wan to check wether the user enter any letter from a-z
<matthewd> Well, you're checking whether the the result of converting what the user entered to an integer, and then to a string, contains any letter from a-z
<matthewd> If you want to check the string the user originally entered, you need to check that, without the to_i
<ruby-lang577> if he enter above 10 and the size contains a-z
<ruby-lang577> size will be set to 3
dcunit3d has quit [Ping timeout: 256 seconds]
<ruby-lang577> but what is the difference when i can convert it to string to check?
<matthewd> >> "not a number".to_i.to_s
<ruby[bot]> matthewd: # => "0" (https://eval.in/711480)
jhack has joined #ruby
Pupeno has quit [Remote host closed the connection]
<ruby-lang577> @matthewd ok it's working :)
<ruby-lang577> it's like other way round
<ruby-lang577> lol
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
Guest94066 is now known as ged
ged is now known as Guest81033
AndBobsYourUncle has joined #ruby
jhack has quit [Quit: jhack]
enyo_ has joined #ruby
last_staff has quit [Quit: last_staff]
pawnbox has quit [Remote host closed the connection]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nankyokusei has joined #ruby
pawnbox has joined #ruby
centrx has joined #ruby
enyo_ has quit [Ping timeout: 246 seconds]
nankyokusei has quit [Ping timeout: 245 seconds]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
<centrx> How does the "gem" command determine which version of rubygems to run?
AndBobsYourUncle has joined #ruby
<centrx> When I run "gem" as a user, it runs a different version of rubygems than when I run it as root
<centrx> Unable to update gem update --system as user
<ruby-lang577> check the -v maybe?
<ruby-lang577> and install the correct version?
spacheco has joined #ruby
<Guest19> What OS are you using and are you using a version manager?
duckpuppy has joined #ruby
<matthewd> centrx: Your OS/shell decides where to find `gem` based on your path
<centrx> matthewd: `which gem` points to /usr/bin/gem for both root and the local user
<matthewd> `gem env` might be informative
dcunit3d has joined #ruby
shinnya has joined #ruby
<centrx> matthewd: interesting, thanks
Guest19 has quit [Quit: Textual IRC Client: www.textualapp.com]
catenthusiast has joined #ruby
MrBusiness has quit [Ping timeout: 272 seconds]
jenrzzz has quit [Ping timeout: 246 seconds]
username has joined #ruby
duckpuppy has quit [Ping timeout: 255 seconds]
nertzy has joined #ruby
nertzy has quit [Client Quit]
Pupeno has joined #ruby
Pupeno has quit [Changing host]
Pupeno has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
pawnbox has quit [Remote host closed the connection]
AndBobsYourUncle has joined #ruby
pawnbox has joined #ruby
username has quit [Ping timeout: 272 seconds]
tk__ has quit [Quit: ばいばい]
Terens has joined #ruby
gigetoo has quit [Ping timeout: 255 seconds]
gigetoo has joined #ruby
marcdel has joined #ruby
ruby-lang577 has quit [Ping timeout: 260 seconds]
jhack has joined #ruby
jhack has quit [Client Quit]
hotpancakes has joined #ruby
Pupeno has quit [Remote host closed the connection]
jameser_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
flashbang has joined #ruby
marr has quit [Ping timeout: 256 seconds]
zacts has quit [Ping timeout: 240 seconds]
ericx2x_ has quit [Remote host closed the connection]
milardovich has quit [Ping timeout: 245 seconds]
shtirlic has quit [Quit: ZNC - http://znc.in]
shtirlic has joined #ruby
hosttor has quit [Ping timeout: 246 seconds]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
SpiffTR has joined #ruby
SpiffTR has quit [Client Quit]
AndBobsYourUncle has joined #ruby
Guest81033 is now known as ged
hotpancakes has quit [Remote host closed the connection]
ged is now known as Guest40992
minimalism has joined #ruby
gheegh has quit [Ping timeout: 246 seconds]
lxsameer has quit [Quit: WeeChat 1.6]
milardovich has joined #ruby
hahuang61 has joined #ruby
Pupeno has joined #ruby
Pupeno has joined #ruby
Pupeno has quit [Changing host]
hahuang61 has quit [Ping timeout: 255 seconds]
vuoto has quit [Remote host closed the connection]
nertzy has joined #ruby
vuoto has joined #ruby
cdg has joined #ruby
myk267 has quit [Quit: :q!]
binaryplease has joined #ruby
myk267 has joined #ruby
cdg has quit [Ping timeout: 255 seconds]
jcao219 has joined #ruby
skweek has quit [Ping timeout: 256 seconds]
hotpancakes has joined #ruby
aremaref has joined #ruby
mnemon has joined #ruby
MrBusiness has joined #ruby
TreyG_ has joined #ruby
enyo_ has joined #ruby
Rutix has joined #ruby
Rutix has quit [Changing host]
Rutix has joined #ruby
TreyG has quit [Ping timeout: 246 seconds]
shinnya has quit [Ping timeout: 256 seconds]
TreyG_ has quit [Ping timeout: 272 seconds]
vuoto has quit [Remote host closed the connection]
dn` has quit [Quit: dn`]
enyo_ has quit [Ping timeout: 256 seconds]
unshadow has left #ruby [#ruby]
vuoto has joined #ruby
TreyG has joined #ruby
binaryplease has quit [Quit: binaryplease]
<dionysus69> hey people
<dionysus69> I still have that algorithm problem, can you guys help me out a bit ? :)
hotpancakes has quit []
dn` has joined #ruby
houhoulis has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
Pupeno has quit [Remote host closed the connection]
<matthewd> dionysus69: I don't see the need to pre-roll the permutations
AndBobsYourUncle has joined #ruby
<dionysus69> matthewd: the problem is that, I dont know how to avoid the following. I am giving out pack to user once they open up a link and its displayed in a form. if they refresh the page, new one will roll out with other random pack
Channel6 has joined #ruby
<matthewd> dionysus69: If you're doing enough of them, you should be able to just use pure randomness and you'll end up with near enough to a perfect distribution with no specific effort
<dionysus69> the thing is that, "pack is quiz", so they will then know all possible questions
nankyokusei has joined #ruby
<dionysus69> if i am doing enough of what?
<matthewd> Sure, you need to store the set of questions you've asked when you ask them, not generated fresh on each page load. But you don't need to pre-generate a set of quizes before users arrive.
dn`_ has joined #ruby
dn`_ has left #ruby [#ruby]
<matthewd> Enough quizes. If you have 5 users, then you'll need to manually ensure each question gets asked ~ the same number of times. If you have 5000, it'll happen naturally.
<dionysus69> hmm then I ll have to store what where? at each session?
binaryplease has joined #ruby
<dionysus69> I also know how many students are in a group, quiz(pack) belongs to the group
andrzejku has quit [Remote host closed the connection]
dn` has quit [Ping timeout: 258 seconds]
<dionysus69> also i m dealing with variable load of cases, some quiz may get 5 users some may get 100
<dionysus69> how specifically would you do this "Sure, you need to store the set of questions you've asked when you ask them"
nankyokusei has quit [Ping timeout: 258 seconds]
Terens has quit [Ping timeout: 272 seconds]
phantummm has quit [Quit: WeeChat 1.6]
<apeiros> dionysus69: wasn't around (and will be afk again)
phantummm has joined #ruby
<dionysus69> its ok haha
<dionysus69> you just know my case so i think I could use some help :D
<dionysus69> I am at that stage already in development, to get to this thing
MisterMax has quit [Quit: Leaving]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
<matthewd> dionysus69: How are you storing the answers?
AndBobsYourUncle has joined #ruby
<dionysus69> well thats not relevant in this case I guess? but well, in db? :D
nikivi has joined #ruby
rippa has joined #ruby
<matthewd> Oh, well in that case, you would do "Sure, you need to store the set of questions you've asked when you ask them" by: "well, in db".
<dionysus69> haha
<dionysus69> well seriously I know it has to be saved in db but whats the drill, how would I keep track of which questions have been asked how many times? I assume i ll need that because as I said pure randomness wouldn't be effective in most cases
Guest40992 is now known as ged
<matthewd> I was going to give a serious answer, but that was going to build on a serious answer to my question.
ged is now known as Guest77793
<dionysus69> pure random picks from 100 types, to get 200 items will maybe result in picking each item more than twice and picking some items none of the times, ideally all items would be picked twice, while keeping randomness between packs
<matthewd> I didn't ask it for fun. But of well, doesn't matter.
cdg has joined #ruby
<matthewd> s/of well/oh well/
Devalo has quit [Read error: Connection timed out]
sarlalian has joined #ruby
<dionysus69> are you asking what I am storing in db along with answers?
Devalo has joined #ruby
JoshS has joined #ruby
jshjsh has quit [Ping timeout: 248 seconds]
<mustmodify> dionysus69: What's the question?
hotpancakes has joined #ruby
<matthewd> Yes, I was asking about the model you're using to store the answers, so we could see how you might use that to store the asked questions as well.
<dionysus69> hmm interesting
<dionysus69> mustmodify: can you scroll up? if not then ill paste the story once again
JoshS has quit [Read error: Connection reset by peer]
JoshS has joined #ruby
DaAwesomeP has joined #ruby
mustmodify has left #ruby [#ruby]
<DaAwesomeP> I'm trying to compile Ruby 2.3.3 with OpenSSL 1.1.0c. Does it not support it?
iffyuva has joined #ruby
<dionysus69> heres the full relationship inspection
<dionysus69> matthewd:
<matthewd> dionysus69: So when the user arrives, I'd generate a set of questions to ask them, and immediately populate the Response records for them
<dionysus69> your approach would need a new table that holds a student_id, quiz_id and all question ids ?
<dionysus69> that sounds too complicated for me
<matthewd> Huh?
<dionysus69> response table has question_id, attempt_id
<dionysus69> you are saying I would just fill in question_id?
<dionysus69> at the form startup
<dionysus69> and at submission fill in the attempt_ids ?
<matthewd> Yes
<matthewd> No
<dionysus69> mm
<dionysus69> hmm
<matthewd> You create the attempt and the responses at arrival, then fill in the answers when they.. give you the answers.
<dionysus69> tbh I mirrored my approach from an existing project called survey, it is creating response.new in the view
<dionysus69> sounds like a horrible approach but I couldnt think of better
<dionysus69> aha that makes sense actually
s2013 has joined #ruby
<dionysus69> since they will be stuck with same questions
<dionysus69> { |q| Response.new( question_id: q.id ) } do |response|
<dionysus69> this is the way its done
mikecmpbll has quit [Quit: inabit. zz.]
<dionysus69> so now instead of new I would create?
<matthewd> Yes (in the controller)
snath has joined #ruby
<dionysus69> ok thanks allot matthewd :)
<dionysus69> I ll continue tinkering with it :)
zel has joined #ruby
zel is now known as Guest14999
bokayio has joined #ruby
milardovich has quit [Remote host closed the connection]
Pupeno has joined #ruby
Pupeno has joined #ruby
Pupeno has quit [Changing host]
milardovich has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
AndBobsYourUncle has joined #ruby
pragmaticus has joined #ruby
eelster has joined #ruby
<eelster> #ruby-lang
vuoto has quit [Remote host closed the connection]
<eelster> Sorry about that errant message.
eaxxae has quit [Quit: This computer has gone to sleep]
catenthusiast has quit [Quit: Textual IRC Client: www.textualapp.com]
minimalism has quit [Quit: minimalism]
<centrx> eelster: The channels were merged a whiel ago
Azure has quit [Ping timeout: 258 seconds]
Pupeno has quit [Remote host closed the connection]
<eelster> centrx: I know. I loaded up Irssi on a computer I haven't used in a few years and apparently my startup file was crappy.
Pupeno has joined #ruby
Pupeno has joined #ruby
Pupeno has quit [Changing host]
last_staff has joined #ruby
kith has joined #ruby
osboxes has joined #ruby
dionysus69 has quit [Ping timeout: 246 seconds]
izaakf has joined #ruby
Pupeno has quit [Remote host closed the connection]
element119 has quit [Remote host closed the connection]
solocshaw has joined #ruby
dn` has joined #ruby
hotpancakes has quit [Remote host closed the connection]
nikivi has quit [Quit: zzz]
nikivi has joined #ruby
skweek has joined #ruby
Jackneill_ has joined #ruby
hardest_ has joined #ruby
houhoulis has quit [Remote host closed the connection]
snath has left #ruby ["Leaving"]
enterprisey has joined #ruby
Gasher has quit [Quit: Leaving]
testuser1 has joined #ruby
username_ has joined #ruby
hotpancakes has joined #ruby
borodin has quit [Ping timeout: 245 seconds]
KeyJoo has joined #ruby
pytuger has quit [Ping timeout: 246 seconds]
last_staff has quit [Quit: last_staff]
hotpancakes has quit [Ping timeout: 255 seconds]
dhollinger has quit [Ping timeout: 272 seconds]
hotpancakes has joined #ruby
hahuang61 has joined #ruby
dhollinger has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
jud has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has joined #ruby
djbkd has joined #ruby
Guest77793 is now known as ged
hahuang61 has quit [Ping timeout: 255 seconds]
ged is now known as Guest87435
JoshS has quit [Quit: Leaving]
sepp2k has quit [Quit: Leaving.]
aremaref has quit [Ping timeout: 240 seconds]
xen0fon has quit [Quit: xen0fon]
jud has joined #ruby
jud has joined #ruby
jud has quit [Changing host]
Terens has joined #ruby
AndBobsYourUncle has quit [Remote host closed the connection]
AndBobsYourUncle has joined #ruby
AndBobsYourUncle has quit [Remote host closed the connection]
username_ has quit [Ping timeout: 245 seconds]
AndBobsYourUncle has joined #ruby
petrichorx_ has quit [Quit: Connection closed for inactivity]
Fernando-Basso has joined #ruby
jud has quit [Ping timeout: 240 seconds]
enyo_ has joined #ruby
jud has joined #ruby
seraph has joined #ruby
eelster is now known as eelster[PHI]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
seraph has quit [Remote host closed the connection]
seraph has joined #ruby
seraph has quit [Remote host closed the connection]
enyo_ has quit [Ping timeout: 260 seconds]
jackjackdripper has joined #ruby
username_ has joined #ruby
osboxes has quit [Ping timeout: 240 seconds]
JeanCarloMachado has joined #ruby
solocshaw has quit [Ping timeout: 255 seconds]
eaxxae has joined #ruby
eaxxae has joined #ruby
sepp2k has joined #ruby
binaryplease has quit [Ping timeout: 258 seconds]
harfangk has quit [Quit: Textual IRC Client: www.textualapp.com]
Pupeno has joined #ruby
DaAwesomeP has quit [Ping timeout: 260 seconds]
quaristice has quit [Remote host closed the connection]
jud has quit [Ping timeout: 258 seconds]
gloscombe has quit [Quit: gloscombe]
LoneHerm_ has joined #ruby
arquebus has joined #ruby
x00r__ has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 248 seconds]
AndBobsYourUncle has joined #ruby
Terens has quit [Ping timeout: 255 seconds]
the_drow has joined #ruby
the_drow has quit [Remote host closed the connection]
fishcooker has joined #ruby
marr has joined #ruby
gloscombe has joined #ruby
jud has joined #ruby
jud has quit [Changing host]
jud has joined #ruby
LoneHerm_ has quit [Ping timeout: 255 seconds]
jud^ has joined #ruby
<eelster[PHI]> >> puts 'is ruby[bot] back yet?'
<ruby[bot]> eelster[PHI]: # => is ruby[bot] back yet? ...check link for more (https://eval.in/711559)
<fishcooker> what will it do on the cronjob file when this whenever deployed https://gist.github.com/chikatambun/97c81a4eb753ec0aae7fb395052658a0
<eelster[PHI]> YES !
username_ has quit [Ping timeout: 258 seconds]
naprimer has joined #ruby
<fishcooker> is ruby take the host's local time or its time?
jud has quit [Ping timeout: 248 seconds]
<eelster[PHI]> fishcooker: Depends upon how you do it
domgetter has joined #ruby
flashbang has quit [Quit: ERC (IRC client for Emacs 25.1.1)]
<eelster[PHI]> Both are possible
<eelster[PHI]> >> puts Time.now.getlocal
<ruby[bot]> eelster[PHI]: # => 2017-01-07 19:48:01 +0000 ...check link for more (https://eval.in/711560)
<eelster[PHI]> >> puts Time.now.getutc
<ruby[bot]> eelster[PHI]: # => 2017-01-07 19:48:07 UTC ...check link for more (https://eval.in/711561)
<eelster[PHI]> (Well ruby[bot] is at UTC, but that's how you can get either)
Terens has joined #ruby
nankyokusei has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
AndBobsYourUncle has joined #ruby
bhaak has joined #ruby
jud has joined #ruby
jud^ has quit [Ping timeout: 240 seconds]
<ytti> pretty sure he's talking about some client/server thing, possibly rails
<ytti> and asking if it's showing client time or server time
nankyokusei has quit [Ping timeout: 258 seconds]
ARCADIVS has quit [Quit: ARCADIVS]
<ytti> and you're answering it can show server time in UTC or local TZ
<ytti> if i understood correctly, answer, outside of using ironruby, is that time will be server time
<eelster[PHI]> Oh, I thought he meant UTC vs. Local
aidalgol has joined #ruby
<eelster[PHI]> I believe if you use `l` you can do local time, but I'd just implement that in JS
<eelster[PHI]> Unless you need to do validation, where you'd obviously want to do server side validation, but I generally do server side time validation with respect to the hosting time zone.
dionysus69 has joined #ruby
centrx has quit []
AndBobsYourUncle has quit [Remote host closed the connection]
AndBobsYourUncle has joined #ruby
jhack has joined #ruby
AndBobsYourUncle has quit [Remote host closed the connection]
s2013 has quit [Read error: Connection reset by peer]
jud^ has joined #ruby
AndBobsYourUncle has joined #ruby
jhack has quit [Client Quit]
jud has quit [Ping timeout: 248 seconds]
skweek has quit [Ping timeout: 245 seconds]
jhack has joined #ruby
arquebus has quit [Quit: Leaving]
DaAwesomeP has joined #ruby
xen0fon has joined #ruby
evertversteeg has joined #ruby
enilsen16 has joined #ruby
aremaref has joined #ruby
DaAwesomeP has quit [Ping timeout: 260 seconds]
ifctj has joined #ruby
houhoulis has joined #ruby
<eelster[PHI]> >> RUBY_VERSION
<ruby[bot]> eelster[PHI]: # => "2.3.0" (https://eval.in/711562)
<eelster[PHI]> ruby[bot]: I thought you were offline because you were upgrading to 2.4.0 :(
JoshS has joined #ruby
<Mon_Ouie> Being off
<eelster[PHI]> Mon_Ouie: ?
<Mon_Ouie> Being offline does not affect the ruby version, since it's the website that does the evaluation
<Mon_Ouie> You can see all the supported versions on eval.in
<eelster[PHI]> Ohh. I thought that someone took ruby[bot] offline because eval.in was upgrading versions.
Guest87435 is now known as ged
ged is now known as Guest24261
<apeiros> eelster[PHI]: that would not have taken so long
<eelster[PHI]> apeiros: That's true.
<apeiros> I'm not sure what had happened, but I guess ruboto was still stuck on "the other side" of a netsplit
<eelster[PHI]> That makes sense
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
aremaref has quit [Ping timeout: 240 seconds]
Evesy has joined #ruby
dviola has joined #ruby
<eelster[PHI]> Not to sound like a moron, but what is a netsplit
AndBobsYourUncle has joined #ruby
<lupine> irc clients connect to irc servers. irc networks are composed of many irc servers connected to each other
Evesy has quit [Client Quit]
<lupine> a netsplit is when an irc network undergoes partition, such that some servers (and so clients) can't talk to each other
<eelster[PHI]> Oh, that makes a lot of sense!
<eelster[PHI]> lupine: Thanks!
JeanCarloMachado has quit [Ping timeout: 255 seconds]
flying has joined #ruby
xen0fon has quit [Quit: xen0fon]
Puffball has quit [Quit: No Ping reply in 180 seconds.]
eelster[PHI] is now known as eelster[AFK]
foption has joined #ruby
foption has quit [Remote host closed the connection]
aremaref has joined #ruby
Terens has quit []
Puffball has joined #ruby
mooe has joined #ruby
alex______ has joined #ruby
eaxxae has quit [Quit: This computer has gone to sleep]
gloscombe has quit [Quit: gloscombe]
sarbs has quit [Ping timeout: 246 seconds]
sarbs has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
Puffball has quit [Quit: No Ping reply in 180 seconds.]
AndBobsYourUncle has joined #ruby
Puffball has joined #ruby
alex______ is now known as a_le_x
duckpuppy has joined #ruby
Bob8989|2 has joined #ruby
dcunit3d has quit [Ping timeout: 272 seconds]
Sembei has joined #ruby
gloscombe has joined #ruby
foption has joined #ruby
braincrash has quit [Ping timeout: 246 seconds]
duckpuppy has quit [Ping timeout: 240 seconds]
dionysus69 has quit [Ping timeout: 255 seconds]
cdg has quit [Remote host closed the connection]
hahuang61 has joined #ruby
enyo_ has joined #ruby
hahuang61 has quit [Ping timeout: 255 seconds]
enyo_ has quit [Ping timeout: 260 seconds]
swills has quit [Quit: Leaving]
minimalism has joined #ruby
gloscombe has quit [Quit: gloscombe]
eelster[AFK] is now known as eelster[NYG]
newbie1 has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
eaxxae has joined #ruby
braincrash has joined #ruby
demo has joined #ruby
AndBobsYourUncle has joined #ruby
mello has quit [Changing host]
mello has joined #ruby
jhack has quit [Quit: jhack]
demo has quit [Client Quit]
LoneHerm_ has joined #ruby
Pupeno has quit [Remote host closed the connection]
skweek has joined #ruby
jhack has joined #ruby
mello has quit [Quit: Lost terminal]
biberu has quit [Read error: Connection reset by peer]
Puffball_ has joined #ruby
testuser1 has quit [Quit: Leaving.]
LoneHerm_ has quit [Remote host closed the connection]
enterprisey has quit [Remote host closed the connection]
blandflakes has joined #ruby
Guest24261 is now known as ged
mello has joined #ruby
flashbang has joined #ruby
ged is now known as Guest43913
flying has quit []
CloCkWeRX has joined #ruby
braincrash has quit [Ping timeout: 258 seconds]
spacheco has quit [Remote host closed the connection]
spacheco has joined #ruby
<ta> I was wondering, is there an easy way to make all inherited methods private?
ifctj has quit [Ping timeout: 248 seconds]
x00r__ has quit [Ping timeout: 240 seconds]
spacheco has quit [Ping timeout: 260 seconds]
gigetoo has quit [Ping timeout: 258 seconds]
gigetoo has joined #ruby
marcdel has quit [Ping timeout: 255 seconds]
<ta> and does it even make sense
flying has joined #ruby
gloscombe has joined #ruby
marcdel has joined #ruby
eelster[NYG] has quit [Ping timeout: 245 seconds]
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
braincrash has joined #ruby
cdg has joined #ruby
marcdel has quit [Ping timeout: 240 seconds]
AndBobsYourUncle has joined #ruby
nankyokusei has joined #ruby
brent__ has joined #ruby
marcdel has joined #ruby
kobain has joined #ruby
cdg has quit [Ping timeout: 240 seconds]
nankyokusei has quit [Ping timeout: 240 seconds]
flying has quit [Remote host closed the connection]
username_ has joined #ruby
flying has joined #ruby
flying has quit [Remote host closed the connection]
flying has joined #ruby
izaakf has quit [Quit: Page closed]
<apeiros> ta: not sure it makes sense. `private *(instance_methods - instance_methods(false))`
bruno-_ has joined #ruby
duckpuppy has joined #ruby
<ta> apeiros: thx, the use-case sort of hiding inherited methods when `class SomeModel < SomeORM` - and write "views" instead on SomeModel
conta has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
<ta> the thought sprung from poking around in various implementations of the repository pattern
last_staff has joined #ruby
AndBobsYourUncle has joined #ruby
duckpuppy has quit [Ping timeout: 240 seconds]
conta has quit [Ping timeout: 258 seconds]
eaxxae has quit [Quit: This computer has gone to sleep]
MyMind has joined #ruby
Sembei has quit [Ping timeout: 255 seconds]
myk267 has quit [Quit: :q!]
brent__ has quit [Remote host closed the connection]
nanoz has quit [Read error: Connection reset by peer]
foption has quit [Remote host closed the connection]
jhack has quit [Quit: jhack]
Coldblackice has quit []
last_staff has quit [Quit: last_staff]
dcunit3d has joined #ruby
kobain has quit [Ping timeout: 260 seconds]
newbie1 has quit [Read error: Connection reset by peer]
newbie1 has joined #ruby
dcunit3d has quit [Ping timeout: 255 seconds]
LoneHerm_ has joined #ruby
JoshS has quit [Quit: Leaving]
pawnbox has quit [Ping timeout: 255 seconds]
bruno-_ has quit [Quit: leaving]
anisha has joined #ruby
bruno-_ has joined #ruby
JeanCarloMachado has joined #ruby
bruno-_ has quit [Client Quit]
bruno-_ has joined #ruby
bruno-_ has quit [Client Quit]
Azure has joined #ruby
bruno-_ has joined #ruby
bruno-_ has quit [Client Quit]
sneakerhax has joined #ruby
Derperpe1 has quit [Ping timeout: 248 seconds]
araujo has quit [Ping timeout: 255 seconds]
Guest43913 is now known as ged
ged is now known as Guest80576
JeanCarloMachado has quit [Ping timeout: 255 seconds]
araujo has joined #ruby
araujo has joined #ruby
araujo has quit [Changing host]
anisha has quit [Quit: This computer has gone to sleep]
SuperLag has quit [Quit: re-ip ftw]
LoneHerm_ has quit [Remote host closed the connection]
ledestin has joined #ruby
aspiers has joined #ruby
cyphase has quit [Ping timeout: 248 seconds]
cyphase has joined #ruby
<blackbom1> makes no sense to me.
<blackbom1> what would it achieve?
ledestin has quit [Ping timeout: 240 seconds]
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
cdg has joined #ruby
aremaref has quit [Ping timeout: 248 seconds]
enyo_ has joined #ruby
Derperpe1 has joined #ruby
Jackneill_ has quit [Read error: Connection reset by peer]
Gasher has joined #ruby
Fernando-Basso has quit [Ping timeout: 255 seconds]
enyo_ has quit [Ping timeout: 258 seconds]
blandflakes has joined #ruby
fantasticsid has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
saneax-_-|AFK is now known as saneax
JeanCarloMachado has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 255 seconds]
saneax is now known as saneax-_-|AFK
eaxxae has joined #ruby
eaxxae has quit [Remote host closed the connection]
hahuang61 has joined #ruby
AndBobsYourUncle has joined #ruby
AndBobsYourUncle has quit [Remote host closed the connection]
AndBobsYourUncle has joined #ruby
AndBobsYourUncle has quit [Remote host closed the connection]
hotpancakes has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 255 seconds]
AndBobsYourUncle has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
workmad3 has joined #ruby
xen0fon has joined #ruby
xen0fon has quit [Client Quit]
newbie1 has quit [Ping timeout: 258 seconds]
mooe has quit [Quit: Connection closed for inactivity]
AndBobsYourUncle has quit [Remote host closed the connection]
AndBobsYourUncle has joined #ruby
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
fantasticsid has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 260 seconds]
howdoi has quit [Quit: Connection closed for inactivity]
saneax-_-|AFK is now known as saneax
JeanCarloMachado has quit [Ping timeout: 248 seconds]
Pupeno has joined #ruby
Pupeno has joined #ruby
Pupeno has quit [Changing host]
KeyJoo has quit [Quit: Page closed]
ddffg has quit [Quit: Leaving]
sneakerhax has quit [Ping timeout: 255 seconds]
yeticry_ has joined #ruby
TreyG has quit [Ping timeout: 258 seconds]
hotpancakes has joined #ruby
yeticry has quit [Ping timeout: 248 seconds]
shayan_ has joined #ruby
shayan_ has quit [Client Quit]
shayan_ has joined #ruby
machinewar has joined #ruby
kobain has joined #ruby
eaxxae has joined #ruby
eaxxae has quit [Remote host closed the connection]
DarthGandalf has quit [Remote host closed the connection]
machinewar has quit []
nankyokusei has joined #ruby
s1kx has quit [Quit: s1kx]
Guest80576 is now known as ged
cdg_ has joined #ruby
ged is now known as Guest32445
cdg has quit [Ping timeout: 255 seconds]
nankyokusei has quit [Ping timeout: 240 seconds]
polysics has quit [Remote host closed the connection]
enterprisey has joined #ruby