1
vote
4answers
71 views
How do you work on Strategic Development initiatives when Tactical work takes priority?
My day-to-day job consists of maintaining large volume websites and this has given me exposure to developing better methods to develop and maintain the code. This has also given m …
1
vote
3answers
58 views
CMM Practices or Project Management Templates
Our company is a startup and we would like to implement all standard CMM or Project management templates, wherever possible, in our project. Where could I get these standard templ …
16
votes
10answers
807 views
How do you deal with micromanagers?
In the past I've worked with several types of project managers. There's the laissez-faire PM who stays ignorant of the process as long as milestones are hit. There's the hands on …
5
votes
15answers
672 views
Monday Morning Meetings - What format do you use?
We're trying to improve the format of our Monday morning meetings (M3). The meeting is among all members of our company (20 persons) including developers, designers, administrative …
10
votes
20answers
795 views
Does anyone still believe in the Capability Maturity Model for Software?
Ten years ago when I first encountered the CMM for software I was, I suppose like many, struck by how accurately it seemed to describe the chaotic "level one" state of software dev …
0
votes
1answer
167 views
How to add more items to Priority dropdown in TFS work item
I've created TFS project based on MSF for CMMI process template.
For any type of work item I can only select priority between 1 and 3 which is not enough precise for our process. …
3
votes
5answers
578 views
Change own process priority in C
On Windows I can do:
HANDLE hCurrentProcess = GetCurrentProcess();
SetPriorityClass(hCurrentProcess, ABOVE_NORMAL_PRIORITY_CLASS);
How can I do the same thing on *nix?
13
votes
5answers
854 views
Windows Equivalent of ‘nice’
Is there a Windows equivalent of the Unix command, nice?
I'm specifically looking for something I can use at the command line, and not the "Set Priority" menu from the task manage …
14
votes
6answers
1k views
How do you list all processes on the command line in Windows?
Is there a command equivalent to 'ps' on Unix that can list all processes on a Windows machine?
6
votes
9answers
517 views
What measurements to you use to improve your processes?
This question was originally asking 'What KPIs do you use to in a software development organisation'. Unfortunately it seems that KPI is a four-letter word, and the immediate assum …
1
vote
1answer
66 views
What is the better form to use Configuration Management in organization to control documents
I'm thinking sugest to my organization, to implement SVN for all users in my orgazination.
What is the best form to implement that?
What is the best tool to do this?
What is the b …
0
votes
1answer
110 views
Controlling Processes/Apps via Classic ASP script
I want to provide users of a VB ASP Classic website (a well-defined group) with a button which will stop and restart an application running in a visible window on a particular user …
2
votes
7answers
3k views
Tracking CPU and Memory usage per process
Hello,
I suspect that one of my applications eats more CPU cycles than I want it to. The problem is - it happens in bursts, and just looking at the task manager doesn't help me as …
7
votes
7answers
2k views
GIT vs. Perforce- Two VCS will enter… one will leave.
So I'm in the process of getting GIT sold at work. First thing I need is to convince everyone that GIT is better at what they're already used to doing. We currently use Perforce. A …
3
votes
4answers
804 views
How do I get rid of Java child processes when my Java app exits/crashes?
I launch a child process in Java as follows:
final String[] cmd = {"<childProcessName>"};
Process process = Runtime.getRuntime().exec(cmd);
It now runs in the background. …
