Tagged Questions
The process-management tag has no wiki summary.
30
votes
13answers
15k 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. Anybody else go ...
23
votes
9answers
22k 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?
20
votes
5answers
4k 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 manager.
My attempts at ...
18
votes
10answers
1k 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 PM who gets into ...
16
votes
9answers
33k views
Tracking CPU and Memory usage per process
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 it shows immediate usage ...
16
votes
20answers
1k 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 development in many ...
10
votes
2answers
2k views
How do I find userid by login (Python under *NIX)
I need to set my process to run under 'nobody', I've found os.setuid(), but how do I find uid if I have login?
I've found out that uids are in /etc/passwd, but maybe there is a more pythonic way than ...
9
votes
5answers
2k views
What happens to my app when my Mac goes to sleep?
When Mac OS X goes to sleep, due to closing a laptop or selecting "Sleep" from the Apple menu, how does it suspend an executing process?
I suppose non-windowed processes are simply suspended at an ...
8
votes
15answers
2k 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 and the company's ...
8
votes
3answers
228 views
Is it possible to determine which process starts my .Net application?
I am developing console application in .Net and I want to change a behavior a little based on information that application was started from cmd.exe or from explorer.exe. Is it possible?
7
votes
9answers
804 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 assumption is that KPIs ...
7
votes
4answers
3k 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. All good and fine.
...
7
votes
4answers
3k views
Scrum Process Management - tips, pitfalls, ideas
I've been doing scrum with a team for a while, but things seem messy for whatever reasons. I've been thinking on how they can be changed and have a couple of questions that would like to raise here.
...
6
votes
4answers
342 views
How does one deal with backdoor code changes?
Scenario
I admit (somewhat shamefully) that I have not only witnessed this particular practise, but I have also committed it myself. My name is Jeff and I have gamed a quality process to get my way. ...
5
votes
4answers
395 views
How to implement CMMI level 2 with Scrum?
We are currently interested in implementing CMMI level 2 for our development processes. I've read some documents about CMMI and also Scrum. Personally I'm interested in Scrum as our native ...
5
votes
4answers
1k views
Suggestions for requirements development tools that support CMMI objectives
We are currently evolving our development processes in an effort to become CMMI compliant (we will start with level 2, and move up from there). We are trying to locate a tool that is inexpensive (or ...
5
votes
3answers
3k 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?
4
votes
1answer
83 views
Cross platform process enumerator for Python?
I need a cross-platform module which allows me to enumerate processes on the machine. It needs to work on Windows and Unix, and get things like PID and Process Names.
Is there such module?
3
votes
1answer
97 views
theory of process management
This is more of a theoretical question, and I'm stuggling to find anything that mentions it outside my lecture notes.
In a the 3 state process model for process management, you have 3 states, ...
3
votes
4answers
1k views
Tracing which process that has opened a particular file
From kernel mode in Windows I'm able to intercept and monitor virtually all actions performed on a particular disk. When a file is opened for any purpose I get an event.
Now I want to trace which ...
3
votes
3answers
5k views
How to pause / resume any external process under Windows?
i am looking for different ways to pause and resume programmatically a particular process via his process ID under Windows XP.
http://www.codeproject.com/KB/threads/pausep.aspx does it with ...
3
votes
9answers
2k views
Is it possible to kill a Java Virtual Machine from another Virtual Machine?
I have a Java application that launches another java application. The launcher has a watchdog timer and receives periodic notifications from the second VM. However, if no notifications are received ...
2
votes
1answer
63 views
Resource cleanup in Linux
How can I cleanup all the resources allocated by a process (process A) when it terminates? Process A may allocate resources in another process space when it uses services provided by the other ...
2
votes
2answers
724 views
Process monitoring - Python/Ubuntu/Linux
I have a few processes I need to run in deamon mode, I just discovered upstart so I am starting to use it.
Are there any python libraries or applications that I could use to monitor and control ...
2
votes
5answers
199 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 me a large body of ...
2
votes
4answers
298 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 templates?
2
votes
8answers
6k views
difference between project management and process management
What is the difference between project management and process management?
2
votes
3answers
357 views
Low Friction Minimal Requirements Gathering
How can our team gather requirements from our "Product Owner" in as low friction yet useable of a way as possible?
Now here's the guidelines- No posts that it can't be done or that the business needs ...
1
vote
2answers
47 views
Executing new task based on sigchld() from previous task
I'm currently in the process of building a small shell within C++.
A user may enter a job at the prompt such as exe1 && exe2 &. Similar to the BASH shell, I will only execute exe2 if exe1 ...
1
vote
2answers
71 views
Can you track when an android application has been terminated?
Looked at android documentation and it appears that we don't have the ability to know when an app shuts down. Whether it was explicitly by the user or automatically by the operating system.
Below is ...
1
vote
1answer
72 views
running really long scripts - how to keep them running and start them again if they fail?
I need to run a bunch of long running processes on a CENTOS server.
If I leave the processes (python/php scripts) to run sometimes the processes will stop running because of trivial errors eg. string ...
1
vote
3answers
190 views
Is hyperthreading working?
I'm running some fairly processor-intensive stuff on my PC, and notice my CPU usage looks pretty odd. My PC is a quad-core i7-870, which supposedly has eight virtual cores.
I'm using the Task Parallel ...
1
vote
1answer
25 views
Is there a parallel make system that is smart enough to intelligently respond to low-memory/swapping conditions?
I'm a big fan of speeding up my builds using "make -j8" (replacing 8 with whatever my current computer's number of cores is, of course), and compiling N files in parallel is usually very effective at ...
1
vote
2answers
2k views
Python: How to start a process with Administrator Permissions?
I am starting the following script from a Windows 7 command line with administrator permissions:
import win32com.client
import time
import SendKeys
import os
from ctypes import *
shell = ...
1
vote
1answer
646 views
Process management: To be killed or Not to be killed
An observation: While I was developing my app on android, I noticed following two lines in LogCat. These occurred because of too much memory requirements of my own app. I have read that Android can ...
1
vote
1answer
1k 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.
How can I widen ...
1
vote
1answer
149 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 best process to ...
1
vote
5answers
250 views
Dealing with illogical managers
At a place I used to work they typical response to any problem was to blame the hardware or the users for not using the system perfectly. I had adopted the philosophy that it's my fault until I can ...
1
vote
4answers
373 views
How can I enforce a maximum amount of forked children?
EDIT: I've tagged this C in a hope to get more response. It's more the theory I'm interested in than a specific language implementation. So if you're a C coder please treat the following PHP as ...
1
vote
4answers
565 views
Monitoring processes to see if they've crashed in vb6
I've got a program that tends to crash quite often while I'm asleep and I need to keep it running. So I thought I might writeup a vb6 application that monitors the process list, if something ...
1
vote
2answers
576 views
Tools to assist managing the application promotion process in an enterprise environment
I am curious on how others manage code promotion from DEV to TEST to PROD within an enterprise.
What tools or processes do you use to manage the "red tape", entry/exit criteria side of things?
My ...
1
vote
5answers
471 views
Never do anything until you ready to use it, in software too? [Toyota principle]
I was listening to a podcast. Where they talked about principles Toyota was using.
" - Never do anything until you are ready to use it."
I think this tell us to look in other places, to learn what ...
0
votes
2answers
90 views
PYTHON | stop user killing process
A very cool function was mentioned here:
Prevent user process from being killed with "End Process" from Process Explorer
Does anyone know how to translate this C++ code to Python (or ...
0
votes
2answers
55 views
Management running process [closed]
I have a console application that runs on my computer. When the application throws an exception, I want to restart the application. How can I accomplish this?
0
votes
1answer
56 views
Manage Java processes using control groups
Does anybody has already used Linux Control Groups (cgroup) to manage Java processes? I'm trying to profile CPU time utilization (thanks to the cpuacct.usage file) and I'm unable to get other value ...
0
votes
2answers
100 views
Task monitor and manager in C++
I'm looking to build a task monitor/manager using the Win32 API. It will be started (preferably as a windows service) with a command line argument specifying how many instances of a new process it ...
0
votes
1answer
32 views
Business Process “Observer” application
My client is requesting to be notified any time one of their business processes fails for any reason. I had the idea of writing a seperate application that will run as an "observer" and check for ...
0
votes
5answers
150 views
how do you get how long a process has been running?
Is there a way to get this information from the /proc directory? I want to be able to get how long each process has been running on seconds.
EDIT: I needed to do this from C++. Sorry for the ...
0
votes
1answer
1k views
Running a BAT file in background with invisible.vbs, but how to stop it?
I'm using a solution like the one mentioned here run bat file in background but the bat file in question runs a Bitcoin GPU miner in the background. Sometimes I want to stop the miner, but since I am ...
0
votes
1answer
35 views
XML-based language for behavior?
Can you recommend an XML-based language for specifying behavior, e.g. for process management, workflows, etc.? So far I've found YAWL. Can you suggest some alternatives also? Which XML-based language ...