fuhgeddaboudit has quit [Remote host closed the connection]
<ruby-lang266>
quick beginner question: if a class created a hash in it's initialise method, and the hash could potentially be extended in the future to include more values, would it make sense to extract the hash into a module so that the class remained closed to modification?
thumpba has joined #ruby-lang
<bnagy>
ruby-lang266: classes are never closed to modification in ruby
<bnagy>
also, adding values to a hash isn't 'extending' it
<apeiros>
ruby-lang266: just copy the hash with dup
<ruby-lang266>
right - I'm thinking about the open/closed principle here - if I add a new behaviour to this system I'd rather not need to add more code to this class which is why I was thinking of pulling out the hash.
<|jemc|>
bnagy: let's muddy the waters here and say:
<ruby-lang266>
disclamer - I am a native .net developer so I'm probably bringing some baggage with me into the Ruby world.
* womble
is of the mindset that if only certain keys are valid in a hash, then it *probably* shouldn't be a hash
<bnagy>
ok, well (just imho) I am not a fan of making custom classes that are basically just basic data storage types with different names
<bnagy>
but if you're going to then compose, don't inherit
matp has quit [Ping timeout: 256 seconds]
<bnagy>
what is this hash doing, anyway. Give more detail, get better idiomatic pattern advice :)
<ruby-lang266>
I would usually be using an IoC container but it doesn't seem to be a big pattern with ruby which makes me think I don't need it. bnagy: is MyModule::my_method considered inheritance? Or is that basically a static method in a name spec?
<ruby-lang266>
*namespace
emmesswhy has quit [Read error: Connection reset by peer]
<bnagy>
inheritance would look like MyStupidConfigClass < Hash
NoNMaDDeN has joined #ruby-lang
<bnagy>
as opposed to MyLessStupidButStillABitStupidConfigClass < DelegateClass(Hash)
<apeiros>
ruby-lang266: there are only instance methods in ruby. classes and modules are objects.
Lingos_ has joined #ruby-lang
<bnagy>
still in the realm of general advice, imho ruby uses less of the protected / open / closed patterns than some other languages
thumpba has quit [Remote host closed the connection]
<bnagy>
given that they're largely pointless, so they're really only useful for readability and conveying intent
<ruby-lang266>
Basically I refactored some conditionals and replaced them with a hash lookup, so instead of if this, create this type - it just looks up the type in a hash. It's like a poor mans strategy pattern.
<bnagy>
bear in mind that not every rubyist will agree with all of the stuff I'm saying here
mattyohe has quit [Quit: Connection closed for inactivity]
<bnagy>
well based on that tiny amount of info, I'd probably prefer to see it written as a case statement
NoNMaDDeN has quit [Ping timeout: 244 seconds]
Lingos_ has quit [Ping timeout: 250 seconds]
<bnagy>
you can do some nice looking stuff with when *[ThisClass, ThatClass] ... when OtherClass ...
tharindu_ has quit [Ping timeout: 245 seconds]
nicolastarzia has quit []
<bnagy>
which has been called when-be-splat if you want to google
<ruby-lang266>
when-be-splat, cheers I'll take a look at that
<bnagy>
but it's a smelly pattern because it's not duck typed
<ruby-lang266>
ok I googled it - I don't like it :) I think I'll continue on refactoring towards a strategy and then spend some time reading about modules afterwards.
danijoo has joined #ruby-lang
matp has joined #ruby-lang
nofxx_ has joined #ruby-lang
thumpba has joined #ruby-lang
<|jemc|>
ruby-lang266: good plan - it's a great opportunity for you to experiment and get to know the range of your options
matp_ has quit [Ping timeout: 272 seconds]
jo__ has joined #ruby-lang
snsei has quit [Remote host closed the connection]
pricees has joined #ruby-lang
yusuf has joined #ruby-lang
yusuf has quit [Max SendQ exceeded]
diegoviola has quit [Quit: WeeChat 1.0.1]
yusuf has joined #ruby-lang
pricees has quit [Ping timeout: 265 seconds]
diegoviola has joined #ruby-lang
thumpba has quit [Remote host closed the connection]
rickyrickyrice has quit [Remote host closed the connection]
rickyrickyrice has joined #ruby-lang
thumpba has joined #ruby-lang
bpot has left #ruby-lang [#ruby-lang]
shinnya has quit [Ping timeout: 255 seconds]
snsei has joined #ruby-lang
marr has quit [Ping timeout: 245 seconds]
amsha has joined #ruby-lang
<ruby-lang266>
what are peoples feelings towards immutable data types in ruby using public attr_reader and private attr_writer methods in a class?
<banister>
ruby-lang266 sounds fine to me
<banister>
ruby-lang266 though you don't even need the attr_writer in that case
<banister>
just update the ivar directly
jimbach has joined #ruby-lang
<|jemc|>
ruby-lang266: sounds reasonable; though you should know a user can always get to private methods or instance variables through one way or another - it's just considered bad practice, and a sign that the user's code is likely to break things or be broken
j4cknewt has joined #ruby-lang
amsha has quit [Ping timeout: 272 seconds]
<|jemc|>
ruby-lang266: the public/private distinction is often used to denote "public API" vs "private implementation detail that could change at any time"
jimbach_ has joined #ruby-lang
<|jemc|>
If you're trying to make things actually immutable, take a look at the #freeze method
<|jemc|>
there are various gems that also may be interesting to you for immutability, including "hamster" and "ice_nine"
nathanstitt has quit [Quit: I growing sleepy]
<ruby-lang266>
in retrospect I think I was just going for public api vs private implementation detail.
jimbach has quit [Ping timeout: 258 seconds]
<ruby-lang266>
but thanks for the heads up on the gems
tkuchiki has joined #ruby-lang
spastorino has quit [Quit: Connection closed for inactivity]
snsei has quit [Remote host closed the connection]
j4cknewt_ has joined #ruby-lang
rickyrickyrice has quit [Remote host closed the connection]
j4cknewt has quit [Ping timeout: 255 seconds]
nathanstitt has joined #ruby-lang
dziemid has joined #ruby-lang
lele|w has quit [Ping timeout: 272 seconds]
j4cknewt_ has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
nofxx_ has quit [Remote host closed the connection]
lcdhoffman has joined #ruby-lang
dziemid has quit [Remote host closed the connection]
oleo__ has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
oleo is now known as Guest52034
Guest52034 has quit [Ping timeout: 255 seconds]
lele|w has joined #ruby-lang
thumpba has quit []
dziemid has joined #ruby-lang
Lingos_ has joined #ruby-lang
parzzix has quit [Ping timeout: 272 seconds]
lele has quit [Ping timeout: 265 seconds]
Lingos_ has quit [Ping timeout: 255 seconds]
lele|w has quit [Ping timeout: 240 seconds]
g0bl1n has joined #ruby-lang
parzzix has joined #ruby-lang
lele has joined #ruby-lang
NoNMaDDeN has joined #ruby-lang
lele|w has joined #ruby-lang
momomomomo has quit [Quit: momomomomo]
pricees has joined #ruby-lang
NoNMaDDeN has quit [Ping timeout: 255 seconds]
jimbach_ has quit [Remote host closed the connection]
jimbach has joined #ruby-lang
pricees has quit [Ping timeout: 264 seconds]
j4cknewt has joined #ruby-lang
apascasio has joined #ruby-lang
jimbach has quit [Remote host closed the connection]
jimbach has joined #ruby-lang
cleopatra has quit [Quit: Saliendo]
sirene is now known as cleopatra
bmichelsen has quit [Quit: ZZZzzz…]
chussenot_ has joined #ruby-lang
hahuang61 has quit [Ping timeout: 272 seconds]
jimbach has quit [Ping timeout: 258 seconds]
chussenot has quit [Ping timeout: 240 seconds]
chussenot_ is now known as chussenot
red_menace has quit []
rickyrickyrice has joined #ruby-lang
rickyrickyrice has quit [Ping timeout: 240 seconds]
arrubin has quit []
bahar has quit [Ping timeout: 255 seconds]
amsha has joined #ruby-lang
dziemid has quit [Remote host closed the connection]
bahar has joined #ruby-lang
SuMo_D has joined #ruby-lang
j4cknewt_ has joined #ruby-lang
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
j4cknewt has quit [Read error: Connection reset by peer]
amsha has quit [Ping timeout: 244 seconds]
NoNMaDDeN has joined #ruby-lang
bahar has quit [Ping timeout: 272 seconds]
hramrach_ has quit [Ping timeout: 250 seconds]
bahar has joined #ruby-lang
SuMo_D has quit [Ping timeout: 264 seconds]
ZaRDaK has quit [Read error: Connection reset by peer]
ZaRDaK has joined #ruby-lang
slawrence00 has joined #ruby-lang
amystephen has quit [Quit: amystephen]
hramrach_ has joined #ruby-lang
cornerma1 has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
cornerman has quit [Ping timeout: 244 seconds]
cornerma1 is now known as cornerman
apascasio has quit [Quit: Saliendo]
j4cknewt_ has quit [Remote host closed the connection]
Kero has quit [Ping timeout: 255 seconds]
kyb3r_ has quit [Read error: Connection reset by peer]
Kero has joined #ruby-lang
kyb3r_ has joined #ruby-lang
Kero is now known as Guest44592
lcdhoffman has quit [Quit: lcdhoffman]
klmlfl has joined #ruby-lang
mistym has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
Lingos_ has joined #ruby-lang
g0bl1n has quit [Ping timeout: 250 seconds]
Lingos_ has quit [Ping timeout: 244 seconds]
dziemid has joined #ruby-lang
SuMo_D has joined #ruby-lang
mistym has joined #ruby-lang
dziemid has quit [Ping timeout: 250 seconds]
SuMo_D has quit [Ping timeout: 255 seconds]
flori has quit [Ping timeout: 245 seconds]
flori has joined #ruby-lang
pricees has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
pricees has quit [Ping timeout: 272 seconds]
klmlfl has quit [Remote host closed the connection]
gix has quit [Ping timeout: 265 seconds]
gix has joined #ruby-lang
ur5us has quit [Ping timeout: 240 seconds]
gianlucadv_ has joined #ruby-lang
|jemc| has quit [Ping timeout: 240 seconds]
tkuchiki has quit [Ping timeout: 255 seconds]
|jemc| has joined #ruby-lang
lcdhoffman has joined #ruby-lang
NoNMaDDeN has quit [Remote host closed the connection]
arBmind has joined #ruby-lang
tkuchiki has joined #ruby-lang
arBmind1 has quit [Ping timeout: 240 seconds]
<zenspider>
private attr_writer shouldn't even be possible, tho it is. it does warn when you create one
jo__ has quit [Quit: Connection closed for inactivity]
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
amsha has joined #ruby-lang
Nexus_x1 has quit [Quit: (null)]
lcdhoffman has quit [Quit: lcdhoffman]
amsha has quit [Ping timeout: 258 seconds]
j4cknewt has joined #ruby-lang
koderok has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
dziemid has joined #ruby-lang
SuMo_D has joined #ruby-lang
amystephen has joined #ruby-lang
dziemid has quit [Ping timeout: 250 seconds]
SuMo_D has quit [Ping timeout: 245 seconds]
AKASkip has joined #ruby-lang
NoNMaDDeN has joined #ruby-lang
|jemc| has quit [Read error: Connection reset by peer]
koderok has quit [Quit: koderok]
shubhamgoyal has quit [Remote host closed the connection]
dziemid has joined #ruby-lang
siwica has joined #ruby-lang
siwica has quit [Remote host closed the connection]
AKASkip has quit [Ping timeout: 250 seconds]
simi has joined #ruby-lang
Averna has quit [Quit: Leaving.]
araujo has quit [Quit: Leaving]
Lingos_ has joined #ruby-lang
havenwood has joined #ruby-lang
yusuf has quit [Quit: Leaving.]
NoNMaDDeN has quit [Remote host closed the connection]
Lingos_ has quit [Ping timeout: 255 seconds]
KINGSABRI has quit [Ping timeout: 245 seconds]
ZaRDaK has quit [Read error: Connection reset by peer]
gianlucadv_ has quit [Ping timeout: 244 seconds]
fedexo has quit [Ping timeout: 244 seconds]
parzzix has quit [Read error: Connection reset by peer]
dziemid has quit []
saramic has quit [Remote host closed the connection]
hahuang61 has joined #ruby-lang
pricees has joined #ruby-lang
SuMo_D has joined #ruby-lang
Sunlorhic has joined #ruby-lang
pricees has quit [Ping timeout: 255 seconds]
SuMo_D has quit [Ping timeout: 264 seconds]
AKASkip has joined #ruby-lang
ahmetkapikiran has quit [Quit: ahmetkapikiran]
ahmetkapikiran has joined #ruby-lang
ahmetkapikiran has quit [Client Quit]
parzzix has joined #ruby-lang
miqui has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
NoNMaDDeN has joined #ruby-lang
yusuf has joined #ruby-lang
ruby-lang266 has quit [Ping timeout: 246 seconds]
simi has quit [Ping timeout: 264 seconds]
amsha has joined #ruby-lang
lcdhoffman has joined #ruby-lang
zenspider has quit [Quit: bye]
amsha has quit [Ping timeout: 258 seconds]
rahul_j has joined #ruby-lang
mistym has joined #ruby-lang
zenspider has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
havenwood has quit []
havenwood has joined #ruby-lang
oleo__ has quit [Quit: Verlassend]
[spoiler] has joined #ruby-lang
q_leonetti has joined #ruby-lang
hahuang61 has quit [Ping timeout: 258 seconds]
ta has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
MSY has joined #ruby-lang
MSY is now known as Guest2671
SuMo_D has quit [Ping timeout: 240 seconds]
<yorickpeterse>
morning
snsei has joined #ruby-lang
<havenwood>
g'morn
rahul_j has quit [Quit: rahul_j]
miqui_ has quit [Ping timeout: 240 seconds]
rahul_j has joined #ruby-lang
clauswitt has joined #ruby-lang
clauswi__ has joined #ruby-lang
clauswitt has quit [Ping timeout: 256 seconds]
snsei has quit [Quit: Leaving...I hear my mom calling...]
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Lingos_ has joined #ruby-lang
Forgetful_Lion has joined #ruby-lang
mistym_ has joined #ruby-lang
allomov has joined #ruby-lang
SuMo_D has joined #ruby-lang
Lingos_ has quit [Ping timeout: 245 seconds]
mistym has quit [Ping timeout: 264 seconds]
SuMo_D has quit [Ping timeout: 255 seconds]
jg has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
pricees has joined #ruby-lang
<[spoiler]>
morning pees
<[spoiler]>
pees
<[spoiler]>
peeps
pricees has quit [Ping timeout: 272 seconds]
solars has joined #ruby-lang
<yorickpeterse>
"We're doing maintenance with central heating below you, so we'll need to turn off your heating for a bit. We'll be there at 08:15"
<yorickpeterse>
it's now 09:02, still nobody in sight
<[spoiler]>
yorickpeterse, maybe they were there, but they are ninjas
<yorickpeterse>
I've been awake since 07:00
j4cknewt has joined #ruby-lang
<yorickpeterse>
honestly if these people aren't here before 10 I'm off to the office
<[spoiler]>
oh
<[spoiler]>
you're home?
<[spoiler]>
When they schedule work at 8 am here, they don't arrive until after noon :/
ta has joined #ruby-lang
SuMo_D has joined #ruby-lang
<yorickpeterse>
HAHAHAHA
<yorickpeterse>
I'm on the phone
<yorickpeterse>
they fucked up
<yorickpeterse>
"Sorry the dude got the wrong assignment. Can we reschedule?"
j4cknewt has quit [Ping timeout: 250 seconds]
<yorickpeterse>
well, did I just miss my fucking train
<yorickpeterse>
if they called 10 minutes earlier I could've made it
arBmind has quit [Quit: Leaving.]
yatish27 has quit [Remote host closed the connection]
RitterJack has joined #ruby-lang
yatish27 has joined #ruby-lang
SuMo_D has quit [Ping timeout: 265 seconds]
mamantoha has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
yatish27 has quit [Ping timeout: 265 seconds]
rahul_j has joined #ruby-lang
mistym_ has quit [Remote host closed the connection]
JohnBat26 has joined #ruby-lang
arBmind has joined #ruby-lang
SuMo_D has joined #ruby-lang
Asher1 has joined #ruby-lang
futilegames has quit [Quit: futilegames]
SuMo_D has quit [Remote host closed the connection]
amsha has joined #ruby-lang
Asher has quit [Ping timeout: 245 seconds]
SuMo_D has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
chussenot has quit [Quit: chussenot]
SuMo_D has joined #ruby-lang
amsha has quit [Ping timeout: 272 seconds]
kyb3r_ has quit [Read error: Connection reset by peer]
fusillicode has joined #ruby-lang
allomov has quit [Remote host closed the connection]
fusillicode1 has quit [Ping timeout: 240 seconds]
SuMo_D has quit [Remote host closed the connection]
Miphix has quit [Quit: Leaving]
Miphix has joined #ruby-lang
chussenot has joined #ruby-lang
rahul_j has quit [Ping timeout: 245 seconds]
rahul_j has joined #ruby-lang
hhatch has joined #ruby-lang
spastorino has joined #ruby-lang
jmrepetti has joined #ruby-lang
futilegames has joined #ruby-lang
RitterJack has quit [Ping timeout: 245 seconds]
allomov has joined #ruby-lang
vieq has quit [Ping timeout: 272 seconds]
vieq has joined #ruby-lang
dangerousdave has joined #ruby-lang
dangerousdave has quit [Client Quit]
RitterJack has joined #ruby-lang
GBrawl has joined #ruby-lang
workmad3 has joined #ruby-lang
GBrawl has quit [Client Quit]
tbuehlmann has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
jmrepetti has joined #ruby-lang
jmrepetti has quit [Read error: Connection reset by peer]
jmrepetti has joined #ruby-lang
pricees has joined #ruby-lang
pricees has quit [Ping timeout: 265 seconds]
Xzanron has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
marr has joined #ruby-lang
charliesome has joined #ruby-lang
Guest2671 has quit [Quit: This computer has gone to sleep]
mkaesz has joined #ruby-lang
yusuf has quit [Quit: Leaving.]
Guest2671 has joined #ruby-lang
rahul_j has joined #ruby-lang
GBrawl has joined #ruby-lang
AmBienCeD has joined #ruby-lang
amsha has joined #ruby-lang
GBrawl has quit [Client Quit]
GBrawl has joined #ruby-lang
benlovell has joined #ruby-lang
shubhamgoyal has quit [Remote host closed the connection]
amsha has quit [Ping timeout: 256 seconds]
GBrawl has quit [Read error: Connection reset by peer]
dangerousdave has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
Xzanron has quit [Read error: Connection reset by peer]
stef204 has joined #ruby-lang
ldnunes has joined #ruby-lang
ruby-lang329 has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
<ruby-lang329>
hi guys
tkuchiki has quit [Remote host closed the connection]
<ruby-lang329>
anyone who could help me out with rbtrace error
tkuchiki has joined #ruby-lang
<ruby-lang329>
I am getting this error ```send_cmd': command is too long (ArgumentError)```
<ruby-lang329>
and after running this command ```rbtrace -p PID -e 'Thread.new{require "objspace"; ObjectSpace.trace_object_allocations_start; GC.start(); ObjectSpace.dump_all(output: File.open("heap.json", "w"))}.join' ```
<ruby-lang329>
I am getting that above error
<bnagy>
ruby-lang329: uh.. seems like it's right there in the post you linked
<bnagy>
By the way, in some cases you may run up against a maximum command length that you can send to rbtrace. You'll need to put the main body of your command in a file and load that file in your rbtrace call to work around this.
<ljarvis>
dat copy and paste doe
NoNMaDDeN has quit [Remote host closed the connection]
shubhamgoyal has quit [Remote host closed the connection]
tkuchiki has quit [Ping timeout: 250 seconds]
<ruby-lang329>
yea I saw that
<ruby-lang329>
was trying implement that but couldn't
<ruby-lang329>
if I have loaded the commands in a file
<ruby-lang329>
how do I sent that file as an argument to rbtrace command
<ruby-lang329>
there is just -e option to send a ruby expression
benlovell has quit [Ping timeout: 255 seconds]
<bnagy>
ie 'load "myfile.rb"'
<bnagy>
s/ie/-e/
<ruby-lang329>
ok thanks let me try that
<bnagy>
ruby-lang329: fwiw, if it's at all possibly to switch to jruby for a bit you can use the free / awesome java profiling tools
mikecmpbll has joined #ruby-lang
<bnagy>
which are all visual and stuff. They have graphs.
<ruby-lang329>
ok well I am trying to find out the memory leaks in my rails app hosted on heroku
<ruby-lang329>
been seeing a lot of R14 errors
<ruby-lang329>
this was the article I got closest to
<bnagy>
k well I don't know anything about rails or heroku
<bnagy>
you could register a nick properly and swing past #rubyonrails
<bnagy>
rails people will be the expert at debugging memory leaks ;)
<ruby-lang329>
ok cool thanks a lot
<ruby-lang329>
will try that
shubhamgoyal has joined #ruby-lang
lcdhoffman has joined #ruby-lang
Sunlorhic has quit [Ping timeout: 265 seconds]
ruby-lang329 has quit [Quit: Page closed]
Sunlorhic has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
dangerousdave has quit [Ping timeout: 244 seconds]
dagda1 has joined #ruby-lang
shubhamgoyal has quit [Remote host closed the connection]
benlovell has joined #ruby-lang
mamantoha has quit [Ping timeout: 258 seconds]
shubhamgoyal has joined #ruby-lang
shemerey has joined #ruby-lang
shemerey has quit [Client Quit]
shemerey_ has joined #ruby-lang
Forgetful_Lion has quit [Ping timeout: 265 seconds]
shemerey_ has quit [Client Quit]
Forgetful_Lion has joined #ruby-lang
Guest2671 has quit [Quit: This computer has gone to sleep]
allomov has quit [Remote host closed the connection]
rippa has joined #ruby-lang
klmlfl has joined #ruby-lang
whippythellama has joined #ruby-lang
dwknoxy has joined #ruby-lang
amsha_ has quit [Quit: Be back later ...]
wm3|away has quit [Ping timeout: 258 seconds]
benlovell has quit [Ping timeout: 272 seconds]
stef204 has joined #ruby-lang
arBmind1 has quit [Quit: Leaving.]
hahuang61 has joined #ruby-lang
j4cknewt has joined #ruby-lang
q_leonetti has quit [Quit: q_leonetti]
lcdhoffman has quit [Quit: lcdhoffman]
goodcodeguy has joined #ruby-lang
<soahccc>
whitequark: I asked because if you would try to puts/use the variable "p" it only works with the long version but not the shortcut
<whitequark>
yes
<whitequark>
that has nothing to do with scope
<whitequark>
`if` never introduces a new scope
<whitequark>
rather this stems from the way bare identifiers are parsed
simi has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
<soahccc>
I suppose it is a feature? The variable is getting defined but it's only accessible after that line (even though the if condition is evaluated before the code in front of it, you don't have the variable there yet)
Guest44592 is now known as Kero
benlovell has joined #ruby-lang
<whitequark>
it's similar to "p x; if false; x = 1; end"
<whitequark>
I won't call this a feature, it's more of an incidental detail
hahuang61 has quit [Ping timeout: 265 seconds]
rahul_j has quit [Quit: rahul_j]
wm3|away has joined #ruby-lang
clauswitt has joined #ruby-lang
slawrenc_ has joined #ruby-lang
nelsonsa_ has joined #ruby-lang
cornerma1 has joined #ruby-lang
ta has joined #ruby-lang
nelsonsar has quit [Ping timeout: 245 seconds]
clauswit_ has joined #ruby-lang
amsha_ has joined #ruby-lang
clauswitt has quit [Ping timeout: 250 seconds]
arBmind has joined #ruby-lang
cornerman has quit [Ping timeout: 240 seconds]
cornerma1 is now known as cornerman
rahul_j has joined #ruby-lang
benlovell has quit [Ping timeout: 265 seconds]
mistym has joined #ruby-lang
mistym has quit [Remote host closed the connection]
mamantoha_ has quit [Ping timeout: 272 seconds]
SuMo_D has joined #ruby-lang
migbar has joined #ruby-lang
dangerousdave has joined #ruby-lang
joast has quit [Quit: Leaving.]
dangerousdave has joined #ruby-lang
dangerousdave has quit [Client Quit]
oleo has quit [Quit: Verlassend]
solars has quit [Ping timeout: 255 seconds]
pricees has quit [Ping timeout: 256 seconds]
rahul_j has quit [Quit: rahul_j]
clauswit_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fusillicode has quit [Read error: No route to host]
michaeldeol has quit [Client Quit]
saramic has joined #ruby-lang
ruby-lang526 has joined #ruby-lang
fusillicode1 has quit [Ping timeout: 255 seconds]
heolix has quit [Ping timeout: 246 seconds]
ruby-lang526 has quit [Client Quit]
michaeldeol has joined #ruby-lang
unpeet has quit [K-Lined]
_fritchie has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
shinnya has joined #ruby-lang
jmrepetti has joined #ruby-lang
centrx has joined #ruby-lang
havenwood has quit [Ping timeout: 250 seconds]
_br_ has quit [Ping timeout: 264 seconds]
nertzy has quit [Read error: Connection reset by peer]
symm-_ has joined #ruby-lang
nertzy has joined #ruby-lang
symm- has quit [Ping timeout: 264 seconds]
hplar has quit [Ping timeout: 244 seconds]
sindork_ has quit [Ping timeout: 250 seconds]
hplar has joined #ruby-lang
jkyle has quit [Ping timeout: 250 seconds]
sindork has joined #ruby-lang
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
benanne has joined #ruby-lang
jkyle has joined #ruby-lang
jkyle is now known as Guest35437
tkuchiki has joined #ruby-lang
<godd2>
Stop violence against mechanical keyboards now!
havenwood has joined #ruby-lang
<yorickpeterse>
godd2: what kind of monster are you that you hurt your precious mechanical keyboard?
banister has quit [Ping timeout: 264 seconds]
<|jemc|>
godd2: So we're more concerned about the keyboard than the violence commited against the indentured people who grew the coffee beans for the latte?
Averna has joined #ruby-lang
dagda1_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<godd2>
It's not my fault the need dentures
pricees has quit [Ping timeout: 256 seconds]
pricees has joined #ruby-lang
dagda1 has joined #ruby-lang
allomov has quit [Remote host closed the connection]
nathanstitt has quit [Ping timeout: 255 seconds]
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]