<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: alexfortin</title><link>https://news.ycombinator.com/user?id=alexfortin</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 02 Jul 2026 21:44:19 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=alexfortin" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by alexfortin in "ZCode – Harness for GLM-5.2"]]></title><description><![CDATA[
<p>Same here. Moving from OC to Pi also taught me one more time that less is more and I don't need most of the features I thought I needed.</p>
]]></description><pubDate>Thu, 02 Jul 2026 06:09:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48757190</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=48757190</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48757190</guid></item><item><title><![CDATA[New comment by alexfortin in "ZCode – Harness for GLM-5.2"]]></title><description><![CDATA[
<p>If you haven't yet you should give a chance to <a href="https://pi.dev" rel="nofollow">https://pi.dev</a><p>I've been using it exclusively (and extending it, see <a href="https://a.l3x.in/ai" rel="nofollow">https://a.l3x.in/ai</a>) for months with mainly GLM-4.7 then 5.1 and now 5.2 and I could hardly be any happier.<p>I'm still working on a "Github/Forgejo first" based workflow but also quite happy with it already, basically most of my sessions run as a ci/cd job (triggered by "/pi" comments) and generate PRs or push commits to PRs, see <a href="https://github.com/shaftoe/pi-coding-agent-action" rel="nofollow">https://github.com/shaftoe/pi-coding-agent-action</a></p>
]]></description><pubDate>Thu, 02 Jul 2026 06:06:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=48757162</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=48757162</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48757162</guid></item><item><title><![CDATA[New comment by alexfortin in "Ask HN: Who wants to be hired? (June 2026)"]]></title><description><![CDATA[
<p>Location: Bucharest, Romania<p>Remote: Yes<p>Willing to relocate: No<p>Technologies: AWS, Golang, Typescript, Terraform, Docker / Kubernetes (ECS/Fargate, EKS), PostgreSQL / Redis,  CloudFlare / CloudFront, CI/CDs (AWS CodePipeline, GitHub Actions)<p>Résumé/CV: <a href="https://cv.l3x.in/" rel="nofollow">https://cv.l3x.in/</a><p>Email: a@l3x.in</p>
]]></description><pubDate>Tue, 02 Jun 2026 07:03:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48366954</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=48366954</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48366954</guid></item><item><title><![CDATA[New comment by alexfortin in "GLM-5.1: Towards Long-Horizon Tasks"]]></title><description><![CDATA[
<p>Try lowering thinking level with GLM-5.1, to me that seems to have an impact on mitigating the blocking behaviour.</p>
]]></description><pubDate>Wed, 08 Apr 2026 11:58:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47688985</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=47688985</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47688985</guid></item><item><title><![CDATA[New comment by alexfortin in "Hammerspoon"]]></title><description><![CDATA[
<p>I use it to enable/disable the wifi when I disconnec/connect the macbook to a specific usb hub with ethernet connection:<p><pre><code>  local usbWatcher = hs.usb.watcher.new(function(device)
    if device.productName == "EMEET SmartCam C960" then
      if device.eventType == "added" then
        hs.execute("networksetup -setairportpower en0 off")
        hs.notify.new({title="Wi-Fi", informativeText="Disabled (USB device connected)"}):send()
      elseif device.eventType == "removed" then
        hs.execute("networksetup -setairportpower en0 on")
        hs.notify.new({title="Wi-Fi", informativeText="Re-enabled (USB device removed)"}):send()
      end
    end
  end)
  usbWatcher:start()</code></pre></p>
]]></description><pubDate>Fri, 13 Mar 2026 20:11:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47369219</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=47369219</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47369219</guid></item><item><title><![CDATA[Centralise GNU/Linux email delivery like it's 2020]]></title><description><![CDATA[
<p>Article URL: <a href="https://a.l3x.in/2020/05/14/centralise-linux-email-delivery.html">https://a.l3x.in/2020/05/14/centralise-linux-email-delivery.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23177668">https://news.ycombinator.com/item?id=23177668</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 14 May 2020 10:12:48 +0000</pubDate><link>https://a.l3x.in/2020/05/14/centralise-linux-email-delivery.html</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=23177668</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23177668</guid></item><item><title><![CDATA[New comment by alexfortin in "AWS CDK with a real life Lambda and API gateway example"]]></title><description><![CDATA[
<p>After successfully replacing Terraform with CDK in a real life project I take the chance to wrap up the new knowledge along with some Terraform vs. CDK kind of considerations. I also synthesize the acquired know-how in a mini tutorial based on the actual code used in the production scenario.</p>
]]></description><pubDate>Tue, 04 Feb 2020 11:47:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=22234518</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=22234518</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22234518</guid></item><item><title><![CDATA[AWS CDK with a real life Lambda and API gateway example]]></title><description><![CDATA[
<p>Article URL: <a href="https://dev.to/shaftoe/introducing-aws-cdk-with-a-real-life-lambda-and-api-gateway-example-7kg">https://dev.to/shaftoe/introducing-aws-cdk-with-a-real-life-lambda-and-api-gateway-example-7kg</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22234506">https://news.ycombinator.com/item?id=22234506</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Tue, 04 Feb 2020 11:46:07 +0000</pubDate><link>https://dev.to/shaftoe/introducing-aws-cdk-with-a-real-life-lambda-and-api-gateway-example-7kg</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=22234506</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22234506</guid></item><item><title><![CDATA[New comment by alexfortin in "Remaking my curriculum vitæ with modern web technologies"]]></title><description><![CDATA[
<p>For a while I wanted to manage my CV in a more flexible way. I stumbled upon a great article on CSS-Tricks that made me think I had no more excuses to procrastinate. In this article I present my solution along with some considerations.</p>
]]></description><pubDate>Fri, 31 Jan 2020 12:10:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=22201003</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=22201003</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22201003</guid></item><item><title><![CDATA[Remaking my curriculum vitæ with modern web technologies]]></title><description><![CDATA[
<p>Article URL: <a href="https://a.l3x.in/2020/01/31/updating-curriculum-with-web-tech.html">https://a.l3x.in/2020/01/31/updating-curriculum-with-web-tech.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22200999">https://news.ycombinator.com/item?id=22200999</a></p>
<p>Points: 2</p>
<p># Comments: 2</p>
]]></description><pubDate>Fri, 31 Jan 2020 12:09:35 +0000</pubDate><link>https://a.l3x.in/2020/01/31/updating-curriculum-with-web-tech.html</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=22200999</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22200999</guid></item><item><title><![CDATA[New comment by alexfortin in "My Quest for Identity in Software Engineering"]]></title><description><![CDATA[
<p>A wrap up of my last 20 years as a professional in IT, along with some considerations about the current state of the art.</p>
]]></description><pubDate>Wed, 29 Jan 2020 10:00:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=22178989</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=22178989</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22178989</guid></item><item><title><![CDATA[My Quest for Identity in Software Engineering]]></title><description><![CDATA[
<p>Article URL: <a href="https://a.l3x.in/2020/01/29/my-quest-for-identity-in-software-engineering.html">https://a.l3x.in/2020/01/29/my-quest-for-identity-in-software-engineering.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22178988">https://news.ycombinator.com/item?id=22178988</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Wed, 29 Jan 2020 10:00:14 +0000</pubDate><link>https://a.l3x.in/2020/01/29/my-quest-for-identity-in-software-engineering.html</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=22178988</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22178988</guid></item><item><title><![CDATA[New comment by alexfortin in "Show HN: Sslnotify.me, a free serverless opensource SSL cert monitoring service"]]></title><description><![CDATA[
<p>Hello, I've posted about my experiment here not because I think is particularly cool nor useful, but because I'd love to have some feedback from everybody interested in FaaS/Serverless, especially from who has some real experience building solutions with FaaS and willing to share his/her insights. Thanks for your time</p>
]]></description><pubDate>Thu, 30 Mar 2017 16:14:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=13996652</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=13996652</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13996652</guid></item><item><title><![CDATA[Show HN: Sslnotify.me, a free serverless opensource SSL cert monitoring service]]></title><description><![CDATA[
<p>Article URL: <a href="https://alexanderfortin.tumblr.com/post/159003883536/sslnotifyme-yet-another-opensource-serverless">https://alexanderfortin.tumblr.com/post/159003883536/sslnotifyme-yet-another-opensource-serverless</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=13996464">https://news.ycombinator.com/item?id=13996464</a></p>
<p>Points: 7</p>
<p># Comments: 1</p>
]]></description><pubDate>Thu, 30 Mar 2017 15:55:35 +0000</pubDate><link>https://alexanderfortin.tumblr.com/post/159003883536/sslnotifyme-yet-another-opensource-serverless</link><dc:creator>alexfortin</dc:creator><comments>https://news.ycombinator.com/item?id=13996464</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13996464</guid></item></channel></rss>