Questions tagged [program]
10 questions
68
votes
9 answers
What is the meaning of the 90/10 rule of program optimization?
According to Wikipedia, the 90 / 10 rule of program optimization states that “90% of a program execution time is spent in executing 10% of the code” (see the second paragraph here).
I really don't understand this. What exactly does this mean? How…

Rakshith Ravi
- 765
- 1
- 5
- 15
18
votes
4 answers
Phenotropic Program Design
I recently ran across an idea put forth by Jaron Lanier called "phenotropic programming."
The idea is to use 'surface' interfaces instead of single point interfaces in computer programs utilizing statistics to winnow out minor errors that would…

adv
- 347
- 1
- 9
7
votes
2 answers
Nearest color algorithm using Hex Triplet
Wikipedia has a list of colors that I am using for a basis of color names. I want to find the nearest named color given an arbitrary RGB value.
For example #5D8AA8 hex triplet is "Air Force Blue". This information will be stored in a database table…

LCJ
- 977
- 2
- 13
- 23
5
votes
5 answers
Program Loaders in Linux and Windows
I was wondering what the loaders in Linux and Windows are called, i.e., their command names? Loaders' definitions are
In computing, a loader is the part of an operating system that is
responsible for loading programs.

Tim
- 5,405
- 7
- 48
- 84
4
votes
4 answers
What is the relationship between a program and processes in the Operating System?
A program, I am referring to any program written in any programming language. It could be a Java program which has only one method to do the multiplication, and a main method executes that multiplication method. Or it could be a program in Python…

s-hunter
- 185
- 1
- 4
1
vote
4 answers
Draw a checkerboard in Java
I'm reading through a programming book and am having trouble understanding a few parts of this code. The program draws a checkerboard, and colors the odd squares black.
import acm.graphics.*;
import acm.program.*;
public class CheckerBoard extends…

user2400376
- 13
- 1
- 1
- 3
1
vote
1 answer
Programming Discrete Wavelet Transform
I am trying to program Discrete Wavelet Transform in Matlab. I do understand that their are various libraries available, but my project requires that I must implement it from scratch.
I am taking a vector of length N. I then provide this vector as…

user1343318
- 111
- 2
0
votes
2 answers
How does Gamemaker Create Executables?
How does a Program that is already compiled create standalone .exe files without an apparent compiler? Example game making software like GameMaker that lets you create a game, add all the resources, images, scripts etc, and then lets you compile it…

Robert Tattorn
- 111
- 3
0
votes
1 answer
Confusion with Seamless technology to load cloud content in local without loading in memory
Recently, I've gone through techcrunch article where it says, Dropbox is working in Project Infinite technology which allows to load cloud content in local PC without actually storing in memory/drive
Today at the Dropbox Open conference in London,…

Akash KC
- 279
- 1
- 7
0
votes
2 answers
Calling another program from a Windows Service
Problem:
I am working on a service which will do some automated processing at a configurable time each night. It does some communication over the internet, formats some information, and creates a file. This file will be used by another program. I…

dprice
- 67
- 1
- 1
- 6