» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with How-To + 2.0

9 Tips to Smaller & Optimized CSS Files

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!

technology: dzone.com: tech links

Javascript Closures

Javascript closures are tricky yet powerful aspects of the language. John Resig recommends this article to learn about closures.

technology: dzone.com: tech links

Bubble menu javascript or playing with YUI's event delegation

This post illustrates the use of event delegation to create a "bubble" menu, with the Yahoo YUI library.

technology: dzone.com: tech links

10 Challenging But Awesome CSS Techniques

Nothing brand new, but a good summary and description of a few nice CSS tricks.

technology: dzone.com: tech links

How to automatically fade in all the pages of your website using jQuery, improving user experience.

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().

technology: dzone.com: tech links

How to create an image gallery with jQuery

How to create a simple image gallery with fade in, fade out and delay between image transitions.

technology: dzone.com: tech links

Intro to JQuery - part 2 - JQuery examples

This is a short document on how-to use JQuery API.

technology: dzone.com: tech links

8 practical tips to make your web pages faster

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.

technology: dzone.com: tech links

Intro to JQuery – basic tutorial

JQuery is a lightweight JavaScript framework that got a lot of attention lately so I decided to write few rows about it.

technology: dzone.com: tech links

Eliminating Postbacks: Setting Up jQuery On ASP.NET Web Forms and Managing Data On The Client

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.

technology: dzone.com: tech links

2-legged OAuth Javascript Function for YQL

An easy way to use YQL data in your javascript application.

technology: dzone.com: tech links

Grails Podcast Episode 69: Interview with Guy Naor, CTO of mor.ph

Listen to the Grails podcast interview and learn more about Grails deployment with the Morph AppSpace and Morph AppCloud.

technology: dzone.com: tech links

How to use unsafe code in C#

How to use unsafe,unmanaged code in .Net using CSharp(C#)

technology: dzone.com: tech links

Reusing Annotation Based Controllers in Spring MVC

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.

technology: dzone.com: tech links

How Web Development Created Blog Action Day

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.

technology: dzone.com: tech links

Google Translation API: Translate on server side using PHP

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.

technology: dzone.com: tech links

Step-by-step Guide for Getting Ruby Apps to the Cloud

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?

technology: dzone.com: tech links

Develop Web 2.0 apps using JPA, AJAX, and Dojo tools

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.

technology: dzone.com: tech links

10 Useful tutorials to learn Scriptaculous

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.

technology: dzone.com: tech links

Top 10 web development presentations on Slideshare

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.

technology: dzone.com: tech links

Introducing Lucene.Net

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.

technology: dzone.com: tech links

Step By Step - Using Silverlight to Access a WCF Service Hosted In a Console Application

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.

technology: dzone.com: tech links

How to optimize your blog for code samples plus some cool widgets/tools

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.

technology: dzone.com: tech links

The Great GWT Roundup

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.

technology: dzone.com: tech links

GWT: Building A Model

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.

technology: dzone.com: tech links

jQuery / Javascript - Customizeable Ajax pageination

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.

technology: dzone.com: tech links

Learn How to Create a jQuery Plugin

This screencast will give you step by step instructions for creating your first jQuery plugin.

technology: dzone.com: tech links

Java EE meets Web 2.0

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.

technology: dzone.com: tech links

How to Rotate Ads without Refreshing the Page using AdRotator and ASP.NET AJAX

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.

technology: dzone.com: tech links

Step by step guide for newbie to design a simple web application (part 1)

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.

technology: dzone.com: tech links

Objective C for iPhone programming.

Learn Objective C to develop next generation iPhone programs.

technology: dzone.com: tech links

Rest With Rails Part 2 : Serving XML, JSON and Atom

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.

technology: dzone.com: tech links

Adobe Flex! Next generation RIA Framework.

Learn Adobe Flex from scratch. Adobe Flex is next generation framework to develop Rich Internet Applications.

technology: dzone.com: tech links

40 Icon Tutorials for Photoshop

A collection of the best Photoshop tutorials for designing custom icons.

technology: dzone.com: tech links

Creating a Custom Validation Control in ASP.NET

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.

technology: dzone.com: tech links

Page 1 | Next >>