728x90 Ad Space

Auto Load More Data On Page Scroll using Jquery and PHP

Auto Load More Data On Page Scroll using Jquery and PHP Tags: Application programming interface, FAQs Help and Tutorials, FireFox, javascript, JQuery, languages, Loading More Results From Database Using jQuery Ajax, PHP, programming, Safari, scripts, Table (database), Unique key, Window On Scroll Load Contents in PHP MySql using jQuery   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...

Enabling the Android Move To SD Card

Enabling the Android Move To SD Card Tags: Enabling the Android Move To SD Card ,Android Tutorials 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...

Validate IP Address with Regular Expression

Validate IP Address with Regular Expression Tags: IP address Validation, regular expression to Validate IP address, Validate IP address with regular expression 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])...

Regular Expression For Password Validation

Regular Expression For Password Tags: regular expression for password, regular expression pattern, Validate password with regular expression 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...

Struts 2 + Quartz 2 (Cron) jobs in Java

Cron jobs in Java EE 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… Read More ...

Java People You Should Know About Them

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

Tags: Adapter Design Pattern in Java, Design Patterns in Java, Design Patterns: Elements of Reusable Object-Oriented Software, Facade Design Pattern in Java, Java Design Patterns, Observer Design Pattern in Java, Singleton Design Patterns in Java Design 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...