<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: varrakesh</title><link>https://news.ycombinator.com/user?id=varrakesh</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 24 Apr 2026 21:25:33 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=varrakesh" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by varrakesh in "DeepSeek v4"]]></title><description><![CDATA[
<p>China hasn't <i>done anything</i> with Taiwan other than saber-rattling. Hong Kong, Xinjiang, etc. are all part of China.<p>The US is (mostly) protective of its citizens but (depending on administration) varyingly hostile to outsiders (immigrants, starting wars, etc.).<p>China is suppressive towards its own citizens, but has been largely peaceful with other countries and immigrants/visitors. (Granted, China has <i>way</i> fewer immigrants than the US, so this is not comparable).</p>
]]></description><pubDate>Fri, 24 Apr 2026 10:01:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=47888024</link><dc:creator>varrakesh</dc:creator><comments>https://news.ycombinator.com/item?id=47888024</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47888024</guid></item><item><title><![CDATA[New comment by varrakesh in "Can You Solve This? 1B Records per Second Data Streaming Challenge"]]></title><description><![CDATA[
<p>This isn’t well-specified enough to be a real challenge. They say it can be a server - but not too beefy of a server. What does that even mean? If I put eight NVMe SSDs in a 128-core server, is that too beefy? What about 64, 16 cores?<p>Can I know (or bound) the number of orders or products in advance to preallocate? Can I design the dataset myself with certain assumptions (e.g. sorted with respect to time)? Can I bound certain aspects of the dataset (e.g. orders must not contain more than 255 products, orders always contain the prices of everything, etc.)?<p>Latency isn’t apparently a factor - so if I’m processing 1B records, do we care how quickly it gets done? If not, I’ll just stream the data off to a GPU and get the results later?</p>
]]></description><pubDate>Mon, 09 Sep 2019 23:40:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=20923718</link><dc:creator>varrakesh</dc:creator><comments>https://news.ycombinator.com/item?id=20923718</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20923718</guid></item><item><title><![CDATA[Five-line solution to the Subset-sum problem (Python)]]></title><description><![CDATA[
<p>A five-line Python solution to the subset-sum problem (dynamic programming, pseudopolynomial time):<p>def subset_sum(A, target):
    T = {0}
    for i in A:
        T |= {x + i for x in T}
    return target in T<p>Seems to be pretty efficient.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=5278216">https://news.ycombinator.com/item?id=5278216</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 25 Feb 2013 10:27:43 +0000</pubDate><link>http://stackoverflow.com/a/14652715/1204143</link><dc:creator>varrakesh</dc:creator><comments>https://news.ycombinator.com/item?id=5278216</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=5278216</guid></item></channel></rss>