A list of Anscamobile’s Corona SDK tutorials – iPhone and Android Game Development Tuts

Newest tutorial added: Corona Tips and Tricks [work in progress]
by @base2solutions on April 6, 2011

Corona for Newbies by Peach Pellen

These tutorials are an especially gentle introduction to Corona SDK.

Continue Reading »

Process for developing on multiple computers for your iPhone, iPad, iPod touch, Mac OS

The following information was also locate within your developer account under

Member Center > iOS Provisioning Portal > Certificates > How To (tab) > Saving your Private Key and Transferring to other Systems

This is just to share it is under that section.
It took me several moths to find this out.
I had to contact the Apple technical assistant in order to find this out.
Hopefully this will help any of the developer out there more easy to find this.
Continue Reading »

Installing Magento [version 1.4.2.0] on ICDSoft

Web Hosting By ICDSoft.comYou need to follow these steps to install Magento:

1. Download the installation files from the site of the vendor. Magento can be obtained from:

http://www.magentocommerce.com/download

Choose to download the full release of the software by selecting one of the archived packages from the drop-down menu next to “Full Release:” (magento-MagentoVersion.zip, magento-MagentoVersion.tar.gz, magento-MagentoVersion.tar.bz2) and click on the “Download” button.

2. Once you have downloaded the archive that contains the installation, you need to upload it to your hosting space.

You can either extract all the files from the downloaded archive and upload them, or you can upload the archive and use the web hosting Control Panel’s File Manager to extract the package.

The best way to upload big files or multiple files is via FTP. If you are not sure how to upload the files, please visit this page.

If you are installing the application in your main domain, or in a subdomain, you may need to delete the default index.php file first. You can do this either via FTP or through your web hosting Control Panel’s File Manager.

3. You need to create a MySQL database for the Magento application. You can do this through your web hosting Control Panel’s MySQL section. Be sure to create the database in MySQL 5 format.
Continue Reading »

Check Username Availability on Social Community Website

So you have a domain and facebook and even twitter account for your domain, is it enough?
Maybe you want to checkout all the community to see if your username are available, but normally to do this, you will need go to each site and register and check to see the username availability, this usually take around a day to visit to all of the site. This is not just time consuming, but also the name may not be available, so what to do. So before you create any username, it is best to check this following site out.
Continue Reading »

How to make a proper CSS button


This post will teach you how to make a proper CSS button.

<a class="button btn_file btn_blue">
     <span>
          <span>Button Text</span>
     </span>
</a>

From the above code you can see that I had entered 3 classes for the < a > tag, they are button, btn_file and btn_blue. This is how I usually construct the class layer.
Continue Reading »