User Greg Whitfield - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T02:44:39Z http://stackoverflow.com/feeds/user/2102 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1722240/perforce-create-a-local-backup-of-current-pendinglist/1747916#1747916 1 Answer by Greg Whitfield for perforce: create a local backup of current pendinglist Greg Whitfield 2009-11-17T10:29:55Z 2009-11-17T10:29:55Z <p>See also this question:</p> <p><a href="http://stackoverflow.com/questions/373234/how-can-i-grab-my-local-changelist-and-send-it-to-someone-else-in-perforce">Sending my changelist to someone else without checking in.</a></p> <p>It's basically the same thing.</p> http://stackoverflow.com/questions/1742994/faster-clean-perforce-sync-over-vpn/1747885#1747885 0 Answer by Greg Whitfield for Faster clean Perforce sync over VPN Greg Whitfield 2009-11-17T10:22:12Z 2009-11-17T10:22:12Z <p>Perforce Proxy is almost definitely the way to go, assuming you can dedicate a local machine for this purpose.</p> <p>A useful tip for a Proxy is to get it to refresh its contents overnight, just by creating a dummy client (perhaps on the proxy machine), and kicking off a nightly task to do a sync - a normal sync will do, does not need to be a clean one. This will ensure any big changes people have checked in won't necessarily cause a massive lag the first time you need to do a local sync.</p> <p>Note that you need a live VPN connection between the proxy and the server - the proxy still has to talk to the server to determine if it has the right versions cached. So the proxy needs a reasonably low latency link to the server, but at least you don't have to wait for actual file transfer.</p> <p>Another alternative you may want to try is to use the compress option in your client specs (workspaces). This tells the server to compress each file before it gets sent, and your p4 client will decompress automatically. The trade-off here is CPU time on both the server and the client. However, given you want to sync several local clients, I think proxy will ultimately be the better solution.</p> http://stackoverflow.com/questions/686216/what-code-would-you-have-on-your-wedding-cake/686741#686741 59 Answer by Greg Whitfield for What code would you have on your wedding cake? Greg Whitfield 2009-03-26T17:17:35Z 2009-10-25T13:20:05Z <pre><code>SELECT wife FROM women WHERE looks='gorgeous' AND idealman LIKE 'Robert%' UNION SELECT husband FROM men WHERE job='geek' AND loves='Tiffany' </code></pre> <p>OK, so I've got no idea about SQL, but someone with knowledge must be able to knock something up with the rather appropriate keywords like SELECT, JOIN, UNION, LIKE etc.</p> http://stackoverflow.com/questions/47007/determining-the-last-changelist-synced-to-in-perforce 8 Determining the last changelist synced to in Perforce Greg Whitfield 2008-09-05T22:36:02Z 2009-10-22T21:35:26Z <p>A question that occasionally arises is what is the best way to determine the changelist that you last synced to in Perforce. This is often needed for things like injecting the changelist number into the revision info by the automatic build system.</p> http://stackoverflow.com/questions/1565121/how-to-prevent-people-from-editing-others-workspace-options-in-perforce/1577214#1577214 2 Answer by Greg Whitfield for How to prevent people from editing other's workspace options in Perforce ? Greg Whitfield 2009-10-16T10:04:37Z 2009-10-16T10:04:37Z <p>Not a direct fix, but you can track changes made to client specs by implementing a "Spec Depot". See <a href="http://kb.perforce.com/AdminTasks/UsingTheSpecDepot" rel="nofollow">KB article here</a>.</p> <p>I must admit prior to reading your question I did not even realise you could modify another user's client spec without admin rights. In the 9 years of using Perforce I have never come across that as being an actual problem for people.</p> <p>cjhuitt's suggestion of prefixing a client spec with user name/initials is a good one, and is pretty common practice, particularly in larger installations. </p> http://stackoverflow.com/questions/1565138/how-to-force-a-confirmation-step-before-certain-perforce-command/1577155#1577155 2 Answer by Greg Whitfield for How to force a confirmation step before certain perforce command ? Greg Whitfield 2009-10-16T09:49:06Z 2009-10-16T09:49:06Z <p>I'm not sure of the real danger - if Perforce will wipe out something that you can't get back, then that is generally why you have the -f flag. The one truly dangerous command - p4 obliterate - does require an explicit -y flag before it will do anything.</p> <p>If you are concerned about modifications of the server meta data (client specs, labels, permissions tables, jobs etc), then I strongly recommend you set up a "Specs" depot. This creates a special depot in Perforce that version controls any changes users make to thing slike labels specs, branch specs, client specs etc. Can be really useful, and is the first thing I do on any new Perforce installation.</p> <p>It's all in the docs. Try <a href="http://kb.perforce.com/AdminTasks/UsingTheSpecDepot" rel="nofollow">this KB entry</a> for starters.</p> http://stackoverflow.com/questions/1565179/what-are-your-perforce-practices-for-view-branches/1577126#1577126 5 Answer by Greg Whitfield for What are your Perforce practices for view/branches ? Greg Whitfield 2009-10-16T09:41:42Z 2009-10-16T09:41:42Z <p>If by "view" you mean workspace (aka client-spec), then I strive to have one client spec for each branch I am working on. I'm assuming by branch you mean you have a typical system where you have mainline, development branches, and maybe release branches too?</p> <p>The reason for keeping the 1-1 correspondence is it just keeps things simpler. It can also prevent accidents - e.g. when I am in a development client spec, I know I cannot accidentally look at or modify a file of the same name in another branch. This can be a big help when you are down in the depths of a deep source folder hierarchy.</p> <p>Keeping views "tight" is generally good practice in Peforce - as in anything. It helps server performance, which in turn helps performance of Perforce on your client machine. But beyond performance, I think the concept of only seeing what you need to see - letting the computer do the filtering for you - is just generally a good thing. It lets you concentrate on the job at hand without distraction.</p> <p>I don't have any difficultly switching workspaces, and there are a number of ways to do this depending on your circumstances and preferences. P4V has a simple drop-down at the top of the left pane, for example. What difficulties are you having switching workspaces?</p> http://stackoverflow.com/questions/373234/how-can-i-grab-my-local-changelist-and-send-it-to-someone-else-in-perforce/1572246#1572246 0 Answer by Greg Whitfield for How can I grab my local changelist and send it to someone else in Perforce? Greg Whitfield 2009-10-15T13:05:28Z 2009-10-15T13:16:14Z <p>Not sure exactly what you are trying to do, but you may also want to consider <a href="http://public.perforce.com/wiki/P4%5FShelve" rel="nofollow">P4_Shelve</a>. It allows you to put a load of pending changes away on a virtual shelf, and then grab them back again later. Depending on what exactly you want to achieve by sending a changelist to someone else, this could provide a part of the answer.</p> <p>Linked from the P4Shelve site is <a href="http://public.perforce.com/wiki/P4tar" rel="nofollow">P4Tar</a> which may also be useful - this does all the packing on the client side so you just get left with a file you can send to someone else.</p> http://stackoverflow.com/questions/1199068/how-to-do-a-fast-and-safe-sync-on-perforce/1199172#1199172 8 Answer by Greg Whitfield for How to do a fast and safe sync on perforce? Greg Whitfield 2009-07-29T10:02:07Z 2009-07-29T10:02:07Z <p>The key part to your question is "even if it should". Without fail, in all my (too) many years of experience with Perforce, users who revert to forced syncs habitually, because a normal sync does not do what they expect, are not using Perforce correctly.</p> <p>You must let Perforce manage your hard disk for you - the server knows which versions of which files you have, and so a normal sync just gets what it needs. If it fails, then that is almost without exception a sign that the user is modifying, deleting, adding, renaming files outside of Perforce (e.g. in Explorer).</p> <p>Sometimes you may get a system funny (i.e. PC fault, ) that causes this, so it is not necessarily the users fault. But these are very rare - hence my "habitually" qualifier above.</p> <p>If you think, hand on heart, that you are not doing anything out of the ordinary, then start to look at what other processes could be tweaking these files. E.g. does you build system do something odd, and try to modify files as it builds? Do you have an open network share that perhaps someone else is inadvertently poking? Do you have a backup system that is interfering?</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/1010134/can-specific-files-mapped-in-a-perforce-client-spec-be-made-non-editable/1017382#1017382 4 Answer by Greg Whitfield for Can specific files mapped in a Perforce client spec be made non-editable? Greg Whitfield 2009-06-19T10:56:22Z 2009-06-19T20:00:59Z <p>The only way to do this properly is via the Perforce permissions table. You get to this either with p4 protect command or via the Admin menu in P4V.</p> <p>Just open it up - you need admin rights - and add a line to the table to mark those files as read only. That will allow your clients to sync to the files but not be allowed to open for edit (or delete etc).</p> <p>You have ultimate control in the permissions table. You could also refine this to allow just a subset of users to be able to modify the file, while everyone else sees it as read only.</p> <p>The Perforce admin guide is pretty good on the permissions table. Direct link <a href="http://www.perforce.com/perforce/doc.082/manuals/p4sag/04%5Fprotect.html#1016808" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/952980/ignore-client-generated-files-in-perforce-workspace-view/992586#992586 1 Answer by Greg Whitfield for Ignore client generated files in Perforce workspace view Greg Whitfield 2009-06-14T10:21:27Z 2009-06-14T10:21:27Z <p>If you don't want to have to remember to put this in all your workspaces (aka client specs), then ask your administrator to filer out .class files in the P4 sever permissions table. This will make it transparent to all users then.</p> http://stackoverflow.com/questions/971772/whats-the-best-way-to-move-to-a-new-perforce-server/992562#992562 0 Answer by Greg Whitfield for What's the best way to move to a new Perforce server? Greg Whitfield 2009-06-14T10:08:47Z 2009-06-14T10:08:47Z <p>What Shane suggested will populate the depot with one person's version of the files. But if you have another user who also has a copy then you'll need a couple of extra steps.</p> <p>Firstly, just set one machine up as suggested by Shane. </p> <p>You now need to get the second user set up. If you are confident that the version of the code user 2 has exactly matches what you put in the new server, then just create a client spec (probably same name as used before), and then sync using the "Force" flag. This will overwrite all the files on user 2's machine, and - more importantly - ensure Perforce knows which versions you really have.</p> <p>However, if you are in any doubt as to any differences in code, then do not do the initial sync from the second user's machine. Instead, set up the client spec, then use the "Reconcile offline work" option - from P4V select the workspace, then it's a right click option. Then just walk through the subsequent dialog to sort out what you need.</p> <p>Finally, if you want a very quick &amp; dirty backup system for your server, I've posted some notes on my <a href="http://familywhitfield.co.uk/wordpress/2007/07/07/a-simple-perforce-backup-script-for-the-home/" rel="nofollow">blog here</a> - should take you just a couple of minutes to set up.</p> http://stackoverflow.com/questions/133204/in-perforce-how-do-i-get-a-list-of-checked-out-files/133446#133446 1 Answer by Greg Whitfield for In Perforce, how do I get a list of checked out files? Greg Whitfield 2008-09-25T13:47:08Z 2009-05-08T22:36:12Z <p>Seeing as you also asked about P4V and only had command line answers so far, here's what you do for P4V. The "Pending" pane gets you part way to what you want. Ensure the "User" and "Workspace" filters are cleared, and you'll get a list of all files grouped by changelist and client spec. Not as clean as the straight list of files you get when using the P4 command line as suggested by Iain and Mark, but may help in some situations.</p> <p>An alternative is to create a custom menu in P4V that uses one of the command line solutions suggested. For example:</p> <ol> <li>Tools->Manage Custom Tools</li> <li>New</li> <li>Call it something e.g. Open files by user</li> <li>Check the "Add to applicable context menus"</li> <li>In Application field, browse to p4.exe</li> <li>In Arguments, type opened -a %D (the latter takes the currently selected depot path) </li> <li>Check the box to run in a console.</li> </ol> <p>I'm sure you could fancy this up a bit if needed to filter the output.</p> http://stackoverflow.com/questions/727690/perforce-dev-branches-sparse-branching-vs-private-branching/733684#733684 2 Answer by Greg Whitfield for Perforce Dev Branches - Sparse Branching vs. Private Branching Greg Whitfield 2009-04-09T10:43:19Z 2009-04-09T10:43:19Z <p>A good situation that sparse branching is suitable for is when you have a complicated product potentially made up of lots of modules. Say the build takes a long time for the whole system, and perhaps the sync takes a while too - lots of data files. But your development only needs to modify a small subset of the whole source base - maybe a module or two, with possibly some linkage code "higher up".</p> <p>In this case, doing a sparse branch can make a lot of sense. It means you have already synced to the bulk of the stuff, and probably already built too. But you do have to be careful that any files you modify are branched first - otherwise you risk breaking the mainline. Certainly it requires more care by the programmer.</p> <p>Another case where sparse branching may be the only practical way of doing branched development is if it is hard to have more than one version of your app on a development machine. In this case it would be tricky to have both a mainline build and a development build building and running side by side. Obviously not ideal, but some products are like that either by necessity or history.</p> http://stackoverflow.com/questions/686216/what-code-would-you-have-on-your-wedding-cake/686686#686686 16 Answer by Greg Whitfield for What code would you have on your wedding cake? Greg Whitfield 2009-03-26T17:00:36Z 2009-03-26T17:00:36Z <p>Don't have an answer for you wedding cake, but your 40th anniversary cake code should be in Ruby...</p> <p>[fetches coat]</p> http://stackoverflow.com/questions/678257/locking-a-branch-in-perforce/686497#686497 1 Answer by Greg Whitfield for Locking a branch in perforce? Greg Whitfield 2009-03-26T16:24:40Z 2009-03-26T16:24:40Z <p>p4 protect is definitely the better way to go - it's what it is there for. I would strongly recommend you put all your users into groups, and only ever use groups in your protections table - much easier to manage.</p> <p>You can protect at any level of granularity you like, so is not unwieldy. Note also that the 2008.1 server release has a new protect feature that allows you to specify what you can do in a slightly different way. Change note:</p> <pre><code>#152278 ** 'p4 protect' now allows specification of permission 'rights'. Previously, 'p4 protect' only allowed using permission levels which include the specified access (ie 'read') and also all of its lesser permissions (ie 'read' = 'read' + 'list'). Permission rights make it possible to deny individual rights without having to re-grant lesser rights. The new permission rights are '=read', '=branch', '=open', and '=write'. This functionality was previously undocumented, and is now fully supported for 2008.1 </code></pre> <p>If you really have an issue with having to be an admin to lock &amp; unlock this, then you should take a look at the "group owner" feature introduced in 2007.3. This will let a non-super user to be able to add &amp; remove people from a group. So combine that with the protections table. I.e. get site admin to set up the protections table, and restrict rights to a group named "Rel 1.0 Authorised", and make you the group owner. You can then add and remove users (or subgroups) from that group to control access.</p> <p>The trigger option is a possibility, but you still need to be an admin to set up the trigger in the first place. You could also affect performance of all submissions, which is something to look out for. But the main issue with triggers is that you would be using them to emulate a built in feature designed for that purpose - i.e. protections table. And, if you wanted to be safe, you would still need to find some way of preventing anyone else modifying the reference file. It just seems like a lot of work to emulate an existing feature.</p> http://stackoverflow.com/questions/609261/perforce-save-a-local-copy-of-opened-file/614137#614137 1 Answer by Greg Whitfield for Perforce save a local copy of opened file Greg Whitfield 2009-03-05T09:46:27Z 2009-03-05T09:46:27Z <p>You also might want to consider <em>why</em> you feel the need to back up files at the end of each day oustide of using Perforce itself.</p> <p>You may find that using a development branch and submitting the changes (with the "reopen for edit" flag checked) at the end of each day is actually easier and better. For a start, you are then using Perforce to keep track of your changes, rather than your own manual system.</p> <p>Using a development branch means that you can do these checkins without risk of messing up your workmates. </p> <p>Just a suggestion worth considering, that's all.</p> http://stackoverflow.com/questions/596194/can-i-integrate-a-file-not-in-my-client-spec/598578#598578 1 Answer by Greg Whitfield for Can I integrate a file not in my client spec? Greg Whitfield 2009-02-28T20:01:45Z 2009-02-28T20:01:45Z <p>I'm not clear from your question of direction of integration is an issue. But you can integrate from files not in your client spec, but never <em>to</em> files.</p> <p>An alternative would be to use a branch spec that misses off the library folder mapping. Just copy the current branch spec, and filter that out. Then you can integrate quite happily and the libs will be ignored.</p> http://stackoverflow.com/questions/471072/all-change-comments-to-perforce-branch-between-2-labels-including-merges/513848#513848 1 Answer by Greg Whitfield for All change comments to perforce branch between 2 labels? (including merges) Greg Whitfield 2009-02-04T23:20:32Z 2009-02-04T23:20:32Z <p>I can't see an easy answer to this, but do have a couple more suggestions that perhaps may help point in the right direction. </p> <ol> <li>Persuade your admin to raise the maxscan rows limit. If he is nervous that this will lead to problems with the whole user base, just get him to add you to a new user group (e.g. "Scripting"), and set the limits for just that group. That will have the effect that only members of that group can use the upper limits, and you can then negotiate for suitable times to run the script. You could even do it overnight.</li> <li>Have a look at the <a href="http://www.perforce.com/perforce/doc.082/manuals/p4sag/07_perftune.html#1042633" rel="nofollow">P4 admin guide</a> and see if any of the hints on scripting will help - e.g. maybe a tighter view on the data will limit the query enough to not break the maxscanrows limits.</li> <li>How's your SQL? You may be able to construct an efficient query using the <a href="http://www.perforce.com/perforce/doc.current/manuals/p4report/index.html" rel="nofollow">P4Report</a> tool.</li> <li>Try asking the question on the Perforce mailing list. It's a very active list that has a lot of very experienced people who are very helpful. See <a href="http://maillist.perforce.com/mailman/listinfo/perforce-user" rel="nofollow">this link</a> for the sign-up page. There's a good chance that they will suggest some good approaches.</li> <li>Probably too late for yoru existing labels, but consider using the job system to track work. Perforce has inbuilt query tools to track what jobs have made it into different branches. It does require a working-practice change for your team, however.</li> </ol> <p>Sorry I can't provide a more specific answer.</p> http://stackoverflow.com/questions/22322/how-to-late-bind-32bit-64-bit-libs-at-runtime 7 How to late bind 32bit/64 bit libs at runtime Greg Whitfield 2008-08-22T13:23:15Z 2009-01-30T08:14:21Z <p>I've got a problem similar to,but subtly different from, that described <a href="http://beta.stackoverflow.com/questions/22012/loading-assemblies-and-its-dependencies" rel="nofollow">here</a> (Loading assemblies and their dependencies).</p> <p>I have a C++ DLL for 3D rendering that is what we sell to customers. For .NET users we will have a CLR wrapper around it. The C++ DLL can be built in both 32 and 64bit versions, but I think this means we need to have two CLR wrappers since the CLR binds to a specific DLL? </p> <p>Say now our customer has a .NET app that can be either 32 or 64bit, and that it being a pure .NET app it leaves the CLR to work it out from a single set of assemblies. The question is how can the app code dynamically choose between our 32 and 64bit CLR/DLL combinations at run-time?</p> <p>Even more specifically, is the suggested answer to the aforementioned question applicable here too (i.e. create a ResolveEvent handler)?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/22322/how-to-late-bind-32bit-64-bit-libs-at-runtime/479664#479664 4 Answer by Greg Whitfield for How to late bind 32bit/64 bit libs at runtime Greg Whitfield 2009-01-26T12:42:19Z 2009-01-30T08:14:21Z <p>I finally have an answer for this that appears to work.</p> <p>Compile both 32 &amp; 64 bit versions - both managed &amp; unmanaged - into separate folders. Then have the .NET app choose at run time which directory to load the assemblies from.</p> <p>The problem with using the ResolveEvent is that it only gets called if assemblies aren't found, so it is all to easy to accidentally end up with 32 bit versions. Instead use a second AppDomain object where we can change the ApplicationBase property to point at the right folder. So you end up with code like:</p> <pre><code>static void Main(String[] argv) { // Create a new AppDomain, but with the base directory set to either the 32-bit or 64-bit // sub-directories. AppDomainSetup objADS = new AppDomainSetup(); System.String assemblyDir = System.IO.Path.GetDirectoryName(Application.ExecutablePath); switch (System.IntPtr.Size) { case (4): assemblyDir += "\\win32\\"; break; case (8): assemblyDir += "\\x64\\"; break; } objADS.ApplicationBase = assemblyDir; // We set the PrivateBinPath to the application directory, so that we can still // load the platform neutral assemblies from the app directory. objADS.PrivateBinPath = System.IO.Path.GetDirectoryName(Application.ExecutablePath); AppDomain objAD = AppDomain.CreateDomain("", null, objADS); if (argv.Length &gt; 0) objAD.ExecuteAssembly(argv[0]); else objAD.ExecuteAssembly("MyApplication.exe"); AppDomain.Unload(objAD); } </code></pre> <p>You end up with 2 exes - your normal app and a second switching app that chooses which bits to load. Note - I can't take credit for the details of this myself. One of my colleagues sussed that out given my initial pointer. If and when he signs up to StackOverflow I'll assign the answer to him</p> http://stackoverflow.com/questions/471072/all-change-comments-to-perforce-branch-between-2-labels-including-merges/479788#479788 0 Answer by Greg Whitfield for All change comments to perforce branch between 2 labels? (including merges) Greg Whitfield 2009-01-26T13:28:21Z 2009-01-27T11:04:06Z <p>Won't a normal Label-diff do what you want?</p> <ul> <li>From P4V, Tools->Diff. Select the two labels</li> <li>From P4Win, right click label, select diff files in 2 labels</li> <li>From command line, p4 diff2 //codeline/...@label1 //codeline/...@label2</li> </ul> <p>Or am I missing exactly what you are after?</p> <h2>Further suggestion after Ville's comment on the above</h2> <p>If you are only after the info per changelist, rather than per file, then try "p4 interchanges" from the command line. This will give you just the summary of what changes in one branch have not happened in another, and you can supply a revision range to limit it to the labels you need.</p> <p>Do "p4 help interchanges" from command line for details. </p> <p>Unfortunately the interchanges command is not yet exposed in P4V or P4Win.</p> http://stackoverflow.com/questions/331758/is-there-an-easy-way-to-revert-an-entire-p4-changelist/332450#332450 4 Answer by Greg Whitfield for Is there an easy way to revert an entire P4 changelist? Greg Whitfield 2008-12-01T22:22:54Z 2008-12-17T12:31:07Z <p>The posted answers provide correct answers, but note also that there is an actual menu option in P4V to do this for you now. It's in the latest 2008.2 Beta, and so should be officially released the the next week or three.</p> <p>This <a href="http://www.perforce.com/perforce/downloads/beta/index.html" rel="nofollow">link</a> gives details. </p> <p>It should be a lot simpler to use than the earlier answers, but I've not had the opportunity to try it myself yet.</p> <p><strong>Update</strong> This has now been fully released. See <a href="http://www.perforce.com/perforce/downloads/index.html" rel="nofollow">Perforce downloads</a>.</p> http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce/332458#332458 2 Answer by Greg Whitfield for How do you search the text of changelist descriptions in Perforce? Greg Whitfield 2008-12-01T22:26:26Z 2008-12-01T22:26:26Z <p>There is another alternative using P4Win. When the submitted changelist pane has focus, a CTRL+F lets you do an arbitrary text search, which includes changelist descriptions.</p> <p>The only limitation is that it searches just those changelists that have been fetched from the server, so you may need to up the number retrieved (via tha Options dialog).</p> <p>There is a feature request in to add this to P4V too - if you want this then please email support@perforce.comn to add your vote to it.</p> http://stackoverflow.com/questions/322294/in-perforce-what-is-the-command-to-connect-to-a-different-port-when-switching-cl/330805#330805 1 Answer by Greg Whitfield for In Perforce, what is the command to connect to a different port when switching client user? Greg Whitfield 2008-12-01T13:21:22Z 2008-12-01T13:21:22Z <p>If you want to do it generically for any P4 command then the general form can be found via "p4 help usage".</p> <p>In a nutshell, </p> <pre><code>p4 -p &lt;your port&gt; login </code></pre> <p>will do what you asked for. Note from the usage help that you can specify most things from the command line such as client spec, username, password, etc.</p> http://stackoverflow.com/questions/257074/microsoft-project/257151#257151 0 Answer by Greg Whitfield for Microsoft Project Greg Whitfield 2008-11-02T18:19:15Z 2008-11-02T18:19:15Z <p>I tend to use MSProject for capacity planning - a nice big broad brush of who could do what over a period, at a level of abstraction that makes it easy to rejig plans. For day to day tracking of the real work, I use Fogbugz. I think of it as MSProject/Gantty stuff for the strategic planning, and Fogbugz for the tactical management and planning.</p> http://stackoverflow.com/questions/230153/when-can-i-start-teaching-my-son-to-program/230189#230189 0 Answer by Greg Whitfield for When can I start teaching my son to program? Greg Whitfield 2008-10-23T15:29:32Z 2008-10-23T15:29:32Z <p>Is this an experiment to determine if geekiness is nature or nurture? :)</p> http://stackoverflow.com/questions/198666/project-management-resource-chart/229473#229473 1 Answer by Greg Whitfield for Project Management -- resource chart Greg Whitfield 2008-10-23T11:59:40Z 2008-10-23T11:59:40Z <p>In addition to Mark Nold's answer, you also have a couple of options on the Reports menu in MS Project that can get you a more concise representation of who is doing what than what you see with the Resource Usage view.</p> <p>The disadvantage of the report method, however, is that it is view-only.</p> <p>Outside of MSProject, you could look at Fogbugz's scheduling system. It does not tick the "Gantt" requirement, but you can see a per person breakdown of activities over time. </p> <p>Just as an aside, I tend to use MSProject for capacity planning - a nice big broad brush of who could do what over a period, at a level of abstraction that makes it easy to rejig plans. For day to day tracking of the <em>real</em> work, we use Fogbugz. I think of it as MSProject/Gantty stuff for the strategic planning, and Fogbugz for the tactical management and planning.</p> http://stackoverflow.com/questions/223163/routing-around-stupid-it-departments/223524#223524 2 Answer by Greg Whitfield for Routing around stupid IT departments Greg Whitfield 2008-10-21T21:10:37Z 2008-10-21T22:52:41Z <p>Thanks for the specifics.</p> <p>I certainly have a number of war stories, but I would need to create another login to repeat them :) </p> <p>First stop certainly has to be your immediate management. I don't know if they are technical or not, but you need to spell out, say, the top three individual issues and why exactly they cause a problem. Suggest a solution, but couch it in terms that this is just a suggestion. In my experience a cause of discord between IT departments and software teams is that the latter always want to suggest solutions couched as problems, and the former want to know what the problem is and why. Software people get frustrated having to explain what to them is an obvious solution, and therefore think the IT people are idiots. And IT people - who may or may not be idiots - like to find the real problem and come up with a specific solution rather than something more general. Gross generalisations here....</p> <p>The reason I suggest the top three issues is that you need to make the problem look solvable, and not look like a big list of complaints. Depending on the relationships in your company, you may decide to pick just one. Make it the easiest to fix and strive for a quick win. Praise the solution when you get it, and then move onto the next one: "Guys, enabling a general VPN has been a real help to us. Thanks! Since we've got that, we've thought of something else that would really help out"....etc etc).</p> <p>Yes it's cheesy, but you have a human problem not a technological one. I don't think there is one all encompasing single technological answer in your case (although I did like some of the suggestions, particularly rally25s).</p> http://stackoverflow.com/questions/211426/what-punishment-do-you-have-when-someone-on-the-team-breaks-the-build/211997#211997 8 Answer by Greg Whitfield for What punishment do you have when someone on the team breaks the build? Greg Whitfield 2008-10-17T12:55:25Z 2008-10-17T12:55:25Z <p>Is death a bit harsh? :)</p> http://stackoverflow.com/questions/1586230/automated-testing-for-opengl-application/1603872#1603872 Comment by Greg Whitfield on Automated testing for OpenGL application Greg Whitfield 2009-10-21T22:00:39Z 2009-10-21T22:00:39Z +1 for all good advice. For the framebuffer comparison we wrote a little app that does a fuzzy difference on the images that looks at the perceptual deltas, rather than absolute pixel values. http://stackoverflow.com/questions/1565179/what-are-your-perforce-practices-for-view-branches/1577126#1577126 Comment by Greg Whitfield on What are your Perforce practices for view/branches ? Greg Whitfield 2009-10-16T13:12:06Z 2009-10-16T13:12:06Z You maybe confusing folders on your hard disk with workspaces in Perforce - the latter map files from the depot into the former. Simply CD'ing from the command line tells Perforce nothing - you are simply acting locally. You need to do 'set P4CLIENT=&lt;name_of_workspace2&gt;', and this will override whatever your default client spec is. Note that if you want Perforce to switch client specs for you depending on your current directory on your filesystem, you can do that using the P4CONFIG mechanism - dig around in the docs. As I said, Perforce is very flexible/ http://stackoverflow.com/questions/1565138/how-to-force-a-confirmation-step-before-certain-perforce-command Comment by Greg Whitfield on How to force a confirmation step before certain perforce command ? Greg Whitfield 2009-10-16T09:51:10Z 2009-10-16T09:51:10Z Isn't the -f flag the confirmation then? Since by default you do not need it, adding it in assumes that you are confirming the action. http://stackoverflow.com/questions/4943/is-it-a-good-idea-to-put-easter-eggs-in-applications/131829#131829 Comment by Greg Whitfield on Is it a good idea to put Easter Eggs in applications? Greg Whitfield 2009-09-17T12:52:25Z 2009-09-17T12:52:25Z Ah - oh yes it is. I've set my response to community wiki so I neither benefit nor suffer. But I think the question should be too? http://stackoverflow.com/questions/4943/is-it-a-good-idea-to-put-easter-eggs-in-applications/131829#131829 Comment by Greg Whitfield on Is it a good idea to put Easter Eggs in applications? Greg Whitfield 2009-09-17T12:50:33Z 2009-09-17T12:50:33Z True enough - same applies. I guess that's what the Community Wiki option would be for, but that's not my choice to make I don't think. http://stackoverflow.com/questions/1199068/how-to-do-a-fast-and-safe-sync-on-perforce/1199172#1199172 Comment by Greg Whitfield on How to do a fast and safe sync on perforce? Greg Whitfield 2009-08-18T11:43:41Z 2009-08-18T11:43:41Z Most scripting can be performed easily with the command line p4 client. You can pipe text in, or, in the case of p4 client, the -t option allows you to provide a template. Try p4 help client for a first look. There are also API's to Perforce (Python, .net etc) - see Perforce website. For your last requirement, you can add a trigger to Perforce that will invoke a script/command if a client spec is changed. You could use this to regenerate the others - but think about whether you need this to happen immediately, or if you would be better served with an explicit &quot;Publish&quot; option. http://stackoverflow.com/questions/1199068/how-to-do-a-fast-and-safe-sync-on-perforce/1199172#1199172 Comment by Greg Whitfield on How to do a fast and safe sync on perforce? Greg Whitfield 2009-08-07T21:55:50Z 2009-08-07T21:55:50Z Yes, a client spec per machine would be advisable in most circumstances. You can automate their creation, however, so it's not as painful as you may think. http://stackoverflow.com/questions/1199068/how-to-do-a-fast-and-safe-sync-on-perforce/1199172#1199172 Comment by Greg Whitfield on How to do a fast and safe sync on perforce? Greg Whitfield 2009-07-31T18:50:37Z 2009-07-31T18:50:37Z Perforce associates which versions of which files you have with your each client spec. This info is kept on the server with each client spec - in what it calls its &quot;have list&quot;. Shared clients are not typical user practice. They are allowed by Perforce to enable particular usage scenarios. But if you are working on different machines, then that is handled by having a client spec per machine. It's exactly what they were designed for. http://stackoverflow.com/questions/1095708/disable-warning-in-vim Comment by Greg Whitfield on Disable warning in VIM? Greg Whitfield 2009-07-09T12:55:05Z 2009-07-09T12:55:05Z Could it be that sometimes the file has actually changed? E.g. if you did not have the head revision open in VIM, an open for edit would actually try and replace your file with the latest one. http://stackoverflow.com/questions/1075745/same-file-in-multiple-changelists-in-perforce/1075756#1075756 Comment by Greg Whitfield on Same file in multiple changelists in perforce Greg Whitfield 2009-07-06T12:56:11Z 2009-07-06T12:56:11Z As marcc says, the way to do this is by branching. If you think about it, that is really what you are doing - isolating changes in the same file to apply to different features/changes. http://stackoverflow.com/questions/133204/in-perforce-how-do-i-get-a-list-of-checked-out-files/133446#133446 Comment by Greg Whitfield on In Perforce, how do I get a list of checked out files? Greg Whitfield 2009-05-08T22:29:07Z 2009-05-08T22:29:07Z Fair point, but I think already covered by my last sentence. I've edited my answer with an alternative. http://stackoverflow.com/questions/686216/what-code-would-you-have-on-your-wedding-cake/686741#686741 Comment by Greg Whitfield on What code would you have on your wedding cake? Greg Whitfield 2009-03-27T12:01:41Z 2009-03-27T12:01:41Z Yes, perhaps &quot;knocking up&quot; was not quite the right phrase to use regarding a wedding! http://stackoverflow.com/questions/686216/what-code-would-you-have-on-your-wedding-cake/686744#686744 Comment by Greg Whitfield on What code would you have on your wedding cake? Greg Whitfield 2009-03-26T17:21:42Z 2009-03-26T17:21:42Z Some people have waay too much time on their hands! :) Worth an upvote purely for typing effort. http://stackoverflow.com/questions/553523/what-is-the-most-frustrating-restriction-your-it-department-has-ever-put-on-you-o/553534#553534 Comment by Greg Whitfield on What is the most frustrating restriction your IT department has ever put on you or your machine? Greg Whitfield 2009-03-25T10:17:18Z 2009-03-25T10:17:18Z Worth fighting to get this restriction removed. Luckily I'm a manager, so had some clout, but still took me a long time. If it's a help, ask for &quot;local admin&quot; access - that gives you full rights to your machine, but no network-wide access. Many IT departments confuse the two. http://stackoverflow.com/questions/553523/what-is-the-most-frustrating-restriction-your-it-department-has-ever-put-on-you-o/553585#553585 Comment by Greg Whitfield on What is the most frustrating restriction your IT department has ever put on you or your machine? Greg Whitfield 2009-03-25T10:13:25Z 2009-03-25T10:13:25Z Not sure which country you are in, but in Europe I think regulations are for minimum 70Hz refresh rate on monitors in a workplace. Anything less is breaking the law, or some workers rights bill, or something like that.