<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: Antonito</title><link>https://news.ycombinator.com/user?id=Antonito</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 17 Apr 2026 22:14:13 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Antonito" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Antonito in "Expanding Swift's IDE Support"]]></title><description><![CDATA[
<p>As others have stated it's possible, but might be cumbersome.<p>I made an example of an iOS/Android monorepo with a shared Rust core a few months ago:
<a href="https://github.com/Antonito/bazel-app-core-native-example/" rel="nofollow">https://github.com/Antonito/bazel-app-core-native-example/</a><p>You do need the Android SDK to build, Android Studio makes things easier (even though the Bazel IDE plugin is a whole other topic itself..) but isn't mandatory to develop or run your app.</p>
]]></description><pubDate>Wed, 08 Apr 2026 21:40:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47696639</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=47696639</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47696639</guid></item><item><title><![CDATA[New comment by Antonito in "Show HN: Gfile, a WebRTC based file transfer utility in Go"]]></title><description><![CDATA[
<p>Didn't know about it, that's pretty cool!</p>
]]></description><pubDate>Mon, 08 Apr 2019 22:20:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=19609645</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=19609645</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19609645</guid></item><item><title><![CDATA[New comment by Antonito in "Show HN: Gfile, a WebRTC based file transfer utility in Go"]]></title><description><![CDATA[
<p>Glad you like it!<p>If you think of any feature/improvements, feel free to open a issue/pull request! :)</p>
]]></description><pubDate>Mon, 08 Apr 2019 22:19:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=19609637</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=19609637</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19609637</guid></item><item><title><![CDATA[New comment by Antonito in "Show HN: Gfile, a WebRTC based file transfer utility in Go"]]></title><description><![CDATA[
<p>That project is really cool!<p>I'm planning to work on the SDP stuff at some point. It works well, but sharing two base64 encoded strings isn't very practical :/</p>
]]></description><pubDate>Mon, 08 Apr 2019 17:09:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=19607033</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=19607033</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19607033</guid></item><item><title><![CDATA[New comment by Antonito in "Show HN: Gfile, a WebRTC based file transfer utility in Go"]]></title><description><![CDATA[
<p>Transfer is done via DTLS, a protocol on top of UDP, so we have to deal with packet loss and retransmission, which itself is controlled by SCTP.
gfile uses pion/sctp[0] (via pion/webrtc[1]), and there has been some work going on to improve performances. :)<p>The performances used to be far worse, but with the recent improvements on pion/sctp, I felt gfile had become fast enough to be useful to some people.<p>[0]: <a href="https://github.com/pion/sctp" rel="nofollow">https://github.com/pion/sctp</a><p>[1]: <a href="https://github.com/pion/webrtc" rel="nofollow">https://github.com/pion/webrtc</a></p>
]]></description><pubDate>Mon, 08 Apr 2019 17:07:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=19607018</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=19607018</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19607018</guid></item><item><title><![CDATA[New comment by Antonito in "Show HN: Gfile, a WebRTC based file transfer utility in Go"]]></title><description><![CDATA[
<p>Hey!<p>It can be useful if your transmitting data between two different clients on two different networks. In this case, you don't need to open ports on your firewall nor change your network configuration :)<p>Thank you!</p>
]]></description><pubDate>Mon, 08 Apr 2019 14:43:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=19605652</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=19605652</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19605652</guid></item><item><title><![CDATA[New comment by Antonito in "Show HN: Gfile, a WebRTC based file transfer utility in Go"]]></title><description><![CDATA[
<p>Yup, it still relies on a STUN server to get the connection's metadata.
As hardwaresofton pointed out, I'm using Google's STUN server.<p>Since it's only STUN, and not TURN, the actual transferred data does not go transit through it though.</p>
]]></description><pubDate>Mon, 08 Apr 2019 14:38:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=19605603</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=19605603</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19605603</guid></item><item><title><![CDATA[New comment by Antonito in "Show HN: Gfile, a WebRTC based file transfer utility in Go"]]></title><description><![CDATA[
<p>Yup, it can be done! Actually, it's one of my next objectives for it. I started to write a front-end client, with WebAssembly.
It's not fully working yet, but you can take a look at it here:
<a href="https://github.com/Antonito/gfile/tree/master/_client/web" rel="nofollow">https://github.com/Antonito/gfile/tree/master/_client/web</a></p>
]]></description><pubDate>Mon, 08 Apr 2019 14:35:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=19605559</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=19605559</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19605559</guid></item><item><title><![CDATA[Show HN: Gfile, a WebRTC based file transfer utility in Go]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/Antonito/gfile/tree/v0.1.0">https://github.com/Antonito/gfile/tree/v0.1.0</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=19601798">https://news.ycombinator.com/item?id=19601798</a></p>
<p>Points: 77</p>
<p># Comments: 42</p>
]]></description><pubDate>Mon, 08 Apr 2019 03:37:38 +0000</pubDate><link>https://github.com/Antonito/gfile/tree/v0.1.0</link><dc:creator>Antonito</dc:creator><comments>https://news.ycombinator.com/item?id=19601798</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19601798</guid></item></channel></rss>