-Wish You All A Very Happy New Year- I am trying to write an event mechanism where i have to publish my real time data to the clients through the web.the...
How to set path in Linux (RH9)? if this is the second mail from me on the same topic i am sorry but the previous mail said delivery failed :( (so i am posting...
Deepthi Bhushan B.N.
deepthibn@...
Jan 2, 2004 4:13 pm
4237
... Well to begin with http was meant (and is) a stateless protocol, you want it to do something it was not meant to.... Well again thats not a sin either -...
... never make clients wait - with the cut throat competition around you'll lose your clients -:) -- regards kg http://www.ootygolfclub.org poor man's tally:...
... Assuming you are using the default shell(bash)... the path is stored in $PATH To add to the existing path for the current instance of the shell ...
... $ echo $PATH <will print your path> $PATH=$PATH:/directory_which_you_want_to_add $export PATH $echo $PATH <you will find directory_which_you_want_to_add...
senthil_or@...
Jan 3, 2004 7:02 am
4243
... In your ~/.bashrc add: export PATH=$PATH:my_dir Hope that helps... Adarsh Bhat...
Adarsh Bhat
adarsh_bhat@...
Jan 3, 2004 7:03 am
4244
hi, using psycopg i'm trying to insert a date '27/3/2004' into a date field of a table. I get this error: 'attribute 'date' is of type 'date' but expression is...
... ^^^^^^ this one is wrong, unless the first $ is your shell prompt, in which case, add a space after it. -- Time sharing: The use of many people by the...
... It's probably trying to evaluate the expression as 27 divided by 3 divided by 2004 == 0. Maybe use double quotes. Also, better idea to insert dates as...
... nope, unlike perl dbi, you have to specifically cast the date string into a date type before inserting it into the table, unfortunately, the cast adds ...
All: The first lot of pictures from LB/2003 is now online, and there are more on the way. http://linux-bangalore.org/2003/photos/ Please note that these...
... never met a python big enough to swallow me ... and I keep growing wider. :D -- "God is a comedian playing to an audience too afraid to laugh." - Voltaire...
... but seriously, python is addictive - only guys who escape are those who get seduced by ruby -- regards kg http://www.ootygolfclub.org poor man's tally:...
Thank you for subscribing to the linux-bangalore-programming mailing list. This message is to give you some information about this list and other lists we...
linux-bangalore-progr...
linux-bangalore-progr...
Jan 4, 2004 4:35 am
4257
... No idea, but this might work: print "Location: http://new.url/\015\012"; print "Uri: http://new.url/\015\012"; print "\015\012"; It talks CGI and will work...
... or die hard perl fans. even so, ruby is also a direction i'm moving in. -- "Scum," said Crash, his voice low with resigned menace, "you've bought a ...
... HTTP headers are of the form [A-Z][A-Za-z0-9-]*[A-Za-z0-9]: (more or less), so the : is necessary ( unless you mistyped " for : ) Secondly, the Internet...
i want to know where to get the source for a jabber server and how to conf it for use as an intranet IM their website in this regard is (sadly) not very useful...
... in the cgi script try putting this line print "Location: http://www.wherever.whatever\n\n" without any other headers it should work vineeth -- regards kg ...
... Still not quite. On Win/Unix it should be \r\n\r\n. from perlipc(1): Internet Line Terminators: The Internet line terminator is "\015\012". Under ASCII...