PHP Mobile Applications HIT May 2013 INFO

On June 19th I will start to deliver a detailed professional course for cross platform web and mobile applications development. The course focuses on PHP for the server side and on JavaScript for the client side. The course includes 220 academic hours and it takes place in HIT. You can find detailed information about this […]

The Bright Future of Dart BIZ

It is very difficult to forcast when it comes to technologies. Nevertheless, as of today I have every reason to believe that Dart might become one of the most popular programming languages in the world. In this post I will try to explain this bombastic conclusion. It is fairly clear that more and more applications […]

Hello World (Web Browser) in Dart PRO

The code we develop in Dart can be executed in a web browser. It can be a web browser that already includes a Dart VM, such as the Chromium, or a simple web browser. When the web browser doesn’t include a Dart VM the code we wrote in Dart will be compiled into JavaScript. The […]

Function as First Class Objects PRO

Similarly to JavaScript, we can pass over functions as objects. We can pass a function as a argument to a another function and we can store a function in a variable. The possibility to define anonymous functions and pass them over as arguments to other functions simplifies the code. goodMorning(str) => print(“Good Morning $str”); goodEvening(str) […]

Hello World in Dart PRO

Dart is an open source class based, object oriented, optionally typed programming language that allows us to develop browser based one page web applications. We can execute the code that should run on the client side either by using a web browser that supports Dart or by compiling our code into JavaScript. Using the Dart […]

Routing in AngularJS PRO

AngularJS allows us to develop code running on the client that supports routing in a way similar to code running on the server. Using AngularJS support for routing the development of a one page web application becomes much simpler. The following code sample include a simple HTML file that refers a JavaScript file, where the […]

Address Book Code Sample in AngularJS PRO

AngularJS supports data binding. The view is updated whenever the model changes and vice versa. Thanks to AngularJS support for data binding we can avoid writing code in JavaScript that manipulates the DOM. The behavior behind the DOM elements is modeled into controllers. AngularJS allows us to express this behavior in a clean readable form […]

Hello World in AngularJS PRO

AngularJS is a JavaScript library that provides us with a clear separation of our code into views and controllers. The development of AngularJS is promoted by Google. The following code sample is kind of a simple Hello World. Browsing this code sample we will see two text fields we can consider as models binded with […]

Update cookies preferences