= ReviewerMeeting20090617 = == summary == * we prefer `(expected, observed)` as the order of parameters to unittest `assert*` methods. ''preferred'' rather than ''enforce''. (henninge to capture this in wiki) * intellectronica on more maintainable javascript code: * code that is OO and modularized is much easier to work with than code that is very imperative and/or relies on closure too heavily * unit tests (aka YUI tests) are a great way to test our code. in many cases much better than integration tests * working on UI features it is often easier to first concentrate on completing a working UI than on code quality. that's fine, but it means that we should refactor the code immediately after it passes UI review. that can happen either before code review, or if not, the reviewer should encourage doing that (either as part of this branch or in a followup branch). * finally, since javascript code is so much more verbose, we propose a much higher limit, in order to encourage developers to not skip these important steps. 1600 lines * look in `.../javascript/*/tests` for unittest examples; only soyuz is in our tree atm. or look in lazr-js. * intellectronica to email about higher limit. * reviewers should make sure there are no more imports from the old locations == logs == === AMEU === {{{ Jun 17 10:00:26 #startmeeting Jun 17 10:00:29 Meeting started at 09:00. The chair is barry. Jun 17 10:00:29 Commands Available: [TOPIC], [IDEA], [ACTION], [AGREED], [LINK], [VOTE] Jun 17 10:00:40 hello everyone and welcome to this week's ameu reveiwers meeting. who's here today? Jun 17 10:00:41 me Jun 17 10:00:42 me Jun 17 10:00:43 me Jun 17 10:00:43 me Jun 17 10:00:44 * jtv (i=0@ppp-124-120-182-45.revip2.asianet.co.th) has joined #launchpad-meeting Jun 17 10:00:46 me Jun 17 10:00:46 me Jun 17 10:00:55 me Jun 17 10:00:55 me Jun 17 10:01:33 me Jun 17 10:01:41 * intellectronica (n=tom@intellectronica.net) has joined #launchpad-meeting Jun 17 10:01:47 me Jun 17 10:01:54 me Jun 17 10:02:18 me Jun 17 10:02:24 BjornT: ping Jun 17 10:02:26 cprov: ping Jun 17 10:02:37 danilos: ping Jun 17 10:02:39 EdwinGrubbs: ping Jun 17 10:02:46 me Jun 17 10:02:49 me Jun 17 10:02:51 me Jun 17 10:03:00 rockstar: ping Jun 17 10:03:14 sinzui: ping Jun 17 10:03:21 me Jun 17 10:03:23 i think that's everyone Jun 17 10:03:26 [TOPIC] agenda Jun 17 10:03:28 New Topic: agenda Jun 17 10:03:38 * Roll call Jun 17 10:03:38 * Action items Jun 17 10:03:38 * Mentoring update Jun 17 10:03:38 * Peanut gallery (anything not on the agenda) Jun 17 10:03:38 * naming of unittest methods (Camel``Case or under_scores) (henninge) Jun 17 10:03:38 * order of assert parameters (expected, observed) (hennige) Jun 17 10:03:38 * Driving maintainable Javascript code (intellectronica) Jun 17 10:03:38 * Modularization and unit testing are strongly encouraged Jun 17 10:03:38 * Refactoring code after a UI review is often a good idea Jun 17 10:03:38 * The upper limit for JS diffs is 1600 lines (because javascript is so verbose) Jun 17 10:03:56 [TOPIC] action items Jun 17 10:03:57 New Topic: action items Jun 17 10:04:07 i think the only one outstanding is gary's and he's away today Jun 17 10:04:11 so... Jun 17 10:04:16 [TOPIC] mentoring update Jun 17 10:04:17 New Topic: mentoring update Jun 17 10:04:38 i think we have just one mentored reviewer left, and noodles isn't here today Jun 17 10:04:56 so... Jun 17 10:05:03 [TOPIC] peanut gallery Jun 17 10:05:04 New Topic: peanut gallery Jun 17 10:05:16 * naming of unittest methods (Camel``Case or under_scores) (henninge) Jun 17 10:05:16 * order of assert parameters (expected, observed) (hennige) Jun 17 10:05:23 henninge: the floor is yours Jun 17 10:05:27 Hi Jun 17 10:05:53 Yesterday cprov and I ran into this discussion about how to name unittest methods. Jun 17 10:06:15 I have always done test_the_frobnob, while his branch had testTheFrobnob Jun 17 10:06:41 The argument is: Coding style for methods is CamelCase Jun 17 10:06:50 yes, and I've used CamelCase for most of the soyuz unittest, and it's not looking good. Jun 17 10:07:04 isn't the policy to use test_methodName()? Jun 17 10:07:09 i have a feeling of deja vu Jun 17 10:07:11 * barry would greatly prefer anything make makes us more pep 8-y Jun 17 10:07:14 salgado: exactly Jun 17 10:07:15 I thought unit_tests_were_the_exception? Jun 17 10:07:21 but these methods are never called directly and only appear in test runner Jun 17 10:07:31 output Jun 17 10:07:31 salgado: +1 Jun 17 10:07:32 this was changed a few months back, but I don't remember what it was changed to exactly. Jun 17 10:07:44 barry: +1 Jun 17 10:07:56 we already discussed that Jun 17 10:08:04 the convention for unit test is: Jun 17 10:08:21 test_methodName_with_particular_condition Jun 17 10:08:33 flacoste: that's what i remember too. Jun 17 10:08:39 ah, that was my faint memory, too. Jun 17 10:08:44 we had this discussion like 6-8 months ago Jun 17 10:08:46 flacoste: yes Jun 17 10:08:58 When testing a specific Launchpad method, a mix of PEP 8 and camel case is Jun 17 10:08:58 used, e.g. test_fooBarBaz() Jun 17 10:08:58 is it not in the style guide? Jun 17 10:08:59 barry: somebody should have updated the wiki ;-) Jun 17 10:09:05 https://dev.launchpad.net/TestsStyleGuide#Functional and Unit Tests Jun 17 10:09:08 flacoste, it's there! Jun 17 10:09:19 In general, you should follow Launchpad coding conventions (see PythonStyleGuide), however when naming test methods: Jun 17 10:09:21 ... Jun 17 10:09:30 perfect! Jun 17 10:09:32 flacoste: time machine activated! Jun 17 10:09:36 anybody wants to rehash this? Jun 17 10:09:37 * bigjools sees a rapid end to the discussion coming Jun 17 10:09:43 cool, problem solved. Jun 17 10:09:50 second item Jun 17 10:10:26 I have seen that LaunchpadTestCase uses assert(expected, observed) Jun 17 10:10:36 and have used the asserts that way. Jun 17 10:10:52 But I see a lot of (obseved, expected). Jun 17 10:11:00 henninge: +1 for (expected, observed) Jun 17 10:11:12 barry: me, too Jun 17 10:11:28 do you mean assertEqual? Jun 17 10:11:31 is there a guide line for that already? Jun 17 10:11:33 i don't understand Jun 17 10:11:37 bigjools: yeah Jun 17 10:12:00 oh sorry, I meant assert*(e,o) Jun 17 10:12:26 btw, I found out that not everybody knows about LaunchpadTestCase Jun 17 10:12:32 intellectronica, self.assertEquals(sut_output, 'what I expect') instead of self.assertEquals('what I expect', sut_output) Jun 17 10:12:32 henninge: could you please update https://dev.launchpad.net/TestsStyleGuide Jun 17 10:12:56 i don't think it's worth having a policy on that. it doesn't matter Jun 17 10:13:03 I don't either Jun 17 10:13:08 agreed Jun 17 10:13:17 actually, i think it's better to be consistent because it's easier to debug Jun 17 10:13:28 how does it make it easier? Jun 17 10:13:45 bigjools: you have to think less when you see failing output Jun 17 10:14:03 yes, it's for clarity. Jun 17 10:14:35 if you want to make it really easy you can do `expected = expr \n observed = expr \n assertEqual(expected, observed)` Jun 17 10:15:02 intellectronica: true Jun 17 10:15:04 yeah, I quite like that style Jun 17 10:15:18 that is fine by me, too. Jun 17 10:15:20 intellectronica: it would be better to have that in the framework Jun 17 10:15:29 but again, i don't think we should force this. just remember that it's a possibility Jun 17 10:15:48 I think encouraged but not enforced Jun 17 10:15:53 just sayin', all things being equal, we prefer (expected, observed) Jun 17 10:15:55 bigjools: +1 Jun 17 10:16:00 bigjools: +1 Jun 17 10:16:10 bigjools: +1 Jun 17 10:16:18 * bigjools is not used to this many people agreeing with him Jun 17 10:16:38 henninge: can you capture this in the wiki? Jun 17 10:16:45 barry: will do Jun 17 10:17:02 [ACTION] henninge to capture decision on assert*(expected, observed) preference in wiki Jun 17 10:17:03 ACTION received: henninge to capture decision on assert*(expected, observed) preference in wiki Jun 17 10:17:06 henninge: thanks! Jun 17 10:17:15 np Jun 17 10:17:22 [TOPIC] * Driving maintainable Javascript code (intellectronica) Jun 17 10:17:24 New Topic: * Driving maintainable Javascript code (intellectronica) Jun 17 10:17:30 * Modularization and unit testing are strongly encouraged Jun 17 10:17:30 * Refactoring code after a UI review is often a good idea Jun 17 10:17:30 * The upper limit for JS diffs is 1600 lines (because javascript is so verbose) Jun 17 10:17:36 what a stupid title. i should be shot Jun 17 10:17:53 intellectronica: why? because of the oxymoron? :) Jun 17 10:18:04 * bigjools chuckles Jun 17 10:18:18 intellectronica: the floor is yours Jun 17 10:18:21 in the last ajax swat team meeting, we rockstar and deryck led a discussion about how to produce better (more maintainable, easier to test) javascript code Jun 17 10:18:35 we made several observations: Jun 17 10:19:11 1. code that is OO and modularized is much easier to work with than code that is very imperative and/or relies on closure too heavily Jun 17 10:19:38 2. unit tests (aka YUI tests) are a great way to test our code. in many cases much better than integration tests Jun 17 10:20:09 3. working on UI features it is often easier to first concentrate on completing a working UI than on code quality Jun 17 10:20:24 that's fine, but it means that we should refactor the code immediately after it passes UI review Jun 17 10:20:57 that can happen either before code review, or if not, the reviewer should encourage doing that (either as part of this branch or in a followup branch) Jun 17 10:21:39 finally, since javascript code is so much more verbose, we propose a much higher limit, in order to encourage developers to not skip these important steps Jun 17 10:21:57 one of those being writing unit tests Jun 17 10:21:59 we think 1600 lines (double the limit we have for python) is reasonable Jun 17 10:22:01 intellectronica: how can we get more assistance in making our js work correctly, and be more consistent? although everyone i've asked for help has been very helpful, i still often feel like i'm just hacking in the dark until it works Jun 17 10:22:09 just unit tests can talk 2/3 of your branch size Jun 17 10:22:46 intellectronica: when you say "javascript unit test" you're not talking about windmill, right? Jun 17 10:22:49 or are you? Jun 17 10:23:02 barry: to some extent, we are all a bit in the dark, discovering how to best go about this. discussions in #rhinos and on the canonical-javascript mailing list are a good way to exchange ideas Jun 17 10:23:05 barry, yuitest, not windmill Jun 17 10:23:20 barry: no. we're talking about in-page unit tests using the yuitest framework Jun 17 10:23:26 intellectronica: fair enough :) Jun 17 10:23:39 you'll be glad to learn that they are much easier to write and execute Jun 17 10:23:50 mars: i don't know anything about yuitest. where can i learn and/or where are good examples in our code? Jun 17 10:24:08 intellectronica: that would make me very very happy :) Jun 17 10:24:08 lazr-js/src/*/tests Jun 17 10:24:11 where are these unit tests in our tree? Jun 17 10:24:20 barry: see lib/canonical/launchpad/javascript/soyuz/tests for example Jun 17 10:24:24 barry, right now the best examples are in lazr-js itself, but others will be landing examples in launchpad soon Jun 17 10:24:25 <...>/javascript/*/tests Jun 17 10:24:32 also all widgets in lazr-js have tests Jun 17 10:24:34 currently,only the soyuz module has some Jun 17 10:24:41 yep lazr-js/src/*/tests Jun 17 10:24:50 cool, thanks, i will be looking at those for the branch i'm currently working on Jun 17 10:25:03 unit tests are really "unit" tests Jun 17 10:25:06 no Launchpad Jun 17 10:25:12 only DOM and you code Jun 17 10:25:23 and it's an self-created DOM Jun 17 10:25:24 barry, btw, the test infrastructure is open for hacking and improvement. Please feel free to stop the pain :) Jun 17 10:25:26 So I believe lp_dynamic_dom_updater.js is the only Launchpad test in our tree Jun 17 10:25:39 in lauchpad, yes Jun 17 10:25:44 lazr-js has tons of them Jun 17 10:25:46 so you still need to do some integration testing, but the advantage is that they encourage you to do a good job on modularizing your code Jun 17 10:26:07 mars: i will as soon as i can localize it. right now, it's mostly a full-body numbing throb. :) Jun 17 10:27:30 i think the other problem is that anything touching js just takes WAY more time to develop. i don't think it's entirely the fault of not being as familiar with js. it's a function of the ui 90/10 rule and the fact that yui documentation is lousy Jun 17 10:27:52 * barry knows he's just ranting Jun 17 10:28:18 barry: that, and the fact that we're all still learning. i bet in a couple of years we'll all be js/yui wizards. it takes time to build competency Jun 17 10:28:40 barry, thankfully we have started to work on that. intellectronica's process improvements are an important step towards speeding things up Jun 17 10:28:51 intellectronica: true. though, we need to keep that in mind when estimating story points and such Jun 17 10:29:01 intellectronica: so your saying in a couple of year javascript will require less keystrokes to code? Jun 17 10:29:16 mars: yes, and they are greatly appreciated. our velocity will certainly improve over time Jun 17 10:29:22 sinzui, yes, actually Jun 17 10:29:26 * beuno yells from the back "FASTER! FASTER!" Jun 17 10:29:28 sinzui: i'm sure in a couple of years you will have written enough gedit plugins to automate most of the crud :) Jun 17 10:29:48 I guess the soyuz team won't notice since their class names exceed the line limit Jun 17 10:30:09 * barry mumbles "dabbrev" Jun 17 10:30:18 * sinzui pines for Javascript 1.7/ECMA ?? Jun 17 10:30:37 at least we have tests! Jun 17 10:30:41 sinzui, you want ECMA 3.1 :) Jun 17 10:30:45 i think we digress. maybe we should start a js coder support group for ranting... Jun 17 10:30:50 is everyone cool with the increase in diff limit (and understands why it's necessary)? Jun 17 10:30:58 intellectronica: yes :) Jun 17 10:31:04 I think YUI looks to Java for inspirtation where are Javascript 1.7 looks to Python Jun 17 10:31:28 sinzui, not the cloaked OO pining of 4.X ;) Jun 17 10:31:31 intellectronica: it does make it more difficult to review, but it does make sense. Jun 17 10:31:58 barry: well, you don't really need to review the block delimiters and the uber-verbose documentation Jun 17 10:32:01 intellectronica, +1 Jun 17 10:32:06 intellectronica: true Jun 17 10:32:25 intellectronica: i'm certainly up for an experiment here. if it's too painful we can address it again Jun 17 10:33:10 i think i'm done, unless anyone has anything to add Jun 17 10:33:36 and no, "javascript sucks" isn't a valid item. we already know that :-/ Jun 17 10:33:44 intellectronica: thanks. can you send a message to launchpad@ about the length limit? Jun 17 10:33:46 :P Jun 17 10:33:55 barry: will do Jun 17 10:34:14 [ACTION] intellectronica to email launchpad@ about js branch length limit increase Jun 17 10:34:15 ACTION received: intellectronica to email launchpad@ about js branch length limit increase Jun 17 10:34:16 How are we increasing our JS reviewers? Jun 17 10:34:35 sinzui: i think by now pretty much everyone on the team does js reviews Jun 17 10:34:44 sinzui, formally? Jun 17 10:34:48 which team? Jun 17 10:35:02 bigjools: reviewers team (which is almost the same as the developers team) Jun 17 10:35:22 intellectronica: I don't review JS then Jun 17 10:35:29 sinzui, because js reviews are open to all, we leave it up to the reviewer's discretion Jun 17 10:35:35 right. we're asking all reviewers to do js reviews, but ask the swat team for help when needed Jun 17 10:35:36 mars: I know a lot about javascript, but I do not consider myself a review because I do not know much about YUI, YUI unit tests, and windmill Jun 17 10:35:38 bigjools: well, time to start, then :) Jun 17 10:35:47 intellectronica: I need to write some js myself first :) Jun 17 10:35:56 same with me Jun 17 10:36:03 me2 Jun 17 10:36:04 bigjools: yes, i guess that's a prerequisite Jun 17 10:36:11 one problem with this though is that there's little consistency in our js style Jun 17 10:36:21 sinzui, right. Depends on the review. If it is a one-line logic bug, then you don't need a JS mentor call Jun 17 10:36:29 for example, every branch i've written has had different recommendations during js review Jun 17 10:36:31 barry: anything in particular you've noticed? Jun 17 10:37:02 sinzui, but if you desire a second opinion, then give someone on the AJAX team a shout Jun 17 10:37:27 intellectronica: little things mostly, like where to stash objects, anim-reversing Jun 17 10:37:42 intellectronica: i think of it more as refinement rather than conflicts Jun 17 10:37:51 yeah Jun 17 10:37:56 that pattern are not clear yet Jun 17 10:38:05 mars: can you remind us who is on the "ajax team"? Jun 17 10:38:07 anim-reversing is about learning, and weak docs (my fault) Jun 17 10:38:13 so i think it's normal to get divergent opinion on these aspects Jun 17 10:38:40 mars: no, i think flacoste has it right. we're learning as we go, so consistency suffers for now. we're just building up tech debt we know we'll have to pay off later Jun 17 10:38:47 * barry sees no other way around that Jun 17 10:38:56 barry: EdwinGrubbs, mars, intellectronica, jtv, flacoste, rockstar Jun 17 10:39:01 barry: and noodles Jun 17 10:39:14 * mars can't type today Jun 17 10:39:15 and danilos - by virtue of having attended the Berlin sprint Jun 17 10:39:33 flacoste: thanks. we should capture that on a wiki page, if it isn't already Jun 17 10:39:44 barry: I think it is Jun 17 10:39:44 barry, it is Jun 17 10:39:49 cool Jun 17 10:39:52 thanks Jun 17 10:39:54 barry: deryck too knows a lot about js and yui and can help, b.t.w Jun 17 10:40:01 barry, just check the 'skills' column on the current reviewers page Jun 17 10:40:20 barry: https://dev.launchpad.net/ReviewerSchedule Jun 17 10:40:36 as i said, everytime i've asked someone for some js help, y'all have been very nice and very helpful. thanks! Jun 17 10:40:36 s/skills/specialities/ Jun 17 10:41:11 we have 5 minutes left. is there anything else to talk about today? Jun 17 10:41:28 yes Jun 17 10:41:29 i have Jun 17 10:41:46 i'd like to get an update on the JS testing experiment Jun 17 10:41:51 anyone tried it out in the last week? Jun 17 10:42:24 nope Jun 17 10:42:45 no, no JS landings :( Jun 17 10:42:56 really? Jun 17 10:42:58 ok Jun 17 10:43:03 a better question is: anyone been through review with a js branch which hasn't gone through testing? Jun 17 10:43:15 yes, that's the proper way to phrase the question? Jun 17 10:43:16 ! Jun 17 10:43:33 no, but i have a js branch going into review hopefully today Jun 17 10:43:41 aha! Jun 17 10:43:51 i guess i can be a guinea pig :) Jun 17 10:44:10 what about the timeline branches that Edwin landed last week? Jun 17 10:45:52 flacoste, the easiest way to push back on this may be to have reviewer's ask "Has it been tested on all browsers?" Jun 17 10:46:04 guess not. we're outta time, so shall we call it a day? Jun 17 10:46:10 sure Jun 17 10:46:25 flacoste: let's ask again next week! Jun 17 10:46:27 #endmeeting }}} === AsiaPac === {{{ Jun 17 18:30:39 #startmeeting Jun 17 18:30:41 Meeting started at 17:30. The chair is barry. Jun 17 18:30:41 Commands Available: [TOPIC], [IDEA], [ACTION], [AGREED], [LINK], [VOTE] Jun 17 18:30:48 jml, mwhudson, thumper hi Jun 17 18:30:53 hi Jun 17 18:31:02 hi Jun 17 18:31:05 hello Jun 17 18:31:32 so, do you guys have anything or would you like me to start by reviewing the summary from ameu? Jun 17 18:31:43 summary is good Jun 17 18:31:45 summarizing is good Jun 17 18:32:00 [TOPIC] summary from ameu Jun 17 18:32:01 New Topic: summary from ameu Jun 17 18:32:21 henninge brought up a question about the order of parameters in unittest assert*() methods Jun 17 18:32:39 we agreed that we "prefer" but won't "enforce" the order: (expected, observed) Jun 17 18:32:45 +1 Jun 17 18:32:54 +1 Jun 17 18:33:11 cool Jun 17 18:33:16 that's what bzrlib does, and I think it's drifted into a lot of lp.code(hosting)? Jun 17 18:33:40 +1 Jun 17 18:33:58 yeah, consensus seemed to be behind this. where there was some disagreement was on forcing people to do that order, so we compromised :) Jun 17 18:34:16 I'd probably enforce it Jun 17 18:34:18 next, intellectronica outlined some of the things that the ajax swat team's been discussing about js branches Jun 17 18:34:39 thumper: i would too, but there was no consensus, so "strongly prefer" seemed good enough Jun 17 18:35:01 barry: strongly prefer but individual reviewers may enforce L) Jun 17 18:35:06 :) Jun 17 18:35:23 more on this, or move on? Jun 17 18:35:27 move on Jun 17 18:35:49 wait Jun 17 18:35:57 are there any actual _points_ from the js branches? Jun 17 18:36:02 or was it just a discussion? Jun 17 18:36:32 jml: yes. if we're moving on, i'll cut&paste intellectronica's points :) Jun 17 18:36:51 go go Jun 17 18:36:54 code that is OO and modularized is much easier to work with than code that is very imperative and/or relies on closure too heavily Jun 17 18:37:05 unit tests (aka YUI tests) are a great way to test our code. in many cases much better than integration tests Jun 17 18:37:16 working on UI features it is often easier to first concentrate on completing a working UI than on code quality. that's fine, but it means that we should refactor the code immediately after it passes UI review. that can happen either before code review, or if not, the reviewer should encourage doing that (either as part of this branch or in a followup branch). Jun 17 18:37:26 finally, since javascript code is so much more verbose, we propose a much higher limit, in order to encourage developers to not skip these important steps. 1600 lines Jun 17 18:37:36 look in .../javascript/*/tests for unittest examples; only soyuz is in our tree atm. or look in lazr-js. Jun 17 18:37:38 EOT Jun 17 18:38:20 I would add "largely functional" to "OO and modularized" Jun 17 18:38:20 question Jun 17 18:38:24 but that's just me. Jun 17 18:38:31 where is lp.code javascript supposed to go? Jun 17 18:38:55 thumper: i don't know. this morning was the first i heard of that stuff Jun 17 18:39:15 the existing stuff is in l/c/l/javascript/* Jun 17 18:39:20 so... old tree Jun 17 18:39:23 hmm.. Jun 17 18:39:31 who is going to move this? Jun 17 18:39:34 but i know very little about it (first looked at it about 10 minutes ago) Jun 17 18:39:46 thumper: another good question. i don't even know how to /run/ it Jun 17 18:40:28 it seems we have a meeting of the js-resistant! Jun 17 18:40:40 true Jun 17 18:41:19 maybe when i send the minutes of the meetings, we can start a discussion of these on the ml Jun 17 18:41:35 i really can't give you much more than what i just pasted ;) Jun 17 18:41:41 :) Jun 17 18:41:46 thumper has a topic when we're ready to move on Jun 17 18:41:49 It'd be nice if we could have the javascript for the apps in the right part of the tree Jun 17 18:41:59 I'm ready to move on :) Jun 17 18:42:11 move on Jun 17 18:42:15 my topic Jun 17 18:42:33 thumper: it's all yours Jun 17 18:42:43 this week the code team removed all lp.code imports from canonical.launchpad.database.__init__.py and canonical.launchpad.interfaces.__init__.py Jun 17 18:42:53 the team leads agreed to get this done for their projects Jun 17 18:43:07 we should make sure there are no imports from these modules in reviews Jun 17 18:43:10 to make their job easier Jun 17 18:43:26 I personally changed many IPerson and IProduct imports to lp.registry Jun 17 18:44:01 thumper: awesome. new is better :) Jun 17 18:44:05 me too, actually. Jun 17 18:44:30 that's it Jun 17 18:44:35 +1 Jun 17 18:44:42 +1 Jun 17 18:44:43 +1 Jun 17 18:44:49 thanks thumper Jun 17 18:44:51 sold! Jun 17 18:44:52 anything else guys? Jun 17 18:44:57 barry, one more thing Jun 17 18:45:11 jml: you're up Jun 17 18:45:28 barry, I'd be kind of interested in knowing how many reviews people do per day. Jun 17 18:45:49 jml: we have real metrics Jun 17 18:45:51 barry, because I'm thinking that the small size of asiapac lends itself (perversely) to everyone doing more reviews. Jun 17 18:45:55 jml: in LP Jun 17 18:46:05 thumper, extract them for me :) Jun 17 18:46:22 yes, that would be cool to know! thumper can you get a losa to run a report? Jun 17 18:46:26 jml: some LP lib magic should be able to do this Jun 17 18:46:42 barry: I don't need no stinking losas :) Jun 17 18:46:45 barry, very low priority, I guess. I've just been noticing how often I get interrupted, and wonder if Almighty Process can make that happen less :) Jun 17 18:46:47 or that :) Jun 17 18:46:53 * mthaddon stares at thumper Jun 17 18:47:07 mthaddon: ... to run a script for me :) Jun 17 18:47:13 that's it. Jun 17 18:47:16 * thumper can do it himself :) Jun 17 18:47:19 jml: how does ocr work for you guys? do you do it, or do you work on demand? Jun 17 18:47:32 * mthaddon is actually happy (apart from the stinking part) Jun 17 18:47:39 barry, we do work on demand Jun 17 18:47:41 AND Jun 17 18:47:47 when we are ocrs, we do a lot of reviews Jun 17 18:47:47 barry: I don't do OCR, but do quite a few on demand Jun 17 18:48:21 often more from the americas on OCR days. Jun 17 18:48:24 jml: when you ocr do you just pop branches off activereviews or wait for devs to come to you. and if the latter, do you get many non-asiapac branches? Jun 17 18:48:34 i don't really do ocr, to be honest Jun 17 18:48:40 barry, I pop off to a limit of 3. :) Jun 17 18:48:51 barry, or if they are small. Jun 17 18:48:56 mwhudson, thumper gotcha Jun 17 18:49:16 generally whenever anyone says "can you do a review" i do it Jun 17 18:49:18 barry, I do get people who come to me, but it varies from week to week. Jun 17 18:49:21 (ocr day or not) Jun 17 18:49:25 jml: makes sense. actually, interestingly enough, your BOD overlaps with our EOD, so you could do some on demand america reviews occasionally Jun 17 18:49:45 barry, I sometimes do. Jun 17 18:49:53 that's great, actually Jun 17 18:50:11 (also, it's different in summer) Jun 17 18:50:16 well, thumper if you run that script, do let us know. it would be interesting Jun 17 18:50:25 jml: who's summer? Jun 17 18:50:29 kk Jun 17 18:50:54 anything else guys? Jun 17 18:51:02 that's it from me. Jun 17 18:51:23 * thumper is done Jun 17 18:51:28 all from me Jun 17 18:51:31 thanks barry Jun 17 18:51:32 thanks guys! Jun 17 18:51:34 #endmeeting }}}