Questions tagged [task-management]
40 questions
100
votes
8 answers
Use cases of the Workflow Engine
I'd like to know about specific problems you - the SO reader - have solved using Workflow Engines and what libraries/frameworks you used if you didn't roll your own. I'd also like to know when a Workflow Engine wasn't the best choice and if/how you…

Lance
- 75,200
- 93
- 289
- 503
88
votes
8 answers
What is the 'realtime' process priority setting for?
From what I've read in the past, you're encouraged not to change the priority of your Windows applications programmatically, and if you do, you should never change them to 'Realtime'.
What does the 'Realtime' process priority setting do, compared to…

Chris S
- 64,770
- 52
- 221
- 239
61
votes
33 answers
How do you keep track of your programming TODOs?
I'm one of those people who can't get anything done without a to-do list. If it isn't on the list it doesn't exist.
Notepad Method:
When I'm programming I've been keeping notepad open with a list of to-do's for my current project. I'll constantly…
anon
12
votes
4 answers
Mylyn equivalent for Netbeans?
A co-worker has been going on about how cool Mylyn is for Eclipse. I want to give a task management tool a try but I use Netbeans. Is there a Mylyn like plugin for Netbeans? Preferable with integration to Redmine or Trac?

James McMahon
- 48,506
- 64
- 207
- 283
9
votes
2 answers
Agile process: Difference about backlog and todo
I'm using ZenHub for task management. In ZenHub, I see 5 columns as displayed below:
So, I decided to move all the issues to Backlog. After that, I have a question: what are differences between To Do and In Progress ? Because all tasks in Backlog…

Trần Kim Dự
- 5,872
- 12
- 55
- 107
8
votes
2 answers
How do i access the Phabricator Maniphest restful APIs?
I'm trying to programmatically create tasks/bugs on Maniphest: https://www.phacility.com/phabricator/maniphest/
but i can't quite seem to find a RESTful API that can do this.
am i totally missing out on something? or does there not currently exist…

David T.
- 22,301
- 23
- 71
- 123
2
votes
1 answer
Using mylyn outside eclipse - task management/time tracking tool
I left Eclipse over two year ago in favor of Jetbrains products (PhpStorm and RubyMine). The only feature I miss from Eclipse is Mylyn. Until now I use it only for convenience in organizing things, what I need now for a project is its time tracking…

Fabio
- 18,856
- 9
- 82
- 114
2
votes
1 answer
Batch that lists currently running APPLICATIONS/WINDOWS not BG processes
I'm making a batch program for launching OS's and utilities, one of these utilities needs to list the currently open applications/windows like task manager but its only apps no BGPROS.
here's a image to show what i need
heres the…

Don 2theMAX Miller
- 21
- 6
1
vote
2 answers
How to delay/postpone Gearman job?
I'm using gearman for synchronizing data on different servers. We have 1 main server and, for example, 10 local servers. Let me describe one of possible situations. Say, gearman started working, and 5 jobs are done, data on that 5 servers is synced.…

megido
- 4,135
- 6
- 29
- 33
1
vote
0 answers
Want to make code for inactive or idle user time in Python when he did not show any movement on screen and keyboard and mouse through
I am student and I am making an app regarding tracking time activity. So please help me to give an solution. I am finding out from last 4 days regarding the hints or code . I got one solution of my friend . but i am confuse that how to use this. If…

Rushi Pan
- 11
- 1
1
vote
1 answer
Project Management Software similar to Redmine or Trac
Is there any decent free project/task management software out there with tasks management? I am looking for something similar to Trac or Redmine, but I would also like subtasking my tasks as well. Any suggestions would be appreciated.

codewario
- 19,553
- 20
- 90
- 159
1
vote
1 answer
onActivityResult not called if Activity went into PictureInPicture mode
Activities
Activity A: content list
Activity B: player
Flow
Activity A ==> Activity B
Activity A launches Activity B using startActivityForResult
Activity B might go into Picture-in-Picture mode
Activity B calls setResult and then…

JonZarate
- 841
- 6
- 28
1
vote
0 answers
Instance is already running (windows task)
I have a task, task which (for now) is really just an R-script which writes "2" in an excel-file and saves that file (it is a test script).
Now, I want to run that on a remote desktop every day, say 12:00. I can set up the task, and if I right-click…

CutePoison
- 4,679
- 5
- 28
- 63
1
vote
1 answer
How do I change name of a process on task manager in C++?
I have a process with name as "processName" and executable as "processName.exe". I want to launch this process and change name of the process of how it appears in task manager. I can not just rename the executable because I want to have space in…

sskarnik
- 21
- 1
- 3
1
vote
0 answers
Mysql, organizing dates of the tasks based on priority and number of working hours every day
I want to build a small app for myself to organize my tasks.
I created a task table as follows:
CREATE TABLE
TASK(
TASK_ID INT NOT NULL AUTO_INCREMENT,
TASK_NAME VARCHAR(100),
TASK_DESCRIPTION VARCHAR(300),
TASK_ASSIGNEE_ID_PRIMARY…

Wojciech Orzechowski
- 11
- 3