Services in Android

Services are seprate entity which is being run in background of the app. It have no effect on the front end of the app activity(functionality). • A facility for the application to tell the system about something it wants to be doing in the background (even when the user is not directly interacting with the application).  This corresponds to calls to Context.startService(), which ask the system to schedule work for the service, to be run until the service or someone else explicitly...

Running and Configuring VNC Server on Linux

VNC stands for Virtual Network Computing. It is, in essence, a remote display system which allows you to view a computing 'desktop' environment not only on the machine where it is running, but from anywhere on the Internet and from a wide variety of machine architectures. The VNC system allows you to access the same desktop from a wide variety of platforms.Oracle Enterprise Linux ships with a VNC Server. If you find it is not installed, you can deploy the package thats part of the install...

Parsing XML Files in iOS

Reading XML files is one of the common tasks we perform in our application, In this tutorial let's see how we can use NSXMLParser to parse XML in our iPhone app.Introduction NSXMLParser is a forward only reader or an event driven parser. What it means is, an event is raised whenever the parser comes across a start of an element, value, CDATA and so on. The delegate of NSXMLParser can then implement these events to capture XML data. Some of the events are raised multiple times like the...

Oracle Startup

Starting oracle databaseStarting up Oracle database requires some important detail to note. Failure to follow the proper steps would end up to failed database startup. Remember that we need to login as a user with SYSDBA privileges to startup an Oracle database which would enable us to for example do a – SQL>connect / as sysdba. Here is an example of a DBA connecting to his database and starting the instance: In the above example the database was shutdown so when we logged as sysdba,...

Drag and drop marker on google map

I have markers. I would like to move the marker with a drag and drop-function, and then check the location where we drop that marker. 1.) In this show google map tiles show on screen and zoom at given level. MainActivity.java @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); MapView map = (MapView) findViewById(R.id.map); map.getController().setCenter( getPoint(40.70686417491799, -74.01572942733765));...

Google launched Zopfli to compress data for making webpages load faster

Google launched Zopfli Compression Algorithm, a new open sourced general purpose data compression library.It is a new deflate compatible compressor that was inspired by compression improvements developed originally for the lossless mode of WebP image compression. Being compatible with deflate makes Zopfli's output compatible with zlib. It uses a different and more effective algorithm to compress data that can compress web content about 3-8% smaller compared to zlib at maximum compression....

Table Sorting in HTML by Javascript

This JavaScript code can be used to convert tables in ordinary HTML into sort table ones by associating each title column with an onClick event to automatically sort the data rows. No additional coding is necessary. All you need to do is give your table an ID field, include the sorttable.js file in jsp page and call init in your document's onLoad method. JSP Page Code < %@page contentType="text/html" pageEncoding="UTF-8"%>< !DOCTYPE html>< html> < head> ...

Setting up Password less or Passphrase less SSH/SCP

SSH uses a public key cryptosystem. That means that, among other things, it can present a secret signed with your secret key, which anyone can decrypt with your public key, in order to verify that you are really who you say you are, assuming no one has stolen your private key. There are two main ways of setting up ssh authentication in such a way that you do not have to enter a password or passphrase to log into machines, but without sacrificing security overmuch. You can set up ssh keys...

Scheduling shell Script to check memory usage & automated email notification

1)Create a .sh file [root@ystbckp ~]# vim script_memory.sh 2)Write a the following script in the script_memory.sh file 3)Change the permission to the script_memory.sh file [root@ystbckp ~]# chmod 744 script_memory.sh 4)Scheduling the file to execute on a particular time [root@ystbckp ~]# crontab -e Each entry in a crontab file consists of six fields, specified in the following order Minute hour day month weekday command 05 * * * * sh /root/script_memory.sh When...

Browse existing image or capture new image in android

In this we will learn about how to select exist image in gallery . And In this we will learn about how to capture image from the android device and save into internal memory of android device. In this we do not need external memory or sdcard for capture image. 1.) Intent browsePicture = new Intent(); browsePicture.setType("image/*"); browsePicture.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(browsePicture, "Select Picture"),SELECT_PICTURE);...