15 Helpful In-Browser Web Development Tools

View original post found on Smashing Magazine authored by Jacob Gube

There are many useful Web development tools that integrate in your browser. These in-browser tools are commonly known as add-ons or extensions. Though add-ons and extensions aren’t just for Web development, many of them out there are designed specifically for Web developers. In-browser tools vary greatly in the jobs they perform; for example, some of them help you diagnose issues with CSS, HTML and JavaScript, while others evaluate the accessibility of your website.

In this article, we explore some of the most popular and useful in-browser Web development tools. You’ll find tools for popular Web browsers like Firefox and Internet Explorer. Whether you need to debug and inspect your HTML, inspect HTTP headers, access FTP source files, evaluate accessibility or just figure out what color a Web page element is, you may find a variety of tools discussed here useful.

Firebug

Firebug - screen shot.

Firebug is an extension for the Mozilla Firefox browser that allows you to debug and inspect HTML, CSS, the Document Object Model (DOM) and JavaScript. Though it has many strong features, it’s most known for revolutionizing the way developers debug and profile JavaScript code.

For example, before Firebug, many developers would use the alert() function to see what a variable contains or to find what line the code breaks. With Firebug enabled, you’re told specifically what the error is and which line it comes from. Firebug is an excellent tool for AJAX application developers because it lets you explore and perform on-the-fly edits on the DOM to see what happens when you manipulate Web page elements after a user action.

Aside from its popular JavaScript and DOM functionalities, Firebug can also log network activity to allow you to see detailed results of HTTP connections, inspect and edit HTML on the fly and debug and visualize your CSS.

Further Reading

Web Developer

Web Developer - screen shot.

The Web Developer extension (for the Firefox, Flock and SeaMonkey Web browsers) is an add-on that adds a tool bar with a menu of options for debugging and inspecting Web pages. It has a ton of features, my favorite being the View CSS Information option (CSS >> View Style Information, or Control + Shift + Y on Windows) which makes a page element clickable and shows you CSS selectors that affect that particular page element. It’s helpful for exploring and understanding large CSS files and projects that you’re unfamiliar with (such as a new open-source content management system).

It has built-in options for syntax validation for popular Web services, such as W3C’s CSS Validator and HiSoftware’s Web Content Accessibility Report, for your convenience. It has many other useful features, such as disable options for CSS, JavaScript and images, to test for degradation and progressive enhancement; a Forms menu with options for working with Web forms; Display Div Order and Display Block Size options to help you visualize the layout; and so much more.

YSlow

YSlow - screen shot.

YSlow is a Firefox extension created by Yahoo! developers that integrates with Firebug (therefore you need to have Firebug enabled for it to work). YSlow analyzes a Web page for front-end performance and, in its simplest usage, gives you a letter grade (A being the best and F being the poorest) for each of the best practices for speeding up  your website.

YSlow also allows you to inspect in detail things that are essential for a high-performance website. For example, the Stats view gives you the total size of a Web page and a summary of items that are loaded when the Web page is requested (i.e. style sheets, JavaScript files, Flash objects and images), so that you can hunt down the bottlenecks that cause a Web page to load slowly.

The Components view outlines every single component of a Web page in tabular format and allows you to inspect it to see attributes such as size, expiration date (for cached files), whether it uses server-side compression (Gzip) and response time (how long the component took to load).

Further Reading

Internet Explorer Web Developer Toolbar

Internet Explorer Web Developer Toolbar - screen shot.

If you need similar functionality to that of Firebug and Web Developer for Firefox, but want to debug, inspect and tune your Web pages and applications on the Internet Explorer browser, check out the Internet Explorer Web Developer Toolbar. The IE Web Developer Toolbar, when enabled, opens a toggle-able pane located at the bottom of the Web browser, giving you access to many helpful options for exploring Web page components.

For example, you can experiment to see how page elements work by editing the Web page’s DOM and HTML directly in the browser, allowing you to quickly change and edit DOM elements to see what happens when you perform certain actions or modify certain parts of the code. You can also debug, test and inspect JavaScript with the IE Web Developer Toolbar, giving you options for setting breakpoints, seeing the call stack and exploring variable attributes.

It has a ton of other helpful features, such as selectively disabling IE settings (to see how your Web pages degrade in IE); the ability to view the HTML and CSS source of any Web page with syntax-highlighting; and an in-browser ruler to help you measure things on a Web page.

