User jtimberman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T04:33:15Zhttp://stackoverflow.com/feeds/user/7672http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1599251/version-control-for-a-collaborative-website-on-mac/1599252#15992520Answer by jtimberman for Version Control for a collaborative website on Macjtimberman2009-10-21T02:08:53Z2009-10-21T07:25:27Z<p>I would (and do) use a configuration management system like <a href="http://www.opscode.com/chef" rel="nofollow">Chef</a> to deploy configurations and applications to the servers, and maintain a Git repository of all the code and the configuration.</p>
<p>But that's a pretty heavyweight solution :). You could use Git and use a separate branch to gather the config files from the server, make your changes, do merges, etc.</p>
http://stackoverflow.com/questions/724348/how-to-restart-rails-from-within-rails/725849#7258490Answer by jtimberman for How to restart Rails from within Rails?jtimberman2009-04-07T13:54:24Z2009-04-07T13:54:24Z<p>In our consulting with startups running their sites on Rails, we used two methods for managing mongrel processes.</p>
<p>First, is a custom gem we wrote called <a href="http://wiki.github.com/adamhjk/mongrel%5Frunit" rel="nofollow">mongrel_runit</a>. This sets mongrels up as services in <a href="http://smarden.org/runit/" rel="nofollow">runit</a>.</p>
<p>Second, we used <a href="http://god.rubyforge.org/" rel="nofollow">god</a> to monitor mongrel processes. This will work with mongrel_runit, or with 'normal' mongrel configurations.</p>
http://stackoverflow.com/questions/587615/system-admin-learning-path/612952#6129520Answer by jtimberman for System admin learning pathjtimberman2009-03-04T23:21:26Z2009-03-04T23:21:26Z<p>My answer in <a href="http://stackoverflow.com/questions/600455/from-programmer-to-sys-admin/612947#612947">this question</a> might be useful for you.</p>
http://stackoverflow.com/questions/600455/from-programmer-to-sys-admin/612947#6129470Answer by jtimberman for From programmer to Sys Adminjtimberman2009-03-04T23:19:41Z2009-03-04T23:19:41Z<p>Some thoughts from a system admin turned system engineer.</p>
<p>Learn, and use, a configuration management system. <a href="http://wiki.opscode.com/display/chef/Home" rel="nofollow">Chef</a> or <a href="http://reductivelabs.com/trac/puppet/wiki" rel="nofollow">Puppet</a> are really strong options (I like Chef), both written in Ruby. Not sure about Windows, if thats your platform; Chef plans to support Windows within the next year.</p>
<p>Put your software control skills to good use. Maintain your configuration with a Git or Subversion (or other) repository. I like Git because every checkout / clone is a full repository, so backups are easy :-).</p>
<p>Use open source tools whereever possible. You can put your developer skills to use by improving them.</p>
<p>Read Tom Limoncelli's "<a href="http://rads.stackoverflow.com/amzn/click/0321492668" rel="nofollow">The Practice of System and Network Administration</a>" - it is an excellent book that covers the gamut on system administration end to end, without being platform specific.</p>
<p>Find local user groups for your platform. Join Twitter and look for people talking about your interests. Get into IRC on the Freenode network and discuss system administration with other admins. </p>
http://stackoverflow.com/questions/453300/to-what-extent-can-version-control-help-in-system-administration/559318#5593181Answer by jtimberman for To what extent can Version Control help in system administration?jtimberman2009-02-18T00:14:48Z2009-02-18T00:14:48Z<p>More than just having configuration files in a revision control system, I suggest using a configuration management system such as <a href="http://wiki.opscode.com/display/chef/Home" rel="nofollow">Chef</a> or <a href="http://reductivelabs.com/trac/puppet" rel="nofollow">Puppet</a> to manage the contents, permissions and other details of the configuration files, such as restarting applications when a config file changes, and manage those files in git/subversion/yourfavoriteVCS.</p>
http://stackoverflow.com/questions/408511/what-development-tools-do-you-carry-on-your-usb-drive/425080#4250800Answer by jtimberman for What development tools do you carry on your USB drive?jtimberman2009-01-08T17:11:50Z2009-01-08T17:11:50Z<p>For Windows:</p>
<ul>
<li>PuTTY (<a href="http://www.xs4all.nl/~whaa/putty/" rel="nofollow">PuTTY tray</a>)</li>
<li>Xming - X11 server</li>
<li>tightvnc.exe</li>
</ul>
<p>These let me access Linux systems where the real development tools live via SSH and VNC.</p>
http://stackoverflow.com/questions/273664/best-awk-commands/424776#4247762Answer by jtimberman for Best Awk Commandsjtimberman2009-01-08T15:53:06Z2009-01-08T15:53:06Z<p>I use this: </p>
<pre><code>df -m | awk '{p+=$3}; END {print p}'
</code></pre>
<p>To total all disk space used on a system across filesystems.</p>
http://stackoverflow.com/questions/417879/coordinating-tasks-between-multiple-servers/424648#4246481Answer by jtimberman for Coordinating tasks between multiple serversjtimberman2009-01-08T15:26:29Z2009-01-08T15:26:29Z<p>As mentioned, <a href="http://www.capify.org/" rel="nofollow">Capistrano</a> can be used to automate tasks. It was originally written to deploy Rails applications consistently, but it has become a very robust sysadmin tool. It is generally best for adhoc one time commands and application deployments though. If you need multiple systems managed with a consistent configuration tool, I suggest <a href="http://reductivelabs.com/projects/puppet/" rel="nofollow">Puppet</a>. </p>
<p>We use Puppet to manage overall system configuration for Rails, Django and PHP based web/db/app servers, and we use Capistrano for application deployments and single commands (like running Puppet after a config change).</p>
http://stackoverflow.com/questions/423600/using-a-comment-in-ruby-running-in-ubuntu/424597#4245970Answer by jtimberman for Using a #! comment in ruby running in Ubuntujtimberman2009-01-08T15:18:11Z2009-01-08T15:18:11Z<p>You can use the 'shebang' line with either:</p>
<pre><code>#!/usr/bin/ruby
#!/usr/bin/env ruby
</code></pre>
<p>But the script needs to be executable (you indicated it is) and in your shell $PATH. </p>
<pre><code>echo $PATH
</code></pre>
<p>Put the script in one of those directories, or modify your path, otherwise specify the full path to it, for example:</p>
<pre><code>export PATH=$PATH:/home/user/bin
</code></pre>
<p>or one of these:</p>
<pre><code>./matz.rb
/home/user/bin/matz.rb
</code></pre>
<p>You can also run the Ruby interpreter passing the script filename as an argument, and it will be executed. This is particularly useful if you have another version of Ruby installed on your system (say, for testing, like <a href="http://www.rubyenterpriseedition.com/" rel="nofollow">Ruby Enterprise Edition, REE</a>):</p>
<pre><code>/usr/bin/ruby matz.rb
/opt/ree/bin/ruby matz.rb
</code></pre>
http://stackoverflow.com/questions/410085/what-reasons-are-there-not-to-use-openid/412543#4125434Answer by jtimberman for What reasons are there NOT to use OpenID?jtimberman2009-01-05T08:07:31Z2009-01-05T08:07:31Z<p>OpenID is still as insecure as every other password-based authentication method out there. In fact, it is even worse because if someone gets access to your OpenID, they have more than just that one account now. Of course there's also phishing attacks, but we're all savvy programmers, database and system administrators, so we wouldn't fall for such things, right?</p>
<p>Authentication security is based on trust. As others pointed out, why would you trust a third party to potentially sensitive information? Sure, you can set up an OpenID server yourself, but how much hassle is that vs. maintaining separate passwords on multiple systems? Sure, you can create secure passwords that are long and full of non-alphanumeric characters, and even store them all in a password manager (I do), but some sites are flawed in that a simple password recovery form can be filled out to gain access to reset the password. </p>
<p>I would probably be inclined to support and even evangelise OpenID if it did secure private key-based authentication, a la SSH or PGP. Maybe that's a matter of a provider offering such a method - I haven't looked into it [yet].</p>
<p>Finally, while we all trust OpenID enough to use it to authenticate on Stack Overflow, my OpenID is a "throwaway", and its not like I'm using this as a professional reputation building tool (ie, my real name isn't involved ;-)). I'm sure I'm not the only one (as cool and awesome as this site is!).</p>
http://stackoverflow.com/questions/411410/subversion-repository-on-linux-dev/412521#4125212Answer by jtimberman for Subversion Repository on Linux Devjtimberman2009-01-05T07:49:46Z2009-01-05T07:49:46Z<p>I work for an IT operations infrastructure automation company; we do this all the time. </p>
<p>Location of repository: We use "/srv/svn" by default to store all SVN repositories, unless a customer has a specific requirement, for example an existing repository might be stored on a ReadyNAS shared filesystem.</p>
<p>Accounts: All our customers use LDAP. Either OpenLDAP server running on a master host, but sometimes Active Directory because some customers have a Windows domain in their office, which we can configure as well. Developers get access to the "SCM" group (usually svn, git or devel), and the 'deploy' group. These groups only have permissions to log in and perform SCM related activities (ie, write commits to the repo based on group ownership), or do application deployments to production.</p>
<p>Backup procedures: We use svnadmin hotcopy unless the customer already has something in place (usually svnadmin dump, heh).</p>
<pre><code>svnadmin hotcopy /srv/svn /srv/svn_backups/$(date +%Y%m%d)
</code></pre>
<p>For access to the repo, it's usually simple svn+ssh. Some customers already have an Apache setup, but not many. I recommend SSH. Developers push their public ssh keys out and all is well. There's little to no maintenance with LDAP user management (the <strong>only</strong> way to go).</p>
http://stackoverflow.com/questions/412362/what-are-the-most-often-linux-power-commands-that-you-use/412504#4125041Answer by jtimberman for What are the most often linux (power) commands that you use?jtimberman2009-01-05T07:33:26Z2009-01-05T07:33:26Z<p>The command in the original question can be better written as,</p>
<pre><code>grep -RHi "string"
</code></pre>
<p>I use grep -R quite frequently. Of course, the find command can be used for fine-tuning the files to search. </p>
<p>I often use the -00 flag to perl to print "paragraph" mode.</p>
<pre><code>perl -wnl -00 -e '/something:/ and print;'
</code></pre>
<p>Change a string to something else, inline, while making backup copies of the original file(s) (from Minimal Perl):</p>
<pre><code>perl -s -i.bak -wpl 's/old_string/new_string/g;' *.txt
</code></pre>
<p>I like side-by-side diffs:</p>
<pre><code>sdiff -s file1 file2
</code></pre>
<p>Or syntax-highlighted diffs:</p>
<pre><code>diff file1 file2 | vim - # or mate - on my Mac
</code></pre>
<p>I went looking through my history a bit to see if there were other commands, but sadly(??) most of my system maintenance, administration and programming is done through automated tools, lately all written in Ruby (puppet, capistrano, some home-rolled tools, etc), or are related to SCM (git, svn).</p>
http://stackoverflow.com/questions/388066/barebones-linux-server-install/404653#4046530Answer by jtimberman for Barebones Linux Server Installjtimberman2009-01-01T06:38:44Z2009-01-01T06:38:44Z<p>JEOS - Just Enough Operating System, an Ubuntu project, should be exactly what you are looking for. </p>
http://stackoverflow.com/questions/404520/best-linux-distribution-for-programming/404560#4045607Answer by jtimberman for Best linux distribution for programmingjtimberman2009-01-01T05:12:31Z2009-01-01T05:12:31Z<p>In my experience of fourteen years using Linux for a variety of desktop and server tasks, I have formed educated opinions about each major distribution for different programming environments. </p>
<p>Ubuntu - the new favorite for many users. Easily one of the most popular for desktop use especially viewing many media types. But this is a programming site. Ubuntu is awesome for Ruby programming, probably the most popular Ruby platform next to Mac. It has a large package library chock full of Perl and Php packages and makes a great platform for developing those languages. I can't speak of Python specifically but we have a customer doing extensive Django for deep analytics on Ubuntu. You mention Java too and Ubuntu delivers. Again, we have multiple customers that swear by Ubuntu for their Tomcat and JBoss apps. </p>
<p>Red Hat based distros including Fedora and CentOS are great as well. They really shine for Python since many of Red Hats tools are Python based so it fits well. Since Red Hat targets the enterprise, they have superb Java support as well. After all Jboss is their product. Peel and Php are good as well but nothing special, really. Standard stuff I' d say. </p>
<p>SUSE is an interesting choice. It has been a great platform for Java. IBM uses it extensively for deploying Java based middleware as well as Java based tools to manage virtualization management on the big iron systems and mainframes. Other languages have been fairly typical but nothing overly outstanding. </p>
<p>All the major distributions are great for C languages of course - all the usual suspects are available if not installed by default. I would mention it specifically above, but my experience with Gentoo is limited. I hear great things about it from developers who write in many different languages. </p>
<p>If you have the means I would recommend using virtual machines to test a couple different distros and see what meets you needs best. Good weekend project. :)</p>
http://stackoverflow.com/questions/287536/how-do-you-do-cygwin-passwordless-rlogin-or-rsh-to-solaris-5-7/400782#4007820Answer by jtimberman for How do you do Cygwin passwordless rlogin or rsh to Solaris 5.7 jtimberman2008-12-30T16:40:06Z2008-12-30T16:40:06Z<p>While you found the answer to your question with rlogin/rsh, my recommendation is to discontinue use of these insecure programs. Both are known to have buffer overflow exploits, and they both send passwords in clear text.</p>
<p>There's really no excuse for not using SSH these days. Tell whoever owns/manages the system to enable it. That's really in their best interest anyway. It comes installed by default on most Unix varieties, and is available from most vendors as a package.</p>
<p>Anyone who is running a Unix/Linux system and doesn't use SSH is just being irresponsible.</p>
http://stackoverflow.com/questions/395234/any-interesting-uses-of-makefiles-to-share/399795#3997953Answer by jtimberman for Any interesting uses of Makefiles to share?jtimberman2008-12-30T08:42:55Z2008-12-30T08:42:55Z<p>Other than obvious uses in programming, I've seen Makefiles used to perform repetitive tasks on servers to manage system settings such as user/group creation, package upgrades/updates, and copying config files into place. I have also seen (and used) rake to do this in Ruby based environments.</p>
<p>The most complex example of this I have heard of is <a href="http://www.isconf.org/" rel="nofollow">ISConf</a>, a configuration management tool. I heard about it from Luke Kanies, the author of <a href="http://reductivelabs.com/" rel="nofollow">Puppet</a>, on <a href="http://madstop.com/2008/11/01/a-short-history-of-puppet-pt1/" rel="nofollow">his blog</a>.</p>
http://stackoverflow.com/questions/86394/free-cheap-task-bug-management-software/86406#8640614Answer by jtimberman for Free/Cheap Task/Bug Management softwarejtimberman2008-09-17T18:58:09Z2008-12-30T08:34:40Z<p>There's a plethora of solutions available. </p>
<p>I like <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a>, as it integrates well with SVN, and it includes a wiki as well. It is very extensible through <a href="http://trac.edgewall.org/wiki/TracPlugins" rel="nofollow">Plugins</a>. </p>
<p>Update: I also find <a href="http://www.redmine.org/" rel="nofollow">Redmine</a> to be quite good, especially in a Ruby environment. Redmine integrates with git, svn and like Trac has a wiki. The main site is loading slow right now, but there's an overview on <a href="http://en.wikipedia.org/wiki/Redmine" rel="nofollow">Wikipedia</a>.</p>
http://stackoverflow.com/questions/101244/what-commands-control-the-behavior-of-etc-rc-d-on-redhat-centos/186350#1863501Answer by jtimberman for What command(s) control the behavior of /etc/rc*.d on Redhat/CentOS?jtimberman2008-10-09T08:06:47Z2008-10-09T08:06:47Z<p>As mentioned by px, the proper way to manage the links to scripts from /etc/init.d to /etc/rc?.d is the /sbin/chkconfig command.</p>
<p>Scripts should have comments near the top that specify how chkconfig is to handle them. For example, /etc/init.d/httpd:</p>
<pre><code># chkconfig: - 85 15
# description: Apache is a World Wide Web server. It is used to serve \
# HTML files and CGI.
# processname: httpd
# config: /etc/httpd/conf/httpd.conf
# config: /etc/sysconfig/httpd
# pidfile: /var/run/httpd.pid
</code></pre>
<p>Also, use the /sbin/service command to start and stop services when run from the shell.</p>
http://stackoverflow.com/questions/102808/wheres-the-best-source-of-up-to-date-rpms-for-redhat/186332#1863321Answer by jtimberman for Where's the best source of up to date RPMs for RedHat?jtimberman2008-10-09T07:59:13Z2008-10-09T07:59:13Z<p>You should get packages for RHEL from Red Hat Network. In the interest of maintaining utmost integrity of packages, Red Hat only patches packages with serious bugs (ie, security), and backports these packages to the main version of the specific software.</p>
<p>If you want to run the latest and greatest bleeding edge Apache, you're pretty much on your own. Red Hat won't provide any support for packages that were not installed for that specific RHEL version from RHN.</p>
<p>While packages for other distributions like Fedora Rawhide may install cleanly, those packages were not "blessed" for RHEL. If you're running RHEL, stick with the packages provided by RHN. </p>
http://stackoverflow.com/questions/152887/how-do-i-resolve-a-merge-conflict-with-svn-properties/155947#1559471Answer by jtimberman for How do I resolve a merge conflict with SVN properties?jtimberman2008-10-01T02:06:14Z2008-10-01T02:06:14Z<p>Do you mean a merge conflict on commit/update or branch merge? </p>
<p>The <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.3" rel="nofollow">SVN Book</a> is pretty clear about the svn:ignore property in particular:</p>
<blockquote>
<p>Subversion does not assume that every
file or subdirectory in a working copy
directory is intended for version
control. Resources must be explicitly
placed under Subversion's management
using the svn add or svn import
commands.</p>
</blockquote>
<p>...</p>
<blockquote>
<p>To force every user of that repository to add patterns for those resources to their run-time configuration areas would be not just a burden, but has the potential to clash with the configuration needs of other working copies that the user has checked out.</p>
</blockquote>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/117972#1179722Answer by jtimberman for What is your latest useful Perl one-liner (or a pipe involving Perl)?jtimberman2008-09-22T22:18:26Z2008-09-22T22:18:26Z<p>I use this quite frequently to quickly convert epoch times to a useful datestamp.</p>
<pre><code>perl -l -e 'print scalar(localtime($ARGV[0]))'
</code></pre>
<p>Make an alias in your shell:</p>
<pre><code>alias e2d="perl -le \"print scalar(localtime($ARGV[0]));\""
</code></pre>
<p>Then pipe an epoch number to the alias.</p>
<pre><code>echo 1219174516 | e2d
</code></pre>
<p>Many programs and utilities on Unix/Linux use epoch values to represent time, so this has proved invaluable for me.</p>
http://stackoverflow.com/questions/82915/any-other-mainframers-here/110076#1100761Answer by jtimberman for Any other mainframers here?jtimberman2008-09-21T02:41:32Z2008-09-21T02:41:32Z<p>Why is this topic voted down? Cobol is still certainly very relevant, whether you like it or not.</p>
<p><a href="http://www.ddj.com/architect/210602491" rel="nofollow">Dr Dobb's seems to think so too.</a></p>
http://stackoverflow.com/questions/103857/what-is-your-favorite-bash-prompt/103874#1038743Answer by jtimberman for What is your favorite bash prompt?jtimberman2008-09-19T17:25:05Z2008-09-19T17:46:33Z<p>Here's mine.</p>
<pre><code># this prompt will show the hostname in green if the last command returned 0,
# otherwise it will be red.
PS1="\[\`if [[ \$? = "0" ]]; then echo '\e[32m\h\e[0m'; else echo '\e[31m\h\e[0m' ; fi\`:\w\n\$
</code></pre>
<p>Looks like this 'laptop' is green and the rest is default terminal foreground, of course.</p>
<pre><code>laptop:~/bin
$
</code></pre>
http://stackoverflow.com/questions/103944/real-time-history-export-amongst-bash-terminal-windows/103962#1039623Answer by jtimberman for Real-time history export amongst bash terminal windowsjtimberman2008-09-19T17:38:26Z2008-09-19T17:38:26Z<p>You can use history -a to append the current session's history to the histfile, then use history -r on the other terminals to read the histfile.</p>
http://stackoverflow.com/questions/97816/do-you-disable-selinux/98238#982383Answer by jtimberman for Do you disable SELinux?jtimberman2008-09-19T00:12:52Z2008-09-19T00:28:29Z<p>I worked for a company last year where we were setting it enforcing with the 'targeted' policy enabled on CentOS 5.x systems. It did not interfere with any of the web application code our developers worked on because Apache was in the default policy. It did cause some challenges for software installed from non-Red Hat (or CentOS) packages, but we managed to get around that with the configuration management tool, <a href="http://reductivelabs.com/trac/puppet" rel="nofollow">Puppet</a>.</p>
<p>We used Puppet's template feature to generate our policies. See <a href="http://spook.wpi.edu/" rel="nofollow">SELinux Enhancements for Puppet</a>, heading "Future stuff", item "Policy Generation".</p>
<p>Here's some basic steps from the way we implemented this. Note other than the audit2allow, this was all automated.</p>
<p>Generate an SELinux template file for some service named ${name}.</p>
<pre><code>sudo audit2allow -m "${name}" -i /var/log/audit/audit.log > ${name}.te
</code></pre>
<p>Create a script, <code>/etc/selinux/local/${name}-setup.sh</code></p>
<pre><code>SOURCE=/etc/selinux/local
BUILD=/etc/selinux/local
/usr/bin/checkmodule -M -m -o ${BUILD}/${name}.mod ${SOURCE}/${name}.te
/usr/bin/semodule_package -o ${BUILD}/${name}.pp -m ${BUILD}/${name}.mod
/usr/sbin/semodule -i ${BUILD}/${name}.pp
/bin/rm ${BUILD}/${name}.mod ${BUILD}/${name}.pp
</code></pre>
<p>That said, most people are better off just disabling SELinux and hardening their system through other commonly accepted consensus based best practices such as <a href="http://cisecurity.org/" rel="nofollow">The Center for Internet Security's Benchmarks</a> (note they recommend SELinux :-)).</p>
http://stackoverflow.com/questions/97137/how-do-you-run-a-script-on-login-in-nix/98314#983140Answer by jtimberman for How do you run a script on login in *nix?jtimberman2008-09-19T00:24:46Z2008-09-19T00:24:46Z<p>Search your local system's bash man page for ^INVOCATION for information on which file is going to be read at startup. </p>
<pre><code>man bash
/^INVOCATION
</code></pre>
<p>Also in the FILES section,</p>
<pre><code> ~/.bash_profile
The personal initialization file, executed for login shells
~/.bashrc
The individual per-interactive-shell startup file
</code></pre>
<p>Add your script to the proper file. Make sure the script is in the $PATH, or use the absolute path to the script file.</p>
http://stackoverflow.com/questions/74689/tools-to-effectively-manage-the-information/94894#948941Answer by jtimberman for Tools to effectively manage the information?jtimberman2008-09-18T17:48:57Z2008-09-18T17:48:57Z<p>I use a small number of tools and techniques, because it is easy to get distracted managing the information management tools, rather than managing the information.</p>
<ol>
<li><p>Google Reader - The key for me was creating @work and @home labels, for the appropriate location.</p></li>
<li><p>TiddlyWiki - I keep track of all my notes for work projects in a TiddlyWiki file. </p></li>
<li><p>Delicious - I keep my bookmarks here. When I come across a link I want to read later (usually in my RSS Reader), I tag it @readreview. When I read it, I delete it unless it is useful reference, then I retag appropriately.</p></li>
<li><p>Local bookmarks - I store bookmarks on the browser toolbar in folders so I can middle-click and open all in tabs. Obviously these would be limited in number :-). I also have a bookmarklets folder.</p></li>
</ol>
<p>I don't have a PDA. I have a pad of graph paper on my desk that I use for writing temporary notes and diagrams (permanent notes go into the TiddlyWiki). A lot of "productivity blogs" like to promote various tools, and some of these caught on for people, but I find my system is pretty simple and easy for me to manage. This makes it useful.</p>
http://stackoverflow.com/questions/85994/how-do-you-keep-a-personal-wiki-tiddlywiki-current-and-in-sync-in-multiple-loca/94769#947690Answer by jtimberman for How do you keep a personal wiki (TiddlyWiki) current and in sync in multiple locations?jtimberman2008-09-18T17:38:17Z2008-09-18T17:38:17Z<p>I store my TiddlyWiki files on a USB flash drive that I keep with me no matter what computer I might be using. No need to bother synchronizing across other computers. It gets backed up regularly when I back up the flash drive itself on my primary workstation.</p>
http://stackoverflow.com/questions/89989/is-there-a-curl-wget-option-that-says-not-to-save-files-upon-http-errors/90024#900241Answer by jtimberman for is there a curl/wget option that says not to save files upon http errors?jtimberman2008-09-18T04:30:31Z2008-09-18T13:45:29Z<p>I voted up the curl -f answer above, but to expound that it isn't failsafe. I think this is a perfect opportunity for learning Perl or Ruby (or extending your skills) by writing your own download program.</p>
http://stackoverflow.com/questions/89444/free-or-open-source-ibm-3151-or-aixterm-emulators/89671#896710Answer by jtimberman for Free or open source IBM 3151 or aixterm emulators?jtimberman2008-09-18T03:08:50Z2008-09-18T03:08:50Z<p>I doubt you'll find an open source or free emulator for this terminal type. While IBM has contributed to open source communities, they are also very interested in protecting their intellectual property. Hummingbird licenses are certainly expensive. We ran into issues with that when I worked for IBM!</p>
<p>That said, I never needed a specific terminal type in order to access AIX systems, as we used OpenSSH (comes with AIX 5L). Is there some reason why you can't provide SSH access to these systems to your contractors?</p>
http://stackoverflow.com/questions/130329/how-do-you-get-what-a-symbolic-link-points-to-without-grep/130362#130362Comment by jtimberman on How do you get what a symbolic link points to without grep?jtimberman2009-01-08T16:59:08Z2009-01-08T16:59:08ZFWIW, /usr/bin/readlink on OSX 10.5 and RHEL 5, /bin/readlink on ubuntu 8.10. I don't have any other systems handy to check.http://stackoverflow.com/questions/410085/what-reasons-are-there-not-to-use-openid/412543#412543Comment by jtimberman on What reasons are there NOT to use OpenID?jtimberman2009-01-07T15:47:59Z2009-01-07T15:47:59ZApparently so can myopenid.com, which has a better "rating" than Verisign here: <a href="http://openidexplained.com/get" rel="nofollow">openidexplained.com/get</a>
http://stackoverflow.com/questions/412360/programming-language-choice-longevity-and-community/412367#412367Comment by jtimberman on Programming Language Choice - Longevity and Communityjtimberman2009-01-05T07:14:48Z2009-01-05T07:14:48ZThis kind of attitude is what keeps Microsoft in a monopoly. There <i>are</i> other choices in programming languages out there, and they're perfectly capable of running many different kinds of apps.http://stackoverflow.com/questions/404520/best-linux-distribution-for-programming/404560#404560Comment by jtimberman on Best linux distribution for programmingjtimberman2009-01-02T03:03:41Z2009-01-02T03:03:41ZThanks. As a unix/linux admin through and through I believe in the best tool for the job. Any major distro is the right tool for <i>some</i> job. http://stackoverflow.com/questions/78493/in-bash/78504#78504Comment by jtimberman on $$ in Bash.jtimberman2008-09-19T17:31:33Z2008-09-19T17:31:33ZOr the person who asked the question should set the higher rated answer below as the accepted answer...http://stackoverflow.com/questions/30066/how-to-redirect-all-stderr-in-bashComment by jtimberman on How to redirect all stderr in bash?jtimberman2008-09-18T18:07:28Z2008-09-18T18:07:28ZYou mention python in a comment, could you show what code you're using to create these SSH streams. Are you not using popen/popen2/popen3?