User Carlos Rendon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T15:18:52Z http://stackoverflow.com/feeds/user/43851 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/879432/what-is-the-difference-between-a-generative-and-discriminative-algorithm/1850610#1850610 0 Answer by Carlos Rendon for What is the difference between a Generative and Discriminative Algorithm? Carlos Rendon 2009-12-05T00:41:23Z 2009-12-05T00:41:23Z <p>A <strong>generative algorithm</strong> models how the data was generated in order to categorize a signal. It asks the question: based on my generation assumptions, which category is most likely to generate this signal?</p> <p>A <strong>discriminative algorithm</strong> does not care about how the data was generated, it simply categorizes a given signal.</p> http://stackoverflow.com/questions/1850566/set-default-file-open-path-in-emacs 0 Set default file open path in Emacs? [closed] Carlos Rendon 2009-12-05T00:28:43Z 2009-12-05T00:30:45Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/60464/changing-the-default-folder-in-emacs">Changing the default folder in emacs</a> </p> </blockquote> <p>I'm running Emacs on Windows. Whenever I go to open a file (from the <code>*scratch</code>* buffer) I find that the path it suggests is the path of Emacs, which requires a lot of backspacing to turn into the path that I wanted.</p> <p>How can I set the default file open path to be say, my home directory?</p> http://stackoverflow.com/questions/1505738/windbg-how-to-display-version-control-file-path-in-stack-trace-with-source-serve 0 WinDbg, How to display version control file path in stack trace with source server? Carlos Rendon 2009-10-01T18:44:35Z 2009-10-12T22:05:08Z <p>I am using WinDbg with the source server so that it will display the source information in stack traces. But it shows the path where the source was built, not where it exists in my version control system.</p> <p>Is there a way to have it display the paths from my version control system?</p> http://stackoverflow.com/questions/1505738/windbg-how-to-display-version-control-file-path-in-stack-trace-with-source-serve/1557195#1557195 0 Answer by Carlos Rendon for WinDbg, How to display version control file path in stack trace with source server? Carlos Rendon 2009-10-12T22:05:08Z 2009-10-12T22:05:08Z <p>Unfortunately the only way that I have found to do this is to extract the source control information from the relevant .pdb's used (using pdbstr) and use that information to replace the build paths with the version control paths. </p> <p>Too bad WinDbg doesn't have an easy way to do this given that it has the info already.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/1467258#1467258 1 Answer by Carlos Rendon for The single most useful Emacs feature Carlos Rendon 2009-09-23T16:45:31Z 2009-09-23T16:45:31Z <pre><code>multi-occur-in-matching-buffers </code></pre> <p>Allows you to regex search inside of all open buffers that match a regex</p> http://stackoverflow.com/questions/1374804/addwithvalue-difficulty 0 AddWithValue difficulty Carlos Rendon 2009-09-03T17:21:44Z 2009-09-03T17:47:00Z <p>I want to run parameterized SQL with .NET. But when I use AddWithValue() the generated command does not work.</p> <pre><code>SqlCommand cmd = new SqlCommand("SELECT * FROM table WHERE table.name = @A") cmd.Parameters.AddWithValue("@A", "A string"); </code></pre> <p>Generates this sql command:</p> <pre><code>exec sp_executesql N'SELECT * FROM table WHERE table.name = @A',N'@A nvarchar(10)',@A=N'''A string''' </code></pre> <p>But that command returns no value while the following command returns the value I want (i.e. matches one row):</p> <pre><code>SELECT * FROM table WHERE table.name = 'A String' </code></pre> <p>The second query does what I expect, and I expect both queries to return the same result.</p> <p>What am I doing wrong in the code?</p> http://stackoverflow.com/questions/1306785/best-way-to-statistically-detect-anomalies-in-data/1331572#1331572 0 Answer by Carlos Rendon for best way to statistically detect anomalies in data Carlos Rendon 2009-08-25T23:27:19Z 2009-08-25T23:27:19Z <p>Take a look at <a href="http://en.wikipedia.org/wiki/Control%5Fchart" rel="nofollow">Control Charts</a>, they provide a way to track changes in your data visually and specify when the data is "out of control" or "anomalous". They are heavily used in manufacturing to ensure quality control.</p> http://stackoverflow.com/questions/1247047/transform-arbitrary-sql-select-topx-to-a-select-count 0 Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)? Carlos Rendon 2009-08-07T21:13:15Z 2009-08-08T02:13:03Z <p>I want to be able to take any arbitrary <code>SELECT TOP(X)</code> query that would normally return a large number of rows (without the X limit) and transform that query into a query that counts how many rows would have been returned without the <code>TOP(X)</code> (i.e. <code>SELECT COUNT(*)</code>). Remember I am asking about an arbitrary query with any number of joins, where clauses, group by's etc.</p> <p>Is there a way to do this?</p> <p><hr /></p> <p>edited to show syntax with Shannon's solution:</p> <p>i.e.</p> <pre><code>`SELECT TOP(X) [colnames] FROM [tables with joins] WHERE [constraints] GROUP BY [cols] ORDER BY [cols]` </code></pre> <p>becomes</p> <pre><code>`SELECT COUNT(*) FROM (SELECT [colnames] FROM [tables with joins] WHERE [constraints] GROUP BY [cols]) t` </code></pre> http://stackoverflow.com/questions/1161216/does-anyone-know-of-a-good-diff-tool-for-c/1161898#1161898 1 Answer by Carlos Rendon for Does anyone know of a good diff tool for C#? Carlos Rendon 2009-07-21T21:37:33Z 2009-07-21T21:37:33Z <p>I know you are looking for a tool. But since I know of none, here is how I would accomplish this:</p> <ol> <li>Read a book on compiler design</li> <li>Lex/Parse your code</li> <li>Create an Abstract Syntax Tree</li> <li>Invent an algorithm for performing diffs on the Syntax tree</li> <li>Profit!</li> </ol> http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431525#431525 9 Answer by Carlos Rendon for Run a command in a shell and keep running the command when you close the session Carlos Rendon 2009-01-10T18:48:49Z 2009-01-10T18:48:49Z <p>Try using <a href="http://www.gnu.org/software/screen/" rel="nofollow">GNU Screen</a>. It allows you to have several shells open at once. And you can disconnect from those running shells (i.e. close session with Putty) and they will keep doing their thing.</p> http://stackoverflow.com/questions/429718/image-recognition-and-3d-rendering/429792#429792 1 Answer by Carlos Rendon for Image recognition and 3d rendering Carlos Rendon 2009-01-09T21:21:45Z 2009-01-09T21:21:45Z <p>It sounds like you want to do several things, all in the domain of computer vision.</p> <ol> <li>Object Recognition (i.e. find the predefined object)</li> <li>3D Reconstruction (make the 3d model from the image)</li> <li>Image Segmentation (cut out just the object you are worried about from the background)</li> </ol> <p>I've ranked them in order of easiest to hardest (according to my limited understanding). All together I would say it is a very complicated problem. I would look at the following Wikipedia links for more information:</p> <p><a href="http://en.wikipedia.org/wiki/Computer_vision" rel="nofollow">Computer Vision Overview (Wikipedia)</a></p> <p><a href="http://en.wikipedia.org/wiki/Eight-point_algorithm" rel="nofollow">The Eight Point Algorithm (for 3d reconstruction)</a></p> <p><a href="http://en.wikipedia.org/wiki/Segmentation_(image_processing)" rel="nofollow">Image Segmentation</a></p> http://stackoverflow.com/questions/421206/in-python-how-i-do-use-subprocess-instead-of-os-system/421228#421228 3 Answer by Carlos Rendon for In Python, how I do use subprocess instead of os.system? Carlos Rendon 2009-01-07T17:31:02Z 2009-01-07T19:00:02Z <pre><code>import subprocess p=subprocess.Popen(args, stdout=subprocess.PIPE) print p.communicate()[0] </code></pre> <p>It would look pretty much the same. But the path should not be r'"whatever the path is"'. Because that gives me an error. You want "the path with escaped backslashes" or r'the path without escaping'.</p> <p>Also args should be of the form ['-arg', 'args'] instead of ['arg argsval'].</p> http://stackoverflow.com/questions/415035/must-have-emacs-extentions/415067#415067 1 Answer by Carlos Rendon for must have emacs extentions? Carlos Rendon 2009-01-06T00:47:43Z 2009-01-06T00:47:43Z <p>I like <a href="http://www.emacswiki.org/emacs/ColorTheme" rel="nofollow">color theme</a> and of course the modes for the languages I'm using.</p> http://stackoverflow.com/questions/353226/facial-recognition-merging-software/403810#403810 2 Answer by Carlos Rendon for Facial recognition/merging software Carlos Rendon 2008-12-31T19:06:09Z 2008-12-31T19:06:09Z <p>In addition to Eigenfaces, I would look at Fisherfaces. Here is an academic paper that compares the performance of both algorithms <a href="http://www1.cs.columbia.edu/~belhumeur/journal/fisherface-pami97.pdf" rel="nofollow">Eigenfaces vs. Fisherfaces</a>. It shows better performance with Fisherfaces. I also agree with tfinniga that OpenCV is worth your time, I've used it before for face detection.</p> <p>Finally you should be more specific. Do you want to detect when there is a face in a picture and then identify where or do you want to detect a specific face in a picture? The solutions listed here are for the latter question. If you want to tackle the former question I suggest searching the literature for adaboost and haar features.</p> http://stackoverflow.com/questions/303608/graphviz-for-documentation/370145#370145 6 Answer by Carlos Rendon for Graphviz for documentation. Carlos Rendon 2008-12-16T00:09:43Z 2008-12-16T00:09:43Z <p>Graphviz is not going to give you a slick graphical interface like Visio. It will however, produce well laid out graphs. I find it most useful when I am generating graphs automatically via a program (as in the case of doxygen).</p> http://stackoverflow.com/questions/345280/bayesian-networks-tutorial/345524#345524 1 Answer by Carlos Rendon for Bayesian networks tutorial Carlos Rendon 2008-12-05T23:40:22Z 2008-12-06T08:26:59Z <p>Pearl's 1988 <em>Probabilistic Reasoning in Intelligent Systems</em> is the one of the most cited works on Bayesian Networks. I found it quite clear. That said, a lot has been done in the field since 1988. It would be wise to supplement this book with more recent works.</p> http://stackoverflow.com/questions/289915/interactive-statistical-analysis-tool/345553#345553 0 Answer by Carlos Rendon for Interactive Statistical Analysis tool Carlos Rendon 2008-12-05T23:57:48Z 2008-12-06T08:23:59Z <p>I would consider looking at <a href="http://www.r-project.org/" rel="nofollow">R</a>, it is:</p> <ul> <li>Free</li> <li>Widely used by statisticians</li> <li>Fairly easy to use. </li> <li>Can easily do everything you mention in your post</li> </ul> http://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package/345582#345582 2 Answer by Carlos Rendon for What is the best Java numerical method package? Carlos Rendon 2008-12-06T00:09:39Z 2008-12-06T00:09:39Z <p>I've used <a href="http://acs.lbl.gov/~hoschek/colt/" rel="nofollow">colt</a> from CERN before but mostly for it's random number generators. It has a mature and stable API, and high performance. </p> http://stackoverflow.com/questions/1850566/set-default-file-open-path-in-emacs Comment by Carlos Rendon on Set default file open path in Emacs? Carlos Rendon 2009-12-05T00:44:47Z 2009-12-05T00:44:47Z Clearly I'm not very good at searching. Please vote to close as this is a dupe as kronoz has pointed out. http://stackoverflow.com/questions/1850503/string-user-function Comment by Carlos Rendon on string user function Carlos Rendon 2009-12-05T00:19:44Z 2009-12-05T00:19:44Z I don't see why a regular function would not be acceptable in this case. http://stackoverflow.com/questions/311165/how-do-you-convert-byte-array-to-hexadecimal-string-and-vice-versa-in-c/311179#311179 Comment by Carlos Rendon on How do you convert Byte Array to Hexadecimal String, and vice versa, in C#? Carlos Rendon 2009-11-23T17:21:07Z 2009-11-23T17:21:07Z Your StringToByteArray() fails if you have an odd number of hex characters. This is easily fixed by padding odd strings with a &quot;0&quot; at the front. http://stackoverflow.com/questions/30947/visual-studio-08-spell-check-addin/30968#30968 Comment by Carlos Rendon on Visual Studio 08 Spell Check Addin? Carlos Rendon 2009-10-13T23:17:49Z 2009-10-13T23:17:49Z Just kidding, the new version 2.2 does!!!! <a href="http://blogs.msdn.com/webdevtools/archive/2008/11/29/spell-checker-update-2-2-full-support-for-vs-2008-sp1-simpler-setup-and-a-few-bug-fixes.aspx" rel="nofollow">blogs.msdn.com/webdevtools/archive/&hellip;</a> http://stackoverflow.com/questions/30947/visual-studio-08-spell-check-addin/30968#30968 Comment by Carlos Rendon on Visual Studio 08 Spell Check Addin? Carlos Rendon 2009-10-13T22:14:17Z 2009-10-13T22:14:17Z Doesn't check C# strings!!! Only seems to check stuff that looks like HTML http://stackoverflow.com/questions/1505738/windbg-how-to-display-version-control-file-path-in-stack-trace-with-source-serve/1505760#1505760 Comment by Carlos Rendon on WinDbg, How to display version control file path in stack trace with source server? Carlos Rendon 2009-10-01T18:49:59Z 2009-10-01T18:49:59Z I know that. But I am storing the version control information in the .pdb's as well. WinDbg uses this info to automagically download the source file if I click on a stack frame. I want to know how to display the version control path. http://stackoverflow.com/questions/1374804/addwithvalue-difficulty/1374834#1374834 Comment by Carlos Rendon on AddWithValue difficulty Carlos Rendon 2009-09-03T17:38:35Z 2009-09-03T17:38:35Z I agree that this would be correct had I pasted the correct string for the sp_executesql call. However I did not, I have edited my post. With the edits I still have the same problem http://stackoverflow.com/questions/1306785/best-way-to-statistically-detect-anomalies-in-data/1306894#1306894 Comment by Carlos Rendon on best way to statistically detect anomalies in data Carlos Rendon 2009-08-25T23:29:45Z 2009-08-25T23:29:45Z Or even a well-posed question. Just what exactly do you mean by anomalous anyways? http://stackoverflow.com/questions/303608/graphviz-for-documentation/370145#370145 Comment by Carlos Rendon on Graphviz for documentation. Carlos Rendon 2009-08-25T15:21:55Z 2009-08-25T15:21:55Z Yes, I suppose the point is that the graph layouts in Graphviz are much better than you tend see in other programs. Also, it gives you control of the layout when you want or need it. http://stackoverflow.com/questions/255202/how-do-i-view-git-diff-output-with-visual-diff-program/949242#949242 Comment by Carlos Rendon on How do I view 'git diff' output with visual diff program? Carlos Rendon 2009-08-19T16:57:05Z 2009-08-19T16:57:05Z Also, any idea of how to get the -s option (open several diffs in one winmerge window) to work in this scheme? http://stackoverflow.com/questions/255202/how-do-i-view-git-diff-output-with-visual-diff-program/949242#949242 Comment by Carlos Rendon on How do I view 'git diff' output with visual diff program? Carlos Rendon 2009-08-19T16:52:41Z 2009-08-19T16:52:41Z I had to escape the $, for $LOCAL and $REMOTE to prevent them from becoming &quot;&quot; and &quot;&quot;. I would edit to say git config --globla difftool.winmerge.cmd &quot;winmerge.sh \&quot;\$LOCAL\&quot; \&quot;\$REMOTE\&quot;&quot; http://stackoverflow.com/questions/1247047/transform-arbitrary-sql-select-topx-to-a-select-count/1247070#1247070 Comment by Carlos Rendon on Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)? Carlos Rendon 2009-08-09T16:55:23Z 2009-08-09T16:55:23Z @Shannon thanks for the comprehensive edit http://stackoverflow.com/questions/1247047/transform-arbitrary-sql-select-topx-to-a-select-count/1247070#1247070 Comment by Carlos Rendon on Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)? Carlos Rendon 2009-08-07T22:30:59Z 2009-08-07T22:30:59Z But what about the performance? Doesn't this require the DB to run the big query that I wanted to avoid in the first place with TOP(X) http://stackoverflow.com/questions/1247047/transform-arbitrary-sql-select-topx-to-a-select-count/1247070#1247070 Comment by Carlos Rendon on Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)? Carlos Rendon 2009-08-07T22:24:07Z 2009-08-07T22:24:07Z @Beth, thanks! that was my problem http://stackoverflow.com/questions/1247047/transform-arbitrary-sql-select-topx-to-a-select-count/1247070#1247070 Comment by Carlos Rendon on Transform arbitrary SQL SELECT TOP(x) to a SELECT COUNT(*)? Carlos Rendon 2009-08-07T21:53:33Z 2009-08-07T21:53:33Z @KM I added code to the post