User sundar - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:54:30Z http://stackoverflow.com/feeds/user/8127 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119387/how-to-disable-notepads-annoying-parenthesis-completion 5 How to disable Notepad++'s annoying 'parenthesis completion'? sundar 2008-09-23T06:28:31Z 2009-11-15T20:37:58Z <p>Whenever I type a (, [, or {, Notepad++ completes it with the corresponding closing bracket. I find this 'feature' annoying and would like to disable it. It doesn't seem to be listed in the Preferences dialog and a search of the online documentation didn't yield any useful result. Does anybody here know where the option for this is hidden? I'm currently using Notepad++ 5.0.3.</p> http://stackoverflow.com/questions/1720425/select-somecolumns-from-table-in-sql 3 SELECT (* - some_columns) FROM TABLE in SQL sundar 2009-11-12T07:05:18Z 2009-11-12T09:07:57Z <p>Hi,</p> <p>I have a table with many columns among which I'd like to omit a few alone in my 'select' query. Something like <code>select (* - columns_to_be_omitted) from myTable</code>. Is there a way to do this, other than listing all the other columns in the query? </p> <p>This is a one-time manual query, so I'm not that concerned about performance. Ease of use is the greater need here.</p> http://stackoverflow.com/questions/1699338/how-to-import-an-already-checked-out-svn-repository-into-eclipse 0 How to import an already checked out svn repository into Eclipse? sundar 2009-11-08T13:30:21Z 2009-11-09T06:10:01Z <p>Hi, </p> <p>I have a svn repository I have checked out and have in my local hard disk. Now, how do I import this into Eclipse? When I choose File->Import and choose SVN, there is only an option to checkout a project from the server again. File->New project seems to be for projects we are creating new projects from scratch. Kindly point out the option for what I need...</p> <p>Thanks, Sundar</p> http://stackoverflow.com/questions/1679673/how-do-i-make-python-pick-the-correct-module-without-manually-modifying-sys-path 0 How do I make Python pick the correct module without manually modifying sys.path? sundar 2009-11-05T10:35:10Z 2009-11-05T21:03:55Z <p>Hi, </p> <p>I have made some changes in a python module in my checked out copy of a repository, and need to test them. However, when I try to run a script that uses the module, it keeps importing the module from the trunk of the repository, which is of no use to me. </p> <p>I tried setting PYTHONPATH, which did nothing at all. After some searching around, I found that anything in the .pth files under site-packages directory will be put in even before PYTHONPATH (which to me defeats the purpose of having it). I believe this is the cause for my module not being picked.</p> <p>Am I correct? If so, what is the way to override this (without modifying the script to have a <code>sys.path.insert(0,path)</code> )?</p> <p>Edit: In reply to NicDumz - the original repository was under <code>/projects/spam</code>. The python modules were part of this in <code>/projects/spam/sources/python/a/b/</code>. However, these are 'built' every night using a homegrown make variant which then puts them into <code>/projects/spam/build/lib/python/a/b/</code>. The script is using the module under this last path only.<br> I have checked out the entire repository to under <code>/home/sundar/spam</code>, and made changes in <code>/home/sundar/spam/sources/python/a/b/mymodule.py</code>. I've set my PYTHONPATH to <code>/home/sundar/spam/sources/python</code> and tried to <code>import a.b.mymodule</code> with no success. </p> http://stackoverflow.com/questions/834409/visualizing-a-neural-network-having-custom-transfer-functions-in-matlab 0 Visualizing a neural network having custom transfer functions in MATLAB sundar 2009-05-07T12:36:10Z 2009-07-19T05:00:49Z <p>I have constructed a Neural network in Matlab that uses my own custom functions as transfer functions. For example, I've coded a script file 'mexicanhat.m' implementing the Mexican hat function as the transfer function, with all the boilerplate code as necessary (copied from inbuilt 'tansig' function). </p> <p>Now, whenever I issue the Matlab's view command (network/view, not the other view) as</p> <pre><code>view(net) </code></pre> <p>the resulting window is blank, and a spew of Java error messages are displayed on the console. For eg. </p> <pre><code>Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at com.mathworks.toolbox.nnet.v6.diagram.nnTransfer.paint(nnTransfer.java:35) at com.mathworks.toolbox.nnet.v6.image.nnOffsetImage.paint(nnOffsetImage.java:49) at com.mathworks.toolbox.nnet.v6.image.nnLayerImage.paint(nnLayerImage.java:50) at com.mathworks.toolbox.nnet.v6.image.nnOffsetImage.paint(nnOffsetImage.java:49) at com.mathworks.toolbox.nnet.v6.image.nnLayerImage.paint(nnLayerImage.java:50) </code></pre> <p>some 20 lines like this. </p> <p>Does anyone have experience with this? Any solutions or workarounds?</p> <p>My network is quite very very complicated, and a visualization would be very helpful to me in debugging. So any help is very much appreciated. </p> http://stackoverflow.com/questions/1131304/in-perl-how-can-i-find-out-if-my-file-is-being-used-as-a-module-or-run-as-a-scri 6 In Perl, how can I find out if my file is being used as a module or run as a script? sundar 2009-07-15T13:10:06Z 2009-07-15T23:05:47Z <p>Let's say I have a Perl file in which there are parts I need to run only when I'm called as a script. I remember reading sometime back about including those parts in a main() method and doing a</p> <pre><code>main() unless(&lt;some condition which tests if I'm being used as a module&gt;); </code></pre> <p>But I forgot what the condition was. Searching Google hasn't turned out anything fruitful. Can someone point out the right place to look for this? </p> http://stackoverflow.com/questions/848759/match-overlapping-patterns-with-capture-using-a-matlab-regular-expression/854933#854933 1 Answer by sundar for Match overlapping patterns with capture using a MATLAB regular expression sundar 2009-05-12T21:23:52Z 2009-05-12T21:23:52Z <p>If you are doing a lot of parsing and such work, you might consider using <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/ref/perl.html" rel="nofollow">Perl from within Matlab</a>. It gives you access to the powerful regex engine of Perl and might also make many other problems easier to solve. </p> http://stackoverflow.com/questions/23287/prime-factors/830001#830001 0 Answer by sundar for Prime factors sundar 2009-05-06T14:52:12Z 2009-05-06T14:52:12Z <p>My answer is based on <a href="http://stackoverflow.com/questions/23287/prime-factors/412942#412942">Triptych</a>'s, but improves a lot on it. It is based on the fact that beyond 2 and 3, all the prime numbers are of the form 6n-1 or 6n+1. </p> <pre><code>var largestPrimeFactor; if(n mod 2 == 0) { largestPrimeFactor = 2; n = n / 2 while(n mod 2 == 0); } if(n mod 3 == 0) { largestPrimeFactor = 3; n = n / 3 while(n mod 3 == 0); } multOfSix = 6; while(multOfSix - 1 &lt; n) { if(n mod (multOfSix - 1) == 0) { largestPrimeFactor = multOfSix - 1; n = n / largestPrimeFactor while(n mod largestPrimeFactor == 0); } if(n mod (multOfSix + 1) == 0) { largestPrimeFactor = multOfSix - 1; n = n / largestPrimeFactor while(n mod largestPrimeFactor == 0); } multOfSix+=6; } </code></pre> <p>I recently wrote a <a href="http://thetaoishere.blogspot.com/2009/04/finding-largest-prime-factor.html" rel="nofollow">blog article</a> explaining how this algorithm works. </p> <p>I would venture that a method in which there is no need for a test for primality (and no sieve construction) would run faster than one which does use those. If that is the case, this is probably the fastest algorithm here. </p> http://stackoverflow.com/questions/712867/why-does-my-non-greedy-perl-regex-match-nothing 2 Why does my non-greedy Perl regex match nothing? sundar 2009-04-03T07:27:56Z 2009-04-16T19:33:19Z <p>Hi,<br /> I thought I understood Perl RE to a reasonable extent, but this is puzzling me: </p> <pre><code>#!/usr/bin/perl use strict; use warnings; my $test = "'some random string'"; if($test =~ /\'?(.*?)\'?/) { print "Captured $1\n"; print "Matched $&amp;"; } else { print "What?!!"; } </code></pre> <p>prints </p> <blockquote> <p>Captured<br /> Matched '</p> </blockquote> <p>It seems it has matched the ending ' alone, and so captured nothing.<br /> I would have expected it to match the entire thing, or if it's totally non-greedy, nothing at all (as everything there is an optional match).<br /> This in between behaviour baffles me, can anyone explain what is happening?<br /> Thanks, Sundar. </p> http://stackoverflow.com/questions/681864/how-to-apply-moving-windows-to-a-2d-matrix-in-matlab 2 How to apply moving windows to a 2D matrix in MATLAB? sundar 2009-03-25T14:36:12Z 2009-03-25T16:31:38Z <p>Hi,<br /> I'm doing feature extraction from an image in Matlab. I'm having to apply many functions over nXn windows for this purpose (such as to find the variance over each 3X3 window, etc.<br /> Is there an easy and efficient way to do this in Matlab other than looping over the matrix and collecting the window elements each time?<br /> For some functions, I've been able to find an equivalent mask and applied them using filter2, but for many others I don't seem to have such a luxury (one good example: median of a 3X3 window).<br /> What I want is something <em>like</em> arrayfun, but something that applies to nXn windows, not individual elements.<br /> Thanks,<br /> Sundar </p> http://stackoverflow.com/questions/256507/how-do-i-memoize-a-recursive-function-in-lisp 4 How do I memoize a recursive function in Lisp? sundar 2008-11-02T04:35:21Z 2009-01-16T17:05:08Z <p>I'm a Lisp beginner. I'm trying to memoize a recursive function for calculating the number of terms in a <a href="http://en.wikipedia.org/wiki/Collatz_conjecture" rel="nofollow">Collatz sequence</a> (for problem 14 in <a href="http://projecteuler.net/index.php?section=problems&amp;id=14" rel="nofollow">Project Euler</a>). My code as of yet is:</p> <pre><code>(defun collatz-steps (n) (if (= 1 n) 0 (if (evenp n) (1+ (collatz-steps (/ n 2))) (1+ (collatz-steps (1+ (* 3 n))))))) (defun p14 () (defvar m-collatz-steps (memoize #'collatz-steps)) (let ((maxsteps (funcall m-collatz-steps 2)) (n 2) (steps)) (loop for i from 1 to 1000000 do (setq steps (funcall m-collatz-steps i)) (cond ((&gt; steps maxsteps) (setq maxsteps steps) (setq n i)) (t ()))) n)) (defun memoize (fn) (let ((cache (make-hash-table :test #'equal))) #'(lambda (&amp;rest args) (multiple-value-bind (result exists) (gethash args cache) (if exists result (setf (gethash args cache) (apply fn args))))))) </code></pre> <p>The memoize function is the same as the one given in the <a href="http://lib.store.yahoo.net/lib/paulgraham/onlisp.pdf" rel="nofollow">On Lisp</a> book. </p> <p>This code doesn't actually give any speedup compared to the non-memoized version. I believe it's due to the recursive calls calling the non-memoized version of the function, which sort of defeats the purpose. In that case, what is the correct way to do the memoization here? Is there any way to have all calls to the original function call the memoized version itself, removing the need for the special m-collatz-steps symbol?</p> <p>EDIT: Corrected the code to have </p> <pre><code>(defvar m-collatz-steps (memoize #'collatz-steps)) </code></pre> <p>which is what I had in my code. Before the edit I had erroneously put:</p> <pre><code>(defvar collatz-steps (memoize #'collatz-steps)) </code></pre> <p>Seeing that error gave me another idea, and I tried using this last defvar itself and changing the recursive calls to </p> <pre><code> (1+ (funcall collatz-steps (/ n 2))) (1+ (funcall collatz-steps (1+ (* 3 n)))) </code></pre> <p>This does seem to perform the memoization (speedup from about 60 seconds to 1.5 seconds), but requires changing the original function. Is there a cleaner solution which doesn't involve changing the original function? </p> http://stackoverflow.com/questions/367571/detecting-infinite-loop-in-brainfuck-program 6 Detecting infinite loop in brainfuck program sundar 2008-12-15T05:49:53Z 2008-12-24T11:41:32Z <p>I have written a simple <a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">brainfuck</a> interpreter in MATLAB script language. It is fed random bf programs to execute (as part of a genetic algorithm project). The problem I face is, the program turns out to have an infinite loop in a sizeable number of cases, and hence the GA gets stuck at the point.<br /> So, I need a mechanism to detect infinite loops and avoid executing that code in bf.<br /> One obvious (trivial) case is when I have</p> <pre><code>[] </code></pre> <p>I can detect this and refuse to run that program.<br /> For the non-trivial cases, I figured out that the basic idea is: to determine how one iteration of the loop changes the current cell. If the change is negative, we're eventually going to reach 0, so it's a finite loop. Otherwise, if the change is non-negative, it's an infinite loop.<br /> Implementing this is easy for the case of a single loop, but with nested loops it becomes very complicated. For example, (in what follows (1) refers to contents of cell 1, etc. )</p> <pre><code>++++ Put 4 in 1st cell (1) &gt;+++ Put 3 in (2) &lt;[ While( (1) is non zero) -- Decrease (1) by 2 &gt;[ While( (2) is non zero) - Decrement (2) &lt;+ Increment (1) &gt;] (2) would be 0 at this point +++ Increase (2) by 3 making (2) = 3 &lt;] (1) was decreased by 2 and then increased by 3, so net effect is increment </code></pre> <p>and hence the code runs on and on. A naive check of the number of +'s and -'s done on cell 1, however, would say the number of -'s is more, so would not detect the infinite loop.<br /> Can anyone think of a good algorithm to detect infinite loops, given arbitrary nesting of arbitrary number of loops in bf?</p> <p>EDIT: I do know that the halting problem is unsolvable in general, but I was not sure whether there did not exist special case exceptions. Like, maybe Matlab might function as a Super Turing machine able to determine the halting of the bf program. I might be horribly wrong, but if so, I would like to know exactly how and why. </p> <p>SECOND EDIT: I have written what I purport to be infinite loop detector. It probably misses some edge cases (or less probably, somehow escapes Mr. Turing's clutches), but seems to work for me as of now. In pseudocode form, here it goes:</p> <pre><code>subroutine bfexec(bfprogram) begin Looping through the bfprogram, If(current character is '[') Find the corresponding ']' Store the code between the two brackets in, say, 'subprog' Save the value of the current cell in oldval Call bfexec recursively with subprog Save the value of the current cell in newval If(newval &gt;= oldval) Raise an 'infinite loop' error and exit EndIf /* Do other character's processings */ EndIf EndLoop end </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/237790#237790 21 Answer by sundar for Code Golf: Factorials sundar 2008-10-26T09:34:57Z 2008-10-27T06:02:00Z <p>Probably the longest entry here, but brainf*ck is special in any case... :)</p> <p>So, here goes my entry at 93 characters:</p> <pre><code>,&gt;++++++[&lt;--------&gt;-]&lt;[-&gt;+&gt;+&lt;&lt;]&gt;&gt;-&gt;&gt;+&lt;&lt;&lt;[&gt;[&lt;[-&gt;[-&lt;&lt;+&gt;&gt;&gt;+&lt;]&gt;[-&lt;+&gt;]&lt;&lt;]&lt;[-&gt;+&lt;]&gt;&gt;-]&lt;.&gt;&gt;&gt;-]&gt;&gt;&gt;[.-] </code></pre> <p>Commented and indented:</p> <pre><code>, &gt;++++++ Put 6 in next cell [&lt;--------&gt;-] Subtract 8 six times to subtract 48 &lt; [-&gt;+&gt;+&lt;&lt;] Move (0) to (1) and (2) &gt;&gt;- Decrement one from (2) as we want to multiply n * n minus 1 &gt;&gt;+ Store 1 in (4) to allow distinguishing 0 separately &lt;&lt;&lt; Go to (1) [ A makeshift if($_ != 0) &gt;[ While (2) &lt;[ While(1) - Subtract one from (1) for multiplication by repeated addition &gt;[-&lt;&lt;+&gt;&gt;&gt;+&lt;] Add (2) to (0) and (3) &gt;[-&lt;+&gt;] Move data from (3) to (2) &lt;&lt; ] &lt;[-&gt;+&lt;] Copy (0) to (1) for next round of multiplication &gt;&gt;- Decrement (2) to go to n minus 2 and so on ] &lt;.&gt;&gt;&gt;- Print output from (1) and make (4) = 0 to stop the if ] &gt;&gt;&gt;[.-] If we're at (4) (and it is nonzero) we have a 0 as input; so print 1 and stop; </code></pre> <p>EDIT: Seeing the other language codes do not include input code and just take the number as an argument, I too removed the input part and assumed the number was contained as argument in (0). Now it's reduced to 71 characters:</p> <pre><code>[-&gt;+&gt;+&lt;&lt;]&gt;&gt;-&gt;&gt;+&lt;&lt;&lt;[&gt;[&lt;[-&gt;[-&lt;&lt;+&gt;&gt;&gt;+&lt;]&gt;[-&lt;+&gt;]&lt;&lt;]&lt;[-&gt;+&lt;]&gt;&gt;-]&lt;.&gt;&gt;&gt;-]&gt;&gt;&gt;[.-] </code></pre> <p>The outputting algorithm is non trivial so I decided not to remove it.</p> http://stackoverflow.com/questions/228518/palindrome-golf/230113#230113 1 Answer by sundar for Palindrome Golf sundar 2008-10-23T15:12:40Z 2008-10-23T15:12:40Z <p>Straightforward implementation in C using standard library functions, inspired by the strlen in the other C answer.</p> <p>Number of characters: 57</p> <pre><code>p(char*s){char*r=strdup(s);strrev(r);return strcmp(r,s);} </code></pre> <p>Confession: I'm being the bad guy by not freeing r here. My current attempt at being good:</p> <pre><code>p(char*s){char*r=strdup(s);s[0]=strcmp(strrev(r),s);free(r);return s[0];} </code></pre> <p>brings it to 73 characters; I'm thinking of any ways to do it shorter.</p> http://stackoverflow.com/questions/226002/whats-the-difference-between-x-x-vs-x/226036#226036 -1 Answer by sundar for What's the difference between X = X++; vs X++;? sundar 2008-10-22T14:40:36Z 2008-10-22T15:08:47Z <p>The result of the assignment</p> <pre><code>x = x++; </code></pre> <p>is undefined in C and C++<s>, and I would guess the same with C# too. </p> <p>So, the actual sequence of operations that occurs depends on how the compiler decides to implements it, there's no guarantee whether the assignment or the increment will occur first. </s> (this is well defined in C#, as Jon Skeet has pointed out in the comments. Though I now feel this answer is of much less value now, I'm keeping this post undeleted for the OP's question and its answer in the comments.)</p> <p>However, in this case, it appears the sequence of operations that happens is:</p> <ol> <li>the old value (10) of x is saved</li> <li>x is incremented for the ++ part</li> <li>the old value is now assigned to x for the assignment </li> </ol> <p>In this way, though the increment occurs, it is overtaken by the assignment with old value, thus keeping x at 10. </p> <p>HTH</p> http://stackoverflow.com/questions/224562/basic-c-question/224600#224600 6 Answer by sundar for Basic C Question sundar 2008-10-22T05:58:07Z 2008-10-22T05:58:07Z <blockquote> <p>What is wrong with the following?</p> </blockquote> <pre><code>1. void getInput(int* output) { </code></pre> <p>Why is the input argument an int* when what you want to store in an array of characters? Probably </p> <pre><code>void getInput(char* output) { </code></pre> <p>is better. </p> <p>Also, how do you know that the output pointer is pointing somewhere where you hold enough memory to write the user's input? Maybe you must have the maximum buffer length as an extra parameter to avoid buffer overflow errors as <a href="http://stackoverflow.com/questions/224562/basic-c-question#224581">PW pointed out</a>.</p> <pre><code>5. output[++i] = '\0'; </code></pre> <p>i has already been incremented an extra time inside the for loop, so you can just do:</p> <pre><code>output[i] = '\0'; </code></pre> <p>Other than these, the program runs fine and outputs what we input until return.</p> <p>FWIW, I tested it by calling it like so:</p> <pre><code> int main(void) { char o[100]; getInput(o); printf("%s", o); return 0; } </code></pre> http://stackoverflow.com/questions/197441/why-do-i-get-this-error-message-in-matlab/219406#219406 0 Answer by sundar for Why do I get this error message in matlab? sundar 2008-10-20T18:35:17Z 2008-10-20T18:35:17Z <p>As others have pointed out, this is very probably a problem with the path of the function file not being in Matlab's 'path'. </p> <p>One easy way to verify this is to open your function in the Editor and press the F5 key. This would make the Editor try to run the file, and in case the file is not in path, it will prompt you with a message box. Choose 'Add to Path' in that, and you must be fine to go. </p> <p>One side note: at the end of the above process, Matlab command window will give an error saying arguments missing: obviously, we didn't provide any arguments when we tried to run from the editor. But from now on you can use the function from the command line giving the correct arguments.</p> http://stackoverflow.com/questions/195648/does-this-set-of-regular-expressions-fully-protect-against-cross-site-scripting/198208#198208 0 Answer by sundar for Does this set of regular expressions FULLY protect against cross site scripting? sundar 2008-10-13T16:39:13Z 2008-10-13T16:39:13Z <p>From a different point of view, what happens when someone wants to have 'javascript' or 'functionload' or 'visionblurred' in what they submit? This can happen in most places for any number of reasons... From what I understand, those will become 'javaSAFEscript', 'functionSAFEload' and 'visionSAFEblurred'(!!).</p> <p>If this might apply to you, and you're stuck with the blacklist approach, be sure to use the exact matching regexes to avoid annoying the user. In other words, be at the optimum point between security and usability, compromising either as little as possible.</p> http://stackoverflow.com/questions/194696/favorite-essay-about-programming/195773#195773 2 Answer by sundar for Favorite Essay about Programming sundar 2008-10-12T17:52:18Z 2008-10-12T17:52:18Z <p>Not directly about programming, but Steve Jobs' talk at the Stanford really got into me and made me think. The things he talks about are very practical, so you can easily relate to them with your life and see what he means. </p> <p>Link: <a href="http://news-service.stanford.edu/news/2005/june15/jobs-061505.html" rel="nofollow">http://news-service.stanford.edu/news/2005/june15/jobs-061505.html</a></p> http://stackoverflow.com/questions/194247/how-do-i-create-a-string-from-one-row-of-a-two-dimensional-rectangular-character 1 How do I create a string from one row of a two dimensional rectangular character array in C#? sundar 2008-10-11T16:02:09Z 2008-10-11T16:28:28Z <p>I have a 2 dimensional array, like so:</p> <pre><code>char[,] str = new char[2,50]; </code></pre> <p>Now, after I've stored contents in both str[0] and str[1], how do I store it in a </p> <pre><code>string[] s = new string[2]; </code></pre> <p>?</p> <p>I tried </p> <pre><code>s[0] = str[0].ToString(); </code></pre> <p>but that seems to be an error: VC# expects 'two' indices within the braces, which means I can convert only a character from the array. Is there a way to convert the entire str[0] to a string? Or is changing it to a jagged array the only solution?</p> http://stackoverflow.com/questions/132092/what-are-your-favourite-matlab-octave-programming-tricks/192271#192271 9 Answer by sundar for What are your favourite MATLAB/Octave programming tricks? sundar 2008-10-10T17:05:44Z 2008-10-10T17:05:44Z <p>Directly extracting the elements of a matrix that satisfy a particular condition, using logical arrays:</p> <pre><code>x = rand(1,50) .* 100; xpart = x( x &gt; 20 &amp; x &lt; 35); </code></pre> <p>Now xpart contains only those elements of x which lie in the specified range.</p> http://stackoverflow.com/questions/133965/find-crlf-in-notepad/183941#183941 3 Answer by sundar for Find CRLF in Notepad++ sundar 2008-10-08T17:40:18Z 2008-10-08T17:40:18Z <p>It appears that this is a <a href="http://notepad-plus.sourceforge.net/uk/newlineFindReplace-HOWTO.php" rel="nofollow">FAQ</a>, and the resolution offered is:</p> <blockquote> <p><strong>Simple search (Ctrl+H) without regexp</strong></p> <p>You can turn on View/Show End of Line or view/Show All, and select the now visible newline characters. Then when you start the command some characters matching the newline character will be pasted into the search field. Matches will be replaced by the replace string, unlike in regex mode.</p> <p>Note 1: If you select them with the mouse, start just before them and drag to the start of the next line. Dragging to the end of the line won't work. </p> <p>Note 2: You can't copy and paste them into the field yourself.</p> <p><strong>Advanced search (Ctrl+R) without regexp</strong></p> <p>Ctrl+M will insert something that matches newlines. They will be replaced by the replace string.</p> </blockquote> http://stackoverflow.com/questions/122192/for-list-controls-should-find-as-you-type-match-at-the-start-of-an-entry-or-any/183899#183899 1 Answer by sundar for For list controls, should find-as-you-type match at the start of an entry, or anywhere in an entry? sundar 2008-10-08T17:30:03Z 2008-10-08T17:30:03Z <p>As Omer Kooheji said, the correct answer depends a lot on <em>what</em> the listbox contains. However, on the basis of the <a href="http://en.wikipedia.org/wiki/Principle_of_least_astonishment" rel="nofollow">Principle of least astonishment</a>, I would recommend matching at the start of an entry; that's the way it happens with most list boxes (in the Web, in time zone selection in Linux installations, etc. for example), so that is the behaviour that most users would expect. </p> <p>However, that is a generic advice without knowing the exact application. If your application is such that people might not know the exact start but might know some substring in between, it obviously makes much more sense to match the input anywhere. </p> http://stackoverflow.com/questions/165455/why-do-people-like-case-sensitivity/165671#165671 1 Answer by sundar for Why do people like case sensitivity? sundar 2008-10-03T04:15:48Z 2008-10-08T17:13:09Z <p>I think there is also an issue of psychology involved here. We are programmers, we distinguish minutely between things. 'a' is not the same ASCII value as 'A', and I would feel odd when my compiler considers them the same. This is why, when I type </p> <p>(list 'a 'b 'c) </p> <p>in LISP (in the REPL), and it responds with</p> <p>(A B C)</p> <p>my mind immediately exclaims 'That's not what I said!'. When things are not the same, they <em>are</em> different and must be considered so...</p> http://stackoverflow.com/questions/182554/microsecond-accurate-or-better-process-timing-in-linux/183770#183770 0 Answer by sundar for Microsecond accurate (or better) process timing in Linux sundar 2008-10-08T16:53:42Z 2008-10-08T16:53:42Z <p><a href="http://allmybrain.com/2008/06/10/timing-cc-code-on-linux/" rel="nofollow">http://allmybrain.com/2008/06/10/timing-cc-code-on-linux/</a></p> <p>might be of help to you (directly if you are doing it in C/C++, but I hope it will give you pointers even if you're not)... It claims to provide microsecond accuracy, which just passes your criterion. :)</p> http://stackoverflow.com/questions/179119/how-to-prevent-windows-xp-from-stealing-my-input-ctrl-space-which-is-meant-for-em/179310#179310 2 Answer by sundar for How to prevent Windows XP from stealing my input Ctrl-Space which is meant for Emacs sundar 2008-10-07T16:29:51Z 2008-10-07T16:29:51Z <p>The blog <a href="http://blogs.msdn.com/michkap/archive/2007/02/02/1585687.aspx" rel="nofollow">here</a> seems to be discussing this exact issue. It appears that even disabling the hotkeys from the Control Panel doesn't work - they get automagically re-enabled due to some bug in the OS. </p> <p>Two solutions offered there are:</p> <ul> <li>"using an alternative desktop shell such as GeoShell alleviates this issue." (<a href="http://blogs.msdn.com/michkap/archive/2007/02/02/1585687.aspx#8724303" rel="nofollow">Link</a>)</li> <li>"install one more language. I install Japanese and Chinese on an English win XP. Then, XP does not response the Ctrl-Space any more." (<a href="http://blogs.msdn.com/michkap/archive/2007/02/02/1585687.aspx#8904695" rel="nofollow">Link</a>)</li> </ul> http://stackoverflow.com/questions/173706/how-can-i-delete-a-specific-node-within-a-xml-file-by-using-vbscript/173825#173825 0 Answer by sundar for How can I delete a specific node within a XML file by using vbscript sundar 2008-10-06T10:33:21Z 2008-10-06T10:33:21Z <p>If you have the Firefox browser, you can simply install the DOM Inspector (required only for Firefox 3.0), and the XPather extensions. Then, you can traverse to the node you want in the DOM Inspector window, and the corresponding XPath will be displayed in the XPather toolbar in the same window. </p> <p>DOM Inspector: <a href="https://addons.mozilla.org/en-US/firefox/addon/6622" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/6622</a></p> <p>XPather: <a href="https://addons.mozilla.org/en-US/firefox/addon/1192?id=1192" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/1192?id=1192</a></p> <p>The XPather seems to use attributes (and not enumeration) whenever possible to identify nodes (atleast that's what I found in my little experimentation...). Hope that helps... </p> http://stackoverflow.com/questions/89056/how-do-you-read-c-declarations/90664#90664 3 Answer by sundar for How do you read c declarations? sundar 2008-09-18T07:14:11Z 2008-09-18T07:14:11Z <p>I generally use what is sometimes called the 'right hand clockwise rule'. It goes like this:</p> <ul> <li>Start from the identifier.</li> <li>Go to the immediate right of it.</li> <li>Then move clockwise and come to the left hand side.</li> <li>Move clockwise and come to the right side.</li> <li>Do this as long as the declaration has not been parsed fully.</li> </ul> <p>There's an additional meta-rule that has to be taken care of:</p> <ul> <li>If there are parantheses, complete each level of parantheses before moving out.</li> </ul> <p>Here, 'going' and 'moving' somewhere means reading the symbol there. The rules for that are:</p> <p>* : pointer to</p> <p>() : function returning</p> <p>(int, int) : function taking two ints and returning</p> <p>int, char, etc. : int, char, etc.</p> <p>[] : array of</p> <p>[10] : array of ten</p> <p>etc.</p> <p>So, for example, int* (*xyz[10])(int*, char) is read as: xyz is an </p> <p>array of ten</p> <p>pointers to</p> <p>functions taking an int* and a char and returning</p> <p>an int*</p> http://stackoverflow.com/questions/63776/bit-reversal-of-an-integer-ignoring-integer-size-and-endianness/70906#70906 2 Answer by sundar for Bit reversal of an integer, ignoring integer size and endianness sundar 2008-09-16T10:06:42Z 2008-09-16T10:06:42Z <pre><code>#include&lt;stdio.h&gt; #include&lt;limits.h&gt; #define TYPE_BITS sizeof(TYPE)*CHAR_BIT typedef unsigned long TYPE; TYPE reverser(TYPE n) { TYPE nrev = 0, i, bit1, bit2; int count; for(i = 0; i &lt; TYPE_BITS; i += 2) { /*In each iteration, we swap one bit on the 'right half' of the number with another on the left half*/ count = TYPE_BITS - i - 1; /*this is used to find how many positions to the left (and right) we gotta move the bits in this iteration*/ bit1 = n &amp; (1&lt;&lt;(i/2)); /*Extract 'right half' bit*/ bit1 &lt;&lt;= count; /*Shift it to where it belongs*/ bit2 = n &amp; 1&lt;&lt;((i/2) + count); /*Find the 'left half' bit*/ bit2 &gt;&gt;= count; /*Place that bit in bit1's original position*/ nrev |= bit1; /*Now add the bits to the reversal result*/ nrev |= bit2; } return nrev; } int main() { TYPE n = 6; printf("%lu", reverser(n)); return 0; } </code></pre> <p>This time I've used the 'number of bits' idea from TK, but made it somewhat more portable by not assuming a byte contains 8 bits and instead using the CHAR_BIT macro. The code is more efficient now (with the inner for loop removed). I hope the code is also slightly less cryptic this time. :)</p> <p>The need for using count is that the number of positions by which we have to shift a bit varies in each iteration - we have to move the rightmost bit by 31 positions (assuming 32 bit number), the second rightmost bit by 29 positions and so on. Hence count must decrease with each iteration as i increases. </p> <p>Hope that bit of info proves helpful in understanding the code... </p> http://stackoverflow.com/questions/63776/bit-reversal-of-an-integer-ignoring-integer-size-and-endianness/64949#64949 3 Answer by sundar for Bit reversal of an integer, ignoring integer size and endianness sundar 2008-09-15T17:30:30Z 2008-09-15T17:30:30Z <pre><code>typedef unsigned long TYPE; TYPE reverser(TYPE n) { TYPE k = 1, nrev = 0, i, nrevbit1, nrevbit2; int count; for(i = 0; !i || (1 &lt;&lt; i &amp;&amp; (1 &lt;&lt; i) != 1); i+=2) { /*In each iteration, we swap one bit on the 'right half' of the number with another on the left half*/ k = 1&lt;&lt;i; /*this is used to find how many positions to the left (or right, for the other bit) we gotta move the bits in this iteration*/ count = 0; while(k &lt;&lt; 1 &amp;&amp; k &lt;&lt; 1 != 1) { k &lt;&lt;= 1; count++; } nrevbit1 = n &amp; (1&lt;&lt;(i/2)); nrevbit1 &lt;&lt;= count; nrevbit2 = n &amp; 1&lt;&lt;((i/2) + count); nrevbit2 &gt;&gt;= count; nrev |= nrevbit1; nrev |= nrevbit2; } return nrev; } </code></pre> <p>This works fine in gcc under Windows, but I'm not sure if it's completely platform independent. A few places of concern are:</p> <ul> <li><p>the condition in the for loop - it assumes that when you left shift 1 beyond the leftmost bit, you get either a 0 with the 1 'falling out' (what I'd expect and what good old Turbo C gives iirc), or the 1 circles around and you get a 1 (what seems to be gcc's behaviour).</p></li> <li><p>the condition in the inner while loop: see above. But there's a strange thing happening here: in this case, gcc seems to let the 1 fall out and not circle around!</p></li> </ul> <p>The code might prove cryptic: if you're interested and need an explanation please don't hesitate to ask - I'll put it up someplace.</p> http://stackoverflow.com/questions/1679673/how-do-i-make-python-pick-the-correct-module-without-manually-modifying-sys-path/1679796#1679796 Comment by sundar on How do I make Python pick the correct module without manually modifying sys.path? sundar 2009-11-06T11:08:46Z 2009-11-06T11:08:46Z But this would create the problem of keeping the two environments in sync isn't it? Also, I see that I can make virtual-env not see the global site-packages, but this is not what I want - what I need is to have my modules override the global ones whenever there is a conflict, and otherwise pick them. Is this possible? http://stackoverflow.com/questions/1679673/how-do-i-make-python-pick-the-correct-module-without-manually-modifying-sys-path/1679739#1679739 Comment by sundar on How do I make Python pick the correct module without manually modifying sys.path? sundar 2009-11-05T20:53:03Z 2009-11-05T20:53:03Z Unfortunately, PYTHONSTARTUP is apparently not picked up when Python interpreter is run non-interactively. Is there a way to run a script (along with its commandline arguments) from within the interactive interpreter? If so, this solution would work for me. http://stackoverflow.com/questions/158716/how-do-you-efficiently-generate-a-list-of-k-non-repeating-integers-between-0-and/187952#187952 Comment by sundar on How do you efficiently generate a list of K non-repeating integers between 0 and an upper bound N sundar 2009-11-04T20:24:32Z 2009-11-04T20:24:32Z Thanks for the authoritative answer. I have the same requirement, and this is the algo I'm planning to implement. Thanks again. http://stackoverflow.com/questions/1621102/how-can-i-count-adjacent-items-in-perl Comment by sundar on How can I count adjacent items in Perl? sundar 2009-10-25T17:44:06Z 2009-10-25T17:44:06Z Closed? That too &quot;closed as not a real question&quot;? Really? The way (s)he asked the question might not be clear, but I don't see any valid reason for closing here. http://stackoverflow.com/questions/1519680/executing-piece-of-code-unless-expression-matches-in-perl/1519724#1519724 Comment by sundar on executing piece of code unless expression matches in perl sundar 2009-10-05T12:22:19Z 2009-10-05T12:22:19Z Why do you need a regex for such a simple task? while($line = &lt;&gt;) { last if ($line eq 'STOP'); # Stuff } is simpler and possibly more efficient. http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/985198#985198 Comment by sundar on What are the dark corners of Vim your mom never told you about? sundar 2009-09-23T09:41:29Z 2009-09-23T09:41:29Z @OP: That was cunning. :) http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/727591#727591 Comment by sundar on What are the dark corners of Vim your mom never told you about? sundar 2009-09-23T09:39:32Z 2009-09-23T09:39:32Z How is ^M == Ctrl-F? Was that a typo? http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/790218#790218 Comment by sundar on What are the dark corners of Vim your mom never told you about? sundar 2009-09-23T08:40:11Z 2009-09-23T08:40:11Z @Jeffrey: Thanks... @saffsd: That single difference is a great thing: Now I can pass lines to sed or awk and have it replaced with the processed output... http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234518#234518 Comment by sundar on What is your best programmer joke? sundar 2009-09-15T17:12:18Z 2009-09-15T17:12:18Z I knew both, now who am I? :-O http://stackoverflow.com/questions/1389297/unescaped-still-matches-when-used-in-a-negation-group/1389316#1389316 Comment by sundar on Unescaped "." still matches when used in a negation group. sundar 2009-09-07T15:52:29Z 2009-09-07T15:52:29Z @dtsazza: I think that <i>is</i> his original problem - the question is about why an unescaped period works, and Avi gave the answer for it. http://stackoverflow.com/questions/1389297/unescaped-still-matches-when-used-in-a-negation-group Comment by sundar on Unescaped "." still matches when used in a negation group. sundar 2009-09-07T15:50:46Z 2009-09-07T15:50:46Z Kurley, I think you're missing Michael Borgwardt's point: you use [^\\s.]* in the code, but [\s.]* without the ^ in the text above it. I think it's a typo in the text, please correct it as it is causing a lot of confusion. http://stackoverflow.com/questions/1322380/gotchas-where-numpy-differs-from-straight-python/1323233#1323233 Comment by sundar on gotchas where Numpy differs from straight python ? sundar 2009-09-07T14:48:55Z 2009-09-07T14:48:55Z Could you explain how the numpy array ends up being so? http://stackoverflow.com/questions/235839/how-do-i-indent-multiple-lines-quickly-in-vi/550381#550381 Comment by sundar on How do I indent multiple lines quickly in vi? sundar 2009-09-01T17:14:08Z 2009-09-01T17:14:08Z To indent the selection multiple times, you can simply press . to repeat the previous command. http://stackoverflow.com/questions/137783/given-a-function-which-produces-a-random-integer-in-the-range-1-to-5-write-a-fun/137809#137809 Comment by sundar on Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7 sundar 2009-05-04T05:50:44Z 2009-05-04T05:50:44Z Uh, can anyone explain how this really works and produces a uniform distribution? The Wikipedia page on rejection sampling was not of much help. http://stackoverflow.com/questions/810969/one-big-world-test Comment by sundar on One Big World Test sundar 2009-05-01T11:29:07Z 2009-05-01T11:29:07Z @jinguy No probs, your intention sounds good, you probably didn't think of the consequences. Kudos for the immediate response.