PouchDB Jump Start PRO
PouchDB is a small JavaScript library that provides us with the functionality of a document oriented database. We can use it both on the server and on the client. The following is the code that I was using in this video clip. Make sure you update the link to the PouchDB JavaScript file before you […]
OOP Analysis & Design Course in Shenkar ACD
During spring 2013 I will deliver the Object Oriented Analysis & Design course in Shenkar college of Engineering & Design. This course is delivered as part of Shenkar academic program for B.Sc. in software engineering. Yaeli Rushniek Tavor assists with the delivery of this course. You can find the syllabus at http://www.lifemichael.com/shenkar/2013_03_oop_design_analysis.pdf. You can find the google […]
Learning Android Java Applications Development PRO
Using HTML5 and other web technologies when developing an application for the android platform simplifies the development process and helps us cooping with the well known android platform fragmentation problem. I chose to write this post in order to point at those cases in which we cannot avoid using Java in our application development for […]
Simple Zend Framework Jump Start PRO
I have recently created a simple demo for using the PHP Zend Framework. The simple demo was prepared in order to assist my students doing their first steps using this framework. The demo includes few controllers and it basically shows a list of books and a list of reviews for each one of them. In […]
HIT PHP Web Applications December 2011 INFO
In December 2011 I will start to deliver a professional course for developing cross platform web applications in PHP. I deliver this course through the external studies unit of HIT. The programming language selected for the server side is PHP. Most of the course focuses on PHP. The rest of the hours are allocated for complementary […]
Mobile Hybrid Applications Samples PRO
I chose to write this post for the benefit of all people who are not familiar with hybrid applications for mobile telephones. In the past, applications for mobile telephones were developed similarly to applications we install on our personal computer. When the case was iPhone they were developed in Objective-C. When the case was Windows […]
The Notification.Builder Class PRO
The Android 3.0 platform includes the Notification.Builder class that assists with the creation of user notification. Notification.Builder builder = new Notification.Builder(NotificationBuilderDemo.this) .setSmallIcon(R.drawable.icon_noti) .setAutoCancel(true) .setTicker(“Hello Bonga!”) .setContentText(“La La La BONGA”) .setContentIntent(intent); NotificationManager manager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); manager.notify(text.hashCode(), builder.getNotification()); The Notification.Builder class introduces a clear implementation for the Builder design pattern. The Android 3.0 Tablets UI course I […]
HIT PHP Web Applications June 2011 INFO
In June 2011 I will start to deliver a professional course for developing social web applications in PHP. I deliver this course through the external studies unit of HIT. The programming language selected for the server side is PHP. Most of the course focuses on PHP. The rest of the hours are allocated for complementary technologies […]
The Future of Silverlight and Flash PRO
Trying to forcast which technology will rise and which technology will fall is a mission impossible. The technology world is too complex driven by away too many forces, both technology and social. In addition, it is important to remember that each and every technology stands on its own and the case with one technology isn’t […]
HIT PHP Web Applications March 2011 PRO
In march 2011 I will start to deliver a professional course for developing social web applications in PHP. I deliver this course through the external studies unit of HIT. The programming language selected for the server side is PHP. Most of the course focuses on PHP. The rest of the hours are allocated for complementary technologies […]