WELCOME!!!

I WELCOME YOU ALL FROM THE DEPTH OF MY HEART TO MY BLOG. THIS BLOG IS ALL ABOUT INFORMATION ABOUT SEVERAL TOPICS. I HOPE YOU WILL LIKE IT.


WITH REGARDS,

SAM

WITH REGARDS,

SAM

Now You Can...

you can now download JAVA Tutorials, a very easy, understandable and very precise for the JAVA Beginners. You can Now earn by just uploading the files of size more the 5Mb and less then 5 Gb. no hassle no falseness and on weekly basses.

Sunday, July 25, 2010

Professional Photography Tips For Compact Digital Camera Users - How to Take Good Portrait Photos


By Wan Tze Lee


If you've seen many beautiful portrait photos and you might be wondering how to take stunning pictures of your subjects' faces - it can be done by using both SLR cameras and compact digital cameras. However, as for amateur photographers (those who have limited knowledge about photography) - if you're under this category; you might be having difficulties of producing good portrait pictures with your point-and-shoot camera.

Certainly, there are few tips that you can take dazzling portrait photos by using your point-and-shoot camera:

Tip No.1: Taking multiple photo shoots in different angles

Basically, your subject's face is normally focused and placed at the center of the picture during a portrait photo shoot. In that case, not all subjects look nice by staring straightly at the camera lens during the photo shoot. Therefore, you can request the subject to stare slightly to the left or right at the lens during the photo shooting process. At the other way around, let the subject naturally look at you - this time, the photographer changes the position of her camera, i.e. by adjusting the height of the tripod, or taking few shots at different angles.

Tip No.2: Having different backdrops or themes for your subject

Choosing the right backdrop or theme is important to make your subject's face (a.k.a. the foreground) more noticeable and well-perceived by others. Avoid using striking colored backgrounds that could overshadow your subject. You can use other materials such as solid colored wrinkled cloths, boards or walls as your backdrops which can create different tones on your subject's face.

If you want to have real underwater themes - you can use the Canon waterproof digital camera to take clear and excellent underwater portrait photos which is impossibly taken by using conventional types of digital cameras.

Tip No. 3: Try suitable shooting mode for the right photo-taking condition

Make use of the advanced presets or shooting modes so that you can take high-quality portrait pictures in different conditions. For Canon PowerShot digital camera users, they would usually use the "Sunset/Evening Shooting Mode" to capture portrait pictures outdoors in the evening with the brightness, colors and contrast are well-adjusted.

Tip No. 4: Dress your subject

Based on the well-known quote - "Clothes make the man"; in this case, your subject's appearance can be enhanced with pleasant-looking attires. If you want to make your subject looks elegant - for instance, wearing a matching business suit can make your portrait picture look formal. In contrast, you can have your subjects to wear sports apparels (including baseball cap, sports jacket, jerseys) that would create a perfect athletic impression as well as develop a refreshing view of your subjects' faces.

For more photography portrait tips, visit CanonCompactCameras.com for more effective tips and guides on how to take professional photographs.

Article Source: http://EzineArticles.com/?expert=Wan_Tze_Lee

Thursday, May 20, 2010

Use PHP and MySQL to Create Dynamic Web Sites

By Jon R. Allen

PHP and MySQL work together to help you do what seems like magical things with Web sites. Long ago, way back in the 1994 dark ages of the Internet, a very good thing happened. A genius named Rasmus Lerdorf wanted a way to track how many visitors came to his online resume. So, to count the number of his online resume visitors, Lerdorf created PHP. At that time, PHP stood for Personal Home Page.

Today counting site visitors is something we take for granted, as there are many tools and gizmos available for this common analytic. However, back in 1994 when the Internet was still new, what Rasmus Lerdorf did with his PHP visitor counter was important and new to Web site development. Lerdorf's PHP would go on to become a very, very powerful and popular web development language. PHP is a rich language for dynamic web development, it has many commands and functions that can perform many different site operations.

PHP is now known as PHP: Hypertext Preprocessor. So what does that mouthful mean? The official PHP Web site (php.net) defines PHP this way;

PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.

PHP is a server-side scripting language designed for use on the Web. This means you can put (or embed) PHP code into an HTML (Hyper Text Markup Language, it's the code that makes up web pages) web page. Each time the web page is displayed in a browser, the PHP code will run at the web page's host (PHP runs at the web page's server) and generate output to the web page which is then shown on the viewer's (or client's) browser. Often the generated output shown on a web page by PHP code comes from a database. PHP is very good at interacting with MySQL databases, PHP is often used with the MySQL database management system.

A web developer using PHP will include PHP script/code within the XHTML/HTML code of a web page. The PHP script/code can do many things that make a Web site dynamic, rather than static. A dynamic Web site can change its content, it can change what information is shown to a visitor. A dynamic Web site will usually be powered in the background by a database, such as an MySQL database.

An example of a dynamic Web site would be one where visitors can view, search, and add recipes to an online database, and then display various recipes by calling them up from the database during a search operation. This is all done by the dynamically developed Web site interacting with a visitor. In contrast, a static recipe site would require a web developer to hand-code a new web page for each new recipe added by a visitor.

Blogs are often powered by the WordPress blogging platform, and WordPress uses PHP and an MySQL database to display the content shown in your typical blog. A blog is often updated and changed by adding new posts, which means new data is added to the database powering the blog. Each new post to a blog changes what information is shown, or can be shown, to a visitor.

Updating a dynamic PHP and MySQL developed site is as easy as entering new contents to a database, like when you add a post to a blog. With a dynamic site, no web pages need to be laboriously coded by hand. Dynamic Web sites are easier to maintain, upgrade, and build on than static sites. In contrast, a static Web site requires a Web developer to hand-code each and every web page that has content changes.

Author Information

I'm Jon R. Allen and I have a blog to help you learn more about creating effective blogs and Web sites. Please visit my blog at: http://www.wordpressblogsandwebsites.com. My goal is to provide information and answers to the questions and problems people have when they begin or manage a Web site or blog powered by WordPress, or by XHTML/HTML.

I hope you found my article informative and useful. Thank you for stopping by.

Article Source: http://EzineArticles.com/?expert=Jon_R._Allen