Entry tags:
Assigned-bugs hackathon!
I checked tonight, and we've got 571 open bugs. That's a lot! 146 of them are assigned with no patch, and if we could make some inroads on that number, we'd be able to knock down the total open number a hell of a lot.
So, here's my hackathon challenge! If you've got assigned bugs, let's do whatever we can this week to get that number down. I'll start; I have 8 bugs assigned to me without a patch, and while some of them are waiting on other things to get resolved first, some of them are things I've just been putting off because I don't know exactly how to do them or was running into problems.
I've already yelled for help on what I'm stuck on, so I'll turn to y'all: what can I help you with on stuff you're stuck on? And if not me, who else can help you? A bunch of the existing assigned stuff is really complex, so let's all work together and see how much we can improve things.
Ideally, I'd like to get that "open" number down below 500 by Sunday night, and double ideally, the "all unassigned" number (currently at 386) down under 300.
*salutes you all*
So, here's my hackathon challenge! If you've got assigned bugs, let's do whatever we can this week to get that number down. I'll start; I have 8 bugs assigned to me without a patch, and while some of them are waiting on other things to get resolved first, some of them are things I've just been putting off because I don't know exactly how to do them or was running into problems.
I've already yelled for help on what I'm stuck on, so I'll turn to y'all: what can I help you with on stuff you're stuck on? And if not me, who else can help you? A bunch of the existing assigned stuff is really complex, so let's all work together and see how much we can improve things.
Ideally, I'd like to get that "open" number down below 500 by Sunday night, and double ideally, the "all unassigned" number (currently at 386) down under 300.
*salutes you all*

no subject
For 581, I need some help figuring out how to add things to the tags box when you click on a link.
And 1877 just needs me to get around to it.
Prod me next time I'm in IRC, maybe? Theoretically I could do one of those tonight.
no subject
no subject
no subject
no subject
no subject
no subject
(I haven't looked closely at the implementation)
no subject
no subject
I have
scalar %$tagswhich tells me the number of items in $tags, so I can construct appropriate if statements, andvalues %$tagsgets the actual values. How can I get the values of only the first 10 items? Is there syntax to say "get the nth item from this array"? The relevant line is currently:$out .= LJ::ehtml(join ', ', sort map { $_->{name} } values %$tags);which gets all the items in the array.
no subject
no subject
b) Or you can probably use splice on values %$tags.
my @10first = splice ( values %$tags , 0 , 10 ) or something like that.
no subject
(Also, added the missing comparison function to your sort, assuming you want string ordering. Adjust as needed.)
no subject