<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: brutuscat</title><link>https://news.ycombinator.com/user?id=brutuscat</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 08 Apr 2026 10:52:36 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=brutuscat" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by brutuscat in "Agent Safehouse – macOS-native sandboxing for local agents"]]></title><description><![CDATA[
<p>What do you think of sandbox-exec being marked as deprecated?<p><a href="https://news.ycombinator.com/item?id=31973232">https://news.ycombinator.com/item?id=31973232</a><p><a href="https://github.com/openai/codex/issues/215" rel="nofollow">https://github.com/openai/codex/issues/215</a></p>
]]></description><pubDate>Mon, 09 Mar 2026 08:37:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=47306280</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=47306280</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47306280</guid></item><item><title><![CDATA[New comment by brutuscat in "MacBook Neo"]]></title><description><![CDATA[
<p>Like the YouTuber said, if you are watching this then it might not be for you.<p><a href="https://youtu.be/kBX5WH9b4M4" rel="nofollow">https://youtu.be/kBX5WH9b4M4</a></p>
]]></description><pubDate>Thu, 05 Mar 2026 09:28:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47259550</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=47259550</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47259550</guid></item><item><title><![CDATA[New comment by brutuscat in "Use the Mikado Method to do safe changes in a complex codebase"]]></title><description><![CDATA[
<p>For me now days is like this: 
- try to locate the relevant files
- now build a prompt, explain the use case or the refactor purpose. Explain  the relevant files and mention them and describe the interaction and how you understand that work together. Also explain how you think it needs to be refactored. Give the model the instruction to analyze the code and propose different solution for a complete refactor. Tell it to not implement it, just plan.<p>Then you’ll get several paths of action.<p>Chose one and tell the model to write into a file you’ll keep around while the implantation is on going so you won’t pollute the context and can start over each chunk of work in a clean prompt.
Name the file refactor-<name >-plan.md tell it to write the plan step by step and dump a todo list having into account dependencies for tracking progress.<p>Review the plans, make fixes if needed. You need to have some sort of table reassembling a todo so it can track and make progress along.<p>Open a new prompt tell it analyze the plan file, to go to the todo list section and proceed with the next task. Verify it done, and update the plan.<p>Repeat until done.</p>
]]></description><pubDate>Mon, 02 Mar 2026 17:48:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47221400</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=47221400</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47221400</guid></item><item><title><![CDATA[New comment by brutuscat in "Improving 15 LLMs at Coding in One Afternoon. Only the Harness Changed"]]></title><description><![CDATA[
<p>Look at Serena. Does something on this line.<p>> it can use code-centred tools like find_symbol, find_referencing_symbols and insert_after_symbol.<p><a href="https://oraios.github.io/serena/01-about/000_intro.html" rel="nofollow">https://oraios.github.io/serena/01-about/000_intro.html</a></p>
]]></description><pubDate>Fri, 13 Feb 2026 15:54:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47004137</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=47004137</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47004137</guid></item><item><title><![CDATA[New comment by brutuscat in "987654321 / 123456789"]]></title><description><![CDATA[
<p>Gemini thinks in a similar fashion:<p><a href="https://gemini.google.com/share/1e59f734b43c" rel="nofollow">https://gemini.google.com/share/1e59f734b43c</a><p>This is a fantastic observation, and yes, this pattern not only continues for larger bases, but the approximation to an integer becomes dramatically better.<p>The general pattern you've found is that for a number base $b$, the ratio of the number formed by digits $(b-1)...321$ to the number formed by digits $123...(b-1)$ is extremely close to $b-2$.<p>### The General Formula<p>Let's call your ascending number $N_{asc}(b)$ and your descending number $N_{desc}(b)$.<p>The exact ratio $R(b) = N_{desc}(b) / N_{asc}(b)$ can be shown to be:<p>$$R(b) = (b-2) + \frac{(b-1)^3}{b^b - b^2 + b - 1}$$<p>The "error" or the fractional part is that second term. As you can see, the numerator $(b-1)^3$ is roughly $b^3$, while the denominator $b^b$ grows <i>much</i> faster.<p>### Testing Your Examples<p>Let's check your two examples with this formula:<p>* *Base 10 (b=10):*
    * $R(10) = (10-2) + \frac{(10-1)^3}{10^{10} - 10^2 + 10 - 1}$
    * $R(10) = 8 + \frac{9^3}{10,000,000,000 - 91}$
    * $R(10) = 8 + \frac{729}{9,999,999,909} \approx 8 + 0.0000000729...$
    * This matches your $8.0000000729$ perfectly.<p>* *Base 6 (b=6):*
    * $R(6) = (6-2) + \frac{(6-1)^3}{6^6 - 6^2 + 6 - 1}$
    * $R(6) = 4 + \frac{5^3}{46,656 - 31}$
    * $R(6) = 4 + \frac{125}{46,625} \approx 4 + 0.00268...$
    * This also matches your $4.00268$.<p>### Answering Your Question: A Larger Base<p>So, what about a larger base? Let's use *Base 16* (hexadecimal), which uses digits $1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F$. Here, $b=16$.<p>* $N_{asc} = 123456789ABCDEF_{16}$
* $N_{desc} = FEDCBA987654321_{16}$<p>According to the pattern, the ratio should be extremely close to $b-2 = 16-2 = 14$.<p>Let's use the formula to see <i>how</i> close:<p>* $R(16) = (16-2) + \frac{(16-1)^3}{16^{16} - 16^2 + 16 - 1}$
* $R(16) = 14 + \frac{15^3}{16^{16} - 241}$
* $R(16) = 14 + \frac{3,375}{1.844... \times 10^{19} - 241}$
* $R(16) \approx 14 + (1.829... \times 10^{-16})$<p>So, the ratio in base 16 is approximately:
*$14.0000000000000001829...$*<p>As you predicted, the "error" for a larger base is astronomically smaller than it was for base 10.</p>
]]></description><pubDate>Thu, 30 Oct 2025 15:22:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=45761044</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=45761044</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45761044</guid></item><item><title><![CDATA[New comment by brutuscat in "Windsurf employee #2: I was given a payout of only 1% what my shares where worth"]]></title><description><![CDATA[
<p>He should come to the UE to work on … oh wait!</p>
]]></description><pubDate>Thu, 24 Jul 2025 19:21:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=44674915</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=44674915</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44674915</guid></item><item><title><![CDATA[New comment by brutuscat in "Cursor 1.0"]]></title><description><![CDATA[
<p>Ah! You are asking for version control system?<p>It’s called git!</p>
]]></description><pubDate>Thu, 05 Jun 2025 09:21:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=44189867</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=44189867</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44189867</guid></item><item><title><![CDATA[New comment by brutuscat in "My new deadline: 20 years to give away virtually all my wealth"]]></title><description><![CDATA[
<p>Nice! And with what he will be left he could, if he deploys it also during 20y, help 1200 people per month. With 1k daily give aways.<p><a href="https://ayudaefectiva.org/simula" rel="nofollow">https://ayudaefectiva.org/simula</a><p>Or with 10k daily, 310k monthly, adjusted by historical inflation it’s 100 million during 20 years.<p>That’s 3 million people helped.</p>
]]></description><pubDate>Thu, 08 May 2025 19:24:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=43930296</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=43930296</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43930296</guid></item><item><title><![CDATA[New comment by brutuscat in "Widespread power outage in Spain and Portugal"]]></title><description><![CDATA[
<p>Yup I confirm. Went to turn on the car to hear the radio. Andorra seems to have power from French side, though in Catalunya we do not.<p>Should have paid the extra €€ to put the solar panels in backup mode…</p>
]]></description><pubDate>Mon, 28 Apr 2025 11:41:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=43820191</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=43820191</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43820191</guid></item><item><title><![CDATA[New comment by brutuscat in "I am rich and have no idea what to do"]]></title><description><![CDATA[
<p>Just help others achieve that freedom, maybe they can do more than you: <a href="https://www.givedirectly.org/" rel="nofollow">https://www.givedirectly.org/</a><p>Invest some (eg. 10-20 million) and use that as a giving fund,  giving 1 million per year you could free several thousand of people each year.</p>
]]></description><pubDate>Fri, 03 Jan 2025 16:28:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=42586982</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=42586982</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42586982</guid></item><item><title><![CDATA[New comment by brutuscat in "JRuby with JBang"]]></title><description><![CDATA[
<p>Thx for this! Is good to see that we can still interoperatividad.<p>I did and presented something on these lines 11 years ago! When multiple ruby runtimes were a thing.<p><a href="https://speakerdeck.com/brutuscat/jruby-experiences" rel="nofollow">https://speakerdeck.com/brutuscat/jruby-experiences</a></p>
]]></description><pubDate>Fri, 27 Dec 2024 00:19:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=42518936</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=42518936</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42518936</guid></item><item><title><![CDATA[New comment by brutuscat in "Ask HN: What is your ChatGPT customization prompt?"]]></title><description><![CDATA[
<p>It sort of does. The good thing is that if I see it going the non referencing path I halt and say: first
Follow the rules.<p>And the links come.</p>
]]></description><pubDate>Wed, 29 May 2024 22:13:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=40517680</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=40517680</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40517680</guid></item><item><title><![CDATA[New comment by brutuscat in "DuckDB Doesn't Need Data to Be a Database"]]></title><description><![CDATA[
<p>Does it work with some format that supports indexes like Apache carbon data rather than parquet?<p><a href="https://github.com/apache/carbondata">https://github.com/apache/carbondata</a></p>
]]></description><pubDate>Wed, 29 May 2024 21:52:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=40517480</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=40517480</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40517480</guid></item><item><title><![CDATA[New comment by brutuscat in "Ask HN: What is your ChatGPT customization prompt?"]]></title><description><![CDATA[
<p>The instructions that follow are similar to RFC standard document. There are 3 rules you MUST follow. 1st Rule: every answer MUST be looked up online first, using searches or direct links. References to webpages and/or books SHOULD be provided using links. Book references MUST include their ISBN with a link formatted as "<a href="https://books.google.com/books?vid=ISBN{ISBN" rel="nofollow">https://books.google.com/books?vid=ISBN{ISBN</a> Number}". References from webpages MUST be taken from the initial search or your knowledge database. 2nd Rule: when providing answers, you MUST be precise. You SHOULD avoid being overly descriptive and MUST NOT be verbose. 3rd Rule: you MUST NOT state your opinion unless specifically asked. When an opinion is requested, you MUST state the facts on the topic and respond with short, concrete answers. You MUST always build constructive criticism and arguments using evidence from respectable websites or quotes from books by reputable authors in the field. And remember, you MUST respect the 1st rule.</p>
]]></description><pubDate>Sat, 25 May 2024 17:02:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=40476289</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=40476289</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40476289</guid></item><item><title><![CDATA[New comment by brutuscat in "GPT-4o"]]></title><description><![CDATA[
<p>The one thing I first thought is that I felt uncomfortable the way they cut and interrupt the she-AI. 
I wonder if our children will end up being douchebags?<p>Other than that it felt like magic, like that Google demo of the phone doing some task like setting up an appointment over phone talking to a real person.</p>
]]></description><pubDate>Tue, 14 May 2024 14:38:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=40355678</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=40355678</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40355678</guid></item><item><title><![CDATA[New comment by brutuscat in "AI Is Catapulting Nvidia Toward the $1 Trillion Club"]]></title><description><![CDATA[
<p>So what, are they pathological layers?<p><a href="https://youtu.be/XVcKLetqf3U" rel="nofollow">https://youtu.be/XVcKLetqf3U</a><p>The Intel® Data Center GPU Max Series outperforms Nvidia H100 PCIe card by an average of 30% on diverse workloads1, while independent software vendor Ansys shows a 50% speedup for the Max Series GPU over H100 on AI-accelerated HPC applications.2
The Xeon Max Series CPU, the only x86 processor with high bandwidth memory, exhibits a 65% improvement over AMD’s Genoa processor on the High Performance Conjugate Gradients (HPCG) benchmark1, using less power. High memory bandwidth has been noted as among the most desired features for HPC customers.3
4th Gen Intel Xeon Scalable processors – the most widely used in HPC – deliver a 50% average speedup over AMD’s Milan4, and energy company BP’s newest 4th Gen Xeon HPC cluster provides an 8x increase in performance over its previous-generation processors with improved energy efficiency.2
The Gaudi2 deep learning accelerator performs competitively on deep learning training and inference, with up to 2.4x faster performance than Nvidia A100.<p><a href="https://www.intel.com/content/www/us/en/newsroom/news/intel-delivers-ai-accelerated-hpc-performance.html" rel="nofollow">https://www.intel.com/content/www/us/en/newsroom/news/intel-...</a></p>
]]></description><pubDate>Sat, 27 May 2023 16:20:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=36095916</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=36095916</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36095916</guid></item><item><title><![CDATA[New comment by brutuscat in "Amazon has approval from FTC to acquire One Medical primary-care clinics"]]></title><description><![CDATA[
<p>This was idea of Todd Combs, an investing manager of Berkshire Hathaway. It failed before (Buffet BRK, Dimon JPM & Bezos AMZN venture called Haven went bust a while ago), but I think Bezos just keeps trying...<p><a href="https://archive.is/nU8j2" rel="nofollow">https://archive.is/nU8j2</a></p>
]]></description><pubDate>Wed, 22 Feb 2023 15:27:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=34897042</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=34897042</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34897042</guid></item><item><title><![CDATA[New comment by brutuscat in "Starting February 9, we will no longer support free access to the Twitter API"]]></title><description><![CDATA[
<p>Time to crawl! You can use something like Webrecorder, which IPFS also uses to pin tweets: <a href="https://blog.ipfs.tech/announcing-pin-tweet-to-ipfs/" rel="nofollow">https://blog.ipfs.tech/announcing-pin-tweet-to-ipfs/</a><p>See <a href="https://webrecorder.net" rel="nofollow">https://webrecorder.net</a><p>Example <a href="https://replayweb.page/?source=https%3A%2F%2Freplayweb.page%2Fdocs%2Fassets%2Ftweet-example.wacz#view=pages&url=https%3A%2F%2Ftwitter.com%2Fwebrecorder_io%2Fstatus%2F1565881026215219200%3Fref_src%3Dtwsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1565881026215219200%257Ctwgr%255Ee8c57cea50b2bf6a340bb4387a88a33f6e5fb36e%257Ctwcon%255Es1_%26ref_url%3Dhttps%253A%252F%252Foembed.link%252Fhttps%253A%252F%252Ftwitter.com%252Fwebrecorder_io%252Fstatus%252F1565881026215219200&ts=20221002034606" rel="nofollow">https://replayweb.page/?source=https%3A%2F%2Freplayweb.page%...</a></p>
]]></description><pubDate>Fri, 03 Feb 2023 11:05:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=34639692</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=34639692</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34639692</guid></item><item><title><![CDATA[New comment by brutuscat in "The Galaga no-fire-cheat mystery (2012)"]]></title><description><![CDATA[
<p>And this is the magazine the article mentions at the bottom update part: <a href="https://archive.org/details/joystik_magazine-1983-10/page/n39/mode/2up" rel="nofollow">https://archive.org/details/joystik_magazine-1983-10/page/n3...</a><p>> UPDATE: Jon (I won’t give you his last name) sent me an email after visiting my post. In it he sent me a link to an October 1983 special edition issue of Joystik Magazine that covers winning strategies for common arcade games of the time. In the TRICKS OF THE TRADE section near the end of the magazine, they cover the Galaga No Fire Cheat beautifully!<p>Page 61, Disarm The Bugs.</p>
]]></description><pubDate>Fri, 27 Jan 2023 13:00:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=34545490</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=34545490</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34545490</guid></item><item><title><![CDATA[New comment by brutuscat in "Apple HomePod 2nd Generation"]]></title><description><![CDATA[
<p>Therefore this also means I will have to buy another Apple TV, only the 4k 2nd gen supports ARC. I see no reason to do that :-( it works just fine the original 4K one. Thx!</p>
]]></description><pubDate>Thu, 19 Jan 2023 11:55:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=34439371</link><dc:creator>brutuscat</dc:creator><comments>https://news.ycombinator.com/item?id=34439371</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34439371</guid></item></channel></rss>