Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

70
votes
21answers
11k views

Singleton: How should it be used

Edit: From another question I provided an answer that has links to a lot of questions/answers about singeltons: More info about singletons here: So I have read the thread Singletons: good design ...
44
votes
15answers
3k views

implementing a compiler in “itself”

Intuitively, it would seems that a compiler for language Foo, cannot itself be written in Foo. More specifically, the first compiler for language Foo cannot be written in Foo, but any subsequent ...
29
votes
17answers
19k views

What's a good Common Lisp implementation for Windows?

What's your favourite? See also this related question.
23
votes
5answers
1k views

How is the PHP array implemented on the C level?

The PHP array is one of PHP's core features. It is sparse, allows multi-typed keys in the same array, and supports set, dictionary, array, stack/queue and iterative functionality. But after working ...
22
votes
2answers
110 views

api security implementation php

I have a site that allow users to check their statistics (number of file uploaded, how many files they have, quotas, type of access etc...) I create a section on my site: api.domain.com This can be ...
22
votes
8answers
744 views

Can sizeof(int) ever be 1 on a hosted implementation?

My view is that a C implementation cannot satisfy the specification of certain stdio functions (particularly fputc/fgetc) if sizeof(int)==1, since the int needs to be able to hold any possible value ...
20
votes
3answers
693 views

Implementing lazy functional languages

When implementing a lazy functional language, it is necessary to store values as unevaluated thunks, to be evaluated only when needed. One of the challenges of an efficient implementation, as ...
19
votes
11answers
3k views

Which should I implement first, PayPal or Google Checkout, on my eCommerce website?

Paypal and Google Checkout will take some time to implement so I'm wanting to know if anyone in the community has installed them and has a recommendation on which to do first. We use the .Net ...
18
votes
19answers
2k views

uses for state machines

In what areas of programming would I use state machines ? Why ? How could I implement one ? EDIT: please provide a practical example , if it's not too much to ask .
17
votes
5answers
696 views

Advantages/Disadvantages of different implementations for Comparing Objects using .NET

This questions involves 2 different implementations of essentially the same code. First, using delegate to create a Comparison method that can be used as a parameter when sorting a collection of ...
15
votes
7answers
4k views

How are Python's Built In Dictionaries Implemented

The topic title pretty much says it all. Does anyone know how the built in dictionary type for python is implemented? My understanding is that it is some sort of hash table, but I haven't been able ...
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 ...
14
votes
30answers
3k views

Have you ever implemented a programming language?

Have you ever implemented a programming language, either your own or an existing language and why did you decide to do it?
14
votes
8answers
6k views

How would you implement a hashtable in language x?

The point of this question is to collect a list of examples of hashtable implementations using arrays in different languages. It would also be nice if someone could throw in a pretty detailed overview ...
13
votes
22answers
1k views

High Profile ASP.NET websites

About twice a month I get asked to justify the reason "Why are we using ASP.NET and not PHP or Java, or buzz-word-of-the-month-here, etc". 100% of the time the questions come from people that do not ...
12
votes
4answers
271 views

How C++ virtual inheritance is implemented in compilers?

