User ramanman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T06:51:26Zhttp://stackoverflow.com/feeds/user/11093http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/179904/what-is-matlab-good-for-why-is-it-so-used-by-universities-when-is-it-better-tha/181491#1814911Answer by ramanman for What is MATLAB good for? Why is it so used by universities? When is it better than Python?ramanman2008-10-08T05:52:33Z2009-10-13T23:46:03Z<p>MATLAB WAS a wrapper around commonly available libraries.
And in many cases it still is. When you get to larger
datasets, it has many additional optimizations, including
examining and special casing common problems (reducing to
sparse matrices where useful, for example), and handling
edge cases. Often, you can submit a problem in a standard
form to a general function, and it will determine the best
underlying algorithm to use based on your data. For small
N, all algorithms are fast, but MATLAB makes determining the
optimal algorithm a non-issue.</p>
<p>This is written by someone who hates MATLAB, and has tried
to replace it due to integration issues. From your
question, you mention getting MATLAB 5 and using it for a
course. At that level, you might want to look at
<a href="http://www.gnu.org/software/octave/" rel="nofollow">Octave</a>, an open source implementation with the same
syntax. I'm guessing it is up to MATLAB 5 levels by now (I
only play around with it). That should allow you to "pass
your exam". For bare MATLAB functionality it seems to be
close. It is lacking in the toolbox support (which, again,
mostly serves to reformulate the function calls to forms
familiar to engineers in the field and selects the right
underlying algorithm to use).</p>
http://stackoverflow.com/questions/1430093/how-to-concisely-concatenate-strings-in-tcl/1433132#14331321Answer by ramanman for How to concisely concatenate strings in Tcl?ramanman2009-09-16T13:56:01Z2009-09-16T13:56:01Z<p>If you are doing this many times, in a loop, or separated by some intermediate code, you might also consider:</p>
<pre><code>set result ""
append result [myFoo $arg]
append result [myBar $arg]
append result [myBaz $arg]
</code></pre>
http://stackoverflow.com/questions/852157/in-tcl-how-do-i-make-a-variable-use-the-value-of-another-variable/853849#8538491Answer by ramanman for In TCL, How do I make a variable use the value of another variableramanman2009-05-12T17:13:04Z2009-05-12T17:13:04Z<p>If you must have the list defined as you have it, you can also use the subst command, which will perform the substitution that the curly braces are preventing:</p>
<pre><code>subst $confCmds
</code></pre>
http://stackoverflow.com/questions/847329/how-to-set-default-values-for-tcl-variables/848584#8485841Answer by ramanman for How to set default values for Tcl variables?ramanman2009-05-11T15:14:14Z2009-05-11T15:14:14Z<p>Alternatively you can use something like the cmdline package from tcllib. This allows you to set up defaults for binary flags and name/value arguments, and give them descriptions so that a formatted help message can be displayed. For example, if you have a program that requires an input filename, and optionally an output filename and a binary option to compress the output, you might use something like:</p>
<pre><code>package require cmdline
set sUsage "Here you put a description of what your program does"
set sOptions {
{inputfile.arg "" "Input file name - this is required"}
{outputfile.arg "out.txt" "Output file name, if not given, out.txt will be used"}
{compressoutput "0" "Binary flag to indicate whether the output file will be compressed"}
}
array set options [::cmdline::getoptions argv $sOptions $sUsage]
if {$options(inputfile) == ""} {puts "[::cmdline::usage $sOptions $sUsage]";exit}
</code></pre>
<p>The .arg suffix indicates this is a name/value pair argument, if that is not listed, it will assume it is a binary flag.</p>
http://stackoverflow.com/questions/792184/portable-mysql-for-development/792224#7922241Answer by ramanman for portable mysql for developmentramanman2009-04-27T04:16:13Z2009-04-27T04:16:13Z<p>This depends on what you really want to do. </p>
<p>If you just care about the table structure, your build process probably already has some .sql files that get executed to set up a new database. Just instal MySQL on your laptop, and set it up from the same .sql files. If your build process doesn't have the complete database schema in some file (version controlled, of course), that is the first step. At that point, you can make DB schema changes while disconnected, and just have to diff those .sql files to see what has changed.</p>
<p>If you only care about getting schema + data from the desktop to the laptop when you go offline, install MySQL on the laptop, and then follow any of the standard backup/restore procedures, backing up your desktop, and restoring on your laptop. Then each session on your laptop, you'll have the latest data and schemas from the desktop. You could reverse the process if you change the schemas or add data you care about while on the laptop.</p>
<p>If you are intending to sync up the data and the structure between your laptop and desktop, you might look at setting up replication. Both MySQL servers would keep logs, and when they contact each other they process the logs to reconcile differences. </p>
<p>And, if you don't want to bother with installing and maintaining a second instance of the database on the laptop, you might want to think about abstracting the database layer. Most languages have bindings for an in-memory database like SQLite or Hypersonic or the like. If you aren't doing incredibly complex stuff with the database that would lead to lots of vendor specific hacks, it should be easy to support one of the in-memory databases just to do some development on the laptop and have a database available. Even if you are doing complicated things, if you are using a framework, many of them support an in-memory database out of the box, if only to have something available for demos and example code.</p>
<p>So, it really depends on exactly what you need - anything from full two-way automated syncing to some manual, ad-hoc syncing, to just needing a database, any database available for the program to run.</p>
http://stackoverflow.com/questions/99681/why-wont-tcl-die/100136#1001364Answer by ramanman for Why won't Tcl die?ramanman2008-09-19T06:58:29Z2009-02-19T08:36:02Z<p>So, your example is to compute a factorial, and name your function "power"? Interesting. As for decrementing, "incr p -1" is perhaps better here, if the number of "tokens" is a concern.</p>
<p>As for why Tcl won't die - it just works. I use Tcl pretty extensively, and it is a very consistent language. 12 syntax rules is all you have to learn, and a relatively small number of built-in commands. It is very natural to prototype in Tcl, and move parts to C as needed. As noted in other comments, Tk is a very nice and flexible toolkit, and at the time it was in widespread use, it was perhaps the best multi-platform GUI toolkit, so there is a lot of support for it. </p>
<p>There are a lot of options for interfacing with existing code. For example, you can use SWIG to generate Tcl bindings for an extension, you can use critcl to compile C code (usually dynamically generated) within your script and then call it, you can use ddl, ffidl or others to call non-tcl aware library functions without any binding code. With TclBlend and Jacl you can call java code, or embed a scripting language in Java code. Twapi lets you call the Windows API functions. </p>
<p>It is easy to embed as a scripting language in a C program. It is easy to strip it down and add functions to create a domain specific language to drive external libraries. It is easy to use sdx or starkit or freewrap to generate a single binary executable, with all package extensions included with your application scripts in a virtual file system. Under Linux now, there are a lot of FUSE extensions that allow all kinds of cool file system extensions without having to get into kernel hacking. </p>
<p>Not that other dynamic language don't have many or all of these, but Tcl has been around for quite a while, is quite stable, works, and has a very helpful user community. There just isn't a reason for it die.</p>
http://stackoverflow.com/questions/429386/tcl-recursively-search-subdirectories-to-source-all-tcl-files/430711#4307113Answer by ramanman for TCL: Recursively search subdirectories to source all .tcl files ramanman2009-01-10T07:41:22Z2009-01-10T07:41:22Z<p>Perhaps a little more platform independent and using builtins commands instead of piping to a process:</p>
<pre><code>foreach script [glob [file join $basepath folderA *.tcl]] {
source $script
}
</code></pre>
<p>Repeat for folderB. </p>
<p>If you have more stringent selection criteria, and don't worry about running on any other platforms, using find may be more flexible.</p>
http://stackoverflow.com/questions/373852/ldap-authentication-using-cgitcl/375404#3754041Answer by ramanman for LDAP Authentication using CGI+TCLramanman2008-12-17T17:51:06Z2008-12-17T17:51:06Z<p>Here is an example that will connect to an ldap server and retrieve all of the info ldap has about an email address:</p>
<pre><code>package require ldap
set sEmailAddress "user@example.com"
set handle [::ldap::connect example.com 3268]
ldap::bind $handle
set result [::ldap::search $handle "dc=example,dc=com" "(mail=$sEmailAddress)" {sAMAccountName}]
foreach {object attributes} $result {
foreach {name val} $attributes {
puts "$name\t$val"
}
}
</code></pre>
http://stackoverflow.com/questions/253426/does-tcl-have-some-concept-of-function-pointers/255441#2554412Answer by ramanman for Does TCL have some concept of function pointers?ramanman2008-11-01T02:54:00Z2008-11-01T02:54:00Z<p>A slightly expanded example of what was listed above that might illustrate the Strategy Pattern more clearly:</p>
<pre><code>proc PrintToPDF {document} {
<snip logic>
}
proc PrintToScreen {document} {
<snip logic>
}
proc PrintToPrinter {document} {
<snip logic>
}
set document "my cool formatted document here"
set printMethod "printer"
switch -- $printMethod {
"printer" {
set pMethodName "PrintToPrinter"
}
"pdf" {
set pMethodName "PrintToScreen"
}
"screen" {
set pMethodName "PrintToPDF"
}
}
$pMethodName $document
</code></pre>
http://stackoverflow.com/questions/160608/how-to-do-a-git-export-like-svn-export/160819#1608190Answer by ramanman for How to do a "git export" (like "svn export")ramanman2008-10-02T03:48:05Z2008-10-02T03:48:05Z<p>Just for posterity - as I'm also going through a process of being an SVN user attempting to get up to speed on git, this is a pretty good <a href="http://git.or.cz/course/svn.html" rel="nofollow">quick reference on SVN-Git command</a> analogues.</p>
http://stackoverflow.com/questions/160633/why-do-we-still-program-with-flat-files/160798#1607980Answer by ramanman for Why do we still program with flat files?ramanman2008-10-02T03:37:54Z2008-10-02T03:37:54Z<p>I think another aspect of this is that the code is what is important. It is what is going to be executed. For example, in your UML example, I would think rather than having UML (presumably created in some editor, not directly related to the "code") included in your "source blob" would be almost useless. Much better would be to have the UML generated directly from your code, so it describes the exact state the code is in as a tool for understanding the code, rather than as a reminder of what the code should have been. </p>
<p>We've been doing this for years regarding automated doc tools. While the actual programmer generated comments in the code might get out of sync with the code, tools like JavaDoc and the like faithfully represent the methods on an object, return types, arguments, etc. They represent them as they actually exist,not as some artifact that came out of endless design meetings. </p>
<p>It seems to me that if you could arbitrarily add random artifacts to some "source blob", these would likely be out of date and less than useful right away. If you can generate such artifacts directly from the code, then the small effort to get your build process to do so is vastly better than the previously mentioned pitfalls of moving away from plain text source files. </p>
<p>Related to this, an <a href="http://www.spinellis.gr/pubs/jrnl/2003-IEEESW-umlgraph/html/article.html" rel="nofollow">explanation of why you'd want to use a plain-text UML tool</a> (<a href="http://www.umlgraph.org/" rel="nofollow">UMLGraph</a>) seems to apply nearly equally as well to why you want plain-text source files.</p>
http://stackoverflow.com/questions/118054/does-anyone-have-an-example-of-a-user-interface-for-creating-a-sql-where-clause/160758#1607580Answer by ramanman for Does anyone have an example of a User Interface for creating a SQL Where clause?ramanman2008-10-02T03:19:03Z2008-10-02T03:19:03Z<p>It is kind of specific to its domain, but <a href="http://f-spot.org" rel="nofollow">f-spot</a> has a nice way of doing this. It is photo management software, and if you click on one of the tags to find pictures by tag, it displays a bar across the top of your search results. You then can drag and drop tags onto that bar, and right click to select negation, and can drag the tags around in the bar to group into and and or clauses. I'm not sure how well that scales for tons of tags (or non-enumerated conditions), but it is dead simple to figure out and nicely interactive.</p>
http://stackoverflow.com/questions/135361/subversion-and-shared-files-across-repositories-projects/136044#1360440Answer by ramanman for Subversion and shared files across repositories/projects?ramanman2008-09-25T20:57:07Z2008-09-25T20:57:07Z<p>You don't mention what language or build tool you are using, but for Java projects, Maven may be worth looking into. One of features is that is essentially extends ant to allow you to pull in external dependencies. That relieves one of your concerns about having to create, maintain and label a meta-project. It also allows you to either pull from HEAD of the external project, or pull from a given tag, which relieves one of the concerns by a previous poster about sharing common files between projects and inadvertently causing breakage, because you can control when each project uses a newer version of the shared files independently.</p>
http://stackoverflow.com/questions/131196/convert-console-exe-to-dll-in-c/131543#1315431Answer by ramanman for Convert console exe to dll in Cramanman2008-09-25T05:00:07Z2008-09-25T05:00:07Z<p>You don't mention what your toolchain is, but if you configure gcc in Windows, you can use the normal config;make;make install to just compile sox. In the process, it will create a dll file, and the console app. Or, you can just specify the make target to only make the dll. This will compile a windows native library that only depends on the MS C runtime dll, and you can use this in your own app.</p>