
Search In
While providing client side validations you need to use javascript or jquery for that.
For doing that you need to use libraries that support jquery functions and methods for providing validations
This code includes both validation as well as ca
This article defines a function substr_count() which can be used for count the occurrences of a character or substring in a string. In general way, substr_count() takes two arguments, first argument is a string and second argument is a character or a
AppResolver
Introduction :-
AppResolver library is designed for resolving the needs of opening links to their respective application.
Uses :-
This Library can be used for opening different app links and webpages to their respective application.
C
String.intern() has a great importance in java. We can use String.intern() to deal with String duplication problem in Java. A string is said to be duplicate if it contains the same content as another string but has a different memory location e.g. st
Comparison of Exception Handling in C++ and Java
In C++ and Java, keywords like try,catch and throw for exception handling are same,their meaning is also same but exception handling in C++ and Java differ in many ways.
1)In Java only instances of s
Following are some useful SQL Server Date functions to find specific dates.
1) Today
SELECT GETDATE() 'Today'
2) Yesterday
SELECT DATEADD(d,-1,GETDATE()) 'Yesterday'
3) First Day of Current Week
SELECT DATEADD(wk,DATEDIFF(wk,0,GETDATE()),0) '
Program to check whether a number is Armstrong Number or not:
Armstrong number is a positive number whose sum of cubes of all individual digits is equal to the number itself. Like 371(3x3x3+7x7x7+1x1x1=371) is an armstrong number as the sum of cubes
Odoo store time in UTC timezone how it can be change to GMT timezone default thanks in advance for help.
Description:
System time is different then the time in log and if time is selected and 1am it save time 5 hours before and so the date also chan
Iterator in Java
java.util package has public interface Iterator. Iterator can be defined as interface which belongs to collection framework. Iterator as name suggest allows accessing,removing and traversing data element con
Installing Redis
curl -O http://redis.googlecode.com/files/redis-2.2.2.tar.gz
tar xzf redis-2.2.2.tar.gz
cd redis-2.2.2
make
cp src/redis-server src/redis-cli /usr/bin
Redis Server
If you want to use redis-server locally, just run the foll
