Re: Unable to Sign In to SSO Login

2024-05-16 Thread Aditya Singh
Can you show the screenshot of the Login (all requests) by hiding the confidential info? On Thu, 16 May 2024 at 2:26 PM, Manoj Kiradi wrote: > Hello > > I have a Login scenario to script that involves SSO. I've correlated all > dynamic values be it in request body, headers and URL but the

Re: Getting 415 Unsupported Media Type error while recording Postman request by Jmeter

2024-04-22 Thread Aditya Singh
Try with Content-Type value as “application/xml“ or “application/json” depending upon your response type. Adi On Tue, 23 Apr 2024 at 6:50 AM, Nuwan Mudalige wrote: > multipart/form-data; boundary=bzfW > > > > On Mon, Apr 22, 2024 at 8:48 PM Aditya Singh >

Re: Getting 415 Unsupported Media Type error while recording Postman request by Jmeter

2024-04-22 Thread Aditya Singh
What is the content-type header value? Adi On Tue, 23 Apr 2024 at 5:41 AM, Nuwan Mudalige wrote: > Yes, Adi. Tried that but still the same result in Jmeter. > > On Mon, Apr 22, 2024 at 8:01 PM Aditya Singh > wrote: > > > Hi, > > Try checking the header th

Re: Getting 415 Unsupported Media Type error while recording Postman request by Jmeter

2024-04-22 Thread Aditya Singh
Hi, Try checking the header that’s being passed in JMeter. Is it similar to what you have in Postman?If not, make it similar and give it a try. Regards Adi On Tue, 23 Apr 2024 at 4:21 AM, Nuwan Mudalige wrote: > Hi, > > I have a file upload API call which is working fine on Postman. > > While

Saving randomised value directly request

2024-02-15 Thread Aditya Singh
Hi Community, Can we save the randomised value which I am using directly in my request? I know we can do it by creating a variable and then saving the variable but is there another way? Regards Aditya

[FFmpeg-user] Issues regarding Ffmpeg video HLS conversion command

2024-02-07 Thread Aditya Singh via ffmpeg-user
The Ffmpeg command used to convert a video to HLS format can be also executed via php's exec() function. We can dump the log in a php variable using following syntax with flag '2>&1' command: exec('ffmpeg -y -i "D:/HlsEncryptionProject/encTestVideo.mp4" -preset slow -g 48 -sc_threshold 0 -map

Re: Binary Files not saved with correct extensions

2024-01-13 Thread Aditya Singh
Hi Sunil, Did you try changing the extension and then open that file again? Is there any difference in the content despite the extension difference? Did you also check the request headers that’s going in postman similar to that in JMeter? Regards Aditya On Sun, 14 Jan 2024 at 5:00 AM, Sunil

Re: convert java dataframe to pyspark dataframe

2021-03-31 Thread Aditya Singh
requirement is but you will need to > implement your custom version of PySpark API to get all functionality you > need and control on JVM side. > > > On 31/03/2021 06:49, Aditya Singh wrote: > > Thanks a lot Khalid for replying. > > I have one question though. The approach tou sh

Re: convert java dataframe to pyspark dataframe

