SlideShare a Scribd company logo
1 of 19
100 Essential Web Development
    Tools
•   Posted in TOOLS
•
•   60 comments »

    By Neil Skirrow

    As web technologies constantly advance, the skills a developer is expected to
    have are constantly increasing. Web users are beginning to expect Ajax
    interfaces, charts and graphs and a whole host of other tricks and features. This
    means web developers not only have to be skilled with HTML and a server-side
    programming language such as PHP or Perl, but they now also need to be
    JavaScript gurus, Flash experts, and skilled graphic designers.

    When developing your applications, you simply can’t create every element
    yourself. A graph or mapping solution is an application in itself, so no single
    developer or small team can create such components while continuing
    development of the primary application. This means programmers have to use
    third-party solutions — and thankfully there are thousands of such solutions to
    make our lives as developers that little bit easier.

    In an effort to save you a few hours crawling the web in search of the perfect
    third-party solution, we have compiled this list of essential development
    resources.



    1. Functions and
    Classes
    You can find a whole array of pre-made classes and functions to help save
    development time. A great resource directory for finding the perfect PHP classes
    is PHPClasses.org. For those of you who use Perl, you should be familiar
    with CPAN.


    CAPTCHA
    CAPTCHA (Completely Automated Public Turing to tell Computers and Humans
    Apart) is the term used to describe the use of images which humans can identify,
in order to ensure an automated bot/computer program isn’t accessing your
application. The ideal use for this is in contact forms to ensure only humans can
send messages — therefore eliminating automated spam and junk messages.

The following CAPTCHA systems can be easily integrated with your applications:

   •   reCAPTCHA
       One of the most popular CAPTCHA systems that helps to digitize books,
       newspapers and old time radio shows by using CAPTCHA inputs to help
       translate. There is also a Perl module available for reCAPTCHA.




   •   Securimage
       Securimage is a free open-source PHP CAPTCHA script for generating
       complex images and CAPTCHA codes.




   •   freeCap
       A GPL CAPTCHA script to stop spam.
   •   HN CAPTCHA
       A CAPTCHA script written in PHP, licensed under LGPL.


Date Manipulation
Manipulating dates in your applications can be a time-consuming process. PHP
and Perl include numerous functions for automating the process, but often don’t
offer all the required functions.

The following date manipulation functions can be easily integrated with your
applications:
•   PEAR Date
       Generic PHP classes for representation and manipulation of dates, times,
       and time zones without the need for timestamps.
   •   Date Class
       This PHP class allows you to add or subtract periods from dates, and
       calculate the difference between two dates.
   •   Date manipulation in PHP
       A PHP tutorial on PHPBuilder.com, guiding you through a number of
       common date manipulation processes.
   •   Date::Calc Perl Module
       A powerful Perl module for date calculations based on the Gregorian
       calendar.


Image Manipulation
Manipulating images is a common requirement. Whether you want to resize your
images while maintaining aspect ratios, or add watermarks, the process can be
entirely automated using a server-side language like PHP or Perl.

   •   Image Manipulation Class
       Resize, flip and rotate images in PHP.
   •   PHP Thumbnailer
       A lightweight image thumbnail tool.
   •   PHP GD
       GD is a powerful image manipulation library.
   •   Perl GD
       GD image manipulation module for Perl.


Form Validation
Form validation is critical to ensure users enter form information in a suitable
format, and is especially important to protect your application against attacks.

   •   validaForms
       A PHP form validation class.
   •   User Input Validation Class
       A basic PHP validation class for user input.
   •   Validate Form Fields Script
       A basic PHP script for form validation.
   •   WWW::FieldValidator
       A simple Perl form validation module.
Password Validation
Password validation is important to ensure your users choose passwords that
offer an adequate level of security to prevent their accounts from being
compromised.

   •   Strength Test
       A useful PHP function for password strength testing.




   •   Password Checker
       A PHP class for generating and testing the strength of passwords.
   •   Data::Password::Check
       A useful Perl module for password checking.



2. Ajax and JavaScript
Ajax is a web methodology that uses JavaScript to make HTTP connections to
retrieve and process data for the purpose of dynamically updating the content of
a static web page. Ajax enables you to update content within a web page without
reloading the entire page, thus reducing load times and server loads, making
your web pages more interactive and intuitive. A great resource for Ajax tools
is MiniAjax.


Auto Suggest
Auto suggest or autocomplete tools are usually applied to text inputs like search
fields. When a user begins their input, the input field shows a list of options that
match what they have entered so far. This enables users to enter their input
more quickly, and can also help them enter terms that match search data that
are more likely to return relevant results.

   •   Facebook-Style Autosuggest
       A great Facebook-style auto suggest tool which supports multiple
       selections.
•   Autosuggest / Autocomplete with Ajax
      A great auto suggestion tool which can use XML or JSON data sources.




  •   Ajax.Autocompleter
      A very flexible autocomplete powered by script.aculo.us.
  •   Adobe Labs Spry Auto Suggest
      A useful autosuggest tool provided by Adobe Labs.
  •   Google Suggest Style Filter
      An autocomplete data filtering tool.


