The World Wide Web (abbreviated as WWW or W3, and commonly known as "the Web") is a system of interlinked hypertext documents accessed via the Internet.

learn more… | top users | synonyms (1)

12
votes
2answers
80 views

Are repeated backgrounds in html more efficient if they are larger than 1px?

If there is a one-dimensional background that is repeated on a certain dimension, is there any mentionable difference in performance if the image is e.g. 1px wide versus 10 or 20 pixels wide?
10
votes
2answers
288 views

Standard web server interface equivalent to WSGI/Rack for Haskell

There are (de facto) standard web server interfaces for programming languages e.g. WSGI for Python, Rack for Ruby. Is there the equivalent thing for Haskell? I found two trials, Hack and HSGI, but am ...
9
votes
2answers
2k views

How do they do this - Mobile Site Added to Homescreen Appears as Standalone App

So I've only seen one website do this and I'm very curious to know how they do it. I'm using an iPhone 4 with iOS5 by the way. Go to http://m.funnyordie.com/ (Will Ferrell's sketch comedy site) on ...
9
votes
6answers
201 views

Put CSS and JavaScript in files or main HTML?

Although it is always recommended to put JavaScript and CSS code into appropriate files (as .js and .css), most of major websites (like Amazon, facebook, etc.) put a significant part of their ...
9
votes
6answers
199 views

How do I ensure that my website is accessible to the disabled?

How can I ensure (or try to make) web access available for all - who may have a variety of disabiltes? Any advice for any standards or web sites that could give me some pragmatic advice for the ...
7
votes
2answers
82 views

Detecting mouse support

This is the opposite of detecting touch support in browsers. How can I detect if a browser has mouse support? Chrome for desktop should return true, Safari for iPad should return false. I'm thinking ...
7
votes
3answers
135 views

Where should I place sensitive files so that they are read-able by PHP scripts?

I am on a Parallels/Plesk VPS host, and this is a really newbie question. The webroot is at: /var/www/vhosts/my-domain-name/httpdocs There is also a path called: ...
6
votes
4answers
70 views

jQuery- .css() not working for an input

This should be a really simple problem, but I can't quite figure out what I am doing wrong. I am trying to access the CSS property 'border-bottom' like this: var temp = ...
6
votes
6answers
178 views

Best way to integrate Python code with HTML

This is the first time I've tried to integrate Python and HTML. I have mod_python installed on my Apache server, and I'm wondering if there's a specific way I should run a script, or if I should (can ...
6
votes
1answer
82 views

Is there any Html5 Application cache loader tool?

Is there any tool that can load an application cache to the browser cache once you have the application cache in hand? say my app cache manifest (say example.appcache) contains the following content ...
6
votes
3answers
192 views

Simple Java Graphing API for use in Vaadin Web App

I have a simple Vaadin Web App and I am looking for a simple graphing API that will only have to handle a minimal amount of data(at most several hundred data points) and will allow me to display ...
6
votes
1answer
209 views

Streaming webcam data to a webpage

My intention: Stream webcam feed to a webpage. Have buttons that talk to a Python program. I'm planning on using OpenTLD (AKA Predator) to get information about a moving speaker via webcam. Then ...
6
votes
3answers
334 views

what does web stack mean?

especially "stack" part
5
votes
6answers
81 views

In a perfect world, all the graphics and layout are defined in stylesheets - but not <img> src? Shouldn't be?

The purpose of CSS is to help web developers to define and apply graphics and layout, separated from the actual content. However, it seems like CSS can tweak pretty much anything (graphics wise) on ...
5
votes
5answers
180 views

How to you check the status or kill an external process with python

I have a python script that runs on my web server. The main function is called then when it returns it just sleeps for a few seconds and gets called again. It's purpose is to pick up any new ...
5
votes
2answers
122 views

Is anything wrong with using Sinatra to develop a full website?

