<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: signaleleven</title><link>https://news.ycombinator.com/user?id=signaleleven</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 30 Apr 2026 00:48:56 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=signaleleven" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by signaleleven in "Free software hasn't won"]]></title><description><![CDATA[
<p>I left a startup around 6 months ago. We were around 30 employees and we had working software and were starting to get some users. We couldn't get the banks to work with us. We were able to get some access through third-party companies and it sucked.<p>I went to a meeting a few years ago with a big investment company. They had a team of 30 people trying to figure out how to reliably read financial documents to get people's financial information to serve it back to them. At this startup we spent a ton of time doing similar things, and paying another company to read our user's financial documents so we could get their info.<p>My point is, even if you incorporated and begged I'm not sure you'd have success.</p>
]]></description><pubDate>Tue, 14 Oct 2025 15:59:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=45581621</link><dc:creator>signaleleven</dc:creator><comments>https://news.ycombinator.com/item?id=45581621</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45581621</guid></item><item><title><![CDATA[New comment by signaleleven in "macOS Tahoe"]]></title><description><![CDATA[
<p>I love(d) Linux and I've used it a lot over the years, but I finally got fed up and bought a Macbook Pro a few weeks ago. I find myself fiddling with my Linux machine way more than I'd like. I'm sure whatever distro I was using (Ubuntu) will seem like the problem to someone who likes another distro, but that's just more fiddling to me. It took me a while to get to where Zoom video calls with screen sharing worked properly. The last straw was that my wifi card stopped working one day. Debugging OS issues with no internet is really hard.<p>I've got my dev environment set up on my new Macbook Pro and everything is working perfectly and I'm very happy.</p>
]]></description><pubDate>Tue, 16 Sep 2025 18:52:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=45266293</link><dc:creator>signaleleven</dc:creator><comments>https://news.ycombinator.com/item?id=45266293</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45266293</guid></item><item><title><![CDATA[New comment by signaleleven in "Next.js is infuriating"]]></title><description><![CDATA[
<p>Next.js was a godsend when it came out because of how easy it made SSR. Many React projects don't need SSR, but for those that do it was technically complicated and time-consuming to hand-roll it.<p>I was part of a successful large project where we did our own SSR implementation, and we were always tinkering with it. It wasted a lot of time. Next.js "just worked". I've used Next with the pages router on two significant and complex projects and it was a great choice. I have no regrets choosing it.</p>
]]></description><pubDate>Wed, 03 Sep 2025 17:16:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=45118275</link><dc:creator>signaleleven</dc:creator><comments>https://news.ycombinator.com/item?id=45118275</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45118275</guid></item><item><title><![CDATA[New comment by signaleleven in "Code highlighting extension for Cursor AI used for $500k theft"]]></title><description><![CDATA[
<p>Somewhat humorously, my company displayed an IT warning telling me that I can't visit the website in question because it's in Russia. I probably set off some kind of alarm somewhere.<p>I do use Cursor at work and I have various extensions installed.</p>
]]></description><pubDate>Tue, 15 Jul 2025 14:59:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=44571838</link><dc:creator>signaleleven</dc:creator><comments>https://news.ycombinator.com/item?id=44571838</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44571838</guid></item><item><title><![CDATA[New comment by signaleleven in "Ask HN: How do I learn robotics in 2025?"]]></title><description><![CDATA[
<p>I did a very basic version of this and it was a lot of fun. I bought a chassis online with tank treads that each had a motor. I used an Arduino to send the signal to each tread to turn and a distance sensor so it knew when it was arriving at an object. If it sensed that something was in front of it, it just turned 90 degrees and kept going.<p>Super simple but it felt like a big accomplishment to get that far.</p>
]]></description><pubDate>Wed, 04 Jun 2025 16:25:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=44182464</link><dc:creator>signaleleven</dc:creator><comments>https://news.ycombinator.com/item?id=44182464</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44182464</guid></item><item><title><![CDATA[New comment by signaleleven in "Ask HN: So, what's up with Phoenix (web framework)?"]]></title><description><![CDATA[
<p>I'm not as much of a fan of the Elixir/Phoenix/LiveView stack like many here, so I'd like to respectfully share my experience.<p>First off, Phoenix fixes pretty much everything I didn't like about Ruby on Rails and when I need to write an API for a weekend side project that I need to turn out quickly, I'll choose it without question. If you want to use a convention-based framework that includes support for migrations and instant DB mapping, it works well. The documentation is excellent.<p>I personally would not choose it for a large enterprise codebase, or for something with a rich Ux that you can't control the designs for (ie. you have a Ux team that calls all the shots).<p>LiveView is interesting. I have found certain things overly difficult to do that are easy in the js-based frameworks. For instance, a UI that has a list of children that you want to add and remove in memory and then save at the end. Obviously you can do this, and I've done it a lot, but there are quirks with the interaction of changesets, ecto, and your form that make it tricky for newcomers. I think the tight coupling between changesets and the form gets strange as soon as the page gets complicated. Schemaless changesets work well for this, but this is more to add to the learning curve.<p>Understanding the interaction between LiveComponents and function components will be tricky for newcomers as soon as you are past trivial implementations. Knowing where the memory is stored and what a genserver is is super important, but not intuitive. Targeting a specific LiveComponent to receive events if you have one that has another as a child isn't intuitive. Unit testing a LiveComponent and a function component is pretty sweet, but there's a learning curve there and I ran into a few frustrating bugs that didn't help (they were fixed after a few weeks).<p>There's a lot of these examples. The interaction with client-side js has evolved a lot this year, but it's tricky in my opinion.<p>I have personally witnessed experienced, talented and smart Elixir developers struggle with LiveView. The learning curve is real.<p>I know Elixir people love this stuff deeply, but I don't think LiveView will win in the marketplace of ideas, even if Elixir and Phoenix gain traction. People who aren't already bought in to this stack won't be willing to build complex websites this way. I know Chris and Jose are reading this thread, and I have deep respect for their accomplishment and talent, but LiveView isn't going to be for me.</p>
]]></description><pubDate>Sat, 20 Aug 2022 12:56:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=32531724</link><dc:creator>signaleleven</dc:creator><comments>https://news.ycombinator.com/item?id=32531724</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32531724</guid></item><item><title><![CDATA[New comment by signaleleven in "Ask HN: So, what's up with Phoenix (web framework)?"]]></title><description><![CDATA[
<p>LiveView, which of course isn’t exactly Phoenix but is closely related, changed a great deal late last year. These were welcome changes but they were significant.</p>
]]></description><pubDate>Sat, 20 Aug 2022 12:20:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=32531481</link><dc:creator>signaleleven</dc:creator><comments>https://news.ycombinator.com/item?id=32531481</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32531481</guid></item><item><title><![CDATA[New comment by signaleleven in "Will Hare replace C? Or Rust? Or Zig? Or anything else?"]]></title><description><![CDATA[
<p>While that was true for years, Node.js has made JavaScript viable on the server for quite a while. But I agree with your overall point. I think JS and C# are good examples of languages that were seen as valuable enough to start using in other environments. I love C#.</p>
]]></description><pubDate>Tue, 03 May 2022 14:15:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=31248566</link><dc:creator>signaleleven</dc:creator><comments>https://news.ycombinator.com/item?id=31248566</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31248566</guid></item></channel></rss>