Search Results

3
votes

Of Ways to Count the Limitless Primes

Some prime tests only work with certain numbers, for instance, the Lucas–Lehmer test only works for Mersenne numbers. Most prime tests used for big numbers can only tell you that a certain …
2
votes

What “already invented” algorithm did you invent?

How about... ARRAYS! I was 7 or 8, fiddling with BASIC, trying to make a prime number generator. I invented the exact concept of an array, tried in vain to figure out how it was done in BAS …
1
vote

fast geometric proximity predicate

If your set of (A,B,d) in fixed, you can calculate a pair of matrices for each to translate the co-ordinate system, so that the line AB becomes the X axis, and the midpoint of AB is the origin. …
3
votes

While vs. Do While

A while() checks the condition before each execution of the loop body and a do...while() checks the condition after each execution of the loop body. Thus, …
4
votes

Maximum line length of your IDE / checkstyle

Wider monitors aren't any excuse to create more convoluted, impenetrable code. A width limit keeps you conscious of how long and complex your lines are getting. From the Linux coding guidel …
2
votes

Is a good practice to use regular expression for input validation?

Yes! Regular expressions usually let you build a pretty solid input validation that's fairly readable in a very short space of time. Something that does the right job, is maintainab …
4
votes

Programming challenge: can you code a hello world program as a Palindrome?

I wanted to code a C solution that doesn't use #if or #ifdefs because I think of them as just another form of comments. So! Here is my attempt, completely free of …
4
votes

How does it know where my value is in memory?

It's built into the program. Basically, when a program is compiled into machine language, it becomes a series of instructions. Some instructions have memory addresses built into them, and t …
9
votes

How to plan huge software projects?

There are a number of good articles and books on this subject. But in brief, cut down dependencies, keep things simple but flexible, and start by writing quickly-codable components - this give you …
1
vote

Optimizing cartesian requests with affine costs

I'm sure there's a really good algorithm for this out there somewhere, but here are my own intuitive ideas: Toss-some-rectangles approach: Determine a "roughly optima …
1
vote

Optimizing cartesian requests with affine costs

Ok, my understanding of the question has changed. New ideas: Store each row as a long bit-string. AND pairs of bit-strings together, trying to find pairs that maximise the number o …
4
votes
10
votes

Scale numbers to be <= 255?

The "fairest" linear scaling is actually done like this: floor(256 * value / (Integer.MAX_VALUE + 1)) Note that this is just pseudocode and assumes floating-point …
-1
votes

Developing Games - How are things that take more than one game loop performed?

Consider how operating systems allow multiple programs to run on a single processor: Program 1 is running Program 1 is interrupted Program 1's state (contents of CPU …
1
vote

Is there a programming language where the static data type is optional?

In some flavours of BASIC, the type of a constant was determined from its value. CONST X = 1 ''integer CONST PI = 3.14 ''float CONST S = "Hello World" ''string …