00:00
kurko_ has joined #ruby-lang
00:04
tylersmith has quit [Remote host closed the connection]
00:05
tylersmith has joined #ruby-lang
00:06
dabradley has joined #ruby-lang
00:07
vxr74 has quit [Ping timeout: 256 seconds]
00:09
tylersmith has quit [Ping timeout: 252 seconds]
00:10
sevvie has joined #ruby-lang
00:16
woollyams has quit [Ping timeout: 252 seconds]
00:16
Johz has quit [Quit: Leaving]
00:25
tharindu has joined #ruby-lang
00:28
tharindu has quit [Remote host closed the connection]
00:28
enebo has quit [Quit: enebo]
00:30
retro|cz has joined #ruby-lang
00:31
lfox has joined #ruby-lang
00:32
tharindu has joined #ruby-lang
00:32
mistym has quit [Quit: Leaving]
00:33
zenspider has joined #ruby-lang
00:36
eugenejen has quit [Quit: eugenejen]
00:36
<
naquad >
i'm calling a lambda from gsub block and $1-9 there are nils while they've got values in gsubs block. wtf? kind of pseudocode: x = lambda { puts $1.nil? }; str.gsub(p) { x[] }
00:37
<
naquad >
> x = lambda { puts $1.nil? }; "asd".gsub(/(s)/) { x[] }
00:37
<
naquad >
eval x = lambda { puts $1.nil? }; "asd".gsub(/(s)/) { x[] }
00:37
<
naquad >
!x = lambda { puts $1.nil? }; "asd".gsub(/(s)/) { x[] }
00:37
aspires has quit [Quit: aspires]
00:37
<
naquad >
bot is dead?
00:37
anonymus_ has quit [Ping timeout: 256 seconds]
00:39
<
drbrain >
>> "am I alive" ? "yes" : "no"
00:39
<
eval-in >
drbrain => /tmp/execpad-65eae19cd275/source-65eae19cd275:2: warning: string literal in condition ... (
https://eval.in/50548)
00:39
<
drbrain >
not answer I was expecting
00:39
benlovell has joined #ruby-lang
00:40
minivan1 has quit [Ping timeout: 264 seconds]
00:41
seanlerner has joined #ruby-lang
00:42
<
imperator >
that's weird
00:42
__butch__ has quit [Quit: Leaving.]
00:43
seanlerner has quit [Remote host closed the connection]
00:43
benlovell has quit [Ping timeout: 246 seconds]
00:44
saarinen has quit [Quit: saarinen]
00:44
<
naquad >
>> x = lambda { puts $1.nil? }; "asd".gsub(/(s)/) { x[] }
00:48
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
00:49
<
zenspider >
naquad: str.gsub(p, &x) ?
00:49
<
naquad >
not the case :(
00:49
<
naquad >
not just lambda can be there
00:50
<
zenspider >
well... that's how $1-9 (and all other match globals) work.
00:51
<
zenspider >
not sure what to suggest as an alternative
00:51
jonathanmarvens has quit [Remote host closed the connection]
00:53
ldnunes_ has quit [Quit: Leaving]
00:54
jonathanmarvens has joined #ruby-lang
00:56
iliketurtles has quit [Quit: zzzzz…..]
00:56
mdedetrich has quit [Quit: Computer has gone to sleep.]
00:58
jerrytgarcia has quit [Ping timeout: 260 seconds]
00:59
jxie_ has joined #ruby-lang
00:59
jxie has quit [Read error: Connection reset by peer]
01:01
jerrytgarcia has joined #ruby-lang
01:01
saarinen has joined #ruby-lang
01:02
meise has joined #ruby-lang
01:02
sleepy_keita has joined #ruby-lang
01:02
stamina has quit [Ping timeout: 260 seconds]
01:05
charliesome has joined #ruby-lang
01:06
tkuchiki has joined #ruby-lang
01:06
tylersmith has joined #ruby-lang
01:10
brianpWins has quit [Quit: brianpWins]
01:12
ecnalyr has joined #ruby-lang
01:13
seanlerner has joined #ruby-lang
01:15
Behi has joined #ruby-lang
01:15
Coincidental has quit [Remote host closed the connection]
01:15
JoshuaPaling has joined #ruby-lang
01:16
mdedetrich has joined #ruby-lang
01:18
jxpx777 has joined #ruby-lang
01:22
seanlerner has quit [Ping timeout: 245 seconds]
01:22
Guest78788 has left #ruby-lang [#ruby-lang]
01:22
brownies has joined #ruby-lang
01:22
Tearan has quit [Quit: Sleepy Badger....]
01:26
richardburton has joined #ruby-lang
01:26
mdedetrich has quit [Ping timeout: 245 seconds]
01:26
lfox has quit [Quit: ZZZzzz…]
01:28
iliketurtles has joined #ruby-lang
01:28
|jemc| has joined #ruby-lang
01:28
mdedetrich has joined #ruby-lang
01:29
<
|jemc| >
is anybody here experimenting with decorators using the new 2.1 return value of 'def'?
01:29
lfox has joined #ruby-lang
01:31
hogeo has joined #ruby-lang
01:31
jxpx777 has quit [Quit: Leaving...]
01:33
ecnalyr has quit [Remote host closed the connection]
01:33
<
imperator >
|jemc|, doubt it since it's new - what are you trying to do?
01:33
mdedetrich has quit [Quit: Computer has gone to sleep.]
01:34
<
|jemc| >
just testing the limits/applications of it
01:34
<
|jemc| >
was discussing it with a few folks in #ruby yesterday
01:34
hahuang65 has quit [Ping timeout: 245 seconds]
01:34
<
|jemc| >
so it's possible to do a nifty decorator with a toplevel method
01:35
<
|jemc| >
but I'm running into issues with instance methods
01:35
<
|jemc| >
issues that I expected to run into
01:35
<
imperator >
sounds like a good topic for a blog post :)
01:35
<
|jemc| >
because right now it has no way of knowing the instended receiver
01:35
jxpx777 has joined #ruby-lang
01:36
<
|jemc| >
I'll do a pastebin if you're interested
01:36
<
imperator >
can you bind it to a receiver?
01:36
<
|jemc| >
do you have 2.1?
01:36
mdedetrich has joined #ruby-lang
01:37
<
|jemc| >
imperator - not sure how to get the intended receiver object into the decorator method, because it runs at class definition
01:37
<
|jemc| >
I'll show you
01:37
lfox has quit [Quit: ZZZzzz…]
01:37
<
|jemc| >
here it is with toplevel method foo
01:40
<
|jemc| >
if you define foo inside of 'class A', you get the exception that you would expect:
01:42
<
|jemc| >
and if you change method(meth) to instance_method(meth), the method object is still unbound:
01:42
<
imperator >
i guess that just strikes me as an odd thing to do
01:43
<
|jemc| >
well, that's all well and good
01:43
<
|jemc| >
I'm pushing the limits for the sake of doing so
01:43
alekst has quit [Quit: Leaving...]
01:44
iliketurtles has quit [Quit: zzzzz…..]
01:45
<
|jemc| >
I can easily bind inside the decorated block
01:47
<
|jemc| >
that way, I don't need to know the receiver until call of the wrapping function
01:48
<
imperator >
there you go :)
01:48
<
|jemc| >
yeah, this is some great sugar for python-style decorators
01:48
<
|jemc| >
thanks, ruby 2.1!
01:49
aef has joined #ruby-lang
01:51
enebo has joined #ruby-lang
01:52
malev has quit [Quit: Leaving]
01:56
jonathanmarvens has quit [Remote host closed the connection]
01:56
bzalasky has joined #ruby-lang
01:56
Tearan has joined #ruby-lang
01:56
jonathanmarvens has joined #ruby-lang
02:04
nertzy2 has joined #ruby-lang
02:05
sevvie has quit [Ping timeout: 245 seconds]
02:07
jonathanmarvens has quit [Remote host closed the connection]
02:08
seanlerner has joined #ruby-lang
02:09
jonathanmarvens has joined #ruby-lang
02:10
Domon has joined #ruby-lang
02:10
bantic has quit [Quit: bantic]
02:12
macmartine has joined #ruby-lang
02:12
sevvie has joined #ruby-lang
02:12
mdedetrich has quit [Quit: Computer has gone to sleep.]
02:13
kgrz has joined #ruby-lang
02:14
Gaelan is now known as GaelanAintAround
02:14
kgrz has quit [Read error: Connection reset by peer]
02:14
seanlerner has quit [Remote host closed the connection]
02:15
mdedetrich has joined #ruby-lang
02:17
nertzy2 has quit [Quit: This computer has gone to sleep]
02:18
Coincidental has joined #ruby-lang
02:21
kurko_ has quit [Ping timeout: 248 seconds]
02:23
znz_jp has quit [Ping timeout: 245 seconds]
02:24
kurko_ has joined #ruby-lang
02:25
tharindu has quit [Remote host closed the connection]
02:29
richardburton has quit [Quit: Leaving.]
02:31
richardburton has joined #ruby-lang
02:31
jerrytgarcia has quit [Quit: WeeChat 0.4.1]
02:31
znz_jp has joined #ruby-lang
02:31
Guest35787 has joined #ruby-lang
02:31
richardburton has quit [Client Quit]
02:31
jonathanmarvens has quit [Remote host closed the connection]
02:31
Guest35787 is now known as diegoviola
02:32
hahuang65 has joined #ruby-lang
02:33
jerrytgarcia has joined #ruby-lang
02:38
bzalasky has quit [Remote host closed the connection]
02:39
mj12albert has quit []
02:41
TheMoonMaster has quit [Remote host closed the connection]
02:42
iliketurtles has joined #ruby-lang
02:47
iliketurtles has quit [Client Quit]
02:51
yuroyoro has joined #ruby-lang
02:51
seanlerner has joined #ruby-lang
02:52
yuroyoro has quit [Remote host closed the connection]
02:52
yuroyoro has joined #ruby-lang
02:53
yuroyoro has quit [Remote host closed the connection]
02:53
jxpx777 has quit [Quit: Leaving...]
02:53
kurko_ has quit [Ping timeout: 245 seconds]
02:54
macmartine has quit [Remote host closed the connection]
02:55
mj12albert has joined #ruby-lang
02:56
kurko_ has joined #ruby-lang
02:56
mdedetrich has quit [Quit: Computer has gone to sleep.]
02:57
lmadrigal has joined #ruby-lang
02:58
mdedetrich has joined #ruby-lang
02:59
KM has joined #ruby-lang
03:00
jerrytgarcia has quit [Ping timeout: 245 seconds]
03:01
TheMoonMaster has joined #ruby-lang
03:08
ItSANgo has quit [Quit: Leaving...]
03:08
macmartine has joined #ruby-lang
03:08
mdedetrich has quit [Quit: Computer has gone to sleep.]
03:09
ikrima has quit [Quit: Computer has gone to sleep.]
03:10
mdedetrich has joined #ruby-lang
03:12
kgrz has joined #ruby-lang
03:18
Behi has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
03:21
Behi has joined #ruby-lang
03:21
|jemc| has left #ruby-lang ["WeeChat 0.4.1"]
03:25
jxie has joined #ruby-lang
03:25
jxie_ has quit [Read error: Connection reset by peer]
03:29
jerrytgarcia has joined #ruby-lang
03:31
bzalasky has joined #ruby-lang
03:31
thiagoborges has quit [Remote host closed the connection]
03:37
GoldenGiant has joined #ruby-lang
03:37
GoldenGiant has quit [Client Quit]
03:37
GoldenGiant has joined #ruby-lang
03:38
GoldenGiant has quit [Client Quit]
03:39
mdedetrich has quit [Quit: Computer has gone to sleep.]
03:40
mdedetrich has joined #ruby-lang
03:48
kurko_ has quit [Ping timeout: 240 seconds]
03:49
kurko_ has joined #ruby-lang
03:51
bondar has quit [Ping timeout: 248 seconds]
03:54
imperator has left #ruby-lang ["Leaving"]
03:54
tharindu has joined #ruby-lang
03:55
enebo has quit [Quit: enebo]
03:56
ItSANgo has joined #ruby-lang
03:57
dhruvasagar has joined #ruby-lang
03:59
saarinen has quit [Quit: saarinen]
04:04
jonathanmarvens has joined #ruby-lang
04:04
mdedetrich has quit [Ping timeout: 268 seconds]
04:05
cstrahan has quit [Ping timeout: 248 seconds]
04:07
mdedetrich has joined #ruby-lang
04:07
soba has joined #ruby-lang
04:09
kurko_ has quit [Quit: Computer has gone to sleep.]
04:10
mdedetrich has quit [Client Quit]
04:12
hahuang65 has quit [Ping timeout: 252 seconds]
04:12
mdedetrich has joined #ruby-lang
04:23
matled- has joined #ruby-lang
04:24
apeiros has quit [Remote host closed the connection]
04:24
roflmaus has joined #ruby-lang
04:24
havenwood has joined #ruby-lang
04:24
apeiros has joined #ruby-lang
04:25
Boohbah has quit [Ping timeout: 240 seconds]
04:25
chris2 has quit [Ping timeout: 245 seconds]
04:25
matled has quit [Ping timeout: 264 seconds]
04:25
matled- is now known as matled
04:25
lolmaus has quit [Ping timeout: 246 seconds]
04:26
wallerdev has quit [Read error: Connection reset by peer]
04:26
wallerdev has joined #ruby-lang
04:26
Muz has quit [Ping timeout: 264 seconds]
04:26
ledestin has quit [Read error: Connection reset by peer]
04:26
ledestin has joined #ruby-lang
04:27
nneko001__ has joined #ruby-lang
04:27
Muz has joined #ruby-lang
04:27
chris2 has joined #ruby-lang
04:30
Boohbah has joined #ruby-lang
04:33
mdedetrich has quit [Ping timeout: 245 seconds]
04:35
mdedetrich has joined #ruby-lang
04:36
fuhgeddaboudit has quit [Ping timeout: 252 seconds]
04:37
hahuang65 has joined #ruby-lang
04:40
benlovell has joined #ruby-lang
04:43
havenwood has quit [Remote host closed the connection]
04:44
benlovell has quit [Ping timeout: 246 seconds]
04:45
jonahR has joined #ruby-lang
04:46
jsullivandigs has quit [Remote host closed the connection]
04:46
jsullivandigs has joined #ruby-lang
04:47
jsullivandigs has quit [Remote host closed the connection]
04:47
jsullivandigs has joined #ruby-lang
04:50
kgrz has quit [Remote host closed the connection]
04:51
antulik-afk is now known as antulik
04:53
schaerli has joined #ruby-lang
04:55
Tearan has quit [Quit: Sleepy Badger....]
04:55
symm- has joined #ruby-lang
04:57
apeiros has quit [Remote host closed the connection]
05:02
brianpWins has joined #ruby-lang
05:03
cads has joined #ruby-lang
05:04
schaerli has quit [Remote host closed the connection]
05:09
seanlerner has quit [Remote host closed the connection]
05:18
bzalasky has quit [Read error: Connection reset by peer]
05:18
rue has quit [Remote host closed the connection]
05:18
rue has joined #ruby-lang
05:19
bzalasky has joined #ruby-lang
05:19
Boohbah has quit [Ping timeout: 240 seconds]
05:20
Boohbah has joined #ruby-lang
05:22
tylersmith has quit [Remote host closed the connection]
05:23
tylersmith has joined #ruby-lang
05:23
iliketurtles has joined #ruby-lang
05:23
antulik is now known as antulik-afk
05:24
hahuang61 has joined #ruby-lang
05:25
arBmind has joined #ruby-lang
05:25
hahuang65 has quit [Ping timeout: 268 seconds]
05:27
tylersmith has quit [Ping timeout: 260 seconds]
05:30
macmartine has quit [Read error: Connection reset by peer]
05:31
macmartine has joined #ruby-lang
05:31
apeiros has joined #ruby-lang
05:34
robbyoconnor has joined #ruby-lang
05:34
macmartine has quit [Remote host closed the connection]
05:39
iliketurtles has quit [Quit: zzzzz…..]
05:53
jerrytgarcia has quit [Ping timeout: 240 seconds]
05:53
brianpWins has quit [Quit: brianpWins]
05:54
jerrytgarcia has joined #ruby-lang
05:55
iliketurtles has joined #ruby-lang
05:55
iliketurtles has quit [Remote host closed the connection]
05:56
brianpWins has joined #ruby-lang
05:56
postmodern has quit [Quit: Leaving]
05:58
aspires has joined #ruby-lang
06:02
kgrz has joined #ruby-lang
06:02
aspires has quit [Client Quit]
06:04
ikrima has joined #ruby-lang
06:05
jonathanmarvens has quit [Remote host closed the connection]
06:06
jonathanmarvens has joined #ruby-lang
06:08
sevvie has quit [Ping timeout: 246 seconds]
06:08
kgrz has quit [Ping timeout: 246 seconds]
06:09
symm- has quit [Read error: Connection reset by peer]
06:09
symm- has joined #ruby-lang
06:09
wallerdev has quit [Quit: wallerdev]
06:22
tonni has quit [Remote host closed the connection]
06:33
tylersmith has joined #ruby-lang
06:38
tylersmith has quit [Ping timeout: 260 seconds]
06:39
tonni has joined #ruby-lang
06:45
tonni has quit [Ping timeout: 240 seconds]
06:48
relix has joined #ruby-lang
06:54
hhatch has joined #ruby-lang
06:56
tonni has joined #ruby-lang
06:59
CoreData has quit [Ping timeout: 245 seconds]
06:59
solars has joined #ruby-lang
07:07
runeb- has joined #ruby-lang
07:07
runeb- is now known as runeb
07:07
arBmind has quit [Quit: Leaving.]
07:10
bondar has joined #ruby-lang
07:10
ruby-lang291 has joined #ruby-lang
07:10
tonni has quit [Read error: Connection reset by peer]
07:12
h_kon has joined #ruby-lang
07:14
mbj has joined #ruby-lang
07:15
diegoviola has quit [Quit: WeeChat 0.4.1]
07:15
ruby-lang291 has quit [Ping timeout: 250 seconds]
07:16
dc5ala has joined #ruby-lang
07:19
tonni has joined #ruby-lang
07:21
schlubbi has joined #ruby-lang
07:23
arBmind has joined #ruby-lang
07:26
mdedetrich has quit [Quit: Computer has gone to sleep.]
07:28
tonni has quit [Read error: Connection reset by peer]
07:31
mdedetrich has joined #ruby-lang
07:34
<
yorickpeterse >
morning
07:36
jerrytgarcia has quit [Quit: WeeChat 0.4.1]
07:38
mbj has quit [Ping timeout: 245 seconds]
07:38
<
maloik >
ljarvis: hotel stuff is sorted now? didn't get the confirmation email
07:41
axsuul has joined #ruby-lang
07:41
tonni has joined #ruby-lang
07:42
Kero has quit [Quit: upgrade]
07:42
Kero has joined #ruby-lang
07:44
elia has joined #ruby-lang
07:49
mbj has joined #ruby-lang
07:52
mbj has quit [Client Quit]
07:54
elia has quit [Ping timeout: 248 seconds]
07:56
elia has joined #ruby-lang
07:56
vlad_starkov has joined #ruby-lang
07:57
tonni has quit [Remote host closed the connection]
08:00
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
08:01
xuser has joined #ruby-lang
08:04
benlovell has joined #ruby-lang
08:05
adambeynon has joined #ruby-lang
08:06
CoreData has joined #ruby-lang
08:06
<
ljarvis >
maloik: na i had a bit of a fail day yesterday, it's first thing on the agenda today though so you should get an email soon
08:07
runeb has quit [Remote host closed the connection]
08:08
CoreData has quit [Client Quit]
08:08
gianlucadv has quit [Ping timeout: 260 seconds]
08:08
CoreData has joined #ruby-lang
08:09
<
maloik >
alright :)
08:13
skade has joined #ruby-lang
08:15
nofxx has quit [Ping timeout: 264 seconds]
08:15
Behi has quit [Ping timeout: 240 seconds]
08:19
Markvilla has joined #ruby-lang
08:21
runeb has joined #ruby-lang
08:22
Markvilla has quit [Client Quit]
08:22
Markvilla has joined #ruby-lang
08:23
jerrytgarcia has joined #ruby-lang
08:23
tonni has joined #ruby-lang
08:34
skmp has joined #ruby-lang
08:37
vlad_sta_ has joined #ruby-lang
08:37
vlad_starkov has quit [Read error: Connection reset by peer]
08:38
mdedetrich has quit [Quit: Computer has gone to sleep.]
08:38
julweber has joined #ruby-lang
08:39
<
chris2 >
hah, finally i found a term for contrived, useless metaprogramming
08:39
Coincidental has quit [Remote host closed the connection]
08:39
<
chris2 >
ruby goldberg code :)
08:40
julweber has quit [Remote host closed the connection]
08:41
skmp has quit [Read error: Connection reset by peer]
08:44
hogeo has quit [Remote host closed the connection]
08:44
hogeo has joined #ruby-lang
08:52
kgrz has joined #ruby-lang
08:52
tonni has quit [Remote host closed the connection]
08:57
julweber has joined #ruby-lang
08:57
gianlucadv has joined #ruby-lang
08:59
bzalasky has quit [Remote host closed the connection]
09:02
tonni has joined #ruby-lang
09:03
CoreData has quit [Ping timeout: 264 seconds]
09:09
sascha_d has quit [Quit: obai]
09:12
schaerli has joined #ruby-lang
09:16
<
maloik >
pirate music, beer, whiskey, bars, projectors, hamburgers... all day
09:16
<
maloik >
doubt I'll get any real coding done :D
09:16
kek has joined #ruby-lang
09:17
benlovell has quit [Ping timeout: 260 seconds]
09:26
CoreData has joined #ruby-lang
09:26
<
yorickpeterse >
load page, queue size says 2880
09:26
<
yorickpeterse >
refresh, it now says 2840
09:26
<
yorickpeterse >
refresh again, back at 2880
09:26
<
yorickpeterse >
"Amazon" etc
09:27
dhruvasagar has quit [Ping timeout: 240 seconds]
09:29
dhruvasagar has joined #ruby-lang
09:34
Pupeno has joined #ruby-lang
09:35
stiang has joined #ruby-lang
09:36
tbuehlmann has joined #ruby-lang
09:36
Domon has quit [Remote host closed the connection]
09:37
dhruvasagar has quit [Ping timeout: 264 seconds]
09:38
dhruvasagar has joined #ruby-lang
09:40
kitak has quit [Ping timeout: 246 seconds]
09:40
vlad_sta_ has quit [Remote host closed the connection]
09:45
kitak has joined #ruby-lang
09:46
benlovell has joined #ruby-lang
09:50
minivan has joined #ruby-lang
09:52
Domon has joined #ruby-lang
09:52
soba has quit [Ping timeout: 252 seconds]
09:56
nertzy2 has joined #ruby-lang
09:58
thisirs has joined #ruby-lang
09:59
CoreData has quit [Quit: CoreData]
10:00
CoreData has joined #ruby-lang
10:03
charliesome has joined #ruby-lang
10:07
nertzy2 has quit [Quit: This computer has gone to sleep]
10:07
MaddinXx has joined #ruby-lang
10:11
jonathanmarvens has quit [Remote host closed the connection]
10:11
vlad_starkov has joined #ruby-lang
10:12
runeb has quit [Remote host closed the connection]
10:14
<
andrewvos >
yorickpeterse: what wifi driver did you say to use again?
10:14
<
andrewvos >
yorickpeterse: I'm getting terrible signal on this driver
10:15
<
andrewvos >
I move like 10 paces away from my router and it shits out
10:15
<
andrewvos >
literally
10:15
<
yorickpeterse >
andrewvos: iwlwifi on my thinkpad, b43 on my macbook
10:15
<
yorickpeterse >
also, is it an 11n network?
10:15
<
yorickpeterse >
you're probably using iwlwifi
10:15
soba has joined #ruby-lang
10:15
<
yorickpeterse >
errr wait
10:15
<
yorickpeterse >
you're on a macbook right?
10:16
<
yorickpeterse >
if so, run this as root
10:16
<
yorickpeterse >
echo 'options b43 btcoex=0 qos=0' > /etc/modprobe.d/b43.conf
10:16
<
yorickpeterse >
unless Poobuntu puts that shit somewhere else
10:18
<
andrewvos >
macbookair
10:18
<
yorickpeterse >
yeah, b43
10:18
<
andrewvos >
can I message you rather, probably not the right place for this
10:18
<
yorickpeterse >
sure
10:19
jonathanmarvens has joined #ruby-lang
10:19
vlad_starkov has quit [Ping timeout: 246 seconds]
10:20
solars has quit [Ping timeout: 245 seconds]
10:21
mbj has joined #ruby-lang
10:21
ikrima has quit [Quit: Computer has gone to sleep.]
10:27
snarfmason has quit [Ping timeout: 245 seconds]
10:28
Elinos has joined #ruby-lang
10:30
stamina has joined #ruby-lang
10:32
mbj has left #ruby-lang [#ruby-lang]
10:35
solars has joined #ruby-lang
10:36
retro|cz has quit [Ping timeout: 260 seconds]
10:40
Johz has joined #ruby-lang
10:41
ledestin has quit [Quit: ledestin]
10:44
Elinos has quit [Ping timeout: 250 seconds]
10:44
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
10:45
bondar has quit [Ping timeout: 240 seconds]
10:46
CoreData has quit [Read error: Operation timed out]
10:46
toretore has joined #ruby-lang
10:48
jonahR has quit [Quit: jonahR]
10:49
vlad_starkov has joined #ruby-lang
10:54
retro|cz has joined #ruby-lang
10:54
vlad_sta_ has joined #ruby-lang
10:55
vlad_starkov has quit [Read error: Connection reset by peer]
10:55
Hauleth has joined #ruby-lang
10:58
h_kon has quit [Remote host closed the connection]
11:00
vlad_sta_ has quit [Remote host closed the connection]
11:00
h_kon has joined #ruby-lang
11:02
Behi has joined #ruby-lang
11:06
kitak has quit [Remote host closed the connection]
11:07
hogeo has quit [Ping timeout: 252 seconds]
11:08
Hauleth has quit [Quit: Wychodzi]
11:08
bastilian has joined #ruby-lang
11:08
Hauleth has joined #ruby-lang
11:10
charliesome has joined #ruby-lang
11:12
jxie has quit [Quit: leaving]
11:21
tovias has joined #ruby-lang
11:21
tovias has joined #ruby-lang
11:21
tovias has quit [Changing host]
11:21
kgrz has quit [Remote host closed the connection]
11:21
mbj has joined #ruby-lang
11:22
tbuehlmann has quit [Ping timeout: 264 seconds]
11:25
nisstyre has quit [Quit: Leaving]
11:26
tbuehlmann has joined #ruby-lang
11:26
tovias has quit [Ping timeout: 264 seconds]
11:31
tharindu has quit [Ping timeout: 245 seconds]
11:32
Domon has quit [Remote host closed the connection]
11:33
Domon has joined #ruby-lang
11:34
dhruvasagar has quit [Ping timeout: 264 seconds]
11:35
tharindu has joined #ruby-lang
11:37
Domon has quit [Ping timeout: 246 seconds]
11:38
dhruvasagar has joined #ruby-lang
11:39
benlovell has quit [Ping timeout: 252 seconds]
11:42
ldnunes has joined #ruby-lang
11:43
thisirs has quit [Remote host closed the connection]
11:49
tkuchiki has quit [Remote host closed the connection]
11:53
mayday_jay has quit [Quit: c ya!]
11:56
kgrz has joined #ruby-lang
11:56
arBmind1 has joined #ruby-lang
11:58
arBmind has quit [Ping timeout: 245 seconds]
12:00
vlad_starkov has joined #ruby-lang
12:00
vlad_starkov has quit [Read error: Connection reset by peer]
12:05
kgrz has quit [Ping timeout: 268 seconds]
12:10
axsuul has quit [Ping timeout: 268 seconds]
12:10
kurko_ has joined #ruby-lang
12:15
snarfmason has joined #ruby-lang
12:17
thiagoborges has joined #ruby-lang
12:17
thiagoborges has quit [Remote host closed the connection]
12:17
benlovell has joined #ruby-lang
12:21
riffraff has joined #ruby-lang
12:22
scampbell has joined #ruby-lang
12:24
<
Silex >
how do I know the success of FileUtils.mkdir ?
12:24
<
Silex >
with `mkdir foo` I can check $?.exitstatus...
12:26
itcharlie1 has joined #ruby-lang
12:27
<
charliesome >
Silex: it'll throw an exception if it fails
12:28
<
Silex >
ah, okay thanks
12:29
tharindu has quit [Remote host closed the connection]
12:31
skyBox has joined #ruby-lang
12:31
skyBox has left #ruby-lang [#ruby-lang]
12:34
ldnunes has quit [Read error: Connection reset by peer]
12:35
ldnunes has joined #ruby-lang
12:37
wmoxam has quit [Ping timeout: 245 seconds]
12:37
benlovell has quit [Quit: leaving]
12:37
wmoxam has joined #ruby-lang
12:38
wallerdev has joined #ruby-lang
12:44
breakingthings has joined #ruby-lang
12:48
vlad_starkov has joined #ruby-lang
12:50
GaelanAintAround is now known as Gaelan
12:50
jxpx777 has joined #ruby-lang
12:51
tkuchiki has joined #ruby-lang
12:54
schlubbi has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
12:55
CoreData has joined #ruby-lang
12:56
vlad_starkov has quit [Ping timeout: 240 seconds]
12:58
banister has joined #ruby-lang
12:58
banisterfiend has quit [Read error: Connection reset by peer]
13:01
vlad_starkov has joined #ruby-lang
13:05
robbyoconnor has quit [Ping timeout: 268 seconds]
13:08
mdedetrich has joined #ruby-lang
13:08
soba has quit [Ping timeout: 240 seconds]
13:09
Gaelan is now known as GaelanAintAround
13:16
vlad_starkov has quit [Ping timeout: 260 seconds]
13:17
vlad_starkov has joined #ruby-lang
13:17
imperator has joined #ruby-lang
13:18
alekst has joined #ruby-lang
13:25
Johz has quit [Remote host closed the connection]
13:25
dhruvasagar has quit [Ping timeout: 256 seconds]
13:26
Behi has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
13:27
julweber_ has joined #ruby-lang
13:27
Johz has joined #ruby-lang
13:29
julweber has quit [Ping timeout: 240 seconds]
13:30
lfox has joined #ruby-lang
13:32
jerrytgarcia has quit [Ping timeout: 256 seconds]
13:32
bastilian has quit [Ping timeout: 260 seconds]
13:35
jerrytgarcia has joined #ruby-lang
13:35
bastilian has joined #ruby-lang
13:37
dc5ala has quit [Quit: Ex-Chat]
13:37
mdedetrich has quit [Quit: Computer has gone to sleep.]
13:40
mbj has quit [Quit: leaving]
13:42
stiang has quit [Quit: stiang]
13:45
deception has joined #ruby-lang
13:45
knu has quit [Read error: Connection reset by peer]
13:46
csaunders has joined #ruby-lang
13:47
sascha_d has joined #ruby-lang
13:47
vlad_sta_ has joined #ruby-lang
13:48
vlad_starkov has quit [Read error: No route to host]
13:52
eugenejen has joined #ruby-lang
13:55
shinnya has joined #ruby-lang
13:56
vlad_sta_ has quit [Remote host closed the connection]
13:57
h_kon has quit [Remote host closed the connection]
14:01
anonymuse has joined #ruby-lang
14:05
anonymuse has quit [Remote host closed the connection]
14:09
malev has joined #ruby-lang
14:12
jonathanmarvens has quit [Remote host closed the connection]
14:13
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
14:14
fuhgeddaboudit has joined #ruby-lang
14:15
tonni has quit [Remote host closed the connection]
14:17
rue|w has quit [Remote host closed the connection]
14:20
imperator2 has quit [Ping timeout: 245 seconds]
14:23
nofxx has joined #ruby-lang
14:24
GaelanAintAround is now known as Gaelan
14:25
Uranio has joined #ruby-lang
14:26
jonathanmarvens has joined #ruby-lang
14:27
dhruvasagar has joined #ruby-lang
14:28
benlovell has joined #ruby-lang
14:28
cstrahan has joined #ruby-lang
14:30
kurko_ has quit [Ping timeout: 260 seconds]
14:31
kurko_ has joined #ruby-lang
14:31
<
yorickpeterse >
Today Yorick juggles with servers while trying to balance half-assed code on his left leg
14:32
<
yorickpeterse >
who says men can't multitask
14:32
<
ljarvis >
sounds like you're on your way to proving it right
14:32
nneko001__ has quit [Quit: Konversation terminated!]
14:32
<
yorickpeterse >
so far everything is working pretty well
14:34
Pupeno_ has joined #ruby-lang
14:36
Pupeno_ has quit [Remote host closed the connection]
14:37
jsullivandigs has quit [Remote host closed the connection]
14:38
jsullivandigs has joined #ruby-lang
14:38
Pupeno has quit [Ping timeout: 245 seconds]
14:38
jsullivandigs has quit [Read error: Connection reset by peer]
14:38
jsullivandigs has joined #ruby-lang
14:39
bzalasky has joined #ruby-lang
14:41
bzalasky has quit [Remote host closed the connection]
14:46
bzalasky has joined #ruby-lang
14:46
cored has joined #ruby-lang
14:46
cored has quit [Changing host]
14:46
cored has joined #ruby-lang
14:48
bzalasky_ has joined #ruby-lang
14:50
bzalasky has quit [Ping timeout: 248 seconds]
14:51
irlrobot has joined #ruby-lang
14:54
cads has quit [Ping timeout: 264 seconds]
14:55
Gaelan is now known as GaelanAintAround
15:03
ejen has joined #ruby-lang
15:03
<
maloik >
chaos in my head
15:03
<
cout >
thanks maloik, now I have that song stuck in my head
15:03
dhruvasagar has quit [Ping timeout: 245 seconds]
15:03
<
maloik >
what song ?
15:04
<
maloik >
I actually meant I have chaos going on in my head right now :(
15:04
<
cout >
CHAOS IN MY HEAD, CHAOS IN MY HEAD, DUH DUH DUH DUH DUH DUH CHAOS IN MY HEAD
15:04
GeissT has quit [Read error: Connection reset by peer]
15:04
<
maloik >
yea... no sorry doesn't ring a bell
15:04
<
breakingthings >
THIS CRAAAWLING IN MY SKIIIIIIN
15:04
<
maloik >
oh god no not linkin park
15:04
eugenejen has quit [Ping timeout: 245 seconds]
15:04
ejen is now known as eugenejen
15:04
<
maloik >
sorry, if you like that then good for you :) just not my thing
15:04
<
breakingthings >
lol
15:05
<
breakingthings >
it was just the first thing that popped into my head
15:06
sevvie has joined #ruby-lang
15:06
<
cout >
that's linkin park? made me think of red...
15:07
<
andrewvos >
what's the time, I want to go to bed
15:07
<
ljarvis >
andrewvos: 04:07pm
15:07
<
maloik >
oeh... megadeth - addicted to chaos
15:07
<
andrewvos >
ljarvis: I was trying to rhyme
15:08
<
maloik >
andrewvos: oh is it that time ?
15:08
<
ljarvis >
andrewvos: fuck you i was trying to be helpful
15:08
<
maloik >
not rhyming.
15:08
<
ljarvis >
fukin wot u muggin cunt
15:08
<
andrewvos >
limey douche
15:08
<
andrewvos >
go drink some tea
15:08
<
ljarvis >
ok wanna join me?
15:08
<
andrewvos >
and wear some adidas
15:09
<
ljarvis >
i have crumpets too
15:09
<
cout >
ljarvis: sure but then I'll have to pee
15:09
<
andrewvos >
wait what are crumpets again?
15:09
<
andrewvos >
ljarvis: hey give me some insults for my girlfirend, she's british
15:09
<
andrewvos >
ljarvis: she's from essex so I 've exhausted all teh chav jokes obviously
15:09
<
ljarvis >
andrewvos: eh, those are the best
15:09
<
andrewvos >
yeah I know
15:10
<
cout >
andrewvos: you could tell her she's as beautiful as a scottish woman..
15:10
<
ljarvis >
call her a skaggy bint
15:10
<
ljarvis >
cout: I know some sexy scottish women
15:11
<
cout >
ljarvis: yes me too
15:11
<
cout >
but brits don't like to be associated with scots
15:11
<
cout >
well the ones I know don't
15:11
yfeldblum has quit [Ping timeout: 240 seconds]
15:11
<
cout >
I don't really know you as well
15:11
solars has quit [Ping timeout: 256 seconds]
15:11
<
ljarvis >
meh, brits dont like to be associated with anyone
15:11
<
cout >
ok good point
15:11
malev has quit [Ping timeout: 252 seconds]
15:11
<
yorickpeterse >
don't worry, it works the same way around
15:12
GoldenGiant has joined #ruby-lang
15:12
benlovell has quit [Quit: leaving]
15:15
<
cout >
pretty sure all my red blood cells are chemically bonded to pg tips molecules
15:18
mmorga has joined #ruby-lang
15:19
phoyce has joined #ruby-lang
15:20
yfeldblum has joined #ruby-lang
15:20
mmorga has quit [Remote host closed the connection]
15:21
<
phoyce >
Hey there, anyone willing to help me with an issue?
15:21
<
ljarvis >
phoyce: ask your question, there's lots of people here
15:21
rue has quit [Remote host closed the connection]
15:21
<
phoyce >
Host: DigitalOcean
15:21
<
phoyce >
OS: Ubuntu 12.04 | Ruby: 2.0.0p247 | Rails 3.20
15:22
mbj has joined #ruby-lang
15:22
<
phoyce >
LAMP installed.
15:22
<
phoyce >
Switched WEBrick to Thin
15:22
tonni has joined #ruby-lang
15:22
<
phoyce >
Im trying to follow a tutorial online
15:22
<
phoyce >
I start my rails server and can see Thin running fine in the console
15:22
rue has joined #ruby-lang
15:22
<
phoyce >
However when I try and hit IP:3000 I get nothing.
15:22
<
phoyce >
If I hit the IP I get the default Apache page.
15:23
tubbo has joined #ruby-lang
15:23
<
phoyce >
Any suggestions?
15:25
mmorga has joined #ruby-lang
15:25
<
phoyce >
No one has any advice?
15:26
<
phoyce >
ljarvis, do you know of a more active Ruby IRC channel?
15:26
mistym has joined #ruby-lang
15:27
bzalasky_ has quit [Remote host closed the connection]
15:27
<
ljarvis >
phoyce: #rubyonrails for rails specific questions
15:28
<
ljarvis >
anyway you need something like passenger
15:28
<
ljarvis >
apache just proxies requests
15:28
rue|w has joined #ruby-lang
15:28
<
phoyce >
Thanks, I'll check that out.
15:28
phoyce has left #ruby-lang [#ruby-lang]
15:28
havenwood has joined #ruby-lang
15:29
imperator2 has joined #ruby-lang
15:30
CoreData has quit [Read error: Operation timed out]
15:30
dhruvasagar has joined #ruby-lang
15:31
kgrz has joined #ruby-lang
15:32
rue|w has quit [Ping timeout: 246 seconds]
15:40
deception has quit [Ping timeout: 256 seconds]
15:42
eugenejen has quit [Ping timeout: 260 seconds]
15:42
Naeblis_ has joined #ruby-lang
15:43
jacktrick has joined #ruby-lang
15:43
<
Naeblis_ >
jacktrick: sup
15:43
eugenejen has joined #ruby-lang
15:43
jonathanmarvens has quit [Remote host closed the connection]
15:44
GoldenGiant has quit [Ping timeout: 240 seconds]
15:44
momomomomo has joined #ruby-lang
15:44
brianpWins has quit [Quit: brianpWins]
15:46
GoldenGiant has joined #ruby-lang
15:47
bzalasky has joined #ruby-lang
15:49
Johz has quit [Ping timeout: 252 seconds]
15:50
zmike123 has joined #ruby-lang
15:50
jxie has joined #ruby-lang
15:52
deception has joined #ruby-lang
15:54
knu has joined #ruby-lang
15:59
mistym has quit [Remote host closed the connection]
16:00
GoldenGiant has quit [Quit: Computer has gone to sleep.]
16:02
vmoravec has quit [Quit: Leaving]
16:02
Johz has joined #ruby-lang
16:02
GoldenGiant has joined #ruby-lang
16:04
alekst has quit [Quit: Leaving...]
16:05
julweber_ has quit [Remote host closed the connection]
16:08
pellenation has joined #ruby-lang
16:11
Pupeno has joined #ruby-lang
16:11
seanlerner has joined #ruby-lang
16:12
amione has joined #ruby-lang
16:12
jacktrick has quit []
16:13
mistym has joined #ruby-lang
16:13
mistym has quit [Changing host]
16:13
mistym has joined #ruby-lang
16:13
<
amione >
Anyone here familiar with test/unit in here?
16:14
<
ljarvis >
amione: lots of people
16:14
<
erikh >
dat question
16:14
mmorga has quit [Remote host closed the connection]
16:15
<
amione >
Okay, so I'm writing a quick test and I'm trying to capture any failures into a file during the teardown section of my testcase.
16:15
GoldenGiant has quit [Quit: Computer has gone to sleep.]
16:15
<
amione >
I do if @test_passed then
16:15
pellenation has quit [Quit: Leaving.]
16:15
<
amione >
write to file
16:15
GoldenGiant has joined #ruby-lang
16:16
<
erikh >
what's the goal in capturing it to a file?
16:16
<
amione >
but I can't seem to identify what the variable is that contains the failure
16:16
<
erikh >
that's because there isn't one
16:16
<
amione >
The test is supposed to run on a remote server whenever code is pushed to the git repo.
16:16
<
erikh >
I mean, there's output, but this is... there are better ways to do this
16:16
<
erikh >
rake test 2>&1 >test_run.log
16:17
sepp2k has joined #ruby-lang
16:17
<
erikh >
acutally, here's something more complete:
16:17
<
erikh >
rake test 2>&1 >test_run.log || mail -s 'failed test yo' boss@your-company.com < test_run.log
16:18
<
erikh >
which will email the test run output to your boss if something fails
16:18
<
amione >
2> is stderr right?
16:18
<
erikh >
2>&1 redirects stderr to stdout
16:18
<
amione >
I think test/unit just puts everything to stdout
16:18
<
erikh >
then we redirect stdout to a file
16:18
<
erikh >
yes, but your test runs migth have additional context as a part of the run
16:18
<
erikh >
debug output from your program, etc.
16:20
GoldenGiant has quit [Ping timeout: 245 seconds]
16:20
<
amione >
That's true. I was hoping to send only errors to a group message board. If I send the whole thing, even if it is all passes people will just start ignoring it.
16:20
<
erikh >
erikh | which will email the test run output to your boss if something fails
16:20
<
erikh >
it doesn't email if something passes
16:21
<
erikh >
rake test will exit non-zero if there's a failure
16:21
<
erikh >
so use.. unix
16:21
schaerli has quit [Remote host closed the connection]
16:22
<
amione >
okay, let me try playing around with your suggestion. Thanks!
16:22
<
erikh >
yep, if something comes up, happy to help you refine it
16:24
<
imperator2 >
you could always reopen $stdout/$stderr in the test file itself
16:24
<
erikh >
go home, you're drunk
16:24
<
imperator2 >
am not
16:25
<
erikh >
in hardware porn news, 10x DL580's just arrived
16:25
<
erikh >
to add to my
16:25
<
erikh >
of hp machines
16:25
<
erikh >
now I vanish to talk elsewhere of things nonruby
16:26
jinie has quit [Ping timeout: 260 seconds]
16:26
shinnya has quit [Ping timeout: 240 seconds]
16:27
lfox has quit [Quit: ZZZzzz…]
16:28
minivan has quit [Ping timeout: 264 seconds]
16:28
<
imperator2 >
4 intel xeons?
16:30
apeiros has quit [Remote host closed the connection]
16:32
<
rue >
And a partridge eeee-teee-cee
16:33
<
zzak >
hi! anyone in boulder?
16:33
cored has quit [Ping timeout: 256 seconds]
16:35
cored has joined #ruby-lang
16:35
cored has joined #ruby-lang
16:35
cored has quit [Changing host]
16:36
Pupeno_ has joined #ruby-lang
16:36
MaddinXx has quit [Remote host closed the connection]
16:36
julweber has joined #ruby-lang
16:36
sevvie has quit [Quit: leaving]
16:37
Nisstyre-laptop has joined #ruby-lang
16:37
dhruvasagar has quit [Ping timeout: 246 seconds]
16:39
Pupeno has quit [Ping timeout: 256 seconds]
16:41
Pupeno_ has quit [Ping timeout: 252 seconds]
16:41
elia has quit [Ping timeout: 245 seconds]
16:42
<
imperator2 >
zzak, close, littleton
16:42
<
zzak >
imperator2: i'm here this week for rocky mountain, are you going?
16:45
julweber has quit [Ping timeout: 245 seconds]
16:45
<
banister >
zzak are you presenting?
16:45
<
banister >
zzak also, is your work paying for all these conference flights/hotels or you're doing it out of your own pocket? :)
16:45
<
banister >
just curious how that works
16:46
__butch__ has joined #ruby-lang
16:46
<
zzak >
banister: yes
16:46
<
zzak >
banister: and no
16:46
stamina has quit [Ping timeout: 246 seconds]
16:46
<
zzak >
some confs help, but otherwise its out of pocket
16:47
bzalasky has quit [Remote host closed the connection]
16:48
bzalasky has joined #ruby-lang
16:49
* imperator2
only recognizes 2 of the speakers
16:49
VTLob has joined #ruby-lang
16:50
tharindu has joined #ruby-lang
16:50
<
imperator2 >
looks like it's sold out
16:51
zmike123 has quit [Quit: ~]
16:51
elia has joined #ruby-lang
16:51
<
zzak >
imperator2: are you interesting in going?
16:52
cored has quit [Ping timeout: 245 seconds]
16:52
<
zzak >
imperator2: if you want, just email info@rockymtnruby.com and just mention me
16:53
<
zzak >
i just asked the co-org and she said they might be able to squeeze one more in
16:53
<
imperator2 >
zzak, nah, that's ok, thanks
16:53
iliketurtles has joined #ruby-lang
16:53
<
imperator2 >
can't afford it anyway
16:53
<
zzak >
is price the only blocker?
16:54
cored has joined #ruby-lang
16:55
brianpWins has joined #ruby-lang
16:55
<
imperator2 >
zzak, don't worry about it; thanks,though
16:55
mbj has quit [Read error: Connection reset by peer]
16:56
<
zzak >
imperator2: :( think of all the test-unit things i can bug you about
16:56
<
imperator2 >
you can bug me here!
16:56
joevandyk has quit [Ping timeout: 256 seconds]
16:57
arooni-mobile has joined #ruby-lang
16:57
<
zzak >
i worked on a recent TU doc patch you should check
16:57
<
zzak >
i'd like your thoughts on how to present TU from stdlib to end users
16:58
bzalasky has quit [Remote host closed the connection]
16:58
<
imperator2 >
where's the patch?
16:58
<
imperator2 >
btw, i pretty much only use tu2
16:58
tubbo has quit [Ping timeout: 248 seconds]
16:59
joevandyk has joined #ruby-lang
16:59
<
zzak >
imperator2: bug #8778 on redmine
17:00
<
banister >
zzak i thought test unit was replaced by minitest in stdlib?
17:01
<
zzak >
there is a shim still
17:01
diegoviola has joined #ruby-lang
17:02
elia has quit [Ping timeout: 256 seconds]
17:02
banister has quit [Read error: Connection reset by peer]
17:02
io_syl has joined #ruby-lang
17:03
banisterfiend has joined #ruby-lang
17:05
Coincidental has joined #ruby-lang
17:06
Naeblis_ has quit [Quit: leaving]
17:06
topaz has joined #ruby-lang
17:07
machuga is now known as machuga|away
17:07
machuga|away is now known as machuga
17:08
jonathanmarvens has joined #ruby-lang
17:08
<
imperator2 >
so you added :nodoc's everywhere
17:08
tbuehlmann has quit [Quit: Konversation terminated!]
17:09
malev has joined #ruby-lang
17:09
eugenejen has quit [Ping timeout: 245 seconds]
17:09
<
imperator2 >
seems like you don't think it should be presented at all then in favor of minitest
17:10
apeiros has joined #ruby-lang
17:10
iliketurtles has quit [Quit: zzzzz…..]
17:10
<
zzak >
well thats not entirely true, i worry about legacy users
17:10
Nisstyre-laptop is now known as nisstyre
17:10
<
zzak >
that dont have tu2 gem and using tu from their legacy app
17:10
<
imperator2 >
i think legacy users are already familiar with it and/or are using tu2
17:10
kurko_ has quit [Ping timeout: 246 seconds]
17:11
ikrima has joined #ruby-lang
17:12
<
imperator2 >
dammit, git push != gem push
17:12
iliketurtles has joined #ruby-lang
17:14
<
zzak >
i wouldnt assume legacy users remember the api by heart and still need docs
17:14
saarinen has joined #ruby-lang
17:14
jonatha__ has joined #ruby-lang
17:14
kurko_ has joined #ruby-lang
17:15
tylersmith has joined #ruby-lang
17:15
schaerli has joined #ruby-lang
17:15
jonathanmarvens has quit [Read error: Connection reset by peer]
17:16
<
imperator2 >
subclass Test::Unit::TestCase, setup, teardown, test_
17:16
<
imperator2 >
pretty much it
17:17
Obituaryy has joined #ruby-lang
17:20
tubbo has joined #ruby-lang
17:21
yxhuvud has joined #ruby-lang
17:23
iliketurtles has quit [Quit: zzzzz…..]
17:27
CoreData has joined #ruby-lang
17:29
GoldenGiant has joined #ruby-lang
17:31
Uranio has quit [Read error: Connection reset by peer]
17:32
stamina has joined #ruby-lang
17:33
momomomomo has quit [Quit: momomomomo]
17:37
iliketurtles has joined #ruby-lang
17:38
deception has quit [Ping timeout: 245 seconds]
17:38
bantic has joined #ruby-lang
17:39
kennyvb has joined #ruby-lang
17:42
tharindu has quit [Remote host closed the connection]
17:46
nisstyre has quit [Quit: Leaving]
17:47
jinie has joined #ruby-lang
17:49
gnufied has left #ruby-lang [#ruby-lang]
17:49
CoreData has quit [Quit: CoreData]
17:49
imperator2 has quit [Ping timeout: 264 seconds]
17:50
CoreData has joined #ruby-lang
17:51
bastilian has quit [Ping timeout: 260 seconds]
17:55
nathanstitt has joined #ruby-lang
17:59
momomomomo has joined #ruby-lang
18:01
jaimef has quit [Excess Flood]
18:02
MaddinXx_ has joined #ruby-lang
18:03
tonni has quit [Ping timeout: 246 seconds]
18:03
Tearan has joined #ruby-lang
18:04
jaimef has joined #ruby-lang
18:05
metus_violarium has joined #ruby-lang
18:06
GoldenGiant has quit [Quit: Computer has gone to sleep.]
18:07
jiuweigui has joined #ruby-lang
18:07
GoldenGiant has joined #ruby-lang
18:07
schaerli has quit [Remote host closed the connection]
18:08
bastilian has joined #ruby-lang
18:09
hhatch has quit [Ping timeout: 240 seconds]
18:11
GoldenGiant has quit [Ping timeout: 245 seconds]
18:13
metus_violarium has quit [Quit: Konversation terminated!]
18:13
lfox has joined #ruby-lang
18:14
seanlerner has quit [Remote host closed the connection]
18:15
vimetus has joined #ruby-lang
18:17
schaerli has joined #ruby-lang
18:20
kek has quit [Remote host closed the connection]
18:22
iliketurtles has quit [Quit: zzzzz…..]
18:24
CoreData has quit [Ping timeout: 256 seconds]
18:25
_jpb_ has quit [Ping timeout: 240 seconds]
18:27
mmorga has joined #ruby-lang
18:27
GoldenGiant has joined #ruby-lang
18:28
itcharlie1 has left #ruby-lang [#ruby-lang]
18:28
mmorga has quit [Read error: Connection reset by peer]
18:28
mmorga has joined #ruby-lang
18:29
schaerli has quit [Remote host closed the connection]
18:29
richardburton has joined #ruby-lang
18:30
breakingthings has quit []
18:31
Obituaryy has quit [Remote host closed the connection]
18:31
iliketurtles has joined #ruby-lang
18:32
_jpb_ has joined #ruby-lang
18:32
breakingthings has joined #ruby-lang
18:33
schaerli has joined #ruby-lang
18:35
Coincidental has quit [Remote host closed the connection]
18:37
GoldenGiant has quit [Quit: Computer has gone to sleep.]
18:38
GoldenGiant has joined #ruby-lang
18:42
GoldenGiant has quit [Ping timeout: 245 seconds]
18:43
schaerli has quit [Remote host closed the connection]
18:45
seanlerner has joined #ruby-lang
18:50
Nisstyre-laptop has joined #ruby-lang
18:51
eugenejen has joined #ruby-lang
18:53
seanlerner has quit [Ping timeout: 252 seconds]
18:54
tubbo has quit [Ping timeout: 248 seconds]
18:55
GoldenGiant has joined #ruby-lang
18:55
Nisstyre-laptop is now known as nisstyre
18:57
tkuchiki has quit [Remote host closed the connection]
18:57
jperry_ has joined #ruby-lang
19:00
fcahoon has joined #ruby-lang
19:00
tubbo has joined #ruby-lang
19:01
<
maloik >
bloody internet seems to be failing
19:01
<
maloik >
can't access dnsimple.com at all
19:01
<
maloik >
even though it's supposed to be up
19:01
arooni-mobile has quit [Ping timeout: 245 seconds]
19:01
fcahoon has quit [Client Quit]
19:02
ikrima has quit [Quit: Computer has gone to sleep.]
19:02
GoldenGiant_ has joined #ruby-lang
19:04
GoldenGiant has quit [Ping timeout: 240 seconds]
19:05
tubbo has quit [Ping timeout: 248 seconds]
19:06
GoldenGiant_ has quit [Client Quit]
19:07
GoldenGiant_ has joined #ruby-lang
19:07
MaddinXx_ has quit [Remote host closed the connection]
19:07
tubbo has joined #ruby-lang
19:08
<
maloik >
wondering if my ISP in general is having trouble or if it's their site
19:09
<
maloik >
my intertubes are pretty crappy atm so I wouldnt even see the difference I guess :S
19:09
<
andrewvos >
maloik: it's up
19:09
<
andrewvos >
downforeveryoneorjustme.com
19:09
pellenation has joined #ruby-lang
19:09
<
andrewvos >
3 dnsimple
19:09
<
yorickpeterse >
fuck linux
19:10
<
andrewvos >
stop hating on things man
19:10
<
andrewvos >
it shortens your life
19:10
<
yorickpeterse >
also I have a headache
19:10
<
yorickpeterse >
I did too much code today
19:10
<
andrewvos >
I did too little
19:10
<
andrewvos >
you are lucky
19:10
<
yorickpeterse >
andrewvos: meh, I was hoping I found a solution to my wifi issues but it apparently didn't do squat
19:10
<
andrewvos >
My wifi is going good thanks :)
19:11
<
yorickpeterse >
I hate you
19:11
GoldenGiant_ has quit [Read error: Connection reset by peer]
19:11
GoldenGiant__ has joined #ruby-lang
19:11
<
andrewvos >
Try ubunutu
19:11
<
andrewvos >
bunutututu
19:11
<
andrewvos >
clouduntu
19:11
<
yorickpeterse >
andrewvos: yeah except it affects every Lunix
19:11
<
andrewvos >
yourmomuntu
19:12
<
andrewvos >
get more money and buy a better laptop
19:12
<
andrewvos >
get da money
19:12
<
ljarvis >
dah moneyz
19:12
<
ljarvis >
maloik: did you get the confirmation?
19:13
<
maloik >
I did! thanks
19:13
<
maloik >
andrewvos: I used that site but then asked a buddy and he's having the same problem as I am
19:14
riffraff has quit [Quit: Leaving]
19:15
<
maloik >
ugh, well due to lack of proper internet... would any of you mind taking a look at what a .com (new or transfer) costs, and if they have a free plan ?
19:15
<
maloik >
I can renew a domain here for 5$ which is shit all, on a decent registrar as far as I can tell
19:16
<
maloik >
wanna know if I should hold off for a bit until I can reach them again
19:17
<
ljarvis >
no free plan, 30 day trial
19:17
qba73 has joined #ruby-lang
19:17
<
maloik >
okay renewing this one for now then
19:18
<
ljarvis >
(Fwiw, dnsimple IS that good)
19:18
deception has joined #ruby-lang
19:18
iliketurtles has quit [Quit: zzzzz…..]
19:18
<
yorickpeterse >
imo
19:19
<
banisterfiend >
maloik `op = op = op = op = op` what does that mean again?
19:20
<
banisterfiend >
saw that in kijk shop
19:20
<
maloik >
gone = gone
19:20
retro|cz has quit [Ping timeout: 245 seconds]
19:21
<
maloik >
ljarvis: I have a feeling they are but I'm actively trying to cut down on costs like that when I can't make full use of it
19:21
<
banisterfiend >
maloik can you decode that a bit further for the context of a shop
19:21
<
yorickpeterse >
basically a slogan to get people to buy it before it's gone
19:21
<
maloik >
as in, if supply is gone it's really gone
19:21
<
banisterfiend >
ok cool, thx
19:22
Coincidental has joined #ruby-lang
19:25
mmorga has quit [Remote host closed the connection]
19:26
CoreData has joined #ruby-lang
19:26
arBmind1 has quit [Quit: Leaving.]
19:27
bantic has quit [Quit: bantic]
19:30
kek has joined #ruby-lang
19:31
havenwood has quit [Remote host closed the connection]
19:31
havenwood has joined #ruby-lang
19:33
mistym is now known as mistym_lunch
19:33
mmorga_ has joined #ruby-lang
19:35
intellitech has quit [Quit: intellitech]
19:35
dsferreira has joined #ruby-lang
19:35
retro|cz has joined #ruby-lang
19:35
kek has quit [Ping timeout: 247 seconds]
19:35
bastilian_ has joined #ruby-lang
19:35
bastilian has quit [Ping timeout: 260 seconds]
19:37
jonatha__ has quit [Ping timeout: 248 seconds]
19:42
a1ph4g33k has joined #ruby-lang
19:42
bantic has joined #ruby-lang
19:43
richardburton has quit [Quit: Leaving.]
19:49
momomomomo has quit [Quit: momomomomo]
19:50
seanlerner has joined #ruby-lang
19:50
nneko001__ has joined #ruby-lang
19:51
CoreData has quit [Ping timeout: 256 seconds]
19:52
kurko_ has joined #ruby-lang
19:52
arBmind has joined #ruby-lang
19:53
momomomomo has joined #ruby-lang
19:53
jxpx777 has quit [Read error: Connection reset by peer]
19:55
CoreData has joined #ruby-lang
19:55
seanlerner has quit [Ping timeout: 264 seconds]
19:56
postmodern has joined #ruby-lang
19:57
Coincidental has quit [Ping timeout: 260 seconds]
19:58
ikrima has joined #ruby-lang
19:58
nneko001__ has quit [Quit: Konversation terminated!]
19:58
mmorga_ has quit [Remote host closed the connection]
19:58
diegoviola has quit [Ping timeout: 268 seconds]
19:59
nneko001__ has joined #ruby-lang
20:02
mistym has joined #ruby-lang
20:05
momomomomo has quit [Quit: momomomomo]
20:05
nisstyre has quit [Quit: Leaving]
20:06
benanne has joined #ruby-lang
20:06
julweber has joined #ruby-lang
20:10
julweber has quit [Ping timeout: 245 seconds]
20:12
mac___ has joined #ruby-lang
20:16
apeiros has quit [Remote host closed the connection]
20:16
momomomomo has joined #ruby-lang
20:16
apeiros has joined #ruby-lang
20:17
tonni has joined #ruby-lang
20:20
nisstyre has joined #ruby-lang
20:20
mistym has quit [Remote host closed the connection]
20:26
anonymuse has joined #ruby-lang
20:27
jonahR has joined #ruby-lang
20:28
havenwood has quit [Remote host closed the connection]
20:29
havenwood has joined #ruby-lang
20:29
vimetus has quit [Quit: Konversation terminated!]
20:29
momomomomo has quit [Quit: momomomomo]
20:30
havenwood has quit [Read error: Connection reset by peer]
20:32
momomomomo has joined #ruby-lang
20:34
GoldenGiant__ has quit [Quit: Computer has gone to sleep.]
20:34
GoldenGiant__ has joined #ruby-lang
20:35
Coincidental has joined #ruby-lang
20:35
GoldenGiant__ has quit [Read error: Connection reset by peer]
20:36
GoldenGiant__ has joined #ruby-lang
20:36
seanlerner has joined #ruby-lang
20:38
pellenation has quit [Quit: Leaving.]
20:39
scampbell has quit [Remote host closed the connection]
20:39
iliketurtles has joined #ruby-lang
20:41
mistym_lunch is now known as mistym
20:42
tonni has quit [Read error: Connection reset by peer]
20:43
GoldenGiant__ has quit [Ping timeout: 264 seconds]
20:43
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
20:48
elia has joined #ruby-lang
20:48
GoldenGiant__ has joined #ruby-lang
20:50
havenwood has joined #ruby-lang
20:53
hahuang61 has quit [Read error: Connection reset by peer]
20:55
tonni has joined #ruby-lang
20:55
hahuang61 has joined #ruby-lang
20:57
havenwood has quit [Remote host closed the connection]
20:58
Tearan has quit [Quit: Sleepy Badger....]
21:01
jaimef has quit [Excess Flood]
21:02
topaz has quit [Quit: Lost terminal]
21:02
anonymuse has quit [Remote host closed the connection]
21:03
mac___ has quit [Remote host closed the connection]
21:03
mac___ has joined #ruby-lang
21:03
anonymuse has joined #ruby-lang
21:04
havenwood has joined #ruby-lang
21:05
GoldenGiant__ has quit [Ping timeout: 260 seconds]
21:05
mmorga has joined #ruby-lang
21:05
elia has quit [Quit: Computer has gone to sleep.]
21:05
havenwood has quit [Remote host closed the connection]
21:06
havenwood has joined #ruby-lang
21:07
GoldenGiant__ has joined #ruby-lang
21:07
bastilian_ has quit [Quit: Leaving...]
21:08
jaimef has joined #ruby-lang
21:09
Edder has joined #ruby-lang
21:10
breakingthings has quit []
21:11
elia has joined #ruby-lang
21:12
mmorga has quit [Remote host closed the connection]
21:13
arBmind has quit [Quit: Leaving.]
21:16
ldnunes has quit [Quit: Leaving]
21:20
erichmenge has quit [Ping timeout: 245 seconds]
21:22
erichmenge has joined #ruby-lang
21:22
csaunders has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
21:22
bantic has quit [Quit: bantic]
21:22
<
xybre >
"Our client is a growing, creative, innovative digital agency looking to bring on a PHP developer" lulz?
21:25
adambeynon has joined #ruby-lang
21:27
nofxx has quit [Ping timeout: 268 seconds]
21:33
tonni has quit [Remote host closed the connection]
21:38
mdedetrich has joined #ruby-lang
21:38
LauraE has joined #ruby-lang
21:40
almost9 has joined #ruby-lang
21:41
arooni-mobile has joined #ruby-lang
21:41
julweber has joined #ruby-lang
21:42
jxpx777 has joined #ruby-lang
21:42
<
andrewvos >
yorickpeterse: about to upgrade ubuntu :-|
21:44
hakunin has quit [Remote host closed the connection]
21:44
<
zenspider >
where's headius?? :(
21:44
<
erikh >
there's a big oracle thing going on this week in sf
21:44
<
erikh >
maybe there?
21:45
<
yorickpeterse >
andrewvos: welcome to Linux
21:45
<
erikh >
java one or java world or java java
21:45
<
yorickpeterse >
btw that should work just fine these days
21:45
<
erikh >
all I know is streets are blocked off
21:45
<
andrewvos >
yorickpeterse: orly
21:45
almost9 has quit [Remote host closed the connection]
21:45
<
andrewvos >
erikh: Are you being serious or is this sarcasm?
21:45
<
erikh >
i'm completely serious
21:45
<
andrewvos >
erikh: Streets are closed off for a java event?
21:46
<
eam >
andrewvos: he's serious, just walked by it
21:46
<
erikh >
happens every year
21:46
* andrewvos
moves to alaska, where there is no java.
21:46
<
erikh >
they bring in big rock bands and stuff to play at the event too
21:46
<
eam >
to be fair, conventions block those streets off about once a month or so
21:46
<
erikh >
can hear that shit all through soma
21:46
<
eam >
the best part are the dudes in suits puking in the gutters due to the open bars
21:47
jonathanmarvens has joined #ruby-lang
21:47
<
eam >
with the convention thing around their necks
21:48
<
erikh >
there was a strip club giving discounts to them the other night near where I was drinking
21:48
<
banisterfiend >
lol
21:48
<
erikh >
the c in oracle is for class
21:48
<
andrewvos >
actually it's for another four letter word
21:48
<
eam >
well, it's the right neighborhood for that sort of thing
21:49
<
erikh >
one rich asshole called larry ellison
21:49
<
yorickpeterse >
just imagine a FactoryFactoryMetalBand
21:49
<
erikh >
if I ever learn guitar that well
21:49
<
yorickpeterse >
"The FactoryBeans"
21:49
<
erikh >
I will name it that
21:49
<
yorickpeterse >
"Factory of death"
21:50
<
erikh >
"This is my AbstractFactoryAxe"
21:50
mac_ has joined #ruby-lang
21:50
mac_ has quit [Remote host closed the connection]
21:50
<
yorickpeterse >
com.metal.band
21:50
<
yorickpeterse >
The .jars
21:50
<
andrewvos >
binders full of namespaces
21:50
mac___ has quit [Ping timeout: 246 seconds]
21:51
<
yorickpeterse >
System of a Java
21:51
sevvie has joined #ruby-lang
21:51
<
yorickpeterse >
hahaha
21:51
<
erikh >
the grim garbage collector
21:51
<
yorickpeterse >
"And presenting the new guy on the block: DJ Scala"
21:51
<
eam >
Not For Use In A Nuclear Control System
21:52
<
yorickpeterse >
Presenting the album: "My Heart May Have Died But Java Has Not"
21:52
<
yorickpeterse >
ok I'm done
21:53
<
andrewvos >
yeah I think we got that
21:53
<
andrewvos >
we pretty much got everything
21:53
<
erikh >
I kind of got carried away
21:53
<
andrewvos >
I can't believe they close the roads
21:55
<
erikh >
well he does the america's cup here too
21:55
<
erikh >
the conference by comparison is ... very tiny
21:55
<
erikh >
I'm told he wants to adjust the shape of the bay to better enable the cup
21:55
<
erikh >
like, pay for large chunks of terraforming
21:56
<
erikh >
which if it were anyone else, I'd think twiec
21:56
sevvie has quit [Ping timeout: 240 seconds]
21:56
<
erikh >
#larry-ellison-lang
21:56
<
zenspider >
erikh: that oracle thing should have been last week. this week is folsom street fair tho... soooo... :D
21:57
<
erikh >
zenspider: that actually makes sense. I was on vaca last week and saw it then, but was drinking on monday when I ran into the conference douches
21:57
<
erikh >
oh my, I'm very close to that
21:57
jperry_ has quit [Quit: jperry_]
21:58
znz_jp has quit [Ping timeout: 245 seconds]
21:58
malev has quit [Remote host closed the connection]
21:58
s0ber_ has joined #ruby-lang
21:59
<
erikh >
yeah. trying to move up here still, but work is close
21:59
<
erikh >
finding an apartment here is f'n impossible, at any price
21:59
iliketurtles has quit [Quit: zzzzz…..]
22:00
iliketurtles has joined #ruby-lang
22:01
s0ber has quit [Ping timeout: 260 seconds]
22:01
s0ber_ is now known as s0ber
22:02
jperry_ has joined #ruby-lang
22:02
irlrobot has left #ruby-lang [#ruby-lang]
22:03
sevvie has joined #ruby-lang
22:04
jperry_ has quit [Client Quit]
22:04
nisstyre has quit [Quit: Leaving]
22:05
<
andrewvos >
Anyone read the Foundation series?
22:05
<
andrewvos >
(Asimov)
22:05
<
andrewvos >
Can recommend?
22:06
jonathanmarvens has quit [Remote host closed the connection]
22:06
GaelanAintAround is now known as Gaelan
22:08
<
andrewvos >
A bit random, but nobody is asking programming questiosn anyway
22:10
<
Boohbah >
a+++ would read again
22:10
Gaelan is now known as GaelanAintAround
22:10
<
Boohbah >
foundation series is epic in the literal sense
22:11
tubbo has quit [Ping timeout: 248 seconds]
22:13
yfeldblum has quit [Ping timeout: 240 seconds]
22:15
CoreData has quit [Ping timeout: 256 seconds]
22:15
<
andrewvos >
just bought em
22:15
<
andrewvos >
wait there are more than three?
22:15
<
andrewvos >
man books are cheap on amazon
22:16
<
andrewvos >
ok rebooting ubuntu after an update. if you guys don't see me again, send help
22:18
fuhgeddaboudit has quit [Ping timeout: 256 seconds]
22:19
qba73 has quit [Remote host closed the connection]
22:19
tubbo has joined #ruby-lang
22:19
<
eam >
andrewvos: yes, can recommend everything in the series
22:22
arooni-mobile has quit [Ping timeout: 245 seconds]
22:22
Tearan has joined #ruby-lang
22:25
Naeblis_ has joined #ruby-lang
22:26
<
andrewvos >
Wow ubuntu really has come along
22:26
<
andrewvos >
I mean, unity is buggy as hell, but it's pretty good
22:26
yfeldblum has joined #ruby-lang
22:26
<
erikh >
I used mint
22:26
<
andrewvos >
It's way better looking than osx now
22:26
<
erikh >
which was nice
22:26
<
andrewvos >
Yeah I tried it before ubuntu
22:27
<
erikh >
then I switched to i3wm
22:27
<
andrewvos >
Don't like that old style of having a start button
22:27
<
erikh >
I never use that shit anyhow
22:27
<
andrewvos >
Oh I haven't looked at i3 yet
22:28
<
andrewvos >
checking out a vid now erikh
22:29
dragonkh has joined #ruby-lang
22:29
nathanstitt has quit [Quit: I growing sleepy]
22:30
Naeblis_ has quit [Client Quit]
22:30
__butch__ has quit [Quit: Leaving.]
22:30
znz_jp has joined #ruby-lang
22:31
<
andrewvos >
erikh: dude.
22:31
<
andrewvos >
erikh: that is cool
22:31
<
dragonkh >
anyone here that I know? its been a long long time
22:32
<
erikh >
andrewvos: yeah tiling wm's are pretty neat
22:32
<
andrewvos >
erikh: You're running that on ubuntu?
22:32
<
erikh >
back to my mac now
22:33
<
erikh >
less friction this way
22:33
<
andrewvos >
erikh: people or software?
22:33
<
erikh >
all of the above
22:33
<
andrewvos >
erikh included?
22:33
jiuweigui has quit [Quit: iQuit!]
22:34
<
andrewvos >
is it safe to install i3wm? I can switch between wms in the normal way right?
22:34
<
andrewvos >
(at login)
22:34
<
erikh >
use the dpkg sources on the site
22:34
<
erikh >
if you do that
22:34
malev has joined #ruby-lang
22:35
<
andrewvos >
Damnit I can feel I'm going to be tired tomorrow morning now. Thanks erikh.
22:36
<
erikh >
feel the burn
22:40
Edder has quit [Quit: Computer has gone to sleep.]
22:40
<
andrewvos >
friends don't let friends install window managers at 23:40
22:40
momomomomo has quit [Quit: momomomomo]
22:41
momomomomo has joined #ruby-lang
22:41
momomomomo has quit [Client Quit]
22:42
<
andrewvos >
erikh: well it's not pretty
22:42
<
andrewvos >
erikh: but nice
22:43
anonymuse has quit [Remote host closed the connection]
22:43
bastilian has joined #ruby-lang
22:44
GoldenGiant__ has quit [Quit: Computer has gone to sleep.]
22:44
GoldenGiant__ has joined #ruby-lang
22:45
<
andrewvos >
wow this is so much easier than anything else i've seen
22:45
amione has quit [Quit: amione]
22:45
nofxx has joined #ruby-lang
22:45
eugenejen has quit [Ping timeout: 260 seconds]
22:46
GoldenGiant__ has quit [Read error: Connection reset by peer]
22:46
GoldenGiant___ has joined #ruby-lang
22:46
anonymuse has joined #ruby-lang
22:48
<
erikh >
there are a few of them out there
22:48
<
erikh >
try a few of them'
22:48
<
andrewvos >
weird my ubuntu settings didn't persist
22:49
<
andrewvos >
well, until I ran gnome-settings-daemon by mistake
22:49
<
whitequark >
andrewvos: i3++
22:49
<
whitequark >
it is a really good WM.
22:49
<
whitequark >
it doesn't do much, but it does it well, and has just right amount of knobs.
22:50
<
andrewvos >
You're using it on ubuntu?
22:50
<
andrewvos >
whitequark:
22:50
<
whitequark >
debian
22:51
<
whitequark >
also I have my own ~/.xsession and KDE so I probably couldn't help you with that.
22:51
mac_ has joined #ruby-lang
22:51
mdedetrich has quit [Quit: Computer has gone to sleep.]
22:52
headius has joined #ruby-lang
22:53
sepp2k1 has joined #ruby-lang
22:53
Oloryn_lt2 has joined #ruby-lang
22:53
sepp2k has quit [Ping timeout: 245 seconds]
22:54
headius has quit [Client Quit]
22:57
dragonkh has quit [Quit: Bye!]
22:58
GoldenGiant___ has quit [Quit: Computer has gone to sleep.]
22:59
GoldenGiant___ has joined #ruby-lang
22:59
iliketurtles has quit [Quit: zzzzz…..]
23:00
iliketurtles has joined #ruby-lang
23:01
SiliconDon has joined #ruby-lang
23:02
VTLob has quit [Quit: VTLob]
23:03
GoldenGiant___ has quit [Ping timeout: 260 seconds]
23:03
benanne has quit [Quit: kbai]
23:04
topaz has joined #ruby-lang
23:04
<
andrewvos >
guess I'll do that eventually
23:05
<
andrewvos >
gnome-settings-daemon brings some settings over but kinda makes things buggy
23:05
Hauleth has quit [Quit: Wychodzi]
23:06
dsferreira has quit [Quit: This computer has gone to sleep]
23:06
deception has quit [Quit: Goodbye]
23:07
SiliconDon has quit [Remote host closed the connection]
23:08
nathanstitt has joined #ruby-lang
23:09
kitak has joined #ruby-lang
23:09
Oloryn_lt2 has quit [Read error: Connection reset by peer]
23:10
mdedetrich has joined #ruby-lang
23:11
elia has quit [Quit: Computer has gone to sleep.]
23:12
akerl has joined #ruby-lang
23:14
<
andrewvos >
erikh: I love this
23:14
<
andrewvos >
erikh: Thanks so much
23:14
<
andrewvos >
I'm much faster with it already
23:14
<
andrewvos >
Amazing
23:16
iliketurtles has quit [Quit: zzzzz…..]
23:17
n8nl has joined #ruby-lang
23:20
x0f has joined #ruby-lang
23:21
a1ph4g33k has quit [Quit: Leaving]
23:22
jxpx777 has quit [Quit: Leaving...]
23:23
x0f_ has quit [Ping timeout: 245 seconds]
23:24
woollyams has joined #ruby-lang
23:25
GaelanAintAround is now known as Gaelan
23:27
setmeaway has quit [Ping timeout: 264 seconds]
23:28
symm- has quit [Ping timeout: 248 seconds]
23:29
KM has quit [Read error: Connection reset by peer]
23:30
KM has joined #ruby-lang
23:30
lsegal has joined #ruby-lang
23:31
workmad3 has quit [Ping timeout: 240 seconds]
23:32
mdedetrich has quit [Quit: Computer has gone to sleep.]
23:33
anonymuse has quit [Remote host closed the connection]
23:33
mac_ has quit [Remote host closed the connection]
23:36
mac_ has joined #ruby-lang
23:39
woollyams has joined #ruby-lang
23:41
diegoviola has joined #ruby-lang
23:41
lfox has quit [Quit: ZZZzzz…]
23:41
sepp2k1 has quit [Read error: Connection reset by peer]
23:42
mdedetrich has joined #ruby-lang
23:44
lfox has joined #ruby-lang
23:45
fragamus has joined #ruby-lang
23:46
lfox has quit [Client Quit]
23:46
mac_ has quit [Remote host closed the connection]
23:49
lfox has joined #ruby-lang
23:50
iliketurtles has joined #ruby-lang
23:51
tharindu has joined #ruby-lang
23:57
nathanstitt has quit [Quit: I growing sleepy]
23:58
thiagoborges has joined #ruby-lang