<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: granularity</title><link>https://news.ycombinator.com/user?id=granularity</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Apr 2026 08:57:23 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=granularity" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by granularity in "Replicube: 3D shader puzzle game, online demo"]]></title><description><![CDATA[
<p>Nice!<p>On the leaderboard I'd like to see code size vs cycles in a 2D plot with the Pareto front highlighted.</p>
]]></description><pubDate>Mon, 14 Jul 2025 23:05:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=44566333</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=44566333</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44566333</guid></item><item><title><![CDATA[New comment by granularity in "The XOR Texture (2004)"]]></title><description><![CDATA[
<p>Oooo, link to a photo, please!</p>
]]></description><pubDate>Wed, 18 Dec 2024 15:13:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=42451068</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=42451068</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42451068</guid></item><item><title><![CDATA[New comment by granularity in "How do you find a good manager?"]]></title><description><![CDATA[
<p>Exactly:<p>> Participants were recruited from the Essex University Economics Lab sample pool. ... The median participant was a graduate student with two years of work experience.<p>Hard to see how econ grad students play-acting boss says much about the kinds of long-term relationships / group dynamics that appear in the wild.</p>
]]></description><pubDate>Wed, 24 Jul 2024 16:56:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=41059073</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=41059073</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41059073</guid></item><item><title><![CDATA[New comment by granularity in "Panic at the Job Market"]]></title><description><![CDATA[
<p>Are the scare quotes around wisdom because you're embarrassed to admit that such a thing exists? ;)<p>Since it seems you've thought about it a bit, I'm interested to hear your definition of what is / isn't wisdom in an engineering context.</p>
]]></description><pubDate>Wed, 17 Jul 2024 18:30:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=40988851</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=40988851</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40988851</guid></item><item><title><![CDATA[New comment by granularity in "How to compare two packed bitfields without having to unpack each field (2019)"]]></title><description><![CDATA[
<p>Thanks for the links!
Seems like we don't need to mask prior to the first compare, since the low order bits only matter if the high order bits are equal (in which case, we can also safely compare lower bits). Or am I missing something?<p><pre><code>  bool IsEveryComponentGreaterThanOrEqual(uint16_t x, uint16_t y) {
    int rv = x >= y;
    auto xg = x & 0x07E0; auto yg = y & 0x07E0; rv &= xg >= yg;
    auto xb = x & 0x001F; auto yb = y & 0x001F; rv &= xb >= yb;
    return rv != 0;
  }</code></pre></p>
]]></description><pubDate>Wed, 22 May 2024 22:07:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=40447291</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=40447291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40447291</guid></item><item><title><![CDATA[New comment by granularity in "Borges and AI"]]></title><description><![CDATA[
<p>> Tesler's Theorem (ca. 1970). My formulation of what others have since called the “AI Effect”. As commonly quoted: “Artificial Intelligence is whatever hasn't been done yet”. What I actually said was: “Intelligence is whatever machines haven't done yet”. Many people define humanity partly by our allegedly unique intelligence. Whatever a machine—or an animal—can do must (those people say) be something other than intelligence.<p><a href="https://www.nomodes.com/larry-tesler-consulting/adages-and-coinages" rel="nofollow noreferrer">https://www.nomodes.com/larry-tesler-consulting/adages-and-c...</a></p>
]]></description><pubDate>Wed, 20 Dec 2023 18:09:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=38711682</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=38711682</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38711682</guid></item><item><title><![CDATA[New comment by granularity in "Chandrayaan-3 Soft-landing [video]"]]></title><description><![CDATA[
<p>Here's the actual story about that quote:
<a href="https://en.wikipedia.org/wiki/Neil_Armstrong#First_Moon_walk" rel="nofollow noreferrer">https://en.wikipedia.org/wiki/Neil_Armstrong#First_Moon_walk</a></p>
]]></description><pubDate>Wed, 23 Aug 2023 14:28:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=37236519</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=37236519</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37236519</guid></item><item><title><![CDATA[New comment by granularity in "The Stick of Jan Sloot (2004)"]]></title><description><![CDATA[
<p>I read “attaches all these numbers to each other” to mean concatenation, not addition. Presumably you’d want to encode a “next book” token too.
This kind of compression is known as arithmetic coding. It does work.</p>
]]></description><pubDate>Sun, 20 Aug 2023 19:54:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=37202420</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=37202420</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37202420</guid></item><item><title><![CDATA[New comment by granularity in "Stable Attribution"]]></title><description><![CDATA[
<p>I like the concept, but if you upload a photo you took, the page will tell you:<p><pre><code>  "These human-made source images were used by AI ... to generate this image."
</code></pre>
Where "this image" is your photo.</p>
]]></description><pubDate>Sun, 05 Feb 2023 23:08:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=34670786</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=34670786</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34670786</guid></item><item><title><![CDATA[New comment by granularity in "Intel’s Netburst: Failure Is a Foundation for Success"]]></title><description><![CDATA[
<p>> we’ll use period-correct graphs, created on Office XP<p>So beautiful.</p>
]]></description><pubDate>Sun, 19 Jun 2022 16:06:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=31800595</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=31800595</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31800595</guid></item><item><title><![CDATA[New comment by granularity in "Sketch Machine"]]></title><description><![CDATA[
<p>Agreed, and I second the Looom recommendation.</p>
]]></description><pubDate>Wed, 13 Oct 2021 20:18:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=28857143</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=28857143</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28857143</guid></item><item><title><![CDATA[New comment by granularity in "Why is China smashing its tech industry?"]]></title><description><![CDATA[
<p>> And of course you need firmware as well.<p>Love this. It's like Obama's "the bubble sort would be the wrong way to go". Clearly Mr Smith has done his homework on the subject of military technology and has learned a Technical Fact: "firmware exists". He probably even knows that it goes between hardware and software!</p>
]]></description><pubDate>Mon, 02 Aug 2021 16:45:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=28039106</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=28039106</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28039106</guid></item><item><title><![CDATA[New comment by granularity in "Intel chief Pat Gelsinger: Too many chips made in Asia"]]></title><description><![CDATA[
<p>See also: <a href="https://en.wikipedia.org/wiki/Moral_luck" rel="nofollow">https://en.wikipedia.org/wiki/Moral_luck</a></p>
]]></description><pubDate>Wed, 24 Mar 2021 22:39:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=26573918</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=26573918</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26573918</guid></item><item><title><![CDATA[New comment by granularity in "‘Deep Nostalgia’ can turn old photos of your relatives into moving videos"]]></title><description><![CDATA[
<p>If you like bad movies, this one manages to be bad on a number of interesting dimensions at the same time. Highly recommended!</p>
]]></description><pubDate>Fri, 26 Feb 2021 21:30:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=26280044</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=26280044</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26280044</guid></item><item><title><![CDATA[New comment by granularity in "Symbolics, Inc.: A failure of heterogeneous engineering (2001) [pdf]"]]></title><description><![CDATA[
<p>I wasn't aware of the Symbolics / SDI connection:<p>> The market created by funding from SDI was quite forgiving. The government was interested in creating complex Lisp programs and Symbolics machines were the leading alternative at that time. Officials who allocated funds for SDI did not demand cost-effective results from their research funds and hence the expert-systems companies boomed during this period.<p>Sorry to be glib but, maybe we should be grateful we got an AI winter, not a nuclear winter.</p>
]]></description><pubDate>Fri, 20 Nov 2020 17:10:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=25162451</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=25162451</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25162451</guid></item><item><title><![CDATA[New comment by granularity in "Ask HN: As a person, what can I do to improve a city?"]]></title><description><![CDATA[
<p>The takeaways (for me) were that:
1) a small number of high-status parents with different priorities than the broader community will often (without malice) influence a school's administration such that the community's more fundamental priorities get lost,
2) political action to enable racial integration of public schools has been a symbolic goal in NYC for generations, but there's been a repeated lack of follow-through due to ... lack of courage and commitment.</p>
]]></description><pubDate>Fri, 06 Nov 2020 22:29:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=25011763</link><dc:creator>granularity</dc:creator><comments>https://news.ycombinator.com/item?id=25011763</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25011763</guid></item></channel></rss>