Friday, September 24, 2010

Do Programming Quickly??

I think I am still young in programming area. I learnt Pascal in High School and learn C++ and Java in University. Most of the time, implementing a program takes lots of time especially designing Graphic User Interface (GUI).

Ubuntu now provides a solution "Quickly" that helps people to write program QUICKLY.
https://wiki.ubuntu.com/Quickly

Quickly uses Python as programming language, GTK as the GUI. It provides lots of handy commands help you to program. Basically, what you need first is to install Quickly, but it only has Ubuntu version only. I hope it can support more distribution later.

1. To install
$ sudo apt-get install quickly


2. Build a project
$ quickly create ubuntu-application myapps
$ cd !$

(refer to my previous post to know what !$ means if you don't know)

3. Edit the project
$ quickly edit


4. Design the GUI
$ quickly design


5. Run the program
$ quickly run


Which Quickly, it is really easy to build your own application with small amount of time.

No comments:

Post a Comment