<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>sinarf&apos;s journal</title>
    <description>This is my blog, it reflects my and only my point of view</description>
    <link>http://blog.sinarf.org/</link>
    <atom:link href="http://blog.sinarf.org/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Mon, 18 May 2026 19:03:34 +0000</pubDate>
    <lastBuildDate>Mon, 18 May 2026 19:03:34 +0000</lastBuildDate>
    <generator>Jekyll v3.10.0</generator>
    
      <item>
        <title>Yet another nvim for Python 3 development setup</title>
        <description>&lt;h2 id=&quot;introduction&quot;&gt;Introduction&lt;/h2&gt;

&lt;p&gt;I am playing with Python these days and since I love tools, I’m looking for the right tool.&lt;/p&gt;

&lt;p&gt;My editor of choice is vim (now neovim) and there is a lot of stuff for Python development.
See the Links section below for a good read.&lt;/p&gt;

&lt;h2 id=&quot;what-was-my-problem-with-existing-resources&quot;&gt;What was my problem with existing resources?&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Many tutorial gives you a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;.vimrc&lt;/code&gt; file to drop in your Home directory.&lt;/li&gt;
  &lt;li&gt;Python-mode seems promissing, but I couldn’t make work the refactoring part.&lt;/li&gt;
  &lt;li&gt;Some of the plugin used are obsolete&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;what-is-my-goal&quot;&gt;What is my goal?&lt;/h2&gt;

&lt;p&gt;Having a real setup tutorial, with every line of configuration explained.&lt;/p&gt;

&lt;p&gt;I would like to have these feature:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Code completion&lt;/li&gt;
  &lt;li&gt;PEP8 autoformating&lt;/li&gt;
  &lt;li&gt;Code lint&lt;/li&gt;
  &lt;li&gt;Simple access to documentation&lt;/li&gt;
  &lt;li&gt;A simple way to run a script&lt;/li&gt;
  &lt;li&gt;A simple way to run unit test&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Bonus features would be:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Automaticaly run the test on every save&lt;/li&gt;
  &lt;li&gt;A simple way to run a script with parameters&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;refactor&quot;&gt;Refactor&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://github.com/python-rope/ropevim&quot;&gt;rope vim plugin&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For the refactoring part, we’ll use rope.&lt;/p&gt;

&lt;p&gt;First install the dependencies:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;pip install rope ropemode ropevim
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Install the vim plugin&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Plug &apos;python-rope/ropevim&apos;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I enable this options.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&quot;Rope                                                                                                                                                                          
let ropevim_vim_completion=1
let ropevim_extended_complete=1
	
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;code-validation-with-flake8&quot;&gt;Code validation with flake8&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://github.com/nvie/vim-flake8&quot;&gt;flake8&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;First install the dependency:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;pip install flakes
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Install the vim plugin&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Plug &apos;nvie/vim-flake8&apos;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I enable this options.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&quot;Run each time you save Python file
autocmd BufWritePost *.py call flake8#Flake8()
&quot;flake8
let g:flake8_show_in_gutter=1
let g:flake8_show_in_file=1
	
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;code-completion-wich-coc-and-jedi&quot;&gt;Code completion wich coc and jedi&lt;/h2&gt;

&lt;p&gt;I am already using coc as my completion tool. To make it work with python I add to install the plugin python for coc. 
In vim run:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;CocInstall coc-python
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Then I had to install the jedi library :&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;yaourt -Syu python-jedi
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;conclusion&quot;&gt;Conclusion&lt;/h2&gt;

&lt;p&gt;I haven’t made the unit test work yet, but I already have:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Code completion&lt;/li&gt;
  &lt;li&gt;PEP8 autoformating&lt;/li&gt;
  &lt;li&gt;Code lint&lt;/li&gt;
  &lt;li&gt;Simple access to documentation&lt;/li&gt;
  &lt;li&gt;A simple way to run a script&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I still missing:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;A simple way to run unit test&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;links&quot;&gt;Links&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://framagit.org/sinarf/dotneovim&quot;&gt;My neovim dotfiles&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
        <pubDate>Sat, 28 Mar 2020 15:20:00 +0000</pubDate>
        <link>http://blog.sinarf.org/2020/03/28/nvim-python-setup.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/2020/03/28/nvim-python-setup.html</guid>
        
        <category>nvim</category>
        
        <category>python</category>
        
        
      </item>
    
      <item>
        <title>Comeback: the return of the revenge (Ep: Unknown)</title>
        <description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Long time no see.&lt;/p&gt;

&lt;p&gt;This morning I found a good name for my personal project of diminishing my dependency to commercial SaaS product. I made it a project and I bought the domain names. I will handle this project publicly on https://framagit.org.&lt;/p&gt;