Calendars
Ajax calendars are extremely useful when you need your users to enter a date.
They reduce confusion over date formats, and enable users to easily find the date
they are looking for rather than typing a date format string.

  •   Vista-Like Ajax Calendar
      A great Ajax calendar that uses Mootools.
•   JS Calendar in DHTML Suite
      A powerful calendar tool that supports features like multiple connected
      calendars.




  •   AJAX Calendar with PHP and MySQL
      An open source Ajax calendar tool.
  •   Super AJAX Calendar
      A PHP and mySQL Ajax calendar.
  •   dhtmlxScheduler
      A powerful events calendar and scheduler.


Sliders
Ajax sliders enable users to use an interactive draggable element to select values.
These are very useful for features like colour pickers as they enable users to
’slide’ through a range of colours to select the one they want.

  •   Accessible Slider
      A well-coded and nicely-designed slider tool that features range sliders.
•   Phatfusion Slider
       An Ajax slider tool with a “snap to steps” feature.




   •   AJAXEngine Sliders
       Sliders that are part of the AJAXEngine project.
   •   Slider Using PHP, Ajax And Javascript
       A basic, but useful, Ajax slider tool.
   •   WebFX Slider
       A simple slider tool licensed under Apache Software License 2.0.


Data Grids
Ajax data grids enable you to display data in a table, but with the benefit of
features like column sorting and pages without the need to reload the entire
page.

   •   Grid3
       A useful data grid tool which is part of the Ext JS library.




   •   dhtmlxGrid
       A powerful data grid tool that includes column sorting and search
       functionality.
•   Unobtrusive Table Sort Script
       A data grid tool that includes multiple column sorting.
   •   AJAX Data Listings Engine
       A powerful open source PHP data grid tool for use with mySQL.
   •   TableKit
       A data grid tool based on the Prototype JavaScript framework that features
       field editing.


Draggable Content
Ajax-based draggable content features can be very useful when used
appropriately. Such tools enable users to reorganize a page to suit their needs,
and can also serve as a basis for an interactive feature like a shopping basket.

   •   Draggable Content Scripts
       dhtmlgoodies.com provides numerous draggable content scripts, including
       an image cropping tool and a sortable list script.




   •   DragResize
       A great tool for draggable content with resize functionality.
•   Drag & Drop Sortable Lists
       A simple tool for creating sortable lists.
   •   Scriptaculous Draggable
       A powerful draggable content tool which is part of the script.aculo.us
       framework.


Image Enlarging
Image enlarging scripts, similar to JavaScript light boxes, enable the user to
enlarge or zoom in on an image chosen from a set of thumbnail images.

   •   Highslide JS
       A great tool for managing image enlarging and modal windows.




   •   FancyZoom
       A useful JavaScript image zoom tool.
•   TJPzoom 3
      A great image magnifying tool.
  •   Ajax Script To Scale Images
      A basic script for showing enlarged versions of thumbnails.


Galleries and Slideshows
Image galleries are very useful when you have a collection of images to show,
they allow users to easily browse your images, and features like slideshows allow
users to sit back and enjoy watching your images.

  •   minishowcase
      A simple Ajax/JSON image gallery.




  •   Animated JavaScript Slideshow
      A very lightweight JavaScript slideshow with animated captions.




  •   Hoverbox Image Gallery
      A simple gallery with mouse-over image viewing.
  •   TripTracker
      A lightweight image viewer with slideshow.
•   Agile Gallery (Ajax Version)
       A simple image gallery tool.


Star Ratings
Star rating scripts allow users to rate items through an intuitive and attractive
interface, which is an improvement over typical drop-down menus or radio
buttons.

   •   Starbox
       A flexible star rating system using Prototype.




   •   Unobtrusive AJAX Star Rating Bar
       A useful PHP star rating tool.




   •   CSS: Star Rater Ajax Version
       A simple Ajax star rating tool.


Colour Pickers
If you want to let users choose colours in your application, it’s better to present
them with an interface rather than asking them to enter a HEX code. Colour
pickers allow users to choose colours from a colour palette which then generates
a HEX code for use in your HTML.

   •   jscolor
       A simple pop-up colour picker.
•   JavaScript Color Picker
      A colour picker that handles RGB, HSL, and Hexadecimal values.




  •   Tigra Color Picker
      A very basic colour picker.
  •   Photoshop-like JavaScript Color Picker
      A colour picker that includes hue and saturation options.
  •   ColorPicker – jQuery Plugin
      A jQuery colour picker plugin with multiple display options.
  •   DHTML Color Picker
      A well designed colour picker.


Progress Bars
Progress bars are very useful when handling user uploads or pages which can be
slow to load; they keep the user informed that progress is being made and that
the page is loading.

  •   jsProgressBarHandler
      A flexible and well designed progress bar tool.
•   YUI Loading Panel Widget
      An attractive loading bar tool.




  •   Simple Javascript Progress Bar with CSS
      A simple, but useful, progress bar tool.
  •   Uploadify
      A jQuery-based file upload tool with progress bar.



