<?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> &#187; VI</title>
	<atom:link href="http://raffy.ch/blog/category/vi/feed/" rel="self" type="application/rss+xml" />
	<link>http://raffy.ch/blog</link>
	<description>Log visualization and log management as seen by Raffael Marty</description>
	<lastBuildDate>Wed, 28 Jul 2010 02:04:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Applied Security Visualization &#8211; I Have a Book Cover!</title>
		<link>http://raffy.ch/blog/2008/04/01/applied-security-visualization-i-have-a-book-cover/</link>
		<comments>http://raffy.ch/blog/2008/04/01/applied-security-visualization-i-have-a-book-cover/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 22:56:22 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Log Analysis]]></category>
		<category><![CDATA[Security Article Reviews]]></category>
		<category><![CDATA[Security Information Management]]></category>
		<category><![CDATA[VI]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/2008/04/01/applied-security-visualization-i-have-a-book-cover/</guid>
		<description><![CDATA[Thanks to the design department at Addison Wesley, I have a proposal for a cover page of my upcoming book:


This is really exciting. I have been working on the book for over a year now and finally it seems that the end is in sight. I have three chapters completely done and they should appear [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to the design department at Addison Wesley, I have a proposal for a cover page of my upcoming book:</p>
<p><a href="http://raffy.ch/blog/wp-content/uploads/2008/04/0321510100_marty_comp.jpg" title="0321510100_marty_comp.jpg"></a></p>
<p style="text-align: center"><a href="http://raffy.ch/blog/wp-content/uploads/2008/04/0321510100_marty_comp.jpg" style="color: black" title="Applied Security Visualization"><img src="http://raffy.ch/blog/wp-content/uploads/2008/04/0321510100_marty_comp.jpg" alt="Applied Security Visualization" border="1" width="400" /></a></p>
<p>This is really exciting. I have been working on the book for over a year now and finally it seems that the end is in sight. I have three chapters completely done and they should appear in a rough-cuts program, as an electronic pre-version, very soon (next three weeks). Another three chapters I got back from my awesome review committee and then there are three chapters I still have to finish writing.</p>
<p><strong>Applied Security Visualization</strong> should be available by Black Hat at the beginning of August. I will do anything I can to get it out by then.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/applied+security+visualization" rel="tag">applied security visualization</a>, <a href="http://technorati.com/tag/security+visualization" rel="tag"> security visualization</a>, <a href="http://technorati.com/tag/visualization" rel="tag"> visualization</a>, <a href="http://technorati.com/tag/security" rel="tag"> security</a>, <a href="http://technorati.com/tag/applied" rel="tag"> applied</a></p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2008/04/01/applied-security-visualization-i-have-a-book-cover/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VIM 7</title>
		<link>http://raffy.ch/blog/2007/01/28/vim-7/</link>
		<comments>http://raffy.ch/blog/2007/01/28/vim-7/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 00:01:58 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[VI]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/2007/01/28/vim-7/</guid>
		<description><![CDATA[I haven&#8217;t written about VIM in a long time. Although I am using the editor daily. Finally, I fixed some HTML errors on the VIM page and added some comments about the new features in Version 7 of VIM.
]]></description>
			<content:encoded><![CDATA[<div align="left">I haven&#8217;t written about VIM in a long time. Although I am using the editor daily. Finally, I fixed some HTML errors on the <a target="_top" href="http://raffy.ch/projects/vim%20%20%20%20%20%20%20%20.html">VIM</a> page and added some comments about the new features in Version 7 of VIM.</div>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2007/01/28/vim-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Random Data To Files</title>
		<link>http://raffy.ch/blog/2005/12/06/adding-random-things/</link>
		<comments>http://raffy.ch/blog/2005/12/06/adding-random-things/#comments</comments>
		<pubDate>Tue, 06 Dec 2005 06:30:32 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[VI]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=7</guid>
		<description><![CDATA[I find myself adding data to files that need to be randomized. Well, just call awk from within vi and use the rand() function
:%!awk &#8216;BEGIN {srand()}; {if (int(rand()*4)==2) {printf(&#8221;\%s,S\n&#8221;,$0)} else print $0;}&#8217; 
Maybe even a bit more comfortable AND this only adds to the lines if they don&#8217;t use SA, S or F
:%!awk &#8216;BEGIN {srand()} [...]]]></description>
			<content:encoded><![CDATA[<p>I find myself adding data to files that need to be randomized. Well, just call awk from within vi and use the rand() function</p>
<p>:%!awk &#8216;BEGIN {srand()}; {if (int(rand()*4)==2) {printf(&#8221;\%s,S\n&#8221;,$0)} else print $0;}&#8217; </p>
<p>Maybe even a bit more comfortable AND this only adds to the lines if they don&#8217;t use SA, S or F</p>
<p>:%!awk &#8216;BEGIN {srand()} \!/(SA|S|F)$/ {if (int(rand()*4)==2) {sub(/$/,&#8221;FA&#8221;);}};{print}&#8217; </p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2005/12/06/adding-random-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Text To Special Lines</title>
		<link>http://raffy.ch/blog/2005/12/06/adding-text-to-special-lines/</link>
		<comments>http://raffy.ch/blog/2005/12/06/adding-text-to-special-lines/#comments</comments>
		<pubDate>Tue, 06 Dec 2005 06:22:55 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[VI]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=6</guid>
		<description><![CDATA[I need to remember this one: 
:g/some text/s/$/,more_data
This will add another column of data to all the lines with &#8220;some text&#8221;. Simple but useful.
]]></description>
			<content:encoded><![CDATA[<p>I need to remember this one: </p>
<p>:g/some text/s/$/,more_data</p>
<p>This will add another column of data to all the lines with &#8220;some text&#8221;. Simple but useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2005/12/06/adding-text-to-special-lines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
