Video.js Jump Start PRO
Using the Video.js JavaScript library we can easily add video into our web page and do it in style. Video.js provides a common controls skin built in HTML/CSS, fixes cross-browser inconsistencies, adds additional features like fullscreen and subtitles and manages the fallback to Flash or to other playback technologies. This video clip overviews a simple […]
Galleria Jump Start PRO
The Galleria JavaScript library allows you to create stunning beautiful image galleries. The Galleria library uses jQuery. The following video clip shows a simple usage of this library.
WordPress Jump Start Lecture INFO
On april 17th 2013 I delivered a free lecture about WordPress. The lecture took place in HIT. You can download the slides I was using during the lecture. You can find (within the slides) the links we mention during the lecture. For a smooth start I recommend on starting with setting a simple web site […]
Hello World (Command Line) in Dart PRO
We can use the dart utility in order to compile and execute code we write in Dart when using the command line. main() { print(“hello world!”); } The following video clip shows the execution of this simple code sample. The video clip shows how to use this command when working on Mac. On other operating […]
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 […]
The Android Search Framework PRO
The android platform provides us with a search framework that helps us implementing search mechanism in our application. We can allow the user to enter the searched term either through a search dialogue shown on top of the screen or through a search view widget. When developing an application that includes a searching mechanism we […]
The list Construct in PHP PRO
The list construct in PHP allows us an easy assignment of values that belong to array into variabels in our code. The list construct is highly useful when developing code that works with a relational database. The following code sample shows a simple usage for the list construct. <?php $vec = [2=>”dave”,1=>”ron”,0=>”chen”,3=>”ran”]; list($a,$b,$c) = $vec; […]
PhoneGap Jump Start for iOS PRO
You can find a detailed jump start tutorial for doing the first steps at docs.phonegap.com. In order to assist developers when following this jump start tutorial I chose to create a short video clip in which I create a simple phone gap hybrid application for the iOS platform.
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 […]