task-management

How do you keep track of your programming TODOs? [closed]

天涯浪子 提交于 2019-12-03 01:53:51
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . 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:

How do you keep track of your programming TODOs? [closed]

有些话、适合烂在心里 提交于 2019-12-02 14:03:13
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 re-arrange these based off priority and I cross them off and move them to the completed section when I'm finished with that particular task. Code Comments: Some programmers pepper their projects source code with: // TODO: Fix this completely atrocious code before anyone sees it Plus, I know that there are some tools that show you a list of all TODOs

Use cases of the Workflow Engine

早过忘川 提交于 2019-11-28 02:37:16
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 chose something simpler, like a TaskList/WorkList/Task-Management type application using state machines. Questions: What problems have you used workflow engines to solve? What libraries/frameworks did you use? When did a simpler State Machine/Task Management like system suffice? Bonus: How did/do you make the distinction between Task Management and

How to hide C# application from taskmanager processtab? [duplicate]

谁说我不能喝 提交于 2019-11-28 00:36:39
This question already has an answer here: How do I hide a process in Task Manager in C#? 16 answers I need to hide my C# application from process tab of Taskmanager using this.ShowInTaskbar = false; I have hide it from application tab. Now I need to hide it from process tab. Is this possible?. Jeremy Thompson You could inject a DLL into the svchost process, that would camouflage it from Task Manager but not from ProcessExplorer. Here's how: How To Inject a Managed .NET Assembly (DLL) Into Another Process Here's some more background info on this technique: Three Ways to Inject Your Code into

What is the 'realtime' process priority setting for?

怎甘沉沦 提交于 2019-11-27 00:49:38
问题 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 'High', and 'Above Normal'? 回答1: A realtime priority thread can never be pre-empted by timer interrupts and runs at a higher priority than any other thread in the system. As such a CPU bound realtime priority thread can totally ruin a machine.

Use cases of the Workflow Engine

我们两清 提交于 2019-11-26 23:46:09
问题 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 chose something simpler, like a TaskList/WorkList/Task-Management type application using state machines. Questions: What problems have you used workflow engines to solve? What libraries/frameworks did you use? When did a simpler State Machine/Task

How to hide C# application from taskmanager processtab? [duplicate]

左心房为你撑大大i 提交于 2019-11-26 23:26:29
问题 This question already has answers here : How do I hide a process in Task Manager in C#? (16 answers) Closed 3 years ago . I need to hide my C# application from process tab of Taskmanager using this.ShowInTaskbar = false; I have hide it from application tab. Now I need to hide it from process tab. Is this possible?. 回答1: You could inject a DLL into the svchost process, that would camouflage it from Task Manager but not from ProcessExplorer. Here's how: How To Inject a Managed .NET Assembly