|
CDNs seem like a tremendously brute-force approach to improving website performance across the world, since they use some thousands of machines close to the end-user to ensure good throughput.
Are there any ways of improving performance over long distances...
Started by Legooolas on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Also use gzip compression) - then....
Just make sure your server supports Keepalive, everything that should be cached actually comes with appropriate Expires: headers and that your HTML is reasonably sized (i.e .
You can't circumvent latency by reducing size.
|
|
I am building an internal, data-heavy website for my company on the Microsoft stack (ASP.NET 2.0/C#/SQL Server). Lately I have been trying to improve the layout and design of this site, partly because I want it to look good for my employers, but mostly...
Started by Matthew Jones on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.alistapart....
In particular their "design" section of articles are good and may provide just what you need.. .
Alistapart.com.
But I can recommend a good source...
I'm not sure what to say exactly.
This is something I constantly learn about myself.
|
|
I'd like to improve the performance of convolution using python, and was hoping for some insight on how to best go about improving performance.
I am currently using scipy to perform the convolution, using code somewhat like the snippet below:
import numpy...
Started by Bear on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It is often faster to compute the FFT, then the product, and the iFFT of the result than convolve the usual... .
The reason is: the convolution in real space is a product in FFT space .
A typical optimization for convolution is to use the FFT of your signal .
|
Ask your Facebook Friends
|
How would you begin improving on a really bad system?
Let me explain what I mean before you recommend creating unit tests and refactoring. I could use those techniques but that would be pointless in this case.
Actually the system is so broken it doesn...
Started by Zizzencs on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
I'd put a....
Seriously though: that counter sounds like it's got thread-safety issues .
That sounds like an improvement in your case.
Then, press Ctrl-A, and then Shift-Delete.
You open the directory that contains this system with Windows Explorer .
|
|
I would like your opinion (through experience) of implementing stricter processes in the aim of improving quality of shipping software. Assume a fairly large software with lots of processes(89) and databases and messaging, IPC, sockets, web servers and...
Answer Snippets (Read the full thread at stackoverflow):
From that change/maintenance can be checked and managed....
Tests and lots of them can serve as the platform on which you work and verify that your product is a good one .
TDD is proably the easiest and most fundamental change that can improve your code.
|
|
Hi,
EDIT: I am also after advice if there is a better way to go about this??
I have a webpage that displays a timesheet for the user to fill out. The timesheet is for a month so it has as many rows in the month and also 5 columns of data, Normal hours...
Started by Malcolm on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Function SetBackgroundColor(day, bgcolor) { var selector = '[id$=txtNormal' + day + ']'; $(selector).css("background-color", bgcolor); $(selector).parent().css("background-color", bgcolor); }
=>
function SetBackgroundColor(day, bgcolor) { var selector... .
|
|
I am a senior software engineer, and a few months ago I have been asked to help with co-ordination of bug corrections. The project manager (non technical) has given me an objective of improving productivity to 1 bug correction per man/day. This has been...
Started by Ivo Bosticky on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Base....
Ideas you may want to try include sorting your bugs into different categories .
Some bugs are obviously a lot more difficult to fix than others .
While bug correction rates are a valid metric in some circumstances, they can be misguiding in others .
|
|
We know it's lacking documentation but what other parts would you like to see improved?
Started by roelofb on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
I am working on a small project that requires gridview paging for upto 100k records. what are the ways i can improve the performance. I tried to page using sql server with Temp table but it still is a bit on the slower side.
any idea?
Answer Snippets (Read the full thread at stackoverflow):
For example:
@firstRow int, @lastRow int select ROW_NUMBER() over (order....
Have the page keep track of what the current page you are on is, and request only the next x or previous x rows .
You could add a stored proc that will return only a range of rows .
|
|
What are good ways to improve my programming skills when I don't have the energy to think really hard? For example during illness (right now) or in the evening after an intensive day of coding yet still desiring to learn something new.
Started by Michiel Borkent on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
-- spend time doing something....
Do Something Else Instead!
Your brain's already tired from programming, etc .
So that you don't excersize too much your brain.
One that talks about something you already know.
I think you should read some book of your interest .
|