3. APIs
An API (Application Programming Interface) is a set of program functions which
can be accessed by another application. One example is a currency conversion
API that retrieves currency conversion data by allowing the user to enter a base
currency, an amount, and the desired result currency, which returns a result via
the API.

  •   Alexa Top Sites
      This API provides access to lists of web sites ordered by Alexa Traffic Rank.
  •   bit.ly API
      A useful API for the bit.ly URL shortening service.
  •   Blinksale API
      Enables you to access Blinksale data such as invoices and customer data.
  •   FoXRate
      A basic currency conversion API.
  •   eBay API
      eBay’s API which allows you to submit items to be listed and obtain listing
      data.
  •   Twitter API
      The Twitter API allows you to have access to Twitter data, including user
      and status information.
4. IP Locations
Finding out where your visitors are located can be valuable from a development
standpoint. It can help you understand your visitors so you can design your site
to better suit their needs. IP location information can help you determine where a
user is located, enabling you to display content in the their language. You can
also optionally customize other information such as currencies and shipping costs.

   •   OpenCrypt IP Location API
       A hosted API service for determining user location by country.




   •   IP Details
       A PHP class for determining geographical locations based on IP address.
   •   GEO-IP
       A free IP to country database.



5. Charts and Graphs
Charts and graphs enable you to display complex data visually. This is useful for
example when trying to determine information like daily pageview counts from
detailed statistical logs, enabling the user to immediately see how the data varies
over a period of time.

   •   amCharts
       A powerful Flash charts tool which supports 3D charts and the ability to
       combine different graphs.
•   FusionCharts
      A well designed and stylish 3D charts tool.




  •   XML/SWF Charts
      A highly customizable Flash charts tool.
  •   JFreeChart
      A free Java-based charting tool.
  •   pChart
      A powerful PHP class for building attractive charts.



6. Maps
Once you are using IP location tools like those listed above, you will have a
collection of user location data. What better way to display it than with an
interactive map. Interactive maps are also useful for understanding user location
data such as sales information, for example, when you receive delivery and billing
address info from a user.

  •   amMap
      An interactive mapping tool which includes drill-down functionality.
•   Google Charts API
      A great mapping tool, though limited to a small map size.




  •   Flashmaps
      A great collection of different Flash mapping tools.



7. Audio Players
When used well, playing audio on your web site can be a great way of setting a
mood or getting a message across.

  •   XSPF Web Music Player
      A Flash-based open source audio player which includes playlist support.



  •   Flash MP3 Player
      A free PHP and Flash MP3 player.
•   TSPlayer
      A Flash-based skinnable MP3 audio player.
  •   E-Phonic MP3 Player
      A lightweight skinnable MP3 audio player with real-time visualization
      effects.



8. Video Players
Video content is now becoming a standard, but getting the right video player is
very important. Video content is the ideal, and often expected tool for promotion,
so getting a player which suits your site and needs is now a critical design and
development choice.

  •   OS FLV
      An open source and well featured Flash video player.




  •   Flowplayer
      A full-featured and highly customizable Flash video player.
•   JW FLV Media Player
      A very powerful and flexible Flash video player.
  •   FLV Player
      A stylish and customizable Flash video player.



9. Video Conversion
Video conversion/encoding can be a tricky business. Videos can be in a wide
range of formats but most players only support a handful of those. If you don’t
have a server which supports ffmpeg, converting videos to a format suitable for
your player is usually an offline and manual task.

  •   OpenCrypt Video Conversion API
      A powerful video conversion API for generating FLV video files.
  •   Hey!Watch
      An online video encoding platform.
  •   Online FLV Converter
      An online FLV video converter.
  •   FlashVideo Module API
      A Flash video encoding API targeted to the Drupal community.



10. WYSIWYG Editors
WYSIWYG (What You See Is What You Get) editors enable you to offer an HTML
editor when users enter information, for example, in content management
systems, or for entering comments or reviews. These editors enable users to style
and format data without the need to understand HTML.

  •   TinyMCE
      A lightweight yet powerful JavaScript WYSIWYG editor.




  •   XINHA
      A fully featured and open source WYSIWYG editor.
•   NicEdit
      A simple and lightweight WYSIWYG editor.
  •   openWYSIWYG
      An open source, cross-browser WYSIWYG editor.
  •   CKEditor
      A well designed and feature-rich WYSIWYG editor.


About the author
Neil Skirrow is a professional web developer with over 14 years programming
experience and is the Managing Director of ionix Limited, a UK software
development company that develops the OpenCrypt Membership Software.

More Related Content

Viewers also liked

Essential Windows Phone App Developer Tools
Essential Windows Phone App Developer ToolsEssential Windows Phone App Developer Tools
Essential Windows Phone App Developer ToolsDVLUP
 
Clustering Multiple Instances in Cold Fusion
Clustering Multiple Instances in Cold FusionClustering Multiple Instances in Cold Fusion
Clustering Multiple Instances in Cold FusionMindfire Solutions
 
