0
votes
1answer
47 views
What are some authoritative/respected “best known implementation” websites/resources?
EDIT:
Wow, the initial response to this question was quite negative. I think I might have triggered some pretty strong emotions by using the word "best"; it seems like a few peopl …
1
vote
3answers
92 views
Algorithm Implementation to Improve
I believe that out there we have algorithms implementations (e.g. a c++ implementation of a particular sorting algorithm) which might not be as efficient as they could be.
I would …
5
votes
3answers
94 views
How do I bridge the gap between my database design and the user interface design?
I know how that question looks, but I'm quite serious. I am trying to create an application that will help me in learning databases (sql, queries, proper database design, etc). I'm …
1
vote
0answers
41 views
Latent Semantic Indexing in Java
Is there any open source implementation of LSI in Java? I want to use that library for my project. I have seen jLSI but it implements some other model of LSI. I want a standard mod …
0
votes
5answers
134 views
strlen() implementation in gcc
Can anyone point me to the definition of strlen() in GCC? I've been grepping release 4.4.2 for about a half hour now (while Googling like crazy) and I can't seem to find where str …
2
votes
1answer
81 views
Which Erlang implementation of OpenId should I use, if any?
I'd need an Erlang implementation of the OpenId protocol.
I found the following, but it seems to be a project on its early stage.
http://code.google.com/p/erlopenid/
Any hint or …
0
votes
1answer
65 views
Has anyone seen a 2-Sat implementation
I have been looking for a while, but I just can't seem to find any implementation of the 2-Sat algorithm.
I am working in c++ with the boost library (which has a strongly connecte …
1
vote
4answers
61 views
compiler optimization implementation
Actually I am making a major project in implementing compiler optimization techniques. I already know about the existing techniques, but I am confused what technique to choose and …
3
votes
4answers
75 views
How can I do a MouseOver of exact image shape?
Hello all,
The question below is not really a programming question, but more of "how can I do this" question, implementation advice.
I have an image of the world map. I can make …
1
vote
4answers
104 views
Implementing a default constructor
I am trying to implement a DateTime class in C++:
class DateTime {
public:
DateTime();
DateTime(time_t ticks);
DateTime(int day, int month, int year);
DateTime(int …
3
votes
5answers
71 views
Struggling on implementation idea
Hello,
What I mean is that when I want to implement something and I have an idea how to do it, I always try to think for other implementation solutions and if I haven't get any I …
0
votes
3answers
78 views
Java interface: method signature declared as throws Exception; implemented as throws a subclass of Exception [CLOSED]
Hi all,
I have the following interface declaration:
public interface SomeInterface {
void someMethod() throws Exception;
}
I use a third party to generate an implementati …
1
vote
1answer
58 views
Where is the signing for signed integral types stored? (In Java)
The Java data type byte for example holds data from -128 to 127 in a single byte on storage.
To enable to distingush between - 1 to -128 from 0 to 127 would require extra data whi …
5
votes
5answers
140 views
How to improve the builder pattern?
Motivation
Recently I searched for a way to initialize a complex object without passing a lot of parameter to the constructor. I tried it with the builder pattern, but I don't lik …
0
votes
4answers
88 views
.NET 3.5 - Object not implementing IComparable?
When converting a project (in which a template method of IComparable was used a few times) from VS 2005 to VS 2008 I've got some errors:
Error 12 Type argument 'Object' does not i …
