Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

55
votes
22answers
3k views

12 Years of Programming - Which direction to take now? [closed]

I think I have reached a point, in my career, where I want to get as excited as I did when got my head around programming. . I need excitement and a new challenge (that can still pay the bills). Do ...
26
votes
36answers
2k views

A career in programming - and now for something completely different?

Here's a bit of a career-oriented question I've been pondering for a while. Have you thought about making a radical career or lifestyle change away from programming, some time in the future? If so, ...
5
votes
5answers
191 views

How do you find the best way to focus on a coding project/task?

In short, when you have planned or have thought about an idea to create - what do you use to help keep you on task, or to make sure you stay programming without (negative) distraction? I've found ...
5
votes
19answers
3k views

What is the most challenging technical problem you've solved in your life?

One of the greatest joys (and hardest things to convey to non-programmers) is the feeling of exhilaration we often get when we finally get that "aha!" moment working on a tough problem - then we go ...
1
vote
1answer
363 views

AutoMapper classes with a Transient lifestyle in IoC

I'm using AutoMapper to map domain entities to view models in an Asp.Net MVC app. I register these mapping classes in Castle Windsor so they are available to the controller thru ctor dependency ...
1
vote
0answers
517 views

How can I improve this perWcfOperation Windsor lifestyle?

I have implemented a custom lifestyle for Windsor that will allow me to scope components to the current WCF operation. The biggest problem is that the call context initializer is executed after the ...
0
votes
1answer
165 views

Windsor Typed Factory facility, passing arguments when using singleton lifestyle

I am using Castle Windsor. I have two component types where the implementation can be selected at runtime on a GUI. To handle this, I am resolving them by name. To handle resolving them by name, I ...
0
votes
2answers
116 views

Castle Custome Lifestyle per Resolve

I'm a newbie with Castle Windsor. Let's say I have the following classes: public class LowLevelComponent { } public class HighLevelComponent { readonly LowLevelComponent LowLevelComponent; ...