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