$1 Australian Economy

 All, Rants  Comments Off on $1 Australian Economy
Feb 192014
 

Even at $1… no-one yet wants Australian Citizenship!!!! and I wonder why that is?
http://www.ebay.com.au/itm/My-Australian-Citizenship-/331132650416?pt=LH_DefaultDomain_15&hash=item4d190b43b0&_uhb=1

2014/04/14 200 000 jobs

http://www.abc.net.au/news/2014-04-14/study-warns-carmakers-exit-could-see-200000-jobs-lost/5389682

2014/03/05 200 jobs
http://www.theage.com.au/national/public-service/up-to-200-public-servants-to-lose-jobs-in-environment-department-20140304-345lv.html

2014/03/05 100 more jobs
http://www.theage.com.au/national/public-service/abs-to-cut-up-to-100-more-public-service-jobs-20140305-346a0.html

2014/02/25 5000 jobs
http://www.theage.com.au/business/aviation/qantas-refuses-to-confirm-reports-it-will-axe-5000-jobs-sell-melbourne-airport-terminal-20140225-33dnk.html

2014/02/19 800 jobs
http://www.theage.com.au/business/telstra-slashes-800-jobs-in-sensis-overhaul-20140219-32zmr.html

2014/02/19 540 jobs
http://www.theage.com.au/nsw/cootes-jobs-go-at-not-so-squeaky-clean-petrol-tanker-firm-20140218-32yfu.html

2014/02/18 1000 jobs
http://media.theage.com.au/news/national-news/jobs-centrestage-as-victoria-looks-to-canberra-5178540.html

2014/02/10 30,000 jobs
http://theage.drive.com.au/motor-news/toyota-to-exit-australia-30000-jobs-could-go-20140210-32cta.html

2014/01/31 600 jobs

http://www.theaustralian.com.au/business/latest/aust-jobless-rate-58-in-dec/story-e6frg90f-1226803110562

2014/01/23 200 jobs

http://www.theage.com.au/national/public-service/public-service-jobs-cut-as-ato-closes-australian-valuation-office-20140123-31bp5.html

2014/01/17 250,000 jobs gone since start of GFC
http://www.news.com.au/finance/work/gfc-killed-250000-australian-jobs/story-fnkgbb3b-1226803603661

 

citizenship

JC

Just a new RapidFMS preview

 All, Technology  Comments Off on Just a new RapidFMS preview
Feb 172014
 

Here is a new screen shot of RapidFMS showing the Calendar, the File Format editing form that lets you create new file formats, the Sign on Glass form as well as the new Script Editor form which allows things such as workflow to be scripted visually.

rapidos-preview

JC

Choosing your Web Technologies

 All, Technology  Comments Off on Choosing your Web Technologies
Feb 052014
 

RapidOS is a relatively new web technology based framework / platform for developing advanced desktop like web apps quickly.

We had quite a lot of requirements, but among the highest priority were:

1 – must be developed in a commonly used well established programming language.
2 – have maximum hosting options available including on mobile devices themselves.
3 – have few application architecture restrictions.
4 – have a low learning curve for current and future developers.
5 – must be relatively quick and easy to implement user requirements.

When we sat down to create RapidOS, we first looked at available programming languages as well as experimenting with many of their existing frameworks.  We soon realised that although some of the frameworks were promising, they generally were not well suited to our requirements.

We had a good idea what the most commonly used technologies were, and a quick investigation of hundreds of popular websites / web apps proved what we already knew. w3techs.com is one of the leading web technology usage stats publishing websites – their stats also reflect somewhat our findings. Let’s look at the top 3 most popular techs in each of the categories below (stats taken from w3techs.com):

Server-side Languages: PHP 81.7%, ASP.NET 18%, Java 2.7%

Interesting these stats. Although we knew these were the top 3 platforms, we never reaslised how little used Java was as a server-side language. Java isn’t a bad choice, nor is ASP.NET, but of these only PHP satisfied our number 2 priority. In fact we have done POCs using ASP.NET and Java also should we require to develop a server in these techs one day, but at this time not a priority.  We like the idea of JavaScript on the server but it isn’t even a blip in the stats nor does it satisfy our number 2 priority – over time this may change. We chose to code our current server in 100% PHP.

Client-side Languages: JavaScript 88.1%, Flash 15.3%, Silverlight 0.2%

We don’t mind what can be achieved with Flash, but it was never a consideration. Neither was Silverlight. In fact, we considered JavaScript, Java and PHP only for this – but if we chose PHP, our client wouldn’t be ‘as rich’.

A RapidOS App has a client component and a server component – both could be hosted in a browser but both could be hosted on a PC or Server. In the end we chose to use both JavaScript and PHP for the client (98% JavaScript, 1% PHP and 1% Java).

JavaScript Libraries: JQuery 57.5%, Mootools 4.9%, Modernizr 4.6%

As we had chosen JavaScript as our client-side language, we looked at whether we wanted to use any util libraries. We liked the way the JQuery selectors worked and the way it hid some of the browser idiosyncrasies and the fact that there is a vast array of plugins and 3rd party components that also use JQuery, so we chose to use JQuery. In fact we use a few other less common libraries too which are simple to redevelop should we ever need.

Markup Languages: XHTML 50.5%, HTML 50.2%

We use XHTML for most part, because the World is moving that way, but that doesn’t really matter so much for now. Our templates are 100% XHTML/HTML with zero logic or embedded funny extensions.

Site Elements: CSS 90%, Compression 54.2%, Cookies 46.5%

Cool, interesting to know that chances are, whatever we do in CSS (sans HTML5 extensions) are usable by most of the World.

Web Servers: Apache 62.7%, Nginx 18%, Microsoft IIS 14.4%

Related to our language choices, we mostly host on Apache, but our client and server also works on Microsoft IIS. That gives us at least 77.1% target hosting compatibility based on those stats.

Content Languages: English 55.5%, Russian 6.1%, German 6%

We only speak English, but our software is easy to cater for multiple languages.  We have made specific effort to ensure that the core foundation of our software is Asian language capable due to one of our requirements.

JC