Further Reading

Fiddler Web Debugger

Fiddler Web Debugger - screen shot.

Fiddler is an Internet Explorer extension that analyzes and profiles a Web page’s HTTP traffic. If you’ve ever wanted to know exactly what happens when a client requests a Web page, Fiddler is the tool that’ll help you do the job. The HTTP Statistics view exposes all components and files required to generate a particular page, giving you details such as the total number of HTTP requests, total page weight, HTTP response headers and cache expiration.

Fiddler permits you to set up breakpoints, allowing you to step through and edit HTTP traffic (to see how it would affect your Web page), a useful feature for analyzing AJAX-based interaction and potential security flaws in a Web application. Perhaps what makes Fiddler so powerful is its extensibility, allowing you to create your own scripts (or import other developers’ scripts) to perform certain tasks or make interface modifications to the extension itself.

Further Reading

DebugBar

DebugBar - screen shot.

DebugBar is a debugging in-browser extension for the Internet Explorer browser. It has many helpful features, such as the ability to send a Web page screenshot via email, a color picker, the ability to view both the original and interpreted code (i.e. if you use JavaScript to manipulate the styles of a DOM object, then you can see the interpreted HTML source code of that manipulation) and a Console API (after installing Companion.JS) to help you gain information through a command-line interface about particular components of a Web page.

DebugBar is free for personal and educational use, but you are required to buy a license if you use it for commercial purposes.

HttpWatch

HttpWatch - screen shot.

HttpWatch is another HTTP traffic viewer and debugger for Firefox and Internet Explorer that is similar to Fiddler. It has many unique features and a more intuitive, less intimidating interface than Fiddler. Some notable features are the ability to generate request-level time charts (useful for documentation and presentation purposes); decryption of HTTPS traffic to help you debug, inspect and tweak your secure SSL-based connections; and the ability to export captured data to XML and CSV formats for importing into spreadsheet applications such as Microsoft Excel or Google Spreadsheets.

HTTPWatch has a Basic edition, which is free, and a Professional edition, which has more options. Check out the comparison table between the two editions to see the exact differences.

Live HTTP Headers

LiveHTTPHeaders - screen shot,

Live HTTP Headers is a Firefox extension that allows you to inspect HTTP request and response headers. Exploring HTTP headers allows you to debug Web applications, glean some information about the website’s server and inspect cookies sent to the client requesting the page.

For example, the Server response header gives you a website’s HTTP server type (Apache, IIS, nginx, etc.), the HTTP server version and the operating system (though server administrators can remove or limit the information you see for security purposes).

Web Accessibility Toolbar

Web Accessibility Toolbar - screen shot.

The Web Accessibility Toolbar is a freeware extension for Internet Explorer and Opera that gives you a slew of options for quickly evaluating and analyzing your Web content’s accessibility. It has validation options for submitting your URL to content accessibility web services such as Juicy Studio tools, a grayscale converter to simulate the user experience of individuals with color-blindness and poor eyesight, and a search function for particular page structures (e.g. finding list objects and unordered lists).

Other useful tools released by Vision Australia are the Colour Contrast Analyser, which analyzes the contrast of foreground and background colors for readability, and the Complex Table Mark-Up (or Com Tab) Toolbar, which can help you understand (and construct) complex tables that are usable by non-traditional Web browsers (such as screen readers).

Further Reading

Fangs

Fangs - screen shot.

Fangs is an in-browser tool for Firefox that emulates what a screen reader “sees” when visiting a Web page. Its function is simple: to output a transcript of what a screen reader will read out to a user when a Web page is visited. It’s a helpful tool for quickly analyzing if you’ve structured your content effectively so that it’s understandable and usable by vision-impaired individuals, without forcing you to learn to use (and purchase) a screen-reader application such as JAWS or Windows Eyes.

Further Reading

Venkman JavaScript Debugger

Venkman JavaScript Debugger - screen shot

Venkman is the codename for Mozilla’s very own JavaScript debugging environment. It is available as an add-on that can be used to extend browsers such as Firefox, Netscape, and SeaMonkey. It is a robust environment for doing complex JavaScript debugging and troubleshooting. The Console view gives you a command-line interface for interacting with the debugger. It has an excellent Stack view feature that allows you to step through active functions when it reaches breakpoints.

Further Reading

