Greg Whitfield

1,883
reputation
200 views

Registered User

name Greg Whitfield
member for 1 year
seen 5 hours ago
website
location GB
age 44
Engineer turned manager. Engineering background is computer graphics, visual simulation, CAD. Deep technology exposure includes C (yes, Jeff, it's essential!), C++, .NET. I've done stuff from assembly on embedded systems all the way up to commercial website development from scratch using Windows stack. In the middle has been the delights of COM/MFC development. Mainly now I am a technical manager, who is daft enough occasionally to dabble in the codebase that his engineers had so lovingly put together.
Nov
17
answered perforce: create a local backup of current pendinglist
Nov
17
answered Faster clean Perforce sync over VPN
Oct
21
comment Automated testing for OpenGL application
+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.
Oct
16
comment What are your Perforce practices for view/branches ?
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=<name_of_workspace2>', 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/
Oct
16
answered How to prevent people from editing other’s workspace options in Perforce ?
Oct
16
comment How to force a confirmation step before certain perforce command ?
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.
Oct
16
answered How to force a confirmation step before certain perforce command ?
Oct
16
answered What are your Perforce practices for view/branches ?
Oct
15
revised How can I grab my local changelist and send it to someone else in Perforce?
added 229 characters in body
Oct
15
answered How can I grab my local changelist and send it to someone else in Perforce?
Oct
14
awarded  Popular Question
Sep
17
comment Is it a good idea to put Easter Eggs in applications?
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?
Sep
17
comment Is it a good idea to put Easter Eggs in applications?
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.
Aug
21
awarded  Yearling
Aug
18
comment How to do a fast and safe sync on perforce?
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 "Publish" option.
Aug
7
comment How to do a fast and safe sync on perforce?
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.
Jul
31
comment How to do a fast and safe sync on perforce?
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 "have list". 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.
Jul
29
answered How to do a fast and safe sync on perforce?
Jul
27
awarded  Nice Answer
Jul
25
awarded  Nice Answer
Jul
9
comment Disable warning in VIM?
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.
Jul
8
accepted How do you search the text of changelist descriptions in Perforce?
Jul
6
comment Same file in multiple changelists in perforce
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.