<?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</title> <atom:link href="http://kevin.deldycke.com/feed/" rel="self" type="application/rss+xml" /><link>http://kevin.deldycke.com</link> <description>Free software engineer &#38; wannabe videomaker</description> <lastBuildDate>Wed, 16 May 2012 09:40:49 +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>How-To Backup Gmail with OfflineImap</title><link>http://kevin.deldycke.com/2012/05/backup-gmail-offlineimap/</link> <comments>http://kevin.deldycke.com/2012/05/backup-gmail-offlineimap/#comments</comments> <pubDate>Tue, 15 May 2012 10:24:12 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Backup]]></category> <category><![CDATA[E-mail]]></category> <category><![CDATA[gmail]]></category> <category><![CDATA[IMAP]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[maildir]]></category> <category><![CDATA[Python]]></category> <category><![CDATA[ssl]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4820</guid> <description><![CDATA[Gmail&#8217;s content can be retrieved via IMAP, and we&#8217;ll use this way to backup all our mails thanks to OfflineImap, a generic IMAP synchronization utility. Let&#8217;s start by creating a dedicated configuration file in your home directory. Its content is &#8230; <a href="http://kevin.deldycke.com/2012/05/backup-gmail-offlineimap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Gmail&#8217;s content can be retrieved via IMAP, and we&#8217;ll use this way to backup all our mails thanks to <a href="http://offlineimap.org">OfflineImap</a>, a generic IMAP synchronization utility.</p><p>Let&#8217;s start by creating a dedicated configuration file in your home directory. Its content is quite straight-forward, as you can see in my <code>/home/kevin/.offlineimaprc</code>, which backup two Gmail accounts:</p><pre class="brush: plain; title: ; notranslate">
[general]
accounts = gmail_account1, gmail_account2
maxsyncaccounts = 3
ui = Noninteractive.Basic

[Account gmail_account1]
localrepository = gmail_account1_local
remoterepository = gmail_account1_remote

[Repository gmail_account1_local]
type = Maildir
localfolders = ~/gmail-backup-account1

[Repository gmail_account1_remote]
type = IMAP
remotehost = imap.gmail.com
remoteport = 993
remoteuser = account1@gmail.com
remotepass = XXXXXXXX
ssl = yes
maxconnections = 1
realdelete = no
folderfilter = lambda foldername: foldername not in ['[Gmail]/%s' % f for f in ['All Mail', 'Trash', 'Spam', 'Starred', 'Important']]

[Account gmail_account2]
localrepository = gmail_account2_local
remoterepository = gmail_account2_remote

[Repository gmail_account2_local]
type = Maildir
localfolders = ~/gmail-backup-account2

