<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Blogs on Michail Rybakov</title>
    <link>https://rybakov.com/blog/</link>
    <description>Recent content in Blogs on Michail Rybakov</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 07 Nov 2025 14:07:46 +0000</lastBuildDate>
    <atom:link href="https://rybakov.com/blog/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Photographic tools</title>
      <link>https://rybakov.com/blog/photographic_tools/</link>
      <pubDate>Fri, 07 Nov 2025 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/photographic_tools/</guid>
      <description>&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/photographic_tools.png&#34; &#xA;&#x9; data-src=&#34;../images/hiq/photographic_tools.png&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/photographic_tools.png&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;I&amp;rsquo;ve started designing custom film cameras, and needed tools to understand what kind of tolerances and imperfections can I get away with when guessing focusing distances. And more importantly, what kind of image would a lens create, and how the field of view, depth of field, focal length and aperture would correspond across different film formats.&#xA;I haven&amp;rsquo;t really found good tools online, so I created some myself. Hope they can help someone:&lt;/p&gt;&#xA;&lt;style&gt;&#xA;   &#xA;&#xA;  .wildify-content {&#xA;    position: relative;&#xA;    display: block;&#xA;  }&#xA;&#xA;   &#xA;  .wildify-element,&#xA;  .wildify-element * {&#xA;     &#xA;    box-sizing: border-box !important;&#xA;    margin: 0 !important;&#xA;&#xA;     &#xA;    letter-spacing: normal !important;&#xA;    word-spacing: normal !important;&#xA;    text-transform: none !important;&#xA;    text-indent: 0 !important;&#xA;&#xA;     &#xA;    opacity: 1 !important;&#xA;    visibility: visible !important;&#xA;    filter: none !important;&#xA;&#xA;     &#xA;    border: 0 !important;&#xA;    outline: 0 !important;&#xA;    float: none !important;&#xA;    clear: none !important;&#xA;  }&#xA;&#xA;   &#xA;  .wildify-element {&#xA;    position: absolute !important;&#xA;    display: block !important;&#xA;  }&#xA;&#xA;   &#xA;  .wildify-text-content {&#xA;    display: block !important;&#xA;    white-space: pre-wrap !important;&#xA;    word-wrap: break-word !important;&#xA;  }&#xA;&#xA;&#xA;   &#xA;  .wildify-element a {&#xA;    text-decoration: none !important;&#xA;    color: inherit !important;&#xA;    display: block !important;&#xA;  }&#xA;&#xA;   &#xA;  .wildify-element.wildify-hidden {&#xA;    display: none !important;&#xA;  }&#xA;&lt;/style&gt;&#xA;&#xA;&lt;div id=&#34;test.html&#34; class=&#34;wildify&#34;&#xA;  style=&#34;position: relative; display: block; width: 0; height: 0;  margin: 0 auto;&#34;&gt;&#xA;&#xA;  &lt;/div&gt;&#xA;&#xA;&#xA;&lt;script&gt;&#xA;  (function () {&#xA;    &#39;use strict&#39;;&#xA;    &#xA;    function initializeLayout() {&#xA;      var anchors = document.querySelectorAll(&#39;.wildify&#39;);&#xA;      Array.from(anchors).forEach(function (anchor) {&#xA;        var content = anchor.querySelector(&#39;.wildify-content&#39;);&#xA;        if (content) {&#xA;          var height = parseInt(content.dataset.height || &#39;0&#39;, 10);&#xA;          if (height &gt; 0) {&#xA;            anchor.style.height = height + &#39;px&#39;;&#xA;          }&#xA;        }&#xA;      });&#xA;    }&#xA;&#xA;    &#xA;    initializeLayout();&#xA;&#xA;    &#xA;    &#xA;    if (window.self === window.top) return;&#xA;&#xA;    &#xA;    if (window.__wildifyBridgeLoaded) return;&#xA;    window.__wildifyBridgeLoaded = true;&#xA;&#xA;    console.log(&#39;[Wildify Bridge] Initializing...&#39;);&#xA;&#xA;    var selectedAnchorId = null;&#xA;&#xA;    window.addEventListener(&#39;message&#39;, function (event) {&#xA;      var type = (event.data || {}).type;&#xA;      var anchorId = (event.data || {}).anchorId;&#xA;&#xA;      if (type === &#39;WILDIFY_DISCOVER&#39;) {&#xA;        var divs = document.querySelectorAll(&#39;.wildify&#39;);&#xA;        var anchors = Array.from(divs).map(function (div) {&#xA;          var rect = div.getBoundingClientRect();&#xA;          return {&#xA;            id: div.id,&#xA;            rect: {&#xA;              top: rect.top + window.scrollY,&#xA;              left: rect.left + window.scrollX,&#xA;              width: rect.width,&#xA;              height: rect.height&#xA;            }&#xA;          };&#xA;        });&#xA;        console.log(&#39;[Wildify Bridge] Found&#39;, anchors.length, &#39;anchor(s)&#39;);&#xA;        event.source.postMessage({ type: &#39;WILDIFY_ANCHORS&#39;, data: anchors }, &#39;*&#39;);&#xA;      }&#xA;&#xA;      if (type === &#39;WILDIFY_GET_ANCHOR_RECT&#39;) {&#xA;        var div = document.getElementById(anchorId);&#xA;        if (!div) {&#xA;          event.source.postMessage({ type: &#39;WILDIFY_ANCHOR_RECT&#39;, data: null }, &#39;*&#39;);&#xA;          return;&#xA;        }&#xA;        var rect = div.getBoundingClientRect();&#xA;        event.source.postMessage({&#xA;          type: &#39;WILDIFY_ANCHOR_RECT&#39;,&#xA;          data: {&#xA;            id: anchorId,&#xA;            top: rect.top,&#xA;            left: rect.left,&#xA;            width: rect.width,&#xA;            height: rect.height,&#xA;            scrollY: window.scrollY,&#xA;            scrollX: window.scrollX&#xA;          }&#xA;        }, &#39;*&#39;);&#xA;      }&#xA;&#xA;      if (type === &#39;WILDIFY_SET_ANCHOR_HEIGHT&#39;) {&#xA;        var div = document.getElementById(anchorId);&#xA;        if (div) {&#xA;          var height = (event.data || {}).height || 0;&#xA;          div.style.height = height + &#39;px&#39;;&#xA;          &#xA;          &#xA;        }&#xA;      }&#xA;&#xA;      if (type === &#39;WILDIFY_SET_SELECTED_ANCHOR&#39;) {&#xA;        selectedAnchorId = anchorId;&#xA;        console.log(&#39;[Wildify Bridge] Selected anchor:&#39;, selectedAnchorId);&#xA;      }&#xA;&#xA;      if (type === &#39;WILDIFY_GET_PUBLISHED_HTML&#39;) {&#xA;        var anchorDiv = document.getElementById(anchorId);&#xA;        var contentDiv = anchorDiv ? anchorDiv.querySelector(&#39;.wildify-content&#39;) : null;&#xA;&#xA;        event.source.postMessage({&#xA;          type: &#39;WILDIFY_PUBLISHED_HTML&#39;,&#xA;          data: {&#xA;            anchorId: anchorId,&#xA;            html: contentDiv ? contentDiv.outerHTML : null&#xA;          }&#xA;        }, event.origin);&#xA;      }&#xA;&#xA;      if (type === &#39;WILDIFY_HIDE_PUBLISHED&#39;) {&#xA;        var anchorDiv = document.getElementById(anchorId);&#xA;        if (anchorDiv) {&#xA;          var contentDiv = anchorDiv.querySelector(&#39;.wildify-content&#39;);&#xA;          if (contentDiv) {&#xA;            var elements = contentDiv.querySelectorAll(&#39;.wildify-element&#39;);&#xA;            for (var i = 0; i &lt; elements.length; i++) {&#xA;              elements[i].classList.add(&#39;wildify-hidden&#39;);&#xA;            }&#xA;          }&#xA;        }&#xA;      }&#xA;&#xA;      if (type === &#39;WILDIFY_SCROLL_REQUEST&#39;) {&#xA;        var x = (event.data || {}).x || 0;&#xA;        var y = (event.data || {}).y || 0;&#xA;        window.scrollBy(x, y);&#xA;      }&#xA;&#xA;      if (type === &#39;WILDIFY_SCROLL_TO_ANCHOR&#39;) {&#xA;        var div = document.getElementById(anchorId);&#xA;        if (div) {&#xA;          var rect = div.getBoundingClientRect();&#xA;          var viewportHeight = window.innerHeight;&#xA;          &#xA;          var targetScrollY = window.scrollY + rect.top - (viewportHeight / 2) + (rect.height / 2);&#xA;          window.scrollTo({&#xA;            top: Math.max(0, targetScrollY),&#xA;            behavior: &#39;smooth&#39;&#xA;          });&#xA;        }&#xA;      }&#xA;    });&#xA;&#xA;    var rafId = null;&#xA;    window.addEventListener(&#39;scroll&#39;, function () {&#xA;      if (rafId) {&#xA;        cancelAnimationFrame(rafId);&#xA;      }&#xA;&#xA;      rafId = requestAnimationFrame(function () {&#xA;        if (window.parent === window) {&#xA;          rafId = null;&#xA;          return;&#xA;        }&#xA;&#xA;        &#xA;        var divs = document.querySelectorAll(&#39;.wildify&#39;);&#xA;        var rects = {};&#xA;        Array.from(divs).forEach(function (div) {&#xA;          var rect = div.getBoundingClientRect();&#xA;          rects[div.id] = {&#xA;            id: div.id,&#xA;            top: rect.top,&#xA;            left: rect.left,&#xA;            width: rect.width,&#xA;            height: rect.height&#xA;          };&#xA;        });&#xA;&#xA;        window.parent.postMessage({&#xA;          type: &#39;WILDIFY_SCROLL_WITH_ALL_RECTS&#39;,&#xA;          data: {&#xA;            scrollY: window.scrollY,&#xA;            scrollX: window.scrollX,&#xA;            rects: rects&#xA;          }&#xA;        }, &#39;*&#39;);&#xA;&#xA;        rafId = null;&#xA;      });&#xA;    });&#xA;&#xA;    console.log(&#39;[Wildify Bridge] Ready&#39;);&#xA;  })();&#xA;&lt;/script&gt;&#xA;&lt;p&gt;&lt;a href=&#34;../tools/photography/circle-of-confusion.html&#34;&gt;Circle of Confusion Calculator&lt;/a&gt;&lt;br&gt;&#xA;This one shows what would be in focus and how front/back blur behaves across formats. It was really eye-opening for me to play with it and understand the relationships between the different factors and how they shape the image. The Circle of Confusion tells us what a point light source turns into after going through the lens. It is basically the brush with which you paint light. And at different film formats (at similar image viewing distances), similar sized CoC might appear to paint a sharp or a blurry picture. Play with the tool to find out more!&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;../tools/photography/background-blur-accumulation.html&#34;&gt;Background Blur Accumulation Calculator&lt;/a&gt;&lt;br&gt;&#xA;This one shows background blur accumulation at different format and apertures, to see what lens you would need in e.g. 35mm to simulate a LF look. In this case specifically an abstract measure of &amp;ldquo;how much blur will there be for 2 meters behind the focus point&amp;rdquo;. It was created specifically for environmental portraits and uses vertical angle of view (instead of, as often used, the diagonal) to get a better feeling of background separation in portraits. It tries to help you with the questions of &amp;ldquo;Where should I place the person?&amp;rdquo; and  What lens and what aperture should I use for better background separation?&amp;quot;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;../tools/photography/helicoid-extension-calculator.html&#34;&gt;Helicoid Extension Calculator&lt;/a&gt;&lt;br&gt;&#xA;This one shows your helicoid/focusing rail extension across focal lengths and focus distances.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;../tools/photography/helicoid-distance-scale.html&#34;&gt;Distance Scale Creator&lt;/a&gt;&lt;br&gt;&#xA;This one is for creating a distance scale and printing it out at home.&lt;/p&gt;&#xA;&lt;p&gt;All of them are interactive, so play around and see how it all relates. Let me know if somethings is not working as expected!&lt;/p&gt;&#xA;&lt;br&gt;</description>
    </item>
    <item>
      <title>Pixel Piranhas</title>
      <link>https://rybakov.com/blog/pixel_piranhas/</link>
      <pubDate>Sat, 12 Jul 2025 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/pixel_piranhas/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/pixel_piranas3.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/pixel_piranas3.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/pixel_piranas3.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&lt;/p&gt;&#xA;&lt;p&gt;I really hate it when I&amp;rsquo;m  exposed to some horrible news online, and feel powerless. There is nothing I can do, I am not responsible, and yet at the same time I have this feeling &amp;ldquo;this shouldn&amp;rsquo;t be happening&amp;rdquo;.&lt;/p&gt;&#xA;&lt;p&gt;There is a temptation to immediately react – if it was printed, I would crumple up the paper and throw it away – yet, reading pixels on the screen I don&amp;rsquo;t have the right gesture to express my discontent.&lt;/p&gt;&#xA;&lt;p&gt;So I made this little browser extension. Click on a button, and a horde of cursors, like hungry piranhas, will slowly rip the web page apart for you.&lt;/p&gt;&#xA;&lt;p&gt;Sounds fun? Install on &lt;a href=&#34;https://addons.mozilla.org/firefox/addon/pixel-piranhas/&#34;&gt;Firefox&lt;/a&gt; or &lt;a href=&#34;https://chromewebstore.google.com/detail/pixel-piranhas/cnopmjphbhelljchplcnbkojbeaoncmc&#34;&gt;Chrome&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;div class=&#34;embed video-player&#34;&gt;&#xA;&lt;iframe class=&#34;youtube-player&#34; type=&#34;text/html&#34; width=&#34;640&#34; height=&#34;385&#34; src=&#34;https://www.youtube.com/embed/fDvRWo0_aGQ&#34; allowfullscreen frameborder=&#34;0&#34;&gt;&#xA;&lt;/iframe&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;br&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/pixel_piranas2.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/pixel_piranas2.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/pixel_piranas2.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>The Petzval machine</title>
      <link>https://rybakov.com/blog/bronica/</link>
      <pubDate>Wed, 01 Jan 2025 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/bronica/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;small&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/bronica_raw0009.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/bronica_raw0009.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/bronica_raw0009.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&lt;/p&gt;&#xA;&lt;p&gt;This image is taken with a (60 year old) Bronica C medium format camera, with a (120 year old) Petzval-type lens.&lt;/p&gt;&#xA;&lt;figure class=&#34;small&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/bronica_SDIM8504.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/bronica_SDIM8504.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/bronica_SDIM8504.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&#xA;&lt;p&gt;This camera is not only beautiful in a vintage car sort of way, but is also uniquely suited for adapting old lenses on medium format. On a typical camera, the lens houses the helicoid, the mechanical corkscrew-like part that moves the optics closer and further away from the subject allowing you to focus properly. On the Bronica, the helicoid sits between the body and the lens, and so you can adapt all kinds of weird lenses onto it. This particular lens probably stems from the late 19th, early 20th century. It has no markings on the body, but as I disassebled it to clean the glass, I found the inscription &amp;ldquo;A. Laverne &amp;amp; Co. Paris&amp;rdquo; on the rim of a glass. There were quite a few small optics manufacturers in the 19th century - the startups of the era.&lt;/p&gt;&#xA;&lt;p&gt;The Petzval lens type was the first portrait lens design, created in 1840. It has with two elements at front and two at the back, and has a strong sharpness drop towards the corners. No, wait, it&amp;rsquo;s more accurate to say that only what&amp;rsquo;s in the center can ever have a high enough resolution. (Unless of course, you move the lens off-center, like you can with a large format camera). But sometimes, this lack of sharpness and the disquiet character of the rendering is what we are after.&lt;/p&gt;&#xA;&lt;p&gt;Shoutout to Chris and Lina who were so patient with me on this August afternoon!&lt;/p&gt;&#xA;&lt;figure class=&#34;small&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/bronica_raw0032.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/bronica_raw0032.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/bronica_raw0032.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;</description>
    </item>
    <item>
      <title>Sofa consensus</title>
      <link>https://rybakov.com/blog/sofa/</link>
      <pubDate>Fri, 27 Oct 2023 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/sofa/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/sofa_SDIM4468.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/sofa_SDIM4468.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/sofa_SDIM4468.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/sofa_SDIM4612.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/sofa_SDIM4612.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/sofa_SDIM4612.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>Abwesenheit</title>
      <link>https://rybakov.com/blog/abwesenheit/</link>
      <pubDate>Mon, 29 May 2023 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/abwesenheit/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/abwesenheitSDIM1402.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/abwesenheitSDIM1402.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/abwesenheitSDIM1402.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&#xA;&lt;p&gt;Sometimes I get tired of the usual composition, of the trained way of seeing. Lately I tried to make photographs that not only depict nothing in particular, but also guide the attention of the viewer around, showing nothing.&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/abwesenheit_P2M0733.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/abwesenheit_P2M0733.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/abwesenheit_P2M0733.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&#xA;&lt;p&gt;The colors guide you in one direction, the focus in another one, and the composition a third. Its only value lies in the movement of the viewers eyes, in the choreography of the gaze.&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/abwesenheitSDIM4586.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/abwesenheitSDIM4586.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/abwesenheitSDIM4586.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>A village for Paul Signac</title>
      <link>https://rybakov.com/blog/signac/</link>
      <pubDate>Mon, 20 Jun 2022 12:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/signac/</guid>
      <description>&lt;p&gt;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;signac5&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/signac5/signac5.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/signac5/signac5.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;signac5buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;signac5paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;br&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Henri Matisse&#39;s home</title>
      <link>https://rybakov.com/blog/matisse/</link>
      <pubDate>Sun, 12 Jun 2022 12:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/matisse/</guid>
      <description>&lt;p&gt;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;matisse0&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/matisse0/matisse0.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/matisse0/matisse0.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;matisse0buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;matisse0paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;br&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Marc Chagall&#39;s home</title>
      <link>https://rybakov.com/blog/chagall/</link>
      <pubDate>Tue, 07 Jun 2022 12:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/chagall/</guid>
      <description>&lt;p&gt;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;chagall1&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/chagall1/chagall1.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/chagall1/chagall1.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;chagall1buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;chagall1paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;br&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Octopus hugging a tree</title>
      <link>https://rybakov.com/blog/octopustree/</link>
      <pubDate>Sun, 29 May 2022 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/octopustree/</guid>
      <description>&lt;p&gt;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;octopustree&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/octopustree/octopustree.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/octopustree/octopustree.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;octopustreebuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;octopustreepaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;These things became annoyingly good at generating visually rich images. They are still bad at guiding attention, but perhaps that&amp;rsquo;s part of their beauty.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Places of belonging</title>
      <link>https://rybakov.com/blog/places_of_belonging/</link>
      <pubDate>Sun, 03 Apr 2022 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/places_of_belonging/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/lauratest22.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/lauratest22.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/lauratest22.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&lt;/p&gt;&#xA;&lt;p&gt;Where do people go, when the whole world seems foreign? Where do they find places for themselves? A space to be and not just react.&lt;/p&gt;&#xA;&lt;p&gt;I find it not easy to fotograph, since I&amp;rsquo;m aiming to create a portrait of the space, not of the person. More and more they begin to seem inseparable.&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/test-me22.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/test-me22.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/test-me22.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&#xA;&lt;p&gt;With big thanks to Laura and Vanny.&lt;/p&gt;&#xA;&lt;br/&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/vanny222s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/vanny222s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/vanny222s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>Seeing and smelling the Critical Zone</title>
      <link>https://rybakov.com/blog/smelling_cz/</link>
      <pubDate>Mon, 03 Jan 2022 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/smelling_cz/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/cz_riechen_intro2_L1040429.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/cz_riechen_intro2_L1040429.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/cz_riechen_intro2_L1040429.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br/&gt;&lt;/p&gt;&#xA;&lt;p&gt;As part of the &lt;a href=&#34;https://zkm.de/de/ausstellung/2020/05/critical-zones&#34;&gt;Critical Zones exhibition&lt;/a&gt; in ZKM Karlsruhe, Hanna Jurisch and I offered workshops to experience the Critical Zone in a more direct way. We called it &amp;ldquo;Kritische Zone riechen und sehen&amp;rdquo;, or, translated, &amp;ldquo;Seeing and smelling the Critical Zone&amp;rdquo;.&lt;/p&gt;&#xA;&lt;p&gt;The Critical Zone is all about the processes of living, about living organisms and their entanglements.&#xA;The difficult thing about dealing with the Critical Zone is that our usual mental models that describe the space we live in seem inadequate and insufficient: top-down maps may show geographical features but are frozen in time. Worse yet, they don&amp;rsquo;t show any chemical, biological, mechanical processes of living, or any living organisms at all for that matter. They capture a specific point of view, not a point of life (point de vue vs. point de vie as Bruno Latour would say). Sure, maps might sometimes show a single tree, but not the other things that make the tree alive – the water level, the rain, the chemical exchange between tree roots and bacterial colonies, the parasites and the birds that hunt them and so on. There is no future nor past in a map, there is no illness, no movement, no birth or death in a map.&lt;/p&gt;&#xA;&lt;p&gt;It&amp;rsquo;s not a problem of scale, as it does not change even if we become very local, if we zoom in closely on one specific point.&#xA;Here an example:&lt;/p&gt;&#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;burj_birds&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/burj_birds/burj_birds.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/burj_birds/burj_birds.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;burj_birdsbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;burj_birdspaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;On the left you see the changes to Dubai over a time period of 1984-2016, taken by satellite, looking down on earth from the outside. This is as an extreme example of terraforming and land development, fueled by vanity and the political will to build funny looking shapes into the ocean. And even with this being the extreme example, the timeframe of thirty years is a large one. A casual observer drinking tea in the orbit and looking down on earth would not notice the change brought by our processes of life.&lt;/p&gt;&#xA;&lt;p&gt;On the right, a flock of common wood pigeons landed in front of my house in Karlsruhe, February 2021. The polar vortex broke in February, covering large parts of US and Europe in ice and snow. The wood pigeons moved from the woods to cities to find a bit more warmth and food. They move as individuals, until they get spooked by an arriving bike driver, and fly away as a flock, as a superorganism.&lt;br&gt;&#xA;This slice of life may be human scale, but it still shows just a point of view. The text description above is needed to turn it into a (very limited, admittedly) point of life.&lt;/p&gt;&#xA;&lt;p&gt;So Hanna and I decided to cast aside the hyper-global medium of maps and hyper-local medium of video, and searched for a new way to get attuned to the processes of living, of all the tiny interwoven actions happening within the Critical Zone.&#xA;We arrived at similar but distinct approaches.&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/czriechen_hanna_L1040225.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/czriechen_hanna_L1040225.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/czriechen_hanna_L1040225.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&lt;figcaption&gt;&#xA;&#x9;Hanna talking about the similarities in shape and texture between human-made and non-human made found objects&#xA;&lt;/figcaption&gt;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Hanna would take the workshop participants for a walk and let them gather material, human-made and non-human-made alike. Gather everything that grew around the museum or was discarded by people. All the unseen, unintentional objects in the surroundings. Like a dog that sheds hair, processes of life shed bottle caps, pieces of glass, feathers, drinking straws, leaves, bark, empty vodka bottles, screws, scrunchies, moss and concrete.&lt;/p&gt;&#xA;&lt;p&gt;All the gathered material would later be arranged into sculptures and new taxonomies by the participants.&lt;/p&gt;&#xA;&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/cz_riechen_objects_L1040212.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/cz_riechen_objects_L1040212.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/cz_riechen_objects_L1040212.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&lt;figcaption&gt;&#xA;&#x9;Some of the sculptures and taxonomic reorderings that happened in the first workshop&#xA;&lt;/figcaption&gt;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;br /&gt;&lt;/p&gt;&#xA;&lt;p&gt;My own approach was to try and capture the scent of the world around us.&lt;br&gt;&#xA;I let participants gather fragrance materials from within their homes – basically everything that has a smell – and use these to create perfumes. Old coffee grounds, earth from a flower pot, fresh leaves, stale bread, or a mushroom found in the garden – all that was welcome, all that we would mix together into a perfume. A perfume of our own – very local – part of the Critical Zone.&lt;/p&gt;&#xA;&lt;p&gt;I see these perfumes as true &amp;lsquo;scent maps&amp;rsquo; of one specific point of life. Not only were the materials gathered by a person who (most of the time) somehow decided to have them in their lives, scents are also seemingly immaterial witnesses of material processes of life. Most smells that surround us are organic in origin, are witnesses of transformation of matter through living organisms, often unseen by us humans. Smell is a process.&lt;br&gt;&#xA;One other thing I particularly like about smells is the sensory parallelism. Sure, some particularly smelly molecule might be overpowering others, but most of the times what we perceive as a scent is a combination of many different scents, many different organic molecules stemming from many different processes of life. And we perceive it all at once – something that is impossible to achieve by mapping the Critical Zone in the usual, top-down way.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dima&#39;s mom</title>
      <link>https://rybakov.com/blog/dimamama/</link>
      <pubDate>Sat, 28 Aug 2021 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/dimamama/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/dimamama.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/dimamama.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/dimamama.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;&lt;em&gt;2007, St.Petersburg, Russia.&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Being an octopus</title>
      <link>https://rybakov.com/blog/being_an_octopus/</link>
      <pubDate>Sat, 01 May 2021 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/being_an_octopus/</guid>
      <description>&lt;p&gt;Mio asked a few artists and designers to write exercises and interventions that they do when feeling lonely or lost.&lt;br&gt;&#xA;She got some &lt;a href=&#34;http://miokojima.com/aselfinrelation/&#34;&gt;interesting results&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Below is my exercise – &lt;em&gt;Being an octopus&lt;/em&gt; – that I enjoy doing when I feel stressed. I recorded it as an audio guide.&#xA;The German language version is below the fold.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;&lt;audio controls src=&#34;../audio/octopus_english.mp3&#34;  /&gt;  &lt;/audio&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Being an Octopus&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Imagine yourself as an octopus inhabiting the landscape of your body.&#xA;Think about the place in your body where it feels comfortable, where it feels at home, this octopus. My octopus lives in the back of my head, warming my neck.&#xA;Where could the nest of your octopus be?&lt;/p&gt;&#xA;&lt;p&gt;Now imagine this octopus floating in the landscape of relationships. There are other octopuses, objects, or situations floating around it. Each of your eight arms is reaching out to different directions. Each one is holding something. Or touching another octopus. Holding a situation. Repelling something. Playing with something.&lt;/p&gt;&#xA;&lt;p&gt;Think of the situations you are currently dealing with and let the octopus hold them. Picture the octopus arm as it holds, or tries to hold such a situation. Maybe there is nothing to hold? Maybe the grip is particularly tight? Who is holding the situation at the other end? Or is the octopus arm touching another octopus’s arm directly? Maybe the octopus is holding on to something? Or is being held?&#xA;The octopus has eight arms with which it can grab hold of things. Go through each of them and imagine up to eight situations.&lt;/p&gt;&#xA;&lt;p&gt;Now, let go of them one by one. Imagine the octopus letting go of a situation. Whatever the octopus lets go of doesn’t fall or disappear, it stays where it was. Let your octopus arm contract, curl up.&#xA;Go through all the situations you imagined one by one. Release your grip on them, let them stay where they were, roll up your octopus arm and withdraw.&lt;/p&gt;&#xA;&lt;p&gt;Now all the octopus arms are rolled up. The octopus is floating, unconnected, with its arms comfortably curled up under its body.&#xA;Sense how that feels. Does it feel airy and bright? Warm and protected? Allow yourself to linger in this state for a while.&lt;/p&gt;&#xA;&lt;p&gt;Now start to roll out one of your arms again. Touch whatever you like, not necessarily what you’ve held before. Explore it. Caress it. Hold on to it if it feels right. Or go on to find something else.&lt;/p&gt;&#xA;&lt;p&gt;Repeat this procedure several times with the free arms, but make sure to let one or two arms remain unconnected. They are free to explore yourself and the world.&lt;/p&gt;&#xA;&lt;p&gt;Feel yourself connected again. Listen to how that feels.&lt;/p&gt;&#xA;&lt;p&gt;Sense how it feels to know that your octopus arms could let go or grab hold of something again at any time.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Research published</title>
      <link>https://rybakov.com/blog/zkm_research/</link>
      <pubDate>Sun, 04 Apr 2021 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/zkm_research/</guid>
      <description>&lt;p&gt;ZKM, &lt;em&gt;the&lt;/em&gt; german media art museum, published my research on &lt;em&gt;Strategies of Arrival&lt;/em&gt;, done under guidance of Bruno Latour.&lt;/p&gt;&#xA;&lt;p&gt;It&amp;rsquo;s made up of three parts:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://zkm.de/en/inhabiting-a-map&#34;&gt;Inhabiting a map&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://zkm.de/en/how-to-enter-a-space&#34;&gt;How to enter a space&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;and&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://zkm.de/de/instruments-of-relation&#34;&gt;Instruments of reation&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The first one is the most spectacular I guess, but make sure to check out the others too. And, once the museums reopen, check out my piece at the current ZKM exhibition &lt;a href=&#34;https://zkm.de/en/exhibition/2020/05/critical-zones&#34;&gt;&lt;em&gt;Critical Zones&lt;/em&gt;&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>На опушке</title>
      <link>https://rybakov.com/blog/opushka/</link>
      <pubDate>Sun, 08 Dec 2019 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/opushka/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/polyana.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/polyana.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/polyana.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>Momtaz</title>
      <link>https://rybakov.com/blog/momtaz/</link>
      <pubDate>Thu, 08 Aug 2019 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/momtaz/</guid>
      <description>&lt;figure class=&#34;small&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/momtaz.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/momtaz.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/momtaz.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;But also, &lt;em&gt;[redacted]&lt;/em&gt;, look at this guy. Look at this photo of a bangladeshi guy holding a small basket of starfruits. Fifty thousand people liked it when he posted it on &lt;em&gt;[a social media website]&lt;/em&gt;. This guy, Momtaz his name, titled it &amp;ldquo;Dragon fruits on my rooftop garden&amp;rdquo;, and was giving respectful replies to all the comments that followed. Saying he doesn&amp;rsquo;t sell the starfruits but grows them to give to his friends and family.&#xA;You know what&amp;rsquo;s remarkable about it? How &lt;em&gt;normal&lt;/em&gt; it is. This whole situation just reeks of normality and authenticity. His whole posture, the way he is holding the basket, his face - damn even the title is incredibly basic. &lt;em&gt;Dragon fruits on my rooftop garden&lt;/em&gt;. He doesn&amp;rsquo;t want to impress anyone. Does not want to achieve any special significance through his work, nor is he ashamed of it. He does not care for popularity or attention. He just grows starfruit on his rooftop garden, to give to his friends and family and is content with that.&#xA;Can&amp;rsquo;t we all be a little bit more like Momtaz? Can&amp;rsquo;t we not detach the expectation of intellectual significance, artistic value or however else we derive our self-worth, from the things we do? If you are not a massage therapist, a cook or live life like the guy doing the &lt;em&gt;primitive technologies&lt;/em&gt; youtube channel, then the concepts of work, value, self-expression and self-worth will be disconnected anyhow. Wouldn&amp;rsquo;t it make sense to follow the wisdom of &lt;a href=&#34;https://www.youtube.com/watch?v=oUk8uXYk_6A&#34;&gt;this old psychodelic soviet animation&lt;/a&gt; : &amp;ldquo;Do a good deed and throw it in the water&amp;rdquo;. Meaning &amp;ldquo;do good and don&amp;rsquo;t expect anything in return&amp;rdquo;.&#xA;Like Momtaz does.&lt;/p&gt;</description>
    </item>
    <item>
      <title>AI deleting human bodies</title>
      <link>https://rybakov.com/blog/ai_deleting_bodies/</link>
      <pubDate>Thu, 15 Nov 2018 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/ai_deleting_bodies/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;peopleghoster&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/peopleghoster/peopleghoster.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/peopleghoster/peopleghoster.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;peopleghosterbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;peopleghosterpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;I used neural networks to recognize and remove human bodies from videos, simultaneously trying to fill the void they left.&#xA;Why? Well, as we are externalizing not just our bodily actions to tools, but our decision process to all-knowing, all-loving AIs, the traditional, perceivable image of what constitutes a human body has become obsolete.&#xA;It seems oddly fitting in that case, for disembodied neural networks to remove our outdated bodily image.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://mirahirtz.de/&#34;&gt;Mira Hirtz&lt;/a&gt; performed for the camera. I then used &lt;a href=&#34;https://github.com/matterport/Mask_RCNN&#34;&gt;Mask_RCNN&lt;/a&gt; to do body recognition and &lt;a href=&#34;https://github.com/JiahuiYu/generative_inpainting&#34;&gt;Generative Image Inpainting with Contextual Attention&lt;/a&gt; to fill in the emptiness.&lt;/p&gt;&#xA;&lt;p&gt;This was a test for Bruno Latour&amp;rsquo;s upcoming exhibition on the Critical Zone. Made in November 2018.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Wrapped in a blanket of brotherly love</title>
      <link>https://rybakov.com/blog/wrapped/</link>
      <pubDate>Wed, 07 Nov 2018 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/wrapped/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;small&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_P2M0779b.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_P2M0779b.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_P2M0779b.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Zuckerberg emojis</title>
      <link>https://rybakov.com/blog/zuckerberg_emojis/</link>
      <pubDate>Sun, 15 Jul 2018 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/zuckerberg_emojis/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/sadmark4.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/sadmark4.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/sadmark4.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&lt;figcaption&gt;&#xA;&#x9;Squint your eyes!&#xA;&lt;/figcaption&gt;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;!-- Facebook curates the emotional reactions you can communicate while you are using it. When communicating in person or with text you can contruct your reaction from a large amount of subtle variations. Facebook however makes you react in a generalized - but oddly specific - way. These emojis show facial expressions close to the extreme ends of the scale, they are not subtle. &#xA;&#xA;As facebook forces us to use and wear the mask of emotional expressions predefined by them, it makes sense to reverse the process and force Mark Zuckerberg, as the face of facebook, to wear the same expressions.&#xA;&#xA;&#xA;Facebook curates the emotional reaction you can express through the choice and design of their emojis. &#xA;When communicating in text or in person you can construct your expression from a large amount of subtle variations. Facebook however lets you react in a generalized - but oddly specific - way. We use these emojis and unconciosly wear the mask of these particular, predefined facial expressions.&#xA;&#xA;&#xA;&#xA; --&gt;&#xA;&lt;p&gt;You&amp;rsquo;d think an emoji would be a clear and precise representation of an emotion. However the difference in rendering on different devices provides a great &lt;a href=&#34;https://grouplens.org/blog/investigating-the-potential-for-miscommunication-using-emoji/&#34;&gt;potential for miscommunication&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;But even on the same platform, the kind of emotional reaction you may express is curated through the choice and design of available emojis.&#xA;Take Facebook for example. The five Facebook emojis give you broad expressive capabilities, yet their design is very specific - and close to the extreme ends of the emotional scale. When using emojis, we wear these slightly too big masks of these particular, predefined facial expressions. We are becoming them.&lt;/p&gt;&#xA;&lt;p&gt;I decided to reverse the process, to add body to the digital expression. That body should be, of course, that of Mark Zuckerberg.&lt;/p&gt;&#xA;&lt;p&gt;Here are the results, created through disembodied neural networks.&lt;/p&gt;&#xA;&lt;p&gt;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/hahamark4.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/hahamark4.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/hahamark4.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&#xA;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/wowmark4.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/wowmark4.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/wowmark4.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&#xA;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/angrymark4.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/angrymark4.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/angrymark4.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&lt;figcaption&gt;&#xA;&#x9;I think CNNMRF grew the eyes from the hair, from the imagined eyebrows it found.&#xA;&lt;/figcaption&gt;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;How it&amp;rsquo;s done:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;First &lt;a href=&#34;https://github.com/chuanli11/CNNMRF&#34;&gt;CNNMRF&lt;/a&gt; populated the emoticons with features of Marks face. It especially likes eyes and hair. I then used &lt;a href=&#34;https://github.com/msracver/Deep-Image-Analogy/&#34;&gt;Deep-Image-Analogy&lt;/a&gt; to add more features, contrast, structure and adjust histogram. Finally &lt;a href=&#34;https://github.com/jcjohnson/neural-style/&#34;&gt;jcjohnsons neural-style&lt;/a&gt; was used to upscale the image while adding texture.&lt;/p&gt;&#xA;&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/zuckoji2.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/zuckoji2.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/zuckoji2.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&lt;figcaption&gt;&#xA;&#x9;1.Original 2.CNNMRF result 3. Deep Image Analogy output 4.Upscaled with Neural-style&#xA;&lt;/figcaption&gt;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;Stickers for Telegram now available: &lt;a href=&#34;https://t.me/addstickers/cursedmark&#34;&gt;https://t.me/addstickers/cursedmark&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Got a question? Just &lt;a href=&#34;../about&#34;&gt;ask&lt;/a&gt; me.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Neural nets see cancer zombies</title>
      <link>https://rybakov.com/blog/neural_nets_see_cancer_zombies/</link>
      <pubDate>Tue, 05 Jun 2018 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/neural_nets_see_cancer_zombies/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;zombie_anim&#34; controls class=&#34;looped  small&#34; loop=&#34;true&#34; poster=&#34;/video/zombie_anim/zombie_anim.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/zombie_anim/zombie_anim.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;zombie_animbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;zombie_animpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Looking for ways to visualize machine learning processes.&#xA;Neural nets are trained to recognized cancerous Ki-67 marked cells in biopsies. Instead of just counting the cells, a neural style process is run to produce infinite zombies in their place.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Visualizing complexity</title>
      <link>https://rybakov.com/blog/visualizing_complexity/</link>
      <pubDate>Tue, 05 Jun 2018 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/visualizing_complexity/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-old-contemp-illus.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-old-contemp-illus.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-old-contemp-illus.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;I was doing some research for an upcoming exhibition and looked into the question of &lt;em&gt;tone&lt;/em&gt; in scientific communication, specifically the stylistic influence of visual representations of knowledge. Obviously the style changed over time, became more abstract, less naturalistic, less.. certain. As if the scientists became troubled by the idea of adding some character to the visual language - which is futile anyway: no matter what you do you end up with something that has character, just maybe a lame one.&#xA;One particularly popular type of illustration in geosciences is the block diagram. While visually appealing, it often lacks any kind of a sensible way to embed processes that happen outside of the cut out piece of earth - the circulation of water, the circulation of life forms, human influence, changes over time - all that has to be added in some stupid way, with arrows and explanations.&lt;/p&gt;&#xA;&lt;p&gt;Instead, I looked for ways to bring some of the old, more subjective ways to scientific illustrations. Add a few too many details. Make it alive, permeable for living creatures.&lt;/p&gt;&#xA;&lt;p&gt;I took some illustrations by the 19th century German zoologist, philosopher and illustrator Ernst Haeckel, and used them as style for a &lt;em&gt;neural style transfer&lt;/em&gt; algorithm.&lt;/p&gt;&#xA;&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-pop-gamochonia07.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-pop-gamochonia07.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-pop-gamochonia07.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;We are conditioned to look for meaning in scientific illustrations. While the meaning is lost through the process of neural style transfer, the illustration gains a lot of visual complexity. As viewers we may sense a deep cross-interlocking between the animal and its environment, but we do not get the chance to actually understand the specifics of their relationships.&lt;/p&gt;&#xA;&lt;p&gt;Here are a few more:&lt;/p&gt;&#xA;&lt;p&gt;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-arachnidae.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-arachnidae.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-arachnidae.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&#xA;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-muscinae.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-muscinae.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-muscinae.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&#xA;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-asteridae.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-asteridae.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-asteridae.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&#xA;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-urbansystem.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-urbansystem.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-urbansystem.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&#xA;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-ks.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-ks.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-ks.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&#xA;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-jelly.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-jelly.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-jelly.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&#xA;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/neural-discomedusae.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/neural-discomedusae.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/neural-discomedusae.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;Because of the non-deterministic nature of neural style transfer, the results differ a little bit every time you run the script. Combining a dozen outputs creates an interesting effect. It&amp;rsquo;s not breathing nor movement but some kind of uncertainty that normally only comes when you freeze living matter in time. Like a collection of portrait photographs, neither of which is truly &lt;em&gt;you&lt;/em&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;animated_style&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/animated_style/animated_style.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/animated_style/animated_style.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;animated_stylebuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;animated_stylepaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;br&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;how-to-do-it-yourself&#34;&gt;How to do it yourself&lt;/h3&gt;</description>
    </item>
    <item>
      <title>Exposition</title>
      <link>https://rybakov.com/blog/exposition/</link>
      <pubDate>Fri, 18 May 2018 10:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/exposition/</guid>
      <description>&lt;p&gt;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;exposition&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/exposition/exposition.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/exposition/exposition.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;expositionbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;expositionpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Exposition&lt;/em&gt; is the process of arriving in a movie, arriving at the characters&amp;rsquo; vantage point, arriving in their space.&lt;/p&gt;&#xA;&lt;p&gt;I shot this short film with Mira and Matina in August 2015, and I really like it for its &lt;em&gt;exposition through insignificance&lt;/em&gt;.&lt;/p&gt;&#xA;&lt;p&gt;The film starts with unimportant movements, movements that carry no meaning, and since there&amp;rsquo;s no significance to be &amp;lsquo;understood&amp;rsquo;, the viewers search for meaning continues.&#xA;It plays with the relationship of the protagonists without explaining, and in the end, when we arrived, when we are ready, when we are invested in the characters, it just ends.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Open tabs are cognitive spaces</title>
      <link>https://rybakov.com/blog/open_tabs_are_cognitive_spaces/</link>
      <pubDate>Wed, 14 Mar 2018 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/open_tabs_are_cognitive_spaces/</guid>
      <description>&lt;p&gt;Nobody actually wants to use a web browser. It becomes evident the second you open your browser and notice that you don&amp;rsquo;t have internet connection.&#xA;What we like about browsers is what they offer on the other side. What they connect us to. In that sense, browsers are transitory spaces - similar to airports, planes and train stations. Most of us have lost our childish curiosity towards these spaces - we go there because we want to arrive somewhere else.&lt;/p&gt;&#xA;&lt;p&gt;Arriving somewhere else with early browsers was quite one-dimensional - you clicked your way from one website to the next, in the same window. You surfed. You bookmarked the pages that you wanted to return to.&lt;/p&gt;&#xA;&lt;p&gt;Later, as the web became richer, you sometimes had more than one browser window open. I vividly remember having seven Internet Explorer windows open, thinking to myself &amp;ldquo;this is way too much to keep track of!&amp;rdquo;.&lt;/p&gt;&#xA;&lt;p&gt;Right now, my Firefox has 477 tabs open.&lt;/p&gt;&#xA;&lt;p&gt;How could this happen?&lt;/p&gt;&#xA;&lt;h4 id=&#34;tabs-are-externalized-cognition&#34;&gt;Tabs are externalized cognition&lt;/h4&gt;</description>
    </item>
    <item>
      <title>Cartographic spasms</title>
      <link>https://rybakov.com/blog/cartographic_spasms/</link>
      <pubDate>Sun, 18 Feb 2018 10:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/cartographic_spasms/</guid>
      <description>&lt;p&gt;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;shrinking_map&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/shrinking_map/shrinking_map.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/shrinking_map/shrinking_map.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;shrinking_mapbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;shrinking_mappaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;The concept of a &lt;em&gt;global village&lt;/em&gt; stems from an idealistic view of a shrinking world, connected through electronic media. What is far, comes closer, nothing is out of reach anymore.&lt;/p&gt;&#xA;&lt;p&gt;Maps shape our undestanding of the physical world, so I decided to invert it. To shape the maps according to the understanding of the world - in this case according to the concept of a global village.&#xA;I shrank the world little by little by removing &lt;em&gt;empty, unused spaces&lt;/em&gt;. If they were valuable, they wouldn&amp;rsquo;t be unused, right?&lt;/p&gt;&#xA;&lt;p&gt;Maps seem true and immutable, even though every projection of the spherical planet onto a two dimensional space produces faulty results. Either the northern and southern parts appear much larger than they really are (Greenland is actually 60% the size of India, not the other way around), or the shapes are all wrong, or both. But we trust maps, we trust that what they represent is the truth.&lt;/p&gt;&#xA;&lt;p&gt;So it&amp;rsquo;s a special delight to play with this notion of cartographic immutability.&#xA;This one is a breathing map of New York.&lt;/p&gt;&#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;breathing_map&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/breathing_map/breathing_map.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/breathing_map/breathing_map.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;breathing_mapbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;breathing_mappaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;What could be in this text but isn&amp;rsquo;t:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;How maps shape political understanding and decisions&lt;/li&gt;&#xA;&lt;li&gt;How South America is much farther east than people commonly think. It&amp;rsquo;s really far east.&lt;/li&gt;&#xA;&lt;li&gt;The whole discourse on failed globalization, nation states and Gaia&lt;/li&gt;&#xA;&lt;li&gt;How the mental map combines positional cues with vector based cues (how humans actually navigate the world)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;And here&amp;rsquo;s the code:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Movement Notation</title>
      <link>https://rybakov.com/blog/movement_notation/</link>
      <pubDate>Sun, 04 Feb 2018 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/movement_notation/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/movementnotation_history.png&#34; &#xA;&#x9; data-src=&#34;../images/hiq/movementnotation_history.png&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/movementnotation_history.png&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;There is a long history of movement notations. Before ubiquitous video capture you had to preserve the developed choreography somehow. Now they are more of a historical curiosity, even though they do look amazing as graphical systems.&lt;/p&gt;&#xA;&lt;p&gt;Of course, you could also provide simple illustrations of positions, as was done in a book by Golena Voyachkova &amp;ldquo;Movement - the root of woman&amp;rsquo;s health and beauty&amp;rdquo; that came out in the Soviet Union in 1965.&#xA;It tried to illustrate movement by showing the correct (on the left) and the wrong (on the right) way of doing things.&lt;/p&gt;&#xA;&lt;p&gt;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/movementnotation_book.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/movementnotation_book.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/movementnotation_book.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;The last image is titled &amp;ldquo;The exemplary start of the negro&amp;rdquo;. This book is a good indication how movements were perceived as gender and race specific fifty years ago.&lt;/p&gt;&#xA;&lt;p&gt;Then again you could describe movement through text:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Broken shapes and hidden bodies</title>
      <link>https://rybakov.com/blog/broken_shapes/</link>
      <pubDate>Sun, 07 Jan 2018 10:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/broken_shapes/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;iv_bless&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/iv_bless/iv_bless.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/iv_bless/iv_bless.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;iv_blessbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;iv_blesspaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;at Bless Home Berlin.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Smoking in fashion as a promise of bodily experience</title>
      <link>https://rybakov.com/blog/smoking_as_promise/</link>
      <pubDate>Sun, 24 Dec 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/smoking_as_promise/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/fakenose.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/fakenose.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/fakenose.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;Diseases have always been fashionable. Tuberculosis &lt;a href=&#34;https://www.smithsonianmag.com/science-nature/how-tuberculosis-shaped-victorian-fashion-180959029/&#34;&gt;brought us&lt;/a&gt; the fad of looking pale and skinny. Syphilis and it&amp;rsquo;s symptomatic light sensitivity and rotten noses brought us &lt;a href=&#34;https://www.racked.com/2015/4/6/8349545/sunglasses-history&#34;&gt;sunglasses and fake noses&lt;/a&gt; that were worn even by those not afflicted by the illness.&lt;br&gt;&#xA;I won&amp;rsquo;t go into detail as to why disease becomes fashionable - first, I don&amp;rsquo;t really know, and then there&amp;rsquo;s a &lt;a href=&#34;http://fashionablediseases.info/podcasts.php&#34;&gt;whole conference&lt;/a&gt; on it.&lt;/p&gt;&#xA;&lt;p&gt;One point of interest for me is how a fashionable disease is a &lt;em&gt;promise of a physical experience&lt;/em&gt;. Similar to a certain subset of internet memes I &lt;a href=&#34;../everyday_movement_of_expanded_body/#mental-gymnastics&#34;&gt;wrote about before&lt;/a&gt;, where a human or a non-human stand-in reminds the viewer of a bodily experience from everyday life.&lt;br&gt;&#xA;Smoking in film and fashion can be interpreted in the same way - as a powerful, addictive, self-inflicted bodily experience, as a promise of being highly attentive to the body, the fingers, the mouth and the inside of the lungs.&lt;/p&gt;&#xA;&lt;p&gt;As smoking becomes much less acceptable socially - and to advertisers - the fashion photography looks for new ways to make the signifier more abstract - the models shown here are not-smoking emptied non-cigarettes.&lt;/p&gt;&#xA;&lt;p&gt;&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/nonsmoking.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/nonsmoking.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/nonsmoking.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;It would be interesting to test which other bodily experiences could be promised by fashion - besides the obvious promises of eternal youth, sex and drugs. How about being uncomfortable? Being fat using a fabulous fat-suit? Freezing in the winter while wearing a down jacket with huge holes? Not being able to pee, as the process of unwrapping the clothes takes hours? Never being thirsty with a 12-liter water pack hidden in the garment? Feeling unprotected with sleeves that don&amp;rsquo;t allow your hands to touch your body, combined with an exposed belly?&lt;/p&gt;&#xA;&lt;p&gt;Include some promise of bodily experience within your work. It changes things.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;What is not in this text but could be:&#xA;- golden teeth and broken nose as a criminal status symbol&#xA;- movement restricting feathers in male peacocks as a sign of fitness&#xA;- jewellery made of wearer&amp;rsquo;s hair for cancer patients&#xA;- fidget jewellery for autists as described in &lt;a href=&#34;../essay/everyday_movement_of_expanded_body/#eigenbewegung-des-k%C3%B6rpers&#34;&gt;a previous text&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Afrocubism</title>
      <link>https://rybakov.com/blog/afrocubism/</link>
      <pubDate>Thu, 07 Dec 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/afrocubism/</guid>
      <description>&lt;p&gt;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/schwadrat_P1M0974.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/schwadrat_P1M0974.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/schwadrat_P1M0974.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;p&gt;In the winter of 2013 I went to Guinea with a few friends. Guinea is one of my favourite destinations, since Silvia, the mother of my friend Christoph, is working there at a medical laboratory. And having nice people on the ground makes travelling to a foreign country much more enjoyable.&lt;/p&gt;&#xA;&lt;p&gt;Guinea is an interesting country to visit. It is rich in natural resources, which leads to wealth being concentrated in the hands of a few powerful families. It also means that tourism is non-existent and the only white people present are professionals working at mining companies and NGOs. You can be the only white person in a densely populated area, and you get eyed on the streets - it feels like everything you do would be talked about later, so you end up being not only a guest but also an ambassador for your culture.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The Empire of Oil</title>
      <link>https://rybakov.com/blog/empire-of-oil/</link>
      <pubDate>Mon, 04 Dec 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/empire-of-oil/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.costacompagnie.org/en/&#34;&gt;Costa Compagnie&lt;/a&gt; was preparing the &lt;em&gt;Empire of Oil&lt;/em&gt; 360° movie to show at Ballhaus Ost in Berlin.&lt;/p&gt;&#xA;&lt;p&gt;Two days before the premiere:&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/ballhauspano2.gif&#34; &#xA;&#x9; data-src=&#34;../images/hiq/ballhauspano2.gif&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/ballhauspano2.gif&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>The Vertical Human Decimeter</title>
      <link>https://rybakov.com/blog/vertical-human-decimeter/</link>
      <pubDate>Mon, 16 Oct 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/vertical-human-decimeter/</guid>
      <description>&lt;p&gt;Mira Hirtz has a good write-up on &lt;a href=&#34;http://mirahirtz.de/post/ten/&#34;&gt;how abstractions and representations of things become the things they meant to represent&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;With regards to representations, one phenomenon that I particularly like is what I call &lt;em&gt;interference&lt;/em&gt;. It happens when something, through its idiosyncratic existence, leaves traces in the outside world. Traces that show some of the object&amp;rsquo;s properties in a concise way.&lt;/p&gt;&#xA;&lt;p&gt;Just look at these photographs:&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/rabbits_RYB7377.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/rabbits_RYB7377.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/rabbits_RYB7377.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;&lt;br&gt;Taken in Karlsruhe.&lt;br&gt;&#xA;And the next one in the Alps, but that doesn&amp;rsquo;t matter that much:&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/cows_P2M0157vv.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/cows_P2M0157vv.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/cows_P2M0157vv.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;&lt;br&gt;The top one I call &lt;em&gt;Rabbits&lt;/em&gt;, while the lower one is called &lt;em&gt;Cows&lt;/em&gt;.&lt;/p&gt;&#xA;&lt;p&gt;This kind of cow and rabbit representation contains no information about their fur or their big faithful eyes - or any of the stuff that would be discernible from an animal drawing. Instead, it offers a one-dimensional but precise documentation that the animals are present, they are hungry, they eat tree leaves and are just around this tall.&lt;/p&gt;&#xA;&lt;p&gt;Mira also made a point that &lt;em&gt;illustration of female sexual organs shape the idea of what [female] pleasure should be like&lt;/em&gt;.&lt;br&gt;&#xA;I guess, the most suitable metaphor for the general understanding of female genitals I ever encountered is the &lt;a href=&#34;http://www.atlasobscura.com/places/vertical-earth-kilometer&#34;&gt;Vertical Earth Kilometer&lt;/a&gt; in Kassel.&#xA;It is an artwork by Walter De Maria - a two-inch thick solid brass rod that extend one kilometer down into the earth.&lt;/p&gt;&#xA;&lt;p&gt;On any arbitrary point on this planet a Vertical Earth Kilometer exists, though it is not perceived as such. Only through its measurement, through a penetration of earth by a thick rod, is it getting a representation that can be communicated easily.&#xA;Furthermore, the existence of the rod is purely speculative at this point in time. Sure, there must be eye witnesses that observed the rod being driven into the earth over 29 days, or, to put it differently, over a full moon cycle. But the visitors have no means to verify it: the rod is hidden from view. Yet even the theoretical existence of the rod is enough for a Vertical Earth Kilometer to exist.&lt;/p&gt;&#xA;&lt;p&gt;Comparing this situation to the general understanding of male and female genitalia is left as an excercise to the reader.&lt;/p&gt;&#xA;&lt;p&gt;What can not be represented, does not exist conceptually. Luckily, &lt;a href=&#34;https://www.theguardian.com/commentisfree/2016/sep/15/3d-model-clitoris-sexual-revolution-sex-education-womens-sexuality&#34;&gt;with new imaging techniques&lt;/a&gt;, female sexual organs are starting to be represented not as &lt;em&gt;absence of a rod&lt;/em&gt; but as complex three-dimensional organs they are.&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/clitori.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/clitori.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/clitori.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&lt;figcaption&gt;&#xA;&#x9;Results for &amp;lsquo;clitoris 3d&amp;rsquo; on google image search.&#xA;&lt;/figcaption&gt;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>Der Herbst kommt</title>
      <link>https://rybakov.com/blog/nemo/</link>
      <pubDate>Tue, 03 Oct 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/nemo/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;nemooo&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/nemooo/nemooo.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/nemooo/nemooo.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;nemooobuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;nemooopaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>The boundaries of Data Visualization</title>
      <link>https://rybakov.com/blog/dataviz/</link>
      <pubDate>Sun, 01 Oct 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/dataviz/</guid>
      <description>&lt;p&gt;It is always great fun to try and find patterns in vast amounts of data. Sometimes you find causation, other times just spurious correlation, but it&amp;rsquo;s a great excercise and the insight you get can be surprising.&lt;/p&gt;&#xA;&lt;p&gt;For a while, I have been wearing a light sensor that measures the surrounding light. The light that is around us, everywhere we go. It&amp;rsquo;s intensity and color. These graphs below are just two data points from January and April. Each horizontal pixel represents one minute, with data ranging from 6 am to 8 pm. You can see how the light changes from winter to spring, but as I know my daily routines, looking at these data reminds me of the course of events on the represented days. &lt;br&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/lr_comparison.png&#34; &#xA;&#x9; data-src=&#34;../images/hiq/lr_comparison.png&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/lr_comparison.png&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Changes over time can be shown well in a time lapse animation.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Power point play</title>
      <link>https://rybakov.com/blog/zenitpowerpoint/</link>
      <pubDate>Mon, 25 Sep 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/zenitpowerpoint/</guid>
      <description>&lt;p&gt;My nephew&amp;rsquo;s laptop is so old, he can&amp;rsquo;t play fifa.&#xA;Instead, he animates soccer games in Powerpoint.&lt;/p&gt;&#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;zenitpowerpoint&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/zenitpowerpoint/zenitpowerpoint.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/zenitpowerpoint/zenitpowerpoint.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;zenitpowerpointbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;zenitpowerpointpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>Dynamic Adaptive Streaming over HTTP (MPEG-DASH) for everyone</title>
      <link>https://rybakov.com/blog/mpeg-dash/</link>
      <pubDate>Wed, 13 Sep 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/mpeg-dash/</guid>
      <description>&lt;p&gt;I had a simple dream. A dream of embedding videos in a web page without using third party services such as youtube or vimeo. For a while it seemed that I found the solution: using ffmpeg to convert the source videos to highly optimized h264 mp4 files. I &lt;a href=&#34;https://rybakov.com/blog/ffmpeg/&#34;&gt;wrote&lt;/a&gt; about my process before. The drawback is, that you only get one quality setting. Use a high bitrate and the video will load slowly or stutter on slow connections. Use a low bitrate and it will load smoothly but never looked quite as beautiful as it should. You can never win.&lt;/p&gt;&#xA;&lt;p&gt;Luckily, there is a solution: Dynamic Adaptive Streaming over HTTP (MPEG-DASH). The concept is quite simple: you generate a few versions of your video with different bitrates, a manifest file that links to those versions, and let the browser decide - according to the current bandwidth - which version to load.&lt;/p&gt;&#xA;&lt;p&gt;But see for yourself:&lt;br&gt;&#xA;&lt;a href=&#34;../project/political_choreography_old/&#34;&gt;A single page with three autoplaying videos&lt;/a&gt;, using the standard html5 video.&lt;br&gt;&#xA;&lt;a href=&#34;../project/political_choreography/&#34;&gt;And the same page, but with MPEG DASH&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Every modern browser &lt;a href=&#34;http://caniuse.com/#feat=mediasource&#34;&gt;supports&lt;/a&gt; MPEG-DASH through the use of media source extensions. Well, except iOS Safari and Opera Mini. For those, an additional HLS stream - or a fallback to a normal mp4 file - can be used.&#xA;Media source extension support in the browsers means that you still have to use an additional js player such as &lt;a href=&#34;https://github.com/Dash-Industry-Forum/dash.js&#34;&gt;dash.js&lt;/a&gt; or &lt;a href=&#34;https://github.com/google/shaka-player&#34;&gt;shaka player&lt;/a&gt; to play your MPEG DASH streams.&lt;/p&gt;&#xA;&lt;p&gt;So, lets convert our videos with some command line magic. You will need &lt;em&gt;ffmpeg&lt;/em&gt; for the conversion and &lt;em&gt;MP4box&lt;/em&gt;(part of &lt;em&gt;gpac&lt;/em&gt;) to create the manifest file. On a mac, the easiest way to get those is through &lt;a href=&#34;http://brew.sh/&#34;&gt;Homebrew&lt;/a&gt;.&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;brew install ffmpeg gpac&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;&#xA;&lt;p&gt;Convert the source file called input.mov into an audio file and two video files:&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    ffmpeg -y -i &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;input.mov&amp;#34;&lt;/span&gt; -c:a aac -b:a 192k -vn &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;output_audio.m4a&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    ffmpeg -y -i &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;input.mov&amp;#34;&lt;/span&gt; -preset slow -tune film -vsync passthrough -an -c:v libx264 -x264opts &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;keyint=25:min-keyint=25:no-scenecut&amp;#39;&lt;/span&gt; -crf &lt;span style=&#34;color:#ae81ff&#34;&gt;22&lt;/span&gt;  -maxrate 5000k -bufsize 10000k -pix_fmt yuv420p -f mp4 &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;output_5000.mp4&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    ffmpeg -y -i &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;input.mov&amp;#34;&lt;/span&gt; -preset slow -tune film -vsync passthrough -an -c:v libx264 -x264opts &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;keyint=25:min-keyint=25:no-scenecut&amp;#39;&lt;/span&gt; -crf &lt;span style=&#34;color:#ae81ff&#34;&gt;23&lt;/span&gt;  -maxrate 2000k -bufsize 4000k -pix_fmt yuv420p -f mp4 &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;output_2000.mp4&amp;#34;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;&#xA;&lt;p&gt;What do all those options mean?&lt;/p&gt;</description>
    </item>
    <item>
      <title>The digital precision</title>
      <link>https://rybakov.com/blog/digital_precision/</link>
      <pubDate>Mon, 17 Jul 2017 20:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/digital_precision/</guid>
      <description>&lt;!--  --&gt; &#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/monet.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/monet.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/monet.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>V.I Lenin died and left the stumps behind</title>
      <link>https://rybakov.com/blog/lenin/</link>
      <pubDate>Fri, 07 Jul 2017 20:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/lenin/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/leninpni.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/leninpni.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/leninpni.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;What do we see here?&#xA;On the left is a papier-mâché box, with a Palekh style miniature on it. It is dated 1961. The style developed after icon painters from the city of Palekh had to find new jobs following the revolution of 1917.&#xA;The painting on the box depicts the tree stumps on which Vladimir Ilich Lenin used to rest and work. In the distance a foreign delegation looks on.&lt;/p&gt;&#xA;&lt;p&gt;On the right, Fidel Castro is laying flowers to the tree stumps, on which Lenin used to sit and work.&#xA;I repeat, Fidel Alejandro Castro Ruz is laying dying flowers to the dead tree stumps on which the deceased Vladimir Ilich Lenin used to rest and work.&lt;/p&gt;&#xA;&lt;p&gt;The thing with the stumps is quite amazing in itself. How else could you stage the absence of a person if not by the stumps that signify the absence of trees that stood there once, tall and proud. The person is long gone and only the absence of the trees is left.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sandwich</title>
      <link>https://rybakov.com/blog/sandwich/</link>
      <pubDate>Sat, 01 Jul 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/sandwich/</guid>
      <description>&lt;audio controls src=&#34;../audio/sandwich.mp3&#34; preload=&#34;none&#34; /&gt;  &#xA;&lt;p&gt;Christoph, teaching guinean kids the pronounciation of shandwish.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://rybakov.com/blog/blueshorts/</link>
      <pubDate>Sun, 11 Jun 2017 20:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/blueshorts/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_RYB4560_cut.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_RYB4560_cut.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_RYB4560_cut.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>{Spam|Shadow marketing} is {amazing|great}!</title>
      <link>https://rybakov.com/blog/say_tell_no/</link>
      <pubDate>Fri, 26 May 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/say_tell_no/</guid>
      <description>&lt;p&gt;Spam emails try to get through filters by having slightly different content, such as writing &amp;ldquo;incredible&amp;rdquo; and &amp;ldquo;fantastic&amp;rdquo; interchangeably.&lt;br&gt;&#xA;For this, a template with all the possibilities is created and processed before sending. But sometimes unprocessed templates get sent instead. The writing is quite {incredible|fantastic|marvelous| outstanding}:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;strong&gt;{Say|Tell} No To {Fat|Being Fat}: {Act Now|Act Fast} &amp;amp; Get {Instant|Quick|Incredible| Fantastic|Marvelous| Outstanding} Results&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;{Having|Getting} the {body of you dreams|slim body|fit body|beach body} is {easier|much easier} than you {think|always thought|thought}, {all thanks to|thanks to|with the help of} the {correct|right|low carb} {diet|diet program|diet plan|nutrition plan|nutrition program}, {good|regular} {workout|gym workouts|workouts} and this {amazing|exclusive| revolutionary|advance| spectacular} {product|supplement|solution} that will {help you|allow you to|give you a chance to|give you an opportunity to|give you a possibility to} achieve {instant|quick|incredible| fantastic|marvelous| outstanding} results.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;{Incredible|Revolutionary| Exceptional|Phenomenal|Outstanding| Glorious|Brilliant|Rapid-acting|Fast-acting} {product|supplement|solution} {working|suitable} for {all body types|types of bodies} has proven to {bring fast|show incredible|show fantastic|show quick|show jaw-dropping} results, {motivate|give motivation} for {ongoing|further} {weight reduction|weight loss}, improve {mood|your mood}, {reduce|decrease} appetite and {bring|provide} {all|other|many other} {positive|beneficial|great} effects.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;{With the help of|Thanks to its} {exclusive|advanced| amazing|marvelous| unique|one-of-a-kind} formula {developed|created} {in collaboration|together} by {Japanese|German} and American {nutritionists|dietologists| scientists}, your {beach|fit|slim|dream} body is {only one click|one link} away, what are you waiting for?&lt;/p&gt;&#xA;&lt;/blockquote&gt;</description>
    </item>
    <item>
      <title>My name is Cow</title>
      <link>https://rybakov.com/blog/mynameiscow/</link>
      <pubDate>Sat, 20 May 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/mynameiscow/</guid>
      <description>&lt;p&gt;In a &lt;a href=&#34;https://www.reddit.com/r/AskReddit/comments/598qrb/health_inspectors_of_reddit_whats_the_worst/d96q5f9/?st=j011bv6k&amp;amp;sh=6db93259&#34;&gt;reddit thread&lt;/a&gt; on health inspection violations someone offered a story about a run away cow licking bread in a recreation of a 18th century french bakery.&lt;br&gt;&#xA;A commenter wrote a poem about the incident:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;my name is Cow,&lt;br&gt;&#xA;and wen its nite,&lt;br&gt;&#xA;or wen the moon&lt;br&gt;&#xA;is shiyning brite,&lt;br&gt;&#xA;and all the men&lt;br&gt;&#xA;haf gon to bed -&lt;br&gt;&#xA;i stay up late.&lt;br&gt;&lt;br&gt;&#xA;i lik the bred.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;It is unclear why it caught on so quickly, but the poem inspired countless imitations, telling more stories from the perspective of &lt;a href=&#34;http://copperbadge.tumblr.com/post/155365010096/my-name-is-cat-no-cares-have-i-be-it-sun-or&#34;&gt;Cat&lt;/a&gt;, &lt;a href=&#34;http://sashayed.tumblr.com/post/155925205420/thenatsdorf-cow-catching-snowflakes-full&#34;&gt;Cow&lt;/a&gt; or even &lt;a href=&#34;https://www.reddit.com/r/AskReddit/comments/5cnu7b/if_dogs_had_a_911_hotline_what_dogemergencies/d9y72vd/?st=j3kno2iz&amp;amp;sh=96a29c8e&#34;&gt;Dog&lt;/a&gt;.&lt;br&gt;&#xA;I would guess it is the plain form and the formidable self-confidence of Cow that makes this poem an essential response to our troubled times. Cow does not ponder on its identity or its actions. Cow knows what it is and what it does. Naturally. It liks the bred.&lt;/p&gt;&#xA;&lt;p&gt;I wish for all my friends to be more like Cow. Believe in what you do. Do it. And find something to lik.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Ivana reading</title>
      <link>https://rybakov.com/blog/ivana3d/</link>
      <pubDate>Mon, 20 Feb 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/ivana3d/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;ivana3d&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/ivana3d/ivana3d.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/ivana3d/ivana3d.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;ivana3dbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;ivana3dpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>The Balloon</title>
      <link>https://rybakov.com/blog/balloon/</link>
      <pubDate>Sat, 18 Feb 2017 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/balloon/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;balloon&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/balloon/balloon.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/balloon/balloon.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;balloonbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;balloonpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;There is something magical in such videos - since you are basically making something from nothing. The technique is borrowed from impro theater: you write the screenplay together as a group, with every participant saying one simple sentence on his or her turn. One by one a story is built. Then just film it using the simplest means, and you have a non-trivial movie in a day.&lt;/p&gt;&#xA;&lt;p&gt;I used this technique in workshops with &lt;a href=&#34;http://usanii-lab.com&#34;&gt;USANII-Lab&lt;/a&gt; in Nairobi, resulting in two short films in two days, the beautifully absurd &lt;a href=&#34;https://vimeo.com/68944693&#34;&gt;My ambition for survival is the only way to eat my food&lt;/a&gt; and the more polished &lt;a href=&#34;https://vimeo.com/68947929&#34;&gt;To painfully swallow the pain of being unnoticed&lt;/a&gt;.&lt;br&gt;&#xA;As for the video above, that was just reviving this excercise for Ivana and me.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Кижи</title>
      <link>https://rybakov.com/blog/kiji/</link>
      <pubDate>Sat, 24 Dec 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/kiji/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_RYB0718.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_RYB0718.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_RYB0718.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>Зенит - чемпион</title>
      <link>https://rybakov.com/blog/zenit/</link>
      <pubDate>Tue, 20 Dec 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/zenit/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_RYB0542.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_RYB0542.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_RYB0542.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Irgendwo haben sie 100 Zenit-Bälle gefunden.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Chicken bicicleta</title>
      <link>https://rybakov.com/blog/guinea_babka/</link>
      <pubDate>Sat, 29 Oct 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/guinea_babka/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/guinea_babka.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/guinea_babka.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/guinea_babka.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;In Guinea laufen Hühner überall rum, sie sind schmal und schmächtig, leicht und knochig wie Rennradfahrer.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Питерские дворики</title>
      <link>https://rybakov.com/blog/dvoriki/</link>
      <pubDate>Tue, 18 Oct 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/dvoriki/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;dvoriki1&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/dvoriki1/dvoriki1.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/dvoriki1/dvoriki1.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;dvoriki1buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;dvoriki1paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Ходил я по дворам; дворы дрожали.&lt;/p&gt;&#xA;&lt;p&gt;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;dvoriki2&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/dvoriki2/dvoriki2.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/dvoriki2/dvoriki2.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;dvoriki2buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;dvoriki2paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;  &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;dvoriki3&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/dvoriki3/dvoriki3.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/dvoriki3/dvoriki3.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;dvoriki3buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;dvoriki3paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;  &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;&#xA;&lt;!-- &lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;projects/dvoriki4.mp4&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/projects/dvoriki4.mp4/projects/dvoriki4.mp4.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/projects/dvoriki4.mp4/projects/dvoriki4.mp4.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;projects/dvoriki4.mp4buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;projects/dvoriki4.mp4paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA; &lt;br&gt;&lt;br&gt;&lt;br&gt; --&gt; &#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;dvoriki5&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/dvoriki5/dvoriki5.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/dvoriki5/dvoriki5.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;dvoriki5buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;dvoriki5paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>Mit FFMPEG Videos für Web optimal speichern, nur heute, nur jetzt</title>
      <link>https://rybakov.com/blog/ffmpeg/</link>
      <pubDate>Thu, 13 Oct 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/ffmpeg/</guid>
      <description>&lt;p&gt;Wer Videos über Vimeo oder youtube publiziert, muss sich mit solchen Fragen nicht beschäftigen. Für die zwei Leute, die selber noch Videos in mp4 konvertieren um sie dann in ihre Webseiten einbinden ist es vieleicht interessant.&lt;/p&gt;&#xA;&lt;p&gt;Also vielleicht interessant zu erfahren, dass ich lange Zeit es falsch gemacht habe mit direkten Exporten aus FinalCut oder MPEGStreamclip. Es geht besser mit ffmpeg.&lt;/p&gt;&#xA;&lt;p&gt;FFMPEG kann man recht leicht mit &lt;a href=&#34;http://brew.sh/&#34;&gt;Homebrew&lt;/a&gt; installieren, wie man alles so leicht mit homebrew installieren kann.&lt;/p&gt;&#xA;&lt;p&gt;Und dann im Terminal zum gewünschten Ordner navigieren und FFMPEG ausführen mit den Zauberoptionen:&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;ffmpeg -vcodec libx264 -vf &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;format=yuv420p&amp;#34;&lt;/span&gt; -preset slow -tune film -crf &lt;span style=&#34;color:#ae81ff&#34;&gt;25&lt;/span&gt; -maxrate 4000k -bufsize 1000k -movflags +faststart -y videooutput.mp4 -i video.mov&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;&#xA;&lt;p&gt;Dies konvertiert &lt;em&gt;video.mov&lt;/em&gt; in h264 mit guter Qualität und einer variablen Bitrate die nach oben hin auf 4Mbit begrenzt ist.&lt;/p&gt;&#xA;&lt;p&gt;Im Einzelnen bedeutet es:&lt;/p&gt;</description>
    </item>
    <item>
      <title>The main points of the second presidential debate</title>
      <link>https://rybakov.com/blog/debate/</link>
      <pubDate>Mon, 10 Oct 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/debate/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;debate&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/debate/debate.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/debate/debate.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;debatebuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;debatepaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Hillary Clinton and Donald Trump at the second debate.&lt;br&gt;&#xA;I don&amp;rsquo;t think they like each other too much.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Russia is..</title>
      <link>https://rybakov.com/blog/chicken/</link>
      <pubDate>Sun, 02 Oct 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/chicken/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;chicken5&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/chicken5/chicken5.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/chicken5/chicken5.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;chicken5buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;chicken5paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;..growing chicken under a high voltage transformer station.&lt;/p&gt;&#xA;&lt;p&gt;Фермерские хозяйства, деревни и села расцветают, если включить попсу девяностых.&lt;br&gt;&#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;farmmusic&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/farmmusic/farmmusic.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/farmmusic/farmmusic.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;farmmusicbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;farmmusicpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Glossolalia</title>
      <link>https://rybakov.com/blog/lall/</link>
      <pubDate>Fri, 30 Sep 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/lall/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;screamings&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/screamings/screamings.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/screamings/screamings.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;screamingsbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;screamingspaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;My nephew Timofey has some trouble accepting the arbitrary authority of adults. In this case, while the mother was away, an older man said something to him in an authoritative voice. Timofey&amp;rsquo;s reaction was to try and search for his mother, and - after that proved ineffective - to discharge his emotions in a loud, angry but non-confrontational way. He just screamed some meaningless speech-like sounds into the air.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://en.wikipedia.org/wiki/Glossolalia&#34;&gt;Glossolalia&lt;/a&gt; - speaking in tongues - is &lt;a href=&#34;https://www.youtube.com/watch?v=g6how8Sp4jg&#34;&gt;practiced&lt;/a&gt; in some religious communities that consider it to be a divine language.&lt;br&gt;&#xA;The people of Deepmind trained it&amp;rsquo;s neural networks to find a better model of speech generation. And now, without an input &lt;a href=&#34;https://deepmind.com/blog/wavenet-generative-model-raw-audio/&#34;&gt;&lt;em&gt;it speaks in tonges&lt;/em&gt;&lt;/a&gt; (scroll down to &amp;ldquo;Knowing What to Say&amp;rdquo;).&lt;/p&gt;&#xA;&lt;p&gt;Perhaps it is a good way for a computer to get emotional. In case an older man blindly assumes authority over it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Primitive</title>
      <link>https://rybakov.com/blog/primitive/</link>
      <pubDate>Tue, 13 Sep 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/primitive/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://github.com/fogleman/primitive&#34;&gt;Primitive&lt;/a&gt; is a command line tool to turn pictures into abstract images.&lt;/p&gt;&#xA;&lt;p&gt;I played around with it using the frames of this video of a dog in the russian forest:&#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;dogles&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/dogles/dogles.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/dogles/dogles.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;doglesbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;doglespaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;/p&gt;&#xA;&lt;p&gt;Primitive time!&lt;br&gt;&#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;dogles_pr&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/dogles_pr/dogles_pr.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/dogles_pr/dogles_pr.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;dogles_prbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;dogles_prpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;/p&gt;&#xA;&lt;p&gt;How do we get here?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Russia is</title>
      <link>https://rybakov.com/blog/russia_is/</link>
      <pubDate>Tue, 13 Sep 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/russia_is/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;ruins3&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/ruins3/ruins3.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/ruins3/ruins3.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;ruins3buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;ruins3paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;..a childhood spent playing in ruins.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Сказка сказок</title>
      <link>https://rybakov.com/blog/skazka/</link>
      <pubDate>Fri, 29 Jul 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/skazka/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/peaches.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/peaches.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/peaches.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;В &amp;ldquo;Сказке сказок&amp;rdquo; есть сцены, утопающие в желтом свете, там всё хорошо и спокойно и все дома и что-то потихоньку делают.&lt;br&gt;&#xA;Воспоминания о детстве, наверное.&lt;/p&gt;&#xA;&lt;p&gt;Нашел эту фотографию августа 2015 и вспомнил. Папа построил веранду, и теперь там солнечно, и можно сидеть и есть персики в свете сказки сказок. Арс с папой и едят.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Neubauten</title>
      <link>https://rybakov.com/blog/neubauten/</link>
      <pubDate>Tue, 19 Jul 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/neubauten/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_RYB7407.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_RYB7407.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_RYB7407.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Когда мне еще не было и двадцати, я постоянно искал музыку, новую, незнакомую музыку - не существующую в реальном мире.&#xA;Друзья мои ходили на концерты и ездили на фестивали, а мне это было не интересно, слишком приземленно и обыденно. Я сидел в интернете на audioscrobbler.com, и слушал Coil, Amon Tobin, какого-то чувака с брагофоном, Karlheinz нашевсё Stockhausen, Venetian Snares и конечно Einstürzende Neubauten.&lt;/p&gt;&#xA;&lt;p&gt;А тут, на окончание семестра, эти самые падующие новостройки сыграли в универе. Новый ректор пригласил по старой дружбе.&lt;/p&gt;&#xA;&lt;p&gt;Вот этот парень с большим носом, весело лупящий топориком по кирпичам - FM Einheit. Ему пятьдесят семь.&lt;/p&gt;</description>
    </item>
    <item>
      <title>B27 / Berlin 2013</title>
      <link>https://rybakov.com/blog/b27/</link>
      <pubDate>Fri, 11 Mar 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/b27/</guid>
      <description>&lt;p&gt;It was summer 2013, and Christoph asked me to film a documentary for B27, a choreography for finding home.   Well, it is now that I understand that it was a choreography about finding home - at that point it was just a ragtag team of misfits: dancers, actors and a screenwriter, put in a room in Berlin, with three weeks time to find a piece to perform. And Franz Rogowski, who was trying to direct us.&lt;/p&gt;&#xA;&lt;p&gt;Naturally, we started out by making a photoshoot for a poster for the non-existing play:&lt;/p&gt;&#xA;&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;b27_photoshoot&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/b27_photoshoot/b27_photoshoot.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/b27_photoshoot/b27_photoshoot.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;b27_photoshootbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;b27_photoshootpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;The play itself was to be discovered through experimentation, finding pieces that may work and combining them.&lt;br&gt;&#xA;One of the things that were found was.. voluntary convulsions.&lt;/p&gt;&#xA;&lt;p&gt;My guess is that you can not find home - any home - without being at home in your own body. A body is defined by it&amp;rsquo;s borders, by it&amp;rsquo;s freedom of movement.&lt;br&gt;&#xA;And the ultimate self-movements of the body are exactly that - convulsions. Convulsions let you reevaluate your bodily borders and limits of control.&lt;/p&gt;&#xA;&lt;p&gt;But see for yourself:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Die Magisterprüfung</title>
      <link>https://rybakov.com/blog/julie/</link>
      <pubDate>Thu, 10 Mar 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/julie/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;julie7&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/julie7/julie7.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/julie7/julie7.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;julie7buffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;julie7paused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Aus der Magisterprüfung der Julia Emmler.&lt;br&gt;&#xA;Jetzt neu - man kann die Videos mit Sound anschauen. Es lohnt sich!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vor einem Jahr auf Rügen</title>
      <link>https://rybakov.com/blog/rugen/</link>
      <pubDate>Sun, 06 Mar 2016 20:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/rugen/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_P2M1566s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_P2M1566s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_P2M1566s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Vor einem Jahr auf Rügen war es so kalt,&lt;br&gt;&#xA;vor einem Jahr auf Rügen war es so kalt, dass der Sanddornsaft einfror in der Verpackung, wenn man ihn draußen gelassen hat.&lt;br&gt;&#xA;Es war so kalt, dass der Laub bei jedem Schritt in Staub zerfiel, den ganzen Wald erschütternd.&lt;br&gt;&#xA;So kalt, dass die Dunkelheit sich nicht traute zu kommen, wartete nebenan den ganzen Tag lang, und wenn sie dann endlich kam, fiel sie in Flocken vom Himmel.&lt;br&gt;&#xA;Es war so kalt, dass man beim Gehen nur die Mitte des Körpers verwenden konnte; die Periphärie war vor Kälte erstarrt.&lt;/p&gt;&#xA;&lt;p&gt;Vor einem Jahr auf Rügen war es so kalt, dass ich mich nicht traute, deine Hand zu nehmen, und so bist du mir vorweg gegangen, samt Hand.&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/rugen.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/rugen.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/rugen.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Manchmal war es aber auch recht warm.&lt;/p&gt;</description>
    </item>
    <item>
      <title>On shades</title>
      <link>https://rybakov.com/blog/dictator/</link>
      <pubDate>Mon, 29 Feb 2016 20:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/dictator/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/military.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/military.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/military.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Der Anblick von Guinäer in Militäruniformen oder mit Sonnenbrillen erzeugt bei mir ein ungutes Gefühl in der Magengegend. Zum Teil durch die Bilder der Berichterstattung aus Afrika verursacht, zum Teil aus der Erinnerung an meine erste Reise. Da wollte ich mal ein Bild von der Straße machen, und ein paar entlang spazierende Militärs haben es gesehen. Natürlich wollten sie die Kamera konfiszieren, weil es ja illegal ist, Militäreinrichtungen und Soldaten abzulichten. Ich hab mich in der NGO verschanzt und ließ die eloquenten Wächter die Lage klären.&lt;/p&gt;&#xA;&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/militarycrop.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/militarycrop.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/militarycrop.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Da, da sehen sie mich!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Mbo</title>
      <link>https://rybakov.com/blog/mbo/</link>
      <pubDate>Mon, 29 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/mbo/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;alcin&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/alcin/alcin.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/alcin/alcin.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;alcinbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;alcinpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Alassan (links) und Alcin. Auch Mbo genannt, weil niemand sie auseinander halten kann. Sehr ernste Leute.&lt;br&gt;&#xA;Am dritten Tag kam Alassan nicht zu den Übungen, da er mit 40° Fieber im Bett lag. Im Krankenhaus steckten benutzte Nadeln aus dem Bett, und so hat Christoph ihn einfach mit Antibiotika gefüttert, und mit Käsebrot, und dann ging es schon.&lt;br&gt;&#xA;Den Alcin musste ich beim feierlichen Drehabschluss aus dem Pool ziehen, als er in der Mitte von dem Pool nicht von der Stelle kam, und auch den Boden nicht erreichte.&lt;br&gt;&#xA;Seitdem kümmerte er sich um mich, wie um einen kleinen, etwas dümmlichen Bruder - schnürte mir die Schuhe richtig zu beim Fußballspielen, wischte mir den Dreck aus dem Gesicht nach einem misslungenem Kopfballversuch und erklärte geduldig die Lage, wenn ich mal mit meinem Französisch nicht vorankam.&lt;/p&gt;&#xA;&lt;p&gt;Also, ich glaube, das war Alcin. Mbo eben.&lt;/p&gt;</description>
    </item>
    <item>
      <title>LGA</title>
      <link>https://rybakov.com/blog/lga/</link>
      <pubDate>Wed, 24 Feb 2016 20:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/lga/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_SDI0485bb.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_SDI0485bb.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_SDI0485bb.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Laboratoire Médical Guinéo-Allemand. Der weißeste Ort in Conakry.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://rybakov.com/blog/husten/</link>
      <pubDate>Sat, 20 Feb 2016 23:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/husten/</guid>
      <description>&lt;p&gt;// Husten? We have a problem. //&lt;/p&gt;</description>
    </item>
    <item>
      <title>sometimes</title>
      <link>https://rybakov.com/blog/sometimes/</link>
      <pubDate>Fri, 19 Feb 2016 20:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/sometimes/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_SDI0347bs.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_SDI0347bs.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_SDI0347bs.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;sometimes I feel //&lt;br&gt;&#xA;like a motherless child //&lt;/p&gt;</description>
    </item>
    <item>
      <title>Gait</title>
      <link>https://rybakov.com/blog/gait/</link>
      <pubDate>Thu, 18 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/gait/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;gait&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/gait/gait.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/gait/gait.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;gaitbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;gaitpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Wenn man nach langem Flug noch auf den verspäteten Zug warten muss, kann man den Gang der Menschen beobachten.&lt;br&gt;&#xA;Wie sie das Knie voranschleudern, und der Unterschenkel schwingt mit und die Ferse trifft gewaltsam auf den Boden.&lt;br&gt;&#xA;Oder da läuft jemand sehr kontrolliert, schwunglos, und stellt sein Fuß vorsichtig ab.&lt;br&gt;&#xA;Und wie die Zwischenschicht zwischen Mensch und Boden die Raumposition und Bewegungsablauf beeinflußt! Ein Wunder, dass sie nicht alle ausrutschen!&lt;/p&gt;&#xA;&lt;p&gt;Ich saß da, ließ die Peking-Ente kalt werden und versank völlig in menschlichen Füßen, bis mein Zug kam.&lt;/p&gt;</description>
    </item>
    <item>
      <title>What is Deutschland?</title>
      <link>https://rybakov.com/blog/germany/</link>
      <pubDate>Mon, 15 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/germany/</guid>
      <description>&lt;p&gt;How does it feel, to return to Germany after a few weeks in Africa?&lt;br&gt;&#xA;There are no people on the streets.&lt;br&gt;&#xA;There are no loud sounds.&lt;br&gt;&#xA;It smells of nothing.&lt;/p&gt;&#xA;&lt;p&gt;It is supposed to be a rich country but is defined by absence.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Le Grand Marche</title>
      <link>https://rybakov.com/blog/madina/</link>
      <pubDate>Sun, 14 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/madina/</guid>
      <description>&lt;p&gt;&lt;audio controls src=&#34;../audio/madina.mp3&#34; preload=&#34;none&#34; /&gt;&lt;/audio&gt;&lt;/p&gt;&#xA;&lt;p&gt;Grand Marché Madina, shortly before closing time on a friday.&lt;br&gt;&#xA;Listen with headphones.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Долгая дорога домой</title>
      <link>https://rybakov.com/blog/long-way/</link>
      <pubDate>Sat, 13 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/long-way/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;doroga&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/doroga/doroga.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/doroga/doroga.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;dorogabuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;dorogapaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Там, за стеною, океан.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Иногда лучше молчать и слушать</title>
      <link>https://rybakov.com/blog/korably/</link>
      <pubDate>Fri, 12 Feb 2016 20:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/korably/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_SDI0381s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_SDI0381s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_SDI0381s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Иногда лучше молчать и слушать океан.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;А был бы прилив, ноги Кристофа были бы в воде.&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>The movement of lizard&#39;s tail on the wall of the pool</title>
      <link>https://rybakov.com/blog/lizard/</link>
      <pubDate>Fri, 12 Feb 2016 19:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/lizard/</guid>
      <description>&lt;p&gt;Es saß auf der Poolwand eine Eidechse, die hatte ihren Schwanz unter Wasser. Sie bewegte sich nicht, nur das Wasser schwappte auf und ab und es schien, als würde sie mit dem Schwanz wedeln.&lt;br&gt;&#xA;Ich habe das gefilmt, zwanzig Minuten lang, wie die Eidechse ihren Schwanz bewegt, also nicht die Eidechse und nicht den Schwanz, aber es sah ja so aus.&#xA;Ich habe das gefilmt, und die Speicherkarte in die Hosentasche getan, weil sie voll war, die Speicherkarte. Die Speicherkarte zerbrach beim Fußballspiel mit Zehnjährigen, aber dafür haben wir ja diese Geschichte.&lt;/p&gt;&#xA;&lt;p&gt;Die Eidechse ist nicht mehr da, ich hab nachgeschaut.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Bolzplatz</title>
      <link>https://rybakov.com/blog/bolzplatz/</link>
      <pubDate>Wed, 10 Feb 2016 19:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/bolzplatz/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_SDI0321s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_SDI0321s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_SDI0321s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Die Flut kommt und bringt Sachen mit. Die Ebbe kommt, und zeigt sie.&lt;/p&gt;&#xA;&lt;p&gt;Manchmal kommen ältere Spieler und tragen den Müll zur Seite. Danach kommt wieder die Flut. Das ist der Lauf der Dinge.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://rybakov.com/blog/batmen/</link>
      <pubDate>Wed, 10 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/batmen/</guid>
      <description>&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_P2M3940s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_P2M3940s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_P2M3940s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Bats were flying.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Disappointment</title>
      <link>https://rybakov.com/blog/babushka/</link>
      <pubDate>Tue, 09 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/babushka/</guid>
      <description>&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_P2M3886s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_P2M3886s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_P2M3886s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Ребенок ищет сиську, а её уж нет.&lt;br&gt;&#xA;Как мы сегодня, пришли, поснимали кино, пообещали на следущий день фотографии принести, а дома оказалось, что у мелкого фотопринтера, который специально с собой взяли нет чернил и бумаги.&lt;br&gt;&#xA;Рррржжжррррррррр&amp;hellip;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Безвременье</title>
      <link>https://rybakov.com/blog/leto/</link>
      <pubDate>Mon, 08 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/leto/</guid>
      <description>&lt;p&gt;Сегодня весь день провалялись дома. Я залечивал обгоревшую спину и ноги, а Кристоф отсыпался - он всю ночь смотрел Супербоул на телефоне. Да и просто после недели постоянной подготовки и работы, приятно ничего не делать.&lt;/p&gt;&#xA;&lt;p&gt;Как в детстве бывали такие летние дни - да что там - всё лето бывало, в безвременье. Встал, поел, что-то почитал, что-то написал, искупался в бассейне..&lt;br&gt;&#xA;И вроде всё есть, но нет той обязательности, необходимости оптимизации и планирования. А есть просто долгие, медленные, солнечные дни.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Der Ozean</title>
      <link>https://rybakov.com/blog/ozean/</link>
      <pubDate>Sun, 07 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/ozean/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;swim&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/swim/swim.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/swim/swim.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;swimbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;swimpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;p&gt;Der Ozean ist sanft und verzeiht niemandem.&lt;br&gt;&#xA;Der Ozean ist sanft und gibt den Rhythmus vor.&lt;br&gt;&#xA;Gibt den Rhythmus vor mit Ebbe und Flut.&lt;br&gt;&#xA;Gibt den Rhythmus vor mit jeder Welle, die ankommt und bricht.&lt;br&gt;&#xA;Der Ozean atmet, und die Menschen passen sich dem Atem an, wie zwei Verliebte die einander umarmen.&lt;br&gt;&#xA;Der Ozean ist laut: zuerst ist die Flut laut, dann die Welle, dann der Teil der Welle, der gerade aufbricht, dann das Tröpfchen, dann der Schaum. Sie sind laut, jeder für sich, jeder zu seiner Zeit und deswegen gar nicht so laut.&lt;/p&gt;&#xA;&lt;p&gt;Der Ozean ist ein atmendes Fraktal, und wenn Ikea Ozean verkaufen würde, für Zuhause, würde ich mir zwei holen.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://rybakov.com/blog/into-the-blue/</link>
      <pubDate>Fri, 05 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/into-the-blue/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_SDI0213s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_SDI0213s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_SDI0213s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Ich weiß immer noch nicht, ob Christoph wirklich telefoniert hat oder nur so getan hat.&lt;/p&gt;&#xA;&lt;p&gt;//update: er hat nur so getan.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://rybakov.com/blog/pushy-videos/</link>
      <pubDate>Fri, 05 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/pushy-videos/</guid>
      <description>&lt;p&gt;I stopped watching videos on youtube or facebook, as they became too pushy. They always seem to want to change my world view and want to grab and yank my attention. How disrespectful.&lt;br&gt;&#xA;Just calm down a bit. Don&amp;rsquo;t assume ownership over my attention. If I like what&amp;rsquo;s happening, I&amp;rsquo;ll stay.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://rybakov.com/blog/the-walking/</link>
      <pubDate>Thu, 04 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/the-walking/</guid>
      <description>&lt;div class=&#34;video-wrapper&#34; style=&#34;position: relative;&#34;&gt;&#xA;  &lt;video id =&#34;walking&#34; controls class=&#34;looped  &#34; loop=&#34;true&#34; poster=&#34;/video/walking/walking.jpg&#34; ZgotmplZ&gt;&#xA;      &lt;source src=&#34;../video/walking/walking.mp4&#34; type=&#34;video/mp4&#34;&gt;&#xA;  &lt;/video&gt;&#xA;  &lt;div id=&#34;walkingbuffering&#34; class=&#34;videobuffering&#34;&gt;&lt;/div&gt;&#xA;  &lt;div id=&#34;walkingpaused&#34; class=&#34;videopaused&#34;&gt;&lt;/div&gt;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>Hooded vultures are mating for life</title>
      <link>https://rybakov.com/blog/the_vultures/</link>
      <pubDate>Wed, 03 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/the_vultures/</guid>
      <description>&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_P2M3719_s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_P2M3719_s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_P2M3719_s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;The couple was eating garbage on the shore when a stray dog came by and pulled some long and pinkish white thing out of the ocean. The vultures joined in; it was a feast.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vor der Wand</title>
      <link>https://rybakov.com/blog/red/</link>
      <pubDate>Tue, 02 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/red/</guid>
      <description>&lt;figure class=&#34;full&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_P2M3782s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_P2M3782s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_P2M3782s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>Hinter der Wand</title>
      <link>https://rybakov.com/blog/blue/</link>
      <pubDate>Mon, 01 Feb 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/blue/</guid>
      <description>&lt;figure class=&#34;&#34;&gt;&#xA;&#xA;&#xA;&#xA;&lt;img &#xA;&#x9; src=&#34;../images/hiq/_P2M3775s.jpg&#34; &#xA;&#x9; data-src=&#34;../images/hiq/_P2M3775s.jpg&#34;&#xA;&#x9; data-srcset=&#34; /images/hiq/_P2M3775s.jpg&#34; &#xA;&#x9; alt=&#34;&#34; &#xA;&#x9; class=&#34;lazyload&#34; &gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;/figure&gt;</description>
    </item>
    <item>
      <title>repaying idea debt</title>
      <link>https://rybakov.com/blog/first/</link>
      <pubDate>Tue, 05 Jan 2016 14:07:46 +0000</pubDate>
      <guid>https://rybakov.com/blog/first/</guid>
      <description>&lt;p&gt;Heute erst hab ich ein Artikel über &lt;a href=&#34;http://jessicaabel.com/2016/01/27/idea-debt/&#34;&gt;idea debt&lt;/a&gt; gelesen - die große Anzahl an aufgeschriebenen Ideen kann eher hinderlich sein, und wie eine todo-Liste wirken, die man abarbeiten muss. Wer will denn sowas?&lt;/p&gt;&#xA;&lt;p&gt;Aber wohin mit den Ideen, mit den halb ausgesprochenen, halb im Mund hängenden Gedanken? Womit mit halb guten Fotos und unpassenden Anfängen?&lt;/p&gt;&#xA;&lt;p&gt;Vielleicht an diesen Ort? Vielleicht gefällt es ihnen in diesem ruhigen Teich.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