2021-03-31 Thread Aditya Singh
reate() > > val df = spark > .read > .option("header", "True") > .csv(myFile.toString) > .collect() > > } > object Py4JServerApp extends App { > > > val server = new GatewayServer(SparkApp) > server.start() > &

Re: convert java dataframe to pyspark dataframe

2021-03-30 Thread Aditya Singh
d register the DataFrame as a temp view in Java, then access it > in Pyspark. > > > On Fri, Mar 26, 2021 at 8:14 AM Aditya Singh > wrote: > >> Hi All, >> >> I am a newbie to spark and trying to pass a java dataframe to pyspark. >> Foloowing link has details

convert java dataframe to pyspark dataframe

2021-03-26 Thread Aditya Singh
Hi All, I am a newbie to spark and trying to pass a java dataframe to pyspark. Foloowing link has details about what I am trying to do:- https://stackoverflow.com/questions/66797382/creating-pysparks-spark-context-py4j-java-gateway-object Can someone please help me with this? Thanks,

[android-building] Re: using go for condition in Srcs[] for cc_prebuilt_library_static

2021-01-12 Thread Aditya Singh Rathore
After further debugging , it looks like p.Srcs is not getting reflected to srcs for ""my_lib"" any help or hint , would be helpful On Monday, January 11, 2021 at 10:37:19 PM UTC+5:30 Aditya Singh Rathore wrote: > I have requirement of using different "*src*"

[android-building] using go for condition in Srcs[] for cc_prebuilt_library_static

2021-01-11 Thread Aditya Singh Rathore
I have requirement of using different "*src*" for my prebuilt static library, based on some condition other than *Target_arch.* I have used go file as below func init() { android.RegisterModuleType("native_cc_prebuilt_defaults", genNativeDefaultsFactory) } func genNativeDefaultsFactory()

[Bug 1885373] [NEW] My trackpad is not working after a while, and it doesn't show up in /proc/bus/input/devices, my laptop is Asus Zenbook UX434FAC_UX433FAC, the symptom appeared after 3-4 months of u

2020-06-27 Thread Aditya Singh
Public bug reported: xserver-xorg-input-libinput , I can't find trackpad name - xinput list doesn't output it 1) Release of ubuntu : ubuntu 18.04.4 LTS 3 and 4) I expected my trackpad to work, but it didn't work - it hanged on me, I tried solutions at askubuntu.com, but they didn't work for me

Re: Reg: Django signal not working

2020-04-20 Thread Aditya Singh
What's the original issue please, seems like you picked things up with someone till this email. Regards, Aditya On Mon, Apr 20, 2020, 3:11 PM 'Amitesh Sahay' via Django users < django-users@googlegroups.com> wrote: > -+c Hello Jorge, > > After doing some research, I realized that the signal

Requesting sponsor for project

2020-01-07 Thread Aditya Singh Rathore
tion of a system where developers can create a class diagram where they will place the class type and specify parameters and relations among them. The program will generate a template of that in C++. Idea is to follow the blueprint system of Unreal Engine. Present applicants: Aditya Singh Rath

[tesseract-ocr] Re: preserving spaces

2019-09-05 Thread Aditya Singh
The getuf8text function has been changed in baseapi.cpp as below: /** Make a text string from the internal data structures. */ char* TessBaseAPI::GetUTF8Text() { if (tesseract_ == NULL || (!recognition_done_ && Recognize(NULL) < 0)) return NULL; STRING text(""); ResultIterator *it

Re: DRF with Rich Text

2019-08-20 Thread Aditya Singh
Hi, Hope you are good. Django ships with top of the line CSRF protection first of all, Secondly, you may specify domain specific headers and strictly restrict the expected type of data, cookies timeout, response data type from the server to the client. Also, you may leverage several robust django

[ansible-project] Ansible tower installation error !!

2019-07-20 Thread aditya singh
Hi recently i was trying to install Tower in centos7 bu t iam getting a error during the time of installation / Can i get some help ??? The Error I'm getting is this : TASK [awx_install : Migrate the Tower database schema (may take awhile when upgrading).]

Re: annotate sum many record

2019-06-03 Thread Aditya Singh
Hello mate, Simple get the value from the objects and store in separate variables. Then you may do any and as many calculations you want and return the desired value :) Kind Regards, Aditya On Mon, Jun 3, 2019, 12:18 PM carlos wrote: > Hi, i used django 1.11 and try used annotate > > i have

Re: Troubling installing Python 3 on my iMac

2019-04-30 Thread Aditya Singh
Kindly type python3 in the terminal and let me know the output :) On Tue, Apr 30, 2019, 6:10 PM James wrote: > I downloaded the file from the python website and went through the entire > installation process... accepting all of the default values. However, when > I went to my Terminal window

Re: Regarding internship opportunity in Bangalore

2019-03-29 Thread aditya singh
Hi Akash I would also like to apply for the summer internship programme On Fri, Mar 29, 2019, 13:20 sachin thakur wrote: > Hi Akash > Yes I have sent you my resume I would request you to give me a call I have > mentioned the reason in resume email > > On Fri 29 Mar, 2019, 12:41 AM Akash

Re: Looking for a Django Co-Founder.

