<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: adas0693</title><link>https://news.ycombinator.com/user?id=adas0693</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 25 May 2026 19:50:33 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=adas0693" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by adas0693 in "A fundamental principle of aeronautical engineering has been overturned"]]></title><description><![CDATA[
<p>fyi: the paper cited in the wired article is at <a href="https://arxiv.org/abs/2603.23843" rel="nofollow">https://arxiv.org/abs/2603.23843</a></p>
]]></description><pubDate>Mon, 25 May 2026 05:10:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=48263586</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=48263586</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48263586</guid></item><item><title><![CDATA[New comment by adas0693 in "Chris Lattner evaluates the Claude C Compiler"]]></title><description><![CDATA[
<p>The Claude C Compiler: What It Reveals About the Future of Software</p>
]]></description><pubDate>Sat, 21 Feb 2026 02:51:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=47097007</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=47097007</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47097007</guid></item><item><title><![CDATA[Chris Lattner evaluates the Claude C Compiler]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.modular.com/blog/the-claude-c-compiler-what-it-reveals-about-the-future-of-software">https://www.modular.com/blog/the-claude-c-compiler-what-it-reveals-about-the-future-of-software</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47097006">https://news.ycombinator.com/item?id=47097006</a></p>
<p>Points: 15</p>
<p># Comments: 2</p>
]]></description><pubDate>Sat, 21 Feb 2026 02:51:26 +0000</pubDate><link>https://www.modular.com/blog/the-claude-c-compiler-what-it-reveals-about-the-future-of-software</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=47097006</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47097006</guid></item><item><title><![CDATA[New comment by adas0693 in "PatternBoost: Constructions in Mathematics with a Little Help from AI"]]></title><description><![CDATA[
<p>"We introduce PatternBoost, a flexible method for finding interesting constructions in mathematics. Our algorithm alternates between two phases. In the first ``local'' phase, a classical search algorithm is used to produce many desirable constructions. In the second ``global'' phase, a transformer neural network is trained on the best such constructions. Samples from the trained transformer are then used as seeds for the first phase, and the process is repeated. We give a detailed introduction to this technique, and discuss the results of its application to several problems in extremal combinatorics. The performance of PatternBoost varies across different problems, but there are many situations where its performance is quite impressive. Using our technique, we find the best known solutions to several long-standing problems, including the construction of a counterexample to a conjecture that had remained open for 30 years."</p>
]]></description><pubDate>Tue, 05 Nov 2024 20:38:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=42054944</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=42054944</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42054944</guid></item><item><title><![CDATA[PatternBoost: Constructions in Mathematics with a Little Help from AI]]></title><description><![CDATA[
<p>Article URL: <a href="https://arxiv.org/abs/2411.00566">https://arxiv.org/abs/2411.00566</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42054943">https://news.ycombinator.com/item?id=42054943</a></p>
<p>Points: 1</p>
<p># Comments: 2</p>
]]></description><pubDate>Tue, 05 Nov 2024 20:38:53 +0000</pubDate><link>https://arxiv.org/abs/2411.00566</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=42054943</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42054943</guid></item><item><title><![CDATA[New comment by adas0693 in "Magical Fibonacci Formulae"]]></title><description><![CDATA[
<p>Thanks for sharing. Very interesting. Added the formula to my fibonacci number algos collection at <a href="https://github.com/alidasdan/fibonacci-number-algorithms">https://github.com/alidasdan/fibonacci-number-algorithms</a> . Though simple, the new formula runs much slower than even the linear-time algo.</p>
]]></description><pubDate>Wed, 13 Dec 2023 04:11:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=38622548</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=38622548</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38622548</guid></item><item><title><![CDATA[New comment by adas0693 in "Decimal to fraction"]]></title><description><![CDATA[
<p>There are a couple of well-known algorithms to find the best rational approximation to a given real number. A good and short book is "Diophantine Approximations" by I. Niven. For code, you can also check out this repo of mine: <a href="https://github.com/alidasdan/best-rational-approximation">https://github.com/alidasdan/best-rational-approximation</a> .<p>Note that decimal numbers represented as a floating point numbers on a computer are actually rational numbers due to limited precision. So converting decimal numbers to fractions, both stored on a computer, means converting a fraction with potentially large numerator and/or denominator to a simpler fraction, say, one with a far smaller denonimator.<p>For example, an approximation to pi is 3.14159265358979323844, which is the same thing as 314159265358979323844/10^20 (trivial approximation). Using these algorithms we can covert this fraction to a simpler fraction under different approximation criteria such as a bound on the approximation error or a bound on the magnitude of the denominator. For this example, we then get various approximations to pi such as 22/7, 355/113, ...</p>
]]></description><pubDate>Wed, 16 Aug 2023 06:38:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=37143538</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=37143538</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37143538</guid></item><item><title><![CDATA[New comment by adas0693 in "Binary Decision Diagrams (2010)"]]></title><description><![CDATA[
<p>Binary decision diagrams (BDDs) have been a big deal in electronic design automation (EDA); many of the BDD developments have happened as a result of the applications in EDA.<p>For a recent and comprehensive coverage, you can check out D. Knuth's fascicle as part of his well-known book. The BDD fascicle and other fascicles are available at <a href="http://www.cs.utsa.edu/~wagner/knuth/" rel="nofollow">http://www.cs.utsa.edu/~wagner/knuth/</a> .</p>
]]></description><pubDate>Wed, 09 Dec 2020 18:47:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=25362420</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=25362420</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25362420</guid></item><item><title><![CDATA[New comment by adas0693 in "Uber cuts 3000 more jobs, closes 45 offices"]]></title><description><![CDATA[
<p>Sorry to hear that. Atlassian is hiring. Pls apply. Thank you.</p>
]]></description><pubDate>Mon, 18 May 2020 17:26:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=23225436</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=23225436</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23225436</guid></item><item><title><![CDATA[New comment by adas0693 in "How Reliable Are University Rankings?"]]></title><description><![CDATA[
<p>Thank you for your feedback. I am one of the authors of this paper.<p>I don't think the paper gives any hints on us dividing universities into classes and comparing. Would love to know how you reached that conclusion.<p>At the same time, yes, we could have divided universities into different classes: research vs liberal arts, this vs. that state, big vs. small size, etc. These are all trivial groupings but none of these would change the conclusions of this paper. For all practical purposes, we could easily have replaced the university names with labels like U1, U2, ... and still the conclusions would not change. What matters is how a weight-based composite index can be gamed and the paper does show that in multiple ways. Pls review the ILP formulations yourself and run them on the dataset of your choice.</p>
]]></description><pubDate>Wed, 22 Apr 2020 03:27:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=22941799</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=22941799</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22941799</guid></item><item><title><![CDATA[New comment by adas0693 in "Show HN: Twelve Simple Algorithms to Compute Fibonacci Numbers"]]></title><description><![CDATA[
<p>Thank you for the comment. Pls refer to many references on the Web on the use of Fibonacci sequence as a dynamic programming example or illustration.</p>
]]></description><pubDate>Tue, 03 Mar 2020 02:48:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=22471369</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=22471369</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22471369</guid></item><item><title><![CDATA[New comment by adas0693 in "Show HN: Twelve Simple Algorithms to Compute Fibonacci Numbers"]]></title><description><![CDATA[
<p>Thank you for the comment. Will check it out.</p>
]]></description><pubDate>Tue, 03 Mar 2020 02:48:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=22471367</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=22471367</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22471367</guid></item><item><title><![CDATA[Show HN: Twelve Simple Algorithms to Compute Fibonacci Numbers]]></title><description><![CDATA[
<p>Article URL: <a href="https://arxiv.org/abs/1803.07199">https://arxiv.org/abs/1803.07199</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22452967">https://news.ycombinator.com/item?id=22452967</a></p>
<p>Points: 13</p>
<p># Comments: 4</p>
]]></description><pubDate>Sat, 29 Feb 2020 20:44:07 +0000</pubDate><link>https://arxiv.org/abs/1803.07199</link><dc:creator>adas0693</dc:creator><comments>https://news.ycombinator.com/item?id=22452967</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22452967</guid></item></channel></rss>