ColorZilla

ColorZilla - screen shot.

ColorZilla is an incredibly simple — but very useful — extension for Firefox. If you’ve ever wanted to determine what colors are used on a Web page, ColorZilla is the tool for the job. It adds an eyedropper icon to the bottom-left corner of Firefox.

Clicking on the eyedropper icon makes objects on the Web page clickable, and upon clicking a particular section of a Web page, it outputs the hexadecimal, RGB and hue/saturation values of that area . Before ColorZilla, you might have pasted a screen capture of a Web page into a graphics editor like Photoshop and then used the eyedropper tool in the editor to sample colors. ColorZilla saves you time and streamlines color-sampling processes.

FireShot

FireShot - screen shot.

FireShot is an in-browser tool for Firefox and Internet Explorer that allows you to take screenshots and then annotate, edit, organize and export them. Screen-grabbing is a common activity for Web developers to document previews of Web application prototypes and share them with clients, and FireShot gives you a feature-packed in-browser option to manage and streamline your screenshot needs.

Web Inspector

Web Inspector - screen shot.

Web Inspector is part of the Webkit open-source browser engine project. It’s an ultra-sleek tool for inspecting the DOM hierarchy in a separate, compact HUD-style window. You can easily search the DOM, explore the DOM tree (hierarchy) and have a useful interface for isolating DOM sub-trees and nodes so that you can focus on particular sections of a Web page. The Web Inspector also provides you with a Style pane to explore CSS rules applied to particular page elements.

FireFTP

FireFTP - screen shot.

FireFTP is a free, cross-platform Firefox extension for FTP’ing files. It offers several advantages to stand-alone FTP applications, such as its operating system-independent requirements. What’s exceptional about FireFTP is that even though it is an in-browser (and free!) application, it has all the features you would expect from a standalone FTP application, such as support for secure (SSL, TLS, SFTP) protocols, a synchronization feature to sync up local and remote files, and directory comparison to help you see what files are missing or different between two directories and much more.

What’s your favorite in-browser tool?

There is an overwhelming amount of in-browser tools for Web development out there. Some are specific to particular Web technologies and set-ups (such as FirePHP for PHP developers, SQLite Manager for developers using SQLite databases, and Opera Dragonfly for developers who prefer using the Opera browser). If your favorite tool isn’t on the list, let us know in the comments section why it’s your favorite and why we should check it out.

About the Author

Jacob Gube is a Web developer/designer and author of Six Revisions, a blog on Web development and design. If you want to connect with the author, you can follow him on Twitter.

(al)

Showcase Of Clean And Minimalist Designs

View original post found on Smashing Magazine authored by Jacob Gube

By Jacob Gube and Smashing Editorial Team

Minimalism, in the context of design, refers to simple, unadorned designs that embody only the most basic and fundamental needs. In art, it is a movement that has its roots in the post-World War II era, started by highly regarded minimalist artists such as Donald Judd, Carl Andre, and Robert Morris. Minimalism today refers to a certain style (or even a certain attitude or way of life) that transcends different fields, such as architecture, philosophy, law and, of course, Web design.

In this article, we explore the meaning of minimalism in the context of Web design. First, we’ll look at some features of a minimalist Web design in the hope of learning by way of deconstruction. Then, we’ll see a showcase of minimalist designs. Finally, you’ll find some useful resources on the topic of minimalism in Web design.

Showcase of clean and minimalist designs

Though there are different ways to achieve a minimalist Web design, and designers have varying definitions and interpretations of what minimalist Web design truly is, there are certainly some commonalities among what we can consider minimalist designs.

In the review below we’ll consider some common features and attribues of a minimalist Web design. However, let’s first take a look at some truly outstanding examples of excellent minimalist and clean web design.

Jan Reichle

Jan Reichle screen shot.

HUGE

HUGE screen shot.

Markenpersonal.de

Screenshot

Rodrigo Galindez

Screenshot

BrynnShepherd.com

BrynnShepherd.com screen shot.

SpiekermannPartners

SpiekermannPartners screen shot

MaximNew

MaximNew screen shot.

Muller

Muller screen shot.

FLOWmarket

FLOWmarket screen shot.

Rbg6.se

Screenshot

80/20

80/20 screen shot.

Minus.dk

GG screen shot.

Cubic

Cubic screen shot.

Vitor Lourenco

