User Travis B. Hartwell - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T06:38:22Z http://stackoverflow.com/feeds/user/10873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1144259/how-to-display-autocomplete-choices-in-emacs/1144586#1144586 5 Answer by Travis B. Hartwell for How to display autocomplete choices in emacs? Travis B. Hartwell 2009-07-17T17:10:36Z 2009-07-17T17:10:36Z <p>I'd suggest the excellent package AutoComplete: <a href="http://www.emacswiki.org/emacs/AutoComplete" rel="nofollow">http://www.emacswiki.org/emacs/AutoComplete</a></p> <p>You can define custom sources for autocomplete and it seems fairly straight forward.</p> http://stackoverflow.com/questions/1112715/since-every-one-is-coding-lisp-and-erlang-now-does-that-mean-that-we-will-see-fo/1112763#1112763 1 Answer by Travis B. Hartwell for Since every one is coding Lisp and Erlang now. Does that mean that we will see forth coders in 2010? Travis B. Hartwell 2009-07-11T02:15:46Z 2009-07-11T02:15:46Z <p>If you want something Forth-like, you would much better be served by looking at the <a href="http://factorcode.org/" rel="nofollow">Factor</a> programming language. It is concatenative, like Forth, and it also has a lot of modern properties and an efficient implementation that targets multiple platforms.</p> http://stackoverflow.com/questions/1052969/is-there-any-way-to-create-a-project-file-in-emacs/1055878#1055878 2 Answer by Travis B. Hartwell for Is there any way to create a "project file" in emacs? Travis B. Hartwell 2009-06-28T21:58:15Z 2009-06-28T21:58:15Z <p>I'm actually working on a solution to this very problem. I always had a group of files I wanted to open/close at the same time, plus do things like open a magit-status window, a dired buffer, etc. I've started on my own project mode called metaproject. It's in the very early stages, but is functional enough that I'm using it for project groups at work now.</p> <p>Check it out here: <a href="http://nafai77.github.com/metaproject/" rel="nofollow">http://nafai77.github.com/metaproject/</a></p> <p>What's in git is pretty stable, though sparsely documented. I'm going to start working on it again here soon. I currently have the basics of a small plug-in architecture, so you can register custom actions that can be done on project open.</p> http://stackoverflow.com/questions/473620/how-do-you-create-a-daemon-in-python/475575#475575 0 Answer by Travis B. Hartwell for How do you create a daemon in Python? Travis B. Hartwell 2009-01-24T05:37:07Z 2009-01-24T05:37:07Z <p>The easiest way to create daemon with Python is to use the <a href="http://twistedmatrix.com/trac/" rel="nofollow">Twisted</a> event-driven framework. It handles all of the stuff necessary for daemonization for you. It uses the <a href="http://en.wikipedia.org/wiki/Reactor_pattern" rel="nofollow">Reactor Pattern</a> to handle concurrent requests.</p> http://stackoverflow.com/questions/475351/sign-of-the-times-what-are-you-reading/475561#475561 1 Answer by Travis B. Hartwell for Sign of the times: what are you reading? Travis B. Hartwell 2009-01-24T05:25:37Z 2009-01-24T05:25:37Z <p><a href="http://book.realworldhaskell.org/" rel="nofollow">Real World Haskell</a> is what I'm trying to immerse myself in at the moment.</p> http://stackoverflow.com/questions/18120/best-programming-books-in-2008/418132#418132 10 Answer by Travis B. Hartwell for Best Programming Books in 2008 Travis B. Hartwell 2009-01-06T20:58:56Z 2009-01-06T20:58:56Z <p>Easily, <a href="http://book.realworldhaskell.org/" rel="nofollow">Real World Haskell</a> would be the best programming book for 2008. It's not yet another "Learn how to use Spring + XML + Java to make Super Cool Websites" book. It's mind expanding, well written, and teaches you to do real world things in a way that proves that functional programming and Haskell in particular aren't just for academics.</p> http://stackoverflow.com/questions/234401/scm-inside-or-outside-the-ide/235049#235049 1 Answer by Travis B. Hartwell for SCM inside or outside the IDE? Travis B. Hartwell 2008-10-24T19:54:13Z 2008-10-24T19:54:13Z <p>One advantage to having the integration is in refactoring. If I renamed a class in Java (and thus the file name), your SCM integration would automatically handle the rename operation (a delete and then an add in svn, for example).</p> <p>It also is very handy to be able to say, "show me the history of this file" or whatever while you are working on it, without having to drop to Windows Explorer or the command line or whatever.</p> <p>But I like being able to have both available, honestly.</p> http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192533#192533 2 Answer by Travis B. Hartwell for In the bash script how do I know the script file name? Travis B. Hartwell 2008-10-10T18:21:14Z 2008-10-10T18:21:14Z <p>To answer <a href="http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name#192440">Chris Conway</a>, on Linux (at least) you would do this:</p> <pre><code>echo $(basename $(readlink -nf $0)) </code></pre> <p>readlink prints out the value of a symbolic link. If it isn't a symbolic link, it prints the file name. -n tells it to not print a newline. -f tells it to follow the link completely (if a symbolic link was a link to another link, it would resolve that one as well).</p> http://stackoverflow.com/questions/187550/preprocessing-source-code-as-a-part-of-a-maven-build/189299#189299 3 Answer by Travis B. Hartwell for Preprocessing source code as a part of a maven build Travis B. Hartwell 2008-10-09T21:34:14Z 2008-10-09T21:34:14Z <p>This is something that is very doable and I've done something very similar in the past.</p> <p>An example from a project of mine, where I used the antrun plug-in to execute an external program to process sources:</p> <pre><code> &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;process-sources&lt;/id&gt; &lt;phase&gt;process-sources&lt;/phase&gt; &lt;configuration&gt; &lt;tasks&gt; &lt;!-- Put the code to run the program here --&gt; &lt;/tasks&gt; &lt;/configuration&gt; &lt;goals&gt; &lt;goal&gt;run&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; </code></pre> <p>Note the tag where I indicate the phase where this is run. Documentation for the lifecycles in Maven is <a href="http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html" rel="nofollow">here</a>. Another option is to actually write your own Maven plug-in that does this. It's a little more complex, but is also doable. You will still configure it similarly to what I have documented here.</p> http://stackoverflow.com/questions/180551/is-there-an-online-system-to-support-donations-to-individuals-in-need/181473#181473 0 Answer by Travis B. Hartwell for Is there an online system to support donations to individuals in need? Travis B. Hartwell 2008-10-08T05:37:10Z 2008-10-08T05:37:10Z <p>I've seen <a href="http://www.chipin.com/" rel="nofollow">ChipIn</a> used successfully for raising money for a family in need with large medical expenses when their young daughter was diagnosed with leukemia.</p> http://stackoverflow.com/questions/109288/writing-code-editor/109326#109326 3 Answer by Travis B. Hartwell for Writing code editor Travis B. Hartwell 2008-09-20T20:48:00Z 2008-09-20T20:48:00Z <p>Here's a book on the implementation of Sharp Develop: <a href="http://www.icsharpcode.net/OpenSource/SD/InsideSharpDevelop.aspx" rel="nofollow">Dissecting a C# Application: Inside Sharp Develop</a></p> <p>There is a link for a free PDF download of the book.</p> <p>Also, there is this question of Programming Reddit, that has some of the links I would have shared.: <a href="http://www.reddit.com/r/programming/comments/6fkki/ask_proggit_books_articles_papers_etc_on_text/" rel="nofollow">Ask proggit: books, articles, papers etc. on text editor implementation?</a></p> http://stackoverflow.com/questions/106222/what-does-osgi-solve/106333#106333 9 Answer by Travis B. Hartwell for What Does OSGi Solve? Travis B. Hartwell 2008-09-19T23:16:33Z 2008-09-19T23:16:33Z <p>I've found the following benefits from OSGi:</p> <ul> <li>Each plugin is a versioned artifact that has its own classloader.</li> <li>Each plugin depends on both specific jars that it contains and also other specific versioned plug-ins.</li> <li>Because of the versioning and isolated classloaders, different versions of the same artifact can be loaded at the same time. If one component of your application relies on one version of a plug-in and another depends on another version, they both can be loaded at the same time.</li> </ul> <p>With this, you can structure your application as a set of versioned plugin artifacts that are loaded on demand. Each plugin is a standalone component. Just as Maven helps you structure your build so it is repeatable and defined by a set of specific versions of artifacts it is created by, OSGi helps you do this at runtime. </p> http://stackoverflow.com/questions/99853/how-many-of-you-prefer-full-screen/100185#100185 0 Answer by Travis B. Hartwell for How many of you prefer full screen? Travis B. Hartwell 2008-09-19T07:12:52Z 2008-09-19T07:12:52Z <p>I almost always use full screen for all of my applications, especially if I'm using an application like an IDE. I recently switched to the <a href="http://xmonad.org" rel="nofollow">xmonad</a> window manager, and in my configuration I have made full-screen the default. It is a tiling window manger, so I can just hit a hotkey (Windows + Space, in my case) to change the layout style to tiling and my other windows on that desktop are tiled along with my currently active window. This is handy for when I need to refer to a webpage or something while using my editor or the shell.</p> <p>It helps to have a window manager that automates this for me and I don't have to think about it.</p> http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib/98190#98190 6 Answer by Travis B. Hartwell for force Maven2 to copy dependencies into target/lib Travis B. Hartwell 2008-09-19T00:03:12Z 2008-09-19T00:03:12Z <p>Take a look at the <a href="http://maven.apache.org/plugins/maven-dependency-plugin/index.html" rel="nofollow">Maven dependency plugin</a>, specifically, the <a href="http://maven.apache.org/plugins/maven-dependency-plugin/copy-dependencies-mojo.html" rel="nofollow">dependency:copy-dependencies goal</a>. Take a look at <a href="http://maven.apache.org/plugins/maven-dependency-plugin/usage.html" rel="nofollow">the example</a> under the heading <strong>The dependency:copy-dependencies mojo</strong>. Set the <strong>outputDirectory</strong> configuration property to ${basedir}/target/lib (I believe, you'll have to test).</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/80622/maven-or-ant/81079#81079 16 Answer by Travis B. Hartwell for Maven or Ant? Travis B. Hartwell 2008-09-17T08:20:09Z 2008-09-17T08:20:09Z <p>Contrary to what <a href="http://stackoverflow.com/questions/80622/maven-or-ant#80670">@Joe Skora</a> has said, with Maven 2 I have rarely needed to use ant in combination with Maven. Maven 1 was built on top of ant, so you often found yourself dropping down into ant related things. I rarely have, however, with Maven.</p> <p>These are the reasons I advocate Maven:</p> <ul> <li><strong>Repeatable builds / Dependency Management.</strong> All it takes is a check out of your source and, if necessary, a Maven configuration file, and you can issue one command and all of the dependencies for your project will be downloaded and then the project will be built. No checking of binary jars into your source control, or manually copying things, or whatever. Also, it handles transitive dependencies. If you depend directly on one library, you don't have to list its dependencies as well. Maven automatically figures that out for you.</li> <li><strong>Versioned artifacts</strong> This is an extension of the above point. Any given Maven project is required to have a version number. When you deploy built resources to your internal Maven repositories, it is easy to point to any given version. After getting used to this method of development, it doesn't make sense to me any longer to not have versions of both the built artifacts and its dependencies when doing development. </li> <li><strong>Convention and configuration over scripting.</strong> Maven has set conventions for project layout. It constructs classpaths based upon your declared dependencies and their transitive dependencies. With ant, you have to explicitly write out XML "code" for the steps to compile, to construct jars, to set up your classpaths, etc. Maven is much more declarative.</li> <li><strong>IDEs</strong> Yes, many ides have Ant integration or are based upon ant. Yet, I find that many people who use ant built scripts tend to check in IDE project files (.project for Eclipse, for example) into source control. This is often bad because of pathnames and so forth. With Maven, out of the box you can generate project files for Eclipse and IDEA, and I believe these as well as other major IDEs can import Maven projects. No need to check configuration files into source control.</li> </ul> <p>Those are my main reasons for advocating Maven. However, as others have noted, it is far from perfect:</p> <ul> <li>The documentation is lacking in places.</li> <li>Sometimes you have to do silly things to work around bugs in the dependency calculation mechanism.</li> <li>It can be slow at times (though I hear this is being worked on).</li> </ul> <p>The declarative dependency management and version artifacts alone have got me sold on Maven. </p> http://stackoverflow.com/questions/79753/recommended-reading-list-for-a-relativenewbie/79852#79852 1 Answer by Travis B. Hartwell for Recommended reading list for a (relative)newbie? Travis B. Hartwell 2008-09-17T04:03:13Z 2008-09-17T04:03:13Z <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">The Pragmatic Programmer</a> - General advice from design to tools for developers</li> <li><a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a> - General cross-language advice for coding, very comprehensive</li> <li><a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language (K &amp; R)</a> - The Canonical Guide to C</li> <li><a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a> - Even though this is about Object Oriented Programming, this helps you think about common idioms in software development</li> <li><a href="http://rads.stackoverflow.com/amzn/click/0070004846" rel="nofollow">The Structure and Interpretation of Computer Programs</a> - Doesn't use C, but Scheme, but a great intro in how to think about programming</li> </ul> http://stackoverflow.com/questions/35646/do-you-continue-development-in-a-branch-or-in-the-trunk/79659#79659 4 Answer by Travis B. Hartwell for Do you continue development in a branch or in the trunk? Travis B. Hartwell 2008-09-17T03:28:16Z 2008-09-17T03:28:16Z <p>A good reference on a development process that keeps trunk stable and does all work in branches is Divmod's <a href="http://divmod.org/trac/wiki/UltimateQualityDevelopmentSystem" rel="nofollow">Ultimate Quality Development System</a>. A quick summary:</p> <ul> <li>All work done must have a ticket associated with it</li> <li>A new branch is created for each ticket where the work for that ticket is done</li> <li>Changes from that branch are not merged back into the mainline trunk without being reviewed by another project member</li> </ul> <p>They use SVN for this, but this could easily be done with any of the distributed version control systems.</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/79155#79155 53 Answer by Travis B. Hartwell for What do you use to keep notes as a developer? Travis B. Hartwell 2008-09-17T02:01:39Z 2008-09-17T02:01:39Z <p>I use <a href="http://orgmode.org/" rel="nofollow">Emacs Org-Mode</a> along with <a href="http://www.emacswiki.org/cgi-bin/wiki/RememberMode" rel="nofollow">Remember Mode</a> to keep track of everything. TODOs, appointments, notes, etc. With Org mode and Remember mode integration, plus a shortcut key defined in my window manager, I can hit a shortcut key from anywhere (Win + R in my case) and pop up a new Emacs window, select which type of item I'm saving (TODO, appointment, note, etc) and then quickly type what I want and then hit C-c C-c. The note is filed away to a default location for me to organize later if I so choose. This is so simple and convenient that I don't have to interrupt my flow of thinking if I suddenly think of something I need to do or take some notes on a given task. <em>"Just what are the steps again for setting up a remote git repo? Okay, I do this and this and this. I had better write this down before I forget."</em> </p> http://stackoverflow.com/questions/1671282/if-i-work-in-java-but-i-dont-like-the-bloatyness-of-spring-and-maven-based-proje Comment by Travis B. Hartwell on If I work in Java but I don't like the bloatyness of Spring and Maven-based projects what work should I try to get into? Travis B. Hartwell 2009-11-04T03:23:18Z 2009-11-04T03:23:18Z For one thing, Pascal is incorrect in terminology. You can be both strong typed and dynamically typed. What Pascal meant, I believe, is statically typed -- meaning that the types of variables is known at compile time vs runtime for dynamic languages. I agree with Pascal, by the way. But I also agree with Dafydd. Java isn't representative of a good statically typed language because you also have to declaratively type everything and the type system is poor. If you are invested in the JVM, take a look at Scala. Otherwise, look at Haskell. http://stackoverflow.com/questions/823745/how-do-i-make-emacs-auto-indent-my-c-code Comment by Travis B. Hartwell on how do I make emacs auto-indent my C code? Travis B. Hartwell 2009-08-07T20:32:06Z 2009-08-07T20:32:06Z Elisp is a lot more usable as a configuration mechanism than what most IDEs and editors provide. With things like M-x apropros and such, it's a lot easier to figure out how to configure things and get it to do what you want than trying to dig through tons of dialog boxes. http://stackoverflow.com/questions/983576/pomodoro-technique-other-ways-to-increase-personal-productivity-any-ideas/983611#983611 Comment by Travis B. Hartwell on Pomodoro technique & other ways to increase personal productivity? Any ideas? Travis B. Hartwell 2009-07-11T04:45:42Z 2009-07-11T04:45:42Z &quot;Getting Things Done&quot; is by David Allen, not Scott. Just in case someone was trying to look for it. http://stackoverflow.com/questions/928783/want-specs-for-a-developer-machine-any-recomendations/928835#928835 Comment by Travis B. Hartwell on Want specs for a developer machine, any recomendations? Travis B. Hartwell 2009-05-30T06:34:45Z 2009-05-30T06:34:45Z @Dietrich It depends completely on what you are developing. At a previous job, I was developing Java server software with a database back-end and a Eclipse-based front-end. In order to run the database, the java server process, Eclipse for development, and the GUI that I was developing while testing, I was scrapping by with just 2 gig of RAM. Right now I'm just doing Python development of some very simple servers, so 1 gig is mostly sufficient. I think it is very dependent on what you are doing. Are you running virtual machines for testing? Depending on what you do, you may need more. http://stackoverflow.com/questions/80622/maven-or-ant/81079#81079 Comment by Travis B. Hartwell on Maven or Ant? Travis B. Hartwell 2009-04-29T20:20:08Z 2009-04-29T20:20:08Z I don't think I've drank the Kool-aid. I'm only speaking from my experience. At one company, the experience was horrible, but that was partly because the developers and architects did not understand versioning or how to take advantage of Maven. It is not without flaws, but the tool has been invaluable at others. After having used Maven, I never want to use a procedural make tool like Ant again. I haven't looked into Ivy much and I'm not sure what it gives you besides dependency management, but I try to stay away from ant. Building should be a declarative process and ant is <i>not</i> it. http://stackoverflow.com/questions/110113/which-software-expert-do-you-have-as-a-role-model/110171#110171 Comment by Travis B. Hartwell on Which software expert do you have as a role model? Travis B. Hartwell 2008-09-21T04:28:01Z 2008-09-21T04:28:01Z SPJ is one of the most eloquent speakers in the industry. I watch every talk or interview of his I can, even if some of it is a re-hash, because I enjoy how well he speaks.