Everyday Tools for the Semantic Web Developer
Everyday Tools for the Semantic Web DeveloperEveryday Tools for the Semantic Web Developer
Everyday Tools for the Semantic Web DeveloperRob Vesse
 
Essential web tools for project based learning
Essential web tools for project based learningEssential web tools for project based learning
Essential web tools for project based learningdanielskruger
 
30 Tools in 50 Minutes: Essential web tools for the school PR pro
30 Tools in 50 Minutes: Essential web tools for the school PR pro30 Tools in 50 Minutes: Essential web tools for the school PR pro
30 Tools in 50 Minutes: Essential web tools for the school PR proDelaina Biernstein
 
Firefox Web developer tools
Firefox Web developer toolsFirefox Web developer tools
Firefox Web developer toolsplayingwithsid
 
Accessibility Challenges and Tool Features: An IBM Web Developer Perspective
Accessibility Challenges and Tool Features: An IBM Web Developer PerspectiveAccessibility Challenges and Tool Features: An IBM Web Developer Perspective
Accessibility Challenges and Tool Features: An IBM Web Developer Perspectiveguest4e6505
 
5 essential tools for the PHP Developer on Windows
5 essential tools for the PHP Developer on Windows5 essential tools for the PHP Developer on Windows
5 essential tools for the PHP Developer on WindowsStefan Koopmanschap
 
The (X)HTML Document
The (X)HTML DocumentThe (X)HTML Document
The (X)HTML DocumentLearningNerd
 
Web tools for Project Based Learning
Web tools for Project Based LearningWeb tools for Project Based Learning
Web tools for Project Based LearningNeil Farrell
 
Html Cheat Sheet
Html Cheat SheetHtml Cheat Sheet
Html Cheat Sheetbrighteyes
 

Viewers also liked (15)

Essential Windows Phone App Developer Tools
Essential Windows Phone App Developer ToolsEssential Windows Phone App Developer Tools
Essential Windows Phone App Developer Tools
 
Clustering Multiple Instances in Cold Fusion
Clustering Multiple Instances in Cold FusionClustering Multiple Instances in Cold Fusion
Clustering Multiple Instances in Cold Fusion
 
Everyday Tools for the Semantic Web Developer
Everyday Tools for the Semantic Web DeveloperEveryday Tools for the Semantic Web Developer
Everyday Tools for the Semantic Web Developer
 
Essential web tools for project based learning
Essential web tools for project based learningEssential web tools for project based learning
Essential web tools for project based learning
 
30 Tools in 50 Minutes: Essential web tools for the school PR pro
30 Tools in 50 Minutes: Essential web tools for the school PR pro30 Tools in 50 Minutes: Essential web tools for the school PR pro
30 Tools in 50 Minutes: Essential web tools for the school PR pro
 
Firefox Web developer tools
Firefox Web developer toolsFirefox Web developer tools
Firefox Web developer tools
 
Accessibility Challenges and Tool Features: An IBM Web Developer Perspective
Accessibility Challenges and Tool Features: An IBM Web Developer PerspectiveAccessibility Challenges and Tool Features: An IBM Web Developer Perspective
Accessibility Challenges and Tool Features: An IBM Web Developer Perspective
 
Web Developer Tools
Web Developer ToolsWeb Developer Tools
Web Developer Tools
 
Web developer tools
Web developer toolsWeb developer tools
Web developer tools
 
5 essential tools for the PHP Developer on Windows
5 essential tools for the PHP Developer on Windows5 essential tools for the PHP Developer on Windows
5 essential tools for the PHP Developer on Windows
 
The (X)HTML Document
The (X)HTML DocumentThe (X)HTML Document
The (X)HTML Document
 
Web tools for Project Based Learning
Web tools for Project Based LearningWeb tools for Project Based Learning
Web tools for Project Based Learning
 
Html Cheat Sheet
Html Cheat SheetHtml Cheat Sheet
Html Cheat Sheet
 
Web Engineering
Web EngineeringWeb Engineering
Web Engineering
 
Web page concept final ppt
Web page concept  final pptWeb page concept  final ppt
Web page concept final ppt
 

Similar to 100 Essential Web Development Tools

Similar to 100 Essential Web Development Tools (20)

SynapseIndia asp.net2.0 ajax Development
SynapseIndia asp.net2.0 ajax DevelopmentSynapseIndia asp.net2.0 ajax Development
SynapseIndia asp.net2.0 ajax Development
 
Java script
Java scriptJava script
Java script
 
Welcome to React.pptx
Welcome to React.pptxWelcome to React.pptx
Welcome to React.pptx
 
Josin Wang Resume
Josin Wang ResumeJosin Wang Resume
Josin Wang Resume
 
In Act Developers Platform
In Act Developers PlatformIn Act Developers Platform
In Act Developers Platform
 
Inventory managment system
Inventory managment systemInventory managment system
Inventory managment system
 
Online Food Ordering System ppt.pptx
Online Food Ordering System ppt.pptxOnline Food Ordering System ppt.pptx
Online Food Ordering System ppt.pptx
 