How the compilers implement the virtual inheritance? In the following code: class A { public: A(int) {} }; class B : public virtual A { public: B() : A(1) {} }; class C : public B { ...
12
votes
2answers
348 views

In .NET, what is the internal implementation of a delegate?

I understand that a declaration of a delegate is something like this: public delegate int PerformCalculation(int x, int y); However, there must be more going on. The purpose of the delegate is to ...
12
votes
4answers
460 views

How is CPython's set() implemented?

I've seen people say that set objects in python have O(1) membership-checking. How are they implemented internally to allow this? What sort of data structure does it use? What other implications does ...
12
votes
11answers
1k views

Using C++ is a Linked-List implementation without using pointers possible or not?

My question is very simple, can one using C++, implment a link-list data structure without using pointers (next nodes)? To further qualify my question, I'm mean can one create a Linked-List data ...
12
votes
3answers
347 views

How to properly use references with variadic templates

I have something like the following code: template<typename T1, typename T2, typename T3, typename T4> void inc(T1& t1, T2& t2, T3& t3, T4& t4) { ++t1; ++t2; ++t3; ++t4; } ...
12
votes
7answers
9k views

Compression library using Nvidia's CUDA

Does anyone know a project which implements standard compression methods (like Zip, GZip, BZip2, LZMA,...) using NVIDIA's CUDA library? I was wondering if algorithms which can make use of a lot of ...
12
votes
3answers
7k views

Interfaces with static fields in java for sharing 'constants'

I'm looking at some open source Java projects to get into Java and notice a lot of them have some sort of 'constants' interface. For instance, processing.org has an interface called PConstants.java, ...
11
votes
6answers
354 views

Where should I put documentation comments in C++?

In the header file containing the forward declarations, or in the .cpp file containing the implementations, like this? //header.h /* About foo() */ void foo(); /* About bar() */ int bar(); /* About A ...
11
votes
5answers
365 views

How are closures implemented in Python?

"Learning Python, 4th Ed." mentions that "the enclosing scope variable is looked up when the nested functions are later called.." However, I thought that when a function exits, all of its local ...
11
votes
5answers
3k views

Why does HashSet implementation in Sun Java use HashMap as its backing?

Looking at the source of Java 6, HashSet<E> is actually implemented using HashMap<E,Object>, using dummy object instance on every entry of the Set. I think that wastes 4 byte (on 32-bit ...
11
votes
7answers
893 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 like the fact, that I'm ...
11
votes
5answers
2k views

Why ArrayList implement IList, ICollection, IEnumerable?

ArrayList declare that it implements IList, ICollection, IEnumeralbe interfaces. Why not only implement IList, because IList is also derived from ICollection, ICollection is derived from IEnumerable. ...
11
votes
7answers
3k views

Is char guaranteed to be exactly 8-bit long in C?

That's all. Didn't find any similar topic so bear with me it there is.
11
votes
6answers
4k views

Windows Scheme/Lisp Implementation

With the thousands of implementations of LISP and Scheme available I'm having a very hard time finding just the right one to use for Windows development. I learned these languages in school and found ...
10
votes
2answers
219 views

Thread-safe Priority Queue for Delphi?

I'm looking for a priority queue implemented in Delphi that would work well in a multi-threaded environment. Ideally lock-free, or designed for multi-threaded inserts/deletes with something better ...
10
votes
2answers
210 views

How library functions in Haskell are implemented

I'm just starting to learn Haskell and would find it very helpful to see how Haskell functions are implemented. I've been able to find the Standard Prelude on different question, but I'm now ...
10
votes
1answer
78 views

Implementation of nested functions

I recently found out that gcc allows the definition of nested function. In my opinion, this is a cool feature, but I wonder how to implement it. While it is certainly not difficult to implement ...
10
votes
2answers
238 views

How are basic data types (strings and integers) implemented in Python and Perl

I've been wondering lately how various operations I perform on basic types like strings and integers work in terms of performance, and I figure I could get a much better idea of this if I knew how ...
10
votes
3answers
187 views

Why did microsoft's developers choose to make the .NET a stack based machine?

Today I've found the Disassembler IL between the tools provided with VS2008. I tried to disassemble a program and give a look to the result. Opcodes weren't so hard to understand but one thing ...
10
votes
2answers
471 views

Why is python's subprocess.call implemented like this?

The subprocess module has the convenience function call, which is implemented like this in both 2.6 and 3.1: def call(*popenargs, **kwargs): return Popen(*popenargs, **kwargs).wait() The ...
10
votes
6answers
7k views

kdtree implementation C++

Any recommendations for a C/C++ kd-tree? I'm looking for an existing implementation which the poster hopefully has worked with or has heard good things about. Also, I need to use this kd-tree to do a ...
10
votes
7answers
294 views

Keeping everything loosely coupled and extendable: Too many layers, too small ROI?

I (now more than ever) see developers write huge amounts of layers such as: implementation PresentationLayer -> interface IMyDTO -> implementation MyDTO -> ...
10
votes
3answers
671 views

What is the underlying data structure for Python lists?

What is the typical underlying data structure used to implement Python's built-in list data type?
10
votes
7answers
652 views

When should I use type abstraction in embedded systems

I've worked on a number of different embedded systems. They have all used typedefs (or #defines) for types such as UINT32. This is a good technique as it drives home the size of the type to the ...
9
votes
3answers
211 views

Type-safe matrix multiplication

After the longwinded discussion at Write this Scala Matrix multiplication in Haskell, I was left wondering...what would a type-safe matrix multiplication look like? So here's your challenge: either ...
9
votes
2answers
490 views

How do static member variables affect object size?

I'm wondering how static member variables are typically implemented in languages like C++ and Java and if their use affects the size of instantiated objects. I know that a static members are shared ...
9
votes
3answers
2k views

Mongo DB Design, embedding vs relationships

I'm building a simple accounting system where a user has many bills. Now I'm trying to decide if bills should be its own collection, or nested within the user. I'm leaning towards the former but ...
9
votes
3answers
198 views

An exception to the “only one implementation” rule?

While I was reading the accepted answer of this question, I had the following question: Typically, methods are defined in header files (.hpp or whatever), and implementation in source files (.cpp or ...
9
votes
7answers
880 views

Do Python Dicts preserve iteration order if they are not modified?

If I have a dictionary in Python, and I iterate through it once, and then again later, is the iteration order guaranteed to be preserved given that I didn't insert, delete, or update any items in the ...
9
votes
2answers
5k views

Access modifiers on interface members in C#

I am getting a compile error from the following property. The error is: "The modifier 'public' is not valid for this item" public System.Collections.Specialized.StringDictionary ...
8
votes
6answers
165 views

Why is size_t better?

The title is actually a bit misleading, but I wanted to keep it short. I've read about why I should use size_t and I often found statements like this: size_t is guaranteed to be able to express ...
8
votes
3answers
87 views

How to deal with covariance when returning collection in c#?

I have a problem with returning collection and covariance and I was wondering if anyone has a better solution. The scenario is this: I have 2 version of implementation and I would like to keep the ...
8
votes
1answer
156 views

Speed of indexing Perl arrays by offset

According to this question and this answer, lists are implemented as arrays: Perl implements lists with an array and first/last element offsets. The array is allocated larger than needed ...
8
votes
7answers
405 views

Design Patterns Cheat Sheet

There are a lot of books and online resources about Design Patterns. Although they are good to learn the main notion, without extensive experience it is really hard to remember tiny details of ...
8
votes
5answers
653 views

WHY an Anonymous class in Java can't implement multiple interfaces directly? Simply because of syntax or there is another reason?

In there an internal issue why java anonymous classes cannot implement and subclass at the same time? Or is it just because the syntax?

1 2 3 4 5 15