Vitor Lourenco screen shot

Deep.co.uk

Screenshot

fellswoop

Screenshot

3rings

3rings screen shot.

AIGA New York

AIGA New York screen shot.

Kalle Gustafsson

Kalle Gustafsson

Clagnut

Clagnut screen shot.

BetterInteractive.com

Screenshot

Concentric-Studio.com

Screenshot

Clandrei.de

FLOWmarket screen shot.

Ab-c.com.au

Screenshot

Forgetfoo

Screenshot

MAYØ

MAYØ screen shot

Berit Sømme

Berit Sømme screen shot

Poccuo

Poccuo screen shot.

SMeltery

SMeltery screen shot.

kraaft

kraaft screen shot.

Hermes.com

Hermes.com screen shot.

Sitening

Sitening screen shot.

bora aksu

bora aksu screen shot.

hillmancurtis

hillmancurtis screen shot.

BuuHouse Interactive

BuuHouse Interactive screen shot.

Theme

Theme screen shot

Marek Levák

Marek Levak screen shot.

Mark Wieman

Mark Wieman screen shot

Rogier Bikker

Rogier Bikker screen shot.

Razvan Stavila

Screenshot

Lovecreative.com

Screenshot

1. Design is focused on the content

In minimalist designs the focus lies not on the visual presentation, but on the content — the information presented in a “naked”, clean and intuitive way. The property of being minimal refers to the structure of the layout; but it is the main task of every simple design to keep its functionality and communicate the information it is supposed to present.

The content is the focal point of the Web page, whether that content is a showcase of photography, Web designs, or writing. The design provides little to no distraction.

Autumn Whitehurst Illustration

In this Web design, the use of a plain white background and de-emphasized text makes your eyes gravitate towards the artwork.

Autumn Whitehurst Illustration screen shot.

Frieze Magazine
When viewing this design, note where your eyes look first. Probably, you would have looked at either the large image or the “frieze” logo first.

Frieze Magazine screen shot.

2. Whitespace is the king…

To make it easy for readers to scan and read the content, minimal designs usually need a lot of whitespace to breathe. In some cases whitespace dominates in the design, taking 60-70% of the whole layout space. In such designs whitespace, while remaining passive, strongly bundles user’s attention on very few site elements and thus effectively influences users’ perception of the overall design.

Rule of thumbs: the fewer elements you have and the more whitespace you have, the more attention will each element in your design get.

Cameron.io uses whitespace as the primary element. Notice how little space is used by content and how strongly your attention is focused on the navigation menu and the blog posts. Please also notice that very calm, neutral and subtle colors are used.

Cameron.io screen shot.

3. Typography is the queen

Typography is used to convey messages to the user. Larger, bold text draws the user’s attention to the intended area. Careful use of color, size and style of text is used in the design phase to underscore important elements and make others less prominent.

i love typography
Notice how the large bold, centered logo on the page manages to grab your attention.

Rikcat Industries screen shot.

Astheria
This design directs the user’s focus straight to the “featured” content (in this case, the most recent article of the author). Notice how your focus bypasses the logo, even though it appears before the “featured” content; completely the opposite of i love typography’s design, which directs you to the logo/website name.

Astheria screen shot

Corporate Risk Watch

CRW screen shot

4. Color palette consists of solid colors

The in-your-face, flashy, loud color schemes associated with Web 2.0 and vintage/retro design trends are avoided. Usually, designers pick one vibrant color and use it effectively to communicate the most important information presented on the site. Such elements are usually clickable; the number of these elements rarely exceeds 5-7.

Behance

Behance Screen shot.

Alltop

Alltop screen shot.

5. Plain, solid white/gray or solid dark backgrounds are common

Solid backgrounds are effective especially when the content is vibrant and colorful (such as in design showcases). Plain colors doesn’t fight for users attention; instead, they support the readers and make it easy to actually scan the page when looking for the content. “Minimal” designg almost never have vibrant background images — patterns, textures and vivid colors are used very rarely.

kind company
The thumbnail project images really stand out from the solid white background.

kind company screen shot.

The Consult™
The same concept applies to dark backgrounds.

The Consult™ - screen shot.

6. A minimal number of colors

Many minimalist Web designs use only one to three colors, and page elements outside the content are often monochromatic. This again reduces distraction from the Web page content.

Rikcat Industries
This design showcases a monochromatic color palette in the foreground.