App_Engine_PPT.ppt
App_Engine_PPT.pptApp_Engine_PPT.ppt
App_Engine_PPT.ppt
 
App_Engine_PPT.ppt
App_Engine_PPT.pptApp_Engine_PPT.ppt
App_Engine_PPT.ppt
 
HTML 5
HTML 5HTML 5
HTML 5
 
Javascript 01 (js)
Javascript 01 (js)Javascript 01 (js)
Javascript 01 (js)
 
Portal and Intranets
Portal and Intranets Portal and Intranets
Portal and Intranets
 
Ei cakephp
Ei cakephpEi cakephp
Ei cakephp
 
Cakeph pppt
Cakeph ppptCakeph pppt
Cakeph pppt
 
WT Module-3.pptx
WT Module-3.pptxWT Module-3.pptx
WT Module-3.pptx
 
Optimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best PracticesOptimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best Practices
 
Making Of PHP Based Web Application
Making Of PHP Based Web ApplicationMaking Of PHP Based Web Application
Making Of PHP Based Web Application
 
Siebel Open UI Presentation
Siebel Open UI PresentationSiebel Open UI Presentation
Siebel Open UI Presentation
 
Web Development Technologies
Web Development TechnologiesWeb Development Technologies
Web Development Technologies
 
How to make a Courier Tracking TOOL Site.pdf
How to make a Courier Tracking TOOL Site.pdfHow to make a Courier Tracking TOOL Site.pdf
How to make a Courier Tracking TOOL Site.pdf
 

More from wensheng wei

你会柔软地想起这个校园
你会柔软地想起这个校园你会柔软地想起这个校园
你会柔软地想起这个校园wensheng wei
 
几米语录(1)
几米语录(1)几米语录(1)
几米语录(1)wensheng wei
 
Installation of Subversion on Ubuntu,...
Installation of Subversion on Ubuntu,...Installation of Subversion on Ubuntu,...
Installation of Subversion on Ubuntu,...wensheng wei
 
高级PHP应用程序漏洞审核技术
高级PHP应用程序漏洞审核技术高级PHP应用程序漏洞审核技术
高级PHP应用程序漏洞审核技术wensheng wei
 
存储过程编写经验和优化措施
存储过程编写经验和优化措施存储过程编写经验和优化措施
存储过程编写经验和优化措施wensheng wei
 
CentOS5 apache2 mysql5 php5 Zend
CentOS5 apache2 mysql5 php5 ZendCentOS5 apache2 mysql5 php5 Zend
CentOS5 apache2 mysql5 php5 Zendwensheng wei
 
Happiness is a Journey
Happiness is a JourneyHappiness is a Journey
Happiness is a Journeywensheng wei
 
Java JNI 编程进阶
Java JNI 编程进阶     Java JNI 编程进阶
Java JNI 编程进阶 wensheng wei
 
Linux Shortcuts and Commands:
Linux Shortcuts and Commands:Linux Shortcuts and Commands:
Linux Shortcuts and Commands:wensheng wei
 
Java正则表达式详解
Java正则表达式详解Java正则表达式详解
Java正则表达式详解wensheng wei
 
Linux Security Quick Reference Guide
Linux Security Quick Reference GuideLinux Security Quick Reference Guide
Linux Security Quick Reference Guidewensheng wei
 
Android模拟器SD Card映像文件使用方法
Android模拟器SD Card映像文件使用方法Android模拟器SD Card映像文件使用方法
Android模拟器SD Card映像文件使用方法wensheng wei
 
如何硬盘安装ubuntu8.10
如何硬盘安装ubuntu8.10如何硬盘安装ubuntu8.10
如何硬盘安装ubuntu8.10wensheng wei
 
数据库设计方法、规范与技巧
数据库设计方法、规范与技巧数据库设计方法、规范与技巧
数据库设计方法、规范与技巧wensheng wei
 
揭秘全球最大网站Facebook背后的那些软件
揭秘全球最大网站Facebook背后的那些软件揭秘全球最大网站Facebook背后的那些软件
揭秘全球最大网站Facebook背后的那些软件wensheng wei
 
mysql的字符串函数
mysql的字符串函数mysql的字符串函数
mysql的字符串函数wensheng wei
 

More from wensheng wei (20)

你会柔软地想起这个校园
你会柔软地想起这个校园你会柔软地想起这个校园
你会柔软地想起这个校园
 
几米语录(1)
几米语录(1)几米语录(1)
几米语录(1)
 
我的简历
我的简历我的简历
我的简历
 
Installation of Subversion on Ubuntu,...
Installation of Subversion on Ubuntu,...Installation of Subversion on Ubuntu,...
Installation of Subversion on Ubuntu,...
 
高级PHP应用程序漏洞审核技术
高级PHP应用程序漏洞审核技术高级PHP应用程序漏洞审核技术
高级PHP应用程序漏洞审核技术
 
存储过程编写经验和优化措施
存储过程编写经验和优化措施存储过程编写经验和优化措施
存储过程编写经验和优化措施
 
