ianmcorvidae: Nothing, apparently. :) I was just impatient with the replication.
voiceinsideyou1 joined the channel
voiceinsideyou joined the channel
hawke joined the channel
MBJenkins
ianmcorvidae: OTHER-17: Add a LATEST file whose contents are the latest update + \n
hawke joined the channel
dekarl joined the channel
murdos
warp: hi
kepstin-work joined the channel
DremoraLV joined the channel
alastairp
Freso: good question. a mistake, likely
Freso
alastairp: :)
alastairp: Not that I want to overwork you, but if we can get it half a year earlier, that'd be great. ;)
alastairp
does that mean october last month?
I found an awesome interactive ipython plugin for vim today. I'm going to try it
wait - that's the wrong channel
Freso
:p
IPython is nifty.
Prophet5 joined the channel
ijabz joined the channel
Is "NULL" used in Perl?
ianmcorvidae
in what context?
in general you'd use undef
Freso
And if not, what's the equivalent?
So, foo('bar', undef, 'eggs')?
ianmcorvidae
yeah
of course in that case it may just be that positional arguments are the wrong way to go, but :P
(not that the way of doing named arguments is straightforwardly obvious or anything)
Freso
Well, it didn't cause rika to explode... but it didn't result in what I wanted to do either.
How can I do named arguments? Namely, I need to pass arguments to a TT macro.
ianmcorvidae
oh, TT macros aren't perl :P
you just need to pass undef as a positional arg there :P
Freso
They have their own logic language?
ianmcorvidae
as far as I know
well, you don't manually initialize the arguments like you do in perl :)
Freso
Okay. Well, it still didn't work.
With undef.
ianmcorvidae
you should probably clarify what you're trying to do here then
Freso
Or... try one other thing.
What is "TT" again?
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) = @_"