Discount Web Design Blog

Just another Web Design Blog

Entries for the ‘General Development Issues’ Category

Programming for a Member site

I was wondering how sites like facebook or dating sites are programmed. Sites that has people signing up and being able to create a customized profile for others to view on their website. I was also wondering around how much it would cost for to pay a freelancer for a project like that.
Anyone who has [...]

badgersunscreenspf30.newsbeta.com – Badger Sunscreen SPF 30

power beauty of
the most world girls beautiful the

Conditions within loops: If or Continue?

I thought of a hypothetical performance question regarding conditions within loops that would apply to most languages. Suppose you have a simple loop (I’ll use JavaScript for the example since it’s a very common language):

Code:
var favoriteJuices = new Array();
favoriteJuices["Mike"] = "Apple";
favoriteJuices["Fred"] = "Orange";
favoriteJuices["James"] = "Orange";
favoriteJuices["Samantha"] = "Grapefruit";
favoriteJuices["Jane"] = "Apple";
favoriteJuices["Elizabeth"] = "Apple";
for(var i in favoriteJuices){
document.writeln(i+" [...]

$HOME is where the what is?

One thing I see a lot of, and it bugs me to no end is the way web applications store *everything* (class files, configs, passwords, templates, uploads, on and on..) in web space.
I consider this to be a serious security concern, we’ve all probably seen what happens when a web server gets mis-configured or when [...]

How do I respond to all clicks on a page?

How do I respond to all the mouse clicks on a page?
This works

HTML Code:
<html xmlns="http://www.w3.org/1999/xhtml" onclick="formSubmit()">

…but I get the warning

Quote:

Validation (XHTML 1.0 Transitional): Attribute ‘onclick’ is not a valid attribute of element ‘html’.

So what is the correct way to do something like this?

HTML5 Questions

HI all,
I am an experienced web-developer (11 years and counting) and I have been keeping an eye on some aspects of HTML5 developments. However, I still find myself confused about some aspects of HTML5 and I’d like to ask you all about it if that was OK with you
<canvas>
Any interesting use of the <canvas> [...]

Tables in Chrome

Hi,
I am trying to develop a Joomla Template which for the most part is going well except for this one issue.
The best way to demonstrate the issue is to visit the following site…
http://74.53.184.170/~wwwuncl/
please view in IE or Firefox where you will see it working fine then take a look in Chrome and you will see [...]

Using a single database (or copied databases) for a hosted site and a desktop app

I’ve built an online scheduling system for a local company so that they can have a calendar with the scheduled jobs for the day and so that the customers can check on the progress of the work being done for them. Allowing the customer to check for themselves would cut their phone call volume [...]

Question about Videos on pancrase.org

I have a question about the videos on pancrase.org. Do you guys think the videos are hosted on his site or just an embedded link?
If it an embedded link, which program is he using, and is there anyway to find out the source of the link so I can grab the embed link myself?
If the [...]

Report statistics to appear on TV ?

I will need to develop a report statistics to appear on TV for the employees to see. To motivate them to work hard to get more sales and challenge.

How do I make it interesting?
- Staff made a recent sale (some effect like firework)
- Who has the lowest sales (show with a sad face)
- Tables [...]