<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Context Matters - Latest Comments</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-edcb43c9" type="application/json"/><link>http://contextmatters.disqus.com/</link><description></description><atom:link href="http://contextmatters.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Tue, 17 Jan 2012 03:46:05 -0000</lastBuildDate><item><title>Re: Vimpterator Improvements</title><link>http://www.jaxelson.com/blog/?p=57#comment-413218562</link><description>I've just started using vimperator and came across similar problems (especially since keyboard shortcuts are becoming increasingly prominent on the web). I realise your post was a long time ago but here's my workaround which doesn't require the use of "FeedSomeKeys". Hopefully it will be of use to someone searching for the same.&lt;br&gt;&lt;br&gt;:autocmd LocationChange .* js modes.passAllKeys=false&lt;br&gt;:autocmd LocationChange mail\\.google\\.com js modes.passAllKeys=true&lt;br&gt;:autocmd LocationChange google\\.com/calendar js modes.passAllKeys=true&lt;br&gt;:autocmd LocationChange twitter\\.com js modes.passAllKeys=true&lt;br&gt;:mkvimperatorrc!&lt;br&gt;&lt;br&gt;It checks for changes in tab name (LocationChange).&lt;br&gt;The first line re-enables vimperator by default if you switch tabs or open a new tab.&lt;br&gt;The next few lines are examples of sites where I want vimperator to be disabled on loading.&lt;br&gt;The last line saves everything to your rc file. This will append/overwrite your existing settings!&lt;br&gt;&lt;br&gt;If you need to delete a site you should match it like this:&lt;br&gt;&lt;br&gt;:autocmd! LocationChange mail\\.google\\.com</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Gary S</dc:creator><pubDate>Tue, 17 Jan 2012 03:46:05 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-205892416</link><description>for f in config/*; do ln -vs "$f" "${f#config/my}"; done&lt;br&gt;&lt;br&gt;takes care of "my" prefixes, and as a minor further benefit avoids changing the current directory.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">j_random_hacker</dc:creator><pubDate>Wed, 18 May 2011 03:22:38 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-204902095</link><description>I do something similar, and it's important to remember that this is just the first stage, as it were.  Once you have this, you can add a line for each dot file that will make sure the software is installed, like the following: &lt;br&gt;&lt;br&gt;&lt;br&gt;package { 'emacs':&lt;br&gt;    ensure =&amp;gt; installed,&lt;br&gt;}&lt;br&gt;Or you can make sure the directory structure is the way you want it, or something has the correct permissions, or your elisp is compiled, or make sure an application is started on log in, etc.&lt;br&gt;&lt;br&gt;It gives you a single place to define how you want part of your machine to look, not what needs to be done to get there, which turns out to be very useful.&lt;br&gt;&lt;br&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jason</dc:creator><pubDate>Tue, 17 May 2011 02:28:15 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-204901406</link><description>The whole system is too complicated. Why not make those dot files portable on different machine.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chen</dc:creator><pubDate>Tue, 17 May 2011 02:24:33 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-204867652</link><description>Actually all you need is git  &lt;a href="http://gmarik.info/blog/2010/05/02/tracking-dotfiles-with-git" rel="nofollow"&gt;http://gmarik.info/blog/2010/0...&lt;/a&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gmarik</dc:creator><pubDate>Tue, 17 May 2011 00:05:07 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-204745790</link><description>Well it's not fully dependent on puppet, although that is a downside to this approach. I can always make the symlinks manually. Or if I really wanted to I could make a script to parse the puppet configuration file...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jaxelson</dc:creator><pubDate>Mon, 16 May 2011 19:20:13 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-204734235</link><description>cd config; for f in *; do ln -vs config/$f ../.$f; done&lt;br&gt;&lt;br&gt;If you use a different naming scheme, just apply it above.  Your "my" prefix on files complicates things; if you just save them as "bashrc" instead of "my.bashrc" it can be this simple.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roger Pate</dc:creator><pubDate>Mon, 16 May 2011 18:49:34 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-204676873</link><description>If you had problems with existing links, just remove it first before re-creating it.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Joe Van Dyk</dc:creator><pubDate>Mon, 16 May 2011 16:44:15 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-204669976</link><description>I use &lt;a href="https://gist.github.com/975295" rel="nofollow"&gt;https://gist.github.com/975295&lt;/a&gt;&lt;br&gt;&lt;br&gt;Should work with just sh (even though it uses bash) and works on any Linux or BSD variant.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">James Logsdon</dc:creator><pubDate>Mon, 16 May 2011 16:30:13 -0000</pubDate></item><item><title>Re: Why I use git and puppet to manage my dotfiles</title><link>http://www.jaxelson.com/blog/?p=63#comment-204657539</link><description>I don't understand... You've made each of your machines now dependent on this configuration management software, which is a pretty bloaty way to do something really simple.&lt;br&gt;&lt;br&gt;Rather than wasting half a day getting familiar with Puppet, why didn't you write a simple, portable {shell,python,ruby,lisp,whatever} function to do a readlink(1) comparison on a dotfile and its intended target, and update the link if they are not the same?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">greg</dc:creator><pubDate>Mon, 16 May 2011 16:03:50 -0000</pubDate></item><item><title>Re: My New Project: An Amino Acid Database</title><link>http://www.jaxelson.com/blog/?p=59#comment-85013585</link><description>Database... check, community participation... Seems like a well developed idea though.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jlonghidev</dc:creator><pubDate>Thu, 07 Oct 2010 16:30:45 -0000</pubDate></item><item><title>Re: Vimpterator Improvements</title><link>http://www.jaxelson.com/blog/?p=57#comment-77121334</link><description>Hey Hastarin, I just tried that and it still doesn't work. However, the same thing without the backslash works perfectly fine on gmail.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jaxelson</dc:creator><pubDate>Sun, 12 Sep 2010 15:46:43 -0000</pubDate></item><item><title>Re: Vimpterator Improvements</title><link>http://www.jaxelson.com/blog/?p=57#comment-77032164</link><description>I'm glad the post was of help.  Did you try escaping the * with a backslash for the * *a, etc?  &lt;br&gt;&lt;br&gt;Ie use \* \*a \*n \*r \*u</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hastarin</dc:creator><pubDate>Sun, 12 Sep 2010 02:34:30 -0000</pubDate></item></channel></rss>
