Tuesday, May 19, 2009

Photoshop Tutorials and Learning Resources

Photoshop User TV – Free weekly podcast from the “Photoshop Guys” covering the hottest Photoshop tutorials, insider tricks and timesaving techniques to raise the bar with your productivity.
Url: http://www.photoshopusertv.com/

Action Fx – Tutorials, tips and downloads for Photoshop users.
Url: http://actionfx.com/

Photoshop Lab – Site filled with Photoshop tutorials, tips, news, reviews and resources for the enthusiastic Photoshop user.
Url: http://www.photoshoplab.com/

Good-Tutorials - Tutorial directory with lots of Photoshop tutorials.
Url: http://www.good-tutorials.com/tutorials/photoshop

Photoshop Training – In depth, online training courses for Photoshop Professionals. Produced by NAPP.
Url: http://www.photoshoptraining.com/

BittBox – Well written tutorial explains how to create your own custom Photoshop brushes.
Url: http://www.bittbox.com/photoshop/how-to-make-a-photoshop-brush/

Tutorialized - Another tutorial directory loaded with Photoshop tutorials covering all aspects of re-touching, photo manipulation, graphic design and so much more.
Url: http://www.tutorialized.com/tutorials/Photoshop/1

Photoshop Quick Tips – Adobe Certified Expert, Justin Seeley, produces this regular podcast covering lots of Photoshop tips and techniques.
Url: http://www.photoshopquicktips.com/

Pegaweb – Collection of Photoshop Tutorials.
Url: http://www.pegaweb.com/

Photoshop Elements User – Complete Resource for Photoshop Elements learning and education. Features online training, a newsletter, forums and a learning center.
Url: http://www.photoshopelementsuser.com/

Photoshop Roadmap - Photoshop specific tutorial directory.
Url: http://www.photoshoproadmap.com/Photoshop-tutorials

Photoshop Killer Tips – Free downloadable videos filled with tips, workarounds, and shortcuts to make your Photoshop experience that much better.
Url: http://www.photoshopkillertips.com/

Photoshop Star - A website dedicated to bringing you free, high-quality Photoshop tutorials.
Url: http://www.photoshopstar.com/

Absolute Cross – Directory with tutorials covering layouts, special effects, interfaces and more.
Url: http://www.absolutecross.com/tutorials/photoshop/

Grafx-Design – Smaller directory of tutorials.
Url: http://www.grafx-design.com/phototut.html

Photoshop Videos – The official dvd training site of NAPP. Online video store filled with videos covering a variety of projects for Photoshop users.
Url: http://www.photoshopvideos.com/

Mike’s SketchPad – Very nice selection of Photoshop tutorials to increase your design skills.
Url: http://www.sketchpad.net/photoshp.htm

Tutorial Man – This is a site filled with hundreds of Photoshop tutorials, covering web graphics, digital art, layouts and more.
Url: http://www.tutorialman.com/

PsLover – 10,230+ Photoshop tutorials at your disposal.
Url: http://pslover.com/

Planet Photoshop – Photoshop tutorials, video tutorials, reviews and a forum to interact with other Photoshop users.
Url: http://www.planetphotoshop.com/category/tutorials/

PSD-Tutorials – Tons of Photoshop tutorials. Covering every aspect of Photoshop and you can submit your own tutorials.
Url: http://www.psd-tutorials.com/

Total Training – Step by Step Photoshop video tutorials for an experience level.
Url: http://www.totaltraining.com/prod/adobe/photoshop.asp

Pixel Perfect – Master digital artist Bert Monroy hosts this podcast. Learn the tips and tricks you need need to create great digital works in Photoshop.
Url: http://www.revision3.com/pixelperfect

Total Tutorials – Lots of very detailed Photoshop tutorials.
Url: http://www.totaltutorials.com/

PS Workshop – Site has over two thousand Photoshop tutorials, plus Photoshop tools and forums to connect with other artists.
Url: http://psworkshop.net/psworkshop/

Great collection of Adobe Photoshop effects tutorial on net
Url: http://www.photoshoproadmap.com/Photoshop-blog/2007/07/22/the-best-80-photoshop-text-effects-on-the-web/

Important ASP.NET Validation Expressions for RegularExpressionValidator

Some important ValidationExpression for RegularExpressionValidator
[ASP.NET]:

a) Name :: Allowed Characters: A-Z a-z and .
==> ValidationExpression="^[a-zA-Z''-'\.\s]{1,140}$"


b) Comments :: Allowed Character: A-Z a-z 0-9 , . ! and -
==> ValidationExpression="^[0-9a-zA-Z''-'\,\.\!\-\s]{1,140}$"


c) Valid Email Address :: i.e. yourname@companyname.com
==> ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"


d) Valid US Phone Number :: i.e. XXX-XXX-XXXX
==> ValidationExpression="((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}"


e) Valid Date:: i.e. 1900-01-01
==> ValidationExpression="(19|20)\d\d[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])
"


f) Valid Number Only:: i.e. 1900-01-01
==> ValidationExpression="\d+"



source: http://www.regular-expressions.info/dates.html





*** Another Email Address Validator :: i.e. firstname.lastname@companyname.com

        protected bool EmailAddressValidatorCaller(string EmailAddress)
        {
            if (!string.IsNullOrEmpty(Bcc) && !IsValidEmailAddress(Bcc))
                throw new ArgumentException("Bcc email address is not valid", "SendMail");
        }

       
        protected bool IsValidEmailAddress(string EmailAddress)
        {
            string MatchEmailPattern = @"^(([\w-]+\.)+[\w-]+|([a-zA-Z]{1}|[\w-]{2,}))@"
                                       + @"((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\.([0-1]?
                                          [0-9]{1,2}|25[0-5]|2[0-4][0-9])\."
                                       + @"([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\.([0-1]?
                                            [0-9]{1,2}|25[0-5]|2[0-4][0-9])){1}|"
                                       + @"([a-zA-Z]+[\w-]+\.)+[a-zA-Z]{2,4})$";

            return Regex.IsMatch(EmailAddress, MatchEmailPattern);
        }

hide page name of the defaul page from URL using JS

/* +++++++++++++++ script type="text/javascript" +++++++++++++++ */
var testremove = location.href.toLowerCase().indexOf("default.aspx");
if (testremove != -1)
{location.replace(location.href.substring(0,testremove))};
/* --------------- /script --------------- */
/* thnx rakib :) */

Saturday, September 13, 2008

Hi

welcome to eComm Expert Inc.