User MattG - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T22:09:59Zhttp://stackoverflow.com/feeds/user/23048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/523825/python-ruby-ide-windows/1715486#17154860Answer by MattG for Python/Ruby IDE (Windows)?MattG2009-11-11T14:25:17Z2009-11-11T14:25:17Z<p>I've looked into this recently as well, and both netbeans and eclipse have rudimentary python support. For whatever reason, ruby seems to have better support in these tools. If you don't mind a seperate IDE for python, you might take a look at <a href="http://www.codeplex.com/IronPythonStudio" rel="nofollow">IronPython Studio</a>. IronPython is a .net implementation of Python, and the IronPython Studio is a Visual Studio style IDE for IronPython. I haven't used it much, but it is certainly interesting. </p>
http://stackoverflow.com/questions/1707474/writing-application-for-both-unix-and-windows/1715387#17153870Answer by MattG for Writing application for both Unix and WindowsMattG2009-11-11T14:09:45Z2009-11-11T14:09:45Z<p>If it is not an option to add something that is inherently portable like python, ruby, perl, java etc. then your best option is probably to use ANSI C. One reason for C's initial popularity was it's (relatively good) portability. That said, anything that is closely tied to the OS, such as graphics, networking, etc are much less portable in C than in something like Python. You should strive to make "wrappers" for OS specific functions and keep those partitioned off from the main code. This way when it comes time to port it over, you're rewriting the wrappers, and everything else should compile without many issues.</p>
<p>All that said, it is a LOT easier to write something in Python and have it work everywhere. Plus it is more "fun" to write. So if you can avoid "interactive unix" in the future, do so.</p>
http://stackoverflow.com/questions/1490745/why-is-perl-the-best-choice-for-most-string-manipulation-tasks/1493396#14933960Answer by MattG for Why is Perl the best choice for most string manipulation tasks?MattG2009-09-29T15:45:04Z2009-09-29T15:45:04Z<p>Perl was the go-to language for a long time. The problem is it can be pretty messy and difficult to maintain (some people can write Perl that avoids this, but it is very easy to wrote ugly code). I would not tell you to avoid Perl, but many have moved on to some modern alternatives.</p>
<p>I would recommend learning one of the newer scripting languages such as Python or Ruby. Both will work very well for your needs, and can easily handle more difficult tasks later on. They're both quite nice to work in, after having written C and Perl for so long.</p>
<p>In short, Perl would be a good hammer for this nail. Python and Ruby would be nail-guns.</p>
http://stackoverflow.com/questions/1492398/how-to-use-git-for-multiple-developers/1493362#14933622Answer by MattG for How to use git for multiple developers.MattG2009-09-29T15:37:43Z2009-09-29T15:37:43Z<p>Yes, you would use clone. You also should be sure to set the sharedrepository config option:</p>
<pre><code>git config core.sharedRepository "true"
</code></pre>
<p>You should also be aware, with multiple commiters that the fetch option would let you preview the changes in the main repository, and how they would apply to you:</p>
<pre><code>git fetch
git diff origin
</code></pre>
<p>or you may want to simply see a list of files and diff each one seperately:</p>
<pre><code>git diff --name-status origin
</code></pre>
http://stackoverflow.com/questions/10426/what-is-a-good-windows-hex-editor-viewer/288638#2886385Answer by MattG for What is a good Windows hex editor / viewer?MattG2008-11-13T22:51:37Z2008-11-13T22:51:37Z<p>gvim -b file.bin</p>
<p>:%!xxd to view hex
:%!xxd -r to convert back</p>
http://stackoverflow.com/questions/288439/how-do-you-manage-your-scripts/288587#2885870Answer by MattG for How do you manage your scripts?MattG2008-11-13T22:34:49Z2008-11-13T22:34:49Z<p>General scripts go in a ~/scripts directory that is pathed.</p>
<p>Project related scripts go in a projname/tools/toolname directory or for small ones may live in the directory they're run in.</p>
<p>Documented lightly.</p>
<p>Always revision controlled. Why wouldn't you? (CVS -> SVN -> git)</p>
http://stackoverflow.com/questions/280158/should-i-learn-perl-and-why/281415#2814150Answer by MattG for Should I learn Perl, and why?MattG2008-11-11T16:35:22Z2008-11-11T21:49:35Z<p>I personally advocate Python or Ruby over Perl, but in all honesty there are still some advantages Perl has.</p>
<p>Perl has a <strong>lot</strong> of libraries on <a href="http://search.cpan.org" rel="nofollow">CPAN</a>. In most cases whatever engine you need is probably already written a few times over, and you just need to supply the glue logic. Right now CPAN lists 14618 hosted projects, compared to Python's 5093 and Ruby's 6785.</p>
<p>Perl is also a defacto standard. At this point you can almost count on Perl being everywhere, and there being a lot of people familiar with it. Many people are just now discovering Python or Ruby. They will not always be available on a system.</p>
<p>Lastly, Perl can still best both of them in many cases in performance, though its pretty close with Python.</p>
<p>That all said, Perl is not losing ground to Python and Ruby simply because they're new. There have always been new languages. It is losing ground because the newer generation are more elegant, incorporate higher level ideas in a more natural way, and are much more maintainable. Perl is a good language, but now there are better choices. You can learn Perl and then learn one of the newer ones as well. There is no reason not to know both.</p>
http://stackoverflow.com/questions/276832/how-does-a-7-or-35-pass-erase-work-why-would-one-use-these-methods/277003#2770031Answer by MattG for How does a 7- or 35-pass erase work? Why would one use these methods?MattG2008-11-10T03:30:19Z2008-11-10T03:30:19Z<p>As mentioned before, magnetic artifacts are present from the previous data on the platter.</p>
<p>In a recent issue of MaximumPC they put this to the test. They took a drive, ran it through a pass of all zeros, and hired a data recovery firm to try and recover what they could. Answer: Not one bit was recovered. Their analysis was that unless you expect the NSA to try, a zero pass is probably enough.</p>
<p>Personally, I'd run an alternating pattern or two across it.</p>
http://stackoverflow.com/questions/271716/what-should-i-do-while-im-waiting-for-the-build-the-tests-the-database-migra/272178#2721782Answer by MattG for What should I do while I'm waiting for the build / the tests / the database migrations to run?MattG2008-11-07T14:15:01Z2008-11-07T14:15:01Z<p>Ideally?</p>
<ul>
<li>Write up notes on the fixes/feature added. (Notebooks are GREAT when two years from now you need to decipher something you did.)</li>
<li>Read something that pertains to your work.</li>
<li>Check for other small errata and bugs.</li>
<li>Document (for other people) your feature/code.</li>
</ul>
<p>Realisticly:</p>
<ul>
<li>Stackoverflow</li>
<li>Slashdot</li>
<li>Lifehacker</li>
<li>Blogs</li>
</ul>
http://stackoverflow.com/questions/266019/what-would-be-the-ideal-script-language-for-parsing-text-files/269346#2693461Answer by MattG for What would be the ideal script language for parsing text files?MattG2008-11-06T16:33:20Z2008-11-06T16:33:20Z<p>Perl is the language that was made specifically for this. Noting that, I would recommend you pick up Python or Ruby, both of which are sort of a modern equivalent to Perl. Perl's syntax can be a little maddening.</p>
<p>Python is for people who appreciate a very clean language with one way to accomplish each thing.</p>
<p>Ruby is for people who like being able to do neat "tricks" and accomplish the same thing different ways.</p>
<p>Oh, and Perl was made as a replacement for scripts using awk, sed, and grep. Don't start with them.. they're really odd if you didn't know them from long ago.</p>
http://stackoverflow.com/questions/203/best-filesystem-to-use-for-desktop-linux/269092#2690925Answer by MattG for Best Filesystem to use for Desktop Linux?MattG2008-11-06T15:23:49Z2008-11-06T15:23:49Z<p>I would echo the thoughts expressed here:</p>
<ul>
<li>Ext3 is very stable, and every tool
understands it well, and if they
don't, they can still read it as
ext2. </li>
<li>Reiser had some promise, but
as pointed out the developer will
not be working on it due to "legal
issues". </li>
<li>Ext4 might be a bit far
out.. last I read the developer was
doing a trial by fire, running it on
his own system, and working out a
few bugs as he did. </li>
<li>ZFS will be
going through fuse, which is another
software layer.. not a desirable
thing for something that will affect
system perfomance so intimately.</li>
</ul>
<p>Now, if you're really eager to experiment, what I would recommend is the following:</p>
<ul>
<li>Make /boot and / either ext2 or ext3.</li>
<li>Make /home or perhaps some other non-critical partition whichever you choose.</li>
</ul>
<p>This will give you a bootable system even if the other filesystem gets hosed. It also would let you test the performance of the other filesytem in relation to ext3.</p>
<p>Good luck</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/265491#2654911Answer by MattG for Does Python have a bitfield type?MattG2008-11-05T15:30:33Z2008-11-05T15:30:33Z<p>Represent each of your values as a power of two:</p>
<pre><code>testA = 2**0
testB = 2**1
testC = 2**3
</code></pre>
<p>Then to set a value true:</p>
<pre><code>table = table | testB
</code></pre>
<p>To set a value false:</p>
<pre><code>table = table & (~testC)
</code></pre>
<p>To test for a value:</p>
<pre><code>bitfield_length = 0xff
if ((table & testB & bitfield_length) != 0):
print "Field B set"
</code></pre>
<p>Dig a little deeper into hexadecimal representation if this doesn't make sense to you. This is basically how you keep track of your boolean flags in an embedded C application as well (if you have limitted memory).</p>
http://stackoverflow.com/questions/242094/why-does-ruby-seem-to-have-fewer-projects-than-other-programming-languages/254274#2542740Answer by MattG for Why does Ruby seem to have fewer projects than other programming languages?MattG2008-10-31T17:20:17Z2008-10-31T17:20:17Z<p>I find Ruby very attractive in several ways, but it has some issues holding it back. </p>
<p>The biggest I think is that Python already covers much of the same ground, has a larger library of projects, and thusfar better performance.</p>
<p>The other main problem I've had is also the thing that keeps it so popular: Rails. I think there are a lot of people that don't even think of Ruby as a standalone language. While I appreciate that Rails is supposed to be pretty great, it is not anything I deal with, and thus I get annoyed at having to wade through so much discussion of Rails to find an answer to a question in Ruby as a standalone language.</p>
<p>One last thing that has made me skittish about it is the 'more than one way to do it' philosophy it shares with Perl. I was not a fan of that.</p>
<p>It is really a matter of their already being a few hammers around, and Ruby's main distinguishing feature that most people tout currently is Rails.</p>
http://stackoverflow.com/questions/250151/lua-as-a-general-purpose-scripting-language/253659#2536591Answer by MattG for Lua as a general-purpose scripting language?MattG2008-10-31T14:15:15Z2008-10-31T14:15:15Z<p>I think the answer about it being a "marketing" thing is probably correct, along with the lack of a large set of libraries to choose from. I would like to point out another case of this: Ruby. Ruby is meant to be a general purpose scripting language. The problem is that since Ruby on Rails has risen to be so popular, it is becoming hard to find something that is unrelated to Rails. I'm afraid Lua will suffer this as well, being popular because of a few major things using it, but never able to break free of that stigma.</p>
http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philosophical-per/241545#2415451Answer by MattG for What are the biggest differences between Python and Ruby from a philosophical perspectiveMattG2008-10-27T22:09:34Z2008-10-27T22:09:34Z<p>They're both really pretty interesting beasts that solve the same problems. Python feels a little more mature, and runs faster currently, but there is a lot of momentum in the Ruby community.</p>
<p>Ruby is very object oriented, and has lots of little tricks. It doesn't seem nearly as bad as Perl about having many ways to accomplish things, but does support the notion. There are features I miss from Ruby when writing Python.</p>
<p>Python is very simple, and powerful. It has a very large library to work with, and emphasizes the idea of only one way to accomplish something (making it easier to learn in many ways, and avoids Perl's problem of maintainability).</p>
<p>Personally I lean towards Python, but enjoy the things I've learned from Ruby as well. Either would be good to learn, and you should pobably pick the one that sounds like it suits your style better. If you liked Perl you'll love Ruby. If you liked C you'll love Python.</p>
<p>Enjoy</p>
http://stackoverflow.com/questions/220742/seething-over-msys-shell-is-it-replaceable/223103#2231030Answer by MattG for Seething over MSYS shell - is it replaceable?MattG2008-10-21T19:13:24Z2008-10-21T19:13:24Z<p>I've not used the msys stuff, but it should be enough to use something other than rxvt and run sh.exe in it. Now, if you're using control characters, you may need to be sure whatever you use supports what you need (i.e. vt100 emulation).</p>
<p>One route might be to use cygwin. I typically run cygwin with a rootless X server, and run xterm on it.. So far it has been very good and I haven't had many issues. I know arrow keys and such work just fine under it.</p>
http://stackoverflow.com/questions/216624/favorite-non-esoteric-programming-language/218718#2187180Answer by MattG for Favorite (non-esoteric) Programming LanguageMattG2008-10-20T14:54:28Z2008-10-20T14:54:28Z<p>Python...
I programmed primarily in C/C++ at work, with some Perl to facilitate the build process. Once I learned Python I haven't had as much use for Perl. I'm playing a bit with Ruby, as it has so much momentum for some good reasons.</p>
<p>Unless you're really held to a particular language, I'd recommend at least running though a tutorial on Python and Ruby.. they both have tutorials, and lots of free documentation online. </p>
http://stackoverflow.com/questions/209470/can-i-use-python-as-a-bash-replacement/210290#2102901Answer by MattG for Can I use Python as a bash replacement?MattG2008-10-16T20:58:33Z2008-10-16T20:58:33Z<p>In the beginning there was sh, sed, and awk (and find, and grep, and...). It was good. But awk can be an odd little beast and hard to remember if you don't use it often. Then the great camel created Perl. Perl was a system administrator's dream. It was like shell scripting on steroids. Text processing, including regular expressions were just part of the language. Then it got ugly... People tried to make big applications with Perl. Now, don't get me wrong, Perl can be an application, but it can (can!) look like a mess if you're not really careful. Then there is all this flat data business. It's enough to drive a programmer nuts.</p>
<p>Enter Python, Ruby, et al. These are really very good general purpose languages. They support text processing, and do it well (though perhaps not as tightly entwined in the basic core of the language). But they also scale up very well, and still have nice looking code at the end of the day. They also have developed pretty hefty communities with plenty of libraries for most anything.</p>
<p>Now, much of the negativeness towards Perl is a matter of opinion, and certainly some people can write very clean Perl, but with this many people complaining about it being too easy to create obfuscated code, you know some grain of truth is there. The question really becomes then, are you ever going to use this language for more than simple bash script replacements. If not, learn some more Perl.. it is absolutely fantastic for that. If, on the other hand, you want a language that will grow with you as you want to do more, may I suggest Python or Ruby.</p>
<p>Either way, good luck!</p>
http://stackoverflow.com/questions/208807/how-can-a-beginner-escape-tutorial-land-and-actually-get-programming/208992#20899225Answer by MattG for How can a Beginner escape tutorial-land and actually get programming?MattG2008-10-16T15:18:12Z2008-10-16T15:18:12Z<p>Really these answers are all on the mark. Get out there and go make something. It doesn't have to be a glorious, full-featured application, or even be well written. Just start. I would suggest starting with simple utilities you may need on the command line. You may already have ways of accomplishing them, but write your own. Some examples of little things I've written as I learned new languages including:</p>
<ul>
<li>A script to find duplicate files in a directory
<ul>
<li>Now make it work based off of file size</li>
<li>Now add a module that has an md5sum function, and base hits off of that</li>
</ul></li>
<li>Automate some process you perform regularly, so that it is one command
<ul>
<li>Backup specific directories</li>
</ul></li>
<li>Write a simple game or two
<ul>
<li>Hangman</li>
<li>Boggle</li>
<li>A simple version of nethack, now make the bad guys move</li>
</ul></li>
<li>And finally, write a program to look at a set of directories containing pictures and resize them, generate thumbnails, generate HTML code to present a "gallery" of each directory and upload it all to your web account.</li>
</ul>
<p>As you do each of these, also pay attention to things you might improve, and new methods you might try, such as object-orientation, less system calls and more use of libraries, etc.</p>
<p>If you go generate a lot of useful little scripts/programs you'll feel a lot more confident, and learn a lot about design. Also don't be afraid to go back and rewrite something once you learn a much better methodology.</p>
<p>Most of all, have fun and use version control (svn, git, hg)</p>
http://stackoverflow.com/questions/205308/how-to-master-regular-expressions/206152#2061522Answer by MattG for How to master Regular Expressions?MattG2008-10-15T19:49:07Z2008-10-15T19:49:07Z<p>I learned about them by learning Perl, and using it to create a configuration file parser. If you wanted to do something similar these days I would suggest Ruby, which has a similar hook for RE in it. Once I learned the basics, I found many of the tools I'd been using had great RE support, if you knew to use it. It is really very powerful.</p>
<p>I highly recommend the Regular Expressions Pocket Reference that others have mentioned. It will be much simpler to keep around to look up something quickly, as you will need to do. Not to mention that many applications have slightly different ways of implementing some parts of it (ie, whether you should have to backslash escape parenthesis).</p>
<p>If you do much text processing, I recommend learning RE. You will appreciate it.</p>
http://stackoverflow.com/questions/237/distributed-source-control-options/201506#2015063Answer by MattG for Distributed source control optionsMattG2008-10-14T14:55:46Z2008-10-14T14:55:46Z<p>I think you will find git, mercurial(hg), and bazaar all pretty good at this point. They all have major projects using them (though I think bazaar has less than the others):</p>
<ul>
<li>bazaar - Ubuntu Linux</li>
<li>git - Linux Kernel</li>
<li>Mercurial(hg) - Mozilla Firefox</li>
</ul>
<p>In looking at all the references I can find, the general feelings seem to be that git has been engineered from the ground up to be more powerful and versatile, while Mercurial has a more polished user interface and feel. Bazaar just doesn't seem to have the same traction as the other two, though there are some dedicated users. If you'd asked me a year ago, I would have told you git seemed to be a fast moving target, and rough around the edges, so avoid it. Now, I am thinking of going to git full time. The only worry I see is that there is no windows gui, and I need that for some less savvy people to pull things from the repository. I had heard about <a href="http://repo.or.cz/w/git-cheetah.git/" rel="nofollow">git-cheetah</a>, and looked into it, but the project seems to have lost all its developers, and hasn't had anything checked in since February. Mercurial, on the other hand, does have <a href="http://tortoisehg.sourceforge.net/" rel="nofollow">TortoiseHg</a> which had its last check-in <a href="http://www.bitbucket.org/tksoh/tortoisehg-crew/" rel="nofollow">2 weeks ago(unstable)</a>.</p>
<p>Git has garnered a lot of attention with <a href="http://github.com/" rel="nofollow">github</a>. Mercurial now has <a href="http://www.bitbucket.org/" rel="nofollow">bitbucket</a> to fill that void. </p>
<p>If you and your other repository users like the command line, go with git. If you have to have a gui now, Mercurial is your best bet. It may be a while before git gets a stable windows gui, but I think it will eventually happen.</p>
http://stackoverflow.com/questions/199331/is-it-worth-learning-bash-when-i-know-perl/201175#2011752Answer by MattG for Is it worth learning BASH when I know Perl?MattG2008-10-14T13:38:28Z2008-10-14T13:38:28Z<p>I'm pretty familiar with the unix command line, and all the utilities (sed, awk, grep, find..) available. My general rule of thumb is if it is a one-liner, or a for loop to catch a bunch of files and do just a few operations to them, I use bash/tcsh/zsh, else I use Python. I found awk a pain to use, and anytime things needed more than the most basic awk usage, or something script-like, it is just simpler to use a real language.</p>
<p>I used Perl for a long time, and switched pretty exclusively to Python. If you know Perl, use it. This is the sort of thing it was made for.</p>
http://stackoverflow.com/questions/112932/graphical-diff-programs-for-linux/200078#2000780Answer by MattG for Graphical DIFF programs for linuxMattG2008-10-14T05:23:33Z2008-10-14T05:23:33Z<p>I have used Meld once, which seemed very nice, and I may try more often. vimdiff works well, if you know vim well. Lastly I would mention I've found xxdiff does a reasonable job for a quick comparison. There are many diff programs out there which do a good job.</p>
http://stackoverflow.com/questions/143586/which-scripting-language-should-i-learn-after-perl/144313#1443130Answer by MattG for Which scripting language should I learn after Perl?MattG2008-09-27T19:43:38Z2008-09-27T19:43:38Z<p>I did much the same thing. I grew annoyed at Perl's oddities with data handling, and "more than one way" concept.. though perl was certainly useful. I started looking into Ruby and Python, reading a lot of articles and finally started with Python. I eventually started playing with Ruby as well, out of curiosity. My impression is that perl was good at the time, but has long since been needing a replacement. Python and Ruby both feel like much more complete and professional tools. They both seem very well laid out, and capable of the most demanding tasks. I find that I would rather write in them than anything else (C, C++, Perl, sh scripts, matlab scripts, etc.). The only downside is that as interpreted languages they do take a penalty in performance compared to a compiled sort, but honestly.. in most cases that is not a problem. </p>
<p>Between the two, I'd say its not really cut and dry. Python seems more conservative in some ways, with a larger library selection, and close attention to the one best way to do things. Ruby seems trendy, but has some very good concepts behind it, and the idea that everything is an object is great. It is annoying that Ruby does have several methods to accomplish the same thing, which Perl has taught me to fear, but it doesn't seem quite so infected with it. Performance-wise.. Python still does win, at least in all the cases I've put it to the test.. how much depends on the type of operation. But again, if performance is a concern, you should be looking at C/C++ or something.</p>
<p>I know there are some slightly more obscure things I've thought of looking at (Lua, Ocaml, haskell), but Python/Ruby is becoming popular enough that corporations will coax IT into supporting. Python and Ruby are both available at my work. I would pick Ruby or Python first, and perhaps after you're comfortable with that move to something less mainstream.</p>
<p>In either case highly recommend a book.. "Programming Python" or "The Ruby Programming Language".</p>
http://stackoverflow.com/questions/523825/python-ruby-ide-windows/523834#523834Comment by MattG on Python/Ruby IDE (Windows)?MattG2009-11-11T14:28:48Z2009-11-11T14:28:48ZI'm sorry, but most people (especially someone asking this sort of question), emacs would be considered a text editor. I use Vim for a lot of my development work and prefer it, but it is not what they're looking for. I've begun playing with the IDEs because I really don't enjoy hand-coding GUIs, and I can use IDE tools to handle that unpleasantness.http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/95483#95483Comment by MattG on What are your favorite Vim tricks?MattG2009-09-22T15:03:44Z2009-09-22T15:03:44ZAnd ctrl-r redo.. for those times you undo a little too muchhttp://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/288767#288767Comment by MattG on What are your favorite Vim tricks?MattG2009-09-22T15:01:47Z2009-09-22T15:01:47ZDon't forget '. which jumps to the last change in the file.