Saturday, August 6, 2011

START IT UP!

The below steps mentioned may help to create one's own first app in the mobile space:

1. THE IDEA: This is half the game. The idea for the app needs to be solid. The app should be either so fun or it should be a major problem solver.

2. GET STARTED: Get your self the device on which you want to develop the app and download the software development kit on your machine.

3. MAKE YOUR TEAM: If you are an entrepreneur with no developing experience, you may need a team that can analyze/develop/market the app. If you are a developer, check with yourself if you are a good designer/marketer - if not get one.

4. KNOW YOUR DEVICE: Know your toy well.Play around with it's(iOS/Android devices/any other on which you want to develop your app on) interfaces and capabilities. Keep downloading the latest/cool apps on them which will help you to understand the features that are being used.

5. RESEARCH - IS THE "MANTRA": Research as much as you can. Keep browsing the app store/market place and keep scanning the trend of the apps that are being developed and that people are downloading good in number.

6. IDEATE: Take a diary/scribbling pad. Make a note of your idea. This is help you to structure your idea and have a clear picture of the flow of your application.

7. DESIGN: Picturize your idea into a design format. Check for the already existing mobile app "templates" to get a better view of the presentation. Hire a good designer if you are not one.

8. CODE: If you are a developer, keep abreast of the latest. If you are not one, you know what to do ;-)

9. SUBMIT: Submit your app in the app store/market place. Make sure to provide the proper binary builds(as per the guidelines).

10. SHOUT IT: Thanks to the social networking such as FaceBook/Twitter which are providing an excellent platform to market your app. Use them. Create a Fan Page,Tweet about your product, Check with your friends to give a preview of he app.
Last but not the least, word-of-mouth is one of the best mode of publicity :-)

Good Luck for all the Entrepreneurs!!

Wednesday, April 20, 2011

SQL Server 2008: Making Database read only & changing it to read/write

Here is a way to alter the database to ready only and making it back to read/write.

Make Database Read Only

USE [master]
GO
ALTER DATABASE [TESTDB] SET READ_ONLY WITH NO_WAIT
GO

Make Database Read/Write

USE [master]
GO
ALTER DATABASE [TESTDB] SET READ_WRITE WITH NO_WAIT
GO

Saturday, February 26, 2011

Running DDMS

Couple of nights..numerous websites..could not understand where it is going wrong and what am I doing wrong. I was unable to take the screen shot of my application from the android device.

All the websites say the same matter, run DDMS.bat(in windows) to capture the screen shots of your device. But when ever I do that, an error message pop's up "Failed to get the adb version: Cannot run program "adb: CreateProcess error=2, The system cannot find the file specified".

However, tonight the problem was nailed down and here is the process
1. Open Eclipse
2. Window -> Open Perspective -> Other -> DDMS

That's all!! Connect your device. Under the device section, the name of your device and the status(online-if connected,offline-if not) will be displayed.

Good Luck.