web-development

Sharing binary folders in Visual Studio

For a long time i have tried to work out the best way to access certain site files which i don't wish to be apart of a project or to ease integration with multiple developers (and talents, e.g. designers) on a single project. A lot of sites i have created have had folders with large amounts of images and other binary files which i have ...

What opensource CMS: generates clean xhtml, is skinable with css, and has a lightweight markup content editor?

See title. By lightweight markup I mean something like markdown or wikitext. ...

Is Perl still a viable language for web development?

I am currently in the process of designing a database-driven website to manage various personal data and some business data. This is primarily a personal app, however it will be used by a few clients to retrieve and update information. Is Perl still a viable language to code a website with the newer .NET options, Python, etc. available...

XAMPP and WAMP in the LAMP, whats the best ?

We have got loads of options for php + MySQL + Apache combo... Which is the best pack among these ? Lets confine our ideas to WAMP vs XAMPP, is there a better option to go for ? I created an online programming contest web app called CodeFire on XAMPP, later I had to switch to WAMP, where none of the php scripts worked properly... what ...

How do I plan an enterprise level web application?

So, I'm at a point in my freelance career where I've developed several web applications for small to medium sized businesses that support things such as project management, booking/reservations, and email management. I like the work but find that eventually my applications get to a point where the overhear for maintenance is very high. ...

A Firefox javascript bookmarking problem

I'm using the following JavaScript code: <script language="JavaScript1.2" type="text/javascript"> function CreateBookmarkLink(title, url) { if (window.sidebar) { window.sidebar.addPanel(title, url,""); } else if( window.external ) { window.external.AddFavorite( url, title); } else if(window.opera && window.print) ...

Apache and IIS side by side (both listening to port 80) on windows2003

What are some good ways to do this? Is it even possible to do cleanly? Ideally I'd like to use packet headers to decide which server should handle requests. However, if there is an easier/better way let me know. ...

How do I pop up an image in a separate div on the mouseover of a div using only CSS?

I have a small gallery of thumbnails. When I place my mouse pointer over a thumbnail image I'd like to have a full size image pop up in a div in the top right of the screen. I've seen this done using just CSS and I'd like to go down that route rather than use javascript if possible. ...

Application Context in Rails

Rails comes with a handy session hash into which we can cram stuff to our heart's content. I would, however, like something like ASP's application context, which instead of sharing data only within a single session, will share it with all sessions in the same application. I'm writing a simple dashboard app, and would like to pull data ev...

Internet Explorer ol numbers appear at bottom of li instead of top as expected

I'm working on a page has an ol with nested p's, div's, and li's. Internet Explorer 6 and 7 both render the numbers for the ol tag after the p element at the end (at the very, very bottom of the li tag) rather than at the top of the outermost li as expected. I'm working on a PowerPC Mac and can't do any testing. Is there some simple CSS ...

What percentage of my time will be spent in user input verfication during web development?

I'm new to developing things on the web. So far, I'm spending a lot of time (50% or so) to try and prevent bad people from putting things like sql injection into my input forms and validating it server side. Is this normal? ...

When the bots attack!

What are some popular spam prevention methods besides CAPTCHA? ...

What are the cons of a web based application

I am going to write a database application for the camp I work for. I am thinking about writing it in C# with a Windows GUI interface but using a browser as the application is seeming more and more appelaing for various reasons. What I am wondering is why someone would not choose to write an application as a web application. Ex. The back...

Recommendations for starting web programming?

I've been doing application development for a long time but never really any web programming. I've made some (simple HTML) web pages in the past but that is the extent of it. I've got a pretty strong C/C++/C# background and I'm going to be getting up to speed on WPF. I'd like to focus part of my development efforts on web development ...

What is the difference between "lang" and "type" attributes in a script tag?

For <script> HTML tags, what is the technical difference between "lang=Javascript" and "type=text/javascript"? I usually use both, because I've always assumed that older browsers need one or the other. ...

How do I use genshi.builder to programmatically build an HTML document?

I recently discovered the genshi.builder module. It reminds me of Divmod Nevow's Stan module. How would one use genshi.builder.tag to build an HTML document with a particular doctype? Or is this even a good thing to do? If not, what is the right way? ...

Possible to use multiple/nested MySQLi statements?

Is it possible to have a MySQLi prepared statement within the fetch() call of a previous statement? If not, what's the best way around it? Example code: if($stmt = $link->prepare("SELECT item FROM data WHERE id = ?")) { $stmt->bind_param("i", $id); $stmt->execute(); $stmt->bind_result($item); while( $stmt->fetch() ) { /* ...

What is the best web prototyping tool?

What is the best tool to create a web application interface prototype? ...

Dynamic IP-based blacklisting

Folks, we all know that IP blacklisting doesn't work - spammers can come in through a proxy, plus, legitimate users might get affected... That said, blacklisting seems to me to be an efficient mechanism to stop a persistent attacker, given that the actual list of IP's is determined dynamically, based on application's feedback and user be...

has anyone worked on Smartclient

Has anyone worked on smartclient (the RIA platform provided by Isomorphic)? I want to know if any online material/books available on this RIA ...