[Repository gmail_account2_remote]
type = IMAP
remotehost = imap.gmail.com
remoteport = 993
remoteuser = account2@gmail.com
remotepass = XXXXXXXX
ssl = yes
maxconnections = 1
realdelete = no
folderfilter = lambda foldername: foldername not in ['[Gmail]/%s' % f for f in ['All Mail', 'Trash', 'Spam', 'Starred', 'Important']]
</pre><p>Notice how we use a Python lambda expressions to <a href="http://readthedocs.org/docs/offlineimap/en/latest/nametrans.html#folderfilter">filter out</a> some Gmail&#8217;s virtual folders.</p><p>Then all you have to do is to launch the <code>offlineimap</code> command-line itself with the right user, for example in a <code>cron</code> job:</p><pre class="brush: plain; title: ; notranslate">
00 20 * * * kevin offlineimap
</pre><p>A final warning: OfflineImap is fully bi-directional. This mean local deletion propagates to the remote server. This is can be quite dangerous so be careful not touching your local folders. If for any reason you&#8217;d like to reset your backups, stop OfflineImap processes first, then remove its cache folder (<code>~/.offlineimap/</code>) before removing the local folders themselves  (<code>~/gmail-backup-account*</code>).</p><p>Also, intensively playing with OfflineImap to adjust its configuration may trigger the infamous Gmail&#8217;s &#8220;Temporary Error 500&#8243;. In this case don&#8217;t panic: it seems to be a common Gmail&#8217;s auto-immune response against suspect activity. It happened to me and in the end my account and mails were safe: I just had to wait a few hours to let it resume normal operations.</p><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2007/11/how-to-import-a-maildir-folder-to-kmail/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2007/11/kmail-no-sub-folders.png" alt="How-to import a Maildir++ folder to Kmail" title="How-to import a Maildir++ folder to Kmail" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2007/11/how-to-import-a-maildir-folder-to-kmail/" rel="bookmark" class="crp_title">How-to import a Maildir++ folder to Kmail</a></li><li><a href="http://kevin.deldycke.com/2008/11/google-apps-video-chat-comes-with-secure-gmail-sessions/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2008/11/gmail-force-https.png" alt="Google Apps&#8217; video chat comes with secure Gmail sessions" title="Google Apps&#8217; video chat comes with secure Gmail sessions" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2008/11/google-apps-video-chat-comes-with-secure-gmail-sessions/" rel="bookmark" class="crp_title">Google Apps&#8217; video chat comes with secure Gmail sessions</a></li><li><a href="http://kevin.deldycke.com/2010/09/ultimate-guide-lotus-notes-mail-migration/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2010/06/missing-lotus-notes-imap-template-300x219.png" alt="Ultimate guide of Lotus Notes mail migration" title="Ultimate guide of Lotus Notes mail migration" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2010/09/ultimate-guide-lotus-notes-mail-migration/" rel="bookmark" class="crp_title">Ultimate guide of Lotus Notes mail migration</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/05/backup-gmail-offlineimap/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>VirtualBox commands</title><link>http://kevin.deldycke.com/2012/05/virtualbox-commands/</link> <comments>http://kevin.deldycke.com/2012/05/virtualbox-commands/#comments</comments> <pubDate>Tue, 08 May 2012 10:42:59 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[disk]]></category> <category><![CDATA[image]]></category> <category><![CDATA[VirtualBox]]></category> <category><![CDATA[virtualization]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4570</guid> <description><![CDATA[Clone a virtual disk image: Resize a virtual disk image to 20 Gb: Related contentQemu commandsHow-to grow any Qemu system imageImage Processing commands]]></description> <content:encoded><![CDATA[<ul><li>Clone a virtual disk image:<pre class="brush: bash; title: ; notranslate">
VBoxManage clonehd original-disk.vdi copy.vdi
</pre></li><li>Resize a virtual disk image to 20 Gb:<pre class="brush: bash; title: ; notranslate">
VBoxManage modifyhd disk.vdi --resize 20000
</pre></li></ul><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2005/06/qemu-commands/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="Qemu commands" title="Qemu commands" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2005/06/qemu-commands/" rel="bookmark" class="crp_title">Qemu commands</a></li><li><a href="http://kevin.deldycke.com/2007/04/how-to-grow-any-qemu-system-image/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2007/04/growed-image1-300x233.png" alt="How-to grow any Qemu system image" title="How-to grow any Qemu system image" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2007/04/how-to-grow-any-qemu-system-image/" rel="bookmark" class="crp_title">How-to grow any Qemu system image</a></li><li><a href="http://kevin.deldycke.com/2006/12/image-processing-commands/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="Image Processing commands" title="Image Processing commands" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2006/12/image-processing-commands/" rel="bookmark" class="crp_title">Image Processing commands</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/05/virtualbox-commands/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>JavaScript commands</title><link>http://kevin.deldycke.com/2012/05/javascript-commands/</link> <comments>http://kevin.deldycke.com/2012/05/javascript-commands/#comments</comments> <pubDate>Tue, 01 May 2012 10:14:45 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[javascript]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[Web]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4797</guid> <description><![CDATA[Print a message in the console: Add a breakpoint: Related contentHow-to monkey-patch OpenERP&#8217;s native JavascriptHow-to add Google Analytics tracking to ZenphotoEnttec DMX-USB firmware upgrade with Qemu]]></description> <content:encoded><![CDATA[<ul><li>Print a message in the console:<pre class="brush: jscript; title: ; notranslate">
console.log(&quot;Debugging message&quot;);
</pre></li><li>Add a breakpoint:<pre class="brush: jscript; title: ; notranslate">
debugger;
</pre></li></ul><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2012/02/how-to-monkey-patch-openerp-native-javascript/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/01/editable-list-300x66.png" alt="How-to monkey-patch OpenERP&#8217;s native Javascript" title="How-to monkey-patch OpenERP&#8217;s native Javascript" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2012/02/how-to-monkey-patch-openerp-native-javascript/" rel="bookmark" class="crp_title">How-to monkey-patch OpenERP&#8217;s native Javascript</a></li><li><a href="http://kevin.deldycke.com/2008/08/how-to-add-google-analytics-tracking-to-zenphoto/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2008/08/zenphoto-12-150x23.png" alt="How-to add Google Analytics tracking to Zenphoto" title="How-to add Google Analytics tracking to Zenphoto" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2008/08/how-to-add-google-analytics-tracking-to-zenphoto/" rel="bookmark" class="crp_title">How-to add Google Analytics tracking to Zenphoto</a></li><li><a href="http://kevin.deldycke.com/2009/05/enttec-dmx-usb-firmware-upgrade-with-qemu/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2009/05/qemu-usb-console-300x192.png" alt="Enttec DMX-USB firmware upgrade with Qemu" title="Enttec DMX-USB firmware upgrade with Qemu" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2009/05/enttec-dmx-usb-firmware-upgrade-with-qemu/" rel="bookmark" class="crp_title">Enttec DMX-USB firmware upgrade with Qemu</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/05/javascript-commands/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Increase OpenERP 6.0 web-client session timeout</title><link>http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/</link> <comments>http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/#comments</comments> <pubDate>Tue, 24 Apr 2012 10:33:22 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[cherrypy]]></category> <category><![CDATA[client]]></category> <category><![CDATA[configuration]]></category> <category><![CDATA[OpenERP]]></category> <category><![CDATA[Python]]></category> <category><![CDATA[session]]></category> <category><![CDATA[Single sign-on]]></category> <category><![CDATA[smile]]></category> <category><![CDATA[SSO]]></category> <category><![CDATA[timeout]]></category> <category><![CDATA[Web]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4804</guid> <description><![CDATA[Another week working with OpenERP means another trick learned to answer some intricate customer&#8217;s needs. Today I was asked to keep users logged-in on OpenERP&#8217;s 6.0 web client. The latter being powered by CherryPy, it was a matter of adding &#8230; <a href="http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Another week working with <a href="http://openerp.com">OpenERP</a> means another trick learned to answer some intricate customer&#8217;s needs.</p><p>Today I was asked to keep users logged-in on OpenERP&#8217;s 6.0 web client. The latter being powered by <a href="http://cherrypy.org">CherryPy</a>, it was a matter of adding the following configuration directive in the web client configuration file to increase the session timeout:</p><pre class="brush: plain; title: ; notranslate">
tools.sessions.timeout = 720
</pre><p>Now this will keep any client sessions opened for 12 hours (12h * 60 minutes = 720 minutes) before expiring. This is enough to keep employees not complaining about having to login to OpenERP several times a day.</p><p>Problem solved !</p><p>Oh, and another way to address this issue consist in implementing some kind of Single Sign-On. And you know what ? We have that in store thanks to the <a href="https://github.com/Smile-SA/smile_openerp_addons_6.0/tree/master/smile_sso"><code>smile_sso</code> module for OpenERP</a> ! <img src='http://kevin.deldycke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2012/04/add-warning-banner-openerp-web-client/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/openerp-login-screen-with-alert-banner-300x186.png" alt="How-to add a warning banner to OpenERP&#8217;s web client" title="How-to add a warning banner to OpenERP&#8217;s web client" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2012/04/add-warning-banner-openerp-web-client/" rel="bookmark" class="crp_title">How-to add a warning banner to OpenERP&#8217;s web client</a></li><li><a href="http://kevin.deldycke.com/2011/08/cherrypy-mako-formish-ooop-boilerplate/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="CherryPy + Mako + Formish + OOOP boilerplate" title="CherryPy + Mako + Formish + OOOP boilerplate" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2011/08/cherrypy-mako-formish-ooop-boilerplate/" rel="bookmark" class="crp_title">CherryPy + Mako + Formish + OOOP boilerplate</a></li><li><a href="http://kevin.deldycke.com/2011/11/bazaar-commands/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="Bazaar commands" title="Bazaar commands" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2011/11/bazaar-commands/" rel="bookmark" class="crp_title">Bazaar commands</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How-to add a warning banner to OpenERP&#8217;s web client</title><link>http://kevin.deldycke.com/2012/04/add-warning-banner-openerp-web-client/</link> <comments>http://kevin.deldycke.com/2012/04/add-warning-banner-openerp-web-client/#comments</comments> <pubDate>Tue, 17 Apr 2012 10:46:34 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[HTML]]></category> <category><![CDATA[mako]]></category> <category><![CDATA[OpenERP]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4635</guid> <description><![CDATA[When working with multiple OpenERP instances in different stages, you can be sure your customer will one day mix up your pre-production and production instance, which can have catastrophic effects. A quick and dirty hack to prevent such events is &#8230; <a href="http://kevin.deldycke.com/2012/04/add-warning-banner-openerp-web-client/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>When working with multiple OpenERP instances in different stages, you can be sure your customer will one day mix up your pre-production and production instance, which can have catastrophic effects.</p><p>A quick and dirty hack to prevent such events is to add a hard-coded warning message to all content produced by OpenERP:</p><p><a href="http://kevin.deldycke.com/wp-content/uploads/2012/03/openerp-login-screen-with-alert-banner.png"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/openerp-login-screen-with-alert-banner-300x186.png" alt="" title="openerp-login-screen-with-alert-banner" width="300" height="186" class="aligncenter size-medium wp-image-4636" /></a></p><p>The result above was produced on OpenERP 6.0 thanks to the following patch on the <a href="http://bazaar.launchpad.net/~openerp/openobject-client-web/6.0/view/head:/addons/openerp/controllers/templates/header.mako"><code>header.mako</code></a> template file:</p><pre class="brush: diff; title: ; notranslate">
--- addons/openerp/controllers/templates/header.mako.orig       2012-02-20 11:13:08.228864937 +0000
+++ addons/openerp/controllers/templates/header.mako    2012-02-20 11:12:41.361480113 +0000
@@ -115,3 +115,18 @@
         });
     });
 &lt;/script&gt;
