<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>sontek ( John M. Anderson )</title>
	
	<link>http://blog.sontek.net</link>
	<description>Use a pencil, lets not build another space pen.</description>
	<pubDate>Mon, 21 Jul 2008 23:39:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/sontek" type="application/rss+xml" /><item>
		<title>Firefox Plugin for Tomboy</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/342007776/</link>
		<comments>http://blog.sontek.net/2008/07/21/firefox-plugin-for-tomboy/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 23:39:02 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Tomboy]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=43</guid>
		<description><![CDATA[A great new Firefox plugin has been created that allows you to create new Tomboy notes from selected text in Firefox, check it out here.
]]></description>
			<content:encoded><![CDATA[<p>A great new Firefox plugin has been created that allows you to create new Tomboy notes from selected text in Firefox, check it out <a href="http://harrycoal.co.uk/tomfox/">here</a>.</p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=cjJ7tX"><img src="http://feeds.feedburner.com/~a/sontek?i=cjJ7tX" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/342007776" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/07/21/firefox-plugin-for-tomboy/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/07/21/firefox-plugin-for-tomboy/</feedburner:origLink></item>
		<item>
		<title>Advanced file permissions in Linux</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/326916890/</link>
		<comments>http://blog.sontek.net/2008/07/04/advanced-file-permissions-in-linux/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 21:06:21 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[GNOME]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[SUSE]]></category>

		<category><![CDATA[facl]]></category>

		<category><![CDATA[nautilus]]></category>

		<category><![CDATA[openSUSE]]></category>

		<category><![CDATA[permissions]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=42</guid>
		<description><![CDATA[A lot of Linux/openSUSE users aren&#8217;t aware that there are more to file system permissions than the obvious Owner, Group, Other / Read, Write, Execute setup.
All major Linux file systems (ext3, reiserfs, etc) support access control lists (ACL) and its very easy to use them.
To see if a file or directory has an ACL set [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of Linux/openSUSE users aren&#8217;t aware that there are more to file system permissions than the obvious Owner, Group, Other / Read, Write, Execute setup.</p>
<p>All major Linux file systems (ext3, reiserfs, etc) support access control lists (ACL) and its very easy to use them.</p>
<p>To see if a file or directory has an ACL set on it, you can use ls:</p>
<p><code>inspidell:~ # ls -ld /home/sontek</code></p>
<p>You&#8217;ll get output similar to this:</p>
<p><code>drwxr-xr-x+ 55 sontek users 4096 Jul  4 13:42 /home/sontek</code></p>
<p>The + at the end of the permissions means that we are using extended permissions (ACL&#8217;s). To get the list of ACL&#8217;s on the file/directory, run the getfacl &lt;file&gt; command.<br />
<code><br />
inspidell:~ # getfacl /home/sontek<br />
getfacl: Removing leading '/' from absolute path names<br />
# file: home/sontek<br />
# owner: sontek<br />
# group: users<br />
user::rwx<br />
group::r-x<br />
other::r-x<br />
default:user::rwx<br />
default:group:users:---<br />
default:mask::r-x<br />
default:other::r-x</code></p>
<p>This shows both the ACL&#8217;s and the basic Linux permissions.</p>
<p>To modify or set ACL&#8217;s you use the setfacl command. Here are a few examples of how to use it:</p>
<p><strong>Grant a single user read access to a directory in your home directory.</strong><code><br />
setfacl -m u:mom:r /home/sontek/photos</code></p>
<p><strong>Remove all access from a group on a file</strong><br />
<code>setfacl -x g:developers payroll.xml</code></p>
<p><strong>You can also copy a set of permissions from one file to another</strong><br />
<code>getfacl file1 | setfacl --set-file=- file2</code></p>
<p><strong>Remove all ACL&#8217;s</strong><br />
<code>setfacl -k /home/sontek</code></p>
<p>For those of you who are not console jockey&#8217;s, you&#8217;ll realize quickly that the default nautilus setup doesn&#8217;t have a way to view, modify, or add any ACL&#8217;s, to get this support you&#8217;ll need to install two packages, with opensuse you do this with zypper:</p>
<p><code>inspidell:~ # zypper in eiciel nautilus-eiciel</code></p>
<p>Before the ACL permissions show up in nautilus, you&#8217;ll have to restart it:</p>
<p><code>inspidell:~ # pkill nautilus</code></p>
<p>After this, you&#8217;ll be greeted with a very easy to use dialog for modifying ACL&#8217;s:<br />
<img src="http://sontek.net/blog_pictures/nautilus-facl-permissions.png" alt="Screenshot of FACL permissions" /></p>
<p>another great nautilus permissions tip I learned from <a href="http://ubuntu-tutorials.com/2008/06/09/enable-the-nautilus-advanced-permissions-dialog-in-ubuntu/">Christer Edwards</a> is to enable advanced permissions in nautilus, this is a much better UI for managing permissions and should probably be the default.</p>
<p><code>gconftool-2 --type bool --set /apps/nautilus/preferences/show_advanced_permissions True</code></p>
<p>A screenshot of this in action:</p>
<p><img src="http://sontek.net/blog_pictures/nautilus-advanced-permissions.png" alt="Screenshot of nautilus advanced permissions" /></p>
<p>I hope this helps you better secure and manage your computer with the more advanced features your Linux file systems both from console and inside GNOME.</p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=4skJvB"><img src="http://feeds.feedburner.com/~a/sontek?i=4skJvB" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/326916890" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/07/04/advanced-file-permissions-in-linux/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/07/04/advanced-file-permissions-in-linux/</feedburner:origLink></item>
		<item>
		<title>Get the changelog of a package with rpm</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/325108422/</link>
		<comments>http://blog.sontek.net/2008/07/02/get-the-changelog-of-a-package-with-rpm/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 09:59:30 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[RPM]]></category>

		<category><![CDATA[SUSE]]></category>

		<category><![CDATA[changelog]]></category>

		<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=40</guid>
		<description><![CDATA[Ever run system updates in Linux (i.e openSUSE) and get a package that doesn&#8217;t seem to be changed and wonder why the update was pushed? Or just interested in following the latest changes to some of your favorite Linux packages?
With rpm you can view all the latest changes in an easily to read format. To [...]]]></description>
			<content:encoded><![CDATA[<p>Ever run system updates in Linux (i.e openSUSE) and get a package that doesn&#8217;t seem to be changed and wonder why the update was pushed? Or just interested in following the latest changes to some of your favorite Linux packages?</p>
<p>With rpm you can view all the latest changes in an easily to read format. To get the changelog of a package with rpm you do the following:<br />
<code><br />
$ rpm -q --changelog &lt;package&gt; | less</code></p>
<p>replace &lt;package&gt; with whatever ever package you would like to see the changelog for (i.e rpm -q &#8211;changelog banshee-1 | less)</p>
<p>This is for rpm based Linux distributions (i.e openSUSE, Redhat)</p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=PtwdBu"><img src="http://feeds.feedburner.com/~a/sontek?i=PtwdBu" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/325108422" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/07/02/get-the-changelog-of-a-package-with-rpm/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/07/02/get-the-changelog-of-a-package-with-rpm/</feedburner:origLink></item>
		<item>
		<title>Get build dependencies with zypper</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/324659531/</link>
		<comments>http://blog.sontek.net/2008/07/01/get-build-dependencies-with-zypper/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 06:59:35 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[SUSE]]></category>

		<category><![CDATA[openSUSE]]></category>

		<category><![CDATA[zypper]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=39</guid>
		<description><![CDATA[When you are working with the source of a new package on openSUSE and aren&#8217;t familiar with all of its dependencies, it gets quite annoying running the normal Linux autconf commands&#8211;./autogen.sh, install missing dependency, rinse, wash, and repeat&#8211;until you finally have everything you need installed.
zypper makes this easy for us with the following command:
$ sudo [...]]]></description>
			<content:encoded><![CDATA[<p>When you are working with the source of a new package on openSUSE and aren&#8217;t familiar with all of its dependencies, it gets quite annoying running the normal Linux autconf commands&#8211;./autogen.sh, install missing dependency, rinse, wash, and repeat&#8211;until you finally have everything you need installed.</p>
<p>zypper makes this easy for us with the following command:</p>
<p><code>$ sudo zypper si -d &lt;package&gt;</code></p>
<p>You replace &lt;package&gt; with whatever package&#8217;s build dependencies you need.</p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=WJj6K8"><img src="http://feeds.feedburner.com/~a/sontek?i=WJj6K8" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/324659531" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/07/01/get-build-dependencies-with-zypper/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/07/01/get-build-dependencies-with-zypper/</feedburner:origLink></item>
		<item>
		<title>Windows Hater (in response to Linux Hater)</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/323890959/</link>
		<comments>http://blog.sontek.net/2008/06/30/windows-hater-in-response-to-linux-hater/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 06:59:36 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=41</guid>
		<description><![CDATA[So I&#8217;ve become a huge fan of Linux Haters blog because he makes some very valid points about Linux and the open source community in general and it got me thinking of why I moved from Windows to Linux in the first place.
Picture this, you just bought built a brand new computer and want to [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve become a huge fan of <a href="http://linuxhaters.blogspot.com/">Linux Haters</a> blog because he makes some very valid points about Linux and the open source community in general and it got me thinking of why I moved from Windows to Linux in the first place.</p>
<p>Picture this, you just bought built a brand new computer and want to install the brand spankin&#8217; new Windows Vista Ultimate, you plop down $300, and away you go! What does $300 get you? A bare minimum operating system with nothing but MS Paint and Media Player.</p>
<p>So you spend the next 45 minutes installing your bare minimum operating system, it takes 45 minutes because the initial install is 15gb, so by bare minimum I mean feature set, not file size. So after you get installed you try to use the Internet and realize that it didn&#8217;t detect any of your hardware (video, audio, network), so you spend the next 2 hours spidering through multiple vendor&#8217;s websites who all have their downloads/driver section in different areas.</p>
<p>Now you have all your drivers downloaded, you go to install them to find out that the majority of the installers only extracted the files to your disk, they didn&#8217;t install them, the installer did not tell you they were only extracting, nor did they tell you where they were extracting them to. So after searching your disk and finding the extracted files you go into the folder to figure out what needs to be done to install them, but that is a waste of time since the vendor didn&#8217;t feel the need to write a README file. Being the genius that you are, you right click on My Computer -&gt; Hardware -&gt; Device Manager (because that was an intuitive place to look, thats the first place I thought of going to install drivers!) and now you are prompted with a dialog with a list of &#8220;Unkown Device&#8221; with little exclamation point next them. What to do? Easy! You right click on it, go to properties -&gt; details and look at the very intuitive and easy to read string &#8220;PCI/VEN_1002&amp;DEV_AA08&amp;SUBSYS_AA081545&amp;REV_00\4&amp;1245FE7B&amp;0&amp;0108&#8243; and go to http://pciids.sf.net and search for each device so you can figure out what driver to install for it.</p>
<p>After you have all your device drivers installed and can utilize all your hardware, you&#8217;ll want to go to Windows Update to make sure your computer is completely secure. You run the first batch of updates and it asks you to reboot, when it comes back up it doesn&#8217;t tell you all your updates weren&#8217;t finished, but using your spidey sense, you know that couldn&#8217;t have been all! So you go back to windows update to find a whole mess of updates waiting for you, these ones will also ask you to reboot (and so will the next 3 or 4 groups of updates). Rebooting is good for your new system, gets it warmed up.</p>
<p>4 reboots and 230 updates later you decide you would like to edit some family photos for your Christmas postcards&#8211;no problem-Vista comes with the all powerful MS Paint, which can do everything you&#8217;d ever want to do, just check out what this guy did with it: <a href="http://www.techepics.com/files/beautiful_mspaint_artwork_t.jpg">MS Paint Skills!</a>.</p>
<p>Editing family photos was fun but now you would like to add everyones birthday to your calendar and setup some re-occurring tasks to remind you to take out the trash and pay bills on time, but you&#8217;ll soon have shut off notices and piled high garbage because there is no default calendaring program in Windows! But your boss will save the day, he just called and needs your latest TPS Report so you need go to open up your spreadsheet but you find out there is no spreadsheet program either, so you hike down to your local computer shop and plop down $300 for the office suite with the added benefit of having outlook (yay a Calendar for $300!!).</p>
<p>Spend the next 30 minutes to install Office (yes, office takes about as long to install as your whole operating system, but office is more powerful than your OS, so its O.K), after office is installed and you update your TPS report and send it to your boss you decide you&#8217;d like to create a vlog (Video Log) and post it on youtube, but as you&#8217;ll soon find out, Movie Maker isn&#8217;t going to be the easiest thing to locate.<a href="http://www.boingboing.net/2008/06/25/bill-gates-2003-flam.html">Bill Gates can&#8217;t even find it.</a></p>
<p>Six hundred dollars and 7 hours later you have an almost usable computer, you still can&#8217;t watch DIVX or DVDs, burn Audio CD&#8217;s, Balance your checkbook, Sync your phone to your calendar and e-mail, or entertain your children with any games but minesweeper or solitaire. You don&#8217;t even have a virus scan program yet!</p>
<p>I probably went around the block just to get next door, but my point is that after a simple 20 minute install of any popular Linux distribution I can do all of the things I&#8217;ve listed above. They come with the majority of hardware supported out of the box, an office suite (open office, abiword, gnumeric, evolution, etc), multiple graphic tools (gimp, inkscape), easy package manager that handles updates without multiple reboots (rpm, yum, yast, zypper, apt-get, package kit), video recording program (cheese), cd burner (Brasero, Wodim), lots of fun games, and the ability to balance your checkbook with GNU Cash.</p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=K0SYya"><img src="http://feeds.feedburner.com/~a/sontek?i=K0SYya" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/323890959" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/06/30/windows-hater-in-response-to-linux-hater/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/06/30/windows-hater-in-response-to-linux-hater/</feedburner:origLink></item>
		<item>
		<title>Find duplicate files by content not name</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/323822762/</link>
		<comments>http://blog.sontek.net/2008/06/30/find-duplicate-files-by-content-not-name/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 06:36:14 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=38</guid>
		<description><![CDATA[Today in IRC suseROCKS needed to find all duplicate files in a directory by their content, not by their file name, so we whipped up this fancy little 1 liner bash script to do the trick:
find . -type f -exec md5sum '{}' \; &#124; sort &#124; awk 'dup[$1]++{print $2}&#8217;
EDIT:
As Andreas suggested, using xargs instead of [...]]]></description>
			<content:encoded><![CDATA[<p>Today in IRC <a href="http://www.bryen.com/">suseROCKS</a> needed to find all duplicate files in a directory by their content, not by their file name, so we whipped up this fancy little 1 liner bash script to do the trick:</p>
<p><code>find . -type f -exec md5sum '{}' \; | sort | awk 'dup[$1]++{print $2}&#8217;</code></p>
<p>EDIT:</p>
<p>As Andreas suggested, using xargs instead of -exec is much faster, here is the updated command:</p>
<p><code>find . -type f -print0 | xargs -0 md5sum | sort | awk ‘dup[$1]++{print $2}’</code></p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=ccRgKw"><img src="http://feeds.feedburner.com/~a/sontek?i=ccRgKw" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/323822762" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/06/30/find-duplicate-files-by-content-not-name/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/06/30/find-duplicate-files-by-content-not-name/</feedburner:origLink></item>
		<item>
		<title>Achieve Zen with openSUSE 11.0 (i.e Get rid of pulse audio)</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/317668508/</link>
		<comments>http://blog.sontek.net/2008/06/22/achieve-zen-with-opensuse-110-ie-get-rid-of-pulse-audio/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 22:23:03 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[SUSE]]></category>

		<category><![CDATA[openSUSE]]></category>

		<category><![CDATA[pulseaudio]]></category>

		<category><![CDATA[zypper]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=37</guid>
		<description><![CDATA[I&#8217;ve been having a lot of stability issues with openSUSE 11.0 lately and the majority of them boiled down to audio.
Here is a list of a few:
1. VLC required root to have audio, wtf?
2. Sound would crash after listening to any audio for an extended period of time (music, video, flash).
3. If my audio crashed, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been having a lot of stability issues with openSUSE 11.0 lately and the majority of them boiled down to audio.</p>
<p>Here is a list of a few:</p>
<p>1. VLC required root to have audio, wtf?<br />
2. Sound would crash after listening to any audio for an extended period of time (music, video, flash).<br />
3. If my audio crashed, Firefox could not start up until I did rcalsasound restart<br />
4. Some videos were slow/choppy.</p>
<p>So, you are probably asking, how did I fix all these issues?</p>
<p><code>zypper rm alsa-plugins-pulse<br />
zypper addlock alsa-plugins-pulse</code></p>
<p>This removes the alsa plugin for pulse and locks it so it will never install again. Without the alsa plugin installed, the apps go back to using alsa directly. This has fixed every issue I&#8217;ve had with openSUSE 11.0 so far.</p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=iDlFnk"><img src="http://feeds.feedburner.com/~a/sontek?i=iDlFnk" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/317668508" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/06/22/achieve-zen-with-opensuse-110-ie-get-rid-of-pulse-audio/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/06/22/achieve-zen-with-opensuse-110-ie-get-rid-of-pulse-audio/</feedburner:origLink></item>
		<item>
		<title>Vim Tip: Use Ctrl-Space for omni and keyword completion.</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/310221979/</link>
		<comments>http://blog.sontek.net/2008/06/12/vim-tip-use-ctrl-space-for-omni-and-keyword-completion/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 07:19:38 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=36</guid>
		<description><![CDATA[Having Ctrl+Space for auto-completion is great because its a much more natural binding than the vim defaults.
Sometimes omni completion doesn&#8217;t find things properly (such as when searching in the current buffer), so I like to fall back to keyword completion if no results are found in omni-completion.
Put this in your .vimrc to get the same [...]]]></description>
			<content:encoded><![CDATA[<p>Having Ctrl+Space for auto-completion is great because its a much more natural binding than the vim defaults.</p>
<p>Sometimes omni completion doesn&#8217;t find things properly (such as when searching in the current buffer), so I like to fall back to keyword completion if no results are found in omni-completion.</p>
<p>Put this in your .vimrc to get the same effect:<br />
<code><br />
inoremap &lt;expr&gt; &lt;C-Space&gt; pumvisible() \|\| &amp;omnifunc == '' ?<br />
\ "\&lt;lt&gt;C-n&gt;" :<br />
\ "\&lt;lt&gt;C-x&gt;\&lt;lt&gt;C-o&gt;&lt;c-r&gt;=pumvisible() ?" .<br />
\ "\"\\&lt;lt&gt;c-n&gt;\\&lt;lt&gt;c-p&gt;\\&lt;lt&gt;c-n&gt;\" :" .<br />
\ "\" \\&lt;lt&gt;bs&gt;\\&lt;lt&gt;C-n&gt;\"\&lt;CR&gt;"<br />
imap &lt;C-@&gt; &lt;C-Space&gt;</code></p>
<p>This provides an even more powerful feel to the code completion in vim.</p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=nO5Hqd"><img src="http://feeds.feedburner.com/~a/sontek?i=nO5Hqd" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/310221979" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/06/12/vim-tip-use-ctrl-space-for-omni-and-keyword-completion/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/06/12/vim-tip-use-ctrl-space-for-omni-and-keyword-completion/</feedburner:origLink></item>
		<item>
		<title>Official OpenSUSE Forums</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/308589118/</link>
		<comments>http://blog.sontek.net/2008/06/09/official-opensuse-forums/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 06:00:26 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[SUSE]]></category>

		<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=35</guid>
		<description><![CDATA[Great news! The official openSUSE forums are finally here, combining the awesome communities from suseforums.net, suselinuxsupport.de and the openSUSE support forums at forums.novell.com.
If everyone could try to spend a half hour each day browsing the forums to help new users, it would benefit the whole community. openSUSE is growing fast and these forums fill a [...]]]></description>
			<content:encoded><![CDATA[<p>Great news! The official openSUSE forums are finally here, combining the awesome communities from suseforums.net, suselinuxsupport.de and the openSUSE support forums at forums.novell.com.</p>
<p>If everyone could try to spend a half hour each day browsing the forums to help new users, it would benefit the whole community. openSUSE is growing fast and these forums fill a huge gap in our community for new users.</p>
<p>Without further adieu, <a href="http://forums.opensuse.org/">http://forums.opensuse.org/</a></p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=1sw4ym"><img src="http://feeds.feedburner.com/~a/sontek?i=1sw4ym" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/308589118" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/06/09/official-opensuse-forums/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/06/09/official-opensuse-forums/</feedburner:origLink></item>
		<item>
		<title>openSUSE 11.0 RC2 - Please do final testing!</title>
		<link>http://feeds.feedburner.com/~r/sontek/~3/308540613/</link>
		<comments>http://blog.sontek.net/2008/06/09/opensuse-110-rc2-please-do-final-testing/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 04:25:19 +0000</pubDate>
		<dc:creator>sontek</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[SUSE]]></category>

		<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://blog.sontek.net/?p=33</guid>
		<description><![CDATA[Coolo was nice enough to leak us the RC2 LiveCD&#8217;s for openSUSE 11.0 RC2, please download and do final testing to make sure we have the best openSUSE release. Get them here
Features to test can be found here and as always, check most annoying bugs.
]]></description>
			<content:encoded><![CDATA[<p>Coolo was nice enough to leak us the RC2 LiveCD&#8217;s for openSUSE 11.0 RC2, please download and do final testing to make sure we have the best openSUSE release. Get them <a href="http://lists.opensuse.org/opensuse-factory/2008-06/msg00376.html">here</a></p>
<p>Features to test can be found <a href="http://en.opensuse.org/Testing:Features_11.0">here</a> and as always, check <a href="http://en.opensuse.org/Bugs:Most_Annoying_Bugs_11.0_dev">most annoying bugs.</a></p>

<p><a href="http://feeds.feedburner.com/~a/sontek?a=LyVGSy"><img src="http://feeds.feedburner.com/~a/sontek?i=LyVGSy" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/sontek/~4/308540613" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.sontek.net/2008/06/09/opensuse-110-rc2-please-do-final-testing/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.sontek.net/2008/06/09/opensuse-110-rc2-please-do-final-testing/</feedburner:origLink></item>
	</channel>
</rss>
