web-development

Django media URLs in CSS files

In django templates, it's common to do the following: <img src="{{ MEDIA_URL }}/img/someImage.jpg"> How would you accomplish this in a CSS file which is not served as a template? .someClass { /* can't do this this */ background: url("{{ MEDIA_URL }}/img/someImage.jpg"); /* either this */ background: url("http:...

Free web hosts that support something other than PHP?

What's the best free web-hosting service that can run server-side code that's something other than PHP? I'm wanting to host Java server engines, or JSP's and servlets, as well as maybe Python, ASP, Perl, or Ruby based serverside scripts. All the free hosting services I find seem only to support PHP. Is there anything where I can run per...

Automatic file upload

Is there any way, any free software capable of automatic file upload? Let's say I edit php code on my local computer with my favorite IDE. I won't change my IDE, it's great. I want something that would detect a file is changed in my project directory and upload it with FTP/SFTP onto remote server. That's it - just that simple. What I've...

Beginning ASP.NET, here are my novice questions

I'm a .NET desktop developer, I know WinForms, WPF, C#... I want to learn about web development. I know XHTML, CSS, Javascript. I started learning PHP but I prefer C#. That's because I thought about learning ASP.NET to take the advantage of my .NET knowledge. Where to start? Plain ASP.NET first? ASP.NET MVC? What about ASP.NET AJAX? I...

Can a huge existing application be ported to the web? How?

We have an integrated system (at least is that what we call it), which consists in a front-to-back-office huge C++/VB/MSSQL software that handle every single aspect of the organization. Several of our existing customers have been asking if its possible to port it to the web in a sexy web 2.0 fashion, of course it also has great value fo...

Websites & Web Applications Using Erlang

I was wondering if people could post some examples of interesting websites and web apps that were built with Erlang? I can start with a few Erlang based sites: twitterfall.com - Waterfall of Tweets vimagi.com - Cooperative painting. twoorl.com - Twitter clone. dayfindr.com - Collaborative meeting scheduling. beerriot.com - Beer enthus...

Browser caching

Hi, I am developing a web site which uses lot of images.I would like to make all images are to be stored in browser's cache till some specified time.Now it is stored in browser's cache.However if we refresh the page in browser it is making request to server for particular resource.Server responds with 304 code(NOT MODIFIED).I want to av...

What are the candidates for a web-based project in the future?

Hi, Can you enumerate the list? Webbased SMS sender. ...

Concurrent license monitoring for a web page with JavaScript?

What is the good method to implement a cross platform CONCURRENT USERS monitoring for a .HTML page that contains a simple javascript application. The tricky part is that the web servers hosting this html page differ a lot, each customer has their own LMS/Web server, so web page could be running inside IIS or apache etc. ( I have no cont...

Multilingual Application in ASP.NET MVC - Best Practices?

Hello, I'm developing a web application using ASP.NET MVC (I'm new to the framework and actually quite new to web development in general). My application must support multiple languages - there's a bunch of countries for which I need the application to "speak" the local language. The UI concept is common - have flag icons somewhere, u...

Javascript read files in folder

Hi all, I have the following problem which i'm trying to solve with Javascript. I have a div with a backgroudn image specified in a css file, and i want my javascript to change that image periodically (let`s say every 5 secs). I know how to change that, the problem is that i have a set of images in a folder to choose from for the back im...

Is python a stable platform for facebook development?

I'm trying to build my first facebook app, and it seems that the python facebook (pyfacebook) wrapper is really out of date, and the most relevant functions, like stream functions, are not implemented. Are there any mature python frontends for facebook? If not, what's the best language for facebook development? ...

Automatic/default Opt in on forms

I've been struggling with something at work that I'm not really in the mood to argue about with anyone who has a say in changing it so I wanted to seek some feedback on the issue from people here. We've gotten in the habit recently of checking the opt-in box on our forms that we build for clients. I'm not sure if it's always at the beh...

Collapse/Expand Images

Ok so this is super basic. I just got done implementing the collapsible panel using the MS AJAX Toolkit and was wondering if anyone knew where to get the collapse and expand images that they use in their demo? One would think these images would be distributed with the toolkit...if so - where are they found? Any recommendations for colla...

A rattle between languages, technology and solutions.

Hi, I constantly find myself in a rattle between languages, technology and solutions when trying to choose a good "background" for designing and developing a business web application. What is the best approach to web programming in this situation? What technology, language and solution could be used in developing and maintaining a mode...

Multiple IE browsers

Possible Duplicate: Running IE6, IE7, and IE8 on the same machine IS there anyway to have IE 6.0, IE 7.0 and IE 8.0 all installed on the same machine? Using Windows XP? I am trying to test my web application and it must be able to run in IE 6-8 ...

It works on my machine....

I have uploaded a website to the internet. Firebug claims that no file is missing and yet on both IE and FF it doesn't look good as expected and also the script doesn't work (no errors). However, on my own computer it works perfectly fine. Here are the files. Any thoughts on why this happens? What's missing? EDIT: Ok, it works on any of...

Is it good idea to shift from Web Development to Windows Development

What do you think Is it good idea to shift from Web Development to Windows Development ...

Issues with pagination and sorting

Hi, I'm looking into situations in database-oriented web applications when one should rely on client side sorting of tables over sorting on the server side. One particular situation that is bugging me is pagination. When trying to paginate a large table (say 10000 rows), as well as sort it by a particular column, what would be the best...

Mimic 'slowness' of web server on local computer

Hi, Is it possible to somehow mimic the slower download speeds of my website, as if it is hosted on a web server, but from my localhost? It's hard to test things like Ajax loading icons when the content loads so quick from your local machine so I think this could help me out a lot? I was wondering if there was a tool that you could us...