<?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>Jean-Etienne&#039;s blog &#187; Work</title>
	<atom:link href="http://www.jepoirrier.net/blog/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jepoirrier.net/blog</link>
	<description>A blog about free software, computer science and probably everything else too ...</description>
	<lastBuildDate>Sun, 29 Aug 2010 20:06:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Awk oneliner to find a string in text files</title>
		<link>http://www.jepoirrier.net/blog/2008/12/awk-oneliner-to-find-a-string-in-text-files/</link>
		<comments>http://www.jepoirrier.net/blog/2008/12/awk-oneliner-to-find-a-string-in-text-files/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 22:00:08 +0000</pubDate>
		<dc:creator>Jean-Etienne</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.epot.org/blog/?p=292</guid>
		<description><![CDATA[If you want to know the name of files containing a special string, grep -c is your friend. But you also get names of files not containing your string (with count = 0). If you only want the names of files containing &#8220;mystring&#8221;, awk can help you: grep -c "mystring" * &#124; awk ' !/:0/ [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to know the name of files containing a special string, <code>grep -c</code> is your friend. But you also get names of files <em>not</em> containing your string (with count = 0). If you only want the names of files containing &#8220;mystring&#8221;, <code>awk</code> can help you:</p>
<p align="center"><code>grep -c "mystring" * | awk ' !/:0/ '</code></p>
<p>And if you don&#8217;t even want the number of times &#8220;mystring&#8221; appears (on 1 line):</p>
<p align="center"><code>grep -c "mystring" * | awk ' !/:0/ '| awk '{split($0, a, ":"); print a[1]}'</code></p>
<p>Any other ideas?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jepoirrier.net/blog/2008/12/awk-oneliner-to-find-a-string-in-text-files/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Firefox 3.0 + Flash on a protected Windows PC</title>
		<link>http://www.jepoirrier.net/blog/2008/06/firefox-30-flash-on-a-protected-windows-pc/</link>
		<comments>http://www.jepoirrier.net/blog/2008/06/firefox-30-flash-on-a-protected-windows-pc/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 17:40:17 +0000</pubDate>
		<dc:creator>Jean-Etienne</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.epot.org/blog/?p=260</guid>
		<description><![CDATA[Very often, your company doesn&#8217;t allow you to install a new software on your company computer. For this purpose, Portable Apps is a very interesting website: it contains a lot of free software ready to be used, without any installation process. Moreover, it releases latest version of software very quickly. For example, 1 or 2 [...]]]></description>
			<content:encoded><![CDATA[<p>Very often, your company doesn&#8217;t allow you to install a new software on your company computer. For this purpose, <a href="http://portableapps.com/">Portable Apps</a> is a very interesting website: it contains a lot of free software ready to be used, without any installation process. Moreover, it releases latest version of software very quickly. For example, 1 or 2 days after the launch of Mozilla <a href="http://www.mozilla-europe.org/en/firefox/">Firefox 3.0</a>, it was already in Portable Apps.</p>
<p>Most Firefox plugins (&#8220;<a href="https://addons.mozilla.org/en-US/firefox/">add-ons</a>&#8220;) can be installed in the Portable apps version of Firefox, but not all of them. The Adobe <a href="http://www.adobe.com/products/flashplayer/">Flash plugin</a> is one of the few ones that you can&#8217;t install without administrator rights &#8230;</p>
<p>Unless your company installed Firefox 2.x on your computer with the Flash plug-in. If it&#8217;s the case, you have just to copy two files from the 2.x install to the 3.0 one :</p>
<p>Go to your &#8220;old&#8221; Firefox plugins directory, for example: <code>C:\Program Files\Mozilla Firefox\plugins\</code>. Then copy these 2 files: <code>NPSWF32.dll</code> and <code>NPSWF32_FlashUtil.exe</code> to your Portable Firefox directory, like: <code>FirefoxPortable\App\firefox\plugins\</code>. Now re-start Firefox 3.0 &#8230; Voilà!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jepoirrier.net/blog/2008/06/firefox-30-flash-on-a-protected-windows-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I can&#8217;t read my blog</title>
		<link>http://www.jepoirrier.net/blog/2008/06/i-cant-read-my-blog/</link>
		<comments>http://www.jepoirrier.net/blog/2008/06/i-cant-read-my-blog/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 22:47:36 +0000</pubDate>
		<dc:creator>Jean-Etienne</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[ban]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[censorship]]></category>
		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://www.epot.org/blog/?p=257</guid>
		<description><![CDATA[At least from my office. Sadly true since one of the rules of my company proxy server bans all URLs with the letters &#8220;blog&#8221; inside (no blogger.com, blogspot, &#8230; websites either). Fortunately, there are a lot of web-based feed aggregators (which are not &#8212; not yet? &#8212; banned). It also blocks all URLs with the [...]]]></description>
			<content:encoded><![CDATA[<p>At least from my office. Sadly true <img src='http://www.jepoirrier.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  since one of the rules of my company proxy server bans all URLs with the letters &#8220;blog&#8221; inside (no blogger.com, blogspot, &#8230; websites either). Fortunately, there are a lot of <a href="http://en.wikipedia.org/wiki/List_of_feed_aggregators#Web_based_.28hosted.29">web-based feed aggregators</a> (which are not &#8212; not yet? &#8212; banned). It also blocks all URLs with the &#8220;exe&#8221; string so we are not able to visit the Belgian Post website (it uses an URL containing &#8220;outletlocator.exe&#8221;) ; I didn&#8217;t find any bypass yet.</p>
<p><center><img src="http://www.jepoirrier.net/blogimages/080530-banned-blog-cw2.jpg" alt="Banned blog by ISA server" border="1" /></center></p>
<p><small>Btw, with their message, we know they use <a href="http://en.wikipedia.org/wiki/Microsoft_Internet_Security_and_Acceleration_Server">Microsoft ISA Server</a> as a proxy &#8230;</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jepoirrier.net/blog/2008/06/i-cant-read-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
