Tech Support > Computers & Technology > Programming
Design of reliable 24x7 program
Posted on May 2nd, 2007 | 4 Comments

Hi, Well I do gather statistics from the main thread and if the statistics is not updated for x seconds/minutes I suspect the thread of being dead and restart. br/anders On Wed, 02 May 2007...

Collection of Hash Functions
Posted on May 1st, 2007 | 6 Comments

Thanks for your replies. I will add your proposed functions to the collection. The input values are supposely not evenly distributed but I may give the Xor a try as well. Previous evaluations showed...

Fast STL data structure
Posted on May 1st, 2007 | 0 Comments

* Juha Nieminen: It is. Note: you selected to snip the "it" referred to here. Please be a bit more conscientious about quoting. Presumably you're here referring to a different "it" than above,...

help with statistics library
Posted on May 1st, 2007 | 15 Comments

On Apr 25, 8:50 am, Richard Weeks <rwe...@nomail.net> wrote: With this SQL query (which computes at 100 digits precision, but in this case returns the final answer rounded to a double): SELECT...

b-trees
Posted on May 1st, 2007 | 2 Comments

<uraniumore235@hotmail.com> wrote in message news:1177991813.920091.75050@h2g2000hsg.googlegroups.com... The "b" stands for the name of the inventor, Bayer, just as the AVL tree stands for the...

udp help plz
Posted on May 1st, 2007 | 0 Comments

I would like to find a source code about a program that every client is a server as well and when starts, multi casts (UDP) a hello saying who he is.Whoever listens inside his network responds with...

Are you developing for the Web?
Posted on April 30th, 2007 | 0 Comments

Methods & Toosl is currently conducting a one-question poll to know What part of new developed applications are web-based (using browser as user interface) Go to...

iTechArt Group - Custom Software Development and Offshore outsourcing Company
Posted on April 30th, 2007 | 0 Comments

iTechArt Group - Custom Software Development and Offshore outsourcing Company http://www.itechart.com/ Offshore custom software development company iTechArt - Web site and Content Management...

GUI dynamic I/F
Posted on April 30th, 2007 | 2 Comments

Willem wrote: I'd support this and vote for Tcl/Tk. It's easily embedded into an application (or more easier probably, create an extension width SWIG for the event handlers), and writing a GUI...

biew-5.6.4 has been released
Posted on April 29th, 2007 | 1 Comments

nickols_k wrote: It sounds useful, but you have multiposted (instead of cross-posted with follow-ups set) this announcement. ...

random integer
Posted on April 29th, 2007 | 12 Comments

CBFalconer said: ....which merely specifies the interface, not the implementation. It *suggests* an implementation but does not mandate it. There is no such thing as a standard rand(). -- Richard...

small task with komodo perl
Posted on April 29th, 2007 | 0 Comments

I'm trying to herd a hundred meassages from usenet with the same title into a local directory as files. There is a fair amount of literature out there on how to do this, including aub, which is an...

Change for a Dollar
Posted on April 29th, 2007 | 23 Comments

Here's the code for finding out the number of ways : // 292 ways of changing a dollar #include <stdio.h> int main() { int cn_50, cn_25, cn_10, cn_5, cn_1, c=0;

Applications that use thousands of data containers?
Posted on April 28th, 2007 | 5 Comments

sjdevnull@yahoo.com wrote: Perl is a good example of this. There are no instance variables in Perl, so if you want to program in an OO style, you typically use a container to hold an object's...

How to judge if the graph is cyclic when add a new edge?
Posted on April 28th, 2007 | 3 Comments

On Apr 26, 4:34 am, "cstnt" <c...@hotmail.com> wrote: Assuming your graph is undirected, the standard approach is to use the "union-find" (a.k.a. "disjoint-sets") data structure. The time per edge...

language
Posted on April 27th, 2007 | 22 Comments

Jon Harrop wrote: Well guessed. Turns out that I did exactly that. I guess the magic number 4 gave you a hint? ;-). Bug fixed. I know, but it's always nice to view the image. My port still has...

Join hands with 5000+ Corp-Corp Recruiters Network
Posted on April 27th, 2007 | 0 Comments

Dear Partners, We are inviting you to join www.Corp-Corp.com, the fast growing network of recruiters. Please view the list of companies already joined in this...

Take part in my research project
Posted on April 26th, 2007 | 0 Comments

Hello XP and TDD enthusiasts. I am a computer science student at Shippensburg University, PA. I am doing a research project in the field of Testing/XP. Please take a moment of your time and visit...

[C++] Command line parser
Posted on April 26th, 2007 | 2 Comments

On Thu, 26 Apr 2007 09:26:24 +0200, AD <adeon@tlenNOOSPAM.pl> wrote: There are at least two major packages for doing that, the gcc getopt package and the popt package. Gcc getopt has two variants,...

How to split binomial heap in O(log(n))?
Posted on April 26th, 2007 | 0 Comments

Hello. The question is how to split binomial heap (size n) into binomial heap of size k (k<n) and binomial heap of size n-k with given complexity O(log(n)). I've thought of something like...