User Jason Sundram - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:27:31Z http://stackoverflow.com/feeds/user/2683 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1746210/free-net-2-0-cover-flow-user-control 0 Free .NET 2.0 Cover Flow User Control Jason Sundram 2009-11-17T02:24:51Z 2009-11-17T02:24:51Z <p>I'm looking for a free User Control that provides functionality similar to that in Apple's Cover Flow. I'm aware of <a href="http://www.codeplex.com/fluidkit" rel="nofollow">FluidKit</a>, but I want something that targets .NET 2.0 for cross-platform compatibility with Mono.</p> <p>I've also found <a href="http://www.componentdesigns.com/products/indexcards3d.asp?b=1" rel="nofollow">IndexCards</a>, but it costs money, and I want to make the source of my project freely available, so I can't use it.</p> <p>Does a free, .NET 2.0 Cover Flow exist?</p> http://stackoverflow.com/questions/1527689/exit-from-ipython 2 exit from ipython Jason Sundram 2009-10-06T19:45:21Z 2009-10-08T18:47:14Z <p>I like IPython a lot for working with the python interpreter. However, I continually find myself typing <code>exit</code> to exit, and get prompted "Type exit() to exit." </p> <p>I know I can type Ctrl-D to exit, but is there a way I can type <code>exit</code> without parentheses and get IPython to exit? </p> <p><strong>Update</strong>: Thanks to <a href="http://stackoverflow.com/users/17160/nosklo">nosklo</a>, this can be easily done by adding the following line to the main() function in your <code>ipy_user_conf.py</code>:</p> <pre><code># type exit to exit ip.ex("type(exit).__repr__ = lambda s: setattr(s.shell, 'exit_now', True) or ''") </code></pre> http://stackoverflow.com/questions/1490385/good-quality-c-code/1490405#1490405 5 Answer by Jason Sundram for Good Quality C# code Jason Sundram 2009-09-29T03:12:32Z 2009-09-29T03:12:32Z <p>Scott Hanselman has a great series, "<a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code" rel="nofollow">The Weekly Source Code</a>" which are well worth a read.</p> http://stackoverflow.com/questions/1048133/learning-from-open-source-code/1220497#1220497 0 Answer by Jason Sundram for learning from open source code Jason Sundram 2009-08-03T02:46:12Z 2009-08-03T02:46:12Z <p>Scott Hanselman has a series on <a href="http://www.hanselman.com/blog/" rel="nofollow">his blog</a> called <a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code" rel="nofollow">The Weekly Source Code</a> which is worth checking out.</p> http://stackoverflow.com/questions/1146579/why-would-i-use-recursion-over-a-loop/1146591#1146591 5 Answer by Jason Sundram for why would I use recursion over a loop? Jason Sundram 2009-07-18T03:01:10Z 2009-07-18T03:01:10Z <p>I agree -- the standard factorial example is a terrible example of when to use recursion. Totally unnecessary, and slower. </p> <p><a href="http://en.wikipedia.org/wiki/Tree%5Ftraversal" rel="nofollow">Tree traversal algorithms</a>, however, are often much more elegant when written recursively.</p> http://stackoverflow.com/questions/309485/c-sanitize-file-name 7 C# Sanitize File Name Jason Sundram 2008-11-21T17:04:40Z 2009-05-11T08:52:03Z <p>I recently have been moving a bunch of MP3s from various locations into a repository. I had been constructing the new file names using the ID3 tags (thanks, TagLib-Sharp!), and I noticed that I was getting a System.NotSupportedException: "The given path's format is not supported." This was generated by either File.Copy() or Directory.CreateDirectory().</p> <p>It didn't take long to realize that my file names needed to be sanitized. So I did the obvious thing:</p> <pre><code>public static string SanitizePath_(string path, char replaceChar) { string dir = Path.GetDirectoryName(path); foreach (char c in Path.GetInvalidPathChars()) dir = dir.Replace(c, replaceChar); string name = Path.GetFileName(path); foreach (char c in Path.GetInvalidFileNameChars()) name = name.Replace(c, replaceChar); return dir + name; } </code></pre> <p>To my surprise, I continued to get exceptions. It turned out that ':' is not in the set of Path.GetInvalidPathChars(), because it is valid in a path root. I suppose that makes sense - but this has to be a pretty common problem. Does anyone have some short code that sanitizes a path? The most thorough I've come up with this, but it feels like it is probably overkill.</p> <pre><code> // replaces invalid characters with replaceChar public static string SanitizePath(string path, char replaceChar) { // construct a list of characters that can't show up in filenames. // need to do this because ":" is not in InvalidPathChars if (_BadChars == null) { _BadChars = new List&lt;char&gt;(Path.GetInvalidFileNameChars()); _BadChars.AddRange(Path.GetInvalidPathChars()); _BadChars = Utility.GetUnique&lt;char&gt;(_BadChars); } // remove root string root = Path.GetPathRoot(path); path = path.Remove(0, root.Length); // split on the directory separator character. Need to do this // because the separator is not valid in a filename. List&lt;string&gt; parts = new List&lt;string&gt;(path.Split(new char[]{Path.DirectorySeparatorChar})); // check each part to make sure it is valid. for (int i = 0; i &lt; parts.Count; i++) { string part = parts[i]; foreach (char c in _BadChars) { part = part.Replace(c, replaceChar); } parts[i] = part; } return root + Utility.Join(parts, Path.DirectorySeparatorChar.ToString()); } </code></pre> <p>Any improvements to make this function faster and less baroque would be much appreciated.</p> http://stackoverflow.com/questions/677861/link-error-with-cocotron/770498#770498 1 Answer by Jason Sundram for Link error with Cocotron Jason Sundram 2009-04-20T23:38:16Z 2009-04-20T23:38:16Z <p>Update: There were some compiler updates in the Cocotron repository which fix this issue. The the install script has been updated to pick these up and the new version is here:</p> <p><a href="http://cocotron.org/Tools/Downloads/InstallCDT-2009-04-17.zip" rel="nofollow">http://cocotron.org/Tools/Downloads/InstallCDT-2009-04-17.zip</a></p> <p>Before using this, be sure to delete /Developer/Cocotron/1.0/Downloads/gcc-4.3.1.tar.bz2 or it won't pick up the new source. Make sure to specify Linux i386 when reinstalling.</p> <p>i.e. <code>sudo ./install.sh Linux i386</code></p> <p>Thanks to <a href="http://stackoverflow.com/users/28973/christopher-lloyd">Christopher Lloyd</a> for the info above, and for emailing me the fix.</p> http://stackoverflow.com/questions/677861/link-error-with-cocotron 0 Link error with Cocotron Jason Sundram 2009-03-24T15:17:11Z 2009-04-20T23:38:16Z <p>I've recently built a linux platform interface for Cocotron, and was able to build the Foundation framework with no errors.</p> <p>However, when linking my objective-C project, I get a linker error:</p> <p>/Developer/Cocotron/1.0/Linux/i386/Frameworks/Foundation.framework//libFoundation.so: undefined reference to `__gnu_objc_personality_v0'</p> <p>I've done a bit of googling, but haven't found anything all that helpful. </p> <p>Here's my ld command line (simplified a bit for readability):</p> <pre><code>Ld /Users/me/MyProject/build/Linux/Release/ENCLAnalyzer normal i386 cd /Users/me/MyProject /Developer/Cocotron/1.0/Linux/i386/gcc-4.3.1/bin/i386-ubuntu-linux-gcc -arch i386 -L/Users/me/MyProject/build/Linux/Release -L../../frameworks/Shared/FFmpeg/Linux/lib -L/Developer/Cocotron/1.0/PlatformInterfaces/i386-ubuntu-linux/lib -L/Developer/Cocotron/1.0/PlatformInterfaces/i386-ubuntu-linux/intel/mkl/9.0/lib/32 -L/Developer/Cocotron/1.0/PlatformInterfaces/i386-ubuntu-linux/intel/ipp/5.1/ia32/sharedlib -L/Users/me/frameworks/Shared/FFmpeg/Linux/lib -F/Users/me/MyProject/build/Linux/Release -F/Users/me/frameworks/Shared -F/Developer/Cocotron/1.0/Linux/i386/Frameworks -F/Users/me/frameworks/OtherProject/Linux -filelist "/Users/me/MyProject/build/Linux/MyProject.build/Release/MyProject Linux.build/Objects-normal/i386/MyProject.LinkFileList" -Wl,-rpath-link,/Developer/Cocotron/1.0/PlatformInterfaces/i386-ubuntu-linux/lib -Wl,-rpath-link,../../frameworks/Shared/FFmpeg/Linux/lib -Wl,-rpath-link,/Developer/Cocotron/1.0/PlatformInterfaces/i386-ubuntu-linux/intel/ipp/5.1/ia32/sharedlib -Wl,-rpath-link,/Developer/Cocotron/1.0/PlatformInterfaces/i386-ubuntu-linux/intel/mkl/9.0/lib/32 -Wl,-rpath-link,/Developer/Cocotron/1.0/Linux/i386/Frameworks/Foundation.framework -framework Foundation -framework MyFramework1 -framework MyFramework2 -framework MyFramework3 -o /Users/me/MyProject/build/Linux/Release/MyProject </code></pre> <p>I have a feeling that the foundation project needs to link to a library that it isn't, or that maybe it is linking to the wrong version of some library. But I'm not sure.</p> <p>Any help would be much appreciated.</p> http://stackoverflow.com/questions/540427/c-to-python-via-swig-cant-get-void-parameters-to-hold-their-value 4 C to Python via SWIG: can't get void** parameters to hold their value Jason Sundram 2009-02-12T08:04:16Z 2009-02-12T22:13:19Z <p>I have a C interface that looks like this (simplified):</p> <pre><code>extern bool Operation(void ** ppData); extern float GetFieldValue(void* pData); extern void Cleanup(p); </code></pre> <p>which is used as follows:</p> <pre><code>void * p = NULL; float theAnswer = 0.0f; if (Operation(&amp;p)) { theAnswer = GetFieldValue(p); Cleanup(p); } </code></pre> <p>You'll note that Operation() allocates the buffer p, that GetFieldValue queries p, and that Cleanup frees p. I don't have any control over the C interface -- that code is widely used elsewhere.</p> <p>I'd like to call this code from Python via <a href="http://www.swig.org/" rel="nofollow">SWIG</a>, but I was unable to find any good examples of how to pass a pointer to a pointer -- and retrieve its value.</p> <p>I think the correct way to do this is by use of typemaps, so I defined an interface that would automatically dereference p for me on the C side:</p> <pre><code>%typemap(in) void** { $1 = (void**)&amp;($input); } </code></pre> <p>However, I was unable to get the following python code to work:</p> <pre><code>import test p = None theAnswer = 0.0f if test.Operation(p): theAnswer = test.GetFieldValue(p) test.Cleanup(p) </code></pre> <p>After calling test.Operation(), p always kept its initial value of None. </p> <p>Any help with figuring out the correct way to do this in SWIG would be much appreciated. Otherwise, I'm likely to just write a C++ wrapper around the C code that stops Python from having to deal with the pointer. And then wrap <em>that</em> wrapper with SWIG. Somebody stop me!</p> <p>Edit:</p> <p>Thanks to <a href="http://stackoverflow.com/users/7161/jorenko">Jorenko</a>, I now have the following SWIG interface:</p> <pre><code>% module Test %typemap (in,numinputs=0) void** (void *temp) { $1 = &amp;temp; } %typemap (argout) void** { PyObject *obj = PyCObject_FromVoidPtr(*$1, Cleanup); $result = PyTuple_Pack(2, $result, obj); } %{ extern bool Operation(void ** ppData); extern float GetFieldValue(void *p); extern void Cleanup(void *p); %} %inline %{ float gfv(void *p){ return GetFieldValue(p);} %} %typemap (in) void* { if (PyCObject_Check($input)) { $1 = PyCObject_AsVoidPtr($input); } } </code></pre> <p>The python code that uses this SWIG interface is as follows:</p> <pre><code>import test success, p = test.Operation() if success: f = test.GetFieldValue(p) # This doesn't work f = test.gvp(p) # This works! test.Cleanup(p) </code></pre> <p>Oddly, in the python code, test.GetFieldValue(p) returns gibberish, but test.gfv(p) returns the correct value. I've inserting debugging code into the typemap for void*, and both have the same value of p! The call Any ideas about that?</p> http://stackoverflow.com/questions/38461/what-can-software-developers-do-to-be-more-green/540559#540559 3 Answer by Jason Sundram for What can software developers do to be more "green"? Jason Sundram 2009-02-12T09:01:52Z 2009-02-12T09:01:52Z <p>Telecommute. Or live within walking/biking distance of work. If you drive 45 minutes to work, how much do you really save by undervolting your processor?</p> http://stackoverflow.com/questions/303248/c-winforms-what-is-the-proper-way-to-load-up-a-listbox/303268#303268 4 Answer by Jason Sundram for C# - WinForms - What is the proper way to load up a ListBox? Jason Sundram 2008-11-19T20:35:49Z 2008-11-19T20:35:49Z <p>Lets assume your data type is called MyDataType. Implement ToString() on that datatype to determine the display text. e.g.:</p> <pre><code>class MyDataType { public string ToString() { //return the text you want to display } } </code></pre> <p>Then you can take a list consisting of your datatype and cram it into the ListBox via AddRange() as follows:</p> <pre><code>ListBox l; List&lt;MyDataType&gt; myItems = new List&lt;MyDataType&gt;(); // populate this however you like l.AddRange(myItems.ToArray()); </code></pre> <p>Let me know if you need more help - it would help to know what datatype you are trying to display in the listbox.</p> http://stackoverflow.com/questions/294468/note-onset-detection/296679#296679 1 Answer by Jason Sundram for Note onset detection Jason Sundram 2008-11-17T19:56:26Z 2008-11-17T19:56:26Z <p>You should look at <a href="http://www.jyu.fi/hum/laitokset/musiikki/en/research/coe/materials/mirtoolbox" rel="nofollow">MIRToolbox</a> - it is written for Matlab, and has an onset detector built in - it works pretty well. The source code is GPL'd, so you can implement the algorithm in whatever language works for you. What language is your production code going to use?</p> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array 4 Puzzle: Find the most common entry in an array Jason Sundram 2008-11-10T17:02:42Z 2008-11-12T22:37:20Z <p>You are given a 32-bit unsigned integer array with length up to 2<sup>32</sup>, with the property that more than half of the entries in the array are equal to N, for some 32-bit unsigned integer N. Find N looking at each number in the array only once and using at most 2 kB of memory.</p> <p>Your solution must be deterministic, and guaranteed to find N.</p> http://stackoverflow.com/questions/282503/propertygrid-getting-propertyvaluechanged-notifications-from-a-collectioneditor 0 PropertyGrid: getting PropertyValueChanged notifications from a CollectionEditor Jason Sundram 2008-11-11T23:28:27Z 2008-11-12T05:23:10Z <p>The PropertyGrid control is very useful for editing objects at run-time. I'm using it as follows:</p> <pre><code> Form form = new Form(); form.Parent = this; form.Text = "Editing MyMemberVariable"; PropertyGrid p = new PropertyGrid(); p.Parent = form; p.Dock = DockStyle.Fill; p.SelectedObject = _MyMemberVariable; p.PropertyValueChanged += delegate(object s, PropertyValueChangedEventArgs args) { _MyMemberVariable.Invalidate(); }; form.Show(); </code></pre> <p>As you can see, I'm using the PropertyValueChanged notification to figure out when to update _MyMemberVariable. However, _MyMemberVariable is a class that I didn't write, and one of its members is a Collection type. The PropertyGrid calls the Collection Editor to edit this type. However, when the Collection Editor is closed, I do not get a PropertyValueChanged notification.</p> <p>Obviously, I could work around this problem by using ShowDialog() and invalidating _MyMemberVariable after the dialog is closed. </p> <p>But I'd like to actually get PropertyValueChanged events to fire when collections have been edited. Is there a way to do that without modifying _MyMemberVariable (I don't have access to its source code)? </p> http://stackoverflow.com/questions/90715/what-are-the-best-programming-puzzles-you-came-across/278493#278493 0 Answer by Jason Sundram for What are the best programming puzzles you came across? Jason Sundram 2008-11-10T17:05:22Z 2008-11-10T17:05:22Z <p><a href="http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array">Find the most common entry in an array</a></p> http://stackoverflow.com/questions/271464/text-alignment-on-ownerdraw-tooltip-in-c-net 0 Text Alignment on OwnerDraw Tooltip in C# / .NET Jason Sundram 2008-11-07T07:42:31Z 2008-11-09T20:40:04Z <p>I have a multiline text string (e.g. "Stuff\nMore Stuff\nYet More Stuff"), and I want to paint it, along with a bitmap into a tooltip. Since I am painting the bitmap, I need to set OwnerDraw to true, which I am doing. I am also handling the Popup event, so I can size the tooltip to be large enough to hold the text and the bitmap.</p> <p>I am calling e.DrawBackground and e.DrawBorder(), and then painting my bitmap on the left side of the tooltip area. </p> <p>Is there a set of flags I can pass to e.DrawText() in order to left-align the text, but to offset it so that it doesn't get painted over my bitmap? Or do I need to custom draw all the text as well (which will probably involve splitting the string on newlines, etc)?</p> <p>UPDATED: The final code looks like this:</p> <pre><code>private void _ItemTip_Draw(object sender, DrawToolTipEventArgs e) { e.DrawBackground(); e.DrawBorder(); // Reserve a square of size e.Bounds.Height x e.Bounds.Height // for the image. Keep a margin around it so that it looks good. int margin = 2; Image i = _ItemTip.Tag as Image; if (i != null) { int side = e.Bounds.Height - 2 * margin; e.Graphics.DrawImage(i, new Rectangle(margin, margin, side, side)); } // Construct bounding rectangle for text (don't want to paint it over the image). int textOffset = e.Bounds.Height + 2 * margin; RectangleF rText = e.Bounds; rText.Offset(textOffset, 0); rText.Width -= textOffset; e.Graphics.DrawString(e.ToolTipText, e.Font, Brushes.Black, rText); } </code></pre> http://stackoverflow.com/questions/272594/what-are-your-favorite-programming-magazines/272646#272646 0 Answer by Jason Sundram for What are your favorite programming magazines? Jason Sundram 2008-11-07T16:37:40Z 2008-11-07T16:37:40Z <p>When there was a print edition, I used to really enjoy <a href="http://www.acmqueue.org/" rel="nofollow">ACM Queue</a> (you can still read it online). Now I read <a href="http://cacm.acm.org/communications?pageIndex=1" rel="nofollow">Communications of the ACM</a> - very informative.</p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/271471#271471 4 Answer by Jason Sundram for What is the best comment in source code you have ever encountered? Jason Sundram 2008-11-07T07:48:17Z 2008-11-07T07:48:17Z <p>I didn't encounter this firsthand, but it makes for a good story (see explanation in my comment):</p> <pre><code>#define MSGTAG_B33R 0x723 /* RIPLVB */ </code></pre> http://stackoverflow.com/questions/3553/one-piece-of-advice/241739#241739 3 Answer by Jason Sundram for One piece of advice Jason Sundram 2008-10-27T23:42:27Z 2008-10-27T23:42:27Z <p>Remember Hofstadter's Law: double that estimate.</p> http://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/240684#240684 1 Answer by Jason Sundram for Worst "muscle memory" keyboard shortcut? Jason Sundram 2008-10-27T17:15:30Z 2008-10-27T17:15:30Z <p>Ctrl-X, S. In Emacs, it saves the current buffer. In Visual Studio 2005 (with Visual Studio 6 key bindings), it cuts the current line and then saves the file.</p> http://stackoverflow.com/questions/18197/how-do-you-test-the-usability-of-your-user-interfaces/238876#238876 0 Answer by Jason Sundram for How do you test the usability of your user interfaces Jason Sundram 2008-10-27T00:54:47Z 2008-10-27T00:54:47Z <p>I'm a strong believer in what I call 3-martini usability testing. When designing a system, imagine that the person who will be using it has just had 3 martinis. </p> <p>Before handing over the system to colleagues (other programmers, quality assurance, tech support) or usability testers, an informal test with a couple of friends and a bottle of vodka (outside of work, of course) can often prove instructive.</p> http://stackoverflow.com/questions/10644/any-decent-c-profilers-out-there/231577#231577 0 Answer by Jason Sundram for Any decent C# profilers out there? Jason Sundram 2008-10-23T21:19:44Z 2008-10-23T21:19:44Z <p>I'll second <a href="http://www.red-gate.com/products/ants_profiler/index.htm" rel="nofollow">red gate's ANTS profiler</a>. I've used it to track down some really troubling performance issues and it was dead simple to use (low learning curve) and presented nice, detailed data in a way that was easy to understand. The price tag is worth it, but it isn't free ...</p> http://stackoverflow.com/questions/47204/best-free-online-computer-science-college-courses/221070#221070 0 Answer by Jason Sundram for Best free online Computer Science college courses Jason Sundram 2008-10-21T07:41:25Z 2008-10-21T07:41:25Z <p>See SEE (<a href="http://see.stanford.edu/see/courses.aspx" rel="nofollow">Stanford Engineering Everywhere</a>). Programming courses are: Methodology, Abstractions, and Paradigms. There's also some AI and Applied Math.</p> http://stackoverflow.com/questions/94333/higher-mathematics-courses-online/221064#221064 0 Answer by Jason Sundram for Higher mathematics courses online? Jason Sundram 2008-10-21T07:37:01Z 2008-10-21T07:37:01Z <p>I would definitely check out <a href="http://see.stanford.edu/see/courses.aspx" rel="nofollow">Stanford Engineering Everywhere</a> (SEE). The courses have video lectures and good materials. It's a better experience than a lot of the Open Course Ware (OCW) courses. </p> <p>There's a nice article about it <a href="http://www.tuftsdaily.com/1.782291" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220485#220485 0 Answer by Jason Sundram for What was the strangest coding standard rule that you were forced to follow? Jason Sundram 2008-10-21T01:25:35Z 2008-10-21T07:28:42Z <p>Postfixing _ to member variables. e.g.</p> <pre><code>int numberofCycles_; </code></pre> <p>This was in C++ on an open source project with a couple of developers. The main side effect was not knowing that a variable had class scope until getting to the end of the name. Not something I had thought much about before, but clearly backwards.</p> http://stackoverflow.com/questions/210068/perl-golf-print-the-powers-of-a-number 3 Perl golf: Print the powers of a number Jason Sundram 2008-10-16T20:04:36Z 2008-10-18T17:50:28Z <p>What's the shortest Perl one-liner that print out the first 9 powers of a hard-coded 2 digit decimal (say, for example, .37), each on its own line? </p> <p>The output would look something like:</p> <pre><code>1 0.37 0.1369 [etc.] </code></pre> <p>Official Perl golf rules:</p> <ol> <li>Smallest number of (key)strokes wins</li> <li>Your stroke count includes the command line</li> </ol> http://stackoverflow.com/questions/198991/recommendations-for-a-small-c-based-vector-and-matrix-library/199024#199024 0 Answer by Jason Sundram for Recommendations for a small c-based vector and matrix library. Jason Sundram 2008-10-13T21:03:17Z 2008-10-14T19:22:10Z <p>There are a lot of options at <a href="http://www.mathtools.net/C_C__/Mathematics/" rel="nofollow">Mathtools.net</a>. <a href="http://www.oonumerics.org/oon/" rel="nofollow">Object-Oriented Numerics</a> also lists some packages that might work for you. Since I'm not sure exactly what you are doing (do you need a lot of optimized linear algebra? Or will simple operations suffice?), it's hard to be more specific.</p> <p>In general, the <a href="http://www.osl.iu.edu/research/mtl/" rel="nofollow">Matrix Template Library</a> is pretty well thought-of. And if you need some serious linear algebra grunt, you should look at <a href="http://www.netlib.org/blas/faq.html" rel="nofollow">BLAS</a> and <a href="http://math.nist.gov/lapack++/" rel="nofollow">LAPACK</a>.</p> http://stackoverflow.com/questions/132092/what-are-your-favourite-matlab-octave-programming-tricks/202475#202475 7 Answer by Jason Sundram for What are your favourite MATLAB/Octave programming tricks? Jason Sundram 2008-10-14T19:20:28Z 2008-10-14T19:20:28Z <p><a href="http://www.mathworks.com/support/tech-notes/1100/1109.html" rel="nofollow">Vectorizing loops</a>. There are lots of ways to do this, and it is entertaining to look for loops in your code and see how they can be vectorized. The performance is astonishingly faster with vector operations!</p> http://stackoverflow.com/questions/132092/what-are-your-favourite-matlab-octave-programming-tricks/202418#202418 5 Answer by Jason Sundram for What are your favourite MATLAB/Octave programming tricks? Jason Sundram 2008-10-14T19:06:58Z 2008-10-14T19:12:23Z <p>Using the built-in profiler to see where the hot parts of my code are:</p> <pre><code>profile on % some lines of code profile off profile viewer </code></pre> <p>or just using the built in <code>tic</code> and <code>toc</code> to get quick timings:</p> <pre><code>tic; % some lines of code toc; </code></pre> http://stackoverflow.com/questions/202334/best-matlab-toolbox-that-implements-support-vector-regression/202392#202392 0 Answer by Jason Sundram for Best MATLAB toolbox that implements Support Vector Regression? Jason Sundram 2008-10-14T18:58:29Z 2008-10-14T18:58:29Z <p>I've used <a href="http://www.csie.ntu.edu.tw/~cjlin/libsvm/" rel="nofollow">libSVM</a>. It is pretty fast and easy, and provides some useful tools, too. There are some examples of it in use <a href="http://homepages.cae.wisc.edu/~ece539/matlab/" rel="nofollow">here</a>. The other nice thing is that there are implementations in C++ and Java, too, so if you find yourself needing to develop outside of Matlab (to turn a prototype into something speedy, for example), you will have a familiar interface to work with.</p> http://stackoverflow.com/questions/1746210/free-net-2-0-cover-flow-user-control Comment by Jason Sundram on Free .NET 2.0 Cover Flow User Control Jason Sundram 2009-11-17T02:41:44Z 2009-11-17T02:41:44Z @RCIX, no I haven't tried that, as getting a WPF control into a Windows Forms User Control seemed daunting (i.e. more than an hour's work). Is that not the case? http://stackoverflow.com/questions/1527689/exit-from-ipython/1528023#1528023 Comment by Jason Sundram on exit from ipython Jason Sundram 2009-10-08T15:01:53Z 2009-10-08T15:01:53Z @nosklo -- Thanks, that's awesome. http://stackoverflow.com/questions/1527689/exit-from-ipython/1527713#1527713 Comment by Jason Sundram on exit from ipython Jason Sundram 2009-10-06T20:02:14Z 2009-10-06T20:02:14Z Thanks, but I really want to literally type &quot;exit&quot;. Because it is stuck in muscle memory. http://stackoverflow.com/questions/276761/exposing-a-c-api-to-python/288689#288689 Comment by Jason Sundram on Exposing a C++ API to Python Jason Sundram 2009-08-27T05:52:38Z 2009-08-27T05:52:38Z Link seems broken. Here's one that works: <a href="http://pypi.python.org/pypi/Robin/1.0.1" rel="nofollow">pypi.python.org/pypi/Robin/1.0.1</a> http://stackoverflow.com/questions/512202/what-is-boost-jam-and-is-it-jam-worth-migrating-to/658630#658630 Comment by Jason Sundram on what is boost jam and is it jam worth migrating to? Jason Sundram 2009-08-06T21:32:38Z 2009-08-06T21:32:38Z +1 for CMake. http://stackoverflow.com/questions/677861/link-error-with-cocotron/677896#677896 Comment by Jason Sundram on Link error with Cocotron Jason Sundram 2009-04-13T22:00:09Z 2009-04-13T22:00:09Z Thanks -- I'm using the Cocotron compiler. http://stackoverflow.com/questions/653157/a-better-similarity-ranking-algorithm-for-variable-length-strings/653165#653165 Comment by Jason Sundram on A better similarity ranking algorithm for variable length strings Jason Sundram 2009-03-17T07:38:31Z 2009-03-17T07:38:31Z Interestingly, Simon's approach has a lot in common with approaches such as q-grams and Dice's Coefficient. http://stackoverflow.com/questions/540427/c-to-python-via-swig-cant-get-void-parameters-to-hold-their-value/541566#541566 Comment by Jason Sundram on C to Python via SWIG: can't get void** parameters to hold their value Jason Sundram 2009-02-12T22:14:43Z 2009-02-12T22:14:43Z I've updated the question with the calling code (at the bottom). Basically, I'm calling gvf and GetFieldValue() the same way. http://stackoverflow.com/questions/540427/c-to-python-via-swig-cant-get-void-parameters-to-hold-their-value/541566#541566 Comment by Jason Sundram on C to Python via SWIG: can't get void** parameters to hold their value Jason Sundram 2009-02-12T20:50:31Z 2009-02-12T20:50:31Z Sorry that last comment was really hard to read -- I've updated the question so the interface code is readable. http://stackoverflow.com/questions/540427/c-to-python-via-swig-cant-get-void-parameters-to-hold-their-value/541566#541566 Comment by Jason Sundram on C to Python via SWIG: can't get void** parameters to hold their value Jason Sundram 2009-02-12T20:40:38Z 2009-02-12T20:40:38Z Thanks -- Here's the interface (+ your stuff): % module Test %{ extern float GetFieldValue(void *p); }% %inline %{ float gfv(void *p){ return GetFieldValue(p);} %} Oddly, test.GetFieldValue(p) returns gibberish, but test.gfv(p) returns the correct value. But both have the same value of p! http://stackoverflow.com/questions/540427/c-to-python-via-swig-cant-get-void-parameters-to-hold-their-value/540507#540507 Comment by Jason Sundram on C to Python via SWIG: can't get void** parameters to hold their value Jason Sundram 2009-02-12T20:00:37Z 2009-02-12T20:00:37Z Thanks -- I'd prefer to use SWIG if I can, but if it doesn't work out, I may consider ctypes. http://stackoverflow.com/questions/540427/c-to-python-via-swig-cant-get-void-parameters-to-hold-their-value/541566#541566 Comment by Jason Sundram on C to Python via SWIG: can't get void** parameters to hold their value Jason Sundram 2009-02-12T19:50:16Z 2009-02-12T19:50:16Z Thanks -- so this is a bit weird. Without the typemap, GetFieldValue claims that p is null. With the typemap, there are no complaints, but I get back a garbage value in theAnswer. http://stackoverflow.com/questions/540427/c-to-python-via-swig-cant-get-void-parameters-to-hold-their-value/541566#541566 Comment by Jason Sundram on C to Python via SWIG: can't get void** parameters to hold their value Jason Sundram 2009-02-12T19:04:21Z 2009-02-12T19:04:21Z Thanks for the swig. test.Operation() now works, but I'm having trouble calling test.GetFieldValue(p) from the python code. Do I need a typemap for void* as well? http://stackoverflow.com/questions/3947/music-to-listen-to-while-coding/17227#17227 Comment by Jason Sundram on Music to listen to while coding Jason Sundram 2009-01-05T03:19:44Z 2009-01-05T03:19:44Z Handel's organ concertos are also pretty awesome baroque music to code to. http://stackoverflow.com/questions/309884/code-golf-number-to-words/310006#310006 Comment by Jason Sundram on Code Golf: Number to Words Jason Sundram 2008-11-21T20:38:04Z 2008-11-21T20:38:04Z nice code ... but why even try in c++? This is code golf - use the best &quot;club&quot; you can!