Pop In Effect with CSS Keyframe Animation

Pop in Effect with CSS Keyframe Animations
Building custom animations is easy with CSS3′s Keyframe property. In this tutorial I’m going to show you how to create a small “pop in” animation.

Read More

Standard Palindrome in PHP

Standard Palindrome in PHPA Standard Palindrome is a word or phrase that is the same forward as it is backwards without punctuation and spaces. So here is a small script that strips everything but letters and numbers in a string and finds if it’s a palindrome.

Read More

Spice up your Gmail Signature in Chrome

As you may know Gmail doesn’t allow you to make a html signature for your emails natively. So here is a quick way to add a little bit of a punch to your emails.

Read More

Create a Basic Peeling Sticker Effect in Photoshop

basic-peeled-sticker-effectA peeled sticker effect is a great effect to add to any design, and here’s how to do a basic peeled sticker effect in Photoshop.

Read More

Create Slick Silver Text in Photoshop

slick-text-photoshop-tutorialNicely looking text is always a great addition to your design. You may have seen this style around the web and it is very easy to make. It’s perfect for welcome text, logos, and headers.

Read More

How to Make a Sleek Button in Photoshop

How to make a sleek button in photoshopHere’s a quick tutorial to give your buttons some pizazz. Having a sleek button can improve the click-age of your buttons, which is always good. Great for sign up, upload, buy now, or more info buttons.

Read More

Setting up Pidgin for Google Talk on a Custom Domain

google-talk-in-pidginHaving trouble setting up Pidgin‘s Google Talk support for your custom Google Apps Domain? Well here are the simple settings that will get it all running for you.

Read More

View Your Hard Drive Space With WinDirStat

windirstast
A great tool for visualizing what is taking up all of your disk space is WinDirStat. It displays all of your hard drive’s files in a visual form allowing you to easily see what is using the majority of space and seeing what to delete. WinDirStat also lets you view what filetypes are taking up what, so you can see if your avi collection is taking up most of your space or any type of files you use.

Read More

Twitter for Beginners

twitter

New to Twitter? Don’t even know what it is? well then this post is for you. Well lets start with what it is, it’s mainly a way to stay connected with friends through bit sized messages 140 characters long. There are many ways to tell twitter what you’re doing and to see what your friends are doing, including through your phone, desktop apps, and of course the site itself.

Read More

Center a Div Tag in CSS

Centering something with CSS isn’t very easy. Here is the simple code to center a div in the middle of a page.

text-align: left;
margin-top: 0;
margin-right: auto;
margin-bottom: 0;
margin-left: auto;

Just add that to a CSS Div and it will center it.

Read More