<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: hadriendavid</title><link>https://news.ycombinator.com/user?id=hadriendavid</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 06:13:18 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=hadriendavid" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by hadriendavid in "Extreme skydiver Baumgartner dies in paragliding accident"]]></title><description><![CDATA[
<p>He was a far right extremist…</p>
]]></description><pubDate>Fri, 18 Jul 2025 09:45:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=44602841</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=44602841</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44602841</guid></item><item><title><![CDATA[New comment by hadriendavid in "Yagri: You are gonna read it"]]></title><description><![CDATA[
<p>« Anytime you store Boolean, a kitten dies » 
Nobody has ever said that but nobody wants any kitten to die so nobody has ever challenged me anytime I use that statement.</p>
]]></description><pubDate>Thu, 24 Apr 2025 01:57:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=43778596</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=43778596</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43778596</guid></item><item><title><![CDATA[New comment by hadriendavid in "Half-Life"]]></title><description><![CDATA[
<p>I remember playing on the computers at university. Someone had modded the campus map, was so fun to play.</p>
]]></description><pubDate>Sun, 23 Feb 2025 11:49:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=43148644</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=43148644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43148644</guid></item><item><title><![CDATA[New comment by hadriendavid in "Why it costs so much to be poor in America"]]></title><description><![CDATA[
<p>Take money where it is: in poors’ pockets! They do not have much but they are so many!</p>
]]></description><pubDate>Fri, 26 Jan 2018 10:29:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=16238176</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=16238176</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16238176</guid></item><item><title><![CDATA[New comment by hadriendavid in "Why it costs so much to be poor in America"]]></title><description><![CDATA[
<p>Take money where it is, in poors’ pockets: they do not have much but they are so many!</p>
]]></description><pubDate>Fri, 26 Jan 2018 10:29:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=16238175</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=16238175</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16238175</guid></item><item><title><![CDATA[New comment by hadriendavid in "API Design Guide"]]></title><description><![CDATA[
<p>How I interpret HATEOAS:<p>The client knows what and how it can access on the behalf of the authenticated user. Examples:<p>Representation for a user with no privileges:<p><pre><code>    {
        "articles": [{
            "id": 123
            "title": "A title",
            "links": {
                "self": {
                    "href": "http://blog.com/articles/123",
                    "methods": ["GET"]
                }
            }
        }],
        "links": {
            "self": {
                "href": "http://blog.com/articles",
                "methods": ["GET"]
            }
        }
    }

</code></pre>
Representation for a user who is authorized to add/edit/delete articles:<p><pre><code>    {
        "articles": [{
            "id": 123
            "title": "A title",
            "links": {
                "self": {
                    "href": "http://blog.com/articles/123",
                    "methods": ["GET", "DELETE", "PUT"]
                }
            }
        }],
        "links": {
            "self": {
                "href": "http://blog.com/articles",
                "methods": ["GET", "POST"]
            }
        }
    }

</code></pre>
This reduces the authorization logic on the client side.</p>
]]></description><pubDate>Wed, 22 Feb 2017 22:35:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=13709896</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=13709896</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13709896</guid></item><item><title><![CDATA[New comment by hadriendavid in "Save the Date by Google"]]></title><description><![CDATA[
<p>$ echo V2hlcmUgaGF2ZSB5b3UgYmVlbj8 | base64 -d
Where have you been?</p>
]]></description><pubDate>Tue, 24 Jan 2017 22:01:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=13476063</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=13476063</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13476063</guid></item><item><title><![CDATA[New comment by hadriendavid in "Ask HN: What web framework do you use? Why did you choose it?"]]></title><description><![CDATA[
<p>I've used Pyramid for the last 5 years to deploy highly available http api (>500K unique users daily).<p>- Super Modular, easy to achieve separation of concern;<p>- Powerful routing system;<p>- Consistent API;<p>- Elegant;<p>- Performant;<p>- Pyramid folks are super nice and super helpful on irc</p>
]]></description><pubDate>Sun, 25 Dec 2016 17:23:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=13254746</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=13254746</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13254746</guid></item><item><title><![CDATA[New comment by hadriendavid in "Why Pylint Is Both Useful and Unusable, and How You Can Actually Use It"]]></title><description><![CDATA[
<p>I use pylama, it wraps pylint and other code checking tools. It also has a cool logo.<p><a href="https://github.com/klen/pylama" rel="nofollow">https://github.com/klen/pylama</a></p>
]]></description><pubDate>Thu, 20 Oct 2016 00:40:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=12749042</link><dc:creator>hadriendavid</dc:creator><comments>https://news.ycombinator.com/item?id=12749042</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12749042</guid></item></channel></rss>