<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: pokemyiout</title><link>https://news.ycombinator.com/user?id=pokemyiout</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 27 May 2026 18:27:52 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=pokemyiout" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Life on Claude Nine]]></title><description><![CDATA[
<p>Article URL: <a href="https://babuschk.in/posts/2026-01-25-life-on-claude-nine.html">https://babuschk.in/posts/2026-01-25-life-on-claude-nine.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46896202">https://news.ycombinator.com/item?id=46896202</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 05 Feb 2026 05:58:07 +0000</pubDate><link>https://babuschk.in/posts/2026-01-25-life-on-claude-nine.html</link><dc:creator>pokemyiout</dc:creator><comments>https://news.ycombinator.com/item?id=46896202</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46896202</guid></item><item><title><![CDATA[New comment by pokemyiout in "Show HN: Vibe coding a bookshelf with Claude Code"]]></title><description><![CDATA[
<p>I like the scroll animation!<p>I've actually been working on something similar since I also had this pain (plus I'm too cheap to buy all the books I'm reading)<p>To solve the issue related to having take the photos myself, I scrape from places like eBay to get the accurate spine images. Obviously this isn't 100% accurate, but like you I also decided 90% accuracy is good enough.<p><a href="https://www.tinyshelf.me/maler/fav" rel="nofollow">https://www.tinyshelf.me/maler/fav</a></p>
]]></description><pubDate>Mon, 29 Dec 2025 19:20:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=46424318</link><dc:creator>pokemyiout</dc:creator><comments>https://news.ycombinator.com/item?id=46424318</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46424318</guid></item><item><title><![CDATA[New comment by pokemyiout in "On doing hard things"]]></title><description><![CDATA[
<p>Shoe Dog is a great book. That book + "What I Talk About When I Talk About Running" by Murakami also had a similar effect on me.</p>
]]></description><pubDate>Thu, 17 Jul 2025 23:07:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=44599307</link><dc:creator>pokemyiout</dc:creator><comments>https://news.ycombinator.com/item?id=44599307</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44599307</guid></item><item><title><![CDATA[New comment by pokemyiout in "To be a better programmer, write little proofs in your head"]]></title><description><![CDATA[
<p>Is there a typo in the induction section? Should `simplifyTree` and `simplifyGraph` be the same function?<p>function simplifyTree(root: Node): Node {<p><pre><code>  let newChildren = [] as Array<Node>;

  for (const child of root.children) {
    const simplifiedChild = simplifyGraph(child);
  
    if (shouldContract(simplifiedChild)) {
      for (const grandChild of simplifiedChild.children) {
        newChildren.push(grandChild);    
      }
    } else {
      newChildren.push(simplifiedChild);
    }
  }

  root.children = newChildren;

  return root;
}</code></pre></p>
]]></description><pubDate>Tue, 15 Jul 2025 19:07:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=44574725</link><dc:creator>pokemyiout</dc:creator><comments>https://news.ycombinator.com/item?id=44574725</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44574725</guid></item><item><title><![CDATA[New comment by pokemyiout in "Show HN: PyDoll – Async Python scraping engine with native CAPTCHA bypass"]]></title><description><![CDATA[
<p>I was also interested in this and couldn't find more information in the docs, even in the deep dive [1].<p>However, I did find this for their CF Turnstile bypass [2]:<p><pre><code>    async def _bypass_cloudflare(
        self,
        event: dict,
        custom_selector: Optional[tuple[By, str]] = None,
        time_before_click: int = 2,
        time_to_wait_captcha: int = 5,
    ):
        """Attempt to bypass Cloudflare Turnstile captcha when detected."""
        try:
            selector = custom_selector or (By.CLASS_NAME, 'cf-turnstile')
            element = await self.find_or_wait_element(
                *selector, timeout=time_to_wait_captcha, raise_exc=False
            )
            element = cast(WebElement, element)
            if element:
                # adjust the external div size to shadow root width (usually 300px)
                await self.execute_script('argument.style="width: 300px"', element)
                await asyncio.sleep(time_before_click)
                await element.click()
        except Exception as exc:
            logger.error(f'Error in cloudflare bypass: {exc}')

</code></pre>
[1] <a href="https://autoscrape-labs.github.io/pydoll/deep-dive/" rel="nofollow">https://autoscrape-labs.github.io/pydoll/deep-dive/</a><p>[2] <a href="https://github.com/autoscrape-labs/pydoll/blob/5fd638d68dd66d3b013466e47ee8772b225f0dc4/pydoll/browser/tab.py#L675">https://github.com/autoscrape-labs/pydoll/blob/5fd638d68dd66...</a></p>
]]></description><pubDate>Tue, 10 Jun 2025 21:16:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=44241544</link><dc:creator>pokemyiout</dc:creator><comments>https://news.ycombinator.com/item?id=44241544</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44241544</guid></item><item><title><![CDATA[New comment by pokemyiout in "Find Your People"]]></title><description><![CDATA[
<p>IB: Investment Banking
PE: Private Equity
HF: Hedge Fund</p>
]]></description><pubDate>Fri, 23 May 2025 19:15:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=44075687</link><dc:creator>pokemyiout</dc:creator><comments>https://news.ycombinator.com/item?id=44075687</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44075687</guid></item></channel></rss>