0
votes
3answers
93 views
Functions too fast? So they get skipped?
Hi all,
With a function a div-popover gets called and filled with dynamic data using Ajax, PHP, MySQL and some HTML/CSS. All goes fine.
When I want to delete an entry in the list just popped over it …
0
votes
2answers
34 views
Is speed control over music on an iPhone plausible?
I'm writing an iphone app, and I would like to have the user able to slow or quicken a pre-made sound file. Is this possible? If so, how would you do it?
Edit:
This looks like a dup of the following …
2
votes
5answers
47 views
Anyone have benchmarks / speed tests comparing Classic ASP vs ASP.NET 2.0 or 3.5?
I'm thinking about using ASP.NET in a new project I'm starting and I'm wondering if it's faster than classic ASP. I've been using classic for years, and never ran into any problems, but I really want …
0
votes
1answer
45 views
Why is using a static int in my accelerometer callback so much slower than using an instance variable?
I'm playing with the GLGravity example to figure out some of the performance nuances related to dealing with the accelerometer.
Here's the problem code:
- …
0
votes
8answers
128 views
Should one use PHP to print all of a page’s HTML?
Hi
So I've always developed PHP pages like this: <?php goes at the top, ?> goes at the bottom, and all the HTML gets either print()ed or echo()ed out. Is that slower than having non-dynamic …
0
votes
6answers
98 views
Most important speed issues
I am participating in Al Zimmermann's Programming Contest.
http://www.azspcs.net/Contest/SonOfDarts
I have written a recursive algorithm but it takes a long time to run. I was wondering what are …
1
vote
5answers
254 views
What is faster on division? doubles / floats / UInt32 / UInt64 ? in C++/C
Hi everyone,
I did some speed testing to figure out what is the fastest, when doing multiplication or division on numbers. I had to really work hard to defeat the optimiser. I got nonsensical results …
1
vote
3answers
67 views
Same MySQL query takes 0.3 sec in MyPHPAdmin, 7.9 sec in PHP — Why?
I am running the following MySQL query:
select * from combinations where family_type='f597';
on a table that has about 90,000 lines. If I run the query via MyPHPAdmin, it takes 0.3 seconds to run, …
0
votes
1answer
76 views
(PHP) Validation, Security and Speed - Does my app have these?
Hi all,
I am currently working on a building community website in PHP. This contains forms that a user can fill right from registration to lot of other functionality. I am not an Object-oriented guy, …
1
vote
4answers
113 views
What is more efficient in python new array creation or in place array manipulation?
Say I have an array with a couple hundred elements. I need to iterate of the array and replace one or more items in the array with some other item. Which strategy is more efficient in python in terms …
1
vote
0answers
88 views
Insanely slow web site performance [closed]
Hi everyone,
I recently started development work on an existing web site that has been loading pages extremely slowly. I know that it is being served by Apache, but I don't have any access to the …
2
votes
3answers
54 views
How to change the default parameters for newfit() in MATLAB?
I am using
net = newfit(in,out,lag(j),{'tansig','tansig'});
to generate a new neural network. The default value of the number of validation checks is 6.
I am training a lot of networks and this …
1
vote
2answers
83 views
Speed difference: separate functor VS operator() inside a big class with *this
I'm using the c++ STL heap algorithms, and I wrote a wrapper class around it so I could do some other stuff. When I tried to use the code below, for example:
//! Min-heap wrapper class.
class …
1
vote
5answers
71 views
Which multilingual web design solution is fastest for the user, if this is indeed an issue?
Context:
I'm in the design phase of what I'm hoping will be a big website (lots of traffic, lots of users reading and writing to database).
I want to offer this website in the three languages I speak …
3
votes
3answers
132 views
Speeding Up the First Page Load in django
When I update the code on my website I (naturally) restart my apache instance so that the changes will take effect.
Unfortunately the first page served by each apache instance is quite slow while it …
