728x90 Ad Space

Auto Load More Data On Page Scroll using Jquery and PHP

 
This tutorial about my favorite place Dzone like data loading while page scrolling down with jQuery and PHP. We have lots of data but can not display all. This script helps you to display little data and make faster your website.
Load Data while Scrolling Page Down with jQuery and  PHP

Read More »

Enabling the Android Move To SD Card


This Android Quick Tip will show you how to allow your end-users to optionally save valuable device storage space by choosing to store your application on their removable SD card.

Final Result Preview

This tutorial will take an existing Android application and add the ability for the user to move the application to their SD card. This feature was introduced in Android 2.2, but does not require the application to use the Android 2.2 SDK as the minimum supported SDK version. Even your Android 1.5 application can use this feature.

Step 1: Preparation

We begin this tutorial by obtaining the version of the phrasebook Android application used in a previous tutorial called . Download the source code if you want to perform these steps yourself, or just follow along and use these steps with your own Android applications.
If the user has Android 2.2 installed on their device and you haven’t applied this tip, they’ll see a tantalizingly useful, yet grayed out, button when they try to move the application to their SD card. Developers must specifically enable this feature within their specific applications……
Read More »

Validate IP Address with Regular Expression

imavbges
IP Address Regular Expression Pattern ^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\. ([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])$ Description ^ #start of the line ( # start of group #1 [01]?\\d\\d? # Can be one or two digits. If three digits appear, it must start either 0 or 1 # e.g ([0-9], [0-9][0-9],[0-1][0-9][0-9]) | # …or 2[0-4]\\d # start with 2, follow by 0-4 and end with any digit (2[0-4][0-9]) |…
Read More »

Regular Expression For Password Validation

lock
Password Regular Expression Pattern ((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%]).{6,20}) Description ( # Start of group (?=.*\d) # must contains one digit from 0-9 (?=.*[a-z]) # must contains one lowercase characters (?=.*[A-Z]) # must contains one uppercase characters (?=.*[@#$%]) # must contains one special symbols in the list “@#$%” . # match anything with previous condition checking {6,20} # length at least 6 characters and…
Read More »

Struts 2 + Quartz 2 (Cron) jobs in Java

Job_scheduler_log_wiki
Struts 2 + Quartz 2 scheduler integration example Struts 2 didn’t comes with any ready “Struts2-Quartz.jar” like plugin, the hack is use a standard Servlet Listener to link both frameworks together. See the relationship Struts 2 <– (Listener)–> Quartz <—> Scheduler task In this tutorial, we show you how to integrate both Struts 2 and Quartz scheduler framework together. Tools…

Java People You Should Know About Them


Here are the top 8 Java people, they’re created frameworks, products, tools or books that contributed to the Java community, and changed the way of coding Java. P.S The order is based on my personal priority. 8. Tomcat & Ant Founder James Duncan Davidson, while he was software engineer at Sun Microsystems (1997–2001), created Tomcat Java-based web server, still widely…
Read More »

About Zeeshan Akhter

Helping Blog:
http://zeeshanakhter.com
Free Tutorial Website:
http://latest-tutorial.com
Facebook Page:
https://www.facebook.com/pages/Programming-Helper-Latest-Tutorials/338205329541849
Facebook Group:
Join Programming Helper & Latest Tutorials here:
Join Group
Google +:
https://plus.google.com/109587309242947455813/
LinkedIn:
pk.linkedin.com/in/zeeshanakhter/
Twitter:
https://twitter.com/latesttutorials

If you need urgent help then you can directly email us:
admin@latest-tutorial.com or zeeshanakhter2009@gmail.com

Java Design Patterns

Untadsdsitled-3Design Patterns are best practices how to solve common know problems. This article will give an overview of best practices in object-orientated programming and has pointers to some design-pattern tutorials. Design pattern in software development Design patterns are proven solutions approaches to specific problems. A design pattern is not a framework and is not directly deployed via code. Design Pattern…

Pattern

Please see the following description for details on the design pattern.