Iterators in JavaScript PRO

JavaScript allows us to use iterators for going over the properties of a specific object or for going over the elements of a specific array. The following code sample shows how simple it is to use iterators in JavaScript. <!DOCTYPE html> <html> <head> <title>The Iterator Function</title> </head> <body> <script type=”text/javascript”> var student = { name: […]

Dart Jump Start PRO

Last wednesday, on october 9th 2013 I delivered kind of a jump start lecture for learning Dart, Google’s new programming language. You can find the slides at http://www.slideshare.net/lifemichael/dart-jump-start. More info about my new coming courses can be found at http://tinyurl.com/lifemichaelhitcourses.

HTML5 Jump Start PRO

Last wednesday on october 9th I delivered kind of a jump start lecture for learning HTML5. The lecture took place in HIT. You can find the slides at http://www.slideshare.net/lifemichael/html5-jump-start. More info about my new coming courses can be found at http://tinyurl.com/lifemichaelhitcourses.

PHP Jump Start PRO

Last wednesday on october 9th I delivered a short jump start lecture for learning PHP. The lecture took place in HIT. You can find my slides at http://www.slideshare.net/lifemichael/php-jump-start. I will be more than happy to get your feedback about my lecture. More info about my new coming professional courses can be found at http://tinyurl.com/lifemichaelhitcourses.

JavaScript Jump Start PRO

Last wednesday (october 9th) I delivered kind of a jump start lecture for learning JavaScript. The lecture took place in HIT. You can can find my slides at http://www.slideshare.net/lifemichael/javascript-jump-start. I will be more than happy to get any feedback about this lecture. More info about my new coming professional courses can be found at http://tinyurl.com/lifemichaelhitcourses.

MooTools Cookie Object PRO

MooTools provides us with Cookie, a global object that provides us with a clean and simple access to the cookies on our web browser. The following code sample shows how simple it is to create a new cookie and how simple it is to read the value of a cookie that already exists. <!DOCTYPE html> […]

MooTools Request Class PRO

The MooTools JavaScript library provides us with the Request class. This class wraps the XmlHttpRequest object and allows us implementing ajax in a much simpler way. The following code sample shows how simple it is to use the MooTools Request class. It includes two files. The first file is the HTML file that includes code […]

Java EE Platform Course in HIT Autumn 2013 ACD

During 2013 autumn semester I will deliver in HIT the ‘Open Source Server Side Development’ course. The course focuses on Java EE, including JavaServlets, JSP, REStful Web Services and JPA. You can find the detailed syllabus at http://www.lifemichael.com/hit/java_ee_fixed_2013_10_he.pdf. You can find the google group we are going to use during this course at https://groups.google.com/forum/#!forum/hit-java-ee-2013-10. You […]

Scala Programming Course in HIT Autumn 2013 ACD

During 2013 first semester I will deliver in HIT the ‘Internet Programming’ course. Its first part focuses on Java. Its second part focuses on Scala. You can find the detailed syllabus at http://www.lifemichael.com/hit/internet_programming_2013_10_he.pdf. You can find the google group we are going to use during this course at https://groups.google.com/forum/#!forum/hit-scala-2013-10. You can find the on-line detailed […]

Paper.js Verctor Graphics PRO

Paper.js is an open source JavaScript library that provides us with vector graphics capabilities. Paper.js uses the HTML5 well known canvas. The following code sample shows how simple it is to use this library. <!DOCTYPE html> <html> <head> <title>paper.js demo</title> <script type=”text/javascript” src=”paper-full.min.js”></script> </head> <body> <canvas id=”ourcanvas” resize></canvas> <script type=”text/paperscript” canvas=”ourcanvas”> var path = new […]

Skip to content Update cookies preferences