Tagged Questions
The strategies tag has no wiki summary.
52
votes
2answers
9k views
When would you use the different git merge strategies?
From the man page on git-merge, there are a number of merge strategies you can use.
resolve -
This can only resolve two heads (i.e. the current branch and another branch you pulled from) using ...
25
votes
15answers
720 views
Are there any Debugging Patterns?
I know there are many popular and useful Design Patters.
Are there something like them for debugging scenarios? Maybe not patterns but methodologies which are categorized and that can be used ...
10
votes
1answer
224 views
Strategies in Scala
Is there an equivalent to Haskell Control.Parallel.Strategies or a way to acheive the same thing ?
That allow an existing code to be evaluated in a different way.
By separeting algorithm from ...
7
votes
4answers
64 views
How to implement usage of multiple strategies at runtime
I need to process a list of records returned from a service.
However the processing algorithm for a record changes completely based on a certain field on the record.
To implement this , I have defined ...
7
votes
12answers
991 views
Strategy for Fixing Layout Bugs in IE6?
Generally, what's the best way to tackle a layout bug in IE6? What are the most common bugs or problems that one should look for when trying to figure out why your page suddenly looks like a monkey ...
6
votes
3answers
296 views
Best generic strategy to group items using multiple criteria
I have a simple, real life problem I want to solve using an OO approach. My harddrive is a mess. I have 1.500.000 files, duplicates, complete duplicate folders, and so on...
The first step, of ...
5
votes
2answers
155 views
How to write Haskell array strategies
I want to write a strategy to evaluate items in an array in parallel. The old strategies had parArr to do this (see here). But this is not found in the new Control.Parallel.Strategies module.
E.g.
...
5
votes
1answer
235 views
How to choose between parList and parBuffer?
I'm starting in haskell parallelism, I've successfully learned how to use some Strategies like : r0, rseq, rdeepseq, parList, parMap. Now I'm looking further for more efficiency. So here is my ...
5
votes
4answers
542 views
How to exploit any parallelism in my haskell parallel code?
I've just stated working in haskell semi-explicit parallelism with GHC 6.12. I've write the following haskell code to compute in parallel the map of the fibonnaci function upon 4 elements on a list, ...
4
votes
3answers
445 views
Strategies for Developing Multiple Products from One Codebase
I'm working on a project that will (soon) be branched into multiple different versions (Trial, Professional, Enterprise, etc).
I've been using Subversion since it was first released (and CVS before ...
3
votes
4answers
78 views
C# programming strategy- how to pass objects down into a chain of classes
I'm working on bettering my strategy of working with classes and objects.
What is the best way of passing an object down a through a chain of specific classes to keep the code organized.
example: of ...
3
votes
6answers
133 views
Background job running without affecting the rest of the gui
I'm asking for assistance concerning a general approach.
I have written some java code to check my mailbox for unread mails on buttonclick.
Now I want this code to permanently run in the background ...
3
votes
3answers
104 views
What are some strategies/approaches for refactoring a UI?
This isn't a "Refactor or rewrite" question. Also, this applies strictly to UI refactoring.
Refactoring in general I am familiar with, but what are some really good strategies and approaches for ...
3
votes
2answers
465 views
Clojure for trading strategies
Is anybody using closure for developing automated trading strategies? What is your experiences? I am anticipating learning clojure and wanted to know if i could use it in this context, if there are ...
3
votes
4answers
178 views
Program comprehension strategies
If you were assigned to a very large project, with sparse documentation/comments and little access to previous developers, and tasked with fixing some tricky little bugs, how would you go about:
...
3
votes
3answers
455 views
.NET enterprise application platform (same as JBoss to Java)
As a .NET developer I'm asking whether JBoss alternatives exist to be "more suitable for .NET development" as an enterprise application platform.
Please do not make any suggestions, such as "make ...
0
votes
2answers
288 views
Project folder structure: are makefiles source code too?
I have a large project that is rather heterogenous - different languages and compilers are involved, altogether producing a build with the help of GNU make.
The project folder structure includes:
...
0
votes
2answers
2k views
Hibernate XML Mapping: Lazy False or Fetch Select?
I have a simple question. I found this Hibernate config on our project:
<many-to-one name="employee"
class="com.myapp.Employee"
cascade="merge"
lazy="false"
fetch="select">
...
0
votes
4answers
575 views
Multiple websites running on same codebase?
We are developing an application that would be offered as a hosted solution. I am struck with understanding how can i use multiple sites with same code without duplicating base code.
eg:
website 1: ...
0
votes
1answer
129 views
website downtime control strategies
Could someone pointing out what is the best way to control the website downtime; especially when having many sites running?