svn switch --relocate svn.openfoundry.org/pugs svn.pugscode.org/pugs/ | run.pugscode.org | spec.pugscode.org | paste: sial.org/pbot/perl6 | pugs.blogs.com
Set by avar on 16 November 2006.
jdv79 is feather.perl6.nl supposed to be not there;) 03:22
wolverian dns problems again? 03:31
er, or whatever it was last time. :)
nothingmuch /w 17 09:29
svnbot6 r14838 | fglock++ | MP6 - fixed parameter list in method, sub, sub-call; fixed 'bind' 10:44
nothingmuch ?eval sub foo { my $x; my $bar = sub { $x }; $x = 1; $bar }; foo().() 12:21
evalbot_r14838 \1 12:21
nothingmuch ?eval sub foo { my $x; my $bar = sub { $x }; $x := 1; $bar }; foo().()
evalbot_r14838 \1 12:22
mj41 www.linuxformat.co.uk/pdfs/LXF64.iview.pdf ... Benevolent dictator for life, interesting interview with Guido von Rossum , linuxformat.co.uk, 25.1.2005 13:23
nothingmuch audreyt: anatolyv and I are really confused... do you have a minute?
lambdabot tinyurl.com/y4u29q
ingy seen audreyt 16:56
jabbot ingy: audreyt was seen 2 days 4 hours 36 minutes 23 seconds ago
nothingmuch ingy: her blog implies she should be back around this weekend 17:01
ingy thanks nothingmuch 17:37
nothingmuch: I had this idea
nothingmuch aye
ingy do you have time to discuss? 17:38
nothingmuch yes
ingy I want to support an alternate mode of M::C
so instead of .pm -> .pmc
something else
before I was thinking .p -> .pm
but now I think src/Foo.pm -> lib/Foo.pm 17:39
nothingmuch sounds useful
ingy the problem is where to put the src in blib (thus installation)
nothingmuch Foo.pm.src? 17:40
ingy blib/lib/Foo.pms?
ooh
not bad at all
I like your idea
nothingmuch just keep the mapping function pluggable
given a base dir and a sub path 17:41
ingy nod
nothingmuch map the sub path to something else
ingy WWDPD?
nothingmuch letting the base dir be the same (in the pm -> .pmc case) or different (in the src -> lib case)
who is DP?
ingy what would Data::Package do?
nothingmuch ih
oh
i dunno
ingy ok, well unless DP has a better idea I'll go with yours 17:42
thanks
*kiss*
nothingmuch what does it actually do?
*kiss*
i mean, i know it's some abstract whatever to put data on the CPAN 17:43
ingy yeah, I need to look into it
nothingmuch i think it's more of a base role type thing 17:44
ingy: are you in .tw yet? 17:45
ingy yet?
nothingmuch i heard you mention something about looking for crashspace
ingy am I supposed to be?
nothingmuch i figured you were going to move there for a while again
ingy oh
I want to go there for a few weeks near YAPC::Asia 17:46
nothingmuch ah
ingy I'll also be at Wikimania there in August
hot!
nothingmuch humid!
not very sexy! 17:47
ingy maybe I'll just walk around in my undies
nothingmuch ooh
pix please
ingy heh
nothingmuch Ingies Gone Wiki
"Show us your bits!"
ingy nice 17:48
nothingmuch Ingies Gone Wild: Ultimate Conference Season
ingy Jemplate-0.20 released 17:49
nothingmuch (/me is reading the Girls Gone Wild wikipedia entry for more ideas ;-)
ingy :P 17:49
nothingmuch Ingies Gone Wild: Sexy Opensource Sweethearts
ingy ok you can stop now 17:50
ingy you're driving me wild 17:50
nothingmuch Ingies Gone Wiki: Is that a moose in your pocket or are you just happy to see me?
ingy and I have a meeting in 10 minutes
nothingmuch ooh!
Ingies Gone Wiki: Ingy gets a Heat Stroke[ing] 17:54
en.wikipedia.org/wiki/Guys_Gone_Wild
pmurias hi 19:17
pasteling "nothingmuch" at 84.108.53.74 pasted "Base roles" (124 lines, 3.1K) at sial.org/pbot/21331 19:31
nothingmuch @tell cmarcelo sial.org/pbot/21331 -- any thoughts? 19:32
lambdabot Consider it noted.
pmurias nothingmuch: what's your experience with narrative javascript? would you recommend it for production work? 19:39
nothingmuch no experience at all except "oOh! shiny!"
pmurias well at least it's better than "oOh! yucky!" :) 19:40
nothingmuch =) 19:41
pmurias do people have the find(1) command on OS X by default? 19:44
nothingmuch yes
but it's not GNU find
pmurias i'm writing a build script for MP6, and hope fglock would be able to use it 19:47
s/would/will/
[particle] if he won't, i will ;) 19:48
pmurias i'll take a shower, and reread the svn book chapter on authentication to commit the initial version 19:52
offby1 is it me, or is perlcabal.org/syn/ quite slow? 19:59
lambdabot Title: Official Perl 6 Documentation
offby1 silly bot 20:00
pasteling "nothingmuch" at 84.108.53.74 pasted "Base roles" (155 lines, 4.7K) at sial.org/pbot/21332
nothingmuch @tell cmarcelo a better version: sial.org/pbot/21332 20:01
lambdabot Consider it noted.
pmurias i get RA layer request failed: PROPFIND request failed on '/': PROPFIND of '/': 200 OK (svn.pugscode.org) 20:14
lambdabot Title: Perl6 Community Development Server
pmurias when i try to svk pull or svk ci? 20:15
is it a local problem at my box?
offby1 stares blankly 20:16
[particle] svn up works for me 20:19
pmurias will sleep and try at a future time& 20:23
nothingmuch can this be more idiomatic? exists %args{ $attr.name } ? \( delete %args{ $attr.name } ) : \(); 21:02
Juerd nothingmuch: Yes, with ?? !! it will be more idiomatic AND work much better ;) 21:09
nothingmuch err 21:14
nothingmuch wants a hash existence monad ;-) 21:15
[particle] { .exists and .delete } given $args{ $attr.name } # WAG 21:16
nothingmuch WAG ?
[particle] wild-a$$ guess
nothingmuch ah
heh
[particle] it's a common animal in these parts ;) 21:17
nothingmuch ;-) 21:18
my $arg = given %args{ $attr.name } { exists ?? \( delete ) !! \() }
i need the actual capture, but that reads nicer
nothingmuch @tell cmarcelo permanent URL: nothingmuch.woobling.org/MO/notes/base_roles.txt 22:16
lambdabot Consider it noted. 22:17
cmarcelo ahoy 23:09
lambdabot cmarcelo: You have 3 new messages. '/msg lambdabot @messages' to read them.
cmarcelo lambdabot: moosa
lambdabot: @moosa
lambdabot Unknown command, try @list
cmarcelo lambdabot: @moosag 23:10
lambdabot Unknown command, try @list
cmarcelo lambdabot: @moosages
lambdabot nothingmuch said 3h 37m 47s ago: sial.org/pbot/21331 -- any thoughts?
nothingmuch said 3h 9m 1s ago: a better version: sial.org/pbot/21332
nothingmuch said 53m 14s ago: permanent URL: nothingmuch.woobling.org/MO/notes/base_roles.txt