Tagged Questions

65
votes
14answers
9k views

Firefox plugin to simulate slow internet connection or limit bandwidth?

Is there a Firefox plugin available that will simulate various connection speeds (especially when testing from http://localhost)? I know there are standalone applications to do it, but I'd rather …
39
votes
11answers
3k views

Why does C++ compilation take so long?

Compiling a C++ file takes a very long time when compared to C#, Java. It takes significantly longer to compile a C++ file than it would to run a normal size Python script. I'm current using VC++ but …
23
votes
41answers
2k views

If Desktop Computers were 1024 times faster what kind of software would we be writing?

Continuing along current trends we can expect our algorithms to run many times faster on Desktop Computers in 10 years (let's pick a number) 1024x faster. Do you know of any algorithms that are …
16
votes
17answers
2k views

Speeding Up Python

This is really two questions, but they are so similar, and to keep it simple, I figured I'd just roll them together: Firstly: Given an established python project, what are some decent ways to speed …
15
votes
15answers
2k views

Unusual Speed Difference between Python and C++

I recently wrote a short algorithm to calculate happy numbers in python. The program allows you to pick an upper bound and it will determine all the happy numbers below it. For a speed comparison I …
15
votes
29answers
1k views

Will computers ever be too fast?

The PC I use today is a million times faster than the one I started programming on when I was in college. And yet it always seems - I am always waiting for something to get done... Back then it …
15
votes
12answers
894 views

Speeding up an ASP.Net Web Site or Application

I have an Ajax.Net enabled ASP.Net 2.0 web site. Hosting for both the site and the database are out of my control as is the database's schema. In testing on hardware I do control the site performs …
13
votes
13answers
1k views

while (1) Vs. for (;;) Is there a speed difference?

Long version... A co-worker asserted today after seeing my use of while (1) in a perl script that for (;;) is faster. I argued that they should be the same hoping that the interpreter would optimize …
12
votes
10answers
1k views

Java very large heap sizes

Does anyone have experience with using very large heaps 12 gb or higher in Java? Does the GC make the program ununable? What GC params do you use? Which jvm sun or bea would be better suited for …
11
votes
4answers
880 views

Why is Clojure much faster than Scala on a recursive add function?

A friend gave me this code snippet in Closure (defn sum [coll acc] (if (empty? coll) acc (recur (rest coll) (+ (first coll) acc)))) (time (sum (range 1 9999999) 0)) and asked me how does it fare …
11
votes
6answers
339 views

Under what circumstances is it advantageous to give an implementation of a pure virtual function?

In C++, it is legal to give an implementation of a pure virtual function: class C { public: virtual int f() = 0; }; int C::f() { return 0; } Why would you ever want to do this? Related …
11
votes
32answers
1k views

What Simple Changes Made the Biggest Improvements to Your Delphi Programs

I have a Delphi 2009 program that handles a lot of data and needs to be as fast as possible and not use too much memory. What small simple changes have you made to your Delphi code that had the …
11
votes
17answers
2k views

Speeding Up C#

This is really two questions, but they are so similar, and to keep it simple, I figured I'd just roll them together: Firstly: Given an established C# project, what are some decent ways to speed it …
10
votes
10answers
708 views

Why is subtraction faster than addition in Python?

I was optimising some Python code, and tried the following experiment: import time start = time.clock() x = 0 for i in range(10000000): x += 1 end = time.clock() print '+=',end-start start = …
10
votes
6answers
317 views

Do valid web pages load faster?

I am a fan of valid web pages and always spend time passing new sites through the W3C validator. When trying to make a case for why companies should validate web pages I quickly thought of …

1 2 3 4 5 17 next
15 30 50 per page