<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: osteele</title><link>https://news.ycombinator.com/user?id=osteele</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 26 Apr 2026 05:39:24 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=osteele" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by osteele in "Show HN: Talk to any ArXiv paper just by changing the URL"]]></title><description><![CDATA[
<p>It works well with bookmarklets. This swizzles between arxiv.org <-> www.talk2arxiv.org. I've now added it to my Favorites bar, next to arxiv.org/abs <-> arxiv.org/pdf and twitter.org <-> nitter.net. Thanks for the service!<p>javascript:((u,a,b,c)=%3Ewindow.location.href=u.match(a)?u.replace(a,b):u.startsWith(b)?u.replace(b,c):u)(window.location.href,/https:\/\/arxiv\.org\/(abs|pdf)\//,'<a href="https://www.talk2arxiv.org/pdf/','https://arxiv.org/pdf/" rel="nofollow noreferrer">https://www.talk2arxiv.org/pdf/','https://arxiv.org/pdf/</a>')</p>
]]></description><pubDate>Thu, 21 Dec 2023 06:49:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=38717778</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=38717778</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38717778</guid></item><item><title><![CDATA[New comment by osteele in "Show HN: AI Playground by Vercel Labs"]]></title><description><![CDATA[
<p>To be clear, that’s a link to a library meant for use in projects like yours. I’m not promoting a competing project (and haven’t provided a link to one).</p>
]]></description><pubDate>Wed, 19 Apr 2023 11:21:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=35626828</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=35626828</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35626828</guid></item><item><title><![CDATA[New comment by osteele in "Show HN: AI Playground by Vercel Labs"]]></title><description><![CDATA[
<p>Very nice! If you want to add a feature, feel free to make use of <a href="https://github.com/osteele/prompt-matrix.js">https://github.com/osteele/prompt-matrix.js</a>, which I (well, ChatGPT and I) created for use in my own playground so that I could enter e.g. "Write a <Python|JavaScript> program to look for anagrams, in the style of <Norvig|Carmack>".</p>
]]></description><pubDate>Wed, 19 Apr 2023 03:50:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=35624053</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=35624053</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35624053</guid></item><item><title><![CDATA[New comment by osteele in "Ask HN: How are you using GPT to be productive?"]]></title><description><![CDATA[
<p>* Porting code (generally code that I've written) from one language or framework to another. For example, porting Python to JavaScript. [1]<p>* Getting started with a new platform. For example, describing the problem, and having it create a template in a front end framework, CSS framework, API generator.<p>* Creating instructional materials. Pasting in code and generating explanations, assessments, and grading rubrics. [2]<p>* Generating the first pass of API documentation, READMEs, test suites, and configuration files. Modifying configuration files. Finding configuration options based on NL descriptions.<p>* Quickly generating examples of API uses that are specific to my application. Finding out what libraries and APIs are available for a use case, based on an NL description.<p>* Learning what algorithms exist for a problem. Generating implementations of these in different languages, or that are specific to my code or data structures.<p>* Rarely-used system administrations commands. For example, how do I flush the DNS cache on macOS Safari and Chrome? (Questions such as this are actually better on Perplexity.ai than on ChatGPT.)<p>* Pasting in error messages or descriptions of problems, and asking for solutions.<p>* Tie-breaker questions about what to name a file, function, or set of functions.<p>In general, I find that it takes a lot of the drudgery out of programming. (Similar to Copilot, but for a different, generally more macro, set of areas.) For example, I asked it to solve a geometry problem and generate a test harness for both interactively and batch testing it. It's solution to the problem itself was a non-starter, but the test harness was great and would have been involved boring work in order to write.<p>I also use it to generate emails, project proposals, feedback, etc. I don't think it's ever come up with anything usable, but seeing what's wrong with its attempt is an easier way for me to get started than looking at a blank page or searching for examples of the writing form on the web are.<p>[1] <a href="https://notes.osteele.com/gpt-experiments/using-chatgpt-to-port-a-python-package-to-javascript" rel="nofollow">https://notes.osteele.com/gpt-experiments/using-chatgpt-to-p...</a>
[2] <a href="https://notes.osteele.com/gpt-experiments/chatgpt-code-explanations" rel="nofollow">https://notes.osteele.com/gpt-experiments/chatgpt-code-expla...</a>
[3] <a href="https://notes.osteele.com/gpt-experiments/discussing-an-arduino-sketch-with-chatgpt" rel="nofollow">https://notes.osteele.com/gpt-experiments/discussing-an-ardu...</a></p>
]]></description><pubDate>Sat, 25 Mar 2023 09:28:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=35300980</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=35300980</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35300980</guid></item><item><title><![CDATA[New comment by osteele in "GPT-4 performs significantly worse on coding problems not in its training data"]]></title><description><![CDATA[
<p>Same. It seems similar to Copilot in that regard, but better at text-to-code, porting between languages or frameworks, and generating test cases and readmes: <a href="https://notes.osteele.com/gpt-experiments/using-chatgpt-to-port-a-python-package-to-javascript" rel="nofollow">https://notes.osteele.com/gpt-experiments/using-chatgpt-to-p...</a></p>
]]></description><pubDate>Sat, 25 Mar 2023 04:00:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=35299203</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=35299203</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35299203</guid></item><item><title><![CDATA[New comment by osteele in "The ThinkPad TrackPoint tried to build a better mouse (2020)"]]></title><description><![CDATA[
<p>Ted Selker's description of the invention of the TrackPoint, as told to Bill Buxton, goes into a lot more detail about the path to product and the technical challenges overcome.
<a href="https://www.microsoft.com/buxtoncollection/detail.aspx?id=60" rel="nofollow">https://www.microsoft.com/buxtoncollection/detail.aspx?id=60</a></p>
]]></description><pubDate>Wed, 18 Jan 2023 04:33:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=34423469</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=34423469</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34423469</guid></item><item><title><![CDATA[New comment by osteele in "Interactive piano reference to major and minor scales"]]></title><description><![CDATA[
<p>This looks really nice. Here's something I wrote when I starting learning music theory. It ended up sort of cluttered; I like yours better. But please feel free to take any ideas from it that you think might be useful.<p><a href="https://osteele.github.io/fingerboard/" rel="nofollow">https://osteele.github.io/fingerboard/</a></p>
]]></description><pubDate>Sat, 15 Jan 2022 04:06:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=29943427</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=29943427</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29943427</guid></item><item><title><![CDATA[A Cheap Simple 3D Printing Hack for Improving Your Online Classtime Experiences]]></title><description><![CDATA[
<p>Article URL: <a href="https://michaelnaimark.medium.com/a-cheap-simple-hack-for-improving-your-online-classtime-experiences-802071cd34c1">https://michaelnaimark.medium.com/a-cheap-simple-hack-for-improving-your-online-classtime-experiences-802071cd34c1</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=25749371">https://news.ycombinator.com/item?id=25749371</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 12 Jan 2021 16:44:26 +0000</pubDate><link>https://michaelnaimark.medium.com/a-cheap-simple-hack-for-improving-your-online-classtime-experiences-802071cd34c1</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=25749371</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25749371</guid></item><item><title><![CDATA[New comment by osteele in "CMU’s ‘Penrose’ Turns Complex Math Notations into Illustrative Diagrams"]]></title><description><![CDATA[
<p>Figures 1, 7, 17, 18, 19, 22, 24, and 29 from the web page are not sets as circles. The paper contains additional counterexamples.</p>
]]></description><pubDate>Sat, 06 Jun 2020 00:33:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=23435640</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=23435640</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23435640</guid></item><item><title><![CDATA[End-to-End Encryption for Zoom Meetings [pdf]]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/zoom/zoom-e2e-whitepaper/blob/master/zoom_e2e.pdf">https://github.com/zoom/zoom-e2e-whitepaper/blob/master/zoom_e2e.pdf</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23280107">https://news.ycombinator.com/item?id=23280107</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 23 May 2020 05:15:03 +0000</pubDate><link>https://github.com/zoom/zoom-e2e-whitepaper/blob/master/zoom_e2e.pdf</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=23280107</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23280107</guid></item><item><title><![CDATA[JavaScript: The First 20 Years]]></title><description><![CDATA[
<p>Article URL: <a href="https://zenodo.org/record/3710954#.XrK-56jduUk">https://zenodo.org/record/3710954#.XrK-56jduUk</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23091476">https://news.ycombinator.com/item?id=23091476</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 06 May 2020 14:40:44 +0000</pubDate><link>https://zenodo.org/record/3710954#.XrK-56jduUk</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=23091476</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23091476</guid></item><item><title><![CDATA[Planet Money Buys Oil (2016)]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.npr.org/sections/money/2016/08/26/491342091/planet-money-buys-oil">https://www.npr.org/sections/money/2016/08/26/491342091/planet-money-buys-oil</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22928189">https://news.ycombinator.com/item?id=22928189</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 20 Apr 2020 20:33:40 +0000</pubDate><link>https://www.npr.org/sections/money/2016/08/26/491342091/planet-money-buys-oil</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22928189</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22928189</guid></item><item><title><![CDATA[New comment by osteele in "What doctors on the front lines wish they’d known a month ago"]]></title><description><![CDATA[
<p>Hospital capacity is one motivation for flattening the curve. The other is to move infections later in time, when there will be more effective treatments and therefore lower rates of fatality and permanent disability.</p>
]]></description><pubDate>Sat, 18 Apr 2020 16:20:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=22908730</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22908730</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22908730</guid></item><item><title><![CDATA[Ginkgo Bioworks commits $25M of free access for partner Covid-19 projects]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.ginkgobioworks.com/2020/03/17/ginkgo-commits-25m-of-free-access-to-our-platform-for-partner-covid-19-projects/">https://www.ginkgobioworks.com/2020/03/17/ginkgo-commits-25m-of-free-access-to-our-platform-for-partner-covid-19-projects/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22613643">https://news.ycombinator.com/item?id=22613643</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 18 Mar 2020 04:30:21 +0000</pubDate><link>https://www.ginkgobioworks.com/2020/03/17/ginkgo-commits-25m-of-free-access-to-our-platform-for-partner-covid-19-projects/</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22613643</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22613643</guid></item><item><title><![CDATA[New comment by osteele in "MessagePack: like JSON, but fast and small"]]></title><description><![CDATA[
<p>ArduinoJson <a href="https://arduinojson.org" rel="nofollow">https://arduinojson.org</a> supports MessagePack. I haven't looked at its static or runtime memory requirements.</p>
]]></description><pubDate>Tue, 10 Mar 2020 20:58:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=22539608</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22539608</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22539608</guid></item><item><title><![CDATA[WHO-China Covid-19 Joint Mission Report Highlights]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.reddit.com/r/China_Flu/comments/fbt49e/the_who_sent_25_international_experts_to_china/">https://www.reddit.com/r/China_Flu/comments/fbt49e/the_who_sent_25_international_experts_to_china/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22477368">https://news.ycombinator.com/item?id=22477368</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 03 Mar 2020 18:34:09 +0000</pubDate><link>https://www.reddit.com/r/China_Flu/comments/fbt49e/the_who_sent_25_international_experts_to_china/</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22477368</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22477368</guid></item><item><title><![CDATA[New comment by osteele in "Life and Death in a Wuhan Coronavirus ICU"]]></title><description><![CDATA[
<p>Interestingly the article under discussion here begins “WUHAN (CAIXIN GLOBAL)”, ends “This story was originally published by Caixin Global”, and links to the original publication <a href="https://www.caixinglobal.com/2020-02-06/reporters-notebook-we-interview-front-line-coronavirus-doctor-101512020.html" rel="nofollow">https://www.caixinglobal.com/2020-02-06/reporters-notebook-w...</a></p>
]]></description><pubDate>Sat, 08 Feb 2020 11:20:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=22275216</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22275216</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22275216</guid></item><item><title><![CDATA[New comment by osteele in "Webcam, Lights, and Audio for Remote Work, Podcasting, Videos, and Streaming"]]></title><description><![CDATA[
<p>iMovie, Adobe Premier, Final Cut Pro, and Screenflow (screen casting software) all have chromakey.<p>The Zoom app, and the Logitech C922, each have live background replacement ("virtual green screen").<p>For post-production without a physical green screen, you can use a green rectangle as your virtual background in Zoom or with the Logitech, import into iMovie etc., and chromakey there.</p>
]]></description><pubDate>Fri, 07 Feb 2020 13:46:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=22265851</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22265851</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22265851</guid></item><item><title><![CDATA[New comment by osteele in "How might the coronavirus change our world?"]]></title><description><![CDATA[
<p>"The drone project involves young tech enthusiasts from the Jinkui Community Youth Science and Technology Innovation Center. Every day — for two hours in the morning and two hours in the afternoon — youngsters wearing masks and gloves fly drones to patrol the community.<p>The drones carry loudspeakers which announce: “Please stay at home as much as possible. If you have to go out, don’t forget to wear a mask.”<p>The drones can also scan car plates and record which vehicles have entered the community.<p>The drones are also equipped with thermal scanners which can measure the temperatures of people idling in the community.<p>Those found with normal temperatures will be encouraged to return home. Officials will be alerted of people found with fever."<p><a href="https://www.shine.cn/news/metro/2002051335/" rel="nofollow">https://www.shine.cn/news/metro/2002051335/</a></p>
]]></description><pubDate>Thu, 06 Feb 2020 03:28:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=22253211</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22253211</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22253211</guid></item><item><title><![CDATA[New comment by osteele in "How might the coronavirus change our world?"]]></title><description><![CDATA[
<p>Yes, there was a famous incident a couple of weeks ago. [1]<p>I remember reading in the local paper that you have to register with the pharmacy in order to buy fever medicine but I can't find an online source now and I haven't been into a pharmacy to observe it myself.<p>[1]: <a href="https://www.businessinsider.com/wuhan-coronavirus-woman-avoided-airport-tests-travel-france-2020-1" rel="nofollow">https://www.businessinsider.com/wuhan-coronavirus-woman-avoi...</a></p>
]]></description><pubDate>Thu, 06 Feb 2020 03:16:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=22253160</link><dc:creator>osteele</dc:creator><comments>https://news.ycombinator.com/item?id=22253160</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22253160</guid></item></channel></rss>