<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: twelvechairs</title><link>https://news.ycombinator.com/user?id=twelvechairs</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 25 Jun 2026 04:20:42 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=twelvechairs" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by twelvechairs in "GLM-5.2 – How to Run Locally"]]></title><description><![CDATA[
<p>Other countries will provide if the US doesnt</p>
]]></description><pubDate>Wed, 24 Jun 2026 07:34:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=48656476</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=48656476</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48656476</guid></item><item><title><![CDATA[New comment by twelvechairs in "GLM-5.2 – How to Run Locally"]]></title><description><![CDATA[
<p>Surely for most the desire is just an LLM provider that doesnt store or sell their queries (including by national actors). As long as that is allowed to happen surely its the answer for the vast majority.</p>
]]></description><pubDate>Mon, 22 Jun 2026 23:26:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=48637917</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=48637917</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48637917</guid></item><item><title><![CDATA[New comment by twelvechairs in "GenCAD"]]></title><description><![CDATA[
<p>OpenSCAD uses CSG which is generally better. Easy to convert CSG to BREP. Cant generally do the opposite</p>
]]></description><pubDate>Mon, 18 May 2026 03:32:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48175274</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=48175274</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48175274</guid></item><item><title><![CDATA[New comment by twelvechairs in "If AI writes your code, why use Python?"]]></title><description><![CDATA[
<p>Surely its the same hierarchy as before. For most complex things you start with high level to get something running quickly then move towards low level when you bed down the spec and need more safety, error reporting, speed etc.</p>
]]></description><pubDate>Tue, 12 May 2026 08:25:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=48105648</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=48105648</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48105648</guid></item><item><title><![CDATA[New comment by twelvechairs in "Claude Code is locking people out for hours"]]></title><description><![CDATA[
<p>Yeah its huge demand upswing from the growth of openclaw and similar pushing resources. Very clear from recent changes and announcement around this [0]<p>Fwiw there are worse delays from second tier providers like moonshot's kimik2.5 that are also popular for agentic use.<p>[0] <a href="https://news.ycombinator.com/item?id=47633396">https://news.ycombinator.com/item?id=47633396</a></p>
]]></description><pubDate>Tue, 07 Apr 2026 15:26:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=47676852</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=47676852</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47676852</guid></item><item><title><![CDATA[New comment by twelvechairs in "Statement on the comments from Secretary of War Pete Hegseth"]]></title><description><![CDATA[
<p>No surprises many people on YCs site align with Sam Altmans view of the world - right or wrong.</p>
]]></description><pubDate>Sat, 28 Feb 2026 05:52:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47190983</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=47190983</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47190983</guid></item><item><title><![CDATA[New comment by twelvechairs in "Making geo joins faster with H3 indexes"]]></title><description><![CDATA[
<p>Its a well researched area. My understanding is for most use cases and data like this R trees outperform as bounding box comparisons are fast to run and the bounding boxes tend to be well organised to chunk data efficiently. H3 is a looser area and you may find lots of your points are clustered in a few grids so you end up doing more expensive detailed intersection calculations. Of course it all depends a little on your data, use case and to some extent the parameters chosen for the spatial index. But I think safe to say now based on industry experience that r trees do a very good job 99.9% of the time.<p>You can of course also use h3 in postgis directly as well as r trees. Its helps significantly for heatmap creation and sometimes for neighbourhood searches.</p>
]]></description><pubDate>Sat, 07 Feb 2026 23:07:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=46929240</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46929240</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46929240</guid></item><item><title><![CDATA[New comment by twelvechairs in "Making geo joins faster with H3 indexes"]]></title><description><![CDATA[
<p>For use cases like this - long term geospatial people still use postgis as foundational - mainly for its speed at scale and spatial indexing.<p>For the wider tech world - I would say postgres suffers from being "old tech" and somewhat "monolithic". There have been a lot of trends against it (e.g. nosql, fleeing the monolith, data lakes). But also more practically for a lot of businesses geospatial is not their primary focus - they bring other tech stacks so something like postgis can seem like duplication if they already use another database, data storage format or data processing pipeline. Also some of the proliferation of other software and file formats have made some uses cases easier without postgis.<p>Really Id say the most common path ive seen for people who dont have an explicit geospatial background who are starting to implement it is to avoid postgis until it becomes absolutely clear that they need it.</p>
]]></description><pubDate>Sat, 07 Feb 2026 20:24:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=46927545</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46927545</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46927545</guid></item><item><title><![CDATA[New comment by twelvechairs in "Making geo joins faster with H3 indexes"]]></title><description><![CDATA[
<p>Agree with this. They are re-solving a problem that has been solved better by others before (with R-trees).<p>They may well be using some data storage where spatial indexing is not possible or standard. Geoparquet is a common one now - a great format in many ways but spatial indexing isnt there.<p>Postgres may be out of fashion but still an old fashioned postgis server is the simplest solution sometimes.</p>
]]></description><pubDate>Sat, 07 Feb 2026 08:24:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=46922250</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46922250</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46922250</guid></item><item><title><![CDATA[New comment by twelvechairs in "Don't rent the cloud, own instead"]]></title><description><![CDATA[
<p>Theres only one solution to this problem and its 2 data centres in some way or form</p>
]]></description><pubDate>Thu, 05 Feb 2026 07:04:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=46896616</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46896616</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46896616</guid></item><item><title><![CDATA[New comment by twelvechairs in "Parking lots as economic drains"]]></title><description><![CDATA[
<p>Or just do what the Japanese do - remove unlimited (and overnight) on-street parking in urban areas and require anyone owning a car to prove they have a private parking spot to house it</p>
]]></description><pubDate>Mon, 02 Feb 2026 19:51:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=46860433</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46860433</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46860433</guid></item><item><title><![CDATA[New comment by twelvechairs in "MapLibre Tile: a modern and efficient vector tile format"]]></title><description><![CDATA[
<p>Looks great. I wish there was similar advancement for full 3d tiles. The only real option at the moment is cesiums 3d tiles format which is nowhere near as fast as it could/should be</p>
]]></description><pubDate>Mon, 26 Jan 2026 12:31:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=46764869</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46764869</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46764869</guid></item><item><title><![CDATA[New comment by twelvechairs in "Our approach to age prediction"]]></title><description><![CDATA[
<p>"it is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail."</p>
]]></description><pubDate>Tue, 20 Jan 2026 19:52:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=46696913</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46696913</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46696913</guid></item><item><title><![CDATA[New comment by twelvechairs in "Classical statues were not painted horribly"]]></title><description><![CDATA[
<p>The other side is lack of colourfast pigments back then. Underlayers would be cheap and colourfast. Top layers would usually be more expensive and deteriorate much more quickly.</p>
]]></description><pubDate>Thu, 18 Dec 2025 19:18:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=46317206</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46317206</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46317206</guid></item><item><title><![CDATA[New comment by twelvechairs in "Australia begins enforcing world-first teen social media ban"]]></title><description><![CDATA[
<p>If you read the rhetoric it is not about removing commercial exploitation of children. It is about removing child bullying, grooming and algorithms that lead to things like misogynist content and eating disorders.<p>I generally agree with parent commenter - some of this will be helped by the ban but theres a serious risk a small number will go through fringe social media even less policed or normalised than the big American ones and have much higher risk on some of these issues than before.</p>
]]></description><pubDate>Wed, 10 Dec 2025 22:43:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=46225024</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46225024</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46225024</guid></item><item><title><![CDATA[New comment by twelvechairs in "DeepSeek-v3.2: Pushing the frontier of open large language models [pdf]"]]></title><description><![CDATA[
<p>The bar is incredibly low considering what OpenAI has done as a "not for profit"</p>
]]></description><pubDate>Mon, 01 Dec 2025 20:27:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=46112739</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=46112739</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46112739</guid></item><item><title><![CDATA[New comment by twelvechairs in "Unexpected things that are people"]]></title><description><![CDATA[
<p>I dont think youd get less rich-people-friendly decisions from ccongress. It may well be the opposite. Certainly it removes some of the separation of powers.</p>
]]></description><pubDate>Mon, 10 Nov 2025 20:51:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=45880767</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=45880767</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45880767</guid></item><item><title><![CDATA[New comment by twelvechairs in "How ancient people saw themselves"]]></title><description><![CDATA[
<p>One view is that the western idea of "good taste" was informed by people looking at greek and roman statues and buildings and incorrectly assuming they were always intended to be plain.</p>
]]></description><pubDate>Thu, 30 Oct 2025 06:59:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=45757132</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=45757132</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45757132</guid></item><item><title><![CDATA[New comment by twelvechairs in "JupyterGIS breaks through to the next level"]]></title><description><![CDATA[
<p>I can see it for programmers. Here you can use industry standard python libraries (shapely, geopandas etc.). Nobody really wants to learn PyQGIS (the python interface for qgis). So while qgis is much more full featured for "desktop" gis (designed to compete with esri arcgis) i can see the use case here for people who want to build their own extensions and port code from this to other python projects more easily.</p>
]]></description><pubDate>Fri, 24 Oct 2025 10:20:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=45693023</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=45693023</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45693023</guid></item><item><title><![CDATA[New comment by twelvechairs in "Why are so many pedestrians killed by cars in the US?"]]></title><description><![CDATA[
<p>A huge part of poorly designed roads is wider lanes (and parking spaces) that allow/encourage huge cars. Its been proven that narrower lanes correlate strongly with lower crash and fatality rates (e.g. [0] below) yet lane widths are under pressure to increase with larger vehicles, and every time this happens the vehicles get larger again.<p>[0] <a href="https://publichealth.jhu.edu/2023/narrower-lanes-safer-streets" rel="nofollow">https://publichealth.jhu.edu/2023/narrower-lanes-safer-stree...</a></p>
]]></description><pubDate>Thu, 09 Oct 2025 12:40:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=45526819</link><dc:creator>twelvechairs</dc:creator><comments>https://news.ycombinator.com/item?id=45526819</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45526819</guid></item></channel></rss>