CentOS5 apache2 mysql5 php5 Zend
CentOS5 apache2 mysql5 php5 ZendCentOS5 apache2 mysql5 php5 Zend
CentOS5 apache2 mysql5 php5 Zend
 
Happiness is a Journey
Happiness is a JourneyHappiness is a Journey
Happiness is a Journey
 
Java JNI 编程进阶
Java JNI 编程进阶     Java JNI 编程进阶
Java JNI 编程进阶
 
Linux Shortcuts and Commands:
Linux Shortcuts and Commands:Linux Shortcuts and Commands:
Linux Shortcuts and Commands:
 
Java正则表达式详解
Java正则表达式详解Java正则表达式详解
Java正则表达式详解
 
Linux Security Quick Reference Guide
Linux Security Quick Reference GuideLinux Security Quick Reference Guide
Linux Security Quick Reference Guide
 
issue35 zh-CN
issue35 zh-CNissue35 zh-CN
issue35 zh-CN
 
Android模拟器SD Card映像文件使用方法
Android模拟器SD Card映像文件使用方法Android模拟器SD Card映像文件使用方法
Android模拟器SD Card映像文件使用方法
 
Subversion FAQ
Subversion FAQSubversion FAQ
Subversion FAQ
 
如何硬盘安装ubuntu8.10
如何硬盘安装ubuntu8.10如何硬盘安装ubuntu8.10
如何硬盘安装ubuntu8.10
 
ubunturef
ubunturefubunturef
ubunturef
 
数据库设计方法、规范与技巧
数据库设计方法、规范与技巧数据库设计方法、规范与技巧
数据库设计方法、规范与技巧
 
揭秘全球最大网站Facebook背后的那些软件
揭秘全球最大网站Facebook背后的那些软件揭秘全球最大网站Facebook背后的那些软件
揭秘全球最大网站Facebook背后的那些软件
 
mysql的字符串函数
mysql的字符串函数mysql的字符串函数
mysql的字符串函数
 

Recently uploaded

Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 

Recently uploaded (20)

Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 

