ianmcorvidae: Nothing, apparently. :) I was just impatient with the replication.
2012-11-28 33353, 2012
voiceinsideyou1 joined the channel
2012-11-28 33334, 2012
voiceinsideyou joined the channel
2012-11-28 33316, 2012
hawke joined the channel
2012-11-28 33340, 2012
MBJenkins
ianmcorvidae: OTHER-17: Add a LATEST file whose contents are the latest update + \n
2012-11-28 33327, 2012
hawke joined the channel
2012-11-28 33307, 2012
dekarl joined the channel
2012-11-28 33353, 2012
murdos
warp: hi
2012-11-28 33316, 2012
kepstin-work joined the channel
2012-11-28 33354, 2012
DremoraLV joined the channel
2012-11-28 33312, 2012
alastairp
Freso: good question. a mistake, likely
2012-11-28 33326, 2012
Freso
alastairp: :)
2012-11-28 33357, 2012
Freso
alastairp: Not that I want to overwork you, but if we can get it half a year earlier, that'd be great. ;)
2012-11-28 33326, 2012
alastairp
does that mean october last month?
2012-11-28 33309, 2012
alastairp
I found an awesome interactive ipython plugin for vim today. I'm going to try it
2012-11-28 33359, 2012
alastairp
wait - that's the wrong channel
2012-11-28 33303, 2012
Freso
:p
2012-11-28 33312, 2012
Freso
IPython is nifty.
2012-11-28 33341, 2012
Prophet5 joined the channel
2012-11-28 33334, 2012
ijabz joined the channel
2012-11-28 33347, 2012
Freso
Is "NULL" used in Perl?
2012-11-28 33356, 2012
ianmcorvidae
in what context?
2012-11-28 33358, 2012
ianmcorvidae
in general you'd use undef
2012-11-28 33305, 2012
Freso
And if not, what's the equivalent?
2012-11-28 33320, 2012
Freso
So, foo('bar', undef, 'eggs')?
2012-11-28 33326, 2012
ianmcorvidae
yeah
2012-11-28 33303, 2012
ianmcorvidae
of course in that case it may just be that positional arguments are the wrong way to go, but :P
2012-11-28 33342, 2012
ianmcorvidae
(not that the way of doing named arguments is straightforwardly obvious or anything)
2012-11-28 33333, 2012
Freso
Well, it didn't cause rika to explode... but it didn't result in what I wanted to do either.
2012-11-28 33308, 2012
Freso
How can I do named arguments? Namely, I need to pass arguments to a TT macro.
2012-11-28 33331, 2012
ianmcorvidae
oh, TT macros aren't perl :P
2012-11-28 33348, 2012
ianmcorvidae
you just need to pass undef as a positional arg there :P
2012-11-28 33350, 2012
Freso
They have their own logic language?
2012-11-28 33354, 2012
ianmcorvidae
as far as I know
2012-11-28 33310, 2012
ianmcorvidae
well, you don't manually initialize the arguments like you do in perl :)
2012-11-28 33318, 2012
Freso
Okay. Well, it still didn't work.
2012-11-28 33321, 2012
Freso
With undef.
2012-11-28 33336, 2012
ianmcorvidae
you should probably clarify what you're trying to do here then
2012-11-28 33323, 2012
Freso
Or... try one other thing.
2012-11-28 33333, 2012
Freso
What is "TT" again?
2012-11-28 33338, 2012
ianmcorvidae
(anyway, in a perl function, you normally do a "my ($self, $blah, $whatever) = @_"; for named args you do "my ($positional1, $positional2, %hash_of_named) = @_"