View Single Post
EzInKy's Avatar
Posts: 52 | Thanked: 45 times | Joined on Dec 2009
#3
Other than maybe games an app should not have to worry about "style". All it should need to know is how to collect the data it needs to process and how to return results to the user. It should be the concern of the OS only on how the data is obtained and the results presented.

In other words programming an app should be as simple as:

Code:
os_collect_data(&my_data_struct);
my_app_process_data(data_struct);
os_dispaly_data(&my_data_struct);
Far too much developer time is wasted on how to collect and display data instead of processing the data itself.

Last edited by EzInKy; 2011-02-07 at 15:40.