+
+&lt;!-- Custom header banner --&gt;
+&lt;/tr&gt;&lt;tr&gt;
+&lt;style type=&quot;text/css&quot;&gt;
+    #warning-banner {
+        background-color: #c00;
+        color: #fff;
+        text-align: center;
+        font-weight: bold;
+        padding: 0.6em;
+    }
+&lt;/style&gt;
+&lt;td id=&quot;warning-banner&quot; colspan=&quot;3&quot;&gt;
+    &lt;p&gt;Warning: this is a pre-production OpenERP instance.&lt;/p&gt;
+&lt;/td&gt;
</pre><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2012/02/how-to-monkey-patch-openerp-native-javascript/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/01/editable-list-300x66.png" alt="How-to monkey-patch OpenERP&#8217;s native Javascript" title="How-to monkey-patch OpenERP&#8217;s native Javascript" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2012/02/how-to-monkey-patch-openerp-native-javascript/" rel="bookmark" class="crp_title">How-to monkey-patch OpenERP&#8217;s native Javascript</a></li><li><a href="http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="Increase OpenERP 6.0 web-client session timeout" title="Increase OpenERP 6.0 web-client session timeout" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/" rel="bookmark" class="crp_title">Increase OpenERP 6.0 web-client session timeout</a></li><li><a href="http://kevin.deldycke.com/2011/11/bazaar-commands/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="Bazaar commands" title="Bazaar commands" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2011/11/bazaar-commands/" rel="bookmark" class="crp_title">Bazaar commands</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/04/add-warning-banner-openerp-web-client/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Check Point&#8217;s SNX client on Ubuntu 11.04</title><link>http://kevin.deldycke.com/2012/04/check-point-snx-client-ubuntu/</link> <comments>http://kevin.deldycke.com/2012/04/check-point-snx-client-ubuntu/#comments</comments> <pubDate>Tue, 10 Apr 2012 10:22:14 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[check point]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Network]]></category> <category><![CDATA[snx]]></category> <category><![CDATA[ssl]]></category> <category><![CDATA[ubuntu]]></category> <category><![CDATA[vpn]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4713</guid> <description><![CDATA[Last month I had no other alternative but to reach a server through a Check Point&#8216;s VPN. Fortunately the editor provides a Linux client to access its proprietary stack. The version I found to work on my Ubuntu 11.04 is &#8230; <a href="http://kevin.deldycke.com/2012/04/check-point-snx-client-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Last month I had no other alternative but to reach a server through a <a href="http://wikipedia.org/wiki/Check_Point">Check Point</a>&#8216;s VPN. Fortunately the editor provides a Linux client to access its proprietary stack.</p><p>The version I found to work on my Ubuntu 11.04 is the <em>SSL Network Extender (SNX) R71</em> package that <a href="http://supportcontent.checkpoint.com/file_download?id=10656">can be downloaded there</a> (<a href="https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&#038;solutionid=sk41808">source</a>).</p><p>Just for reference, the build working for me is numbered <code>800005013</code>, and here is a copy of what to expect when the connection succeed:</p><pre class="brush: bash; title: ; notranslate">
$ snx -s vpn.example.net -u my_user
Check Point's Linux SNX
build 800005013
Please enter your password:

