HTML5 Relational Database INFO

HTML 5 provides us with a relational database running on the web browser. This relational database supports SQLite sql syntax. The following code sample checks whether the web browser supports the HTML 5 relational database. <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”> <html> <head> <title></title> </head> <body> <script type=”text/javascript”> if(window.openDatabase) { document.write(“support”); } else […]

Writing to Java Script Console PRO

We can easily track our code in Java Script by writing text messages to the Java Script console. The following code sample shows how to do it. <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”> <html> <head> <title></title> <script type=”text/javascript”> var sum = 0; for(i=1; i<=10; i++) { sum+=i; console.log(“i=”+i); console.log(“sum=”+sum); } document.write(“sum=”+sum); </script> </head> […]

HIT Java EE Spring 2012 ACD

This coming summer semester (Spring 2012) I am going to deliver a basic Java EE course in HIT. The course is part of the HIT Computers Science BSc academic program. The main topics we are going to cover in this course are: Java Servlets & JavaServer Pages Java Server Faces Java Persistence API Java EE Web Services […]

Shenkar Java EE Basics Spring 2012 ACD

This semester (Spring 2012) I deliver a basic Java EE course in Shenkar. I deliver it as part of Shenkar Software Engineering BSc academic program. The main topics we are going to cover in this course are: Java Servlets & JavaServer Pages Java Server Faces Java Persistence API Java EE Web Services In addition, we are going […]

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 […]

Abelski Professional Webinars INFO

I have recently decided to start using webinars for delivering my knowledge and experience. I will deliver my first professional webinar on December 4th. It will be kind of a PHP Jump Start and apart of PHP it will cover various web technologies such as JavaScript, Ajax, HTML5 and jQueryMobile. During the webinar itself I […]

Tel Hai Java EE Autumn 2011 INFO

During the coming semester (Autumn 2011) I am going to deliver a detailed Java EE course in Tel-Hai. This course is delivered as part of Tel-Hai Computers Science BSc academic program. We are going to cover the following Java EE topics: Java Servlets & JSP Java Server Faces Java Persistence API We are going to […]

Silverlight Initialization Parameters PRO

We can easily pass initialization parameters from the HTML code that invokes the Silverlight application to the Silverlight application itself. The parameters should be placed as key value pairs, while the keys are their names and the values are the values of each one of them, as a string which is the value of a […]

MTA Android Hybrid Applications Students Projects INFO

During summer 2011 I taught in Tel-Aviv Jaffa Academic college a course about hybrid applications development for android devices. During the course my students learned how to exploit today newest web technologies in the development of hybrid application for android. We covered JavaScript libraries, such as jQueryMobile and SenchaTouch that enable you to develop user […]

The PhoneGap Library PRO

The PhoneGap library allows us to develop hybrid applications that render JavaScript code that interacts with the device as if it was an ordinary native applications. The following video clips explains the first steps. The possibility to write code in JavaScript that interacts with the device itself while using a JavaScript API identical for all […]

Update cookies preferences