<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: hendiatris</title><link>https://news.ycombinator.com/user?id=hendiatris</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 29 Jul 2026 06:08:23 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=hendiatris" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by hendiatris in "Kimi Linear: An Expressive, Efficient Attention Architecture (2025)"]]></title><description><![CDATA[
<p>So basically a Nyquist rate type of concept.</p>
]]></description><pubDate>Tue, 28 Jul 2026 15:25:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=49085350</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=49085350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49085350</guid></item><item><title><![CDATA[New comment by hendiatris in "Vibecoding #2"]]></title><description><![CDATA[
<p>I run<p>sudo shutdown +15 (or other amount of minutes)<p>when I need a compute instance and don’t want to forget to turn it off. It’s a simple trick that will save you in some cases.</p>
]]></description><pubDate>Wed, 21 Jan 2026 14:39:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=46706311</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=46706311</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46706311</guid></item><item><title><![CDATA[New comment by hendiatris in "Jony Ive's OpenAI Device Barred From Using 'io' Name"]]></title><description><![CDATA[
<p>And Brasil, Portugal and other portuguese-speaking places</p>
]]></description><pubDate>Fri, 05 Dec 2025 19:04:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=46165756</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=46165756</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46165756</guid></item><item><title><![CDATA[New comment by hendiatris in "A cryptography expert on how Web3 started, and how it’s going"]]></title><description><![CDATA[
<p>They probably threw a fat CIDR block in their IP blacklist to fight off a spam campaign, and your IP was caught in the dragnet. This is how the big companies do it. They’ll evaluate for risk of false positives and as long as that stays below a threshold, they proceed.</p>
]]></description><pubDate>Wed, 10 Sep 2025 05:30:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=45193686</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=45193686</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45193686</guid></item><item><title><![CDATA[New comment by hendiatris in "DuckLake is an integrated data lake and catalog format"]]></title><description><![CDATA[
<p>In the lower level arrow/parquet libraries you can control the row groups, and even the data pages (although it’s a lot more work). I have used this heavily with the arrow-rs crate to drastically improve (like 10x) how quickly data could be queried from files. Some row groups will have just a few rows, others will have thousands, but being able to bypass searching in many row groups makes the skew irrelevant.<p>Just beware that one issue you can have is the limit of row groups per file (2^15).</p>
]]></description><pubDate>Tue, 27 May 2025 19:59:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=44110196</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=44110196</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44110196</guid></item><item><title><![CDATA[New comment by hendiatris in "Apache iceberg the Hadoop of the modern-data-stack?"]]></title><description><![CDATA[
<p>You may be able to get close with sufficiently small row groups, but you will have to do some tests. You can do this in a few hours of work, by taking some sensor data, sorting it by the identifier and then writing it to parquet with one row group per sensor. You can do this with the ParquetWriter class in PyArrow, or something else that allows you fine grained control of how the file is written. I just checked and saw that you can have around 7 million row groups per file, so you should be fine.<p>Then spin up duckdb and do some performance tests. I’m not sure this will work, there is some overheard with reading parquet, which is why it is discouraged to have small files and row groups.</p>
]]></description><pubDate>Thu, 06 Mar 2025 17:17:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=43282635</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=43282635</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43282635</guid></item><item><title><![CDATA[New comment by hendiatris in "Apache iceberg the Hadoop of the modern-data-stack?"]]></title><description><![CDATA[
<p>I will write something up when the dust settles, I’m still testing things out. It’s a project where the data is fairly standardized but there is about a petabyte to deal with, so I think it makes sense to make investments in efficiency at the lower level rather than through tons of resources at it. That has meant a custom parser for the input data written in Rust, lots of analysis of the statistics of the data, etc. It has been a different approach to data engineering and one that I hope we see more of.<p>Regarding reading materials, I found this DuckDB post to be especially helpful in realizing how parquet could be better leveraged for efficiency: <a href="https://duckdb.org/2024/03/26/42-parquet-a-zip-bomb-for-the-big-data-age.html" rel="nofollow">https://duckdb.org/2024/03/26/42-parquet-a-zip-bomb-for-the-...</a></p>
]]></description><pubDate>Thu, 06 Mar 2025 16:33:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=43282083</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=43282083</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43282083</guid></item><item><title><![CDATA[New comment by hendiatris in "Apache iceberg the Hadoop of the modern-data-stack?"]]></title><description><![CDATA[
<p>This is a huge challenge with Iceberg. I have found that there is substantial bang for your buck in tuning how parquet files are written, particularly in terms of row group size and column-level bloom filters. In addition to that, I make heavy use of the encoding options (dictionary/RLE) while denormalizing data into as few files as possible. This has allowed me to rely on DuckDB for querying terabytes of data at low cost and acceptable performance.<p>What we are lacking now is tooling that gives you insight into how you should configure Iceberg. Does something like this exist? I have been looking for something that would show me the query plan that is developed from Iceberg metadata, but didn’t find anything. It would go a long way to showing where the bottleneck is for queries.</p>
]]></description><pubDate>Thu, 06 Mar 2025 10:12:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=43278417</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=43278417</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43278417</guid></item><item><title><![CDATA[New comment by hendiatris in "Luigi Mangione's account has been renamed on Stack Overflow"]]></title><description><![CDATA[
<p>Look at the website for that polling company. It is bizarre. None of the people on the people page have the company on their LinkedIn pages. Seems to be astroturf.<p>Edit: look at the photos of the people… AI generated perhaps?</p>
]]></description><pubDate>Fri, 10 Jan 2025 11:34:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=42654760</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=42654760</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42654760</guid></item><item><title><![CDATA[New comment by hendiatris in "Pgroll – Zero-downtime, reversible, schema changes for PostgreSQL (new website)"]]></title><description><![CDATA[
<p>Sqitch is an incredibly under appreciated tool. It doesn’t have a business pushing it like flyway and liquibase, so it isn’t as widely known, but I vastly prefer it to comparable migration tools.</p>
]]></description><pubDate>Wed, 11 Dec 2024 20:13:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=42392350</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=42392350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42392350</guid></item><item><title><![CDATA[New comment by hendiatris in "Show HN: Vekos – a Rust OS with Built-In Cryptographic Verification"]]></title><description><![CDATA[
<p>How quickly does the append-only chain grow? What are the storage needs for it?</p>
]]></description><pubDate>Wed, 04 Dec 2024 18:13:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=42320230</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=42320230</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42320230</guid></item><item><title><![CDATA[New comment by hendiatris in "Roman Emperors' Outrageously Lavish Dinner Parties"]]></title><description><![CDATA[
<p>There are some inaccuracies in this article. For example, the villa on Capri was built by Tiberius, not Augustus. <a href="https://en.wikipedia.org/wiki/Villa_Jovis" rel="nofollow">https://en.wikipedia.org/wiki/Villa_Jovis</a></p>
]]></description><pubDate>Sun, 26 May 2024 09:13:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=40480727</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=40480727</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40480727</guid></item><item><title><![CDATA[New comment by hendiatris in "Loading a trillion rows of weather data into TimescaleDB"]]></title><description><![CDATA[
<p>If you’re going to work with weather data use a columnar database, like BigQuery. If you set things up right your performance will generally be a few seconds for aggregation queries. I setup a data platform like this at my previous company and we were able to vastly outperform our competitors and at a much lower cost.<p>The great thing about this data is it is generally append only, unless errors are found in earlier data sets. But it’s something that usually only happens once a year if at all.</p>
]]></description><pubDate>Tue, 16 Apr 2024 16:16:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=40053884</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=40053884</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40053884</guid></item><item><title><![CDATA[New comment by hendiatris in "Oscar Niemeyer’s French communist party headquarters"]]></title><description><![CDATA[
<p>Prepare to pay around $20k per (<a href="https://www.pamono.es/mod-sillon-alta-de-oscar-niemeyer-para-mobilier-international-juego-de-2" rel="nofollow">https://www.pamono.es/mod-sillon-alta-de-oscar-niemeyer-para...</a>)</p>
]]></description><pubDate>Wed, 14 Sep 2022 07:05:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=32834126</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=32834126</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32834126</guid></item><item><title><![CDATA[New comment by hendiatris in "Okta’s Investigation of the January 2022 Compromise"]]></title><description><![CDATA[
<p>Here’s video: <a href="https://youtu.be/fAADWfJO2qM" rel="nofollow">https://youtu.be/fAADWfJO2qM</a></p>
]]></description><pubDate>Wed, 23 Mar 2022 07:33:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=30775971</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=30775971</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30775971</guid></item><item><title><![CDATA[New comment by hendiatris in "Please, delete all new places since the start of war 23th of February"]]></title><description><![CDATA[
<p>Done! I hope they can act fast.</p>
]]></description><pubDate>Tue, 01 Mar 2022 19:19:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=30518723</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=30518723</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30518723</guid></item><item><title><![CDATA[New comment by hendiatris in "Our self imposed scarcity of nice places"]]></title><description><![CDATA[
<p>I read this and think “ah, well there are many more non-rich people so the density requirements make this sort of thing complicated” and then I look out the window over the European city I live in where it has been achieved. Then I think about the town an hour away with a vibrant community and pleasant human-scale environment. What makes it all possible? Good transit. Clean buses. The US simply doesn’t have that, and probably not even the political will to make it happen. What a shame.</p>
]]></description><pubDate>Thu, 04 Nov 2021 08:49:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=29104770</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=29104770</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29104770</guid></item><item><title><![CDATA[New comment by hendiatris in "How long does a bottle of wine last after it is opened?"]]></title><description><![CDATA[
<p>The thing that matters is oxygen exposure more than anything. You can’t (trivially) reverse the effects of oxygen. This is why Coravin exists: replace the air (with oxygen) with an inert gas. You can do the same for cheap by putting the wine in a container (preferably gas) that reduces its exposure to oxygen, ideally entirely. There are companies selling other tools that do this, like an inflatable device that goes into a bottle.</p>
]]></description><pubDate>Sun, 24 Jan 2021 00:59:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=25887715</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=25887715</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25887715</guid></item><item><title><![CDATA[New comment by hendiatris in "Google Cloud SQL now supports PostgreSQL 13"]]></title><description><![CDATA[
<p>Unfortunately it’s not a relational database, so no constraints or any of the other features.</p>
]]></description><pubDate>Tue, 17 Nov 2020 00:14:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=25118851</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=25118851</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25118851</guid></item><item><title><![CDATA[New comment by hendiatris in "The Billionaire Behind Efforts to Kill the U.S. Postal Service [pdf]"]]></title><description><![CDATA[
<p>Please provide more detail. I find the USPS to be one of the best things about this country. Every morning I get an email with photos of the mail I will receive, and a listing of the packages that are coming my way. I can’t remember the last time they’ve ever lost anything of mine. I’m sure not everyone’s experience is like mine - I’m curious how they can be so bad that they create a sense of loathing.</p>
]]></description><pubDate>Tue, 21 Jul 2020 23:23:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=23911999</link><dc:creator>hendiatris</dc:creator><comments>https://news.ycombinator.com/item?id=23911999</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23911999</guid></item></channel></rss>