SNX - connected.

Session parameters:
===================
Office Mode IP      : 10.32.10.23
DNS Server          : 10.168.10.1
Secondary DNS Server: 10.168.10.2
Timeout             : 3 hours
</pre><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="Increase OpenERP 6.0 web-client session timeout" title="Increase OpenERP 6.0 web-client session timeout" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2012/04/increase-openerp-60-web-client-session-timeout/" rel="bookmark" class="crp_title">Increase OpenERP 6.0 web-client session timeout</a></li><li><a href="http://kevin.deldycke.com/2007/01/quick-how-to-install-nfs-server-client/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2007/01/nfs.png" alt="Quick How-To: Install NFS Server &#038; Client" title="Quick How-To: Install NFS Server &#038; Client" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2007/01/quick-how-to-install-nfs-server-client/" rel="bookmark" class="crp_title">Quick How-To: Install NFS Server &#038; Client</a></li><li><a href="http://kevin.deldycke.com/2006/05/how-to-install-suns-java-for-firefox-on-your-mandriva-2006/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="How-to Install Sun&#8217;s Java for Firefox on your Mandriva 2006" title="How-to Install Sun&#8217;s Java for Firefox on your Mandriva 2006" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2006/05/how-to-install-suns-java-for-firefox-on-your-mandriva-2006/" rel="bookmark" class="crp_title">How-to Install Sun&#8217;s Java for Firefox on your Mandriva 2006</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/04/check-point-snx-client-ubuntu/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Beautify Contextual Related Posts WordPress plugin</title><link>http://kevin.deldycke.com/2012/04/beautify-contextual-related-posts-wordpress-plugin/</link> <comments>http://kevin.deldycke.com/2012/04/beautify-contextual-related-posts-wordpress-plugin/#comments</comments> <pubDate>Tue, 03 Apr 2012 10:24:54 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[Theme]]></category> <category><![CDATA[twentyeleven]]></category> <category><![CDATA[Web design]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4754</guid> <description><![CDATA[I&#8217;m a long time user of the Contextual Related Posts plugin for WordPress. The thing is that if you activate thumbnails, you&#8217;ll end up with this kind of ugly list: So I&#8217;ve written some CSS to beautify this, and make &#8230; <a href="http://kevin.deldycke.com/2012/04/beautify-contextual-related-posts-wordpress-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>I&#8217;m a long time user of the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/">Contextual Related Posts plugin</a> for WordPress.</p><p>The thing is that if you activate thumbnails, you&#8217;ll end up with this kind of ugly list:</p><p><a href="http://kevin.deldycke.com/wp-content/uploads/2012/03/contextual-related-posts-default-style.png"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/contextual-related-posts-default-style-300x240.png" alt="" title="contextual-related-posts-default-style" width="300" height="240" class="aligncenter size-medium wp-image-4757" /></a></p><p>So I&#8217;ve written some CSS to beautify this, and make the final result aligns with <a href="http://theme.wordpress.com/themes/twentyeleven/">TwentyEleven</a> (WordPress default theme):</p><p><a href="http://kevin.deldycke.com/wp-content/uploads/2012/03/contextual-related-posts-custom-style.png"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/contextual-related-posts-custom-style-300x122.png" alt="" title="contextual-related-posts-custom-style" width="300" height="122" class="aligncenter size-medium wp-image-4759" /></a></p><p>And here is the CSS producing the result above:</p><pre class="brush: css; title: ; notranslate">
#crp_related ul {
  list-style: none;
  float: left;
  margin: 0;
}
#crp_related li, #crp_related a {
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
}
#crp_related li {
  margin: .9em;
  border: 1px solid #ddd;
  padding: 6px;
}
#crp_related li:hover {
  background: #eee;
  border-color: #bbb;
}
#crp_related a {
  width: 150px;
  height: 150px;
}
#crp_related a:hover {
  text-decoration: none;
}
#crp_related img {
  max-width: 150px;
  margin: auto;
}
#crp_related .crp_title {
  position: absolute;
  height: inherit;
  bottom: 6px;
  left: 6px;
  padding: 3px;
  width: 144px;  /* = 150px - (3px * 2) */
  color: #fff;
  font-size: .9em;
  text-shadow: #000 .1em .1em .2em;
  background: rgb(0.5, 0.5, 0.5);
  background: rgba(0, 0, 0, 0.5);
}
#crp_related li:hover .crp_title {
  background: rgb(0.2, 0.2, 0.2);
  background: rgba(0, 0, 0, 0.8);
}
</pre><p>I&#8217;ve integrated this CSS code via a widget, using the same <a href="http://kevin.deldycke.com/2011/01/new-blog-header-and-tiny-wordpress-theme-customizations/">technique I&#8217;ve detailed here</a>.</p><p>This CSS was tested against the version 1.7.2 of <em>Contextual Related Posts</em>, and for reference, here is my plugin configuration:</p><p><a href="http://kevin.deldycke.com/wp-content/uploads/2012/03/contextual-related-posts-config.png"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/contextual-related-posts-config-233x300.png" alt="" title="contextual-related-posts-config" width="233" height="300" class="aligncenter size-medium wp-image-4760" /></a></p><p>And FYI, my post default thumbnail is from KDE&#8217;s <a href="http://www.oxygen-icons.org/">Oxygen icon set</a>, which I found on my system in <code>/usr/share/icons/oxygen/128x128/apps/knotes.png</code>.</p><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2011/12/auto-advance-wordpress-twentyeleven-showcase-slides/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="Auto-advance WordPress&#8217; TwentyEleven showcase slides" title="Auto-advance WordPress&#8217; TwentyEleven showcase slides" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2011/12/auto-advance-wordpress-twentyeleven-showcase-slides/" rel="bookmark" class="crp_title">Auto-advance WordPress&#8217; TwentyEleven showcase slides</a></li><li><a href="http://kevin.deldycke.com/2007/03/sapphire-style-for-k2-wordpress-theme/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2007/03/k2-sapphire.png" alt="Sapphire style for K2 WordPress theme" title="Sapphire style for K2 WordPress theme" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2007/03/sapphire-style-for-k2-wordpress-theme/" rel="bookmark" class="crp_title">Sapphire style for K2 WordPress theme</a></li><li><a href="http://kevin.deldycke.com/2006/09/e107-to-wordpress-v03-add-user-import/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="e107 to WordPress: v0.3 add user import" title="e107 to WordPress: v0.3 add user import" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2006/09/e107-to-wordpress-v03-add-user-import/" rel="bookmark" class="crp_title">e107 to WordPress: v0.3 add user import</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/04/beautify-contextual-related-posts-wordpress-plugin/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Video summary of latest Cool Cavemen&#8217;s concert</title><link>http://kevin.deldycke.com/2012/03/video-summary-latest-cool-cavemens-concert/</link> <comments>http://kevin.deldycke.com/2012/03/video-summary-latest-cool-cavemens-concert/#comments</comments> <pubDate>Tue, 27 Mar 2012 10:24:42 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[1080p]]></category> <category><![CDATA[canon]]></category> <category><![CDATA[Canon EOS 7D]]></category> <category><![CDATA[concert]]></category> <category><![CDATA[Cool Cavemen]]></category> <category><![CDATA[gig]]></category> <category><![CDATA[kdenlive]]></category> <category><![CDATA[live]]></category> <category><![CDATA[Music]]></category> <category><![CDATA[point and shoot]]></category> <category><![CDATA[sony]]></category> <category><![CDATA[Tamron]]></category> <category><![CDATA[Video]]></category> <category><![CDATA[you tube]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4360</guid> <description><![CDATA[I&#8217;ve just finished editing the video summary of the latest Cool Cavemen&#8217;s concert. It&#8217;s now available on YouTube: That video was mostly shot with my Canon EOS 7D in 1080p at 24fps, with a Tamron SP AF 17-50mm f/2.8 XR &#8230; <a href="http://kevin.deldycke.com/2012/03/video-summary-latest-cool-cavemens-concert/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>I&#8217;ve just finished editing the video summary of the <a href="http://coolcavemen.com/2011/menu-de-samedi-a-douai/">latest Cool Cavemen&#8217;s concert</a>. It&#8217;s now <a href="http://www.youtube.com/watch?v=RpFqhcihQbw">available on YouTube</a>:</p> <span style="text-align:center; display: block;"><a href="http://kevin.deldycke.com/2012/03/video-summary-latest-cool-cavemens-concert/"><img src="http://img.youtube.com/vi/RpFqhcihQbw/2.jpg" alt="" /></a></span><p>That video was mostly shot with my <a href="http://www.amazon.com/gp/product/B002NEGTTW/ref=as_li_tf_tl?ie=UTF8&#038;tag=kevideld-20&#038;linkCode=as2&#038;camp=217145&#038;creative=399381&#038;creativeASIN=B002NEGTTW">Canon EOS 7D</a> in 1080p at 24fps, with a <a href="http://www.amazon.com/gp/product/B002LVUIXA/ref=as_li_tf_tl?ie=UTF8&#038;tag=kevideld-20&#038;linkCode=as2&#038;camp=217145&#038;creative=399381&#038;creativeASIN=B002LVUIXA">Tamron SP AF 17-50mm f/2.8 XR Di-II VC LD IF lens</a>. <img src="http://www.assoc-amazon.com/e/ir?t=kevideld-20&#038;l=as2&#038;o=1&#038;a=B002NEGTTW&#038;camp=217145&#038;creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><img src="http://www.assoc-amazon.com/e/ir?t=kevideld-20&#038;l=as2&#038;o=1&#038;a=B002LVUIXA&#038;camp=217145&#038;creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p><p>The final video also include footage from various people in the audience:</p><ul><li>Jim from <a href="http://maomium.com">Maomium</a> tested during the concert its brand new <a href="http://www.amazon.com/gp/product/B0043AT7AM/ref=as_li_ss_tl?ie=UTF8&#038;tag=kevideld-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B0043AT7AM">Sony Alpha SLT-A33</a>, equipped with a <a href="http://www.amazon.com/gp/product/B0029U0X0Q/ref=as_li_ss_tl?ie=UTF8&#038;tag=kevideld-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B0029U0X0Q">Sony 18-55mm f/3.5-5.6 SAM DT zoom lens</a>, which produces nice 1080i streams at 50 fps;</li><li>Loïc filmed in 720p/30fps with <a href="http://coolcavemen.com/biography/tomasito/">Tomasito</a>&#8216;s <a href="http://www.amazon.com/gp/product/B001SER45Q/ref=as_li_tf_tl?ie=UTF8&#038;tag=kevideld-20&#038;linkCode=as2&#038;camp=217145&#038;creative=399381&#038;creativeASIN=B001SER45Q">Canon PowerShot SX200IS</a> (which was used to produce <a href="http://omashay.com/">Omashay</a>&#8216;s <a href="http://kevin.deldycke.com/2011/07/making-of-omashay-wish-you-looked-at-me-music-video/"><em>Wish You Looked at Me</em> music video</a>);</li><li>and finally Sylvie shot at 480p/30fps with <a href="http://coolcavemen.com/biography/dam/">Dam</a>&#8216;s point-and-shoot camera, the one he uses for his <a href="http://www.youtube.com/user/damdahu/featured">guitar cover videos</a>.</li></ul><p><img src="http://www.assoc-amazon.com/e/ir?t=kevideld-20&#038;l=as2&#038;o=1&#038;a=B0043AT7AM" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><img src="http://www.assoc-amazon.com/e/ir?t=kevideld-20&#038;l=as2&#038;o=1&#038;a=B0029U0X0Q" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><img src="http://www.assoc-amazon.com/e/ir?t=kevideld-20&#038;l=as2&#038;o=1&#038;a=B001SER45Q&#038;camp=217145&#038;creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p><p>The video was edited with the latest version of Kdenlive and exported to a 1080p/24fps stream:</p><p><a href="http://kevin.deldycke.com/wp-content/uploads/2012/03/kdenlive-project-screenshot.png"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/kdenlive-project-screenshot-300x187.png" alt="" title="kdenlive-project-screenshot" width="300" height="187" class="aligncenter size-medium wp-image-4747" /></a></p><p>If you enjoyed the music and atmosphere of the video, I urge you to go to the <a href="http://coolcavemen.com/2012/concert-aux-gres-a-douai-le-samedi-7-avril/">next Cool Cavemen&#8217;s concert</a>. And because I know the majority of my readership can&#8217;t be in the north of France next month, let me remind you there&#8217;s still a <a href="http://www.youtube.com/watch?v=qE-bis-wYxs&#038;list=PL4BAA557B7144031F&#038;feature=plcp">one hour video of our biggest 2009 concert</a> available online (on which I did all the lighting).</p><p>And if you liked the first song, its called <a href="http://coolcavemen.com/discography/songs-and-lyrics/belgique-mon-namurrr/">Belgique mon Namurrr</a> and you can watch the whole of it here (lyrics are in subtitles):</p> <span style="text-align:center; display: block;"><a href="http://kevin.deldycke.com/2012/03/video-summary-latest-cool-cavemens-concert/"><img src="http://img.youtube.com/vi/PnX-wK2lVCQ/2.jpg" alt="" /></a></span><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2010/06/le-duc-live-happy-farm-fest-2010/" rel="bookmark"><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/0-150x150.jpg" class="crp_thumb wp-post-image" alt="Le Duc live at Happy Farm Fest 2010" title="Le Duc live at Happy Farm Fest 2010" border="0" /></a><a href="http://kevin.deldycke.com/2010/06/le-duc-live-happy-farm-fest-2010/" rel="bookmark" class="crp_title">Le Duc live at Happy Farm Fest 2010</a></li><li><a href="http://kevin.deldycke.com/2011/02/trapped-freedom-live-garage-cafe/" rel="bookmark"><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/01-150x150.jpg" class="crp_thumb wp-post-image" alt="Trapped in Freedom: live at Garage Café" title="Trapped in Freedom: live at Garage Café" border="0" /></a><a href="http://kevin.deldycke.com/2011/02/trapped-freedom-live-garage-cafe/" rel="bookmark" class="crp_title">Trapped in Freedom: live at Garage Café</a></li><li><a href="http://kevin.deldycke.com/2010/12/quartz-composer-behringer-bcf-2000-midi-controller-tests/" rel="bookmark"><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2010/12/quartz-composer-midi-playground-150x150.png" class="crp_thumb wp-post-image" alt="Quartz Composer &amp; Behringer BCF-2000 MIDI controller tests" title="Quartz Composer &amp; Behringer BCF-2000 MIDI controller tests" border="0" /></a><a href="http://kevin.deldycke.com/2010/12/quartz-composer-behringer-bcf-2000-midi-controller-tests/" rel="bookmark" class="crp_title">Quartz Composer &#038; Behringer BCF-2000 MIDI controller tests</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/03/video-summary-latest-cool-cavemens-concert/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>I contributed $200 to Kdenlive and you should too !</title><link>http://kevin.deldycke.com/2012/03/200-dollars-kdenlive-contribution/</link> <comments>http://kevin.deldycke.com/2012/03/200-dollars-kdenlive-contribution/#comments</comments> <pubDate>Tue, 20 Mar 2012 13:32:37 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[campaign]]></category> <category><![CDATA[contribution]]></category> <category><![CDATA[donation]]></category> <category><![CDATA[fundaraising]]></category> <category><![CDATA[KDE]]></category> <category><![CDATA[kdenlive]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[Video]]></category> <category><![CDATA[Video editing software]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4700</guid> <description><![CDATA[I just donated $200 to the Kdenlive project, as they have just started a fundraising campaign to refactor its core and make it future-proof: The amount of collected funds is currently at $3,041 from the $4,000 required to pay a &#8230; <a href="http://kevin.deldycke.com/2012/03/200-dollars-kdenlive-contribution/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>I <a href="https://twitter.com/#!/kdeldycke/status/182018605259567104">just donated $200</a> to the <a href="http://kdenlive.org">Kdenlive</a> project, as they have <a href="http://kdenlive.org/users/ttill/kdenlive-fundraising-campaign">just started</a> a <a href="http://www.indiegogo.com/kdenlive-re">fundraising campaign</a> to refactor its core and make it future-proof:</p><p><a traget="_blank" href="http://www.indiegogo.com/kdenlive-re"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/kdenlive-fundraising-campaign-300x189.png" alt="" title="kdenlive-fundraising-campaign" width="300" height="189" class="aligncenter size-medium wp-image-4702" /></a></p><p>The amount of collected funds is currently at $3,041 from the $4,000 required to pay a developer to work full-time for 2 months. With only $959 remaining and 41 days left, you have no reason to not contribute to the best open-source video editor out there.</p><p>I started to play with Kdenlive several years ago with version 0.3. I even <a href="http://kevin.deldycke.com/2007/04/kdenlive-04-for-mandriva-20070/">created some RPM packages</a> back then. Kdenlive suffered from heavy instabilities in its early days.</p><p>But this was a long time ago and today it’s the most stable and practical video editing software available on Linux. It&#8217;s the best open-source tool for amateur DSLR shooters, and is worth a try even if your primary desktop manager is not KDE.</p><p>Today this software is the one I spend most of my time in at home (just after a web browser and a command-line terminal). And I&#8217;ve never felt as productive as the last 2 years: I <a href="http://www.youtube.com/playlist?list=PL003033C52FE5047D">edited about 2 hours of videos</a> in that period.</p><p>Kdenlive must continue to grow. And because I want to use it in my future projects, it makes sense to make a donation. So what are you waiting for contributing too ? <img src='http://kevin.deldycke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2007/04/kdenlive-04-for-mandriva-20070/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2012/03/article-thumbnail.png" alt="KDEnlive 0.4 for Mandriva 2007.0" title="KDEnlive 0.4 for Mandriva 2007.0" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2007/04/kdenlive-04-for-mandriva-20070/" rel="bookmark" class="crp_title">KDEnlive 0.4 for Mandriva 2007.0</a></li><li><a href="http://kevin.deldycke.com/2010/11/latest-stable-kdenlive-development-version-mlt/" rel="bookmark"><img src="http://kevin.deldycke.com/wp-content/uploads/2010/10/kdenlive-with-mlt-dev-300x195.png" alt="Using latest stable Kdenlive with a development version of MLT" title="Using latest stable Kdenlive with a development version of MLT" style="max-width:150px;max-height:150px;" border="0" class="crp_thumb" /></a><a href="http://kevin.deldycke.com/2010/11/latest-stable-kdenlive-development-version-mlt/" rel="bookmark" class="crp_title">Using latest stable Kdenlive with a development version of MLT</a></li><li><a href="http://kevin.deldycke.com/2012/01/reusing-vintage-footage-cool-cavemens-concert-intro/" rel="bookmark"><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/01/cool-cavemen-concert-intro-header-150x150.jpg" class="crp_thumb wp-post-image" alt="Reusing vintage footage for Cool Cavemen&#8217;s concert intro" title="Reusing vintage footage for Cool Cavemen&#8217;s concert intro" border="0" /></a><a href="http://kevin.deldycke.com/2012/01/reusing-vintage-footage-cool-cavemens-concert-intro/" rel="bookmark" class="crp_title">Reusing vintage footage for Cool Cavemen&#8217;s concert intro</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/03/200-dollars-kdenlive-contribution/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>4m² : the first short I worked on</title><link>http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/</link> <comments>http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/#comments</comments> <pubDate>Tue, 13 Mar 2012 11:41:25 +0000</pubDate> <dc:creator>Kev</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Canon EOS 7D]]></category> <category><![CDATA[cinematography]]></category> <category><![CDATA[film]]></category> <category><![CDATA[narrative]]></category> <category><![CDATA[short]]></category> <category><![CDATA[short film]]></category> <category><![CDATA[Video]]></category> <category><![CDATA[youtube]]></category><guid isPermaLink="false">http://kevin.deldycke.com/?p=4651</guid> <description><![CDATA[4m², the first narrative short film I work on, was just made available on YouTube. I wasn&#8217;t expecting a public release that fast (and this makes a really pleasant surprise), so I had no time to prepare a more detailed &#8230; <a href="http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><em>4m²</em>, the first narrative short film I work on, was just made <a href="http://www.youtube.com/watch?v=91y6L3QKiRk">available on YouTube</a>. I wasn&#8217;t expecting a public release that fast (and this makes a really pleasant surprise), so I had no time to prepare a more detailed article. I&#8217;ll try to write one soon, but in the mean time, enjoy the final result of a great teamwork:</p> <span style="text-align:center; display: block;"><a href="http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/"><img src="http://img.youtube.com/vi/91y6L3QKiRk/2.jpg" alt="" /></a></span><p>And here are the official stills of the short:</p><a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/001/' title='001'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/001-150x150.png" class="attachment-thumbnail" alt="001" title="001" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/002/' title='002'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/002-150x150.png" class="attachment-thumbnail" alt="002" title="002" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/004/' title='004'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/004-150x150.png" class="attachment-thumbnail" alt="004" title="004" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/006/' title='006'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/006-150x150.png" class="attachment-thumbnail" alt="006" title="006" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/007/' title='007'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/007-150x150.png" class="attachment-thumbnail" alt="007" title="007" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/008-nb/' title='008-N&amp;B'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/008-NB-150x150.png" class="attachment-thumbnail" alt="008-N&amp;B" title="008-N&amp;B" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/008/' title='008'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/008-150x150.png" class="attachment-thumbnail" alt="008" title="008" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/010/' title='010'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/010-150x150.png" class="attachment-thumbnail" alt="010" title="010" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/011/' title='011'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/011-150x150.png" class="attachment-thumbnail" alt="011" title="011" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/012/' title='012'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/012-150x150.png" class="attachment-thumbnail" alt="012" title="012" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/013/' title='013'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/013-150x150.png" class="attachment-thumbnail" alt="013" title="013" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/016/' title='016'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/016-150x150.png" class="attachment-thumbnail" alt="016" title="016" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/017/' title='017'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/017-150x150.png" class="attachment-thumbnail" alt="017" title="017" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/018/' title='018'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/018-150x150.png" class="attachment-thumbnail" alt="018" title="018" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/019/' title='019'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/019-150x150.png" class="attachment-thumbnail" alt="019" title="019" /></a> <a href='http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/attachment/020/' title='020'><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/020-150x150.png" class="attachment-thumbnail" alt="020" title="020" /></a><div id="crp_related"><h2>Related content</h2><ul><li><a href="http://kevin.deldycke.com/2012/01/burlesque-burglary-music-video-released/" rel="bookmark"><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/01/burlesque-burglary-header-150x150.jpg" class="crp_thumb wp-post-image" alt="Burlesque Burglary music video released" title="Burlesque Burglary music video released" border="0" /></a><a href="http://kevin.deldycke.com/2012/01/burlesque-burglary-music-video-released/" rel="bookmark" class="crp_title">Burlesque Burglary music video released</a></li><li><a href="http://kevin.deldycke.com/2010/01/cool-cavemen-live-gayant-expo-first-video-released/" rel="bookmark"><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/03/02-150x150.jpg" class="crp_thumb wp-post-image" alt="Cool Cavemen live at Gayant Expo: first video released !" title="Cool Cavemen live at Gayant Expo: first video released !" border="0" /></a><a href="http://kevin.deldycke.com/2010/01/cool-cavemen-live-gayant-expo-first-video-released/" rel="bookmark" class="crp_title">Cool Cavemen live at Gayant Expo: first video released !</a></li><li><a href="http://kevin.deldycke.com/2012/01/reusing-vintage-footage-cool-cavemens-concert-intro/" rel="bookmark"><img width="150" height="150" src="http://kevin.deldycke.com/wp-content/uploads/2012/01/cool-cavemen-concert-intro-header-150x150.jpg" class="crp_thumb wp-post-image" alt="Reusing vintage footage for Cool Cavemen&#8217;s concert intro" title="Reusing vintage footage for Cool Cavemen&#8217;s concert intro" border="0" /></a><a href="http://kevin.deldycke.com/2012/01/reusing-vintage-footage-cool-cavemens-concert-intro/" rel="bookmark" class="crp_title">Reusing vintage footage for Cool Cavemen&#8217;s concert intro</a></li></ul></div>]]></content:encoded> <wfw:commentRss>http://kevin.deldycke.com/2012/03/first-short-film-4m2-released/feed/</wfw:commentRss> <slash:comments>0</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 11/106 queries in 0.198 seconds using apc
Object Caching 3885/4126 objects using apc

Served from: kevin.deldycke.com @ 2012-05-21 02:05:53 -->
