<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>adrianlikins.com &#187; fedora</title>
	<atom:link href="http://adrianlikins.com/category/software/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://adrianlikins.com</link>
	<description></description>
	<lastBuildDate>Wed, 06 Jul 2011 03:34:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>git diff like highlighting of extra whitespace in vim and emacs</title>
		<link>http://adrianlikins.com/2011/06/git-diff-like-highlighting-of-extra-whitespace-in-vim-and-emacs/</link>
		<comments>http://adrianlikins.com/2011/06/git-diff-like-highlighting-of-extra-whitespace-in-vim-and-emacs/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 16:43:39 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=2261</guid>
		<description><![CDATA[via Jim Meyering via coreutils list Some configs for vim and emacs to show trailing whitespace and other whitespace anomalies. vim config let c_space_errors=1 highlight RedundantSpaces ctermbg=red guibg=red match RedundantSpaces /\s\+$\&#124; \+\ze\t/ Emacs needs the Whitespace mode from http://www.emacswiki.org/emacs/WhiteSpace The &#8230; <a href="http://adrianlikins.com/2011/06/git-diff-like-highlighting-of-extra-whitespace-in-vim-and-emacs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>via <a href="http://meyering.net/">Jim Meyering</a> via <a href="http://www.mail-archive.com/bug-coreutils@gnu.org/msg15573.html">coreutils list</a></p>
<p>Some configs for vim and emacs to show trailing whitespace and other whitespace anomalies.</p>
<p>vim config<br />
<code><br />
let c_space_errors=1<br />
highlight RedundantSpaces ctermbg=red guibg=red<br />
match RedundantSpaces /\s\+$\| \+\ze\t/</code></p>
<p>Emacs needs the Whitespace mode from <a href="http://www.emacswiki.org/emacs/WhiteSpace">http://www.emacswiki.org/emacs/WhiteSpace</a></p>
<p>The default config is a bit overboard for me, so I use something more like:<br />
<code><br />
;http://www.emacswiki.org/emacs/WhiteSpace<br />
(require 'whitespace)<br />
(autoload 'global-whitespace-mode           "whitespace" "Toggle whitespace visualization."        t)<br />
(autoload 'global-whitespace-toggle-options "whitespace" "Toggle local `whitespace-mode' options." t)</p>
<p>;turn on the more or less git diff --color whitespace highlighting<br />
(setq whitespace-space whitespace-style (quote (face tabs trailing space-before-tab newline empty space-after-tab indentation)))<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/06/git-diff-like-highlighting-of-extra-whitespace-in-vim-and-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gitconfig</title>
		<link>http://adrianlikins.com/2011/05/gitconfig/</link>
		<comments>http://adrianlikins.com/2011/05/gitconfig/#comments</comments>
		<pubDate>Sat, 14 May 2011 21:14:13 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[free culture]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=649</guid>
		<description><![CDATA[I finally started organizing the various git commands and aliases I use alot, and published them to github. My gitconfig repo. Some of these are useful only for projects similar to mine (fedora, tito based, bugzilla, etc) but I think &#8230; <a href="http://adrianlikins.com/2011/05/gitconfig/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I finally started organizing the various git commands and aliases I use alot, and published them to github. My <a href="https://github.com/alikins/gitconfig">gitconfig</a> repo.</p>
<p>Some of these are useful only for projects similar to mine (fedora, <a href="http://rm-rf.ca/tito">tito based</a>, bugzilla, etc) but I think some of then are generally useful.</p>
<p>A few favorites:<br />
<code># commits not pushed to $1<br />
unpushed = cherry -v</code></p>
<p><code># ignore po files in "git log", sorry translators ;-&lt;<br />
slog = "!sh -c 'git log --no-merges $1 `ls | grep -v ^po`' -"</p>
<p># what tag contains the sha<br />
whatrelease = name-rev --name-only</p>
<p># what branch contains the sha<br />
contains = branch --contains</p>
<p># what got pushed to master in the last hour<br />
#  based on http://stackoverflow.com/questions/3357219/expose-the-date-a-commit-was-pushed-to-a-repository<br />
justpushed = log origin/master@{\"1 hour ago\"}..origin/master --</p>
<p># show a list of branches sorted by time of last commit<br />
brage =  "!sh -c 'for C in $(git for-each-ref --sort=committerdate refs/heads --format=\"%(refname:short)\") ; do git show -s pretty=format:\"%Cgreen%ci %Cblue%cr%Creset  $C\" \"$C\" -- ; done'"</p>
<p># show a list of tags sorted by when they were tagged<br />
tagage = "!sh -c 'git for-each-ref --sort=taggerdate refs/tags --format=\"%(refname:short)\"'"</p>
<p># show a list of every branch and show there latests commit, sorted by last commit<br />
brlog = "!sh -c 'for C in $(git for-each-ref --sort=committerdate refs/heads --format=\"%(refname:short)\") ; do git show -s --pretty=format:\"%Cgreen%ci %Cblue%cr%Creset  $C\" \"$C\" -- ; git show  -s $C ; echo; done'"</p>
<p># needs python-bugzilla, and git-showbugs<br />
openbugs = showbugs -s NEW,ASSIGNED,NEEDINFO,FAILS_QA,REOPENED,ON_DEV<br />
closedbugs = showbugs -s PASSES_QA,VERIFIED,RELEASE_PENDING,CLOSED</p>
<p></code></p>
<p><code># show a list of files with bug fixes in them, sorted by popularity of occurance<br />
#  aka, list the buggy files<br />
buggyfiles = !"git log --format=\"format:%n\" --grep \"^[[:digit:]]\\+:\" --name-only | grep .  | sort | uniq -c | sort -n"<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/05/gitconfig/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ring ring, fedoraphone!</title>
		<link>http://adrianlikins.com/2009/04/ring-ring-fedoraphone/</link>
		<comments>http://adrianlikins.com/2009/04/ring-ring-fedoraphone/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 18:34:34 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=520</guid>
		<description><![CDATA[I managed to get one of my machines installed with a os version I didn&#8217;t want, and no way to change it. Normally, this means it&#8217;s time to koan/cobbler to get it re-provisioned. But I couldn&#8217;t log into the machine &#8230; <a href="http://adrianlikins.com/2009/04/ring-ring-fedoraphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I managed to get one of my machines installed with a os version I didn&#8217;t want, and no way to change it. Normally, this means it&#8217;s time to koan/cobbler to get it re-provisioned. But I couldn&#8217;t log into the machine to do anything. I could of reinstalled it from a cd/dvd, but I hate burning cd/dvd&#8217;s for that. I could of written an image to usb key and installed from that, but I didn&#8217;t have any with me.</p>
<p>So I decided to try what <a href="http://www.awe.com/mark/blog/20090330.html">Mark Cox</a>; did and try to boot it from my phone. I more or less just followed the steps he mentioned, though I had to get some 3rd party software to expose the storage card as a usb device.</p>
<p>But that aside, it worked. Not the fastest way to boot, but it got the live image running so I could do a hard drive install.  Kind of cool. Wonder if there is anyway to support i386/x86_64 live images on the same card?</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/04/ring-ring-fedoraphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

