Search Results

0
votes

synchronized development environments

Sounds to me like you need a Source Control system. This solution is normally used to synchronize codebases between a team of developers but the paradigm still holds true for a single developer on …
0
votes

CSS and lack of constants/variables issue

Depending on your build environment there is probably a mechanism to process the resource files and replace variables with the desired values. I use Maven for my Java developemnt and it has …
1
vote

Displaying Loading text while doing a WebRequest

A simple trick i have used in the past is to redirect to an intermediate page with an animated progress bar (gif) and then have that page do the REAL post of the data. (or even pop-up a layer with …