<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://baszerr.eu/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>BaSzErr - blog:2013:02:09</title>
        <description></description>
        <link>https://baszerr.eu/</link>
        <lastBuildDate>Thu, 09 Apr 2026 09:14:12 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>https://baszerr.eu/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
            <title>BaSzErr</title>
            <link>https://baszerr.eu/</link>
        </image>
        <item>
            <title>duckduckgo</title>
            <link>https://baszerr.eu/doku.php?id=blog:2013:02:09:duckduckgo</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;duckduckgo&quot;&gt;2013.02.09 - DuckDuckGo&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;a href=&quot;https://baszerr.eu/lib/exe/detail.php?id=blog%3A2013%3A02%3A09%3Aduckduckgo&amp;amp;media=blog:2013:02:09:ddg.png&quot; class=&quot;media&quot; title=&quot;blog:2013:02:09:ddg.png&quot;&gt;&lt;img src=&quot;https://baszerr.eu/lib/exe/fetch.php?w=200&amp;amp;tok=7e469a&amp;amp;media=blog:2013:02:09:ddg.png&quot; class=&quot;mediaright&quot; align=&quot;right&quot; loading=&quot;lazy&quot; title=&quot;DuckDuckGo logo&quot; alt=&quot;DuckDuckGo logo&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;
recently i&amp;#039;ve came across &lt;a href=&quot;http://highscalability.com/blog/2013/1/28/duckduckgo-architecture-1-million-deep-searches-a-day-and-gr.html?utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+HighScalability+%28High+Scalability%29&quot; class=&quot;urlextern&quot; title=&quot;http://highscalability.com/blog/2013/1/28/duckduckgo-architecture-1-million-deep-searches-a-day-and-gr.html?utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+HighScalability+%28High+Scalability%29&quot; rel=&quot;ugc nofollow&quot;&gt;an interesting, start-up search engine&lt;/a&gt; called &lt;a href=&quot;https://duckduckgo.com&quot; class=&quot;urlextern&quot; title=&quot;https://duckduckgo.com&quot; rel=&quot;ugc nofollow&quot;&gt;DuckDuckGo&lt;/a&gt;. first thing is privacy policy, which is &lt;a href=&quot;http://donttrack.us&quot; class=&quot;urlextern&quot; title=&quot;http://donttrack.us&quot; rel=&quot;ugc nofollow&quot;&gt;not commonly respected nowadays&lt;/a&gt; (&lt;a href=&quot;https://en.wikipedia.org/wiki/https&quot; class=&quot;interwiki iw_wp&quot; title=&quot;https://en.wikipedia.org/wiki/https&quot;&gt;https&lt;/a&gt; is standard of course). there are a lot of nice features, like integration with &lt;a href=&quot;http://www.wolframalpha.com/&quot; class=&quot;urlextern&quot; title=&quot;http://www.wolframalpha.com/&quot; rel=&quot;ugc nofollow&quot;&gt;WolframAlpha&lt;/a&gt; for doing &lt;a href=&quot;https://duckduckgo.com/goodies#Math&quot; class=&quot;urlextern&quot; title=&quot;https://duckduckgo.com/goodies#Math&quot; rel=&quot;ugc nofollow&quot;&gt;mathematical calculations on the fly&lt;/a&gt;. in general it is plugin-reach and returns reasonable results. i though of giving it a try as my default search engine. let see how it performs in the wild. :)
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 15 Jun 2021 20:09:07 +0000</pubDate>
        </item>
        <item>
            <title>programming_wat</title>
            <link>https://baszerr.eu/doku.php?id=blog:2013:02:09:programming_wat</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;programming_wat&quot;&gt;2013.02.09 - programming wat&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
as a part of exercising my (basic) &lt;a href=&quot;https://en.wikipedia.org/wiki/Python (programming language)&quot; class=&quot;interwiki iw_wp&quot; title=&quot;https://en.wikipedia.org/wiki/Python (programming language)&quot;&gt;python&lt;/a&gt; skills i&amp;#039;ve decided to write short &lt;a href=&quot;https://en.wikipedia.org/wiki/HTML&quot; class=&quot;interwiki iw_wp&quot; title=&quot;https://en.wikipedia.org/wiki/HTML&quot;&gt;HTML&lt;/a&gt; links extractor and combiner, to download a series of &lt;a href=&quot;https://class.coursera.org/crypto-preview/lecture/index&quot; class=&quot;urlextern&quot; title=&quot;https://class.coursera.org/crypto-preview/lecture/index&quot; rel=&quot;ugc nofollow&quot;&gt;lectures on cryptography&lt;/a&gt; (which, btw i highly recommend!) to disk. as an experienced &lt;a href=&quot;https://en.wikipedia.org/wiki/C++&quot; class=&quot;interwiki iw_wp&quot; title=&quot;https://en.wikipedia.org/wiki/C++&quot;&gt;C++&lt;/a&gt; developer, having to increment variable, as a part of the loop, i typed:
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;++i&lt;/pre&gt;

&lt;p&gt;
and… it didn&amp;#039;t increment. wtf? quick search showed that python uses “+” and “-” as sign indicators, for number and thus parses “++i” as “+(+i)”, which gives “i”. WAT? and this is how i reminded myself of an short, excellent talk about “nice” &lt;a href=&quot;https://www.youtube.com/watch?v=0QZgx45aGCA&quot; class=&quot;urlextern&quot; title=&quot;https://www.youtube.com/watch?v=0QZgx45aGCA&quot; rel=&quot;ugc nofollow&quot;&gt;pitfalls in rubby and javascript&lt;/a&gt;.
&lt;/p&gt;

&lt;p&gt;
good news:
&lt;/p&gt;
&lt;ol&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; just learned something new&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; had some fun&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;
bad news:
&lt;/p&gt;
&lt;ol&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; got late&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; want sleep&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 15 Jun 2021 20:09:07 +0000</pubDate>
        </item>
    </channel>
</rss>
