<br>There is no language that is &quot;uber alles&quot;.   The domain of the problem you&#39;re solving often points to the languages you might consider. <br><br>If you&#39;re working right next to the bare metal of hardware, you&#39;ll probably be working in C or C++.   Recently I learned via my job there is a rich programming environment and library suite centered around the visual basic environment for interacting with PLC&#39;s.  I never would have guessed, but it&#39;s there and it&#39;s big.  <br>
<br>If you&#39;re moving outside the realm of real-time, C &amp; C++ are still options, but I personally find working with statically typed languages a bit of a drag.  So I look more towards the &quot;scripted languages&quot; then.  Python, Perl, Ruby, etc...   I know Perl the best because that&#39;s what I had to support the most at my previous job.  But after over ten years of perl and debugging perl scripts, I believe perl does not lend itself to maintainable code very well.  It takes skill to write good perl, whereas Python seems lend itself to better code from the average joe more quickly.   But really, what drives me to the scripted languages the most is simply the rich regular-expression engines that are very easy to use.  <br>
<br>As mentioned, heavy math and statistics points in another direction, such as R, matlab, or specialized libraries in other languages.  <br><br>If I&#39;m schlepping files around and manipulating processes, then I&#39;ll do what I can in bash.  <br>
<br>And if I&#39;m writing setuid wrappers, I&#39;m in C again.   If the unpredictability of the performance impacts of garbage collectors and so forth are an issue, then of course I&#39;ll find a language that lets me turn it off and manage my own memory (such as D) or go back to C.  Actually - I&#39;d just use C.  D is cool, but not mainstream enough yet.  <br>
<br>I avoid .NET and Java as much as possible.  Visual Basic is only to be tolerated when at my place of employment and I&#39;m working with pre-existing tools.   <br><br>-Rob<br><br><br><br><br><div class="gmail_quote">On Fri, Mar 26, 2010 at 12:02 PM, r j <span dir="ltr">&lt;<a href="mailto:ronsmailbox5@gmail.com">ronsmailbox5@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">A question on languages.<br>What are your favor languages and what are your favorite ways to use them.<br>
I am a python beginner and i am working through the standard library and writing simple scripts using pattern matching. and the sys library to make a cross platform easy administration tool. Maybe a web interface later on.<br>

I also use Bash.<br><br>,Ron <br>
<br>_______________________________________________<br>
TCLUG Mailing List - Minneapolis/St. Paul, Minnesota<br>
<a href="mailto:tclug-list@mn-linux.org">tclug-list@mn-linux.org</a><br>
<a href="http://mailman.mn-linux.org/mailman/listinfo/tclug-list" target="_blank">http://mailman.mn-linux.org/mailman/listinfo/tclug-list</a><br>
<br></blockquote></div><br>