2019-01-22 Thread Aditya Singh
No thanks On Jan 23, 2019 10:10 AM, "Zack Amaral" wrote: @Amitesh What's your email, I don't want to call internationally at the moment. I can call you on zoom, skype or whatsapp. Let me know what works for you. Cheers, Zack On Tue, Jan 22, 2019 at 5:45 AM 'Amitesh Sahay' via Django users <

Re: Matching query does not exist

2019-01-18 Thread Aditya Singh
 On Jan 18, 2019 3:19 PM, "Kasper Laudrup" wrote: Hi Ivan, On 1/18/19 10:25 AM, Ivan Martić wrote: > Hi all, > i am having trouble to get this query on db table right. > I am always getting error. > In your definition of the Material model, the materialid field is defined like this:

Re: User Signup ??

2018-10-02 Thread Aditya Singh
My sincere apologies mate but I try to help out people I can in this official Django chat thread/group only. Hope you understand. Kind Regards, Aditya On Tue, Oct 2, 2018, 5:11 PM Idowu Tunde wrote: > Please let take this great group to WhatsApp please > > On Tuesday, October 2, 201

Re: User Signup ??

2018-10-02 Thread Aditya Singh
Very good evening mate, You need to create a form and from one of your views create a new Object inside django user model using the username and password from the form fields that you will use for registering the users. Kind Regards, Aditya On Tue, Oct 2, 2018, 5:00 PM Vikas Sri wrote: > Hello

Re: I am trying to create polls project as mentiioned in the django website

2018-06-18 Thread Aditya Singh
Hello mate, Since you are in the beginning stages I would suggest that you start a new project and check the urls.py again inside the project directory. If not let us know! Kind Regards, Aditya On Mon, Jun 18, 2018, 10:21 PM itsnate_b wrote: > No problem. Good luck! > > On Monday, June 18, 2018

Re: URL Concatenation Issue

2018-05-30 Thread Aditya Singh
For this you have provide an app inside your urls and refer to it as home:about where home is the app name and about is the page to be rendered. Also provide namespace in the urls so that the url is linked to the app name. Kind Regards, Aditya On Thu, May 31, 2018, 7:54 AM Spence Patrick wrote:

Re: Error Djongo MongoDB

2018-05-17 Thread Aditya Singh
Hi mate, This is the assured solution. This is because djongo looks for active mongo connection to connect. Download mongodb for your os and fire up mongod fron bin directory. Then create a folder named data/db in root disk drive. It should then work flawlessly. Kind Regards, Aditya On Fri, May

Re: Django 2.1 alpha 1 released

2018-05-17 Thread Aditya Singh
Wow wow wow! My best and nost powerful framework in the world. Super excited for the new release! Kind Regards, Aditya On Fri, May 18, 2018, 6:45 AM Tim Graham wrote: > We've made the first release on the way to Django's next major > release, Django 2.1! With about two and

Re: what best for ecommerce project

2018-05-06 Thread Aditya Singh
gt; On Sun, May 6, 2018 at 12:53 PM, Digital Prasar <digitalpra...@gmail.com> > wrote: > >> Hi Aditya >> >> Thanks for your contributions on forum . Can you share link of your e >> commerce project made on django. >> >> On Sun, May 6, 2018, 12:26 PM

Re: what best for ecommerce project

2018-05-06 Thread Aditya Singh
Exactly mate! On Sun, May 6, 2018, 12:39 PM Ruhia gr <ruhiag...@gmail.com> wrote: > cool so you all are prefer me using django for ecommerce right > > On Sun, May 6, 2018 at 12:26 PM, Aditya Singh <adityasingh222...@gmail.com > > wrote: > >> Hi mate, >> I h

Re: what best for ecommerce project

2018-05-06 Thread Aditya Singh
gt;> ecommerce platform built on top of django. >>> >>> On Sun, May 6, 2018 at 9:31 AM, Ruhia gr <ruhiag...@gmail.com> wrote: >>> >>>> wether its possible to built ecommerce project using django cms? >>>> >>>> On Sun, May 6, 20

Re: what best for ecommerce project

2018-05-06 Thread Aditya Singh
Django is best mate. That way you are not limited by the features provided by django-cms. On Sun, May 6, 2018, 11:33 AM Ruhia gr wrote: > hello can anyone help me with this since am new to django > > On Sat, May 5, 2018 at 10:50 PM, Ruhia gr wrote: >

