Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for dave_nithis

Hi all, I have two files namely a.txt b.txt a.txt contains 100 records and b.txt contains 9 records.These 9 records in b.txt is also present in a.txt.So,I need a script that compares these two files and outputs the unique 91 records alone in another file. Thanks to all in advance!!!! …

Member Avatar for laksh.ss
1
111
Member Avatar for dave_nithis

Hi all, I got a new Java puzzle in which I have to find the largest of given numbers without using If loop,for loop or while loop..And you should not use any max() or min() functions. Can anyone help me out in this?I want to know whether it is possible …

Member Avatar for Rizwana begum
0
176
Member Avatar for dave_nithis

When you type [url]www.google.com,it[/url] will take you to [url]www.google.co.in[/url] or [url]www.google.co.uk[/url] based on your country.Similarly I want to do for my web site.Can anyone give me simple and easiest way to do this?

Member Avatar for ejosiah
0
62
Member Avatar for dave_nithis

:) Hi all Am writing a shell script like this: java file1 > output.txt and the output output.txt is used in a html page. Now coming to my problem: This script should run every one hour and when user views the html page,it is showing the partially written output.txt file …

Member Avatar for Salem
0
81
Member Avatar for dave_nithis

This is my HTML File: [code=html]<html> <head> <script type="text/javascript"> function validateCatalogId(){ var req=init(); function init(){ if (window.XMLHttpRequest) { return new XMLHttpRequest(); } else if (window.ActiveXObject) { return new ActiveXObject("Microsoft.XMLHTTP"); } } var catalogId=document.getElementById("catalogId"); req.open("POST", "validateForm", true); req.onreadystatechange=processRequest; req.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); req.send("catalogId="+ encodeURIComponent(catalogId.value)); function processRequest(){ if(req.readyState==4){ if(req.status==200){ processResponse(); } } } function …

Member Avatar for dave_nithis
0
151
Member Avatar for pritishs

Here file abc.txt contents name designation salary ----------------------------------- pritish am 15000 animesh pm 20000 asutosh ceo 30000 Write a shell script to find the name whose salary greater or equal t0 20000

Member Avatar for dave_nithis
0
62
Member Avatar for dave_nithis

Hi all, Can anyone explain how to parse a html file at the client side that we got as a response from the server? Please provide me good websites for doing this task. Thanks in advance. Dave. :)

Member Avatar for kceleb9
0
70
Member Avatar for dave_nithis

Hi all, I am in the process of creating a web page.The page consists of a form where it will ask the users to give the input values(all values in integers).Those values should be passed and the values should be calculated. I have the wsdl file from the client.I need …

Member Avatar for digital-ether
0
108
Member Avatar for dave_nithis

Hi all I want a sample [B][COLOR="Red"]web service invocation program using java script[/COLOR][/B].Can anyone provide me? The program should simply get inputs from the user and once the user clicks the "Calculate" or "Submit",it should invoke a web service that is containing the implementation code and the result from the …

0
70
Member Avatar for dave_nithis

I want a sample Date validation script using if loops. The script should first compare "year".If the year is lesser than the current year,It should go for "month" checking. I have the script that splits the date into year,month and date.I want only the checking part. My if loop checking …

Member Avatar for jim mcnamara
0
110
Member Avatar for dave_nithis

Hi all, a=2007-05-10 b=2007-06-10 These are the two given dates and I need to compare. The script should first compare years.If both are same or if a is lesser than b,it should print correct.If a is greater than b,then it should print error.Similarly for the dates(05 and 06). No need …

Member Avatar for ghostdog74
0
1K