1
vote
3answers
42 views
MVC Pattern in cakephp
Could someone explain me about MVC pattern? How does it help cakephp framework?
1
vote
1answer
37 views
Specification Pattern a good example for the Open Closed Principle?
Hi!
I just have a short question:
Is the Specifiaction Pattern (for example combined with the Repository Pattern) a good example for the Open Closed Principle?
Or do you can giv …
1
vote
7answers
1k views
C# Multi Thread Design Example
I am relatively new to C#/.Net. I'm developing a desktop application that requires multi threading. I came up with the following pattern below as a base. I was wondering if anyone …
1
vote
3answers
246 views
Counting binary bit pattern combinations
I'm looking for an algorithm that will count the number of binary bit patterns in an n-bit word which are equal to or less than an arbitrary limit that is less than 2^n. Further, I …
0
votes
1answer
27 views
Android: how to create a background from pattern?
Hi,
I got a pattern (.png image 4x4px) and have to fill the layout with it.
Does anyone know how to do it?
If I simply select the drawable as a background the image is streched …
1
vote
2answers
214 views
Haskell: Creating Type Classes for Zippers
So I've been reading a bit about the Zipper pattern in Haskell (and other functional languages, I suppose) to traverse and modify a data structure, and I thought that this would be …
2
votes
4answers
193 views
MVC pattern in .NET: Can View call Exceptions in Model?
I'm using the MVC pattern in a .NET winform app. There are places in the Controller that can cause an exception. Rather than catching the exception and dislpaying a messagebox, w …
0
votes
2answers
59 views
Data Access Design Patterns
Hi,
Im looking for a pattern which I can use for parent-child relationships when inserting records into a database. As the child record needs the parent record to exist first, Im h …
0
votes
2answers
58 views
Pattern/architecture advice?
I am doing a project that recognize human face from camera.
Here is the workflow:
acquire a frame of image from camera
detect if there is motion in the frame, if motion detected …
0
votes
1answer
55 views
XSLT - Match element with multiple child elements
<xsl:template match="element[child]">
The above works. What is the real syntax for the following pseudo-syntax? :
<xsl:template match="element[child1 AND child2]">
I …
0
votes
2answers
32 views
Xml pattern restriction. Pattern for “x.x” like attribute value representing a version number
I have an XML attribute representing the version numbering of a file.
The file version is identified internally by two byte fields so that, theoretically the versión could go from …
0
votes
2answers
60 views
Javascript: best Singleton pattern
I'm using this pattern for singletons, in the example the singleton is PlanetEarth:
var NAMESPACE = function () {
var privateFunction1 = function () {
privateFunction2();
};
…
0
votes
0answers
38 views
C# matrix sparsity pattern visualization
Hi!
Are there some implementations of sparse matrices visualization in C# ?
I know that spy function do such thing in matlab, but didn't find any implementations in C#.
Regards
0
votes
2answers
65 views
Generate pattern (and/or regex) automated from input
Heyho, I've got a big bunch of loglines (more or less without documentation) and need to parse the lines. The parsing itself won't be a big problem, but first I need to know how ma …
4
votes
2answers
812 views
Regex to find an integer within a string
I'm new to using regex and I'd like to use it with Java.
What I want to do is find the first integer in a string.
Example:
String = "the 14 dogs ate 12 bones"
Would return 14.
S …
