Posted on November 29th, 2007 by Jans
Model-view-controller (MVC) is an architectural pattern used in software engineering. In complex computer applications that present a large amount of data to the user, a developer often wishes to separate data (model) and user interface (view) concerns, so that changes to the user interface will not affect data handling, and that the data can be [...]
Filed under: Web | 2 Comments »
Posted on October 18th, 2007 by Jans
This is an alternative to the image and audio captcha and it is much simpler than the other two methods.
1. Add an input field to your form, with some interesting name, for example ‘URL’.
<input name=”url” type=”text” value=””/>
2. Hide the input box using css so that users(genuine) cannot see it directly.
<style>
.style1 {
display: none;
}
</style>
<p class=”style1″><input name=”url” type=”text” [...]
Filed under: Css, HTML, PHP, Security, Web | 1 Comment »
Posted on September 18th, 2007 by Jans
AOL is launched a new collaborative multimedia story telling service called BlueString. The site ,is a Flex application that lets you pull in all your image, video, and audio content from across the web and mix them together into a multimedia slide show presentation. The shows can be embedded, shared, and edited by your friends.
BlueString’s [...]
Filed under: Web | No Comments »
Posted on September 18th, 2007 by Jans
Yahoo!’s the Exceptional Performance team has identified 13 rules for making web pages fast. Their best practices center around the rules for high performance web sites. Their Firefox add on tool YSlow can analyse your web site and tell you why it is slow based on the rules for high performance web sites
The 13 rules [...]
Filed under: Web | No Comments »