<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: alxndr13</title><link>https://news.ycombinator.com/user?id=alxndr13</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 24 Apr 2026 18:56:46 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=alxndr13" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by alxndr13 in "An update on recent Claude Code quality reports"]]></title><description><![CDATA[
<p>for me at least, yes. just wrote it to coworkers this afternoon. Behaves way more "stable" in terms of quality and i don't have the feeling of the model getting way worse after 100k tokens of context or so.<p>What i notice: after 300k there's some slight quality drop, but i just make sure to compact before that threshold.</p>
]]></description><pubDate>Thu, 23 Apr 2026 18:39:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=47879724</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=47879724</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47879724</guid></item><item><title><![CDATA[New comment by alxndr13 in "Glaze by Raycast"]]></title><description><![CDATA[
<p>To be honest, but I would love to have some ecosystem around building apps which lets me share my custom apps with team members in my organization. Without having to take care of updating, provisioning, and distributing the app, etc.<p>even better if the apps are not electron bloated and mac-native.</p>
]]></description><pubDate>Wed, 04 Mar 2026 13:47:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=47247347</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=47247347</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47247347</guid></item><item><title><![CDATA[New comment by alxndr13 in "Show HN: Echo, an iOS SSH+mosh client built on Ghostty"]]></title><description><![CDATA[
<p>Really nice! I really enjoy it. The only thing I notice is when I'm using Claude code via SSH, the app hangs itself up once the conversation gets longer.<p>Termius, for example, doesn't have the problem.</p>
]]></description><pubDate>Wed, 18 Feb 2026 21:56:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47067012</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=47067012</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47067012</guid></item><item><title><![CDATA[New comment by alxndr13 in "Is anybody having issues with Claude.ai Sonnet now?"]]></title><description><![CDATA[
<p>It seems like it works again.</p>
]]></description><pubDate>Fri, 07 Nov 2025 14:39:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=45846862</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=45846862</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45846862</guid></item><item><title><![CDATA[New comment by alxndr13 in "Is anybody having issues with Claude.ai Sonnet now?"]]></title><description><![CDATA[
<p>yes, getting the 529 http error code aka `overloaded`.</p>
]]></description><pubDate>Fri, 07 Nov 2025 14:24:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=45846700</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=45846700</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45846700</guid></item><item><title><![CDATA[New comment by alxndr13 in "Monodraw"]]></title><description><![CDATA[
<p>you were involved with clear? damn! i was one of the first users back then, even using it to this day! monodraw looks awesome, will definitely check it out!</p>
]]></description><pubDate>Wed, 27 Aug 2025 11:50:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=45038364</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=45038364</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45038364</guid></item><item><title><![CDATA[Ask HN: GitHub API Down Again?]]></title><description><![CDATA[
<p>For me, Github's GraphQL API does return 502's since an hour at least.<p>Because of this, our release-please github actions aren't working anymore. Please tell me i'm not the only one..<p>Request in question:<p>```
curl -X POST https://api.github.com/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $(gh auth token)" \
  -d '{
    "query": "query pullRequestsSince($owner: String!, $repo: String!, $num: Int!, $maxFilesChanged: Int, $targetBranch: String!, $cursor: String) {\n      repository(owner: $owner, name: $repo) {\n        ref(qualifiedName: $targetBranch) {\n          target {\n            ... on Commit {\n              history(first: $num, after: $cursor) {\n                nodes {\n                  associatedPullRequests(first: 10) {\n                    nodes {\n                      number\n                      title\n                      baseRefName\n                      headRefName\n                      labels(first: 10) {\n                        nodes {\n                          name\n                        }\n                      }\n                      body\n                      mergeCommit {\n                        oid\n                      }\n                      files(first: $maxFilesChanged) {\n                        nodes {\n                          path\n                        }\n                        pageInfo {\n                          endCursor\n                          hasNextPage\n                        }\n                      }\n                    }\n                  }\n                  sha: oid\n                  message\n                }\n                pageInfo {\n                  hasNextPage\n                  endCursor\n                }\n              }\n            }\n          }\n        }\n      }\n    }",
    "variables": {
      "owner": "ownername",
      "repo": "reponame",
      "num": 25,
      "targetBranch": "main",
      "maxFilesChanged": 100
    }
  }' -v
```</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44962440">https://news.ycombinator.com/item?id=44962440</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Wed, 20 Aug 2025 14:45:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=44962440</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=44962440</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44962440</guid></item><item><title><![CDATA[New comment by alxndr13 in "Why I'm all-in on Zen Browser"]]></title><description><![CDATA[
<p>using zen since about 7 months for all of my daily work + on my personal computer. the issues the comments describe here, never had those. it "just" works for me. donated to the project, i hope they go a long way.</p>
]]></description><pubDate>Tue, 19 Aug 2025 19:34:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=44955414</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=44955414</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44955414</guid></item><item><title><![CDATA[New comment by alxndr13 in "Why I'm all-in on Zen Browser"]]></title><description><![CDATA[
<p>you can do using vimium :)</p>
]]></description><pubDate>Tue, 19 Aug 2025 19:31:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=44955373</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=44955373</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44955373</guid></item><item><title><![CDATA[New comment by alxndr13 in "New problem found on Boeing 737 MAX planes"]]></title><description><![CDATA[
<p>couldn't open the page using ublock, so there u go: <a href="https://12ft.io/proxy?q=https%3A%2F%2Fwww.cnn.com%2F2024%2F02%2F04%2Fbusiness%2Fboeing-737-max-holes-hnk-intl%2Findex.html" rel="nofollow">https://12ft.io/proxy?q=https%3A%2F%2Fwww.cnn.com%2F2024%2F0...</a></p>
]]></description><pubDate>Mon, 05 Feb 2024 10:02:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=39259326</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=39259326</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39259326</guid></item><item><title><![CDATA[New comment by alxndr13 in "Show HN: Fixkey is a keyboard-focused AI copilot for writing"]]></title><description><![CDATA[
<p>i'm interested as well.</p>
]]></description><pubDate>Fri, 02 Feb 2024 08:18:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=39226383</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=39226383</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39226383</guid></item><item><title><![CDATA[New comment by alxndr13 in "Oh My Zsh"]]></title><description><![CDATA[
<p>funny coincidence, just finished re-modding my zsh.<p>Removing omz, adding antidote and starship. feels (and measureably is) faster and snappier.</p>
]]></description><pubDate>Tue, 23 Jan 2024 11:24:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=39101988</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=39101988</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39101988</guid></item><item><title><![CDATA[New comment by alxndr13 in "Tell HN: It is impossible to disable Google 2FA using backup codes"]]></title><description><![CDATA[
<p>Just tested it.<p>- Private Browser Window
- Log in using backup code
- can change auth app without another login.</p>
]]></description><pubDate>Thu, 19 Jan 2023 17:15:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=34442805</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=34442805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34442805</guid></item><item><title><![CDATA[New comment by alxndr13 in "Ask HN: Slack Buggy This Morning?"]]></title><description><![CDATA[
<p>Yup, same here. (eu-west)</p>
]]></description><pubDate>Tue, 22 Feb 2022 14:22:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=30428215</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=30428215</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30428215</guid></item><item><title><![CDATA[New comment by alxndr13 in "Lazygit: A simple terminal UI for Git commands"]]></title><description><![CDATA[
<p>use it all day for all my development work, really cool to see it on the front page :)</p>
]]></description><pubDate>Tue, 30 Nov 2021 22:01:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=29398073</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=29398073</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29398073</guid></item><item><title><![CDATA[New comment by alxndr13 in "Ask HN: Do you create digital art? let's see it"]]></title><description><![CDATA[
<p>These look really nice, are you using blender for that?</p>
]]></description><pubDate>Tue, 09 Mar 2021 07:29:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=26396334</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=26396334</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26396334</guid></item><item><title><![CDATA[New comment by alxndr13 in "Firefox 84.0"]]></title><description><![CDATA[
<p>I run a relatively new machine and can still feel the performance improvements made here. Feels really snappy, maybe i will give it a go again as a daily driver.</p>
]]></description><pubDate>Wed, 16 Dec 2020 13:04:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=25441996</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=25441996</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25441996</guid></item><item><title><![CDATA[New comment by alxndr13 in "Fahim Saleh: Pathao and Gokada Entrepreneur Found Dead in New York"]]></title><description><![CDATA[
<p>related / duplicate: <a href="https://news.ycombinator.com/item?id=23846654" rel="nofollow">https://news.ycombinator.com/item?id=23846654</a></p>
]]></description><pubDate>Wed, 15 Jul 2020 16:38:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=23847712</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=23847712</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23847712</guid></item><item><title><![CDATA[New comment by alxndr13 in "Gitlab Postgres Issues"]]></title><description><![CDATA[
<p>Nice to see how they are solving the issues: 
<a href="https://docs.google.com/document/d/1WmOMKq63Rap2wfQ-yy7sHyocFvmbJgIt1UIj2xEXEco/preview" rel="nofollow">https://docs.google.com/document/d/1WmOMKq63Rap2wfQ-yy7sHyoc...</a></p>
]]></description><pubDate>Tue, 12 Jun 2018 17:03:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=17295294</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=17295294</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17295294</guid></item><item><title><![CDATA[New comment by alxndr13 in "ISP Spying"]]></title><description><![CDATA[
<p>In Germany you are able to use any router you want, regardless of which ISP you use.<p><a href="https://www.cr-online.de/bgbl116s0106.pdf" rel="nofollow">https://www.cr-online.de/bgbl116s0106.pdf</a></p>
]]></description><pubDate>Fri, 16 Feb 2018 11:00:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=16391496</link><dc:creator>alxndr13</dc:creator><comments>https://news.ycombinator.com/item?id=16391496</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16391496</guid></item></channel></rss>