Baje kundalpur main badhai , Mahaveer bhakti, Jain Bhakti songs, Jain darshan song.
Wednesday, October 16, 2013
Tuesday, December 18, 2012
Kavita Desk Ke Name
********** कविता देश के नाम*******
नाम देखो अफ़ज़ल का आया ,लेखनी भी मेरी शरमिदा है,
कहाँ गया आज मंगल पांडे , जो ये आतंकी ज़िंदा है..
कूल ड्यूड के चक्कर मे आज युवा है बहक गया..
वंदे मातरम कहने वाला देश प्रेमी कहाँ दुबक गया..
अखंड भारत की एकता का सिर हम न्ही झुकने देंगे.
सौगंध गंगा की खाते है FDI नही घुसने देंगे.
भारत माता का यशोगान सारे जहाँ मे लहराएगा
मौका पड़ने पर यही युवा हाथ मे लाठी लेकर आएगा.
बहा लहू रखी लाज़ जो क्या वह मिट्टी मे मिलने दोगे??
लगा देर क्या एक बार फिर संसद हिलने दोगे ?
माताएँ विधवाएँ माँगती आज हिसाब हैं
अफ़ज़ल जैसे कई और गद्दार वर्तमान के कसाब हैं.
----------------------------- विवेक जैन
नाम देखो अफ़ज़ल का आया ,लेखनी भी मेरी शरमिदा है,
कहाँ गया आज मंगल पांडे , जो ये आतंकी ज़िंदा है..
कूल ड्यूड के चक्कर मे आज युवा है बहक गया..
वंदे मातरम कहने वाला देश प्रेमी कहाँ दुबक गया..
अखंड भारत की एकता का सिर हम न्ही झुकने देंगे.
सौगंध गंगा की खाते है FDI नही घुसने देंगे.
भारत माता का यशोगान सारे जहाँ मे लहराएगा
मौका पड़ने पर यही युवा हाथ मे लाठी लेकर आएगा.
बहा लहू रखी लाज़ जो क्या वह मिट्टी मे मिलने दोगे??
लगा देर क्या एक बार फिर संसद हिलने दोगे ?
माताएँ विधवाएँ माँगती आज हिसाब हैं
अफ़ज़ल जैसे कई और गद्दार वर्तमान के कसाब हैं.
----------------------------- विवेक जैन
Tuesday, October 16, 2012
ITC cuts 14 CRORE Trees per YEAR!!!
Source : http://www.lawyersclubindia.com/forum/Amercan-s-ITC-company-cuts-14-Crore-tree-every-year--33289.asp#.UH1oxq6HLgs
Indian
Tobacco Company (ITC) which is formerly known as American Tobacco
Company (ATC) when started its business in India at around 1940 with its
paid up capital of just Rs.38 crore.
This ITC company has changed only its name but still holds by America and every year's its Net Profit is Rs.3120 crore.
This company cuts around 1 tree on every 500 cigarettes its makes and cuts around 14 crore tree every year.
5 lacs people die every year because of cancer due to this company.
In
India a poor common man cannot cut tree to make his meal but this ITC
company can cut 14 crore trees every year just to make cigarettes and
spread cancer to all Indians.
This stupid Government allows this American Company to cut 14 crore trees every year and says us that we are facing the problem of Global Warming please plant trees.
What stupidity is going on?
Tuesday, September 25, 2012
ksh Date Validation.
#!/bin/ksh
# usage: vdate.shl where date = month/day/year
# valid for date = or > 10/04/1582 -- start of Gregorian calendar
#http://www.unix.com/shell-programming-scripting/108048-validate-date-format-argument.html
isleapyr()
{
isleap=0
if [[ $(( ${1} % 400 )) -eq 0 ||
$(( ${1} % 4 )) -eq 0 && $(( ${1} % 100 )) -ne 0 ]]
then
isleap=1
fi
}
isvaliddate()
{
typeset -i day=$1
typeset -i month=$2
typeset -i year=$3
set -A arr 31 28 31 30 31 30 31 31 30 31 30 31
if [[ $year -lt 34 ]] ; then # assume 2000
year=$(( $year + 2000 ))
fi
if [[ $year -gt 33 && $year -lt 100 ]] ; then # assume 1900
year=$(( $year + 1900 ))
fi
isleapyr $year
if [[ $isleap -eq 1 ]] ; then
arr[1]=29;
fi
if [[ $month -gt 0 && $month -lt 13 ]] ; then
month=$(( $month - 1 ))
if [[ $day -gt 0 && $day -le ${arr[month]} ]] ; then
return 0
fi
fi
return 1
}
#echo "$1" | tr -s '/' ' ' | read month day year
echo "date = "$1
month =`$1| cut -c1-2`
echo " month = "$month
#isvaliddate $day $month $year
#if [[ $? -eq 0 ]] ; then
# echo "$1 ok"
#else
# echo "$1 not ok"
#fi
#
# usage: vdate.shl
# valid for date = or > 10/04/1582 -- start of Gregorian calendar
#http://www.unix.com/shell-programming-scripting/108048-validate-date-format-argument.html
isleapyr()
{
isleap=0
if [[ $(( ${1} % 400 )) -eq 0 ||
$(( ${1} % 4 )) -eq 0 && $(( ${1} % 100 )) -ne 0 ]]
then
isleap=1
fi
}
isvaliddate()
{
typeset -i day=$1
typeset -i month=$2
typeset -i year=$3
set -A arr 31 28 31 30 31 30 31 31 30 31 30 31
if [[ $year -lt 34 ]] ; then # assume 2000
year=$(( $year + 2000 ))
fi
if [[ $year -gt 33 && $year -lt 100 ]] ; then # assume 1900
year=$(( $year + 1900 ))
fi
isleapyr $year
if [[ $isleap -eq 1 ]] ; then
arr[1]=29;
fi
if [[ $month -gt 0 && $month -lt 13 ]] ; then
month=$(( $month - 1 ))
if [[ $day -gt 0 && $day -le ${arr[month]} ]] ; then
return 0
fi
fi
return 1
}
#echo "$1" | tr -s '/' ' ' | read month day year
echo "date = "$1
month =`$1| cut -c1-2`
echo " month = "$month
#isvaliddate $day $month $year
#if [[ $? -eq 0 ]] ; then
# echo "$1 ok"
#else
# echo "$1 not ok"
#fi
#
Friday, September 21, 2012
Know Why to Oppose FDI in retail
http://www.bhaskar.com/article/NAT-pros-and-cons-of-fdi-in-retail-3809347-NOR.html?seq=8&HT1a=
Subscribe to:
Posts (Atom)