I am in the process of developing a new website. The level of complexity of the site would be somewhere on the order of Yelp.com. I am pretty new to Ruby but decided I want to develop the backend ...
5
votes
3answers
111 views

How do I store a Python object in memory for use by different processes?

Here's the situation: I have a massive object that needs to be loaded into memory. So big that if it is loaded in twice it will go beyond the available memory on my machine (and no, I can't upgrade ...
5
votes
4answers
107 views

Does browser rendering and JavaScript execution happen simultaneously?

For example, if I have this: $('#button').click(function() { $.get('/question', function(data) { $('#question').html(data); $('#question').dialog( ... ); }); return false; ...
5
votes
4answers
80 views

What is this chart called? How do I reproduce it in a web browser?

I'm perfectly aware this is a google away. Unfortunately I don't know the name of the chart I'm looking for. So I'm unable to make a reasonable search for plugins or API's. Please be kind. What is ...
5
votes
1answer
140 views

web based remote desktop for connecting to android

Is there any code available (open source) that enables web based remote connection to an android device. ie logmein, pcanywhere type apps. I have seen this on a few apps on the market, but I need to ...
5
votes
4answers
257 views

Generating and reading barcode

I've built an e-shopping website for a big company which has country offices. What i want to do is the following Generate barcode via PHP before sending package to country offices of company When ...
5
votes
2answers
222 views

Content disappears for fraction of a second on offline web app load

I've observed this on iOS 4.3 to 5.0. When you create a even a simple offline web app, meaning one HTML file + few assets such as CSS and JS (all present in the cache manifest), it works offline (I ...
5
votes
4answers
73 views

How do we cache HTML “fragments”?

I have a page which looks like this: <!doctype html> <head></head> <body> <div>Content 1000 chars</div> <div>Content 1000 chars</div> ...
5
votes
3answers
171 views

Website Monitoring Libraries

There has been some talk of Website performance monitoring tools and services on stackoverflow, however, they seem fairly expensive for what they actually do. Are there any good opensource libraries ...
4
votes
4answers
94 views
+100

Embedded web server with integrated XML parser

I have a requirement to integrate a web server into an embedded device running Linux and am in the process of evaluating OSS and commercial offerings. System requirements at not particularly tight: - ...
4
votes
2answers
116 views

What is the best Open Source Web Crawler Tool written in Java? [closed]

What is the best Open Source Web Crawler Tool, written in Java.
4
votes
4answers
57 views

Align two div's to left

Basically what i want to do is this: http://jsfiddle.net/wQBq5/20/ without using tables.
4
votes
3answers
115 views

Language selection of web site

This question might me hilarious obvious but ... I have searched the web and stack overflow but did not find a satisfying answer. What makes a good start for adding language selection to a web site? ...
4
votes
1answer
189 views

WCF web service: response is 200/ok, but response body is empty

I am creating a WCF web api service. My problem is that some methods return a 200/OK response, but the headers and the body are empty. In setting up my web service, I created an ADO.NET Entity Data ...
4
votes
3answers
89 views

prevent API “spoofing” or “hacking”

I have created this web app and I created have this API. For the sake of this example, let's keep it simple: My app needs to know how many "credits" the user has. The api has a call get_credits ...
4
votes
1answer
72 views

Send information from one page to another with OpenSSO/AM and the get method

I have a web site protected by an OpenAm Server and accessing pages, after authentication, works fine. But when I try to redirect to a page and pass information with the get method, I obtain a ...
4
votes
5answers
120 views

Why do we need to escape the ! < > : = - in php regular expressions?

http://php.net/manual/en/function.preg-quote.php: The special regular expression characters are: . \ + * ? [ ^ ] $ ( ) { } = ! < > | : - However this page says that special characters are [ ...
4
votes
3answers
137 views

Web install builder software

Web installers are getting more popular every day - you download just a small bit of installation and it pulls the remaining files from webserver. But with all popularity, I couldn't find any ...
4
votes
2answers
199 views

Filling in a web page with Delphi using TWebBrowser

I use Delphi 7 on Vista. So far, I have implemented a simple browser (using TWebBrowser) but I would like to automatically enter information when the web page asks for it. For example, I want to tell ...
3
votes
1answer
49 views

I can't figure out where to start with GIS application development, or which technology to select

I am very new to GIS development, and to be be frank I have no background about it at all. I searched the web but the tutorials I found seemed to assume the reader has some background information. ...
3
votes
1answer
47 views

Multiple Small DOM operation vs One large DOM operation

This is more a question about best practices. When trying to apply MVC-like design pattern in a web application, I often find myself wonder how I should go about updating the View. For example, if I ...
3
votes
1answer
50 views

Network traffic simulation test

I've got a PHP site up and running, and the db is mysql. before launching the site, I would like to test the traffic handling. Now am assuming that there are soe softwares that would simulate the ...
3
votes
0answers
24 views

Get next page with feedburner

Alright, so I'm trying to get the next feed page from a Feedburner RSS feed. I know with a standard wordpress feed you can do something like: www.mysite.com/?feed=llama&paged2 to get the second ...
3
votes
2answers
41 views

Use of Options in RESTful Web services

In RESTful web service, is OPTIONS method is supposed to be used to provide a list of available services? If yes, is that mandatory, or just a good programming practice. Thank you
3
votes
1answer
114 views

Bing Api returns 41 results for simple word “Game”

I am trying to implement bing search in my site. I need search result in JSON format. This is the URL I am using ...
3
votes
4answers
69 views

Jquery hack to strikeout part of a string entered in a text-box

I am trying to do the following: A jumbled sentence is given and the user has to correct it I have the jumbled sentence written inside a div and there is a text-box where in i get the user's answer. ...
3
votes
1answer
141 views

Custom exceptions handling - java Web Services

Its my first time posting here so please be patient and correct me whenever necessary... I am building simple web service-based application using NetBeans with GlassFish. NetBeans does help a lot in ...
3
votes
2answers
109 views

How do I copy a HttpRequest to another web service?

I have two identical web services currently installed on the same PC for testing purposes. A request that is received by the first service, is suposed go to the second one as well. My intention was to ...
3
votes
3answers
35 views

Online HTTP logging/debugging tool?

Is there an online HTTP debugging tool online that will record the requests that are made to it? I'm using a 3rd-party API that sends HTTP requests to a URL I specify to give updates on status. I ...
3
votes
3answers
212 views

JBoss error report: HTTP Status 404 - Servlet is not available

I'm trying to create a very basic web project called "web" using MyEclipse and JBoss 5 as an application server. I've created one package called "pages" and inside it one servlet called ...
3
votes
3answers
119 views

Flex web application: prevent framerate drop when window is invisible

So there's been a new "feature" in the flash player since version 10.1, which reduces the player's framerate to 2 fps when the application window is out of view. This is good news for performance, but ...
3
votes
0answers
93 views

looking for a recommended open source Web Report engine to integrate with PHP [closed]

We are looking to develop a flexible user configured web report to integrate with our PHP website, we have a aggregated all the data to a single table with 50 columns and we are looking to provide ...
3
votes
1answer
56 views

m.subdomain - am I on the right track of understanding?

I gotta a question, but not sure if I understand it right so here it goes:-) for example take google.com If you browse to google.com on your smartphone it navigates to m.google.com This I understand ...
3
votes
1answer
57 views

searching a solution to get/post DOUBLE DATA SUBMISSION [closed]

Possible Duplicate: Avoiding form resubmit in php when pressing f5 I need help on how to prevent the DOUBLE DATA SUBMISSION to mysql database. This usually occurs when after the submit, ...
3
votes
2answers
130 views

Is there a CSS way to position an HTML element vertically following the golden ratio?

I want to position an HTML element in the horizontal middle and vertical golden ratio with CSS only. The height of the element must be absolutly flexible, so I can not just set the top-attribute and ...

1 2 3 4 5 26