&lt;p&gt;I declare the &lt;a href=&quot;https://framagit.org/sinarf/saasoss&quot;&gt;SaaSOSS Project&lt;/a&gt; open!&lt;/p&gt;
</description>
        <pubDate>Sun, 08 Mar 2020 15:20:00 +0000</pubDate>
        <link>http://blog.sinarf.org/2020/03/08/comeback.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/2020/03/08/comeback.html</guid>
        
        
      </item>
    
      <item>
        <title>How to blog with Jekyll</title>
        <description>&lt;p&gt;&lt;strong&gt;This post is a work in progress, I’ll add stuff later&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A few months ago, I setup a Jekyll blog, everything is working fine. The only thing is I don’t always remember how to blog. I do this post to regroup all information I need for everyday blogging.&lt;/p&gt;

&lt;p&gt;I have customized my &lt;a href=&quot;https://github.com/sinarf/dotvim&quot;&gt;vim configuration&lt;/a&gt;, so spellcheck is enabled on markdown Filetype.&lt;/p&gt;

&lt;p&gt;Links :&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://jekyllrb.com/docs/&quot;&gt;Jekyll documentation&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://github.com/parkr/vim-jekyll&quot;&gt;Jekyll vim plugin&lt;/a&gt;. Create a new post with &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;:Jpost!&lt;/code&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://guides.github.com/features/mastering-markdown/&quot;&gt;Github markup documentation&lt;/a&gt;, this is the best entry point I know about this flavor of markdown.&lt;/li&gt;
  &lt;li&gt;See the site locally, in the blog directory run &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;jekyll serve --drafts&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
        <pubDate>Mon, 17 Oct 2016 10:43:52 +0000</pubDate>
        <link>http://blog.sinarf.org/2016/10/17/jekyll-howto.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/2016/10/17/jekyll-howto.html</guid>
        
        
      </item>
    
      <item>
        <title>Review of Adventures with Cannabis Edibles by Old Hippie</title>
        <description>&lt;p&gt;Today, I was browsing &lt;a href=&quot;http://beyondchronic.com/&quot;&gt;beyondchronic.com&lt;/a&gt;. I discovered the site a few days ago and I love it. The articles are precise and well writen and I Love the tone of the site, so when I saw that some of the article have made into a book, I bought it earlier today and red it on my kindle. This book is about edible but since it is not an edible you can eat the whole thing, it is safe and fun to read. :D&lt;/p&gt;

&lt;p&gt;I started this writing wanting to make a classical review but, maybe because I took half a tea spoon of AVB with my falafel sandwich 45 minutes ago, I feel more like sharing my adventures. Maybe that should be the real review type, hum…&lt;/p&gt;

&lt;p&gt;I do like the fact that the old friend is insisting on the &lt;em&gt;be carreful&lt;/em&gt;, even with years and years of experience and supposed tolerance, &lt;strong&gt;you can take too much&lt;/strong&gt;. So be aware, and if you have taken too much, remember that it cannot kill you, it won’t even try. But you may thing you are going to die. ;)&lt;/p&gt;

&lt;p&gt;I am experiencing with edible for a few month now. I made brownies with hash, I made cannabutter from hash. I did that without any real knowledge about decarbs or anything else than THC loves fat. I use my cannabutter in brownies of with pastas or I tried it alone but it tasted very bad and it was hard not to barf. Then I found the simplier way to consume my butter with this recipe :&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Recipe:&lt;/strong&gt; Put in cup your dose of butter and dark chocolate and honey, then 30 to 40s in the micro wave so you can mix the ingredients together. Then you have a Space Chocolate Shooter. I don’t give any indication of the dosage here because it depends on your butter and your tolerance. You MUST try and respect the rules of edibles (extracted from the book)&lt;/p&gt;

&lt;blockquote&gt;
  &lt;ol&gt;
    &lt;li&gt;Try less than 1/8 of the recommended dose for any new edible.&lt;/li&gt;
    &lt;li&gt;If it smells strongly, it probably is seriously strong.&lt;/li&gt;
    &lt;li&gt;If it tastes strongly, it really is seriously strong!&lt;/li&gt;
    &lt;li&gt;Wait at least 2 hours, or until you feel the effects, before adding another same-sized piece to your dose (assuming you decide you do want more).&lt;/li&gt;
    &lt;li&gt;Edibles always have a built-in time delay. Plan in advance what you’ll be doing and where you’ll be when they kick in (generally anywhere from 1/2 hour to 2 hours after eating).&lt;/li&gt;
  &lt;/ol&gt;
&lt;/blockquote&gt;

&lt;p&gt;This days I do my first experiment with AVB, the thing I love with it. It taste great, I love putting it in my food, it is a new spice. Until now I never took too much, but the other day I was taking my ABV with some peanut butter and I thought it would be so easy to take too much, just because it taste so good. So I mesure what I’m gonna take and put it in a separate jar and try not to take directly from the goodie jar.&lt;/p&gt;

