web-development

Relation between web design, interface design and web development in the professional world ?

Hello, I'm a student from france, and I'm passionated by building websites. I don't care if it's about interface design, web design or web development, I love them all! Although these domains are very related to each other, the educational world seems to make a huge difference between them so there are no studies having all of them (in ...

Website In Need of Separate Merchant Account?

I have a question about developing a website efficiently and legally. I have been taking orders through the phone for the past few years and want to now take orders online through my website. I have heard that it is not ECI compliant to use the existing merchant account, but instead need a new internet merchant account. From those tha...

What test methods do you use for developing websites?

There are a lot of testing methods out there (blackbox, graybox, unit, functional, regression...etc.). Obviously, a project cannot take on all testing methods. So I asked this question to gain an idea of what tests to use and why should I use them. You can answer in the following format Test Method - what you use it on i.e Unit Tes...

Is there a natural language web application framework?

Is there a natural language web application framework? Maybe something like http://inform7.com ? Maybe something like: Make a website called My_homepage at my_homepage.com The homepage for My_homepage is called mainpage mainpage has a title of 'Home' mainpage has text at the top saying 'My homepage' ...

Accessing local django webserver from outside world

I followed the instructions here to run Django using the built-in webserver and was able to successfully run it using "python manage.py runserver". If I access 127.0.0.1:port locally from the webserver, I get the Django page indicating it worked. I realize the Django webserver is not a production server, but it's important for me for t...

Handling tags like categories?

Hello! I want to use tags in my site. How to handle the tags most efficiently? Is it OK to put every tag in a table (like categories) and than in the post just reference them with their id? (like in wordpress) ...

When Should I Go For HTML5 & CSS3?

Hello, There is a lot of buzz about HTML5 and CSS3. How do I know that it's time to get started with them and use them straight away in my projects or how far are we from using them? Update: I don't want to apply the rules of: Graceful Degradation Progressive Enhancement I know if this is the case, then we can use them today. ...

How to get the value of a multiple option dropdown?

Say I have this dropdown: <select name="color" multiple="multiple"> <option value="red">Red</option> <option value="green">Green</option> <option value="blue">Blue</option> </select> So basically more than 1 color can be selected. What I'd like is that if a user selects red, and then clicks green, i'd like a function to be called each...

web and flex developer carrer question ......

i'm a student in computer science and been learning flex and actionscript 3.0 since 4 months. i know its easy to program in mxml and actionscript 3.0 is pretty easy with bunch of classes. When i try to code in c++,c in some contests, my algorithms go weak, no efficiency and i'm getting scared!! since i'm a student, i've no experienc...

what is the use of Creative Commons Wiki or TRUSTe ?

hi, what are the main use of these services. Shall i use this for my blog? What is the necessity to show that icons? thank you. ...

Where should I upload my code for others to get involved in?

I have made my own php MVC framework and have also written its documentation. It is about 80% complete. Now basically I am looking for a way so that other developers should be able to analyze my code and possibly join hands for its further development and improvement and also they should be able to browse through the documentation (html ...

making a list of centered text aligned next to image with CSS

I'd like to make a (non-numbered or bulleted) list of items, where each item has some text that is adjacent to an image. It's important that the text be vertically aligned to the center of the image, and that there will enough top and bottom padding so that each pair of text and image do not vertically overlap. I tried using something ...

Structure and tools for large java application?

Whats the best "way" of creating a relatively large java web application? Im thinking about eclipse as IDE, but version control systems, build tools and documentation along with issue tracking and stuff? Github? It's intended to be a "one man" project but I want it to be fully documented so other people easily can join and eventually it...

twisted.web2 and spawining threads for synchronous code?

So, I'm writing a python web application using the twisted web2 framework. There's a library that I need to use (SQLAlchemy, to be specific) that doesn't have asynchronous code. Would it be bad to spawn a thread to handle the request, fetch any data from the DB, and then return a response? I'm afraid that if there was a flood of requests...

Search engine friendly URLs that contain numbers... good or bad?

I made a website that has a hierarchical structure and has search engine friendly (SEF) URLs like: /seeds-1/ /seeds-1/fruits-2/ /seeds-1/fruits-2/black-berries-5/ /seeds-1/fruits-2/blue-berries-6/ /seeds-1/fruits-2/strawberries-7/ /seeds-1/vegetables-3/ /seeds-1/vegetables-3/potato-8/ /seeds-1/vegetables-3/onion-9/ /seeds-1/vegetables-3...

How to create FTP Site in IIS 7 using WMI and C# from ASP.Net Web Application?

Hi all, I am working on a website provisioning system using IIS 7 (and IIS6) and using C# as development Tool (under .Net 3.5) using WMI. I want to create FTP Site via code in C# using WMI. I cant want to use MWA(Microsoft.Web.Administration) because I have to support older version a.k.a IIS 6 as well. I believe its possible via WMI. ...

get client IP for webservice on java 6 embbeded http server

Hi, I am implementing web service on java 6 weight light (embbeded) HTTP server jax-ws-web-services-without-java-ee-containers - for testing purposes - I want to get the client IP for each request. I tried to declare web service context in my web service class: @Resource WebServiceContext wsContext; then use its message context in ...

301 Redirect in asp.net

I have just uploaded a new website www.tapasya.co.in. When I tried to access, it showing me a blank page. But when I tried using the complete path of the home page http://www.tapasya.co.in/Web%20Pages/Home.aspx , its working. I think, I have figured the problem, which might be occuring. I have to put this page at the root folder, to acc...

Is it possible to test wait time for page access with Selenium IDE?

I want Selenium IDE to fail a test if the time to access a page is more than 60 seconds and log the time it took to access the page. Is it possible to do that? ...

How do you make good use of multicore CPUs in your PHP/MySQL applications?

Hi, I maintain a custom built CMS-like application. Whenever a document is submitted, several tasks are performed that can be roughly grouped into the following categories: MySQL queries. HTML content parsing. Search index updating. Category 1 includes updates to various MySQL tables relating to a document's content. Category 2 inc...