Smaller and optimized CSS files are important for your website's loading time and bandwidth. The use of these tips will improve your CSS coding productivity and skill and have a positive impact on your loading time and bandwidth expenses!
Javascript closures are tricky yet powerful aspects of the language. John Resig recommends this article to learn about closures.
This post illustrates the use of event delegation to create a "bubble" menu, with the Yahoo YUI library.
This automatic page ‘fade in effect‘, is the result of a combination between CSS and JavaScript techniques. Basically you hide all the content of the page, and, when the page is completely loaded inside the browser, you trigger an automatic fadeIn().
In this post I'll show you 8 practical tips which helped me to get a B grade in YSlow! for web pages that I develop.
JQuery is a lightweight JavaScript framework that got a lot of attention lately so I decided to write few rows about it.
This is a follow-up to a prior post, Keys to Web 3.0 Design and Development When Using ASP.NET. Now I want to focus solely on getting jQuery and client-side data managmeent working with ASP.NET 2.0 without ASP.NET AJAX or ASP.NET MVC.
Listen to the Grails podcast interview and learn more about Grails deployment with the Morph AppSpace and Morph AppCloud.
Just because you use annotations in your Spring MVC project doesn't mean you can't easily extract super classes from your controllers to make controller re-use super easy.
Building a site that can withstand a huge surge of traffic on one day takes considerable planning and work, as well as a little creativity. Collis has shared with me some of the inner workings of the Blog Action Day site and how they built the website to provide a platform for action, bring a community together and handle torrents of traffic on one day.
As you know, there is google translate ajax api which can be used on client side translation using it's javascript interface. But how do we do translation on server side languages such as PHP, Java, ASP.NET or Rails. There is a task for us to translate multiple records on the database into 6 different languages as cron job. Similar problems may face you. So here is the solutions that you can use for your servers-side google translations.
In this blog post, CohesiveFT's Yan Pritzker shows you how to quickly get your Rails app from your local repo, or from GitHub, up to Amazon EC2 in a few easy steps.
CohesiveFT's Elastic Server platform is a web-based factory without all the noise and occasional grime. Inside the factory, you can create a server "blueprint" that is created from components in our library, or components you upload yourself. Your custom-assembled server can be deployed to a variety of virtualization and cloud environments. Did we mention the Community Edition is free?
This article will explain how to create a simple end-to-end Web application using the JPA, AJAX, and Dojo tools available in IBM Rational Application Developer for WebSphere Software Version 7.5.
This is a list of ten useful articles about Script.aculo.us which includes practical, basic and advanced tips to help you to implement quickly modern solutions for your web projects.
A collection of 10 great development slide shows that can be found on the presentation website slideshare. Includes presentations about Javascript, PHP, Rails and Python.
Lucene.Net is a high performance Information Retrieval (IR) library, also known as a search engine library. Lucene.Net contains powerful APIs for creating full text indexes and implementing advanced and precise search technologies into your programs. Some people may confuse Lucene.net with a ready to use application like a web search/crawler, or a file search application, But Lucene.Net is not such an application, it a framework library. Lucene.Net provides a framework for implementing these difficult technologies yourself. Lucene.net makes no discriminations on what you can index and search, which gives you a lot more power compared to other full text indexing/searching implications, you can index anything that can be represented as text. There are also ways to get Lucene.net to index HTML, Office documents, PDF files and much more.
In our projects, we often have a requirement of accessing Cross Domain Services in Silverlight. There are certain steps to be followed to able to do so. But what if the service is hosted in a console application or a windows service? In this article, we will follow a step by step approach and discuss how to create and consume a WCF Service hosted in a console application using Silverlight. We will also explore how to provide a Policy File at a given URI using REST.
Recently I have been posting more and more code samples in my blog and wanted to optimize my blog for code snippets . After some searching I found these set of widgets/tools very useful. This post describes how to use
Blogger Syntax Highlighter to make your code snippets look nice, how to change the width of your blog, How to post an image in its original size to your blog, how to add a Tag cloud, how to add social bookmarking links, how to ping search engines and other ping services, how to add the dzone widget and how to track your visitors.
Almost all these widgets/tools are related to blogger expect for ones like statcounter and PinPoll-n-Ping.
Over the past two months or so we here at the web builer zone, thanks to Manning Publishing, have been publishing a comprehensive series on GWT. We recently published the last in the series and I thought that it would be a good idea to create a sort of index of all of these articles.
The model layer of a GWT application has to be a little bit smarter than the model in many traditional web applications. It needs to be responsible for notifying the view layer of changes, as well as for receiving updates to its own structure. In desktop Java development, this is accomplished through the use of PropertyChangeEvents and PropertyChangeListeners that bind the data from the model to the view components. The view layer "listens" for changes to the model and updates itself accordingly, using the Observer pattern. This can be done in GWT development as well.
So another jQuery/Javascript request came up from the same irc-channel - this time it’s about Ajax pagination. As with my last example the “serverside” of things is simulated with two .php-files (posts.php, server.php). The pagination is *very* customizable through the use of callbacks.
Many principles that underlie the Java EE platform's design — especially, the use of synchronous APIs — don't apply to the requirements of Web 2.0 solutions. This article explains the disparity between the Java EE and Web 2.0 approaches, explores the benefits of asynchronous designs, and evaluates some solutions for developing asynchronous Web applications with the Java platform.
The AdRotator control in ASP.NET is extremely handy when it comes to randomly displaying advertisements on your site. However the ads are rotated only when the user refreshes the page. In this article, we will explore how you can easily rotate ads at regular intervals, without the user refreshing the page.
Design a web application requires hard work and knowledge of HTML, CSS, database and javascript. With this step-by-step guide I want to illustrate some basic tips for newbie to design their first (really simple!) web application using PHP, MySQL, Ajax features and MooTools.
Every resource has a representation, in fact, a given resource can have more than one representation. Users accessing our task manager will want to see an HTML page listing all their tasks, or they may choose to use a feed reader to subscribe to their task list; feed readers expect an Atom or RSS document. If we're writing an application we would want to see the tasks list as an XML document, or JSON object, or perhaps pull it into a calendar application in the form of an iCal list of todo and events. In this section we're going to explore resources by looking at multiple representations, starting with HTML and adding XML, JSON and Atom representations for our tasks list.
Learn Adobe Flex from scratch. Adobe Flex is next generation framework to develop Rich Internet Applications.
The BaseValidator class defines the basic implementation needed for all Validation controls. There are 6 Validation Controls included in the ASP.NET 2.0 and ASP.NET 3.5 framework, however with a few shortcomings. In this article, we will explore how to create a custom validation control in ASP.NET and provide both Server and Client Side Validation for the same.