&lt;p&gt;I did all my experiments in the confort of my home. I didn’t tried it in the wild yet.&lt;/p&gt;

&lt;p&gt;You can buy the ebook here :&lt;/p&gt;
&lt;div data-headline=&quot;Adventures With Cannabis Edibles&quot; data-height=&quot;250&quot; data-width=&quot;300&quot; style=&quot;width: 300px; height: 250px;&quot; data-buttoncolor=&quot;#ffc801&quot; data-bgcolor=&quot;#fafafa&quot; data-ribboncolor=&quot;#4181c3&quot; data-font=&quot;sans&quot; data-items=&quot;book:149790&quot; data-type=&quot;single&quot; class=&quot;smashwords-widget&quot;&gt;&lt;/div&gt;
&lt;script id=&quot;smashwords-widget-js&quot; async=&quot;async&quot; src=&quot;//www.smashwidgets.com/1/widgets.js&quot;&gt;&lt;/script&gt;

</description>
        <pubDate>Tue, 22 Mar 2016 12:10:34 +0000</pubDate>
        <link>http://blog.sinarf.org/2016/03/22/reviewedibles.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/2016/03/22/reviewedibles.html</guid>
        
        
      </item>
    
      <item>
        <title>Sorry for the french</title>
        <description>&lt;p&gt;C’est le nom de ma &lt;a href=&quot;https://www.youtube.com/channel/UC9pB6b-pIchij4U0pmqEGWA&quot;&gt;chaine Youtube&lt;/a&gt;, dont voici la vidéo d’introduction.&lt;/p&gt;

&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;//www.youtube.com/embed/0K7AHA2HERs&quot; frameborder=&quot;0&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

</description>
        <pubDate>Mon, 21 Mar 2016 07:03:43 +0000</pubDate>
        <link>http://blog.sinarf.org/2016/03/21/youtube.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/2016/03/21/youtube.html</guid>
        
        
      </item>
    
      <item>
        <title>Je ne crois pas à la fidélité.</title>
        <description>&lt;p&gt;Selon une croyance commune la fidélité serait une vertue.&lt;/p&gt;

&lt;p&gt;La fidélité c’est la loi du premier arrivé. Je ne demande pas la fidélité, je lui préfère l’honnêteté.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;S’il vous plait, ne me soyez pas fidèle, soyez avec moi parce que je suis le meilleur pas parce que j’étais le premier&lt;/strong&gt;&lt;/p&gt;
</description>
        <pubDate>Wed, 16 Mar 2016 01:01:50 +0000</pubDate>
        <link>http://blog.sinarf.org/blog/2016/03/16/fidelite.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/blog/2016/03/16/fidelite.html</guid>
        
        
        <category>blog</category>
        
      </item>
    
      <item>
        <title>Legalization or traffic, that is the question.</title>
        <description>&lt;p&gt;There is only 2 choices. Becauce there is no soft drug against hard drug.&lt;/p&gt;

&lt;p&gt;It is le white man drugs : Alcohol, Tobacco and prescription drugs and on the other hand there is all the non WASP drugs.&lt;/p&gt;

&lt;h1 id=&quot;legalisation&quot;&gt;legalisation&lt;/h1&gt;

&lt;p&gt;A legal access to psychotrope substance.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Provides&lt;/strong&gt; information and harm reduction.&lt;/p&gt;

&lt;h1 id=&quot;traffic&quot;&gt;Traffic&lt;/h1&gt;

&lt;p&gt;The prohibition generates traffic. This is a fact.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Provides&lt;/strong&gt;  corruption and police state.&lt;/p&gt;

&lt;blockquote class=&quot;twitter-tweet&quot; data-lang=&quot;en&quot;&gt;&lt;p lang=&quot;en&quot; dir=&quot;ltr&quot;&gt;A rapid quizz about how to handle drugs. Are you for :&lt;/p&gt;&amp;mdash; Michel Blavin (@sinarf) &lt;a href=&quot;https://twitter.com/sinarf/status/709820320815915009&quot;&gt;March 15, 2016&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async=&quot;&quot; src=&quot;//platform.twitter.com/widgets.js&quot; charset=&quot;utf-8&quot;&gt;&lt;/script&gt;

&lt;p&gt;I could have ask the following question : Are you racist? Yes means traffic. ;)&lt;/p&gt;
</description>
        <pubDate>Tue, 15 Mar 2016 11:01:50 +0000</pubDate>
        <link>http://blog.sinarf.org/blog/2016/03/15/legalizeortraffic.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/blog/2016/03/15/legalizeortraffic.html</guid>
        
        
        <category>blog</category>
        
      </item>
    
      <item>
        <title>New home for my journal</title>
        <description>&lt;p&gt;This will be the new home of my journal.&lt;/p&gt;