Re: need help

2018-05-02 Thread Aditya Singh
You're most welcome On Wed, May 2, 2018, 11:04 PM Umar Kambala <umarkamb...@gmail.com> wrote: > Thanks > On May 2, 2018 5:33 PM, "Aditya Singh" <adityasingh222...@gmail.com> > wrote: > >> Try to upgrade your internet connection or set up a hotspot from

Re: need help

2018-05-02 Thread Aditya Singh
Try to upgrade your internet connection or set up a hotspot from a mobile device having a good signal strength and internet speed and try again. Should work for sure On Wed, May 2, 2018, 11:01 PM Umar Kambala <umarkamb...@gmail.com> wrote: > So wat do I do then? > On May 2, 2018 5:28

Re: need help

2018-05-02 Thread Aditya Singh
Sure it is mate On Wed, May 2, 2018, 10:51 PM Umar Kambala wrote: > I believe its low connection > On May 2, 2018 5:16 PM, "Jani Tiainen" wrote: > >> Looks like your machine doesn't have connection to (some parts) of >> internet for some reason, or you

Re: need help

2018-05-02 Thread Aditya Singh
This has surely to do with your internet connection mate. On Wed, May 2, 2018, 10:46 PM Jani Tiainen wrote: > Looks like your machine doesn't have connection to (some parts) of > internet for some reason, or you do have very slow connection. > > On Wed, May 2, 2018 at 7:46

Django with mongo

2018-05-02 Thread Aditya Singh
Kindly help me with the mist efficient and easy method of integrating mongo with django.I have tried djongo but need to expand my approach. Kind Regards, Aditya -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Re: ARGPARSE ERROR

2018-04-16 Thread Aditya Singh
You need to download the latest version of django rest framework same as the version specified. If you need help on the commands let me know mate. Give it a shot it should help. Kind Regards, Aditya On Mon, Apr 16, 2018, 3:57 PM Ank wrote: > HI all , > > Installed Python

[Bug 1756316] [NEW] package libapache2-mpm-itk 2.4.7-04i -1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2018-03-16 Thread Aditya Singh
Public bug reported: I'm new to linux dont know anything about this error. Help me to fix it. ProblemType: Package DistroRelease: Ubuntu 16.04 Package: libapache2-mpm-itk 2.4.7-04-1 ProcVersionSignature: Ubuntu 4.13.0-37.42~16.04.1-generic 4.13.13 Uname: Linux 4.13.0-37-generic x86_64

[Bug 1754771] [NEW] package linux-image-4.13.0-36-generic 4.13.0-36.40~16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2018-03-09 Thread Aditya Singh
Public bug reported: it pop ups randomly ProblemType: Package DistroRelease: Ubuntu 16.04 Package: linux-image-4.13.0-36-generic 4.13.0-36.40~16.04.1 ProcVersionSignature: Ubuntu 4.13.0-36.40~16.04.1-generic 4.13.13 Uname: Linux 4.13.0-36-generic x86_64 ApportVersion: 2.20.1-0ubuntu2.15

[Bug 1754772] [NEW] package linux-image-4.13.0-36-generic 4.13.0-36.40~16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2018-03-09 Thread Aditya Singh
*** This bug is a duplicate of bug 1754771 *** https://bugs.launchpad.net/bugs/1754771 Public bug reported: it pop ups randomly ProblemType: Package DistroRelease: Ubuntu 16.04 Package: linux-image-4.13.0-36-generic 4.13.0-36.40~16.04.1 ProcVersionSignature: Ubuntu

Bigdata Architect - NJ

2016-08-10 Thread Manindra Aditya Singh
Dear Partners/Job Seekers,We have a Corp to Corp opening for the following position. If you have matching candidates please submit their profiles. Profiles matching the below job requirement will be contacted at the earliest.   Job Title :  Bigdata Architect   Location :  NJ   Key Skills :  

I am a newbie to open source and wishes to contribute

2016-01-18 Thread Aditya Singh
. Regards, Aditya Singh.

Bug#335472: Best Proposal for Your Websites

2015-07-06 Thread Aditya Singh
Updates Reports, etc. Our website design expert team will provide you the best service and support We can provide you 1st to 10th position in Google rankings at very affordable prices. Please let us know your interest in our services. Regards,Aditya Singh Marketing Manager