Rikcat Industries screen shot.

Cameron Moll
In this design, page elements such as the logo, navigation bar and sidebar use different hues of gray.

Cameron Moll screen shot.

7. Text-based logos instead of illustrative, iconic logos

Again, to uphold the concept of minimalism whereby you strip down the design to the bare, unadorned minimum, the logos of minimalist websites are plain and simple.

The Idiot Behind the Iron Mask

The Idiot Behind the Iron Mask - screen shot.

8. Clean right angles and lines in use

Very often clean right angles and lines are used instead of rounded and uneven edges. Rounded graphic elements, the main clichée of Web 2.0, and the uneven edges seen in grunge style are avoided in minimalist Web designs.

Monty Lounge

Monty screen shot

Builtbybuffalo.com

Buffalo screen shot.

Antonio Carusone

Antonio Carusone screen shot

SIGMA6

SIGMA6 screen shot.

9. Minimal ? white, gray and black colors

White/black (or dark gray) is the typical color scheme of minimalist Web designs, but others use different colors to achieve the same goals.

Soulellis Studio

Soulellis Studio screen shot.

Emigre

Emigre screen shot.

10. Use of vibrant, colorful images

The use of colorful, bold images can enrich the visual impact of the design by providing a stark contrast to the muted, solid colors of the minimalist design elements.

Coptix

Coptix screen shot

11. Use of grid-based designs

Many minimalist designs use a grid-based layout to reflect the structured, right-angled, rigid nature of minimalism.

Jamie Gregory

Jg screen shot.

Resources

About the Author

Jacob Gube is a Web developer/designer and author of Six Revisions, a blog on Web development and design. If you want to connect with the author, you can follow him on Twitter. (al)

The Ultimate Collection Of Useful Photoshop Actions

View original post found on Smashing Magazine authored by Jacob Gube

Saving repetitive tasks as Photoshop actions can save you a lot of time, allowing you to automate your work and improve workflow efficiency. A Photoshop action is a recording of a sequence of commands and operations that you can save and access later on.

We’ve searched for the best downloadable Photoshop actions that can help you improve your workflow and perform complex techniques with the push of a button. In this collection, you’ll find more than 350 free hand-picked Photoshop actions that you can use to speed up your graphics creation.

Note: It’s important to check the license of each action set you download and use.

Quick Introduction to Photoshop Actions

For those unfamiliar with Photoshop actions, they’re simply pre-recorded tasks that you can save and reuse anytime. Photoshop actions commonly have an .atn file extension. Installing a Photoshop action for more recent versions of Photoshop is easy: simply drag the .atn file onto the Actions palette or place it directly inside your Adobe Photoshop\Presets\Photoshop Actions folder. For a more comprehensive discussion of Photoshop actions, check out this complete guide to Photoshop actions.

Image Effects and Graphic Creation Actions

Cross-processing ATN
Simulate the Cross-processing (Xpro) photography technique using this Photoshop action.

Cross-processing ATN screen shot.
1 action - Download

Lomo
Give your images a “Lomo” look and feel with this excellent Photoshop action.

Lomo screen shot.
1 action - Download

Lomo Cross-processing
This Photoshop action is a combination of two popular photography effects: Lomo and Cross-processing.

Lomo Cross-processing screen shot.
1 action - Download

Polaroid Generator
Automatically frame an image in a Polaroid border with this set of Photoshop actions.

Polaroid Generator screen shot.
5 actions - Download

Hand-Colored Vintage Photo
This is a handy Photoshop action set for giving images aged, dirty effects.

Hand-colored Vintage Photo screen shot.
4 actions - Download

Vintage
Aly’s Vintage action set is a nice collection of six vintage image effects that you can use on modern digital photos.

Vintage screen shot.
6 Actions - Download

Vintage Wash
Give your images an old, vintage effect with this set of ten different actions.

Vintage Wash screen shot.
10 actions - Download

Old Parchment
Easily create aged paper with this free Photoshop action.

Old Parchment screen shot.
1 action - Download

Simple Stamp Generator
Automatically create a stamp graphic with this action.

Simple Stamp Generator screen shot.
1 action - Download

Pseudo HDR
Mimic the “HDR” photo effect without having to use multiple exposures of the subject.

Pseudo HDR screen shot.
1 action - Download

