Define Constructor When Using MooTools PRO
Define Simple Class using MooTools PRO
MooTools Function Binding PRO
Accessing The Query String in Node.js PRO
In order to access the query string we should first require the url module. Doing so we will be able to invoke the method parse on the url module passing over req.url and true. The method parse returns an object that its properties are the parameters the query string includes. var http = require(‘http’); var […]
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 […]
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 […]
Node.js on Cloud9 Jump Start PRO
Node.js is a platform built on top of JavaScript v.8, Google’s JavaScript runtime engine. Node.js enables us to develop web applications that excellent in their performance. The following code sample is a simple HTTP web server developed using node.js that returns the hello greeting back to the client from which the HTTP request arrives. var […]
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 […]
Facebook PHP SDK Jump Start INFO
The Facebook PHP SDK is composed of two files: facebook.php and base_facebook.php. The first includes the definition for the Facebook class. The second includes the definition for the BaseFacebook class, which is a parent class for Facebook together with few more classes. You can easily download the Facebook PHP SDK at https://github.com/facebook/facebook-php-sdk. The following video […]
Pausing & Resuming Java Script Execution in Web View PRO
When executing code written in Java Script in our web view we would like to pause it when the user moves to another activity and resumes it when he returns. The following code sample includes two activities. The first activity includes a web view that executes code written in Java Script. The second activity is […]