PHP Fundamentals Course Update INFO
I have just completed to update the PHP Fundamentals course. The community version of this course is available for free at abelski.lifemichael.com. The new version of this course includes four new topics: Extensions, Performance, Closure and Configuration. The update for this course was introduced in order to assist those who learn towards the PHP Zend […]
Developing Android Broadcast Receiver PRO
In order to develop an android broadcast receiver we should define a class that extends BroadcastReceiver, implement our onReceive method and update the android platform about the new broadcast receiver, either via the manifest xml file or by calling the registerReceiver method. The following code sample includes the definition of a BroadcastReceiver that will get […]
Developing Android Remote Services PRO
The first step is coding the aidl file that includes our definition for the interface that lists the methods we want to enable their invocation from another process. package com.abelski.currencyservice; interface ICurrencyService { double getCurrency(String country); } The aidl compiler will go over that file and auto generate the interface we defined in the aidl […]
PHP Mobile Applications HIT December 2012 INFO
On December 11th I started to deliver a detailed professional course for cross platform web and mobile applications development. The course focuses on PHP for the server side and focus 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 […]
Android 4.1 Professional HIT November 2012 INFO
On November 15th I start delivering a professional course for learning how to develop applications in Java for the android platform. The course includes 180 academic hours, it takes place in HIT and it splits into three parts. The first part covers the topics in Java required for learning android development and it includes extensive […]
By Name Parameters in Scala PRO
When calling a function and passing over an argument which is an expression that needs to be evaluated, the expression will be evaluated before the function is invoked and its value will be passed over. This is the default behavior. By adding => in between the parameter name and its type we will defer the […]
PHP 5.4 New Features Lecture PRO
On October 14th I lectures in HIT about PHP 5.4 new features. The focus was on traits. Overviewing the traits topic we looked over those cases in which traits can be useful. You can download the slides and find more training material that cover PHP 5.4 new features at www.abelski.org.
PHP, Java EE & .NET Comparison Lecture PRO
I want to thank all attendees who came to the lecture I gave on October 11th in Holon Institute of Technology. The slides can be downloaded and the first steps towards learning the topics mentioned during the lecture can be done using the training material I publish for free personal and academic usage at www.abelski.org.
Mobile Applications Development Lecture PRO
I want to thank all attendees who came to the lecture I gave on September 11th in Holon Institute of Technology. The video clips that were played before the lecture started can be found organized in a playlist I created on the youtube platform. The slides can be downloaded and the first steps towards learning […]
Android Logcat & PhoneGap PRO
When developing an hybrid application we encounter difficulties when tried to track (debug) code we wrote in Java Script that is executed inside the WebView object. The problem becomes even more complex when using PhoneGap. The following code sample shows how we can use the android logcat for getting log messages from the code we […]