&lt;p&gt;I have blog in years, so why start a new blog?&lt;/p&gt;

&lt;p&gt;Because I have problem with Google products. I use Google services extensivly but they are becomming less and less useful, I should say useable.&lt;/p&gt;

&lt;p&gt;Even Android, I gave my Nexus 5X to my daughter, because it was too buggy and sluggish for me due to Marshmallow.
I bought a HTC One M8s with lollipop on it, way way way way better, even with sense overlay.&lt;/p&gt;

</description>
        <pubDate>Mon, 14 Mar 2016 11:01:50 +0000</pubDate>
        <link>http://blog.sinarf.org/blog/2016/03/14/newhome.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/blog/2016/03/14/newhome.html</guid>
        
        
        <category>blog</category>
        
      </item>
    
      <item>
        <title>Should I blog more? </title>
        <description>&lt;p dir=&quot;ltr&quot;&gt;I hate when people do this kind of posts, telling I am gonna do it, is useless. &lt;/p&gt;&lt;p dir=&quot;ltr&quot;&gt;Blog or shut the fuck up! &lt;/p&gt;</description>
        <pubDate>Tue, 29 Dec 2015 08:43:00 +0000</pubDate>
        <link>http://blog.sinarf.org/2015/12/29/should-i-blog-more.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/2015/12/29/should-i-blog-more.html</guid>
        
        
      </item>
    
      <item>
        <title>Looking for a new laptop...</title>
        <description>&lt;br /&gt;&lt;br /&gt;My desktop computer is almost 4 year old and my laptop 3 yr old. I&apos;m starting to feel the need for a new PC.&lt;br /&gt;I don&apos;t use my desktop very much and it feel like a waste of space and power. I am looking for a good laptop, my uses are :&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Development under eclipse.&lt;/li&gt;&lt;li&gt;Usual Web surfing, time wasting online.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;My current Laptop is a Lenovo X300 name xena which is a 13&quot; screen laptop with a low voltage processor but I have few issues with it :&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;It gets warm (it is a known problem on this hardware)&lt;/li&gt;&lt;li&gt;The performance are at a level that can make it my main machine.&amp;nbsp;&lt;/li&gt;&lt;li&gt;Don&apos;t need the smallest form factor would prefer a larger screen with full HD (eclipse does need a lot of pixels).&amp;nbsp;&lt;/li&gt;&lt;li&gt;It could have a longer battery life considering that I replaced the optical drive with a second battery.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;There the technical characteristics I&apos;m looking for :&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Should run perfectly under Linux.&lt;/li&gt;&lt;li&gt;I would love not having to pay the windows tax as I don&apos;t use it. &lt;a href=&quot;http://www.system76.com/&quot;&gt;system76&lt;/a&gt;&amp;nbsp;seems to be a solution but they don&apos;t do french keyboard.&lt;/li&gt;&lt;li&gt;15&quot; screen with a good resolution at least 1680*1050 but full HD would be best.&amp;nbsp;&lt;/li&gt;&lt;li&gt;A good keyboard (the lenovo thinkpad ones are perfect).&amp;nbsp;&lt;/li&gt;&lt;li&gt;8 Go RAM&lt;/li&gt;&lt;li&gt;&amp;gt;= 500 Go drive (don&apos;t need a SSD).&amp;nbsp;&lt;/li&gt;&lt;li&gt;A docking station would be nice to use the laptop as a desktop with a dual screen.&amp;nbsp;&lt;/li&gt;&lt;li&gt;Good battery life, the more the better I would love a &amp;gt;5h of real battery life.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;So far, I&apos;ve looked a the at the Dell XPS 15z which seems nice, but not many options to customize the beast.&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Please, don&apos;t tell me to buy a Mac, I&apos;m looking for a &lt;u&gt;computer&lt;/u&gt;. ;)&lt;br /&gt;&lt;br /&gt;Edit: I want to revamp all my IT setup to simplify and secure it. I started a mindmap about it :&lt;br /&gt;&lt;br /&gt;&lt;iframe width=&quot;500&quot; height=&quot;200&quot; frameborder=&quot;0&quot; src=&quot;http://mind42.com/pub/mindmap?mid=1b1a8593-ee53-45dd-a9c9-4ff1eda50470&amp;rel=iframe&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;</description>
        <pubDate>Mon, 31 Oct 2011 15:33:00 +0000</pubDate>
        <link>http://blog.sinarf.org/2011/10/31/looking-for-new-laptop.html</link>
        <guid isPermaLink="true">http://blog.sinarf.org/2011/10/31/looking-for-new-laptop.html</guid>
        
        
      </item>
    
  </channel>
</rss>
