How to take screen shots of your BlackBerry device

So you may wonder how is possible to take screen shots of your BlackBerry device without using your PC? Well in this post I will share with you what application I used to take the screen shots.

I used the CaptureIt application you can download it from http://m.thetechmogul.com/ it is really simple to install, also you can setup the Left Convenience Key to use it easily.

If you don’t know how to configure the Left Convenience Key, you have to go to Options, then Screen/Keyboard, then Left Convenience Key Opens and finally select CaptureIt from the list of applications.

Here are the captures of the process of how to install CaptureIt on my BlackBerry 9000:

blackberry-main-menu blackberry-browser blackberry-download blackberry-captureit-techmogul-industries-download blackberry-captureit-after-download blackberry-captureit-main-menu

How to Blog from your BlackBerry

As always I try to get the most of any device I have, so I wanted to blog with my BlackBerry 9000 A.K.A BlackBerry Bold when I am taking a rest of my desktop, or when I am in the bus or at my weekend house. To do this I Googled for an application to blog to my WordPress installation that I use to run this site, and I found this:
BlackBerry WordPress Application

So I downloaded and installed it, then I configured my Blog as you can see in the following screenshots, I wrote all this post from my BlackBerry and it is really easy to do it.

In a couple of minutes I will upload a howto to show you how you can take screen shots of your BlackBerry without a PC :)

Now the magic:

wordpress_blackberry_1 wordpress_blackberry_2 wordpress_blackberry_3 wordpress_blackberry_4 wordpress_blackberry_5 wordpress_blackberry_6 wordpress_blackberry_7 wordpress_blackberry_8 wordpress_blackberry_9

How to change collation in MySQL

Sometimes when I do servers migrations for example from cPanel to Plesk I had some issues with databases collations because each control panel software has their default collation, so I had to manually change the collation of each database that I was going to import in the new server. Normally this happens when you have an latin1 database and you wish to change collation to a UTF8 database, or vice versa.

To do this you can change it from phpMyAdmin or via MySQL console.

Change collation via phpMyAdmin:

- Go to phpMyAdmin

- Select the database you want to change collation in your left pane

Select database in phpMyAdmin

Select database in phpMyAdmin

- Click on the operation tab in the top menu of phpMyAdmin

phpMyAdmin Operations Option

phpMyAdmin Operations Option

- You will see the collation option, select the new collation from the drop down menu and then click on Go

phpMyAdmin collation

phpMyAdmin collation

Change collation via MySQL console:

ALTER DATABASE `db` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;

This will change the collation to latin1_swedish_ci

Note:

Remember that you have to do this before you import the data because this change will affect only the new tables created after we change the collation.

I hope that this little trick help you fix some issues with database driven websites that uses special characters in their content.