script

Case sensitivity in shell script.

How to overcome the case sensitivity while accessing a file in unix using shell script.? I have a file namely file.txt in the designation path and in script while accessing the same file with the name FILE.txt it throws the error as Cannot open File. Please guide me how to access the file with case change in unix scripting. How to tur...

classified ads script in asp.net

Is there any free Classified ads script in asp.net? ...

unix shell code portable to run on all shells

H all, Hope all is well, Can any one please let me know the coding guidelines along with code samples of unix shell scripting by using which the code can run on most of the current shells like ksh, bash, csh etc. Most of the times some of my code written for ksh would not work on normal sh. I want to make my code maximum portable. Most...

RVM not configured properly with launchd.conf

I'm using OSX Snow Leopard with /etc/launchd.conf as my primary script to add environment variables. [The contents of this file are pasted below] So far this file works fine for my shell scripts and my applications. However, adding the last 3 RVM specific lines doesn't work for me. I can't access the rvm command. I have to do $ source ...

Error including the TestApp script in grails

Hello I have a simple script as shown below: I am getting following error on running this script. includeTargets << grailsScript("Init") includeTargets << grailsScript("TestApp") target(main: "The description of the script goes here!") { echo "This is the start" } setDefaultTarget(main) Environment set to test Error execu...

php script to load contents of a file into mysql database

hello, i have written a php script to insert the contents of a text file into mysql database and the content of my file a.txt is \n is used for a new line i want it to be loaded into the database including the special character \n as it is... But it is loading only " is used for a new line" kindly help me out... than...

How can i call a PHP script from Java code ?

Hello , As the title says ... I have tried to use the following code to execute a PHP script when user clicks a button in my Java Swing application : URL url = new URL( "http://www.mywebsite.com/my_script.php" ); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.connect(); But nothing happens ... Is there someth...

Runtime parsing in Android

I am writing a small game for the android platform (HTC Desire) and i am trying to implement a simple scripting language, mostly to set variables and check if conditions are met. So I thought maybe there was a runtime parser in the android library, that way I can put some of the logic in scripts, instead of in the engine. It's quite ba...

Setting Keyboard Shortcuts in Ubuntu

Is it possible to do the following in Ubuntu? If so can someone point me in the right direction. Say you want to set a keyboard shortcut to do the following: For examples sake, set Alt+F to open Firefox and maximize it, but only if Firefox is not already running. If it is running and not maximized, then maximize the most recently tou...

How can I determine if it's ok to change this word... python script

The goal is to read through html files and change all instances of MyWord to Myword; except, must NOT change the word if it is found inside or as part of a path, file name or script: href="..." src="..." url(...) class="..." id="..." script inline or linked (file name) --> <script ...></script> styles inline or linked (file name) --> ...

How to use jQuery to display labels and input values?

I need a jQuery function that'll go through paragraphs with the following structure: <p> <label>some label</label> <input type="text" value=""/> </p> The function should use the label text as input value. Thanks! ...

Emulate a click on Gmail for QA

Possible Duplicate: Emulate a click on Gmail for QA Hi, I'm writing some scripts with Fake for some QA routines. However, I'm having some trouble with emulating the a click in Gmail. The basic idea is to activating an account with an activation link. So I'm pretty stuck with the QA routine right now. I thought Javascript ca...

Would this be a good substiute for javascript not having a static keyword?

function get_radio_value() { for (var i=0; i < document.fm1.gp1.length; i++) { if (document.fm1.gp1[i].checked) { var rad_val = document.fm1.gp1[i].value; if(rad_val == "Last Name"){ get_radio_value.url = "rpc.php"; } } } } then outside the scope you can call alert...

Can i make a shell script executable in Mac without chmod stuff ?

Hello , I have seen that i can use chmod +x command in Mac to make a shell script executable. This works fine, but i have noticed that i have to do the same thing every time this shell script file is copied to another Mac computer. Is there a way to make the shell script executable by default when double clicked, without such command ....