The Coffee-Bytes plugin by Alex Popescu can add folding functionality to Eclipse IDE.
Author Archives: Etay Cohen-Solal
Why I’m NOT using an antivirus?
I am being asked all the time, how come I am not using any antivirus solution in any of my Windows based PC’s?
Complete XML reading/parsing on Android Tutorial
In the following tutorial, I will demonstrate how to read and parse XML in your Android app.
Background processing with IntentService class
This article explain the usage of IntentService class in android SDK to perform background processing to offload tasks from an application’s main thread (Your activity).
when IntentService jobs done, the results are sent back to the activity.

ASP.NET countdown timer custom control
Recently I had the need to create an ASP.NET countdown timer for one of my projects.

ERPXE – Dominate your Computers!
Article Difficulty:

Validating that URL Parameter is not empty (PHP)
URL Parameters are sent to php like:
http://www.example.com?param1=true
when you work with URL parameters you should validate them first.

Transfer data from PHP to Android (JSON) – Part 3

Transfer data from PHP to Android (JSON) – Part 2
This is part 2 of 3 about transferring data from a PHP page to an android app using JSON.
you can read part 1 here.

Transfer data from PHP to Android (JSON) – Part 1
You may reach a point where you need to transfer data from a server (web-service) to a an android client. although, there are many ways to achieve that goal, one of the simplest is using JSON. JSON is better then XML in terms of small bandwidth footprint. it has a lot of libraries for every available platform, so it makes the best solution for server-client communication.