Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
16answers
3k views

How can I apply David Allen's “Getting Things Done” as a programmer?

Off and on I have read David Allen's "Getting Things Done" productivity books but never really implemented it. What tools do you use to track tasks and projects? How do you organize tasks when 95% ...
16
votes
4answers
330 views

Are you using Parallel Extensions?

I hope this is not a misuse of stackoverflow; recently I've seen some great questions here on Parallel Extensions, and it got my interest piqued. My question: Are you using Parallel Extensions, and ...
15
votes
4answers
5k views

C# - ThreadPool vs Tasks

As some may have seen in .NET 4.0, they've added a new namespace System.Threading.Tasks which basically is what is means, a task. I've only been using it for a few days, from using ThreadPool. Which ...
15
votes
6answers
2k views

Eclipse: Limit task tags to current project

Eclipse currently shows the task tags (// TODO) from all open projects. I would be grateful if anyone could point out the preference, where I could restrict the scope of tasks displayed (e.g. only ...
10
votes
1answer
1k views

When to dispose of System.Threading.Task with child tasks?

I have a task that launches several child tasks. (e.g., Task A creates B,C,D,E,F). I also create a System.Threading.Timer to poll a database every 10 seconds to check if the scheduled item was ...
9
votes
5answers
2k views

System.Threading.Tasks - Limit the number of concurrent Tasks

I have just started to look at the new "System.Threading.Tasks" goodness in .Net 4.0, and would like to know if there is any build in support for limiting the number of concurrent tasks that run at ...
9
votes
5answers
1k views

Recurring tasks in a Ruby On Rails application: Cron or other?

I am currently writing an application that pulls new information from RSS sources and has to update those RSS sources in a certain frequency. Currently I am pulling only when the user requests a feed ...
9
votes
22answers
2k views

What tools are available for a team leader & members to manage tasks (Agile programming)

I are working in a small development team of 4 people. We are trying develop "Agile style" - story points, small tasks, etc... Unfortunately, we are currently managing our tasks in a (shared) excel ...
8
votes
3answers
158 views

How to have multiple threads processing the same IEnumerable result?

I have a method which returns an IEnumerable<string> which of course is being handled with yield return <string>;. I want to have multiple threads processing the result of this, of course ...
8
votes
6answers
438 views

Should you include non-development tasks in your Scrum backlog?

We're having trouble incorporating certain types of tasks into our product and sprint backlogs: Meetings with clients Training and knowledge-sharing Administrative tasks Some of these aren't ...
7
votes
1answer
102 views

Private variables in .net 4.0 tasks

doing a little experimenting to find out how things work. I have the following code... for (int i = 0; i < 20; i++) { Task.Factory.StartNew(() => MethodTest(i)); } I'm wondering why ...
7
votes
2answers
703 views

How does the Reactive Framework (Rx) relate to Tasks in .NET 4?

Asynchronous and concurrent programmings seams to be on everyones minds these days and .NET 4 adds a number of improvements such as built-in thread safe collections and of course tasks. On top of this ...
6
votes
3answers
872 views

Different summation results with Parallel.ForEach

I have a foreach loop that I am parallelizing and I noticed something odd. The code looks like double sum = 0.0; Parallel.ForEach(myCollection, arg => { sum += ComplicatedFunction(arg); }); ...
6
votes
4answers
708 views

Eclipse tasks from specific files

In Eclipse (Galileo) is it possible to filter the list of TODO and FIXME tasks by a specific file, or several files? Instead of having the whole list for the entire project.
6
votes
9answers
4k views

Scrum Burn Down Charts: Tasks or Stories?

There are several ways to do burn down charts in Scrum. Some people suggest using the story points of unfinished stories left as your burn down charts in Scrum. Pro: Only finished stories lower the ...
6
votes
13answers
1k views

todo.txt and task management

Apologies if this has been covered frequently, but I was wondering about how other people approach personal task management. I've read (parts of) GTD, proceeded to get excited, installed a tonne of ...
6
votes
5answers
2k views

Tasklist replacement for Visual Studio

I would like to use the task-list in Visual Studio but it really lacks almost any useful feature a task-list should provide. So I use Todo-List externally, to keep track of the things I need to get ...
5
votes
2answers
101 views

C# start a scheduled task

I'm trying to write a simple form in c# that will run a scheduled task one some computers. Whet I have so far is: private void button_Click(object sender, EventArgs e) { try { ...
5
votes
3answers
272 views

Performance cost of using the IAsyncResult overload of Task.FromAsync

I'm trying to wrap some existing APM calls (BeginX, EndX) in Tasks to get all the nice benefits of them. Unfortunately, our methods are unconventional and use out parameters and so can't use the ...
5
votes
3answers
325 views

Agile: User Stories for Machine Learning Project?

I've just finished up with a prototype implementation of a supervised learning algorithm, automatically assigning categorical tags to all the items in our company database (roughly 5 million items). ...
5
votes
2answers
543 views

Need comprehensive C# System.Threading.Tasks example

I've been trying to figure out how to use System.Threading.Tasks to asynchronously invoke a synchronous WCF method while supporting cancellation, error handling, result-return and multiple ...
5
votes
9answers
251 views

Should a programmer try to list their “Next Actions”?

David Allen's "Getting Things Done" recommends keeping a "Next Action" list to organize your work, where a "Next Action" is the next physical action you will do to make progress towards an objective. ...
4
votes
2answers
87 views

.NET Task Parallel Library - When does inlining a task occur?

After reading up on inlining in the TPL from sources like here, I got the impression that a call to Task.Wait() will start a task that hasn't yet begun (at least using the default scheduler). However, ...
4
votes
4answers
211 views

Multiple Python Processes slow

I have a python script which goes off and makes a number of HTTP and urllib requests to various domains. We have a huge amount of domains to processes and need to do this as quickly as possible. As ...
4
votes
3answers
133 views

what is the correct way to cancel multiple tasks in c#

I have a button thats spawns 4 tasks. The same button changes to a cancel button and clicking this should cancel all 4 tasks. Should I pass the same cancel token to all 4 tasks and have them poll on ...
4
votes
2answers
204 views

Control.Invoke vs Tasks with a TaskScheduler

I've looked all over and I can't find an answer. Is it better, worse, or indifferent to use: { ... RefreshPaintDelegate PaintDelegate = new RefreshPaintDelegate(RefreshPaint); ...
4
votes
2answers
454 views

Starting Tasks In foreach Loop Uses Value of Last Item

I am making a first attempt at playing with the new Tasks, but something is happening that I don't understand. First, the code, which is pretty straight-forward. I pass in a list of paths to some ...
4
votes
6answers
339 views

How granular should tasks within a story be?

We've been recently implementing Scrum and one of the things we often wonder is the granularity of tasks within stories. A few people inside our company state that ideally those tasks should be very ...
4
votes
1answer
205 views

any special reference needed for c# 4.0 Parallel.For?

I am following this article: http://blogs.msdn.com/b/csharpfaq/archive/2010/06/01/parallel-programming-in-net-framework-4-getting-started.aspx and in my console app Parallel namespace is visible, but ...
4
votes
1answer
153 views

Foreach loop and tasks

I know from the codeing guidlines that I have read you should not do for (int i = 0; i < 5; i++) { Task.Factory.StartNew(() => Console.WriteLine(i)); } Console.ReadLine(); as it will ...
4
votes
6answers
935 views

How can a personal-wiki be used for personal information management?

I am considering using MediaWiki for managing my personal information (code, and other "real life" data). And I would love any tips on how best to do so.
4
votes
3answers
880 views

Combining many rake tasks into one rake task

Instead of running each rake task individually like this: rake db:drop rake db:create rake db:migrate rake db:load I want to run one rake task that does all for. This is what I have for my ...
4
votes
6answers
1k views

Java - Scheduling a daily task

I'm looking for an effective way to execute a method everyday at 3PM regardless of when the application was initially run or how long it has been running. This must be done entirely from the ...
3
votes
2answers
185 views

Task.Wait in ContinueWhenAll Action

I was working on encorperating threads into my azure code for putting things on a queue. to do this i used http://www.microsoft.com/download/en/details.aspx?id=19222 as a reference. my code to ...
3
votes
1answer
83 views

What would be a good way to Cancel long running IO/Network operation using Tasks?

I've been studying Tasks in .net 4.0 and their cancellation. I like the fact that TPL tries to deal with cancellation correctly in cooperative manner. However, what should one do in situation where a ...
3
votes
2answers
224 views

Running Capistrano tasks only for certain roles

My project has a multi-step pipeline that includes some steps like Crawling, NLP, etc, but I'll just refer to them as Step1, Step2, etc. Additionally I want to be able to deploy to different ...
3
votes
3answers
151 views

How can I use Tasks in this context?

private void cmbPlatform_SelectedIndexChanged(object sender, EventArgs e) { string platform = cmbPlatform.Text; UpcomingGameFinder gameFinder = new UpcomingGameFinder(); ...
3
votes
1answer
754 views

WPF + Tasks + WCF = No SynchronizationContext?

I have a WPF application that is using System.Threading.Tasks to call a WCF service in the background. I'm using Task.ContinueWith to return the results of the service call to the WPF UI thread. My ...
3
votes
2answers
309 views

Cron Jobs, Task Queue or Deferred Tasks?

In Google App Engine, for a task like scanning some RSS feeds and adding new entries from the feed to the datastore every 10-15 seconds, should I use Cron Jobs, Task Queue or Deferred Tasks? I'm ...
3
votes
9answers
327 views

Is there a nice task/todo app/system for developers out there?

I am looking for a really basic developer task/todo app or system. Are there any good ones out there? What are you using? All I need is a good overview and being able to add time and priority to my ...
3
votes
1answer
180 views

Why Google App Engine Tasks can spuriously be executed more than once?

Why Google App Engine Tasks can be executed more than once? According do Brett Slatkin talk from Google I/O 2009, it is possible for a task to spuriously run twice even without server failures! This ...
3
votes
1answer
210 views

C# 4.0 Tasks - Subclassing or Displaying Execution Tree?

do you have any advice on how i might visualise a Task Tree? I will be running a large set of long running tasks which each have some child tasks, i want to visualise the running of the execution to ...
3
votes
2answers
500 views

How to pass a serialized object to appengine java task?

I'm using java appengine and the task queue API to run async tasks. I would like to add a task to the task queue but pass a a java object as a parameter. I notic the task options api can add a ...
3
votes
2answers
3k views

Need an example showing how to do async HTTP requests

Im using a web service, so I want to use an async thread for the HTTP authentication request and another thread later to make additional service requests while my main thread runs. Would like to see ...
3
votes
1answer
78 views

Windows 7 taskbar tasks without a window in .Net

I'm trying to create an application for windows 7 that has taskbar tasks that are available even if there is no window like Media Player has. I'm using the Windows API Code Pack and I've been able to ...
3
votes
4answers
121 views

Free team manager application?

recently I start to take a bigger responsability because I was developing a project and now is in production, so im coordinating the manteinance and other developments (with 6 more developers), what I ...
3
votes
8answers
2k views

How reliable is windows task scheduler for scheduling code to run repeatedly?

I have a bit of code that needs to sit on a windows server 2003 machine and run every minute. What is the recommended way of handling this? Is it ok to design it as a console service and just have ...
3
votes
1answer
403 views

Thread pool with dependency support?

Does anyone know of a thread-pool like implementation for .NET that supports the following features: dependencies between tasks task priorities sub-tasks Basically I'd like to throw a bunch of ...
3
votes
6answers
3k views

Scrum-board / Task Board and Color Coding

What would you recommend as far as a good color-coding for use on a Storyboard? Is this a good pattern from your experience? http://maxheapsize.com/static/ScrumBoardCheatSheet.pdf What is the most ...
3
votes
4answers
1k views

ncover with nunit2 task in NAnt

Is there any chance to get this work? I want my tests to be run by nunit2 task in NAnt. In addition I want to run NCover without running tests again.

1 2 3 4 5