Tagged Questions
Design patterns are reusable solutions to commonly occurring problems in software engineering.
25
votes
7answers
907 views
What's up with this JavaScript pattern?
I saw this pattern:
Money = (function() {
function Money(rawString) {
this.cents = this.parseCents(rawString);
}
});
in this CoffeeScript screencast preview. (The homepage for the ...
23
votes
13answers
6k views
Immutable object pattern in C# - what do you think?
I have over the course of a few projects developed a pattern for creating immutable (readonly) objects and immutable object graphs. Immutable objects carry the benefit of being 100% thread safe and ...
20
votes
3answers
11k views
How do I configure the TortoiseSVN 'Global ignore pattern' properly?
I would like TortoiseSVN (1.5.3) to ignore certain folders, their contents and certain other files wherever they might appear in my directory hierarchy but I cannot get the global ignore string right.
...
16
votes
6answers
10k views
ASP.NET MVC ViewModel Pattern
EDIT: I made something much better to fill and read data from a view using ViewModels, called it ValueInjecter. http://valueinjecter.codeplex.com/
using the ViewModel to store the mapping logic was ...
14
votes
8answers
3k views
Different ways to implement 'dirty'-flag functionality
Almost every programmer did it once in his life: setting some flag if a variable's value changed. There's always lots of properties and you want to keep track if something changed
in any property
...
12
votes
2answers
197 views
The “Enum as immutable rich-object”: is this an anti-pattern?
I've often seen and used enums with attached attributes to do some basic things such as providing a display name or description:
public enum Movement {
[DisplayName("Turned Right")]
...
12
votes
3answers
750 views
Remove paper texture pattern from a photograph
I've scanned an old photo with paper texture pattern and I would like to remove the texture as much as possible without lowering the image quality. Is there a way, probably using Image Processing ...
11
votes
4answers
180 views
Java regex always fails
I have a Java regex pattern and a sentence I'd like to completely match, but for some sentencecs it erroneously fails. Why is this? (for simplicity, I won't use my complex regex, but just ".*")
...
10
votes
1answer
134 views
Haskell Thread Communication Pattern Scenario
You have two threads, a and b. Thread a is in a forever loop, listening on a blocking socket 1. Thread b is also in a forever loop, listening on blocking socket 2. Both socket 1 and socket 2 may ...
10
votes
4answers
304 views
Programmatically implementing callbacks with JS/jQuery
So, I'm writing a web app. Pretty much everything is done client-side, the server is but a RESTful interface. I'm using jQuery as my framework of choice and implementing my code in a Revealing Module ...
10
votes
2answers
161 views
JSON Object passed to External JavaScript - Cool Technique
I was looking at FireBug Lite and saw that they use a pretty cool technique to pass options into an external script file.
<script type="text/javascript" ...
10
votes
3answers
859 views
C# Difference between factory pattern and IoC [closed]
Possible Duplicate:
Dependency Injection vs Factory Pattern
Can someone please explain (with SIMPLE examples) of the difference between the factory pattern and Inversion of Control pattern. ...
9
votes
5answers
837 views
Undo for a paint program
I am looking into how to write a paint program that supports undo and seeing that, most likely, a command pattern is what I want. Something still escapes me, though, and I'm hoping someone can ...
9
votes
4answers
1k views
Loading Subrecords in the Repository Pattern
Using LINQ TO SQL as the underpinning of a Repository-based solution. My implementation is as follows:
IRepository
FindAll
FindByID
Insert
Update
Delete
Then I have extension methods that are ...
9
votes
9answers
760 views
What is an Anti-Pattern?
I am Studying about Patterns and Anti-patterns . I have a clear idea about Patterns. but I am not getting Anti-Patterns. Web Definitions and Wikipedia is confusing me a lot. can anybody explain me in ...
8
votes
5answers
174 views
Error reporting in a C library
I am looking for a robust way to report errors in a C library. Consider the simple example of a queue:
struct queue *q = malloc(sizeof(*q));
if (NULL == q) {
/* malloc failed. now what ? */
...
8
votes
5answers
437 views
Most efficient way in Python to iterate over a large file (10GB+)
I'm working on a Python script to go through two files - one containing a list of UUIDs, the other containing a large amount of log entries - each line containing one of the UUIDs from the other file. ...
8
votes
5answers
618 views
Delphi Singleton Pattern
I know this is discussed many times everywhere i the community but I just can't find a nice and simple implementation of a Singleton Pattern in Delphi.
I have an example in C#:
public sealed class ...
8
votes
5answers
353 views
Pattern Matching and Recursion
I am new to both Haskell and programming. My question about binding in pattern-matched, recursive functions. For instance, suppose I have a function which checks whether a given list (x:xs) is a ...
8
votes
3answers
1k views
Domain Driven Design: How to access child of aggregate root
If I have an Order class an as aggregate root and 1000 line items.
How do I load just one of the 1000 line items? As far as I understand, a line item can only be accessed through the Order class and ...
8
votes
2answers
3k views
Ocaml: Match expression inside another one?
I'm currently working on a small project with Ocaml; a simple mathematical expression simplifier. I'm supposed to find certain patterns inside an expression, and simplify them so the number of ...
8
votes
5answers
1k views
RAII in Java… is resource disposal always so ugly?
I just played with Java file system API, and came down with the following function, used to copy binary files. The original source came from the Web, but I added try/catch/finally clauses to be sure ...
7
votes
1answer
191 views
Trying to build a regular expression to check pattern - 2
I was wondering if more checks could be added: [Previously answered question](
Trying to build a regular expression to check pattern).
The above problem is brilliantly solved using this regex by ...
7
votes
1answer
932 views
ViewPager and fragments — what's the right way to store fragment's state?
Fragments seem to be very nice for separetion of UI logic into some modules. But along with ViewPager it's lifecycle is still misty for me. So Guru thoughts are badly needed!
Edit
See dumb solution ...
7
votes
1answer
225 views
what is MVVM, and should we use it?
I've been looking at the MVVM pattern, specifically knockoutjs, and mostly it just makes me cringe. I won't go on a long rant about the benefits of keeping structure, presentation and display ...
7
votes
6answers
135 views
Factory Pattern Method Problem
Basically I have an interface Person, and I have 2 classes Female and Male that implements that interface.
But for the Female class, I have a method getPregnancyMonth that my Male class does not ...
7
votes
5answers
509 views
Exception handling pattern
It is a common pattern I see where the error codes associated with an exception are stored as Static final ints. when the exception is created to be thrown, it is constructed with one of these codes ...
7
votes
5answers
2k views
what's design pattern principle in the Android development?
I was a JaveEE developer. Recently I joined an Android development team. The structure of Android confused me. The MVC design pattern seems not suit for Android development. So what's is the design ...
7
votes
1answer
283 views
UAC and elevation prompt pattern
I've read several questions regarding UAC and privilege elevation but I've not found a satisfactory/comprehensive answer.
I have this scenario: on Windows 6 or above, when the user opens a ...
7
votes
7answers
473 views
Double hashing passwords - client & server
Hey, first, let me say, I'm not asking about things like md5(md5(..., there are already topics about it.
My question is this:
We allow our clients to store their passwords locally. Naturally, we ...
7
votes
1answer
566 views
Should MVC Controller be in separate DLL?
I've created a .NET winforms MVC. The Controller and View are in the same EXE. Model is in a set of DLLs that get used by several groups. The MVC is very explicit. Model knows nothing of ...
7
votes
8answers
3k views
How to create .NET interface with static members?
In .NET 3.5, I'd like to create a singleton interface:
interface ISingleton <T>
{
public static T Instance {get;}
}
Of course that doesn't work but is what I'd like. Any suggestions?
...
6
votes
3answers
89 views
What's the difference between these two JavaScript patterns
I am trying to organize my JavaScript better. My goal is to have modular architecture that I can break into separate files (sitename.js, sitename.utils.js etc).
I'd like to know what are advantages ...
6
votes
2answers
103 views
What are the advantages of splitting a string to initiliase a javascript array?
This pattern is quite common; I've seen it in a few places including the jQuery source code:
var arr = "word1 word2 word3".split(" ");
as an alternative to the 'normal' methods of array ...
6
votes
8answers
318 views
Is there a name for this “pattern”?
I'm wondering if there is a name for this "pattern" where a method signature is called TrySomething, e.g. int.TryParse, decimal.TryParse, etc.
A coworker of mine uses this naming convention ...
6
votes
5answers
391 views
AI program to generate paragraph pattern
Is there any software or service or AI program who can rebuild an English paragraph using different set of vocabulary, grammar rules etc.
I mean to say, if the source paragraph is
“Gwalior is a ...
6
votes
3answers
489 views
Best way to recognize characters in screenshot?
What would you recommend for recognizing all characters from a screenshot ? The screenshot is perfectly clear (only black text on a white background), also I can choose any starndard font for the text ...
6
votes
2answers
126 views
Data Mapper API - unsure about organisation
Let's say we have "User" and a "Hotel" model classes. I'd use a User_Mapper and Hotel_Mapper to load/save/delete etc. I want to then have the user be able to mark their "favourite" hotels. In the ...
6
votes
4answers
563 views
Java Split not working as expected
I am trying to use a simple split to break up the following string: 00-00000
My expression is: ^([0-9][0-9])(-)([0-9])([0-9])([0-9])([0-9])([0-9])
And my usage is:
String s = "00-00000";
String ...
6
votes
4answers
1k views
Java CLI UI-design: frameworks or libraries?
I'm currently working on a small utility program that only requires a command line interface, and I started wondering if Java provided any standard way of creating the CLI, in a similar way that Swing ...
6
votes
2answers
178 views
Can a custom guard mechanism be defined in Haskell?
If you look at the example for catches:
f = expr `catches` [Handler (\ (ex :: ArithException) -> handleArith ex),
Handler (\ (ex :: IOException) -> handleIO ex)]
...
6
votes
4answers
4k views
jQuery plugin design pattern (common practice?) for dealing with private functions
I've been developing jQuery plugins for quite some time now, and I like to think I know how to design one well by now. One issue keeps nagging me though, and that is how to deal with private functions ...
6
votes
4answers
13k views
Javascript: best Singleton pattern [closed]
Possible Duplicate:
Simplest/Cleanest way to implement singleton in JavaScript?
I'm using this pattern for singletons, in the example the singleton is PlanetEarth:
var NAMESPACE = function ...
5
votes
3answers
209 views
Pattern matching functions in Clojure?
I have used erlang in the past and it has some really useful things like pattern matching functions or "function guards". Example from erlang docs is:
fact(N) when N>0 ->
N * fact(N-1);
...
5
votes
7answers
249 views
is there prettier syntax for a c++ iterator?
Is there a prettier / less-verbose way to use iterators in C++? From the tutorials I've seen, I either set up typedefs everywhere (which gets tedious to do for a lot of one-off for-loops):
typedef ...
5
votes
2answers
172 views
VIM: delete anything other than pattern
let say this is my text:
this is my text this
is my text this is my text
my text is this
I would like to highlight all text except pattern and delete the highlighted text.
p.e. text: this must be ...
5
votes
3answers
821 views
Module Pattern in Coffeescript with hidden Variables
Digging into Coffeescript I am trying to port my Javascript files to Coffeescript.
Concerning this, I have a question related to the module pattern of Doulgas Crockford (closure binding in order to ...
5
votes
2answers
302 views
What is a nested pattern in Haskell?
What is a 'nested' pattern in Haskell. I hear the term everywhere but am not sure what the it actually means. How would you define it? Any examples?
Thanks in advance.
EDITED TO ADD: (as quoted in ...
5
votes
3answers
124 views
What is the benefit of this .Net pattern
I was looking for a pattern to be able to provide both a thread-safe and unsafe version of the same class. The technical aspects of this are pretty obvious. I guess was hoping to find naming/access ...
5
votes
5answers
470 views
C# try catch pattern help
We always need to try catch in our code and it becomes ugly like
public void foo()
{
try
{
DoSomething();
}
catch(Exception e)
{
//do whatever with e
}
}
public int ...