Posted on 14 January 2013
There are a lot of services out there that allow you to get free Twitter followers via Twitter exchanges. One of the Twitter exchanges that I have found to be very helpful in not only getting Twitter followers but also ReTweets is AdReTweet. They not only have a great service for those that need to […] Continue Reading
Posted on 27 October 2012
This will explain how to enable the featured image option when creating a new post in WordPress when your theme does not support it. Many themes forget to include the featured image option on the new posts admin page. You will notice that sometimes featured images are required like with the Pinterest PinIt buttons. How […] Continue Reading
Posted on 24 October 2012
Many WordPress users have the Digg Digg floating social toolbar on their websites to allow surfers to share their pages via social media, there is now an alternative called AA’s Digg Digg Alternative. The one problem with Digg Digg is that it adds so much unnecessary code even to pages that aren’t using the floating toolbar at […] Continue Reading
Posted on 11 October 2012
When you need to migrate a website from one domain to another it can be a complicated and frustrating process. There are several things that you want to keep in mind and the most important is all of the SEO you have on the old domain. You want to not only ensure that the people […] Continue Reading
Posted on 01 June 2012
In Java SE 7 and later, any number of underscore characters (_) can appear anywhere between digits in a numerical literal. This feature enables you, for example. to separate groups of digits in numeric literals, which can improve the readability of your code. For instance, if your code contains numbers with many digits, you can […] Continue Reading
Posted on 01 June 2012
Literals of types char and String may contain any Unicode (UTF-16) characters. If your editor and file system allow it, you can use such characters directly in your code. If not, you can use a “Unicode escape” such as ‘\u0108’ (capital C with circumflex), or “S\u00ED Se\u00F1or” (Sí Señor in Spanish). Always use ‘single quotes’ […] Continue Reading
Posted on 01 June 2012
A floating-point literal is of type float if it ends with the letter F or f; otherwise its type is double and it can optionally end with the letter D or d. The floating point types (float and double) can also be expressed using E or e (for scientific notation), F or f (32-bit float […] Continue Reading
Posted on 01 June 2012
An integer literal is of type long if it ends with the letter L or l; otherwise it is of type int. It is recommended that you use the upper case letter L because the lower case letter l is hard to distinguish from the digit 1. Values of the integral types byte, short, int, […] Continue Reading
Posted on 01 June 2012
You may have noticed that the new keyword isn’t used when initializing a variable of a primitive type. Primitive types are special data types built into the language; they are not objects created from a class. A literal is the source code representation of a fixed value; literals are represented directly in your code without […] Continue Reading
Posted on 01 June 2012
byte: The byte data type is an 8-bit signed two’s complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive). The byte data type can be useful for saving memory in large arrays, where the memory savings actually matters. They can also be used in place of int where […] Continue Reading