active questions tagged quotes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:13:55Z http://stackoverflow.com/feeds/tag/quotes http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/58640/great-programming-quotes 486 Great programming quotes epatel 2008-09-12T10:39:20Z 2009-12-05T14:05:51Z <p>There are a lot of great programming quotes out there. Which do you like?</p> <p>Today (Sept 12, 2008) I heard a new one from a friend, Lars-Gunnar, he said "<a href="http://sv.wikipedia.org/wiki/Gud" rel="nofollow">Gud</a> finns i Emacs" (in Swedish). This basically means "<a href="http://en.wikipedia.org/wiki/God" rel="nofollow">God</a> is in Emacs". Still laughing about it here :) What he meant was that a function "<a href="http://www.emacswiki.org/cgi-bin/wiki/GrandUnifiedDebugger" rel="nofollow">gud is grand-unified-debugger</a>" is in Emacs.</p> <p>A great one I think all programmers should know is <a href="http://c2.com/cgi/wiki?LazinessImpatienceHubris" rel="nofollow">The Three Great Virtues of a Programmer</a>.</p> http://stackoverflow.com/questions/1844591/windows-shell-scripting-check-for-batch-options-containing-double-quotes 0 Windows Shell Scripting: Check for batch options containing double quotes... Andrey 2009-12-04T03:03:38Z 2009-12-05T05:09:02Z <p>Greetings, dear Experts!</p> <p>I want to check the existense of parameter (or argument) sting at all in my batch script:</p> <pre><code>if "%*"=="" findstr "^::" "%~f0"&amp;goto :eof </code></pre> <p>This works fine if none of parameters is enclosed in double quotes. For example:</p> <pre><code>test.bat par1 par2 ... --- works </code></pre> <p>but</p> <pre><code>test.bat "par 1" par2 ... --- fails </code></pre> <p>My question are:</p> <p>1) Is there any way to overcome this instead of requirement for use to use non-double-quoted symbol to specify "long" arguments and then use string substitution?</p> <p>2) Can I ever use "if" to compare two strings containing both double quotes and spaces?</p> <p>Your prompt and clear reply would be very much appreciated.</p> http://stackoverflow.com/questions/1800675/write-csv-to-file-without-enclosures-in-php 1 Write CSV To File Without Enclosures In PHP Derek Reynolds 2009-11-25T23:31:55Z 2009-12-05T01:19:33Z <p>Is there a native function or solid class/library for writing an array as a line in a CSV file without enclosures? <code>fputcsv</code> will default to <code>"</code> if nothing is passed in for the enclosure param. Google is failing me (returning results for a whole bunch of pages about <code>fputcsv</code>), and PEAR's libraries do more or less the same things as <code>fputcsv</code>.</p> <p>Something that works exactly like <code>fputcsv</code>, but will allow the fields to remain unquoted.</p> <p>currently: <code>"field 1","field 2",field3hasNoSpaces</code></p> <p>desired: <code>field 1,field 2,field3hasNoSpaces</code></p> http://stackoverflow.com/questions/1824325/regex-expression-for-escaped-quoted-string-wont-work-in-phps-pregmatchall 0 regex expression for escaped quoted string won't work in php's preg_match_all Scott Daniels 2009-12-01T06:19:35Z 2009-12-02T01:24:54Z <p>I am trying to match quoted strings within a piece of text and allowing for escaped quotes within it as well. I tried this regular expression in an online tester, and it works perfectly. However, when I try it in preg_match_all, it fails at the first escaped string.</p> <p>Here is the code:</p> <pre><code>$parStr = 'title="My Little Website" year="2007" description="Basic website with ..." tech="PHP, mySQL" link="&lt;a href=\"http://test.com\"&gt;test.com&lt;/a&gt;" '; $matches = array(); preg_match_all('/(\w+)\s*=\s*"(([^\\"]*(\\.)?)*)"/', $parStr, $matches, PREG_SET_ORDER); // Match[4][0] is 'link="&lt;a href=\"' </code></pre> <p>It fails on the last match, only matching up until the first escaped quote. When I try this expression at <a href="http://www.regexplanet.com/simple/index.html" rel="nofollow">http://www.regexplanet.com/simple/index.html</a>, it works perfectly.</p> <p>The pertinent part of the regex is:</p> <pre><code>"(([^\\"]*(\\.)?)*)" </code></pre> <p>Which should eat all text leading up to an escaped quote or quote, followed by eating an optional escaped quote, of which process is repeated 0 or more times, until a non-escaped quote is found, in which the match is complete. </p> <p>Why will this not work in php? Why does it not work and how should it be fixed?</p> http://stackoverflow.com/questions/1672370/google-finance-tools-on-my-website 1 google finance tools on my website? bilal 2009-11-04T08:28:32Z 2009-11-29T05:25:01Z <p>i am on the process of building a website execlusively for trading purposes. including live quotes and level 2 quotes. charts. user protofollio with automatic updates. news and so on.</p> <p>am i allowed to use google finance tools on my website? and if yes how can i go about doing so?</p> <p>thanks in advance</p> http://stackoverflow.com/questions/1799903/quotes-versus-non-quotes-in-bing 2 Quotes versus non quotes in bing [closed] Peter 2009-11-25T20:59:44Z 2009-11-25T21:43:28Z <p>in bing.com : </p> <blockquote> <p>java jobs -> 57,000,000 hits (<a href="http://www.bing.com/search?q=java+jobs&amp;go=&amp;form=QBRE&amp;scope=web&amp;qs=n" rel="nofollow">"http://www.bing.com/search?q=java+jobs&amp;go=&amp;form=QBRE&amp;scope=web&amp;qs=n")</a></p> <p>"java jobs" -> 234,000,000 hits (<a href="http://www.bing.com/search?q=%22java+jobs%22&amp;go=&amp;form=QBRE&amp;scope=web&amp;qs=n" rel="nofollow">http://www.bing.com/search?q=%22java+jobs%22&amp;go=&amp;form=QBRE&amp;scope=web&amp;qs=n</a>)</p> </blockquote> <p>How comes?</p> <p>You can migrate this question if it is necessary, but for me this was program related, since I was writing a program that uses bing results and it's about an alghoritm.. (but I am in great doubt right know..)</p> <p>UPDATE : I now also see the results are constantly changing... Is Bing not reliable as statistical source?</p> <p>UPDATE 2 : any ideas : continued on <a href="http://superuser.com/questions/75384/quotes-versus-non-quotes-in-bing">http://superuser.com/questions/75384/quotes-versus-non-quotes-in-bing</a></p> http://stackoverflow.com/questions/118096/how-can-i-parse-a-comma-delimited-string-into-a-list-caveat 5 How can i parse a comma delimited string into a list (caveat)? Jeremy Michael Cantrell 2008-09-22T22:54:10Z 2009-11-25T17:23:04Z <p>I need to be able to take a string like:</p> <pre><code>'''foo, bar, "one, two", three four''' </code></pre> <p>into:</p> <pre><code>['foo', 'bar', 'one, two', 'three four'] </code></pre> <p>I have an feeling (with hints from #python) that the solution is going to involve the shlex module.</p> http://stackoverflow.com/questions/1760325/php-generated-javascript-and-quote-marks 0 PHP-generated javascript and quote marks igor 2009-11-19T01:18:37Z 2009-11-19T01:48:28Z <p>I'm generating some javascript in my PHP code, and I need to assign some php variables to javascript variables. Unfortunately, sometimes my PHP variables contain quote marks. for instance:</p> <pre><code>$foo = "'Dis here be a \"string\""; print "&lt;script type='text/javascript'&gt;var foo = '{$foo}';&lt;/script&gt;"; </code></pre> <p>will generate a javascript error because the resulting javascript will look like this:</p> <pre><code>&lt;script type='text/javascript'&gt;var foo = '"'Dis here be a \"string\"'; </code></pre> <p>I know I can use regexp on $foo to replace all <code>'</code> marks with <code>\'</code> but this is hard for various reasons. Is there anything I can do short of that? Something akin to the perl <code>q()</code> function...</p> http://stackoverflow.com/questions/1747677/why-bother-using-mysqlrealescapestring-since-post-addes-slashes-before-a-q 1 Why bother using mysql_real_escape_string() since $_POST addes slashes before a quote automatically? Steven 2009-11-17T09:45:00Z 2009-11-17T12:18:32Z <p>In PHP, $_POST add slashes before a quotation mark automatically, so why bother applying mysql_real_escape_string()? For example, when I input <code>'rrr</code> in an input field, and I get <code>\'rrr</code> when I echo it.</p> http://stackoverflow.com/questions/775687/how-to-insert-text-with-single-quotation-sql-server-2005 1 How to insert text with single quotation sql server 2005 ramesh 2009-04-22T04:31:55Z 2009-11-13T06:48:33Z <p>I want to insert text with single quote Eg john's to table in sql server 2005 database</p> http://stackoverflow.com/questions/1722177/zend-framework-automatic-quoting-mysql-queries-doubts 0 zend framework : automatic quoting mysql queries doubts understack 2009-11-12T13:29:07Z 2009-11-12T14:36:47Z <p>I've got few doubts regarding quoting mysql queries in Zend framework. Though this <a href="http://stackoverflow.com/questions/1168708/my-zend-framework-quoting-mess">question </a>has helped me a bit but few things are still confusing:</p> <p>1) $table is Zend_Db_Table. Trying to fetch a row from the table.</p> <pre><code> $where[] = $db-&gt;quoteInto('id = ?', $id); $where[] = $db-&gt;quoteInto('user_id = ?', $user_id); $row = $table-&gt;fetchRow($where); </code></pre> <p>Do I need to use quoteInto here or would it be automatically quoted in fetchRow? What'd be the better way for this kind of query? Could 2 of the quoteInto be merged into one, if required at all?</p> <p>2) $table is Zend_Db_Table. Trying to save a row in the table.</p> <pre><code> $tablerow = $table-&gt;createRow(); $rowdata = array('id' =&gt; $id, 'user_id' =&gt; $user_id); $tablerow-&gt;setFromArray($rowdata); $ret = $tablerow-&gt;save(); </code></pre> <p>Do I need to use some sort of quote function here?</p> <p>3) $table is Zend_Db_Table. Trying to update a row in the table.</p> <pre><code> $row = $table-&gt;fetchRow($where); $row-&gt;name = $name; $row-&gt;save(); </code></pre> <p>Do I need to quote $name in second step?</p> <p>4) General query </p> <p>A) </p> <pre><code> $sql = "SELECT * FROM users where id=? and name=?"; $results = $db-&gt;fetchAll($sql, array($id, $name)); </code></pre> <p>Do I need to quote here?<br> B)</p> <pre><code> $sql = "SELECT * FROM users where id=? and name=?"; $stmt = $db-&gt;query($sql, array($id, $name)); $result = $stmt-&gt;fetchAll(); </code></pre> <p>Do I need to quote here?</p> <p>C) Which of the A or B is better for a general query? </p> http://stackoverflow.com/questions/1673967/how-to-run-exe-in-powershell-with-parameters-with-spaces-and-quotes 2 How to run exe in powershell with parameters with spaces and quotes Vans 2009-11-04T14:10:04Z 2009-11-07T18:10:32Z <p>How do you run this command in powershell:</p> <p>C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User ID=sa;Pwd=sapass!;Database=mydb;" -dest:dbfullsql="Data Source=.\mydestsource;Integrated Security=false;User ID=sa;Pwd=sapass!;Database=mydb;",computername=10.10.10.10,username=administrator,password=adminpass"</p> http://stackoverflow.com/questions/783788/how-to-display-custom-quotation-marks-with-sifr 0 how to display custom quotation marks with sifr? Andre 2009-04-23T22:24:08Z 2009-11-05T16:00:05Z <p>I have some text and quotation marks around it, but I want each of them to be a different font to be replaced by sifr. The problem is that the quotes need to go exactly around the text, but the text once turned into an tag becomes a block and the text isn't shaped necessarily like a rectangle. I thought about having the quotes be background images of the replaced text, but only safari 3 supports multiple background images. Any suggestions?</p> http://stackoverflow.com/questions/1665917/forwarding-command-line-arguments-to-a-process-in-python 1 Forwarding command line arguments to a process in Python Josip 2009-11-03T08:15:30Z 2009-11-03T08:58:21Z <p>I'm using a crude IDE (Microchip MPLAB) with C30 toolchain on Windows XP. The C compiler has a very noisy output that I'm unable to control, and it's very hard to spot actual warnings and errors in output window.</p> <p>I want to write a python script that would receive arguments for compiler, call the compiler with same arguments, filter results and output them to <em>stdout</em>. Then I can replace the compiler executable with my script in toolchain settings. The IDE calls my script and receives filtered compiler output.</p> <p>My code for executing the compiler looks like this:</p> <pre><code>arguments = ' '.join(sys.argv[1:]) cmd = '%s %s' % (compiler_path, arguments) process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) </code></pre> <p>The problem is that quotes from arguments are consumed on script execution, so if IDE calls my script with following arguments:</p> <blockquote> <p>main.c -o"main.o"</p> </blockquote> <p>the value of <strong>arguments</strong> is</p> <blockquote> <p>main.c -omain.o</p> </blockquote> <p>The most obvious solution is to put whole argument list in quotes, but this would require modification in compiler calling code in IDE. I also tried using batch file, but it can only accept nine parameters (%1 to %9), and compiler is called with 15+ parameters.</p> <p>Is there a way to forward exactly the same arguments to a process from script?</p> http://stackoverflow.com/questions/1635211/what-is-a-good-programming-related-senior-quote 2 What is a Good Programming Related Senior Quote? [closed] Fuzz 2009-10-28T04:32:10Z 2009-10-28T04:43:14Z <p>Although I expect this question to last for no more than 30 seconds its worth a try.</p> <p>What would be a good programming related senior quote that would be subtle enough so that I don't look like a flat out nerd to normal people, but most programmers would understand?</p> <p>I'm trying to find something that appears to have one meaning to the normal people, but has a secondary programming related meaning.</p> <p>Anyways, if you have any ideas, it would be awesome if you shared them with us.</p> <p>Thanks</p> http://stackoverflow.com/questions/1631467/need-help-modifying-javascript-snippet 0 Need help modifying javascript snippet Ethan 2009-10-27T15:09:18Z 2009-10-27T15:16:04Z <p>Google optimizer includes the following snippet as part of their conversion code. Unfortunately, the CMS we're using automatically converts the single quotes to ASCII (&amp; #39;). I'm a novice with JS, but my understanding is that single quotes and double quotes are basically interchangeable. However, it's not a straight swap as there are existing double quotes in the script. Is it possible to replace the single quotes with doubles in this script? If so, how do I escape the existing double quotes in the URL portion to keep the script functioning?</p> <pre><code>&lt;script type="text/javascript"&gt; if(typeof(_gat)!='object')document.write('&lt;sc'+'ript src="http'+ (document.location.protocol=='https:'?'s://ssl':'://www')+ '.google-analytics.com/ga.js"&gt;&lt;/sc'+'ript&gt;')&lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1621040/jquery-double-quotes 0 jQuery double quotes kmunky 2009-10-25T14:25:44Z 2009-10-25T14:33:17Z <p>hi there, i have this form:</p> <pre><code>&lt;form name="myForm" action="#"&gt; &lt;input type="text" name="firstField" /&gt; &lt;input type="text" name="secondField" /&gt; &lt;input type="submit" name="submitButton" /&gt; &lt;/form&gt; </code></pre> <p>and i have an ajax request:</p> <pre><code>$('input[type="submit"]').click(function(){ var serialized = $('form').serialize(); //ajax request $.ajax({ type : "POST", url : "takeAction.php", data : serialized, succes : function(){ alert('done'); } }); }); </code></pre> <p>the problem is that if any of my fields value contains "'", like (who's the boss) my ajax request fails to complete (i'm trying to update an mysql row but the code fails, i get no error just that my row is not updated). i know that it's something about quotes but i don;t know how to do it. thanks</p> http://stackoverflow.com/questions/284753/nuggets-of-wisdom 28 Nuggets of wisdom? Bill Karwin 2008-11-12T17:56:22Z 2009-10-07T16:47:39Z <p>There are many quotes from famous computer scientists that have become the wisdom that guides our profession. For example:</p> <blockquote> <p>"Premature optimization is the root of all evil in programming." </p> <ul> <li>Donald Knuth (citing Hoare's Dictum)</li> </ul> <p>"Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it?"</p> <ul> <li>Brian Kernighan</li> </ul> </blockquote> <p>And so on. My question is, what are your favorite words of wisdom about programming from someone who is <strong>not</strong> famous? Was it a friend, a coworker, or a teacher, or a family member?</p> <p>For example, a technical writer friend of mine said:</p> <blockquote> <p>"You can't get the right answers unless you ask the right questions."</p> </blockquote> <p><hr /></p> <p>Thanks for all the contributions! The answer I selected was (a) specifically coding-related, and (b) stated by someone who is not technically famous (though he has a popular blog and a podcast and runs StackOverflow). I.e. he's no Bill Gates or Yogi Berra.</p> http://stackoverflow.com/questions/1531232/gvim-on-windows-execute-buffer-and-paths-with-spaces 3 gVIM on Windows: execute buffer and paths with spaces Eye of Hell 2009-10-07T12:08:36Z 2009-10-07T12:50:45Z <p>Hello.</p> <p>In gVim for windows it's possible to execute current buffer via :!% command. But, unfortunately, the buffer file name is supplied to cmd.exe without quotes, so if file path has spaces gVim will not be able to execute it. </p> <p>Is it any easy way to fix it in order to be able execute .bat, .py etc from within gVim?</p> http://stackoverflow.com/questions/1514456/php-post-data-apostrophes 0 PHP: POST data + apostrophes Joe 2009-10-03T18:09:30Z 2009-10-03T18:50:42Z <p>Imagine this:</p> <ul> <li>Form data contains an apostrophe </li> <li>Form gets submitted </li> <li>POST data gets serialized </li> <li>POST data is written to database </li> <li>Database data is retrieved </li> <li>Data cannot be unserialized</li> </ul> <p>The problem is found in the serialized data. I tried without and with an apostrophe:</p> <ul> <li>s:7:"company";s:12:"Joes company"</li> <li>s:7:"company";s:14:"Joe's company"</li> </ul> <p>I know POST data adds slashes to quotes and apostrophes but somewhere my slashes are being removed which is breaking the serialization. I'm not using the stripslashes() function anywhere - any ideas?</p> http://stackoverflow.com/questions/1514328/most-readable-way-to-assign-a-double-quote-to-a-string-in-c 1 Most readable way to assign a double quote to a string in C# MiseryIndex 2009-10-03T17:25:05Z 2009-10-03T17:38:17Z <p>Does anyone else think that escaping characters in very short strings make them not very readable? I noticed I was using <code>s = "\""</code> in my code to assign a double quote a string, but having thought about it, I came up with the following alternative: <code>s = '"'.ToString()</code>.</p> <ul> <li>Is my alternative any good? Would you prefer see the first version in code?</li> <li>How would you go about assigning two double quotes (""), which might be <code>s = "\"\""</code>, to a string?</li> </ul> <p><em>/me is marking this CW before being pressured into it.</em></p> http://stackoverflow.com/questions/1494929/regex-line-by-line-how-to-match-triple-quotes-but-not-double-quotes 0 Regex line by line: How to match triple quotes but not double quotes JF 2009-09-29T21:01:27Z 2009-09-29T22:31:00Z <p>I need to check to see if a string of many words / letters / etc, contains only 1 set of triple double-quotes (i.e. """), but can also contain single double-quotes (") and double double-quotes (""), using a regex. Haven't had much success thus far.</p> http://stackoverflow.com/questions/804646/how-do-you-strip-quotes-out-of-an-echoed-string-in-a-windows-batch-file 0 How do you strip quotes out of an ECHO'ed string in a Windows batch file? Lance Roberts 2009-04-29T22:56:41Z 2009-09-29T15:44:32Z <p>I have a Windows batch file I'm creating, but I have to ECHO a large complex string, so I'm having to put double quotes on either end. The problem is that the quotes are also being ECHOed to the file I'm writing it to. How to you ECHO a string like that and strip the quotes off?</p> <p><strong>UPDATE:</strong></p> <p>I've spent the last two days working on this and finally was able to kludge something together. Richard's answer worked to strip the quotes, but even when I put the ECHO in the subroutine and directly outputed the string, Windows still got hung up on the chars in the string. I'll accept Richard's answer since it answers the question asked.</p> <p>I ended up using Greg's sed solution, but had to modify it because of sed/windows bugs/features (it didn't help that it came with no documentation). There are a few caveats to using sed in Windows: you have to use double quotes instead of single quotes, you can't escape the double quotes in the string directly, you have to endquote the string, escape using the ^ (so ^") then beqin quote for the next section. Also, someone pointed out that if you pipe input to sed, there's a bug with a pipe being in the string (I didn't get to verify this since in my final solution, I just found a way not to have all quotes in the middle of the string, and just removed all quotes, <strong>I never could get the endquote to be removed by itself.</strong>) Thanks for all the help.</p> http://stackoverflow.com/questions/1457809/literal-quotes-in-flags-for-a-command-in-a-bash-script 1 Literal quotes in flags for a command in a bash script al 2009-09-22T02:06:46Z 2009-09-28T13:11:39Z <p>I'm writing a Bash script in which I am running a perl script which requires flags that have double quotes in them. Running the script normally, you would run</p> <pre><code>$ perl script.pl -flag="something" -anotherflag="somethingelse" </code></pre> <p>In my script, I'm using variables in these flags, but would like to preserve the doublequotes, so I have something like:</p> <pre><code>variable=foo perl script.pl -flag=\"something\" -anotherflag=\"$variable\" </code></pre> <p>when i run <code>bash -x myscript.sh</code>, I see that it <em>adds</em> single quotes around the entire flag, while maintaining the doublequotes, causing the perl script to error:</p> <pre><code>perl script.pl '-flag="something"' '-anotherflag="foo"' </code></pre> <p>I also tried <code>eval</code>ing the whole thing (<code>eval perl [...]</code>), and it stripped out the doublequotes altogether. How can I have Bash run the script with the doublequotes intact?</p> http://stackoverflow.com/questions/1480607/funny-or-inspiring-programming-related-quotes -2 funny or inspiring programming related quotes [closed] Nippysaurus 2009-09-26T06:51:32Z 2009-09-26T06:58:36Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/58640/great-programming-quotes">Great programming quotes</a> </p> </blockquote> <p>Bill Gates was once quoted as saying "640K ought to be enough for anybody" (obviously this was a long time ago).</p> <p>What are your favourite programming related quotes?</p> http://stackoverflow.com/questions/1473155/how-to-get-data-between-quotes-in-java 0 how to get data between quotes in java ? atomsfat 2009-09-24T17:43:03Z 2009-09-24T18:15:38Z <p>I have this lines of text the number of quotes could change like: </p> <pre><code>Here just one "comillas" But I also could have more "mas" values in "comillas" and that "is" the "trick" I was thinking in a method that return "a" list of "words" that "are" between "comillas" </code></pre> <p>how I obtain the data between the quotes the result should be?: </p> <p>www.eg.com, 192.57.42.11<br /> comillas<br /> mas, comillas, trick<br /> a, words, are, comillas </p> http://stackoverflow.com/questions/1316093/fetch-stock-quotes-from-google-finance-yahoo-finance-or-the-exchange-itself 2 fetch stock quotes from google finance, yahoo finance or the exchange itself Amit Kumar Jha 2009-08-22T14:32:46Z 2009-09-23T22:09:10Z <p>hello all, I am building a web based trading system where buy and sell signals would be generated by reading quotes from either Yahoo finance, google finance or the exchange(NSE of India) itself.My first preference would be to fetch data from this url: </p> <p><a href="http://www.nseindia.com/content/equities/niftywatch.htm" rel="nofollow">http://www.nseindia.com/content/equities/niftywatch.htm</a></p> <p>the page on the site uses tables and i want to fetch data for a particular stock by using class/id of a particular row. Now the problem is I can't figure out how to fetch data from a diffrent domain on my server. I use jquery at the client side, on server-side I use ASP.Net in VB. So please help me out and suggest how do i fetch stock quotes from the above source. Even if i can get access to the table on the above url, my work will be done. Please help. Thanks a lot in advance.</p> <p>P.S.: Just noticed on google finance that they stream real time quote for this particular exchange, so if it is easy to fetch data from google(I understand that they have apis for virtually their every service) then please explain the same.</p> http://stackoverflow.com/questions/1457733/nested-quotes-in-javascript 1 nested quotes in javascript Scozzard 2009-09-22T01:40:57Z 2009-09-22T03:31:44Z <p>Hi Guys,</p> <p>A bit of a noob question here...</p> <p>I have a javascript function on a list of table rows</p> <pre><code>&lt;tr onclick="ClosePopup('{ScenarioID}', '{Name}');" /&gt; </code></pre> <p>However, the {Name} value can sometimes contain the character <code>"'"</code> (single quote). At the moment the error <strong>Expected: ')'</strong> comes up as a result because it is effectivly ending the javascript function early and destroying the syntax.</p> <p>What is the best way to prohibit the single quotes in {Name} value from effecting the javascript?</p> <p>Cheers!</p> http://stackoverflow.com/questions/1412374/python-triple-quote-multi-line-indentation 1 Python Triple Quote / Multi-line indentation Mike 2009-09-11T17:51:05Z 2009-09-11T19:02:18Z <p>I have a python editor where the user is entering a script or code, which is then put into a main method behind the scenes, while also having every line indented. The problem is that if a user has a multi line string, the indentation made to the whole script affects the string, by inserting a tab in every space. A problem script would be something so simple as:</p> <pre><code>"""foo bar foo2""" </code></pre> <p>So when in the main method it would look like:</p> <pre><code>def main(): """foo bar foo2""" </code></pre> <p>and the string would now have an extra tab at the beginning of every line. </p> <p>I'm stumped on how to fix this. Any ideas would be appreciated!</p> <p>Thanks</p> http://stackoverflow.com/questions/1377578/quoting-not-respected-inside-a-bash-variable 1 Quoting not respected inside a bash variable mikem 2009-09-04T06:37:19Z 2009-09-06T18:49:08Z <p>I'm storing the arguments to a command in a variable. The final command I want is:</p> <pre><code>mock -r myconfig --define "debug_package %{nil}" --resultdir results --rebuild mypackage.src.rpm </code></pre> <p>Here's my attempt:</p> <pre><code>set -x # for debugging RESULTDIR=results MOCK_CONFIG="myconfig" MOCK_ARGS="-r $MOCK_CONFIG --define \"debug_package %{nil}\" --resultdir $RESULTDIR" cmd="mock $MOCK_ARGS --rebuild mypackage.src.rpm" $cmd </code></pre> <p>The results are:</p> <pre><code>+ RESULTDIR=results + MOCK_CONFIG=myconfig + MOCK_ARGS='-r myconfig --define "debug_package %{nil}" --resultdir results' + cmd='mock -r myconfig --define "debug_package %{nil}" --resultdir results --rebuild mypackage.src.rpm' + mock -r myconfig --define '"debug_package' '%{nil}"' --resultdir results --rebuild mypackage.src.rpm ERROR: Bad option for '--define' ("debug_package). Use --define 'macro expr' </code></pre> <p>As you can see, the arguments to the <code>--define</code> parameter are not being quoted properly. <code>--define</code> thinks I'm passing it only <code>debug_package</code>, which is incomplete.</p> <p>I have tried various variations in the quotes when defining <code>MOCK_ARGS</code>, even trying to escape the space between <code>debug_package</code> and <code>%{nil}</code>.</p> <p>What combination of quotes and/or escapes allows me to build this argument list and execute the command from this script?</p> <p>EDIT:</p> <p>The reason I'm storing the resulting command in a variable is because it ends up being passed into a function which does some logging, then executes the command.</p> <p>Also, I have come across <a href="http://bash-hackers.org/wiki/doku.php/mirroring/bashfaq/050" rel="nofollow">this FAQ</a> which suggests I should use arrays instead of a variable. I've begun experimenting with arrays but so far don't have a working solution.</p>