<?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>Kevin Deldycke &#187; konqueror</title> <atom:link href="http://kevin.deldycke.com/tag/konqueror/feed/" rel="self" type="application/rss+xml" /><link>http://kevin.deldycke.com</link> <description>Free software engineer &#38; wannabe videomaker</description> <lastBuildDate>Fri, 03 Feb 2012 19:08:27 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Web commands</title><link>http://kevin.deldycke.com/2010/03/web-commands/</link> <comments>http://kevin.deldycke.com/2010/03/web-commands/#comments</comments> <pubDate>Fri, 26 Mar 2010 16:08:36 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[certificate]]></category> <category><![CDATA[CLI]]></category> <category><![CDATA[HTML]]></category> <category><![CDATA[KDE]]></category> <category><![CDATA[konqueror]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[openssl]]></category> <category><![CDATA[RSA]]></category> <category><![CDATA[ssl]]></category> <category><![CDATA[wget]]></category> <category><![CDATA[x509]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=1257</guid> <description><![CDATA[Download a web page an all its requisites: Create a PNG image of a rendered html page: Search in all files malformed HTML entities (in this case non-breakable spaces that doesn&#8217;t end with a semicolon): Here is a one-liner I &#8230; <a href="http://kevin.deldycke.com/2010/03/web-commands/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<ul><li>Download a web page an all its requisites:<pre class="brush: bash; title: ; notranslate">
wget -r -p -nc -nH --level=1 http://pypi.python.org/simple/python-ldap/
</pre></li><li>Create a PNG image of a rendered html page:<pre class="brush: bash; title: ; notranslate">
kwebdesktop 1024 768 capture.png http://slashdot.org/
</pre></li><li>Search in all files malformed HTML entities (in this case non-breakable spaces that doesn&#8217;t end with a semicolon):<pre class="brush: bash; title: ; notranslate">
grep -RIi --extended-regexp '&amp;nbsp[^;]' ./
</pre></li><li>Here is a one-liner I use to ping some pages on internet to force our corporate proxy to refresh its internal cache:<pre class="brush: bash; title: ; notranslate">
for EGG in BeautifulSoup PIL Plone; do wget --server-response -O /dev/null http://pypi.python.org/simple/$EGG/; done
</pre></li><li>Create a minimal self-signed unencrypted SSL certificate without issuer information and a validity period of 10 years:<pre class="brush: bash; title: ; notranslate">
openssl req -x509 -nodes -subj '/' -days 3650 -newkey rsa:2048 -keyout self-signed.pem -out self-signed.pem
</pre></li><li>Create a pair of SSL self-signed certificate and (unencrypted) private key (<a href="http://devsec.org/info/ssl-cert.html">source</a>):<pre class="brush: bash; title: ; notranslate">
openssl genrsa -out private.key 2048
openssl req -new -subj '/' -key private.key -out certreq.csr
openssl x509 -req -days 3650 -in certreq.csr -signkey private.key -out self-signed.pem
rm certreq.csr
</pre></li><li>View certificate details:<pre class="brush: bash; title: ; notranslate">
openssl x509 -noout -text -in self-signed.pem
</pre></li></ul> ]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2010/03/web-commands/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>How-to Block Ads in Konqueror</title><link>http://kevin.deldycke.com/2007/04/how-to-block-ads-in-konqueror/</link> <comments>http://kevin.deldycke.com/2007/04/how-to-block-ads-in-konqueror/#comments</comments> <pubDate>Tue, 17 Apr 2007 18:07:57 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[ad]]></category> <category><![CDATA[KDE]]></category> <category><![CDATA[konqueror]]></category> <category><![CDATA[Linux]]></category><guid isPermaLink="false">http://kevin.deldycke.com/2007/04/how-to-block-ads-in-konqueror/</guid> <description><![CDATA[Starting from version 3.5, Konqueror feature an ad blocker mechanism based on regular expressions. Here is a little how-to to help you install an efficient filter set. Dowload the latest Filterset.G regexp set. The file which contain all rules is &#8230; <a href="http://kevin.deldycke.com/2007/04/how-to-block-ads-in-konqueror/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Starting from version 3.5, <a href="http://www.konqueror.org">Konqueror</a> feature an ad blocker mechanism based on regular expressions. Here is a little how-to to help you install an efficient filter set.</p><p><a href="http://kevin.deldycke.com/wp-content/uploads/2007/04/konqueror-ad-block-filter1.png"><img src="http://kevin.deldycke.com/wp-content/uploads/2007/04/konqueror-ad-block-filter1-300x211.png" alt="" title="Konqueror AdBlocks filter configuration panel" width="300" height="211" class="aligncenter size-medium wp-image-2322" /></a></p><ol><li>Dowload the latest <a href="http://www.pierceive.com">Filterset.G</a> regexp set. The file which contain all rules is located at <a href="http://www.pierceive.com/filtersetg/">http://www.pierceive.com/filtersetg/</a> under the name <code>YYYY-MM-DD.txt</code>.</li><li>Go to <code>Settings</code> > <code>Configure Konqueror...</code> menu.</li><li>Then go to <code>AdBlock Filters</code> panel (the one on the screenshot).</li><li>Check both <code>Enable filters</code> and <code>Hide filtered images</code> options.</li><li>Use the <code>Import...</code> button to load the &#8220;Filterset.G&#8221; file you previoulsy downloaded</li><li>Enjoy ad-free web sites !</li></ol><p>By the way, I hope to see the <a href="http://bugs.kde.org/show_bug.cgi?id=143495">feature suggested by Andreas Frische</a> to get some attention by the Konqueror community: it would be nice to have an integrated auto-updater of filter set in Konqueror (and make this how-to deprecated).</p> ]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2007/04/how-to-block-ads-in-konqueror/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Konqueror config file: disable menu bar</title><link>http://kevin.deldycke.com/2006/08/konqueror-config-file-disable-menu-bar/</link> <comments>http://kevin.deldycke.com/2006/08/konqueror-config-file-disable-menu-bar/#comments</comments> <pubDate>Wed, 30 Aug 2006 22:49:48 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[KDE]]></category> <category><![CDATA[kmail]]></category> <category><![CDATA[konqueror]]></category> <category><![CDATA[Linux]]></category><guid isPermaLink="false">http://kevin.deldycke.com/2006/08/konqueror-config-file-disable-menu-bar/</guid> <description><![CDATA[To disable the menu bar in konqueror, you have a specific action in menus. If you want to do this by hand, just add the following directive in your ~/.kde/share/config/konquerorrc file: This tip is interresting because you can also apply &#8230; <a href="http://kevin.deldycke.com/2006/08/konqueror-config-file-disable-menu-bar/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>To disable the menu bar in <a href="http://www.konqueror.org">konqueror</a>, you have a specific action in menus. If you want to do this by hand, just add the following directive in your <code>~/.kde/share/config/konquerorrc</code> file:</p><pre class="brush: plain; title: ; notranslate">
[KonqMainWindow]
MenuBar=Disabled
</pre><p>This tip is interresting because you can also apply it for any KDE application that doesn&#8217;t support this feature.</p><p>For exemple, in <a href="http://kmail.kde.org">kmail</a>, you can add the &#8220;<code>MenuBar=Disabled</code>&#8221; statement in &#8220;<code>[Main Window]</code>&#8221; section: this will have the same effect as in konqueror.</p> ]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2006/08/konqueror-config-file-disable-menu-bar/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/19 queries in 0.009 seconds using apc
Object Caching 619/654 objects using apc

Served from: kevin.deldycke.com @ 2012-02-08 10:54:26 -->