100 Essential Web Development Tools

  • 1. 100 Essential Web Development Tools • Posted in TOOLS • • 60 comments » By Neil Skirrow As web technologies constantly advance, the skills a developer is expected to have are constantly increasing. Web users are beginning to expect Ajax interfaces, charts and graphs and a whole host of other tricks and features. This means web developers not only have to be skilled with HTML and a server-side programming language such as PHP or Perl, but they now also need to be JavaScript gurus, Flash experts, and skilled graphic designers. When developing your applications, you simply can’t create every element yourself. A graph or mapping solution is an application in itself, so no single developer or small team can create such components while continuing development of the primary application. This means programmers have to use third-party solutions — and thankfully there are thousands of such solutions to make our lives as developers that little bit easier. In an effort to save you a few hours crawling the web in search of the perfect third-party solution, we have compiled this list of essential development resources. 1. Functions and Classes You can find a whole array of pre-made classes and functions to help save development time. A great resource directory for finding the perfect PHP classes is PHPClasses.org. For those of you who use Perl, you should be familiar with CPAN. CAPTCHA CAPTCHA (Completely Automated Public Turing to tell Computers and Humans Apart) is the term used to describe the use of images which humans can identify,
  • 2. in order to ensure an automated bot/computer program isn’t accessing your application. The ideal use for this is in contact forms to ensure only humans can send messages — therefore eliminating automated spam and junk messages. The following CAPTCHA systems can be easily integrated with your applications: • reCAPTCHA One of the most popular CAPTCHA systems that helps to digitize books, newspapers and old time radio shows by using CAPTCHA inputs to help translate. There is also a Perl module available for reCAPTCHA. • Securimage Securimage is a free open-source PHP CAPTCHA script for generating complex images and CAPTCHA codes. • freeCap A GPL CAPTCHA script to stop spam. • HN CAPTCHA A CAPTCHA script written in PHP, licensed under LGPL. Date Manipulation Manipulating dates in your applications can be a time-consuming process. PHP and Perl include numerous functions for automating the process, but often don’t offer all the required functions. The following date manipulation functions can be easily integrated with your applications:
  • 3. PEAR Date Generic PHP classes for representation and manipulation of dates, times, and time zones without the need for timestamps. • Date Class This PHP class allows you to add or subtract periods from dates, and calculate the difference between two dates. • Date manipulation in PHP A PHP tutorial on PHPBuilder.com, guiding you through a number of common date manipulation processes. • Date::Calc Perl Module A powerful Perl module for date calculations based on the Gregorian calendar. Image Manipulation Manipulating images is a common requirement. Whether you want to resize your images while maintaining aspect ratios, or add watermarks, the process can be entirely automated using a server-side language like PHP or Perl. • Image Manipulation Class Resize, flip and rotate images in PHP. • PHP Thumbnailer A lightweight image thumbnail tool. • PHP GD GD is a powerful image manipulation library. • Perl GD GD image manipulation module for Perl. Form Validation Form validation is critical to ensure users enter form information in a suitable format, and is especially important to protect your application against attacks. • validaForms A PHP form validation class. • User Input Validation Class A basic PHP validation class for user input. • Validate Form Fields Script A basic PHP script for form validation. • WWW::FieldValidator A simple Perl form validation module.
  • 4. Password Validation Password validation is important to ensure your users choose passwords that offer an adequate level of security to prevent their accounts from being compromised. • Strength Test A useful PHP function for password strength testing. • Password Checker A PHP class for generating and testing the strength of passwords. • Data::Password::Check A useful Perl module for password checking. 2. Ajax and JavaScript Ajax is a web methodology that uses JavaScript to make HTTP connections to retrieve and process data for the purpose of dynamically updating the content of a static web page. Ajax enables you to update content within a web page without reloading the entire page, thus reducing load times and server loads, making your web pages more interactive and intuitive. A great resource for Ajax tools is MiniAjax. Auto Suggest Auto suggest or autocomplete tools are usually applied to text inputs like search fields. When a user begins their input, the input field shows a list of options that match what they have entered so far. This enables users to enter their input more quickly, and can also help them enter terms that match search data that are more likely to return relevant results. • Facebook-Style Autosuggest A great Facebook-style auto suggest tool which supports multiple selections.
  • 5. Autosuggest / Autocomplete with Ajax A great auto suggestion tool which can use XML or JSON data sources. • Ajax.Autocompleter A very flexible autocomplete powered by script.aculo.us. • Adobe Labs Spry Auto Suggest A useful autosuggest tool provided by Adobe Labs. • Google Suggest Style Filter An autocomplete data filtering tool. Calendars Ajax calendars are extremely useful when you need your users to enter a date. They reduce confusion over date formats, and enable users to easily find the date they are looking for rather than typing a date format string. • Vista-Like Ajax Calendar A great Ajax calendar that uses Mootools.
  • 6. JS Calendar in DHTML Suite A powerful calendar tool that supports features like multiple connected calendars. • AJAX Calendar with PHP and MySQL An open source Ajax calendar tool. • Super AJAX Calendar A PHP and mySQL Ajax calendar. • dhtmlxScheduler A powerful events calendar and scheduler. Sliders Ajax sliders enable users to use an interactive draggable element to select values. These are very useful for features like colour pickers as they enable users to ’slide’ through a range of colours to select the one they want. • Accessible Slider A well-coded and nicely-designed slider tool that features range sliders.
  • 7. Phatfusion Slider An Ajax slider tool with a “snap to steps” feature. • AJAXEngine Sliders Sliders that are part of the AJAXEngine project. • Slider Using PHP, Ajax And Javascript A basic, but useful, Ajax slider tool. • WebFX Slider A simple slider tool licensed under Apache Software License 2.0. Data Grids Ajax data grids enable you to display data in a table, but with the benefit of features like column sorting and pages without the need to reload the entire page. • Grid3 A useful data grid tool which is part of the Ext JS library. • dhtmlxGrid A powerful data grid tool that includes column sorting and search functionality.
  • 8. Unobtrusive Table Sort Script A data grid tool that includes multiple column sorting. • AJAX Data Listings Engine A powerful open source PHP data grid tool for use with mySQL. • TableKit A data grid tool based on the Prototype JavaScript framework that features field editing. Draggable Content Ajax-based draggable content features can be very useful when used appropriately. Such tools enable users to reorganize a page to suit their needs, and can also serve as a basis for an interactive feature like a shopping basket. • Draggable Content Scripts dhtmlgoodies.com provides numerous draggable content scripts, including an image cropping tool and a sortable list script. • DragResize A great tool for draggable content with resize functionality.
  • 9. Drag & Drop Sortable Lists A simple tool for creating sortable lists. • Scriptaculous Draggable A powerful draggable content tool which is part of the script.aculo.us framework. Image Enlarging Image enlarging scripts, similar to JavaScript light boxes, enable the user to enlarge or zoom in on an image chosen from a set of thumbnail images. • Highslide JS A great tool for managing image enlarging and modal windows. • FancyZoom A useful JavaScript image zoom tool.
  • 10. TJPzoom 3 A great image magnifying tool. • Ajax Script To Scale Images A basic script for showing enlarged versions of thumbnails. Galleries and Slideshows Image galleries are very useful when you have a collection of images to show, they allow users to easily browse your images, and features like slideshows allow users to sit back and enjoy watching your images. • minishowcase A simple Ajax/JSON image gallery. • Animated JavaScript Slideshow A very lightweight JavaScript slideshow with animated captions. • Hoverbox Image Gallery A simple gallery with mouse-over image viewing. • TripTracker A lightweight image viewer with slideshow.
  • 11. Agile Gallery (Ajax Version) A simple image gallery tool. Star Ratings Star rating scripts allow users to rate items through an intuitive and attractive interface, which is an improvement over typical drop-down menus or radio buttons. • Starbox A flexible star rating system using Prototype. • Unobtrusive AJAX Star Rating Bar A useful PHP star rating tool. • CSS: Star Rater Ajax Version A simple Ajax star rating tool. Colour Pickers If you want to let users choose colours in your application, it’s better to present them with an interface rather than asking them to enter a HEX code. Colour pickers allow users to choose colours from a colour palette which then generates a HEX code for use in your HTML. • jscolor A simple pop-up colour picker.
  • 12. JavaScript Color Picker A colour picker that handles RGB, HSL, and Hexadecimal values. • Tigra Color Picker A very basic colour picker. • Photoshop-like JavaScript Color Picker A colour picker that includes hue and saturation options. • ColorPicker – jQuery Plugin A jQuery colour picker plugin with multiple display options. • DHTML Color Picker A well designed colour picker. Progress Bars Progress bars are very useful when handling user uploads or pages which can be slow to load; they keep the user informed that progress is being made and that the page is loading. • jsProgressBarHandler A flexible and well designed progress bar tool.
  • 13. YUI Loading Panel Widget An attractive loading bar tool. • Simple Javascript Progress Bar with CSS A simple, but useful, progress bar tool. • Uploadify A jQuery-based file upload tool with progress bar. 3. APIs An API (Application Programming Interface) is a set of program functions which can be accessed by another application. One example is a currency conversion API that retrieves currency conversion data by allowing the user to enter a base currency, an amount, and the desired result currency, which returns a result via the API. • Alexa Top Sites This API provides access to lists of web sites ordered by Alexa Traffic Rank. • bit.ly API A useful API for the bit.ly URL shortening service. • Blinksale API Enables you to access Blinksale data such as invoices and customer data. • FoXRate A basic currency conversion API. • eBay API eBay’s API which allows you to submit items to be listed and obtain listing data. • Twitter API The Twitter API allows you to have access to Twitter data, including user and status information.
  • 14. 4. IP Locations Finding out where your visitors are located can be valuable from a development standpoint. It can help you understand your visitors so you can design your site to better suit their needs. IP location information can help you determine where a user is located, enabling you to display content in the their language. You can also optionally customize other information such as currencies and shipping costs. • OpenCrypt IP Location API A hosted API service for determining user location by country. • IP Details A PHP class for determining geographical locations based on IP address. • GEO-IP A free IP to country database. 5. Charts and Graphs Charts and graphs enable you to display complex data visually. This is useful for example when trying to determine information like daily pageview counts from detailed statistical logs, enabling the user to immediately see how the data varies over a period of time. • amCharts A powerful Flash charts tool which supports 3D charts and the ability to combine different graphs.
  • 15. FusionCharts A well designed and stylish 3D charts tool. • XML/SWF Charts A highly customizable Flash charts tool. • JFreeChart A free Java-based charting tool. • pChart A powerful PHP class for building attractive charts. 6. Maps Once you are using IP location tools like those listed above, you will have a collection of user location data. What better way to display it than with an interactive map. Interactive maps are also useful for understanding user location data such as sales information, for example, when you receive delivery and billing address info from a user. • amMap An interactive mapping tool which includes drill-down functionality.
  • 16. Google Charts API A great mapping tool, though limited to a small map size. • Flashmaps A great collection of different Flash mapping tools. 7. Audio Players When used well, playing audio on your web site can be a great way of setting a mood or getting a message across. • XSPF Web Music Player A Flash-based open source audio player which includes playlist support. • Flash MP3 Player A free PHP and Flash MP3 player.
  • 17. TSPlayer A Flash-based skinnable MP3 audio player. • E-Phonic MP3 Player A lightweight skinnable MP3 audio player with real-time visualization effects. 8. Video Players Video content is now becoming a standard, but getting the right video player is very important. Video content is the ideal, and often expected tool for promotion, so getting a player which suits your site and needs is now a critical design and development choice. • OS FLV An open source and well featured Flash video player. • Flowplayer A full-featured and highly customizable Flash video player.
  • 18. JW FLV Media Player A very powerful and flexible Flash video player. • FLV Player A stylish and customizable Flash video player. 9. Video Conversion Video conversion/encoding can be a tricky business. Videos can be in a wide range of formats but most players only support a handful of those. If you don’t have a server which supports ffmpeg, converting videos to a format suitable for your player is usually an offline and manual task. • OpenCrypt Video Conversion API A powerful video conversion API for generating FLV video files. • Hey!Watch An online video encoding platform. • Online FLV Converter An online FLV video converter. • FlashVideo Module API A Flash video encoding API targeted to the Drupal community. 10. WYSIWYG Editors WYSIWYG (What You See Is What You Get) editors enable you to offer an HTML editor when users enter information, for example, in content management systems, or for entering comments or reviews. These editors enable users to style and format data without the need to understand HTML. • TinyMCE A lightweight yet powerful JavaScript WYSIWYG editor. • XINHA A fully featured and open source WYSIWYG editor.
  • 19. NicEdit A simple and lightweight WYSIWYG editor. • openWYSIWYG An open source, cross-browser WYSIWYG editor. • CKEditor A well designed and feature-rich WYSIWYG editor. About the author Neil Skirrow is a professional web developer with over 14 years programming experience and is the Managing Director of ionix Limited, a UK software development company that develops the OpenCrypt Membership Software.