Bug#335472: Best Proposal for Your Websites

2015-07-06 Thread Aditya Singh
Updates Reports, etc. Our website design expert team will provide you the best service and support We can provide you 1st to 10th position in Google rankings at very affordable prices. Please let us know your interest in our services. Regards,Aditya Singh Marketing Manager

Re: [R] : Ramanujan and the accuracy of floating point computations - using Rmpfr in R

2015-07-02 Thread Aditya Singh via R-help
Ravi I am a chemical engineer by training. Is there not something like law of corresponding states in numerical analysis? Aditya -- On Thu 2 Jul, 2015 7:28 AM PDT Ravi Varadhan wrote: Hi, Ramanujan supposedly discovered that the number, 163, has this

Re: [R] Ramanujan and the accuracy of floating point computations - using Rmpfr in R

2015-07-02 Thread Aditya Singh via R-help
Ravi 1. You may want to check the sqrt too. 2. Why not take log and try? Aditya -- On Thu 2 Jul, 2015 10:18 AM PDT Boris Steipe wrote: Just a wild guess, but did you check exactly which operations are actually done to high precision? Obviously you will need

[R] Help sought with 1. converting factor to numeric; 2. creating new dataframe

2014-12-16 Thread Aditya Singh via R-help
Dear R-experts, I am relatively new to R. Please help me in converting a dataframe into a numeric and then creating a new dataframe. R-code attached: my_xtrain=read.table(./train/X_train.txt) my_xtest=read.table(./test/X_test.txt) my_merge_data=merge(my_xtrain,my_xtest,all=TRUE) ###

[R] Wondering why I get a NULL output for this if condition!

