<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: esrh</title><link>https://news.ycombinator.com/user?id=esrh</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 28 Apr 2026 19:34:59 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=esrh" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by esrh in "Show HN: A Lisp Interpreter for Shell Scripting"]]></title><description><![CDATA[
<p>Yes, i agree that unix commands should be first class. I did this for the super common stuff like ls and cp. As for substitution, I did exactly $ for substitution. You'd do something like ($ rsync -avP $src $dst), but I don't think I ever got around to implementing $() to evaluate forms. If you really need to do that then you have to quasiquote the whole expression and unquote the form you need to evaluate. This has been relatively ok for me though. I never implemented anything like pipes or redirection, I instead just send everything like that to bash.<p>This is not really relevant to your question, but I regret choosing janet for this, it's too opinionated and hacking on C is not as fun as lisp. I started writing my own version of schemesh in racket, but I never got far enough.</p>
]]></description><pubDate>Sun, 12 Oct 2025 17:24:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=45559980</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=45559980</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45559980</guid></item><item><title><![CDATA[New comment by esrh in "Show HN: A Lisp Interpreter for Shell Scripting"]]></title><description><![CDATA[
<p>awesome! I have wanted something like this for a long time. Currently I use a janet fork <<a href="https://github.com/eshrh/matsurika" rel="nofollow">https://github.com/eshrh/matsurika</a>> with some trivial additions, the most important of which is a `$` macro that does what the `sh` does here. I have two questions:<p>- I see that `sh` does not take in strings but instead lisp forms. How do you distinguish between variables that need to be substituted and commands? In my fork, the way to do variable substitution involves quasiquoting/unquoting.
- Almost all of the features that make your language good for shell scripting are essentially syntactic features that can easily be implemented as a macro library for say, scheme. Why'd you choose to write in C++? Surely performance is not an important factor here. (I'm interested because I am currently working on a scheme-based shell scripting language).</p>
]]></description><pubDate>Sun, 12 Oct 2025 07:21:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=45556037</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=45556037</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45556037</guid></item><item><title><![CDATA[New comment by esrh in "High-resolution efficient image generation from WiFi Mapping"]]></title><description><![CDATA[
<p>A lot of wifi sensing results that have high-dimensional outputs are usually using wideband links... your average wifi connection uses 20MHz of bandwidth and is transmitting on 48 spaced out frequencies. In the paper, we use 160MHz with effectively 1992 input data points. This still isn't enough to predict a 3x512x512 image well enough, which motivated predicting 4x64x64 latent embeddings instead.<p>The more space you take up in the frequency domain, the higher your resolution in the time domain is. Wifi sensing results that detect heart rate or breathing, for example, use even larger bandwidth, to the point where it'd be more accurate to call them radars than wifi access points.</p>
]]></description><pubDate>Wed, 01 Oct 2025 11:19:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=45436444</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=45436444</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45436444</guid></item><item><title><![CDATA[New comment by esrh in "High-resolution efficient image generation from WiFi Mapping"]]></title><description><![CDATA[
<p>Think of it as an img2img stable diffusion process, except instead of starting with an image you want to transform, you start with CSI.<p>The encoder itself is trained on latent embeddings of images in the same environment with the same subject, so it learns visual details (that are preserved through the original autoencoder; this is why the model can't overfit on, say, text or faces).</p>
]]></description><pubDate>Wed, 01 Oct 2025 11:10:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=45436392</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=45436392</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45436392</guid></item><item><title><![CDATA[New comment by esrh in "High-resolution efficient image generation from WiFi Mapping"]]></title><description><![CDATA[
<p>I'd suggest reading <a href="https://dl.acm.org/doi/abs/10.1145/3310194" rel="nofollow">https://dl.acm.org/doi/abs/10.1145/3310194</a> (2019) for a survey on early methods and <a href="https://arxiv.org/abs/2503.08008" rel="nofollow">https://arxiv.org/abs/2503.08008</a>.<p>As for low level:<p>The most common early hardware was afaik esp32s & <a href="https://stevenmhernandez.github.io/ESP32-CSI-Tool/" rel="nofollow">https://stevenmhernandez.github.io/ESP32-CSI-Tool/</a>, and also old intel NICs & <a href="https://dhalperi.github.io/linux-80211n-csitool/" rel="nofollow">https://dhalperi.github.io/linux-80211n-csitool/</a>.<p>Now many people use <a href="https://ps.zpj.io/" rel="nofollow">https://ps.zpj.io/</a> which supports some hardware including SDRs, but I must discourage using it, especially for research, as it's not free software and has a restrictive license. I used <a href="https://feitcsi.kuskosoft.com/" rel="nofollow">https://feitcsi.kuskosoft.com/</a> which uses a slightly modified iwlwifi driver, since iwlwifi needs to compute CSI anyway. There are free software alternatives for SDR CSI extraction as well; it's not hard to build an OFDM chain with GNUradio and extract CSI, although this might require a slightly more in-depth understanding of how wifi works.</p>
]]></description><pubDate>Wed, 01 Oct 2025 11:04:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=45436360</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=45436360</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45436360</guid></item><item><title><![CDATA[New comment by esrh in "High-resolution efficient image generation from WiFi Mapping"]]></title><description><![CDATA[
<p>This is my paper (first author).<p>I think the results here are much less important and surprising than what some people seem to be thinking. To summarize the core of the paper, we took stable diffusion (which is a 3-part system of an encoder, u-net, decoder), and replaced the encoder to use WiFi data instead of images. This gives you two advantages: you get text-based guidance for free, and the encoder model can be smaller. The smaller model combined with the semantic compression from the autoencoder gives you better (SOTA resolution) results, much faster.<p>I noticed a lot of discussion about how the model can possibly be so accurate. It wouldn't be wrong to consider the model overfit, in the sense that the visual details of the scene are moved from the training data to the model weights. These kinds of models are meant to be trained & deployed in a single environment. What's interesting about this work is that learning the environment well has become really fast because the output dimension is smaller than image space. In fact, it's so fast that you can basically do it in real time... you turn on a data collection node and can train a model from scratch online, in a new environment that gets decent results with at least a little bit of interesting generalization in ~10min. I'm presenting a demonstration of this at Mobicom 2025 next month in Hong Kong.<p>What people call "WiFi sensing" is now mostly CSI (channel state information) sensing. When you transmit a packet on many subcarriers (frequencies), the CSI represents how the data on each frequency changed during transmission. So, CSI is inherently quite sensitive to environmental changes.<p>I want to point out something that most everybody working in the CSI sensing/general ISAC space seems to know: generalization is hard and most definitely unsolved for any reasonably high-dimensional sensing problem (like image generation and to some extent pose estimation). I see a lot of fearmongering online about wifi sensing killing privacy for good, but in my opinion we're still quite far off.<p>I've made the project's code and some formatted data public since this paper is starting to pick up some attention: <a href="https://github.com/nishio-laboratory/latentcsi" rel="nofollow">https://github.com/nishio-laboratory/latentcsi</a></p>
]]></description><pubDate>Wed, 01 Oct 2025 10:26:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=45436152</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=45436152</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45436152</guid></item><item><title><![CDATA[New comment by esrh in "'World Models,' an old idea in AI, mount a comeback"]]></title><description><![CDATA[
<p>They also don't mention the famous paper by Ha & Schmidhuber (<a href="https://arxiv.org/abs/1803.10122" rel="nofollow">https://arxiv.org/abs/1803.10122</a>).<p>The worst part is that they namedrop many other tangentially related and/or outright fraudulent "ai experts" like Hinton, Bengio, and LeCun.</p>
]]></description><pubDate>Wed, 03 Sep 2025 09:14:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=45113737</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=45113737</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45113737</guid></item><item><title><![CDATA[New comment by esrh in "Never Missing the Train Again"]]></title><description><![CDATA[
<p>Yeah, i wish more programs worked like this.<p>I wrote something similar on a smaller scale for the keihin-kyuukou line in japan: <a href="https://rail.esrh.me" rel="nofollow">https://rail.esrh.me</a>. Now I live in tokyo and there's several transit options closeby so I would love to have some always on display like this in my room.<p>Unfortunately, while public transit in the US and Europe seem to be tracked by services with developer friendly APIs, this is not the case in Japan as far as i know -- not that much of a problem back then, i just needed to do some light web scraping.<p>I wrote all of the scraping/data and processing/frontend code in clojure and clojurescript, and wrote a small blog post about it here: <a href="https://esrh.me/posts/2023-03-23-clojure" rel="nofollow">https://esrh.me/posts/2023-03-23-clojure</a></p>
]]></description><pubDate>Fri, 25 Oct 2024 09:44:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=41943680</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=41943680</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41943680</guid></item><item><title><![CDATA[New comment by esrh in "Common Lisp Is Not a Single Language, It Is Lots"]]></title><description><![CDATA[
<p>One thing is that CL has a huge ecosystem and a wide variety of compilers for every purpose you might have. Quicklisp probably beats racket and scheme in this regard, but today clojure might have an edge.<p>When you use racket and clojure specifically, you're kind of walling yourself into one compiler and ecosystem (two, for clj/cljs). This is a significant disadvantage compared to scheme and CL.<p>CL the way most people write it is way too imperative and OO for me; it reads like untyped java with metaprogramming constructs. Clojure and scheme in my opinion guide you towards the more correct and principled approaches.<p>Out of all the lisps, regardless of which ones I like the most, I objectively write emacs lisp the most. This is has definitely influenced my opinions on CL syntax; like my weird love hate relationship with the loop macro: on one hand it's a cool, tacit construct that's impossible in a non-lisp, but on the other hand it hides a lot of complexity and is sometimes hard to get right.</p>
]]></description><pubDate>Fri, 24 May 2024 22:16:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=40470958</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=40470958</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40470958</guid></item><item><title><![CDATA[New comment by esrh in "Clojure's machine learning ecosystem"]]></title><description><![CDATA[
<p>> Smile 3.x Avoided due to licensing<p>> Smile 3.x is GPL-licensed, which poses some potential conflicts for some end users...The community consensus is converging around moving away from Smile due to the GPL-relicensing issue, focusing instead on Tribuo...<p>(tribuo is developed by oracle)<p>It's a really great thing that the java community has a high performance and well accepted (~5x stars than tribuo) ML package that's GPL. CF python where the top two libraries are developed by google and facebook. The GPL protects individual, independent developers.<p>I don't think it's right to recommend that new users move away from the package because of licensing issues; the fact that it's GPL now is a <i>good</i> thing for everyone except corporate users (probably a great part of readers). The people who might have GPL problems already know themselves when they'll have a problem.</p>
]]></description><pubDate>Mon, 08 Apr 2024 00:36:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=39965193</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=39965193</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39965193</guid></item><item><title><![CDATA[New comment by esrh in "Show HN: AboutIdeasNow – search /about, /ideas, /now pages of 7k+ personal sites"]]></title><description><![CDATA[
<p>It's also not visible on mobile</p>
]]></description><pubDate>Mon, 26 Feb 2024 20:51:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=39516639</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=39516639</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39516639</guid></item><item><title><![CDATA[New comment by esrh in "3D Map of Shinjuku Station in Three.js"]]></title><description><![CDATA[
<p>Very cool!<p>I also like these hand drawn 3d illustrations of stations: <a href="https://architizer.com/blog/inspiration/industry/x-ray-vision-tomoyuki-tanaka/" rel="nofollow">https://architizer.com/blog/inspiration/industry/x-ray-visio...</a></p>
]]></description><pubDate>Wed, 27 Dec 2023 21:26:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=38786949</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=38786949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38786949</guid></item><item><title><![CDATA[New comment by esrh in "Par: Paragraph reformatter, vaguely similar to fmt, but better"]]></title><description><![CDATA[
<p>I used to use par before I switched to far (<a href="https://cgdct.moe/blog/far/" rel="nofollow noreferrer">https://cgdct.moe/blog/far/</a>) which produces better looking paragraphs in my opinion by minimizing the variance between lines while using the fewest number of lines possible.<p>There is a native emacs version as well, at <a href="https://github.com/eshrh/far.el">https://github.com/eshrh/far.el</a> (i wrote it)</p>
]]></description><pubDate>Sun, 24 Dec 2023 00:24:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=38749719</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=38749719</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38749719</guid></item><item><title><![CDATA[Apple varieties developed by the University of Minnesota breeding program]]></title><description><![CDATA[
<p>Article URL: <a href="https://mnhardy.umn.edu/apples/varieties">https://mnhardy.umn.edu/apples/varieties</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38107228">https://news.ycombinator.com/item?id=38107228</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 02 Nov 2023 00:16:03 +0000</pubDate><link>https://mnhardy.umn.edu/apples/varieties</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=38107228</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38107228</guid></item><item><title><![CDATA[New comment by esrh in "Ask HN: Do you still use a hand held/desktop calculator?"]]></title><description><![CDATA[
<p>The cli tool qalc is usually bundled with libqalculate</p>
]]></description><pubDate>Thu, 03 Aug 2023 08:04:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=36982746</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=36982746</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36982746</guid></item><item><title><![CDATA[New comment by esrh in "Ask HN: Could you share your personal blog here?"]]></title><description><![CDATA[
<p><a href="https://esrh.me" rel="nofollow noreferrer">https://esrh.me</a><p>Not a whole lot, some mix of japanese, emacs and lisp. Static site made with hakyll.</p>
]]></description><pubDate>Thu, 06 Jul 2023 01:54:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=36609974</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=36609974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36609974</guid></item><item><title><![CDATA[New comment by esrh in "I wish GPT4 had never happened"]]></title><description><![CDATA[
<p>Thanks for the tip! Anyone wanna be my cofounder?</p>
]]></description><pubDate>Sat, 08 Apr 2023 14:09:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=35493288</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=35493288</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35493288</guid></item><item><title><![CDATA[New comment by esrh in "The TikTok ban is a betrayal of the open internet"]]></title><description><![CDATA[
<p>It's to be freer than china</p>
]]></description><pubDate>Tue, 28 Mar 2023 10:34:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=35338499</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=35338499</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35338499</guid></item><item><title><![CDATA[New comment by esrh in "The Butlerian Jihad"]]></title><description><![CDATA[
<p>Is it really that hard to imagine a rebel group of newly unemployed desperate people bombing an openai data center?</p>
]]></description><pubDate>Wed, 15 Mar 2023 03:43:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=35163565</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=35163565</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35163565</guid></item><item><title><![CDATA[New comment by esrh in "Burgr – Books in Your Terminal"]]></title><description><![CDATA[
<p>I use console emacs and nov.el (<a href="https://depp.brause.cc/nov.el/" rel="nofollow">https://depp.brause.cc/nov.el/</a>) for this. You can then use emacs features like keyboard navigation and dictionaries.</p>
]]></description><pubDate>Fri, 24 Feb 2023 04:39:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=34920847</link><dc:creator>esrh</dc:creator><comments>https://news.ycombinator.com/item?id=34920847</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34920847</guid></item></channel></rss>