HDR For Dummies
Here’s another easy-to-use Photoshop action set for giving photos the “HDR” effect.

HDR For Dummies screen shot.
3 actions - Download

IR Actions
Give your photos the popular infrared effect using Dave’s IR Photoshop action.

IR Actions screen shot.
1 action - Download

IR Effect
Here is another method for faking the infrared photographic effect using a Photoshop action.

IR Effect screen shot.
1 action - Download

Photo Effect Action
This Photoshop action can be used for grunge designs.

Photo Effect Action screen shot.
1 action - Download

Comics Photoshop Action
Give your image a comic book look and feel using this Photoshop action.

Comics Photoshop Action screen shot.
1 action - Download

Retro Love
Achieve a retro-colored image effect using the Retro Love action.

Retro Love screen shot.
1 action - Download

Soften Skin Effect
Smoothen skin and remove blemishes with the Soften Skin Effect action.

Soften Skin Effect screen shot.
1 action - Download

Burnt Edges Vignette
This action gives your photos burnt and high-key effects (available for low- and high-resolution images, see the “Try Me”-section).

Burnt Edges Vignette screen shot.
4 actions - Download site, check the “Try Me”-section

Edge Effects
This set of actions allows you to give your images different types of edge effects.

Edge Effects screen shot.
8 actions - Download

B & Big Picture
Create a three-dimensional collage effect using one source image with the B & Big Picture action.

B & Big Picture screen shot.
4 actions - Download

Photo Enhancement and Processing Actions

Black and White Photoshop Actions
This is a set of useful actions for processing black and white images.

Black and White PS Actions screen shot.
8 actions - Download

TLR B&W Toning
TLR B&W Toning is a large action set for enhancing and processing black and white images.

TLR B&W Toning screen shot.
30 actions - Download

Photoshop Postwork Actions
Here is a ton of excellent post-work Photoshop actions.

Photoshop Postwork Actions screen shot.
25 actions - Download

TLR Sharpening Toolkit
This is a useful Photoshop action pack for sharpening RGB, CMYK and monochrome photos.

TLR Sharpening Toolkit screen shot.
33 actions - Download

TLR Tone Enhance
Enhance the tone and color of your images using this Photoshop action set.

TLR Tone Enhance screen shot.
30 actions - Download

Color Enhancing Actions
Here is a variety of actions, such as “colorboost,” “softlight,” and “contrastboost.”

Color Enhancing Actions screen shot.
10 actions - Download

Photoshop Color Actions
A nice collection of color actions to process and enhance your photographs.

Photoshop Color Actions screen shot.
10 actions - Download

Cross Coloring Tools
Here is a set of actions for dark, mid-range, and light cross-coloring of image tone.

Cross Coloring Tools screen shot.
4 actions - Download

Image Enhancing PS Actions
These are ten brilliant image-enhancing Photoshop actions.

Image Enhancing PS Actions screen shot.
10 actions - Download

Watermark Photoshop Action
Automate the watermarking of your images with this set of Photoshop actions.

Watermark Photoshop Action screen shot.
9 actions - Download

Photographers Toolkit
A wonderful set of actions for photographers to enhance photos.

Photographers Toolkit screen shot.
9 actions - Download

Assorted Sets of Actions

Photoshop Actions - 53
This is the 53rd set of Photoshop actions by =night-fate of deviantART.

Photoshop Actions - 53 screen shot.
9 actions - Download

Productions Action
This is a set of useful actions that will simplify your workflow for common Photoshop tasks.

Productions Action screen shot.
20 actions - Download

Photoshop Automator Actions
This is one of the biggest sets of useful actions to cut down on repetitive tasks such as watermarking images, scaling images, and fitting images in the canvas. You need to register before being able to download the set.
90 actions - Download

Photography Action Set
This is an excellent collection of popular photo effects, such as HDR, Lomo, Velvia, Xpro and more.

Photography Action Set screen shot.
8 actions - Download

Rather Large Set of Actions
This is a large collection of useful Photoshop actions.

Rather Large Set of Actions screen shot.
40 actions - Download

Photoshop Actions - 62
Another beautiful set of assorted Photoshop actions by =night-fate.

Photoshop Actions - 62 screen shot.
8 actions - Download

About the Author

Jacob Gube is a Web developer/designer and author of Six Revisions, a blog on Web development and design. If you want to connect with the author, you can follow him on Twitter. (al)