2014-11-21 Thread Aditya Singh
1 my_min= min(outcome_data[which(outcome_data$State==my_state),11],na.rm=TRUE) 2 print(my_min) 3 jkr=0 4 if (jkr= 4706) {jkr=jkr+1 5 if (identical(outcome_data[jkr,11],my_min) identical(outcome_data[jkr,7],my_state)) { 6 print((outcome_data[jkr,2])) 7 break 8 } Dear Experts, My

[R] How do I extract single entries from a factor?

2014-11-21 Thread Aditya Singh
. N.b. There's also a missing } and totally messed up formatting :-( B. On Nov 21, 2014, at 1:19 PM, Aditya Singh aps...@yahoo.com wrote: 1 my_min= min(outcome_data[which(outcome_data$State==my_state),11],na.rm=TRUE) 2 print(my_min) 3 jkr=0 4 if (jkr= 4706) {jkr=jkr+1 5 if (identical

[R] Function returns NULL on running this code in latest version of R!

2014-11-20 Thread Aditya Singh
Any help on this issue will be greatly appreciated. Spent days sitting alone in a remote corner of the world-- Patiala, Punjab, India.. trying to do this! --- setwd(C:/Documents and

Re: [R] R 3.1.2 (x64) Programming Assignment 1: Air Pollution(corr) do not understand the task

2014-11-18 Thread Aditya Singh
Eva and Professor Peng, I spent many hours on Programming Assignment 1, however I was unable to get it right. I found it most useful and think others should work at it too! Please do send me your work now that the deadline is over. Or you could tell me your Github account so that I could fork

[R] Error: (list) object cannot be coerced to type double; on running the following code in R ver 3.1.2

2014-11-11 Thread Aditya Singh
setwd(C:/Documents and Settings/Administrator/Desktop/Coursera/specdata/specdata)temp=list.files(pattern=*.csv)myfiles=lapply(temp,read.delim)summk=0nummk=0for (i in 1:10) {  vb=data.frame(myfiles[i])  vbm=as.double(vb)  summk=sum(vbm[,2])  nummk=length(vbm[,2]) - sum(is.na(vbm[,2]))} Aditya

[R] 1. What function to use to read all the files in a directory to a vector in R code? 2. What function to use to coerce character string into numeric?

2014-11-10 Thread Aditya Singh
Hi, I have 2 queries: 1. What function to use to read all the files in a directory to a vector in R code? 2. What function to use to coerce character string into numeric? As a help to others, I figured out to use setwd(C:/) to set working directory! Aditya [[alternative HTML version

Re: [mnemosyne-proj-users] Installing Mnemosyne

2014-10-24 Thread Aditya Singh
javascript: [mailto:mnemosyne- javascript: proj-...@googlegroups.com javascript:] On Behalf Of Aditya Singh Sent: 24 October 2014 08:30 To: mnemosyne-...@googlegroups.com javascript: Cc: adityasi...@gmail.com javascript: Subject: Re: [mnemosyne-proj-users] Installing Mnemosyne

Re: [mnemosyne-proj-users] Installing Mnemosyne

2014-10-24 Thread Aditya Singh
permission there. Can you double check if that directory is not accidentally write protected? Peter -Original Message- From: mnemosyne-...@googlegroups.com javascript: [mailto:mnemosyne- javascript: proj-...@googlegroups.com javascript:] On Behalf Of Aditya Singh Sent: 24

Re: [mnemosyne-proj-users] Installing Mnemosyne

2014-10-24 Thread Aditya Singh
: [mailto:mnemosyne- javascript: proj-...@googlegroups.com javascript:] On Behalf Of Aditya Singh Sent: 24 October 2014 16:12 To: mnemosyne-...@googlegroups.com javascript: Subject: Re: [mnemosyne-proj-users] Installing Mnemosyne The directory is not write protected, but the Roaming

Re: [mnemosyne-proj-users] Installing Mnemosyne

2014-10-24 Thread Aditya Singh
:\Program Files (x86)\Mnemosyne\mnemosyne.exe -d C:\a\directory\where\you\have\write\access Cheers, Peter -Original Message- From: mnemosyne-...@googlegroups.com javascript: [mailto:mnemosyne- javascript: proj-...@googlegroups.com javascript:] On Behalf Of Aditya Singh

Re: [mnemosyne-proj-users] Installing Mnemosyne

2014-10-23 Thread Aditya Singh
Hello I also installed the latest version of Mnemosyne (2.3.1). Whenever I start it, I'm getting the following error : An unexpected error has occurred. Please forward the following info to the developers: Traceback (innermost last): File mnemosyne, line 191, in module File

starting up with GWT

2011-02-24 Thread aditya singh
as a Starter I want to Know how to start up with GWT. for initials small projects like Online Examination and other student applications. the GWT tutorial is not specifically helpful.As i want to dig the stuff out and learn in parallel course. -- You received this message because you are

[T.S.R:8637] JM FINANCIAL DAILY Tech Trend

2009-04-17 Thread Aditya Singh
Hi Friends,Can any one please send   JM FINANCIAL DAILY Tech Trend..its a very good research reportThanks in AdvanceRegardsAditya Singh+919819198001Dear STOCKRESEARCHER ! Get Yourself a cool, short @in.com Email ID now! --~--~-~--~~~---~--~~ -- For

[XFree86] Serious problem with X Windows - Please help

2004-08-23 Thread Aditya Singh
Dear sir, I am facing with a serious problem on Red Hat Linux 9.1. I hope you will be generously help me in this regard. When I try to start the X Windows system by typing the command 'xstart', the screen blinks twice and comes back to the prompt with some messages. I am enclosing the server

Re: [linux-delhi] Drivers -Please Help

2001-02-27 Thread Aditya Singh
Hey I'm also facing exactly the same problem. Netscape refuses to recognize the connection. Kindly Help Thanx Aditya singh. - Original Message - From: Jasmeet S. Virdi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 22, 2001 9:44 AM Subject: Re: [linux-delhi] Drivers

Re: [linux-delhi] Please help friendz

2001-02-20 Thread Aditya Singh
oving but not the text. I've tried changing background and foreground colors but of no avail. kindly help. Aditya Singh - Original Message - From: Kunal Walia [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 20, 2001 2:03 AM Subject: RE: [linux-delhi] Please help friendz

Re: [linux-delhi] System. Performance

2001-02-20 Thread Aditya Singh
Goto Tweakfiles.com and d/l wintune software(about 2mb) from the benchmark section. yeah speed wud b in Mflops . Mine is 474 Chao Aditya Singh. - Original Message - From: V Suresh [EMAIL PROTECTED] To: LIH [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday