<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: lamnguyenx</title><link>https://news.ycombinator.com/user?id=lamnguyenx</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 25 Jul 2026 16:12:24 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=lamnguyenx" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by lamnguyenx in "Show HN: Figma-use – CLI to control Figma for AI agents"]]></title><description><![CDATA[
<p>What's your opinion on PenPot - Figma's biggest rival?
I think PenPot is more dev-friendly. Their "Code" mode is 100% free</p>
]]></description><pubDate>Mon, 19 Jan 2026 01:30:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=46674065</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=46674065</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46674065</guid></item><item><title><![CDATA[New comment by lamnguyenx in "OmniHuman-1: Human Animation Models"]]></title><description><![CDATA[
<p>NVIDIA Demo of Audio2Face is such a joke, compared to this one.</p>
]]></description><pubDate>Wed, 05 Feb 2025 00:59:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=42941909</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=42941909</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42941909</guid></item><item><title><![CDATA[New comment by lamnguyenx in "Show HN: Bluetooth USB Peripheral Relay – Bridge Bluetooth Devices to USB"]]></title><description><![CDATA[
<p>Does this work with Raspberry Pi 4 or Raspberry Pi Zero 2 W?
Unfortunately I don't have Pi Zero W lying around :(</p>
]]></description><pubDate>Thu, 14 Nov 2024 07:03:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=42133759</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=42133759</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42133759</guid></item><item><title><![CDATA[New comment by lamnguyenx in "Dance training superior to physical exercise in inducing brain plasticity (2018)"]]></title><description><![CDATA[
<p>I have the same question to playing the piano. 
By every piano playing (30-60 mins per day), can we enhance our brain capacity and delay the age of dementia?</p>
]]></description><pubDate>Fri, 04 Oct 2024 03:09:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=41737420</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=41737420</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41737420</guid></item><item><title><![CDATA[New comment by lamnguyenx in "Visual guide to SSH tunneling and port forwarding (2023)"]]></title><description><![CDATA[
<p>Nice catch. You're right.
At my company all servers operate inside a complex & heavily-guarded intranet, so I usually use 0.0.0.0 instead of localhost / 127.0.0.1. Sometimes, only using the former worked (e.g: using Code-Server or Jupyter Notebook), and I'm not so good at networking to dive into iptables and firewall things.</p>
]]></description><pubDate>Fri, 20 Sep 2024 06:46:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=41599452</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=41599452</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41599452</guid></item><item><title><![CDATA[New comment by lamnguyenx in "Visual guide to SSH tunneling and port forwarding (2023)"]]></title><description><![CDATA[
<p>Wow. Nice trick! I didn't know SSH Config can do that exec control flow.</p>
]]></description><pubDate>Fri, 20 Sep 2024 06:41:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=41599427</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=41599427</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41599427</guid></item><item><title><![CDATA[New comment by lamnguyenx in "Visual guide to SSH tunneling and port forwarding (2023)"]]></title><description><![CDATA[
<p>just check my comment in in this post
using `~/.ssh/config` with ProxyJump, you can virtually jump between A B C D E ... or whatever.</p>
]]></description><pubDate>Fri, 20 Sep 2024 01:55:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=41598110</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=41598110</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41598110</guid></item><item><title><![CDATA[New comment by lamnguyenx in "Visual guide to SSH tunneling and port forwarding (2023)"]]></title><description><![CDATA[
<p>It's 2024! Please avoid writing SSH commands like that.<p>Instead, configure your ~/.ssh/config with LocalForward, RemoteForward, and ProxyJump. This can save you a significant amount of time, especially when using ssh, scp, or rsync to transfer data from a remote server that requires multiple intermediate SSH connections.<p>e.g:<p><pre><code>    Host jump-host-1
        HostName jump1.example.com
        User your_username
        IdentityFile ~/.ssh/id_rsa

        Host jump-host-2
            HostName jump2.example.com
            User your_username
            IdentityFile ~/.ssh/id_rsa
            ProxyJump jump-host-1

            Host jump-host-3
                HostName jump3.example.com
                User your_username
                IdentityFile ~/.ssh/id_rsa
                ProxyJump jump-host-2

                Host target-server
                    HostName target.example.com
                    User your_username
                    IdentityFile ~/.ssh/id_rsa
                    ProxyJump jump-host-3
                    LocalForward 0.0.0.0:8080 0.0.0.0:80  
                    RemoteForward 0.0.0.0:9022 0.0.0.0:22

    # after this:
    # - you can ssh/scp/rsync to your target-server via an alias
    # - forward traffic FROM port 80 on your target-server to port 8080 on your local machine
    # - forward ssh requests TO port 9022 on your target-server to port 22 on your local machine
    # - remember, for LocalForward & RemoteForward : 
    #   + left is target-server
    #   + right is your local
    #   + use 0.0.0.0 instead of localhost or 127.0.0.1</code></pre></p>
]]></description><pubDate>Fri, 20 Sep 2024 01:17:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=41597919</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=41597919</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41597919</guid></item><item><title><![CDATA[New comment by lamnguyenx in "Ask HN: What macOS apps/programs do you use daily and recommend?"]]></title><description><![CDATA[
<p>Don't forget full HDR support of IINA that VLC and most other alternatives on Apple Silicon don't have.<p>However, VLC still provides the best subtitle style customizations.</p>
]]></description><pubDate>Mon, 10 Jun 2024 09:35:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=40631732</link><dc:creator>lamnguyenx</dc:creator><comments>https://news.ycombinator.com/item?id=40631732</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40631732</guid></item></channel></rss>