<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: FelipeCortez</title><link>https://news.ycombinator.com/user?id=FelipeCortez</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 12 Apr 2026 17:44:36 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=FelipeCortez" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Under the hood of MDN's new front end]]></title><description><![CDATA[
<p>Article URL: <a href="https://developer.mozilla.org/en-US/blog/mdn-front-end-deep-dive/">https://developer.mozilla.org/en-US/blog/mdn-front-end-deep-dive/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47693891">https://news.ycombinator.com/item?id=47693891</a></p>
<p>Points: 10</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 08 Apr 2026 17:59:38 +0000</pubDate><link>https://developer.mozilla.org/en-US/blog/mdn-front-end-deep-dive/</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=47693891</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47693891</guid></item><item><title><![CDATA[The Miller Principle (2007)]]></title><description><![CDATA[
<p>Article URL: <a href="https://puredanger.github.io/tech.puredanger.com/2007/07/11/miller-principle/">https://puredanger.github.io/tech.puredanger.com/2007/07/11/miller-principle/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47674910">https://news.ycombinator.com/item?id=47674910</a></p>
<p>Points: 66</p>
<p># Comments: 47</p>
]]></description><pubDate>Tue, 07 Apr 2026 13:16:36 +0000</pubDate><link>https://puredanger.github.io/tech.puredanger.com/2007/07/11/miller-principle/</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=47674910</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47674910</guid></item><item><title><![CDATA[New comment by FelipeCortez in "What major works of literature were written after age of 85? 75? 65?"]]></title><description><![CDATA[
<p>The Wikidata documentation is good:<p><a href="https://www.wikidata.org/wiki/Wikidata:Introduction" rel="nofollow">https://www.wikidata.org/wiki/Wikidata:Introduction</a><p>And you can find lots of SPARQL examples here:<p><a href="https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/examples" rel="nofollow">https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/...</a></p>
]]></description><pubDate>Tue, 31 Mar 2026 22:49:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47594500</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=47594500</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47594500</guid></item><item><title><![CDATA[New comment by FelipeCortez in "What major works of literature were written after age of 85? 75? 65?"]]></title><description><![CDATA[
<p>that's kind of what P800 (notable work) is doing, but you can try some approximations to "major work" with "has both an English Wikipedia page and a Goodreads link":<p><pre><code>  ?work wdt:P50 ?author ;
        wdt:P577 ?publicationDate ; 
        wdt:P8383 ?goodreadsID .

  ?article schema:about ?work ;
           schema:isPartOf <https://en.wikipedia.org/> ;
           schema:inLanguage "en" .</code></pre></p>
]]></description><pubDate>Tue, 31 Mar 2026 14:45:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=47588115</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=47588115</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47588115</guid></item><item><title><![CDATA[New comment by FelipeCortez in "What major works of literature were written after age of 85? 75? 65?"]]></title><description><![CDATA[
<p>This is actually a good fit for a Wikidata SPARQL query you can run here <a href="https://query.wikidata.org/" rel="nofollow">https://query.wikidata.org/</a>:<p><pre><code>  SELECT ?work ?workLabel ?author ?authorLabel ?publicationDate ?ageAtPublication
  WHERE {
    ?author wdt:P569 ?birth .
    ?author wdt:P570 ?death .
    ?author wdt:P800 ?work .
  
    ?work wdt:P50 ?author ;
          wdt:P31 wd:Q47461344 ;
          wdt:P577 ?publicationDate .
  
    FILTER(?publicationDate <= ?death)
  
    BIND(YEAR(?publicationDate) - YEAR(?birth) AS ?ageAtPublication)
    FILTER(?ageAtPublication > 60)
  
    SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  }
  ORDER BY DESC(?ageAtPublication)
  LIMIT 300</code></pre></p>
]]></description><pubDate>Tue, 31 Mar 2026 14:10:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47587662</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=47587662</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47587662</guid></item><item><title><![CDATA[New comment by FelipeCortez in "Glaze by Raycast"]]></title><description><![CDATA[
<p>I always thought it was native.  You can write extensions using React, yes, but I was under the impression those got compiled to their internal Swift-based UI components</p>
]]></description><pubDate>Wed, 04 Mar 2026 23:42:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47255573</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=47255573</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47255573</guid></item><item><title><![CDATA[New comment by FelipeCortez in "Show HN: Musical Interval Trainer"]]></title><description><![CDATA[
<p>MusicTheory's interval ear training app is free and has a bunch of extra options: <a href="https://www.musictheory.net/exercises/ear-interval" rel="nofollow">https://www.musictheory.net/exercises/ear-interval</a></p>
]]></description><pubDate>Wed, 11 Feb 2026 14:33:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=46975415</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46975415</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46975415</guid></item><item><title><![CDATA[AI 2026 Technology Radar]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.juxt.pro/ai-radar/">https://www.juxt.pro/ai-radar/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46858437">https://news.ycombinator.com/item?id=46858437</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 02 Feb 2026 17:14:18 +0000</pubDate><link>https://www.juxt.pro/ai-radar/</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46858437</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46858437</guid></item><item><title><![CDATA[New comment by FelipeCortez in "Google AI Studio is now sponsoring Tailwind CSS"]]></title><description><![CDATA[
<p>> doesn't mean curl or numpy should be its own company, or that the AI Labs need to fund them.<p>you'd be surprised<p><a href="https://numpy.org/about/#sponsors" rel="nofollow">https://numpy.org/about/#sponsors</a>
<a href="https://curl.se/sponsors.html" rel="nofollow">https://curl.se/sponsors.html</a></p>
]]></description><pubDate>Fri, 09 Jan 2026 13:55:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=46553858</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46553858</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46553858</guid></item><item><title><![CDATA[New comment by FelipeCortez in "Jonathan Blow has spent the past decade designing 1,400 puzzles"]]></title><description><![CDATA[
<p>you should try The Witness</p>
]]></description><pubDate>Fri, 19 Dec 2025 16:47:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=46327901</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46327901</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46327901</guid></item><item><title><![CDATA[New comment by FelipeCortez in "Show HN: Stop AI scrapers from hammering your self-hosted blog (using porn)"]]></title><description><![CDATA[
<p>because serving requires resources</p>
]]></description><pubDate>Fri, 19 Dec 2025 12:10:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=46324947</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46324947</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46324947</guid></item><item><title><![CDATA[New comment by FelipeCortez in "Dogalog: A realtime Prolog-based livecoding music environment"]]></title><description><![CDATA[
<p>it's still going: <a href="https://github.com/samaaron/tau5" rel="nofollow">https://github.com/samaaron/tau5</a></p>
]]></description><pubDate>Thu, 18 Dec 2025 18:44:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=46316767</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46316767</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46316767</guid></item><item><title><![CDATA[New comment by FelipeCortez in "alpr.watch"]]></title><description><![CDATA[
<p>found it! <a href="https://en.wikipedia.org/wiki/Faceless_(2007_film)" rel="nofollow">https://en.wikipedia.org/wiki/Faceless_(2007_film)</a></p>
]]></description><pubDate>Tue, 16 Dec 2025 18:54:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=46292691</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46292691</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46292691</guid></item><item><title><![CDATA[New comment by FelipeCortez in "alpr.watch"]]></title><description><![CDATA[
<p>I remember seeing an art project in the UK ~10 years ago where they had actors enact a short film but everything was filmed using street cameras, which IIRC everyone could request access to with little bureaucracy.</p>
]]></description><pubDate>Tue, 16 Dec 2025 18:49:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=46292612</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46292612</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46292612</guid></item><item><title><![CDATA[Toggle the "Light" Switch]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.incommonwith.com/collections/all-lighting">https://www.incommonwith.com/collections/all-lighting</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46217605">https://news.ycombinator.com/item?id=46217605</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 10 Dec 2025 13:41:23 +0000</pubDate><link>https://www.incommonwith.com/collections/all-lighting</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46217605</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46217605</guid></item><item><title><![CDATA[New comment by FelipeCortez in "Learning music with Strudel"]]></title><description><![CDATA[
<p>There’s a Strudel-like system focused on lower-level sound synthesis: <a href="https://kabel.salat.dev/" rel="nofollow">https://kabel.salat.dev/</a></p>
]]></description><pubDate>Tue, 02 Dec 2025 21:59:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=46127515</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=46127515</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46127515</guid></item><item><title><![CDATA[New comment by FelipeCortez in "I think nobody wants AI in Firefox, Mozilla"]]></title><description><![CDATA[
<p>You can open Chrome with a remote debugging port enabled and send commands to it using the Devtools Protocol. <a href="https://chromedevtools.github.io/devtools-protocol/" rel="nofollow">https://chromedevtools.github.io/devtools-protocol/</a></p>
]]></description><pubDate>Fri, 14 Nov 2025 16:27:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=45928424</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=45928424</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45928424</guid></item><item><title><![CDATA[New comment by FelipeCortez in "Show HN: See chords as flags – Visual harmony of top composers on musescore"]]></title><description><![CDATA[
<p>very cool! hookpad/hooktheory/theorytab [1] is a similar idea, but I think the annotations are created using their tool instead of sourced from MuseScore.<p>[1]: <a href="https://www.hooktheory.com/theorytab" rel="nofollow">https://www.hooktheory.com/theorytab</a></p>
]]></description><pubDate>Thu, 06 Nov 2025 14:50:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=45835885</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=45835885</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45835885</guid></item><item><title><![CDATA[New comment by FelipeCortez in "I built physical album cards with NFC tags to teach my son music discovery"]]></title><description><![CDATA[
<p>and you get booklets!</p>
]]></description><pubDate>Sat, 11 Oct 2025 11:09:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=45548199</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=45548199</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45548199</guid></item><item><title><![CDATA[Using Postgres 18's temporal constraints]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.depesz.com/2024/10/03/waiting-for-postgresql-18-add-temporal-foreign-key-contraints/">https://www.depesz.com/2024/10/03/waiting-for-postgresql-18-add-temporal-foreign-key-contraints/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45413635">https://news.ycombinator.com/item?id=45413635</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 29 Sep 2025 13:38:22 +0000</pubDate><link>https://www.depesz.com/2024/10/03/waiting-for-postgresql-18-add-temporal-foreign-key-contraints/</link><dc:creator>FelipeCortez</dc:creator><comments>https://news.ycombinator.com/item?id=45413635</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45413635</guid></item></channel></rss>