<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: joeld42</title><link>https://news.ycombinator.com/user?id=joeld42</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 23 Apr 2026 03:21:51 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=joeld42" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by joeld42 in "You used to be able to just create a Native GUI App in 10 seconds"]]></title><description><![CDATA[
<p>Take a look at Slint or Avalonia if you miss this experience.<p>And I'll take needing an internet connection over having to install Visual Basic from a stack of CDs.</p>
]]></description><pubDate>Wed, 10 Dec 2025 19:28:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=46222374</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=46222374</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46222374</guid></item><item><title><![CDATA[New comment by joeld42 in "Ask HN: What change enabled you to consistently finish your side projects?"]]></title><description><![CDATA[
<p>I'm still not great at it, but the biggest thing that helped me was to give myself a rule, "Don't talk about what I'm planning, only talk about what I've done". Explaining a project's vision or goals give my brain a mini-version of the feeling of accomplishment of actually doing it, and I found that I would use that as a replacement for actually building stuff (which is much more work). Instead, if I only talk about the parts that I've completed, it's very motivating to build the next step so that I can share it. It also gave me more flexibility to change course during a project.</p>
]]></description><pubDate>Mon, 04 Aug 2025 17:41:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=44789077</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44789077</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44789077</guid></item><item><title><![CDATA[New comment by joeld42 in "Luxe Game Engine"]]></title><description><![CDATA[
<p>Some Jam Games with web builds:<p><a href="https://itch.io/jam/luxe/entries?ref=luxeengine.com" rel="nofollow">https://itch.io/jam/luxe/entries?ref=luxeengine.com</a><p><a href="https://ldjam.com/events/ludum-dare/56/terrarium-combinarium" rel="nofollow">https://ldjam.com/events/ludum-dare/56/terrarium-combinarium</a><p><a href="https://joeld42.itch.io/bridges" rel="nofollow">https://joeld42.itch.io/bridges</a><p>More jam games that I didn't make a web build for but downloads are available:<p><a href="https://joeld42.itch.io/lighthouse-keeper" rel="nofollow">https://joeld42.itch.io/lighthouse-keeper</a><p><a href="https://ldjam.com/events/ludum-dare/54/cargo-space" rel="nofollow">https://ldjam.com/events/ludum-dare/54/cargo-space</a><p><a href="https://ldjam.com/events/ludum-dare/53/last-mile" rel="nofollow">https://ldjam.com/events/ludum-dare/53/last-mile</a><p><a href="https://ldjam.com/events/ludum-dare/51/artichoke-key" rel="nofollow">https://ldjam.com/events/ludum-dare/51/artichoke-key</a><p>On Steam:<p><a href="https://store.steampowered.com/app/1836400/Mossfield_Origins/" rel="nofollow">https://store.steampowered.com/app/1836400/Mossfield_Origins...</a></p>
]]></description><pubDate>Fri, 13 Jun 2025 20:13:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=44271836</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44271836</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44271836</guid></item><item><title><![CDATA[New comment by joeld42 in "Luxe Game Engine"]]></title><description><![CDATA[
<p>I've been playing with this engine for a while. I really like the engine. For me the best features are:<p>- Scripting is really ergonomic, and fairly fast performance-wise. And if you need something to be really fast writing native extension modules for wren is pretty straightforward. So it's a choice between "reasonable" perf scripting and "fast" native code, which is much better than something like Unity where everything is kind of in the middle.<p>- Wren fibers (a form of cooperative threading) are fantastic for dealing with game logic (NPC state, game AI, etc) without introducing the complexity of true multithreading.<p>- The graphics/render module is extremely configurable. The whole render module is just a script that sets up a fast c++ execution graph, and you can modify/script this.<p>- The tools are very nice and a lot of care put into them. I don't use the editor too much, and mostly interact through code, but for things like level design it's really nice to have.<p>- Many game engines feel like a good fit for a large project or a small one but not both. Luxe is great for small jam games and full-sized projects. A project can be pretty much just a project file, a few configs and a script, or a large structure and the editor encourages (but doesn't enforce) a good project layout.<p>- Drawing is super flexible. You've got sprites and shapes and meshes and tiles and everything, but there's also an "immediate style" drawing api that is very high quality. Similar to having "Shapes" extension in unity but it's a first class citizen and built in.<p>- The "Modifiers" (which is Luxe's ECS-like component thing) took me a while to get used to using, and can be a source of friction at first, but once I got it it really feels like a better way to do things. And it's entirely optional so you don't have to if you're still learning.<p>- Outside of code and raw assets like images and mesh, almost everything is stored in ".lx" files which are very json-like, which can be really helpful for debugging and understanding  what's going on, and on many occasions I've been able to automate stuff from script just by writing out or modifying lx files.<p>- Features and fixes are added constantly, but done carefully in a way that doesn't break existing code too often or without a clear migration strategy (glares at bevy).<p>It feels like an engine built for small teams and experimental workflows. Especially if you're looking for alternatives to Unity, I'd recommend it.</p>
]]></description><pubDate>Fri, 13 Jun 2025 19:55:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=44271704</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44271704</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44271704</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>hmm, i've played around a bit with level design in the past and honestly Arcol wouldn't be that great a fit. I like Probuilder in Unity for that, I think the key to any good workflow is immediate changes and fast iteration, so you really want something that's pretty tightly integrated into your game engine.<p>It could be useful for greyboxing or even just generating some rough shapes though. We do export GLTF which is easy to get into game engines.</p>
]]></description><pubDate>Tue, 03 Jun 2025 03:47:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=44166080</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44166080</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44166080</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>yeah, great idea. Eventually we'd love to get there, supporting all stages of the AEC pipeline. But the scope is so huge we can't give it the level of design attention and polish that we want if we try to do everything, so we're focused on feasibility for now and try and make a great experience for that.</p>
]]></description><pubDate>Tue, 03 Jun 2025 03:44:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=44166069</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44166069</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44166069</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>Exactly! It’s great to see that this idea resonates!</p>
]]></description><pubDate>Mon, 02 Jun 2025 21:38:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=44163355</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44163355</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44163355</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>We're hoping to provide tools that let firms build whatever workflows they need.<p>Right now, we have design options to present and compare different options and variants of scenes, and boards and comments, but we don't enforce any workflow.<p>Looking at how customers use these features and adding tools to enable this is definitely a big focus in the near term.</p>
]]></description><pubDate>Mon, 02 Jun 2025 20:44:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=44162851</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44162851</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44162851</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>It coexists with Revit right now, and is a good place to do feasibility and early design and get instant metrics and feedback. We think it's a lot more collaborative and design friendly.<p>One day we'd love to take them on directly, I think there's a lot of architects out there looking for something better.<p>As far as collaboration features, we've built it from the ground up with collaboration in mind, so you can work with other users directly in the same scene and see their actions and updates. We've got collaborative presentation boards with views and metrics that can update live, and of course workflow features like commenting. And since it's browser based, there's not the friction of installing a desktop app, which can be significant at some orgs.<p>We'd love to know what you think though, give it a try and let us know what collaboration features you'd use!</p>
]]></description><pubDate>Mon, 02 Jun 2025 19:46:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=44162300</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44162300</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44162300</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>Thanks! We love to hear it!</p>
]]></description><pubDate>Mon, 02 Jun 2025 19:35:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=44162220</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44162220</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44162220</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>Exactly, at this stage, the output is mainly for feasibility, presentations and communication. But we can also export models to Revit or 3D formats like GLTF to use in the next steps of the process, or for renders, etc. But we're planning to continue to add features to make it useful further down the AEC pipelines.<p>Good point about the play button, I'll pass that feedback along. :)</p>
]]></description><pubDate>Mon, 02 Jun 2025 19:08:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=44161981</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44161981</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44161981</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>We don't need to update the scene at once, so when geometry changes we rebuild the buffer and send it over to typescript, and the three.js mesh will own the buffer. By being careful about what needs to be updated, we can keep things interactive.<p>This is an older blog post but it covers the general idea of it:
<a href="https://blog.arcol.io/parametric-geometry-engine" rel="nofollow">https://blog.arcol.io/parametric-geometry-engine</a></p>
]]></description><pubDate>Mon, 02 Jun 2025 18:18:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=44161548</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44161548</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44161548</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>haha yeah! It feels like a real pain point in the industry right now. Hopefully we can make it easier for communication between design, engineering and construction.</p>
]]></description><pubDate>Mon, 02 Jun 2025 17:28:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=44161114</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44161114</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44161114</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>It is using ThreeJS for the 3D rendering, with a custom Rust geometry kernel to generate the mesh buffers to render. The editor interface is React based.</p>
]]></description><pubDate>Mon, 02 Jun 2025 17:23:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=44161082</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44161082</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44161082</guid></item><item><title><![CDATA[New comment by joeld42 in "Arcol simplifies building design with browser-based modeling"]]></title><description><![CDATA[
<p>We're launching Arcol today! Check it out. Modern CAD tool, built for the browser with Rust+Typescript for high performance and an elegant UX.<p>Check out the announce video that explains some of the ideas behind it:
<a href="https://www.linkedin.com/posts/paul-o-carroll-38aaa1105_arcol-retoolingaec-aec-activity-7335334499662147584-DnXJ/" rel="nofollow">https://www.linkedin.com/posts/paul-o-carroll-38aaa1105_arco...</a><p>Feel free to post any questions and I'll do my best to answer!</p>
]]></description><pubDate>Mon, 02 Jun 2025 16:18:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=44160378</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44160378</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44160378</guid></item><item><title><![CDATA[Arcol simplifies building design with browser-based modeling]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.arcol.io/">https://www.arcol.io/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44160358">https://news.ycombinator.com/item?id=44160358</a></p>
<p>Points: 59</p>
<p># Comments: 27</p>
]]></description><pubDate>Mon, 02 Jun 2025 16:16:11 +0000</pubDate><link>https://www.arcol.io/</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=44160358</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44160358</guid></item><item><title><![CDATA[New comment by joeld42 in "Ask HN: What's the best implementation of Conway's Game of Life?"]]></title><description><![CDATA[
<p>The one that had the most personal influence on me was the chapter from Michael Abrash's Graphics Programming Black Book:
<a href="https://www.phatcode.net/res/224/files/html/ch17/17-01.html#Heading1" rel="nofollow">https://www.phatcode.net/res/224/files/html/ch17/17-01.html#...</a><p>CPU are very different these days, but the process he goes through is essentially unchanged.</p>
]]></description><pubDate>Thu, 13 Feb 2025 18:12:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=43039217</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=43039217</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43039217</guid></item><item><title><![CDATA[New comment by joeld42 in "Ask HN: How to produce a 3D scan of a car from a mobile phone?"]]></title><description><![CDATA[
<p>If you are looking for an existing car, there's a lot of sites selling pre-made vehicle models for pretty much anything, that's probably going to be higher quality and need less cleanup than anything you can get from scanning.<p>One of the problems you'll have is photoscanning does not do well with shiny surfaces, as the highlights move and confuse the reconstruction. If this were a model or maquette or something, they would probably spray paint it matte before scanning, which I doubt you want to do with a real car.<p>If you need high quality, honestly I'd just hire a hard surface modeller. There are people out there who make cars all day every day. If you just need low quality, Unreal's RealityScan app, Polycam, or AliceVision are good places to start.</p>
]]></description><pubDate>Mon, 27 Jan 2025 18:51:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=42844347</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=42844347</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42844347</guid></item><item><title><![CDATA[New comment by joeld42 in "Show HN: Brisk – Cross-Platform C++ GUI Framework: Declarative, Reactive, Fast"]]></title><description><![CDATA[
<p>Most of the drawing work of a GUI is drawing text, shape paths, and images. A GPU-accelerated UI layer draws these using GPU commands. It's not exactly the same as making an ortho 2D scene, but conceptually that's pretty much it. Often it means using crude geometry (such as a quad per glyph in a text renderer, or a "ribbon" of quads to cover a curve) and using a shader to draw the glyph or curve itself.<p>For a simple example, think of a rounded rect. Typically this would draw as a quad (a pair of triangles), and a shader would calculate the rounded corners.<p>There's also a lot of compositing and clipping that happens in a UI (e.g. a large widget inside a scrollbox) which is challenging to do on GPU as these get nested.</p>
]]></description><pubDate>Wed, 18 Dec 2024 20:52:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=42455045</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=42455045</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42455045</guid></item><item><title><![CDATA[New comment by joeld42 in "Show HN: ImPlot3D – A 3D Plotting Library for Dear ImGui"]]></title><description><![CDATA[
<p>ImGui doesn't have "components" like a traditional toolkit. If you want a custom component you just make a regular function like:<p>MyCustomThing::MyWidget( "name", whatever_value );<p>And it gets the current rectangle from a global context, can allocate some of that rectangle space for itself, draw things, react to events, etc. It's more complicated when the widget needs to store state, but ImGui has pretty well established conventions for how to do that, which basically boils down to hashing the widget name or ID and storing your state there. And when you try, you find you need a lot less state than you might expect. Of course if you have custom data that already has state (e.g. an object passed into your widget), you can use and modify that directly which is great.<p>It's a very different way of thinking, and it does have some challenges but it usually ends up being a lot simpler and more robust than a "retained mode" gui.</p>
]]></description><pubDate>Wed, 18 Dec 2024 20:36:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=42454848</link><dc:creator>joeld42</dc:creator><comments>https://news.ycombinator.com/item?id=42454848</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42454848</guid></item></channel></rss>