00:04
Exuma has joined #ruby
00:09
emptyfl4sk has joined #ruby
00:10
_falsebay_ has quit [Read error: Connection reset by peer]
00:11
Technodrome has joined #ruby
00:14
emptyfl4sk has quit [Ping timeout: 248 seconds]
00:14
Azure has quit [Ping timeout: 246 seconds]
00:18
dbugger has quit [Ping timeout: 252 seconds]
00:18
hightower2 has quit [Ping timeout: 268 seconds]
00:19
Azure has joined #ruby
00:24
<
garyserj >
when you pass a key-value pair as an argument to a parameter where the parameter is of the form blah not blah: then is it still called a keyword argument, or just a hash?
00:29
_falsebay_ has joined #ruby
00:30
hightower2 has joined #ruby
00:31
Azure has quit [Ping timeout: 248 seconds]
00:31
CCDelivery has joined #ruby
00:40
fphilipe_ has joined #ruby
00:43
akem_lnvo has joined #ruby
00:45
akem__ has joined #ruby
00:45
fphilipe_ has quit [Ping timeout: 252 seconds]
00:47
sylario has quit [Quit: Connection closed for inactivity]
00:47
lepepe has joined #ruby
00:47
akem_lnvo has quit [Ping timeout: 246 seconds]
00:48
lepepe_ has joined #ruby
00:49
lepepe__ has joined #ruby
00:49
lepepe has quit [Read error: Connection reset by peer]
00:52
lepepe_ has quit [Ping timeout: 258 seconds]
00:55
megamos has quit [Remote host closed the connection]
01:00
Azure has joined #ruby
01:02
Azure|dc has joined #ruby
01:02
schne1der has quit [Ping timeout: 244 seconds]
01:04
brool has joined #ruby
01:05
Azure has quit [Ping timeout: 248 seconds]
01:07
Azure|dc has quit [Ping timeout: 245 seconds]
01:09
megamos has joined #ruby
01:10
CCDelivery has quit [Remote host closed the connection]
01:25
megamos has quit [Ping timeout: 248 seconds]
01:26
queip has quit [Ping timeout: 258 seconds]
01:30
Azure has joined #ruby
01:35
Azure|dc has joined #ruby
01:35
Azure has quit [Read error: Connection reset by peer]
01:38
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
01:41
Azure|dc has quit [Ping timeout: 244 seconds]
01:43
Azure has joined #ruby
01:44
akem__ has quit [Ping timeout: 248 seconds]
01:44
queip has joined #ruby
01:45
Azure has quit [Read error: Connection reset by peer]
01:45
Azure|dc has joined #ruby
01:54
jaequery has joined #ruby
01:56
Azure|dc has quit [Ping timeout: 268 seconds]
02:03
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
02:03
exmortus has quit [Remote host closed the connection]
02:06
exmortus has joined #ruby
02:06
staticx has joined #ruby
02:06
staticx has quit [Remote host closed the connection]
02:08
staticx has joined #ruby
02:10
AJA4350 has quit [Quit: AJA4350]
02:10
emptyfl4sk has joined #ruby
02:10
Azure has joined #ruby
02:11
exmortus has quit [Ping timeout: 248 seconds]
02:15
emptyfl4sk has quit [Ping timeout: 258 seconds]
02:18
tpanarch1st has quit [Ping timeout: 272 seconds]
02:20
chalkmonster has quit [Quit: WeeChat 2.5]
02:27
Exuma has joined #ruby
02:28
chalkmonster has joined #ruby
02:28
chalkmonster has quit [Client Quit]
02:28
Exuma has quit [Client Quit]
02:29
facest has joined #ruby
02:32
kent\n has quit [Read error: Connection reset by peer]
02:33
faces has quit [Ping timeout: 272 seconds]
02:33
kent\n has joined #ruby
02:34
cd has quit [Quit: cd]
02:36
chalkmonster has joined #ruby
02:36
JoL1hAHN has quit [Quit: WeeChat 1.4]
02:37
<
leftylink >
wow, well I had not thought about this working before, but it does. if using colons on the definition site and => on the call site
02:38
<
leftylink >
&>> def f(a, b: :bd, c: :cd) [a, b, c] end; f(:aa, :b => :ba, :c => :ca)
02:38
<
leftylink >
I guess that demystifies how all this handling must go on behind the scenes if you're allowed to use => at call site
02:40
chalkmonster has quit [Client Quit]
02:41
fphilipe_ has joined #ruby
02:41
chalkmonster has joined #ruby
02:42
dviola has quit [Quit: WeeChat 2.5]
02:43
haxx0r has joined #ruby
02:46
<
garyserj >
leftylink: well, if it converts hash to keyword argument, how are we meant to know if it's passing a hash or a keyword argument, when curly braces are omitted?
02:46
fphilipe_ has quit [Ping timeout: 264 seconds]
02:52
ascarter has joined #ruby
02:59
<
leftylink >
that question boils down to "I don't know what this function I'm calling will do with the arguments I'm passing it". that is fundamentally a true statement, we just don't know
03:00
<
leftylink >
unless we have read its code or we believe any contract it professes to adhere to
03:00
orbyt_ has joined #ruby
03:00
<
garyserj >
we are talking about functions with empty bodies here
03:00
akem-lnvo has joined #ruby
03:01
<
leftylink >
my answer doesn't mention or care what the bodies of the functions are
03:01
<
leftylink >
we don't know
03:06
braincrash has quit [Quit: bye bye]
03:08
<
garyserj >
i'm not asking what the function is doing with the arguments though
03:09
<
leftylink >
I see. I must have misunderstood your question then. I apologise for my misunderstanding.
03:09
<
garyserj >
to rephrase. If Ruby is converting hash to keyword argument, how are we meatn to know if Ruby i passsing a hash or a keyword argument to a function when curly braces are omitted?
03:11
Azure has quit [Read error: Connection reset by peer]
03:11
<
leftylink >
well then we should try it and see what happens, and then come to an understanding. what are some potential pieces of code that would disprove a hypothesis
03:11
braincrash has joined #ruby
03:11
Azure has joined #ruby
03:12
<
leftylink >
&>> def f(a, b: :bd) [a, b] end; f(:aa, :b => :ba, :c => :ca)
03:12
<
leftylink >
that is interesting
03:12
<
leftylink >
&>> def f(a, b: :bd) [a, b] end; f(:aa, :b => :ba, ?c => :ca)
03:12
<
leftylink >
that is even more interesting
03:15
noobineer has quit [Ping timeout: 245 seconds]
03:16
<
leftylink >
... should I be worried that I cannot get the exact same result on my computer...
03:17
<
leftylink >
well, it is true that I am running 2.6.3 instead of 2.6.0 like carc.in is. I wouldn't have thought that would change that though
03:17
<
leftylink >
with that exact same code, I actually get `wrong number of arguments (given 2, expected 1) (ArgumentError)`
03:17
<
leftylink >
they're doing with ruby -e
03:18
<
leftylink >
eh, no, I still get the same even if I ruby with ruby -e
03:19
KramerC has quit [Remote host closed the connection]
03:19
<
leftylink >
I wonder if I can find a computer with ruby 2.6.0
03:20
henninb has quit [Quit: leaving]
03:20
KramerC has joined #ruby
03:21
Prira has joined #ruby
03:32
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
03:32
<
leftylink >
&>> def f(a, b: :bd) [a, b] end; p f(:b => :ba, 'asdf' => :ca)
03:32
<
leftylink >
okay, at least that produces the same result
03:32
<
leftylink >
I would have found it unfortunate if it didn't
03:33
<
leftylink >
... not that I ever hope anyone will ever rely on this behaviour
03:36
<
leftylink >
the rule for that one seems obvious though since that was a required positional param
03:37
<
leftylink >
&>> def f(a = :adef, b: :bdef) [a, b] end; p f(:b => :bact, 'asdf' => :asdf)
03:37
<
leftylink >
are you serious
03:38
<
leftylink >
&>> def f(a = :adef, b: :bdef) [a, b] end; p f(:b => :bact, 'asdf' => :asdf)
03:38
<
leftylink >
okay, that is actually pretty unfortunate, since it gives a different result on my computer
03:38
<
leftylink >
that being [{"asdf"=>:asdf}, :bact]
03:39
<
leftylink >
which is pretty unintuitive if you think about it
03:39
orbyt_ has joined #ruby
03:42
gix- has joined #ruby
03:42
gix has quit [Disconnected by services]
03:46
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
03:47
Technodrome has joined #ruby
04:08
Freshnuts has joined #ruby
04:11
emptyfl4sk has joined #ruby
04:15
_whitelogger has joined #ruby
04:16
emptyfl4sk has quit [Ping timeout: 245 seconds]
04:20
Exuma has joined #ruby
04:27
_whitelogger has joined #ruby
04:30
jaequery has quit [Ping timeout: 264 seconds]
04:32
chalkmonster has quit [Quit: WeeChat 2.5]
04:43
fphilipe_ has joined #ruby
04:44
kyrylo has joined #ruby
04:46
emptyfl4sk has joined #ruby
04:47
ruby[bot] has quit [Remote host closed the connection]
04:47
ruby[bot] has joined #ruby
04:48
[rg] has joined #ruby
04:48
fphilipe_ has quit [Ping timeout: 276 seconds]
04:52
emptyfl4sk has quit [Ping timeout: 272 seconds]
04:54
lepepe__ has quit [Remote host closed the connection]
05:01
ascarter has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
05:02
ascarter has joined #ruby
05:04
brool has quit [Ping timeout: 252 seconds]
05:08
lepepe has joined #ruby
05:12
za1b1tsu has joined #ruby
05:15
Exuma has joined #ruby
05:18
absolutejam1 has joined #ruby
05:19
emptyfl4sk has joined #ruby
05:24
emptyfl4sk has quit [Ping timeout: 272 seconds]
05:24
kyrylo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
05:25
absolutejam1 has quit [Ping timeout: 248 seconds]
05:28
dellavg_ has joined #ruby
05:30
lepepe has quit [Remote host closed the connection]
05:33
lepepe has joined #ruby
05:37
lepepe has quit [Ping timeout: 244 seconds]
05:42
_whitelogger has joined #ruby
05:50
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
06:06
_whitelogger_ has joined #ruby
06:08
edk has quit [*.net *.split]
06:08
nfsnobody has quit [*.net *.split]
06:08
iNs has quit [*.net *.split]
06:08
galaxie has quit [*.net *.split]
06:08
_whitelogger has quit [*.net *.split]
06:08
Fusl has quit [*.net *.split]
06:08
twe4ked has quit [*.net *.split]
06:08
Nightmare has quit [*.net *.split]
06:08
claw has quit [*.net *.split]
06:08
evdubs has quit [*.net *.split]
06:08
infernix has quit [*.net *.split]
06:08
victorqueiroz has quit [*.net *.split]
06:08
lol768_ has quit [*.net *.split]
06:08
afisher has quit [*.net *.split]
06:08
mcspud has quit [*.net *.split]
06:08
marahin has quit [*.net *.split]
06:08
spectra has quit [*.net *.split]
06:08
Pillus has quit [*.net *.split]
06:08
mnemon has quit [*.net *.split]
06:08
lupine has quit [*.net *.split]
06:08
shansen has quit [*.net *.split]
06:08
tpendragon has quit [*.net *.split]
06:08
Prira has quit [*.net *.split]
06:08
akem-lnvo has quit [*.net *.split]
06:08
abaiste^ has quit [*.net *.split]
06:08
staticx has quit [*.net *.split]
06:08
GodFather has quit [*.net *.split]
06:08
jcalla has quit [*.net *.split]
06:08
cadeskywalker has quit [*.net *.split]
06:08
teardown has quit [*.net *.split]
06:08
green- has quit [*.net *.split]
06:08
armyriad has quit [*.net *.split]
06:08
absolutejam has quit [*.net *.split]
06:08
vondruch has quit [*.net *.split]
06:08
jmcgnh has quit [*.net *.split]
06:08
Raboo has quit [*.net *.split]
06:08
Junaos has quit [*.net *.split]
06:08
SirFunk has quit [*.net *.split]
06:08
NightMonkey has quit [*.net *.split]
06:08
ta has quit [*.net *.split]
06:08
camilasan has quit [*.net *.split]
06:08
Meanirelli has quit [*.net *.split]
06:08
hutch has quit [*.net *.split]
06:08
canton7 has quit [*.net *.split]
06:08
sparc has quit [*.net *.split]
06:08
funnel has quit [*.net *.split]
06:08
wmoxam has quit [*.net *.split]
06:08
envex has quit [*.net *.split]
06:08
justinmcp_ has quit [*.net *.split]
06:08
go|dfish has quit [*.net *.split]
06:08
Fraeon has quit [*.net *.split]
06:08
Koshian has quit [*.net *.split]
06:08
aloy has quit [*.net *.split]
06:08
Eiam has quit [*.net *.split]
06:08
volix has quit [*.net *.split]
06:08
bsdbandit has quit [*.net *.split]
06:08
Mutsuhito has quit [*.net *.split]
06:08
ec has quit [*.net *.split]
06:08
kabads has quit [*.net *.split]
06:08
Freshnuts has quit [*.net *.split]
06:08
DarthGandalf has quit [*.net *.split]
06:08
bhaak has quit [*.net *.split]
06:08
Xeago has quit [*.net *.split]
06:08
deepredsky has quit [*.net *.split]
06:08
lord4163 has quit [*.net *.split]
06:08
Xiti has quit [*.net *.split]
06:08
RiPuk has quit [*.net *.split]
06:08
NL3limin4t0r_afk has quit [*.net *.split]
06:08
Sp4rKy has quit [*.net *.split]
06:08
phaul has quit [*.net *.split]
06:08
BTRE has quit [*.net *.split]
06:08
gigetoo has quit [*.net *.split]
06:08
justinweiss has quit [*.net *.split]
06:08
aither has quit [*.net *.split]
06:08
CrazyEddy has quit [*.net *.split]
06:08
ChrisBr has quit [*.net *.split]
06:08
shortdudey123 has quit [*.net *.split]
06:08
ged has quit [*.net *.split]
06:08
skarlso has quit [*.net *.split]
06:08
axsuul has quit [*.net *.split]
06:08
Calinou has quit [*.net *.split]
06:08
ErhardtMundt has quit [*.net *.split]
06:08
woodruffw has quit [*.net *.split]
06:08
mattwc has quit [*.net *.split]
06:08
pilcrow has quit [*.net *.split]
06:08
Ekho has quit [*.net *.split]
06:08
arand has quit [*.net *.split]
06:08
lubekpl has quit [*.net *.split]
06:08
genpaku has quit [*.net *.split]
06:08
marens has quit [*.net *.split]
06:08
ltd has quit [*.net *.split]
06:08
za1b1tsu has quit [*.net *.split]
06:08
facest has quit [*.net *.split]
06:08
_falsebay_ has quit [*.net *.split]
06:08
hightower2 has quit [*.net *.split]
06:08
mniip has quit [*.net *.split]
06:08
davor has quit [*.net *.split]
06:08
tdy3 has quit [*.net *.split]
06:08
m27frogy has quit [*.net *.split]
06:08
psmolen has quit [*.net *.split]
06:08
stan has quit [*.net *.split]
06:08
cornfeedhobo has quit [*.net *.split]
06:08
gb_away has quit [*.net *.split]
06:08
pabs has quit [*.net *.split]
06:08
shaman42 has quit [*.net *.split]
06:08
donofrio has quit [*.net *.split]
06:08
Rudd0 has quit [*.net *.split]
06:08
ropeney has quit [*.net *.split]
06:08
arooni has quit [*.net *.split]
06:08
Jello_Raptor has quit [*.net *.split]
06:08
Exagone313 has quit [*.net *.split]
06:08
Lyubo1 has quit [*.net *.split]
06:08
PaulePanter has quit [*.net *.split]
06:08
nirix has quit [*.net *.split]
06:08
DigitallyBorn has quit [*.net *.split]
06:08
Milos has quit [*.net *.split]
06:08
daemonwrangler has quit [*.net *.split]
06:08
shtirlic has quit [*.net *.split]
06:08
oz has quit [*.net *.split]
06:08
ule has quit [*.net *.split]
06:08
Frobozz has quit [*.net *.split]
06:08
Nowaker has quit [*.net *.split]
06:08
jidar has quit [*.net *.split]
06:08
balo has quit [*.net *.split]
06:08
julmac has quit [*.net *.split]
06:08
jmosco has quit [*.net *.split]
06:08
knight- has quit [*.net *.split]
06:08
extrowerk has quit [*.net *.split]
06:08
interruptinuse has quit [*.net *.split]
06:08
KnownSyntax has quit [*.net *.split]
06:08
jhass has quit [*.net *.split]
06:08
ghormoon has quit [*.net *.split]
06:08
argoneus has quit [*.net *.split]
06:08
meinside has quit [*.net *.split]
06:08
russt has quit [*.net *.split]
06:08
d10n-work has quit [*.net *.split]
06:08
peteretep has quit [*.net *.split]
06:08
varesa has quit [*.net *.split]
06:08
ablackack has quit [*.net *.split]
06:08
xtsee has quit [*.net *.split]
06:08
maxmanders has quit [*.net *.split]
06:08
twoone has quit [*.net *.split]
06:08
connor_goodwolf has quit [*.net *.split]
06:08
[rg] has quit [*.net *.split]
06:08
haxx0r has quit [*.net *.split]
06:08
kent\n has quit [*.net *.split]
06:08
phenom has quit [*.net *.split]
06:08
lightstalker has quit [*.net *.split]
06:08
amrx has quit [*.net *.split]
06:08
Mrgoose8 has quit [*.net *.split]
06:08
Tempesta has quit [*.net *.split]
06:08
mr_rich101 has quit [*.net *.split]
06:08
spiette has quit [*.net *.split]
06:08
masticass has quit [*.net *.split]
06:08
ryouba has quit [*.net *.split]
06:08
zululee_ has quit [*.net *.split]
06:08
planigan has quit [*.net *.split]
06:08
joast has quit [*.net *.split]
06:08
cats has quit [*.net *.split]
06:08
cpallares has quit [*.net *.split]
06:08
helpa has quit [*.net *.split]
06:08
linuus has quit [*.net *.split]
06:08
d^sh has quit [*.net *.split]
06:08
DTZUZU has quit [*.net *.split]
06:08
leah2 has quit [*.net *.split]
06:08
cgfbee has quit [*.net *.split]
06:08
Leopere has quit [*.net *.split]
06:08
AndroidKitKat has quit [*.net *.split]
06:08
ozzloy has quit [*.net *.split]
06:08
garyserj has quit [*.net *.split]
06:08
priodev has quit [*.net *.split]
06:08
aef has quit [*.net *.split]
06:08
universa1 has quit [*.net *.split]
06:08
nowz has quit [*.net *.split]
06:08
Seich has quit [*.net *.split]
06:08
ImAdPEr|wORkInG has quit [*.net *.split]
06:08
lucas has quit [*.net *.split]
06:08
nemesit|znc has quit [*.net *.split]
06:08
Davey has quit [*.net *.split]
06:08
justache has quit [*.net *.split]
06:08
Fire-Dragon-DoL has quit [*.net *.split]
06:08
pelegreno has quit [*.net *.split]
06:08
chromis has quit [*.net *.split]
06:08
livcd has quit [*.net *.split]
06:08
IanMalcolm has quit [*.net *.split]
06:08
akosednar has quit [*.net *.split]
06:08
stooj has quit [*.net *.split]
06:08
yokel has quit [*.net *.split]
06:08
DTZUZO has quit [*.net *.split]
06:08
duckpuppy has quit [*.net *.split]
06:08
SuperLag has quit [*.net *.split]
06:08
kaleido has quit [*.net *.split]
06:08
hiroaki has quit [*.net *.split]
06:08
teclator has quit [*.net *.split]
06:08
jordanm has quit [*.net *.split]
06:08
pwnd_nsfw has quit [*.net *.split]
06:08
Emmanuel_Chanel has quit [*.net *.split]
06:08
redlegion has quit [*.net *.split]
06:08
irdr has quit [*.net *.split]
06:08
kenichi has quit [*.net *.split]
06:08
michael_mbp has quit [*.net *.split]
06:08
rokra has quit [*.net *.split]
06:08
leftylink has quit [*.net *.split]
06:08
roger_rabbit has quit [*.net *.split]
06:08
madhatter has quit [*.net *.split]
06:08
zenspider has quit [*.net *.split]
06:08
AKPWD has quit [*.net *.split]
06:08
contradictioned_ has quit [*.net *.split]
06:08
tris has quit [*.net *.split]
06:08
dan64 has quit [*.net *.split]
06:08
txdv has quit [*.net *.split]
06:08
sirecote has quit [*.net *.split]
06:08
t3hyoshi has quit [*.net *.split]
06:08
z4phod has quit [*.net *.split]
06:08
vcavallo has quit [*.net *.split]
06:08
xMopx has quit [*.net *.split]
06:08
shalok has quit [*.net *.split]
06:08
badeball has quit [*.net *.split]
06:08
n1v has quit [*.net *.split]
06:08
JayDoubleu has quit [*.net *.split]
06:08
vqrs_ has quit [*.net *.split]
06:08
timeless has quit [*.net *.split]
06:08
siasmj has quit [*.net *.split]
06:08
TheBrayn has quit [*.net *.split]
06:08
Argorok has quit [*.net *.split]
06:08
gajus has quit [*.net *.split]
06:08
szulak_ has quit [*.net *.split]
06:08
mkaito has quit [*.net *.split]
06:08
sezuan has quit [*.net *.split]
06:08
kapilp has quit [*.net *.split]
06:08
gbristol has quit [*.net *.split]
06:08
Kilo`byte has quit [*.net *.split]
06:08
liKe2k1 has quit [*.net *.split]
06:08
jokester has quit [*.net *.split]
06:08
quarters has quit [*.net *.split]
06:08
zipkid has quit [*.net *.split]
06:08
iamdevnul has quit [*.net *.split]
06:08
nuck has quit [*.net *.split]
06:08
hsiktas has quit [*.net *.split]
06:08
fowlduck has quit [*.net *.split]
06:08
darthThorik has quit [*.net *.split]
06:08
raggi has quit [*.net *.split]
06:08
kevinsjoberg has quit [*.net *.split]
06:08
manveru has quit [*.net *.split]
06:08
BuildTheRobots has quit [*.net *.split]
06:08
towo has quit [*.net *.split]
06:08
Iambchop has quit [*.net *.split]
06:08
jacksoow has quit [*.net *.split]
06:08
noodle has quit [*.net *.split]
06:08
Norrin has quit [*.net *.split]
06:08
krasnus has quit [*.net *.split]
06:08
creat has quit [*.net *.split]
06:08
linuxdaemon has quit [*.net *.split]
06:08
ndrst has quit [*.net *.split]
06:08
Caius has quit [*.net *.split]
06:08
Exuma has quit [*.net *.split]
06:08
Technodrome has quit [*.net *.split]
06:08
gix- has quit [*.net *.split]
06:08
heyimwill has quit [*.net *.split]
06:08
braincrash has quit [*.net *.split]
06:08
Nicmavr has quit [*.net *.split]
06:08
manakanapa has quit [*.net *.split]
06:08
paraxial has quit [*.net *.split]
06:08
dhollinger has quit [*.net *.split]
06:08
rubydoc has quit [*.net *.split]
06:08
sauvin has quit [*.net *.split]
06:08
dionysus69 has quit [*.net *.split]
06:08
greypack has quit [*.net *.split]
06:08
Cthulu201 has quit [*.net *.split]
06:08
quintasan has quit [*.net *.split]
06:08
segy has quit [*.net *.split]
06:08
rprimus has quit [*.net *.split]
06:08
shadeslayer has quit [*.net *.split]
06:08
mahlon has quit [*.net *.split]
06:08
havenwood has quit [*.net *.split]
06:08
jokke has quit [*.net *.split]
06:08
hays has quit [*.net *.split]
06:08
brer has quit [*.net *.split]
06:08
salvor has quit [*.net *.split]
06:08
dostoyevsky has quit [*.net *.split]
06:08
larissa has quit [*.net *.split]
06:08
jtdowney has quit [*.net *.split]
06:08
Cork has quit [*.net *.split]
06:08
nahra has quit [*.net *.split]
06:08
adam12 has quit [*.net *.split]
06:08
alnk has quit [*.net *.split]
06:08
matti has quit [*.net *.split]
06:08
Caerus has quit [*.net *.split]
06:08
JasonO has quit [*.net *.split]
06:08
Vaevictus has quit [*.net *.split]
06:08
olblak has quit [*.net *.split]
06:08
Nilium has quit [*.net *.split]
06:08
olspookishmagus has quit [*.net *.split]
06:08
Radar has quit [*.net *.split]
06:08
ascarter has quit [*.net *.split]
06:08
mgxm has quit [*.net *.split]
06:08
timmow has quit [*.net *.split]
06:08
ogotai_ has quit [*.net *.split]
06:08
ytti has quit [*.net *.split]
06:08
baweaver has quit [*.net *.split]
06:08
xfbs has quit [*.net *.split]
06:08
_ikke_ has quit [*.net *.split]
06:08
FastJack has quit [*.net *.split]
06:08
klaas has quit [*.net *.split]
06:08
matthewd has quit [*.net *.split]
06:08
teej has quit [*.net *.split]
06:12
_whitelogger has joined #ruby
06:12
sparc_ has joined #ruby
06:12
sparc_ has quit [*.net *.split]
06:12
Fusl has quit [*.net *.split]
06:12
twe4ked has quit [*.net *.split]
06:12
claw has quit [*.net *.split]
06:12
evdubs has quit [*.net *.split]
06:12
Nightmare has quit [*.net *.split]
06:12
infernix has quit [*.net *.split]
06:12
victorqueiroz has quit [*.net *.split]
06:12
lol768_ has quit [*.net *.split]
06:12
spectra has quit [*.net *.split]
06:12
mcspud has quit [*.net *.split]
06:12
lupine has quit [*.net *.split]
06:12
tpendragon has quit [*.net *.split]
06:12
afisher has quit [*.net *.split]
06:12
Pillus has quit [*.net *.split]
06:12
marahin has quit [*.net *.split]
06:12
mnemon has quit [*.net *.split]
06:12
shansen has quit [*.net *.split]
06:13
ChrisBr has joined #ruby
06:15
woodruffw has quit [Ping timeout: 272 seconds]
06:16
woodruffw has joined #ruby
06:16
woodruffw has quit [Changing host]
06:16
woodruffw has joined #ruby
06:17
lepepe has joined #ruby
06:17
akem-lnvo has quit [Ping timeout: 248 seconds]
06:18
sparc_ has joined #ruby
06:18
Fusl has joined #ruby
06:18
twe4ked has joined #ruby
06:18
claw has joined #ruby
06:18
infernix has joined #ruby
06:18
Nightmare has joined #ruby
06:18
mcspud has joined #ruby
06:18
marahin has joined #ruby
06:18
spectra has joined #ruby
06:18
lol768_ has joined #ruby
06:18
afisher has joined #ruby
06:18
victorqueiroz has joined #ruby
06:18
mnemon has joined #ruby
06:18
evdubs has joined #ruby
06:18
Pillus has joined #ruby
06:18
tpendragon has joined #ruby
06:18
lupine has joined #ruby
06:18
shansen has joined #ruby
06:18
emptyflask has joined #ruby
06:18
Yxhuvud has joined #ruby
06:18
TomyLobo has joined #ruby
06:18
voker57 has joined #ruby
06:18
keden has joined #ruby
06:18
vircung has joined #ruby
06:18
goez has joined #ruby
06:18
giraffe has joined #ruby
06:18
uplime has joined #ruby
06:18
SegFaultAX has joined #ruby
06:18
Furai has joined #ruby
06:18
turt2live has joined #ruby
06:18
bathtub_shark has joined #ruby
06:18
znz_jp has joined #ruby
06:18
haylon has joined #ruby
06:18
hahuang65 has joined #ruby
06:18
guardian has joined #ruby
06:18
Net has joined #ruby
06:19
sparc_ has joined #ruby
06:19
sparc_ has quit [Changing host]
06:20
victorqueiroz has quit [Ping timeout: 252 seconds]
06:21
lepepe has quit [Ping timeout: 245 seconds]
06:22
victorqueiroz has joined #ruby
06:32
sarink has joined #ruby
06:33
za1b1tsu has joined #ruby
06:35
staticx has quit [Ping timeout: 248 seconds]
06:37
exmortus has joined #ruby
06:38
sarink has quit [Remote host closed the connection]
06:41
sarink_ has joined #ruby
06:44
fphilipe_ has joined #ruby
06:44
sarink_ has quit [Client Quit]
06:49
fphilipe_ has quit [Ping timeout: 250 seconds]
06:55
chalkmonster has joined #ruby
06:57
sandstrom has joined #ruby
07:14
orbyt_ has joined #ruby
07:15
orbyt_ has quit [Client Quit]
07:18
mniip has quit [Quit: This page is intentionally left blank.]
07:20
emptyfl4sk has joined #ruby
07:22
sparc_ has quit [Changing host]
07:22
sparc_ has joined #ruby
07:22
sparc_ has joined #ruby
07:25
[rg] has quit [Quit: Konversation terminated!]
07:26
mniip has joined #ruby
07:40
emptyfl4sk has quit [Ping timeout: 248 seconds]
07:48
reber has joined #ruby
07:49
sarink has joined #ruby
07:53
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
07:57
nowhereman has joined #ruby
08:09
yield has joined #ruby
08:11
dbugger has joined #ruby
08:12
turt2live has quit [Write error: Connection reset by peer]
08:12
aecepoglu[m] has quit [Read error: Connection reset by peer]
08:12
abaiste^ has quit [Max SendQ exceeded]
08:14
Yuyu0 has quit [Quit: .]
08:14
irdr has quit [Remote host closed the connection]
08:14
abaiste^ has joined #ruby
08:14
Mutsuhito has quit [Ping timeout: 248 seconds]
08:15
irdr has joined #ruby
08:15
akem-lnvo has joined #ruby
08:16
Mutsuhito has joined #ruby
08:19
Yuyu0 has joined #ruby
08:20
afisher has quit [Ping timeout: 252 seconds]
08:20
aecepoglu[m] has joined #ruby
08:21
sparc_ has quit [Ping timeout: 252 seconds]
08:21
hahuang65 has quit [Ping timeout: 252 seconds]
08:22
victorqueiroz has quit [Ping timeout: 252 seconds]
08:22
gmcintire has quit [Ping timeout: 250 seconds]
08:22
mcspud has quit [Ping timeout: 252 seconds]
08:22
spectra has quit [Ping timeout: 252 seconds]
08:22
uranoss has quit [Ping timeout: 250 seconds]
08:22
dumptruckman has quit [Ping timeout: 250 seconds]
08:23
gmcintire has joined #ruby
08:23
coffeejunk has quit [Ping timeout: 250 seconds]
08:23
hahuang65 has joined #ruby
08:23
hahuang65 has quit [Max SendQ exceeded]
08:24
sparc_ has joined #ruby
08:24
hahuang65 has joined #ruby
08:24
cjkinni has joined #ruby
08:24
coffeejunk has joined #ruby
08:24
twe4ked has quit [Ping timeout: 252 seconds]
08:24
mcspud has joined #ruby
08:24
afisher has joined #ruby
08:24
dumptruckman has joined #ruby
08:25
uranoss has joined #ruby
08:26
victorqueiroz has joined #ruby
08:26
twe4ked has joined #ruby
08:28
pwillard has quit [Ping timeout: 250 seconds]
08:28
lepepe has joined #ruby
08:29
lipoqil has quit [Ping timeout: 250 seconds]
08:30
JoL1hAHN has joined #ruby
08:31
pwillard has joined #ruby
08:32
lipoqil has joined #ruby
08:32
lepepe has quit [Ping timeout: 252 seconds]
08:33
spectra has joined #ruby
08:33
strmpnk has quit [Ping timeout: 250 seconds]
08:34
strmpnk has joined #ruby
08:35
emptyflask has quit [Ping timeout: 252 seconds]
08:35
Yuyu0 has joined #ruby
08:38
emptyflask has joined #ruby
08:44
lepepe has joined #ruby
08:47
akem_lnvo has joined #ruby
08:48
akem_lnvo has quit [Max SendQ exceeded]
08:49
akem_lnvo has joined #ruby
08:49
akem-lnvo has quit [Ping timeout: 245 seconds]
08:49
lepepe has quit [Ping timeout: 276 seconds]
08:55
turt2live has joined #ruby
08:55
Seance[m] has joined #ruby
08:59
schne1der has joined #ruby
09:00
fphilipe_ has joined #ruby
09:04
lepepe has joined #ruby
09:06
fphilipe_ has quit [Ping timeout: 276 seconds]
09:07
Josse has joined #ruby
09:07
Josse has left #ruby [#ruby]
09:08
lepepe has quit [Ping timeout: 258 seconds]
09:10
akem_lnvo has quit [Ping timeout: 252 seconds]
09:13
gix has joined #ruby
09:14
gix- has quit [Ping timeout: 245 seconds]
09:22
stooj has quit [Ping timeout: 268 seconds]
09:27
fphilipe_ has joined #ruby
09:28
cjkinni has quit [Ping timeout: 250 seconds]
09:28
cjkinni has joined #ruby
09:30
stooj has joined #ruby
09:34
akem_lnvo has joined #ruby
09:37
Omnilord has joined #ruby
09:37
emptyfl4sk has joined #ruby
09:38
stooj has quit [Ping timeout: 268 seconds]
09:41
sandstrom has quit [Quit: My computer has gone to sleep.]
09:42
emptyfl4sk has quit [Ping timeout: 245 seconds]
09:47
stooj has joined #ruby
09:50
sandstrom has joined #ruby
09:53
Omnilord has quit [Quit: Leaving]
10:03
megamos has joined #ruby
10:10
emptyfl4sk has joined #ruby
10:11
sarink has quit [Remote host closed the connection]
10:11
sarink has joined #ruby
10:13
Freshnuts has quit [Quit: Leaving]
10:17
sarink has quit [Remote host closed the connection]
10:19
sandstrom has quit [Quit: My computer has gone to sleep.]
10:26
sandstrom has joined #ruby
10:28
megamos has quit [Remote host closed the connection]
10:30
sandstrom has quit [Ping timeout: 245 seconds]
10:33
tdy3 has quit [Ping timeout: 245 seconds]
10:34
emptyfl4sk has quit [Ping timeout: 258 seconds]
10:38
clemens3 has joined #ruby
10:43
megamos has joined #ruby
10:53
Fernando-Basso has joined #ruby
10:54
tpanarch1st has joined #ruby
10:58
DEac- has joined #ruby
11:06
queip has quit [Ping timeout: 246 seconds]
11:09
conta has joined #ruby
11:16
sarink has joined #ruby
11:21
sarink has quit [Ping timeout: 248 seconds]
11:24
queip has joined #ruby
11:26
sarink has joined #ruby
11:31
sarink has quit [Ping timeout: 248 seconds]
11:36
fphilipe has joined #ruby
11:39
fphilipe_ has quit [Ping timeout: 264 seconds]
11:41
fphilipe has quit [Ping timeout: 252 seconds]
11:49
conta has quit [Quit: conta]
11:52
fphilipe has joined #ruby
12:03
sandstrom has joined #ruby
12:06
fphilipe has quit [Ping timeout: 276 seconds]
12:11
fphilipe has joined #ruby
12:16
fphilipe has quit [Ping timeout: 264 seconds]
12:17
fphilipe has joined #ruby
12:23
fphilipe has quit [Ping timeout: 264 seconds]
12:26
hightower2 has quit [Ping timeout: 245 seconds]
12:26
henninb has joined #ruby
12:27
henninb has quit [Client Quit]
12:30
emptyfl4sk has joined #ruby
12:31
<
garyserj >
&>> puts "asdf"
12:34
henninb has joined #ruby
12:34
henninb has quit [Client Quit]
12:34
henninb has joined #ruby
12:35
henninb has quit [Client Quit]
12:35
emptyfl4sk has quit [Ping timeout: 245 seconds]
12:36
henninb has joined #ruby
12:36
sandstrom has quit [Ping timeout: 272 seconds]
12:37
<
leftylink >
ah so 2.6.0 and 2.6.1. good knowledge of relevant ruby issues, thank you
12:38
<
havenwood >
no prob!
12:39
henninb has quit [Client Quit]
12:39
hightower2 has joined #ruby
12:40
sarink has joined #ruby
12:40
sarink has quit [Remote host closed the connection]
12:41
sarink has joined #ruby
12:41
matheusmoreira has joined #ruby
12:42
matheusmoreira has quit [Client Quit]
12:44
<
garyserj >
&>> def abc(x:, y); end
12:44
<
garyserj >
&>> def abc(x, y:); end
12:44
<
garyserj >
Why does the first one fail?
12:46
henninb has joined #ruby
12:46
AJA4350 has joined #ruby
12:47
henninb has quit [Client Quit]
12:49
<
garyserj >
looks like the 'pages' section is about as close to a table of contents as it gets, ok i guess.
12:49
fphilipe has joined #ruby
12:50
<
garyserj >
ah the syntax page is pretty much it and that links to others.
12:55
fphilipe has quit [Ping timeout: 264 seconds]
13:07
emptyfl4sk has joined #ruby
13:08
henninb has joined #ruby
13:08
henninb has quit [Client Quit]
13:10
henninb has joined #ruby
13:11
henninb has quit [Client Quit]
13:12
emptyfl4sk has quit [Ping timeout: 258 seconds]
13:13
Inline_ has joined #ruby
13:13
henninb has joined #ruby
13:15
Inline has quit [Ping timeout: 250 seconds]
13:25
fphilipe has joined #ruby
13:25
henninb_ has joined #ruby
13:25
tpanarch1st has quit [Quit: Thanks for your help, nice to see you, take care.]
13:26
henninb_ has quit [Client Quit]
13:26
lepepe has joined #ruby
13:27
Inline_ is now known as Inline
13:27
Inline has quit [Quit: Leaving]
13:28
Inline has joined #ruby
13:34
fphilipe has quit [Ping timeout: 252 seconds]
13:35
henninb has quit [Quit: leaving]
13:35
henninb has joined #ruby
13:41
yo-wan has joined #ruby
13:51
_whitelogger has joined #ruby
13:53
fphilipe has joined #ruby
13:58
kyrylo has joined #ruby
13:58
fphilipe has quit [Ping timeout: 276 seconds]
14:03
ellcs has joined #ruby
14:17
ellcs has quit [Ping timeout: 252 seconds]
14:19
livcd has quit [Ping timeout: 258 seconds]
14:30
Azure has quit [Ping timeout: 244 seconds]
14:33
fphilipe has joined #ruby
14:40
kilk has joined #ruby
14:45
kilk has quit [Client Quit]
14:46
cow[moo] has quit [Read error: Connection reset by peer]
14:48
cd has joined #ruby
14:55
kilk has joined #ruby
14:55
Azure has joined #ruby
14:56
nowhereman has quit [Ping timeout: 258 seconds]
14:59
sandstrom has joined #ruby
15:05
nowhereman has joined #ruby
15:05
Azure has quit [Read error: Connection reset by peer]
15:05
kilk has left #ruby ["bye"]
15:06
kilk has joined #ruby
15:07
fphilipe has quit [Ping timeout: 252 seconds]
15:08
emptyfl4sk has joined #ruby
15:12
ddffg has joined #ruby
15:12
ddffg has quit [Client Quit]
15:13
emptyfl4sk has quit [Ping timeout: 258 seconds]
15:15
emptyfl4sk has joined #ruby
15:17
fphilipe has joined #ruby
15:22
nowhereman has quit [Quit: Konversation terminated!]
15:22
nowhere_man has joined #ruby
15:23
Azure has joined #ruby
15:28
kilk has quit [Quit: WeeChat 2.5]
15:31
Azure has quit [Read error: Connection reset by peer]
15:48
nowhere_man has quit [Read error: Connection reset by peer]
15:49
nowhere_man has joined #ruby
15:50
Azure has joined #ruby
15:50
Technodrome has joined #ruby
15:53
Swyper has joined #ruby
15:56
fphilipe has quit [Ping timeout: 252 seconds]
15:58
Technodrome has quit [Remote host closed the connection]
15:59
AJA4350 has quit [Ping timeout: 246 seconds]
16:02
Technodrome has joined #ruby
16:08
nowhere_man has quit [Ping timeout: 246 seconds]
16:10
haxx0r has quit [Remote host closed the connection]
16:16
Azure has quit [Read error: Connection reset by peer]
16:17
hiroaki has quit [Remote host closed the connection]
16:18
emptyfl4sk has quit [Ping timeout: 248 seconds]
16:19
hiroaki has joined #ruby
16:19
chalkmonster has quit [Quit: WeeChat 2.5]
16:23
fphilipe has joined #ruby
16:24
johnny56 has joined #ruby
16:30
orbyt_ has joined #ruby
16:33
hiroaki has quit [Remote host closed the connection]
16:34
hiroaki has joined #ruby
16:34
Azure has joined #ruby
16:38
shenghi has quit [Ping timeout: 246 seconds]
16:39
snickers has joined #ruby
16:43
Azure has quit [Read error: Connection reset by peer]
16:43
shenghi has joined #ruby
16:51
queip has quit [Ping timeout: 268 seconds]
16:53
xco has joined #ruby
16:57
fphilipe has quit [Ping timeout: 252 seconds]
16:58
chalkmonster has joined #ruby
17:02
queip has joined #ruby
17:03
megamos has quit [Ping timeout: 248 seconds]
17:03
hiroaki has quit [Remote host closed the connection]
17:05
hiroaki has joined #ruby
17:06
ngw has joined #ruby
17:10
<
ngw >
I got that far, but I'm stuck on the neighbours...
17:11
<
ngw >
it's already > 1 hour I'm messing around but I guess I'm stuck :(
17:11
<
ngw >
can someone give me a hand?
17:12
<
ngw >
the problem is in calculate_neighbours(x:, y:)
17:13
<
ngw >
best result I got till now is that it miscalculates the borders
17:17
Swyper has quit [Remote host closed the connection]
17:18
<
ngw >
just pasted the "almost correct" version
17:18
kyrylo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17:21
Swyper has joined #ruby
17:22
<
ngw >
omg, I got it... when index is 0 and I do -1 it goes to the last line on the other side
17:26
Nicmavr has quit [Read error: Connection reset by peer]
17:26
Exuma has joined #ruby
17:28
Nicmavr has joined #ruby
17:30
cow[moo] has joined #ruby
17:34
hiroaki has quit [Ping timeout: 268 seconds]
17:38
wald0 has joined #ruby
17:47
Swyper has quit [Remote host closed the connection]
17:52
lucasb has joined #ruby
17:52
queip has quit [Ping timeout: 272 seconds]
17:53
Inline_ has joined #ruby
17:53
Inline_ has quit [Remote host closed the connection]
17:54
<
hightower2 >
Hey what's the simplest way to do glob matching on strings?
17:54
Azure has joined #ruby
17:54
tdy3 has joined #ruby
17:54
rippa has joined #ruby
17:55
Inline_ has joined #ruby
17:57
Inline has quit [Ping timeout: 264 seconds]
17:58
fphilipe has joined #ruby
18:00
Inline_ has quit [Client Quit]
18:01
Inline has joined #ruby
18:02
hiroaki has joined #ruby
18:06
yo-wan has quit [Ping timeout: 272 seconds]
18:08
queip has joined #ruby
18:12
Azure has quit [Read error: Connection reset by peer]
18:12
unreal has joined #ruby
18:14
Swyper has joined #ruby
18:15
emptyfl4sk has joined #ruby
18:17
Swyper has quit [Remote host closed the connection]
18:20
Swyper has joined #ruby
18:23
Swyper has quit [Remote host closed the connection]
18:25
akem__ has joined #ruby
18:26
Azure has joined #ruby
18:29
akem_lnvo has quit [Ping timeout: 248 seconds]
18:30
Swyper has joined #ruby
18:31
livcd has joined #ruby
18:31
kujira has joined #ruby
18:33
fphilipe has quit [Ping timeout: 264 seconds]
18:35
ellcs has joined #ruby
18:35
Swyper has quit [Remote host closed the connection]
18:35
ellcs has quit [Max SendQ exceeded]
18:35
ellcs has joined #ruby
18:36
ellcs has quit [Max SendQ exceeded]
18:36
fphilipe has joined #ruby
18:36
ellcs has joined #ruby
18:37
ellcs has quit [Max SendQ exceeded]
18:37
Swyper has joined #ruby
18:37
ellcs has joined #ruby
18:37
ellcs has quit [Max SendQ exceeded]
18:38
ellcs has joined #ruby
18:38
emptyfl4sk has quit [Ping timeout: 258 seconds]
18:39
Swyper has quit [Remote host closed the connection]
18:39
Swyper has joined #ruby
18:41
fphilipe has quit [Ping timeout: 252 seconds]
18:41
Swyper has quit [Remote host closed the connection]
18:45
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
18:54
queip has quit [Ping timeout: 245 seconds]
18:54
LordPython has joined #ruby
18:55
Swyper has joined #ruby
18:57
kyrylo has joined #ruby
18:58
megamos has joined #ruby
18:59
Fernando-Basso has quit [Remote host closed the connection]
19:02
Azure has quit [Read error: Connection reset by peer]
19:02
tdy3 is now known as tdy
19:06
orbyt_ has joined #ruby
19:07
za1b1tsu has quit [Remote host closed the connection]
19:08
fphilipe has joined #ruby
19:10
LordPython has quit [Quit: Leaving...]
19:14
queip has joined #ruby
19:15
emptyfl4sk has joined #ruby
19:17
fphilipe_ has joined #ruby
19:20
fphilipe has quit [Ping timeout: 252 seconds]
19:21
amrx has quit [Ping timeout: 258 seconds]
19:25
orbyt_ has quit [Read error: Connection reset by peer]
19:26
absolutejam1 has joined #ruby
19:27
orbyt_ has joined #ruby
19:30
snuz has joined #ruby
19:33
<
havenwood >
hightower2: File.fnmatch?
19:33
<
havenwood >
&ri File.fnmatch?
19:33
<
hightower2 >
yeah, could abuse that, thanks
19:34
monika has joined #ruby
19:38
emptyfl4sk has quit [Ping timeout: 268 seconds]
19:40
wald0 has quit [Quit: Lost terminal]
19:42
fphilipe_ has quit [Ping timeout: 272 seconds]
19:44
snuz has quit [Quit: WeeChat 2.5]
19:45
masticass has quit [Quit: WeeChat 2.4]
19:46
monika has left #ruby ["sd"]
19:51
sarink has quit [Remote host closed the connection]
19:51
sarink has joined #ruby
19:57
<
havenwood >
&>> 1.step.lazy.map { |n| (2 ** n % 125).chr }.drop(25).first(2).join
20:00
fphilipe_ has joined #ruby
20:01
SeepingN has joined #ruby
20:01
sarink has quit [Remote host closed the connection]
20:07
fphilipe_ has quit [Read error: Connection reset by peer]
20:08
fphilipe_ has joined #ruby
20:12
lucasb has quit [Quit: Connection closed for inactivity]
20:13
emptyfl4sk has joined #ruby
20:13
fphilipe has joined #ruby
20:14
fphilipe_ has quit [Ping timeout: 245 seconds]
20:15
schne1der has quit [Ping timeout: 272 seconds]
20:18
emptyfl4sk has quit [Ping timeout: 248 seconds]
20:20
kyrylo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
20:20
stooj has joined #ruby
20:24
jinie has quit [Ping timeout: 244 seconds]
20:26
jinie has joined #ruby
20:27
SeepingN has quit [Quit: The system is going down for reboot NOW!]
20:27
sandstrom has quit [Quit: My computer has gone to sleep.]
20:41
rippa has quit [Ping timeout: 245 seconds]
20:42
rippa has joined #ruby
20:43
reber has quit [Remote host closed the connection]
20:54
ellcs has quit [Ping timeout: 250 seconds]
21:10
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
21:22
fphilipe has quit [Ping timeout: 245 seconds]
21:23
ur5us has joined #ruby
21:24
Exuma has joined #ruby
21:27
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
21:28
orbyt_ has joined #ruby
21:29
orbyt_ has quit [Client Quit]
21:31
orbyt_ has joined #ruby
21:33
sagax has joined #ruby
21:36
sarink has joined #ruby
21:36
seaef has joined #ruby
21:38
sarink has quit [Read error: Connection reset by peer]
21:41
exmortus has quit [Remote host closed the connection]
21:41
exmortus has joined #ruby
21:44
seaef has quit [Quit: I am functioning within established parameters.]
21:52
fphilipe has joined #ruby
21:57
Omnilord has joined #ruby
22:07
cd has quit [Quit: cd]
22:10
Omnilord has quit [Quit: This computer has gone to sleep]
22:11
DTZUZO has quit [Ping timeout: 268 seconds]
22:14
emptyfl4sk has joined #ruby
22:15
fphilipe_ has joined #ruby
22:17
fphilipe has quit [Ping timeout: 252 seconds]
22:19
emptyfl4sk has quit [Ping timeout: 268 seconds]
22:22
Azure has joined #ruby
22:24
tdy has quit [Ping timeout: 244 seconds]
22:25
sagax has quit [Read error: Connection reset by peer]
22:27
fphilipe_ has quit [Ping timeout: 272 seconds]
22:35
Omnilord has joined #ruby
22:36
Omnilord has quit [Client Quit]
22:38
nowhere_man has joined #ruby
22:45
cd has joined #ruby
22:46
cd has quit [Client Quit]
22:52
cd has joined #ruby
22:52
emptyfl4sk has joined #ruby
23:14
emptyfl4sk has quit [Ping timeout: 245 seconds]
23:21
absolutejam1 has quit [Ping timeout: 246 seconds]
23:23
dbugger has quit [Ping timeout: 252 seconds]
23:26
clemens3 has quit [Ping timeout: 244 seconds]
23:43
emptyfl4sk has joined #ruby
23:49
involans has joined #ruby
23:53
xco has quit [Quit: xco]