<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: axelerator</title><link>https://news.ycombinator.com/user?id=axelerator</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 03 Jul 2026 18:46:53 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=axelerator" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by axelerator in "How Complex Systems Fail"]]></title><description><![CDATA[
<p>Definitely some good reminders in there!<p>>  But the converse: that successful outcomes are also the result of gambles; is not widely appreciated.<p>This statement however I would challenge: There is the whole ‘build fast and break shit’ culture that bets exactly on that outcome.</p>
]]></description><pubDate>Mon, 05 May 2025 06:03:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=43892313</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=43892313</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43892313</guid></item><item><title><![CDATA[New comment by axelerator in "Hire HTML and CSS People"]]></title><description><![CDATA[
<p>There are bunch of good UX principles baked into HTML and CSS. Plus to become good at HTML and CSS you will be exposed to a lot of UX talk as well.<p>So one could argue it's really hard to get really good at HTML and CSS and not care about UX at all.<p>But yes, a fool with a tool is still a fool - if that's the point you're trying to make.</p>
]]></description><pubDate>Wed, 25 Sep 2024 15:47:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=41648700</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=41648700</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41648700</guid></item><item><title><![CDATA[New comment by axelerator in "Ask HN: What have you built with ESPHome, ESP8266 or similar hardware"]]></title><description><![CDATA[
<p>A web interface for infrared remote controls
<a href="https://www.instructables.com/Web-IR-Remote-With-Esp8266-NodeMCU/" rel="nofollow">https://www.instructables.com/Web-IR-Remote-With-Esp8266-Nod...</a></p>
]]></description><pubDate>Sat, 27 Apr 2024 19:55:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=40182932</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=40182932</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40182932</guid></item><item><title><![CDATA[New comment by axelerator in "The Montreal problem: Why programming languages need a style czar"]]></title><description><![CDATA[
<p>> Well... no. Engineers are more efficient in their own styles. Realistically, I've wasted hours setting up my editor at each new job / each project to get on board with the style<p>I disagree for two reasons:<p>1. Optimizing for what each dev is used to is optimizing for a local maximum. If they’re THAT good it won’t take them long to adjust to new defaults. Good engineers should be able to pick up a new lang quickly so some changes in the context of a language should not bog them down significantly in the long term.<p>2. The overly long time it took to set up tooling in a particular company or language  do not outweigh the bigger advantage of being able to quickly get a grasp about what a piece of completely unfamiliar code does.</p>
]]></description><pubDate>Fri, 15 Mar 2024 15:40:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=39716966</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=39716966</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39716966</guid></item><item><title><![CDATA[New comment by axelerator in "Triangle Grids"]]></title><description><![CDATA[
<p>Very inspiring! I just started out to play around with the wave function collapse algorithm [1]. I'm in the middle of porting it to a cube based 3d grid. And now I'm wondering what a triangle based volume presentation would look like<p>[1] <a href="https://github.com/axelerator/wave-function-collapse-2d" rel="nofollow">https://github.com/axelerator/wave-function-collapse-2d</a></p>
]]></description><pubDate>Sun, 10 Jul 2022 16:59:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=32046446</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=32046446</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32046446</guid></item><item><title><![CDATA[New comment by axelerator in "Fornjot: A next-generation Code-CAD application"]]></title><description><![CDATA[
<p>I think 3D modelling lends itself exceptionally well to the functional programming style. Rusts syntax is heavily influenced to solve a breadth of system level problems that don't exist in the "application" space this is solving.<p>I would argue such a system would be best implemented in a language that only has expressions. For example Elm has a wonderful geometry library [1].<p>[1] <a href="https://package.elm-lang.org/packages/ianmackenzie/elm-geometry/latest/" rel="nofollow">https://package.elm-lang.org/packages/ianmackenzie/elm-geome...</a></p>
]]></description><pubDate>Wed, 09 Mar 2022 20:25:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=30619527</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=30619527</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30619527</guid></item><item><title><![CDATA[New comment by axelerator in "Why learn Racket? A student's perspective"]]></title><description><![CDATA[
<p>I always say my appreciation for functional programming comes from having spent enough time in imperative hell.<p>That being said I think learning programming in an "expressions only" environment can enable the student to deal with more complex problems earlier, merely by making certain types of errors impossible.<p>I think the Elm programming language is the sweet spot for that.<p>- it does have elegant (Haskell like) syntax<p>- it has still a simple syntax because it deliberately omits certain features (namely typeclasses, do-notation)<p>- it has a self contained build system (compiler, package manager, repl, dev server) with a rich ecosystem of libraries<p>- it is comparatively easy to ship something tangible because it compiles to JS for the browser</p>
]]></description><pubDate>Mon, 21 Feb 2022 19:46:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=30419769</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=30419769</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30419769</guid></item><item><title><![CDATA[New comment by axelerator in "Ligatures in programming fonts: hell no (2019)"]]></title><description><![CDATA[
<p>But keyboards are not. Even if I’d be able to convince the maintainers of my favorite programming language to also accept some Unicode glyph as synonym to ‘==‘ how do I type it?
Ligatures might not be ‘the right’ solution, but they are a highly efficient approximation. Also the cost of reversing the decision to use them is basically zero.</p>
]]></description><pubDate>Wed, 22 Dec 2021 16:00:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=29651034</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=29651034</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29651034</guid></item><item><title><![CDATA[New comment by axelerator in "Internal Combustion Engine"]]></title><description><![CDATA[
<p>I recommend trying to get started with webGL Elm [0]. It's a language that compiles to JS to run in the browser. It's a functional language and saves you from having to deal with most of the historical baggage of JS.<p>[0] <a href="https://lucamug.medium.com/3d-graphics-in-the-browser-with-elm-bf00d9beba58" rel="nofollow">https://lucamug.medium.com/3d-graphics-in-the-browser-with-e...</a></p>
]]></description><pubDate>Sat, 01 May 2021 16:50:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=27007748</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=27007748</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27007748</guid></item><item><title><![CDATA[New comment by axelerator in "The Impractical but Indisputable Rise of Retrocomputing"]]></title><description><![CDATA[
<p>I'm kind of sad they write such an article without mentioning the demoscene.<p><a href="http://demoscene-the-art-of-coding.net/the-demoscene/" rel="nofollow">http://demoscene-the-art-of-coding.net/the-demoscene/</a></p>
]]></description><pubDate>Mon, 11 Jan 2021 15:21:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=25730063</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=25730063</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25730063</guid></item><item><title><![CDATA[New comment by axelerator in "Existential Haskell"]]></title><description><![CDATA[
<p>The irony:<p>"I write this not because I expect to break any new ground—all the techniques I use here are long-documented in the literature, and Haskell veterans will probably find little new in this post"<p>Yet I can't get rid of the feeling the article is written in a way only "Haskell veterans" are able to follow it :-)</p>
]]></description><pubDate>Thu, 26 Nov 2020 16:37:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=25221400</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=25221400</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25221400</guid></item><item><title><![CDATA[New comment by axelerator in "Ask HN: How to be fluent in functional language speak?"]]></title><description><![CDATA[
<p>I think the first step here is to put your expectations into perspective. Functional programming also is a range of complexity. If you're not used to functional programming and try to read articles targeted at the high-end you'll naturally struggle to understand them.<p>I still remember "not getting" OO in university in my first lecture. I had programmed BASIC, C, Pascal, PHP before.
And if someone would have tried to explain me the idea by means of the visitor pattern, it would surely have made me say "eh?!?" too. So allow yourself to start slowly.<p>I'm also still dabbling in functional programming - at least that's what it feels like reading about monoids etc - but by actually using functional programming languages in my more serious spare time projects I feel I get a better and better understanding. And "those" articles start to speak more to me.</p>
]]></description><pubDate>Tue, 05 May 2020 16:11:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=23081599</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=23081599</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23081599</guid></item><item><title><![CDATA[New comment by axelerator in "Ask HN: What music helps you code better?"]]></title><description><![CDATA[
<p><a href="https://www.mixcloud.com/prototype202/" rel="nofollow">https://www.mixcloud.com/prototype202/</a></p>
]]></description><pubDate>Thu, 24 May 2018 10:47:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=17142751</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=17142751</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17142751</guid></item><item><title><![CDATA[RoR Gem serious_business: Good application practices in a handsome DSL]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/axelerator/serious_business">https://github.com/axelerator/serious_business</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=15271326">https://news.ycombinator.com/item?id=15271326</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 17 Sep 2017 19:45:32 +0000</pubDate><link>https://github.com/axelerator/serious_business</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=15271326</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=15271326</guid></item><item><title><![CDATA[New comment by axelerator in "AI Is Getting Better at Detecting Handguns"]]></title><description><![CDATA[
<p>I cannot believe no one had pointed out the matching Robocop scene yet: <a href="https://www.youtube.com/watch?v=_mqDjcGgE5I" rel="nofollow">https://www.youtube.com/watch?v=_mqDjcGgE5I</a> 
scnr</p>
]]></description><pubDate>Thu, 25 May 2017 00:37:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=14414549</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=14414549</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14414549</guid></item><item><title><![CDATA[New comment by axelerator in "GitHub had connectivity problems"]]></title><description><![CDATA[
<p>I'm wondering if there is a corresponding traffic spike on the hn servers ;-)</p>
]]></description><pubDate>Tue, 25 Aug 2015 11:14:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=10115634</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=10115634</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10115634</guid></item><item><title><![CDATA[New comment by axelerator in "What are your favorite sci-fi and fantasy books?"]]></title><description><![CDATA[
<p>Deamon by Daniel Suarez</p>
]]></description><pubDate>Sun, 25 Jan 2015 22:35:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=8944529</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=8944529</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=8944529</guid></item><item><title><![CDATA[Simple faceted search for your AR models without a search engine]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/fortytools/forty_facets">https://github.com/fortytools/forty_facets</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=7812188">https://news.ycombinator.com/item?id=7812188</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 28 May 2014 19:14:18 +0000</pubDate><link>https://github.com/fortytools/forty_facets</link><dc:creator>axelerator</dc:creator><comments>https://news.ycombinator.com/item?id=7812188</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=7812188</guid></item></channel></rss>