00:11
kyrylo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
00:17
truenito has joined #ruby
00:18
truenito has quit [Remote host closed the connection]
00:19
bambanx has joined #ruby
00:22
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
00:38
galaxie has quit [Ping timeout: 256 seconds]
00:43
Dbugger has quit [Ping timeout: 264 seconds]
00:44
Swyper has quit [Remote host closed the connection]
00:46
jrafanie has joined #ruby
00:46
jrafanie has quit [Client Quit]
00:47
SeepingN has quit [Quit: The system is going down for reboot NOW!]
00:56
<
Net >
Is there a better way to write `@users[@users.index { |u| u.id == id }] = user`?
00:57
Swyper has joined #ruby
00:58
tdy2 has joined #ruby
00:59
dsmythe has quit [Remote host closed the connection]
01:00
dsmythe has joined #ruby
01:01
<
adam12 >
Net: Maybe? Can you share more than a single line?
01:02
<
Net >
adam12: you're wondering if @users should be a hash?
01:03
<
adam12 >
Net: It might be faster lookup when concerning big-O, but in reality you have 2 guest objects so I'm presuming the puzzle is larger than a single line.
01:03
<
Net >
adam12: it's not, I'm just lazy. It'll get refactored to a hash later
01:04
<
Net >
my question was solely if there was a better way to update an element on an array based on a condition
01:04
AJA4351 has joined #ruby
01:04
<
Net >
trying to familiarize myself with the stdlib :)
01:05
<
adam12 >
Net: It looks fine as it is, but if that line is nested in a loop there's a chance it's suboptimal.
01:06
AJA4350 has quit [Ping timeout: 245 seconds]
01:06
AJA4351 is now known as AJA4350
01:06
<
havenwood >
Net: Are there no duplicates in the Array?
01:06
<
Net >
havenwood: no dupes
01:07
<
havenwood >
Net: A Set would also work. You could delete the old and add the new.
01:08
<
havenwood >
Net: A Hash has appealing aspects if you're searching by ID.
01:08
<
Net >
interesting. in this case it's just a hacky way to update some json in redis until I move this data into postgres, but I'll keep that in mind
01:08
tdy2 is now known as tdy
01:09
<
havenwood >
Net: With a Set: @users.delete(@users.find { |u| u.id == id }) << user
01:10
<
Net >
Any recommended books or articles for learning ruby and RoR?
01:10
<
Net >
I've worked with both years ago, but I could use some reading to brush up—I don't remember much.
01:11
<
Net >
Really I just want to get a feel for common idioms and more advanced concepts
01:11
<
havenwood >
Net: The Rails docs are a pretty good read. I like just reading nicely written Ruby code for patterns.
01:12
<
Net >
and where might I find nicely written Ruby code? :)
01:13
<
havenwood >
Net: I just saw a reallly nice Ruby cookbook, but it's in Japanese. ¯\_(ツ)_/¯
01:13
<
havenwood >
Maybe there's an English version?
01:13
sylario has quit [Quit: Connection closed for inactivity]
01:13
<
havenwood >
The Well Grounded Rubyist isn't super advanced, but it just had a new version released.
01:14
<
havenwood >
Net: It looks like there's "Wicked Cool Ruby Scripts" (i haven't read it)
01:14
<
havenwood >
Net: or Kestrels, Quirky Birds, and Hopeless Egocentricity
01:14
mangold has joined #ruby
01:15
<
havenwood >
Net: Or GitHub has a ton of great code reading!
01:15
<
Net >
I've got The Well Grounded Rubyest 3rd ed. on Kindle, What's Kestrels, Quirky Birds, and Hopeless Egocentricity about?
01:16
<
Net >
Looks like haskell in ruby
01:16
<
Net >
any specific GitHub projects?
01:17
<
havenwood >
Net: Jeremy Evans is about to give a talk at RubyKaigi on how he used best practices to make Sequel and Roda competitively fast. Those are great.
01:18
<
Net >
Do I need to learn Japanese?
01:18
<
havenwood >
Net: Nope!
01:19
<
Net >
Worth watching past RubyKaigi talks?
01:19
<
havenwood >
Net: Yeah, RubyKaigi talks are great! I'd suggest watching RubyConf and RailsConf talks too.
01:20
<
Net >
Will do, thank you!
01:20
<
Net >
great commenting in roda
01:20
<
havenwood >
Net: And all talks Rich Hickey has given ;) He's an oracle
01:21
<
adam12 >
Just beware that Roda is obsessed with performance and some code is a bit more opaque because of that. Jeremy comes up with some very creative solutions.
01:21
<
adam12 >
Any talks with Sandy Metz are great too.
01:21
AndroidKitKat has quit [Ping timeout: 255 seconds]
01:22
duderonomy has joined #ruby
01:23
<
adam12 >
havenwood: are you at rubykaigi now?
01:23
<
havenwood >
adam12: yup!
01:23
<
adam12 >
havenwood: favourite talk so far?
01:24
<
havenwood >
adam12: Day 1, Fibers are the Right Solution by ioquatix
01:25
<
adam12 >
havenwood: Ah yeah. Excited to watch that. Been following Falcon fairly closely.
01:25
<
havenwood >
adam12: Day 2, Beyond `puts`: TruffleRuby's Modern Debugger using Chrome y nirvdrum
01:25
<
adam12 >
havenwood: That sounds like a good one. I feel like CRuby getting that ability would be a huge step forward too.
01:25
<
havenwood >
I think those are both really exciting!
01:25
<
havenwood >
adam12: Yeah, it seems very possible for CRuby and JRuby too
01:25
<
adam12 >
havenwood: Did you catch the zeitwork loader one?
01:26
<
adam12 >
havenwood: or the new gem dependency one from matthewd? interested in both.
01:26
<
havenwood >
adam12: No, I wanted to but missed it
01:26
<
adam12 >
Code loading is probably my biggest painpoint right now.
01:27
<
adam12 >
(and in that, code reloading to some degree)
01:28
<
havenwood >
`gem install -g` ftw ;P
01:28
<
unixabg >
havenwood: first thank you for the response. I did not know if there was something built in I could not see. I will look into a gem.
01:29
<
havenwood >
adam12: I look forward to Zeitwerk - seems like a huge improvement
01:30
mangold has quit [Quit: This computer has gone to sleep]
01:38
ricekrispie has joined #ruby
01:39
AJA4351 has joined #ruby
01:39
AJA4350 has quit [Ping timeout: 250 seconds]
01:39
AJA4351 is now known as AJA4350
01:40
mat_bug has joined #ruby
01:45
wallace_mu has quit [Remote host closed the connection]
01:49
unixabg has left #ruby [#ruby]
01:52
AJA4350 has quit [Remote host closed the connection]
01:54
Swyper has quit [Remote host closed the connection]
01:54
Swyper has joined #ruby
01:55
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
02:10
mat_bug has quit [Ping timeout: 245 seconds]
02:26
noobineer has joined #ruby
02:27
<
IGnorAND >
I seriously need to go read up on rspec with context/describe and let. I'm getting errors because my let isn't being executed :(
02:27
mat_bug has joined #ruby
02:29
tdy has quit [Ping timeout: 268 seconds]
02:29
laaron has joined #ruby
02:29
Ai9zO5AP has joined #ruby
02:31
mat_bug has quit [Ping timeout: 246 seconds]
02:47
duderonomy has joined #ruby
02:48
apparition has joined #ruby
02:52
s3nd1v0g1us has quit [Quit: WeeChat 2.2]
02:55
KeyJoo has joined #ruby
03:06
braincrash has quit [Quit: bye bye]
03:06
DmitryBochkarev has joined #ruby
03:13
braincras has joined #ruby
03:35
pupsikov has joined #ruby
03:42
dsmythe has quit [Ping timeout: 268 seconds]
03:44
AndroidKitKat has joined #ruby
03:57
dsmythe has joined #ruby
04:08
Nicmavr has joined #ruby
04:17
tdy has joined #ruby
04:21
_whitelogger has joined #ruby
04:25
apparition has quit [Quit: Bye]
04:30
mat_bug has joined #ruby
04:35
maryo has quit [Ping timeout: 245 seconds]
04:36
DmitryBochkarev has quit [Ping timeout: 246 seconds]
04:40
maryo has joined #ruby
04:40
houhoulis has quit [Remote host closed the connection]
04:46
pupsikov has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
04:46
guatajuk has joined #ruby
04:47
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
04:48
pupsikov has joined #ruby
04:50
pupsikov has quit [Client Quit]
04:51
noobineer has quit [Ping timeout: 250 seconds]
04:53
maryo has quit [Ping timeout: 246 seconds]
04:54
kapil____ has joined #ruby
04:56
bambanx has quit [Quit: Leaving]
04:58
Swyper has quit [Remote host closed the connection]
05:01
Swyper has joined #ruby
05:01
mat_bug has quit [Ping timeout: 250 seconds]
05:03
rippa has joined #ruby
05:06
Swyper has quit [Remote host closed the connection]
05:08
cd has joined #ruby
05:13
DmitryBochkarev has joined #ruby
05:22
Ai9zO5AP has quit [Quit: WeeChat 2.4]
05:39
pupsikov has joined #ruby
05:43
dellavg_ has joined #ruby
05:49
pupsikov has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
05:57
schleppel has joined #ruby
06:00
imadper has quit [Remote host closed the connection]
06:00
imadper has joined #ruby
06:18
ramfjord has joined #ruby
06:20
KeyJoo has quit [Quit: KeyJoo]
06:21
nadir has quit [Quit: Connection closed for inactivity]
06:23
ramfjord has quit [Ping timeout: 250 seconds]
06:29
DmitryBochkarev has quit [Ping timeout: 244 seconds]
06:40
duderonomy has joined #ruby
06:40
apparition has joined #ruby
06:42
tdy has quit [Ping timeout: 245 seconds]
06:42
hightower2 has joined #ruby
06:46
apparition has quit [Quit: Bye]
06:49
Swyper has joined #ruby
06:52
ljarvis__ has quit [Ping timeout: 255 seconds]
06:53
sameerynho has joined #ruby
06:59
ljarvis__ has joined #ruby
07:03
nakuku has joined #ruby
07:04
nakuku has quit [Remote host closed the connection]
07:06
bugtender has joined #ruby
07:13
DmitryBochkarev has joined #ruby
07:17
flak has joined #ruby
07:18
mat_bug has joined #ruby
07:18
cedum has joined #ruby
07:20
rippa has quit [Ping timeout: 244 seconds]
07:20
j416 has quit [Ping timeout: 244 seconds]
07:21
ua has quit [Ping timeout: 252 seconds]
07:21
sagax has quit [Ping timeout: 250 seconds]
07:21
bugtender has quit [Remote host closed the connection]
07:22
j416 has joined #ruby
07:23
sagax has joined #ruby
07:23
ua has joined #ruby
07:23
guatajuk has quit [Quit: guatajuk]
07:30
bugtender has joined #ruby
07:34
uranoss has quit [Quit: Connection closed for inactivity]
07:37
def_jam has joined #ruby
07:37
eb0t_ has joined #ruby
07:38
eblip has quit [Ping timeout: 250 seconds]
07:38
eb0t has quit [Ping timeout: 250 seconds]
07:41
Swyper has quit [Remote host closed the connection]
07:53
mat_bug has quit [Ping timeout: 246 seconds]
08:00
mat_bug has joined #ruby
08:13
bugtender has quit []
08:17
mangold has joined #ruby
08:19
ramfjord has joined #ruby
08:23
ramfjord has quit [Ping timeout: 255 seconds]
08:25
cedum has quit [Ping timeout: 250 seconds]
08:25
eb0t has joined #ruby
08:26
eblip has joined #ruby
08:27
kyrylo has joined #ruby
08:27
def_jam has quit [Ping timeout: 255 seconds]
08:27
eb0t_ has quit [Ping timeout: 246 seconds]
08:27
Dbugger has joined #ruby
08:28
conta has joined #ruby
08:28
hightower2 has quit [Ping timeout: 268 seconds]
08:28
dsmythe has quit [Remote host closed the connection]
08:28
ziyadb has left #ruby [#ruby]
08:28
dsmythe has joined #ruby
08:40
mangold has quit [Quit: This computer has gone to sleep]
08:41
mat_bug has quit [Remote host closed the connection]
08:41
mat_bug has joined #ruby
08:49
mat_bug has quit [Ping timeout: 244 seconds]
09:00
dhollinger has quit [Read error: Connection reset by peer]
09:01
dhollinger has joined #ruby
09:06
dionysus69 has quit [Ping timeout: 246 seconds]
09:18
RedNifre has quit [Ping timeout: 259 seconds]
09:21
DmitryBochkarev has quit [Ping timeout: 255 seconds]
09:29
jefffrails35 has joined #ruby
09:32
jefffrails35 has quit [Remote host closed the connection]
09:32
jefffrails35 has joined #ruby
09:40
jefffrails35 has quit [Remote host closed the connection]
09:40
jefffrails35 has joined #ruby
09:43
hanmac has quit [Remote host closed the connection]
09:58
fphilipe has joined #ruby
09:59
mangold has joined #ruby
10:10
Inline has quit [Quit: Leaving]
10:18
kyrylo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
10:19
ramfjord has joined #ruby
10:21
nowhere_man has joined #ruby
10:22
tdy has joined #ruby
10:23
ramfjord has quit [Ping timeout: 255 seconds]
10:24
fphilipe has quit [Read error: Connection reset by peer]
10:26
Inline has joined #ruby
10:26
fphilipe has joined #ruby
10:28
tdy has quit [Ping timeout: 244 seconds]
10:33
RedNifre has joined #ruby
10:38
clemens3_ has joined #ruby
10:41
nowhere_man has quit [Ping timeout: 258 seconds]
10:57
Inline has quit [Ping timeout: 264 seconds]
10:58
Inline has joined #ruby
11:00
ellcs has joined #ruby
11:01
pwnd_nsfw` has joined #ruby
11:01
nowhere_man has joined #ruby
11:02
pwnd_nsfw has quit [Ping timeout: 255 seconds]
11:06
fphilipe has quit [Read error: Connection reset by peer]
11:06
conta has quit [Quit: conta]
11:10
AJA4350 has joined #ruby
11:11
nowhere_man has quit [Ping timeout: 258 seconds]
11:11
ellcs has quit [Ping timeout: 240 seconds]
11:13
kyrylo has joined #ruby
11:13
nowhere_man has joined #ruby
11:17
clemens3_ has quit [Ping timeout: 246 seconds]
11:18
Inline has quit [Ping timeout: 264 seconds]
11:19
RedNifre has quit [Ping timeout: 264 seconds]
11:19
matti has joined #ruby
11:20
RedNifre has joined #ruby
11:20
DmitryBochkarev has joined #ruby
11:36
nowhere_man has quit [Ping timeout: 258 seconds]
11:38
UncleCid__ has joined #ruby
11:41
pwnd_nsfw` has quit [Ping timeout: 244 seconds]
11:48
Inline has joined #ruby
11:56
Inline is now known as oleo
11:57
oleo is now known as Inline
11:58
DmitryBochkarev has quit [Ping timeout: 268 seconds]
12:03
Inline is now known as temporal_0
12:03
nowhere_man has joined #ruby
12:05
temporal_0 has quit [Quit: Leaving]
12:05
temporal_0 has joined #ruby
12:08
mangold has quit [Quit: This computer has gone to sleep]
12:18
_whitelogger has joined #ruby
12:22
mangold has joined #ruby
12:27
nadir has joined #ruby
12:28
nowhere_man has quit [Ping timeout: 258 seconds]
12:31
iNs has quit [Remote host closed the connection]
12:31
iNs has joined #ruby
12:35
mangold has quit [Quit: This computer has gone to sleep]
12:39
phaul has quit [Quit: :wq]
12:41
temporal_0 is now known as Inline
12:44
RedNifre has left #ruby ["WeeChat 1.9.1"]
12:47
Inline has quit [Quit: Leaving]
12:52
Inline has joined #ruby
12:58
Fernando-Basso has joined #ruby
13:01
hightower2 has joined #ruby
13:05
dsmythe has quit [Remote host closed the connection]
13:06
dsmythe has joined #ruby
13:08
galaxie has joined #ruby
13:12
phaul has joined #ruby
13:12
guatajuk has joined #ruby
13:29
Fernando-Basso has quit [Remote host closed the connection]
13:34
galeido has joined #ruby
13:53
laaron has quit [Remote host closed the connection]
13:53
laaron has joined #ruby
14:01
pupsikov has joined #ruby
14:05
pupsikov has quit [Client Quit]
14:15
Nicmavr has quit [Ping timeout: 245 seconds]
14:32
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
14:34
cranq has quit [Remote host closed the connection]
14:34
cranq has joined #ruby
14:35
cow[moo] has joined #ruby
14:36
cow[moo] has quit [Client Quit]
14:36
nadir has quit [Quit: Connection closed for inactivity]
14:37
cow[moo] has joined #ruby
14:41
tdy has joined #ruby
14:42
sphenxes has joined #ruby
14:45
lomex has joined #ruby
14:45
TiglatePileser has joined #ruby
14:45
h3ll0w0rld has joined #ruby
14:51
lucasb has joined #ruby
14:57
Nicmavr has joined #ruby
15:03
Swyper has joined #ruby
15:13
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:15
cow[moo] has joined #ruby
15:17
nadir has joined #ruby
15:18
jottr has joined #ruby
15:18
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:27
TiglatePileser has quit []
15:32
DmitryBochkarev has joined #ruby
15:36
h3ll0w0rld has quit [Ping timeout: 246 seconds]
15:38
cd has quit [Quit: cd]
15:40
h3ll0w0rld has joined #ruby
15:46
h3ll0w0rld has quit [Ping timeout: 255 seconds]
15:47
h3ll0w0rld has joined #ruby
15:50
DmitryBochkarev has quit [Read error: Connection reset by peer]
15:50
DmitryBochkarev has joined #ruby
15:51
Swyper has quit [Remote host closed the connection]
15:52
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:55
Swyper has joined #ruby
15:58
suukim has joined #ruby
16:01
cow[moo] has joined #ruby
16:02
fphilipe has joined #ruby
16:06
DmitryBochkarev has quit [Ping timeout: 250 seconds]
16:13
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
16:23
cow[moo] has joined #ruby
16:26
cow[moo] has quit [Client Quit]
16:27
cow[moo] has joined #ruby
16:30
DmitryBochkarev has joined #ruby
16:31
DmitryBochkarev has quit [Max SendQ exceeded]
16:32
DmitryBochkarev has joined #ruby
16:33
guatajuk has quit [Quit: guatajuk]
16:36
AJA4351 has joined #ruby
16:38
AJA4350 has quit [Ping timeout: 250 seconds]
16:38
AJA4351 is now known as AJA4350
16:46
jefffrails35 has quit [Remote host closed the connection]
16:48
jesfre has joined #ruby
16:49
guatajuk has joined #ruby
16:51
DmitryBochkarev has quit [Ping timeout: 246 seconds]
16:53
h3ll0w0rld has quit [Quit: Konversation terminated!]
16:55
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
16:56
DmitryBochkarev has joined #ruby
16:57
reber has joined #ruby
16:58
cow[moo] has joined #ruby
17:00
guatajuk has quit [Quit: guatajuk]
17:00
hiroaki has quit [Ping timeout: 255 seconds]
17:02
zachk has joined #ruby
17:04
zachk has quit [Changing host]
17:04
zachk has joined #ruby
17:10
reber has quit [Remote host closed the connection]
17:22
jefffrails35 has joined #ruby
17:24
jefffrails35 has quit [Remote host closed the connection]
17:24
vrih has joined #ruby
17:29
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17:32
d^sh has quit [Ping timeout: 268 seconds]
17:34
d^sh has joined #ruby
17:34
cow[moo] has joined #ruby
17:34
guatajuk has joined #ruby
17:35
SuperL4g has joined #ruby
17:37
SuperLag has quit [Ping timeout: 255 seconds]
17:43
layer has joined #ruby
17:44
Swyper has quit [Remote host closed the connection]
17:52
pupsikov has joined #ruby
17:52
SuperLag has joined #ruby
17:54
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17:55
cow[moo] has joined #ruby
17:55
SuperL4g has quit [Ping timeout: 255 seconds]
17:56
cow[moo] has quit [Client Quit]
18:15
pupsikov has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
18:15
hightower3 has joined #ruby
18:17
Swyper has joined #ruby
18:18
hightower2 has quit [Ping timeout: 246 seconds]
18:20
Swyper has quit [Remote host closed the connection]
18:24
Swyper has joined #ruby
18:27
Swyper has quit [Remote host closed the connection]
18:36
ellcs has joined #ruby
18:37
DmitryBochkarev has quit [Ping timeout: 250 seconds]
18:40
hiroaki has joined #ruby
18:41
DmitryBochkarev has joined #ruby
18:47
AJA4350 has quit [Ping timeout: 250 seconds]
18:50
Swyper has joined #ruby
18:52
guatajuk has quit [Quit: guatajuk]
18:53
kapil____ has quit [Quit: Connection closed for inactivity]
19:05
agent_white has joined #ruby
19:06
nadir has quit [Quit: Connection closed for inactivity]
19:06
s3nd1v0g1us has joined #ruby
19:07
DmitryBochkarev has quit [Remote host closed the connection]
19:07
DmitryBochkarev has joined #ruby
19:08
suukim has quit [Quit: Konversation terminated!]
19:09
laaron has quit [Remote host closed the connection]
19:10
s3nd1v0g1us is now known as w4ld0
19:12
laaron has joined #ruby
19:15
dsmythe has quit [Read error: Connection reset by peer]
19:16
dsmythe has joined #ruby
19:16
clemens3_ has joined #ruby
19:18
s3nd1v0g1us has joined #ruby
19:19
w4ld0 has quit [Ping timeout: 258 seconds]
19:21
nadir has joined #ruby
19:21
_joes_ has joined #ruby
19:22
hightower3 has quit [Changing host]
19:22
hightower3 has joined #ruby
19:40
BH23 has joined #ruby
19:41
weird_error has joined #ruby
19:44
Dbugger has quit [Quit: Leaving]
19:51
layer has quit [Remote host closed the connection]
19:54
jottr has quit [Quit: WeeChat 2.4]
19:54
jottr has joined #ruby
19:58
schleppel has quit [Quit: Konversation terminated!]
20:00
fphilipe has quit [Ping timeout: 255 seconds]
20:00
mozzarella has quit [Remote host closed the connection]
20:02
mozzarella has joined #ruby
20:02
mozzarella has quit [Remote host closed the connection]
20:04
fphilipe has joined #ruby
20:05
mozzarella has joined #ruby
20:05
mozzarella has quit [Remote host closed the connection]
20:06
DmitryBochkarev has quit [Ping timeout: 255 seconds]
20:08
mozzarella has joined #ruby
20:14
houhoulis has joined #ruby
20:17
fphilipe has quit [Quit: WeeChat 2.4]
20:20
minimal_life has joined #ruby
20:22
flak has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
20:23
AJA4350 has joined #ruby
20:25
weird_error has quit [Quit: weird_error]
20:30
sphenxes has quit [Quit: Leaving]
20:37
s3nd1v0g1us has quit [Quit: WeeChat 2.2]
20:38
_joes_ has quit [Ping timeout: 245 seconds]
20:39
BH23 has quit [Ping timeout: 255 seconds]
20:46
fphilipe has joined #ruby
20:54
fphilipe has left #ruby ["WeeChat 2.4"]
20:56
fphilipe has joined #ruby
21:03
_whitelogger has joined #ruby
21:12
fphilipe has quit [Quit: WeeChat 2.4]
21:13
reber has joined #ruby
21:13
fphilipe has joined #ruby
21:15
fphilipe has quit [Client Quit]
21:15
fphilipe has joined #ruby
21:21
fphilipe_ has joined #ruby
21:21
hightower3 has quit [Read error: Connection timed out]
21:22
hightower3 has joined #ruby
21:23
fphilipe_ has quit [Client Quit]
21:26
wildermind has joined #ruby
21:26
dviola has quit [Quit: WeeChat 2.4]
21:29
dsmythe_ has joined #ruby
21:32
dsmythe has quit [Ping timeout: 244 seconds]
21:33
dsmythe_ has quit [Ping timeout: 240 seconds]
21:33
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
21:33
Swyper has quit [Remote host closed the connection]
21:36
Swyper has joined #ruby
21:37
dsmythe has joined #ruby
21:46
vrih has quit [Ping timeout: 255 seconds]
21:54
AJA4351 has joined #ruby
21:54
AJA4350 has quit [Ping timeout: 268 seconds]
21:54
AJA4351 is now known as AJA4350
21:58
minimal_life has quit [Quit: I am functioning within established parameters.]
21:59
ellcs has quit [Ping timeout: 258 seconds]
22:15
sagax has quit [Ping timeout: 246 seconds]
22:22
dsmythe has quit [Remote host closed the connection]
22:23
dsmythe has joined #ruby
22:24
dkmueller has joined #ruby
22:28
dkmueller has quit [Remote host closed the connection]
22:29
sameerynho has quit [Ping timeout: 255 seconds]
22:29
dkmueller has joined #ruby
22:35
fphilipe has quit [Ping timeout: 246 seconds]
22:38
dkmueller has quit [Remote host closed the connection]
22:38
dkmueller has joined #ruby
22:39
dkmueller has quit [Remote host closed the connection]
22:39
dkmueller has joined #ruby
22:40
dkmueller has quit [Remote host closed the connection]
22:41
dkmueller has joined #ruby
22:42
dkmueller has quit [Remote host closed the connection]
22:45
SCHAPiE has joined #ruby
22:46
lucasb has quit [Quit: Connection closed for inactivity]
22:58
reber has quit [Remote host closed the connection]
23:00
AJA4351 has joined #ruby
23:01
AJA4350 has quit [Ping timeout: 255 seconds]
23:01
AJA4351 is now known as AJA4350
23:02
RiPuk has quit [Ping timeout: 255 seconds]
23:03
RiPuk has joined #ruby
23:08
fphilipe has joined #ruby
23:14
jottr_ has joined #ruby
23:16
jottr has quit [Ping timeout: 246 seconds]
23:30
clemens3_ has quit [Ping timeout: 255 seconds]
23:30
krawchyk has joined #ruby
23:31
wildermind has quit [Quit: Connection closed for inactivity]
23:31
krawchyk has quit [Client Quit]
23:36
jottr has joined #ruby
23:38
jottr_ has quit [Ping timeout: 255 seconds]
23:41
jottr has quit [Ping timeout: 246 seconds]
23:42
fphilipe has quit [Ping timeout: 255 seconds]
23:52
agent_white has quit [Quit: brb]
23:54
agent_white has joined #ruby
23:54
kyrylo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]