728x90 Ad Space

MAJU BATCH 073 Computer Science (ISlamabad).wmv

...

#Exercise #Tracker #application #with #PhoneGap

Exercise Tracker application with PhoneGap. In this tutorial, the Track Workout page and complete the app by creating the History and Track Info pages. Saving the GPS Data   When the user clicks the Stop Tracking button, we need to stop following their GPS location and save all of the GPS points that were recorded (tracking_data) into the database. We’ll also reset the text input box (in case they want to record another workout straight away) and we’ll display a message that we have stopped location tracking. PhoneGap provides...

#‎windows‬ ‪#‎lover‬

(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); Post by Programming Helper & Latest Tutorial...

#‎Programming‬ ‪#‎Life‬ ‪#‎Great‬ ‪#‎Place‬ to ‪#‎sleep‬ ‪#‎Under‬ ‪#‎Office‬ ‪#‎Desk‬.

(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); Post by Programming Helper & Latest Tutorial...

Logging in C# with log4net

There are some examples out there, but I’ve found that most of are either too complicated or are too specific. In the end I decided that the only way to fix the problem is to write a general tutorial on Log4Net configuration myself. Basics Use NuGet to download and install the latest version of Log4Net. Config files Now you need to configure Log4Net. Read More ...

Blur Mask Filter in Android

Blur Mask Filter on Bitmap in Android This takes a mask, and blurs its edge by the specified radius. Whether or or not to include the original mask, and whether the blur goes outside, inside, or straddles, the original mask’s border, is controlled by the Blur enum. package com.example.androiddrawbitmap; import java.io.FileNotFoundException; import android.net.Uri; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import...

Creating a Mobile Event Calendar

Tags: android, conference location, GNU General Public License, Google, google maps, IOS, IPhone, Mobile Calendar, Mobile Event Calendar, mobile version, Open Source This tutorial describes how to build an HTML5-based mobile calendar to track conferences and events that run on iOS and Android phones using a mobile version of dhtmlxScheduler (open source, GPL). At the end, users will be able to add and edit events, select the conference location on Google Maps, and see the events in day, month, or list views…. Read More...

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...

Struts 2 Tutorial

Welcome to Part-4 of the 7-part series where we will go through different aspects for Struts2 Framework with some useful examples. In previous part we went through Struts2 Validation Framework. We saw how easy it is to integrate validation in your struts2 application. In this part we will discuss about Tiles Framework and its Integration with Struts2. We will add Tiles support to our HelloWorld Struts application that we created in previous parts. I strongly recommend you to go through previous articles and download the source code...