<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: remontoire</title><link>https://news.ycombinator.com/user?id=remontoire</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 26 Sep 2026 03:08:17 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=remontoire" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by remontoire in "A decoder-only foundation model for time-series forecasting"]]></title><description><![CDATA[
<p>Probably drawing an analogy to how causal pretrained models go through stages of understanding language, words -> grammar -> meaning.  Gwen mentions this experience when training character level RNNs. <a href="https://gwern.net/scaling-hypothesis#why-does-pretraining-work" rel="nofollow">https://gwern.net/scaling-hypothesis#why-does-pretraining-wo...</a></p>
]]></description><pubDate>Sat, 03 Feb 2024 03:50:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=39237388</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=39237388</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39237388</guid></item><item><title><![CDATA[New comment by remontoire in "Is parallel programming hard, and, if so, what can you do about it?"]]></title><description><![CDATA[
<p>Watching geohot code a general matrix multiply algorithm from 0.9 GFLOPS and optimising it to 100 glops by only tinkering with cache locality, it makes me wonder how much effort should be put into single threaded performance before ever thinking about multi threading</p>
]]></description><pubDate>Wed, 14 Jun 2023 11:49:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=36324431</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=36324431</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36324431</guid></item><item><title><![CDATA[New comment by remontoire in "What are transformer models and how do they work?"]]></title><description><![CDATA[
<p>I think it's because you want to be able to predict the next token using only 1 token or the whole context window (and any size inbetween). So, you end up getting n different losses for each text snippet (where n is the size of the context window).<p>If i'm wrong, can someone correct here, would be useful to know.</p>
]]></description><pubDate>Sat, 15 Apr 2023 13:23:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=35580415</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=35580415</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35580415</guid></item><item><title><![CDATA[New comment by remontoire in "Car wars: Analyst predicts GM, Ford will surpass Tesla EV sales by 2025"]]></title><description><![CDATA[
<p>So the reason he thinks this is because GM and ford have announced more "models".<p>At no point has the limiting factor been the number of models.  The limiting factor is and will be battery cell supply.<p>This article makes no mention of legacy OEMs making any attempt at solving their supply constraints.</p>
]]></description><pubDate>Fri, 01 Jul 2022 00:18:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=31940524</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=31940524</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31940524</guid></item><item><title><![CDATA[New comment by remontoire in "Differences with other Lisps"]]></title><description><![CDATA[
<p>It looks like you're right for the most part.  Literals are supported if you use <a href="https://github.com/vseloved/rutils" rel="nofollow">https://github.com/vseloved/rutils</a>.  If your cl-edn actually works then a combo of rutils and cl-edn could bring most of the value I found in clojure to common lisp.</p>
]]></description><pubDate>Wed, 03 Nov 2021 08:29:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=29092253</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=29092253</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29092253</guid></item><item><title><![CDATA[New comment by remontoire in "Differences with other Lisps"]]></title><description><![CDATA[
<p>I've used fset and cl21. The problem is that once you start using those you no longer are able to use libraries. Data structures have to be built into core.<p>The common lisp community has rejected reader macros for interop reasons the last time I checked (in the case of cl21)<p>Even the docs for fset doesn't show the use of data literals. it does things like (set) and (isetq s2 (set 'c 1 "foo" 'a 'c))<p>This pretty much proves my point. it's not fun typing (set 'c 1 "foo" 'a 'c) instead of #{'c 1 "foo" 'a 'c}. It's also not possible to put those on the wire (easily) for communication between common lisp processes.  Breaking the whole point of homoiconicity.</p>
]]></description><pubDate>Wed, 03 Nov 2021 05:42:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=29091446</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=29091446</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29091446</guid></item><item><title><![CDATA[New comment by remontoire in "Differences with other Lisps"]]></title><description><![CDATA[
<p>> There is more to collections than lists. You can have instances of empty collections, some of which have literal support ([], {}, and ()). Thus there can be no sentinel empty collection value.<p>Probably my favorite feature over common lisp.  Combined with comma (,) being treated as whitespace (ie, use comma if you want to but you don't have to), makes typing out data structures in clojure a much more enjoyable process than other languages.<p>This ease of typing out data structures also extends to edn (clojure's version of json)</p>
]]></description><pubDate>Wed, 03 Nov 2021 02:48:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=29090569</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=29090569</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29090569</guid></item><item><title><![CDATA[New comment by remontoire in "A solution to Newcomb's paradox"]]></title><description><![CDATA[
<p>This is definitely not an actual solution. It's a first order solution to a non-first order problem.</p>
]]></description><pubDate>Mon, 20 Sep 2021 03:14:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=28590060</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=28590060</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28590060</guid></item><item><title><![CDATA[New comment by remontoire in "Ivermectin for the Treatment of Covid-19: A Systematic Review and Meta-analysis"]]></title><description><![CDATA[
<p>Do you remember what this used to say? <a href="https://www.who.int/emergencies/diseases/novel-coronavirus-2019/advice-for-public/when-and-how-to-use-masks" rel="nofollow">https://www.who.int/emergencies/diseases/novel-coronavirus-2...</a></p>
]]></description><pubDate>Thu, 02 Sep 2021 04:50:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=28388760</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=28388760</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28388760</guid></item><item><title><![CDATA[New comment by remontoire in "I'm reading the FT and WSJ from 100 years ago each week leading to 1929"]]></title><description><![CDATA[
<p>You're not disagreeing with them then. You are disagreeing with the point of the quote.</p>
]]></description><pubDate>Mon, 09 Aug 2021 02:54:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=28112306</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=28112306</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28112306</guid></item><item><title><![CDATA[New comment by remontoire in "I'm reading the FT and WSJ from 100 years ago each week leading to 1929"]]></title><description><![CDATA[
<p>His whole comment is a quote from the movie</p>
]]></description><pubDate>Sun, 08 Aug 2021 18:19:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=28108807</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=28108807</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28108807</guid></item><item><title><![CDATA[New comment by remontoire in "Why printers add secret tracking dots (2020)"]]></title><description><![CDATA[
<p>I suspect that the company would get a visit from the secret service</p>
]]></description><pubDate>Sun, 01 Aug 2021 08:17:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=28024704</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=28024704</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28024704</guid></item><item><title><![CDATA[New comment by remontoire in "A contentEditable, pasted garbage and caret placement walk into a pub"]]></title><description><![CDATA[
<p>This argument doesn't hold anymore now that there are threading macros.<p>(-> ((have you written) lisp before) ?)</p>
]]></description><pubDate>Sat, 24 Jul 2021 03:27:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=27938161</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=27938161</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27938161</guid></item><item><title><![CDATA[New comment by remontoire in "A contentEditable, pasted garbage and caret placement walk into a pub"]]></title><description><![CDATA[
<p>Does:
reset!(caret-location nil)<p>Make more sense to you?<p>Maybe you would like OO style?<p>(-> caret-location (reset! nil))</p>
]]></description><pubDate>Sat, 24 Jul 2021 03:23:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=27938140</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=27938140</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27938140</guid></item><item><title><![CDATA[New comment by remontoire in "Thirty Tesla crashes linked to assisted driving system under investigation in US"]]></title><description><![CDATA[
<p>Roll-out is standard my dude.  So is testing at drag strips.  Next you're going to point out that a tesla accelerating on the beach gets to 60mph in 11 seconds and therefore Elon is lying.<p><a href="https://www.caranddriver.com/features/a30085446/acceleration-testing-procedure-change-rollout/" rel="nofollow">https://www.caranddriver.com/features/a30085446/acceleration...</a><p><a href="https://www.motortrend.com/news/motor-trend-testing/" rel="nofollow">https://www.motortrend.com/news/motor-trend-testing/</a></p>
]]></description><pubDate>Fri, 18 Jun 2021 10:30:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=27549038</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=27549038</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27549038</guid></item><item><title><![CDATA[New comment by remontoire in "Thirty Tesla crashes linked to assisted driving system under investigation in US"]]></title><description><![CDATA[
<p><a href="https://www.motortrend.com/cars/tesla/model-s/2021/2022-tesla-model-s-plaid-first-test-review/" rel="nofollow">https://www.motortrend.com/cars/tesla/model-s/2021/2022-tesl...</a></p>
]]></description><pubDate>Fri, 18 Jun 2021 09:12:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=27548652</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=27548652</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27548652</guid></item><item><title><![CDATA[New comment by remontoire in "SpaceX delivers 3rd batch of Starlink satellites in two weeks"]]></title><description><![CDATA[
<p>What an unbelievably privileged thing to say.</p>
]]></description><pubDate>Mon, 15 Mar 2021 06:29:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=26463107</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=26463107</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26463107</guid></item><item><title><![CDATA[New comment by remontoire in "Cancer death rates rising near Fermi nuclear plant"]]></title><description><![CDATA[
<p><a href="https://en.wikipedia.org/wiki/Radiation_and_Public_Health_Project" rel="nofollow">https://en.wikipedia.org/wiki/Radiation_and_Public_Health_Pr...</a></p>
]]></description><pubDate>Sat, 13 Mar 2021 08:31:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=26445026</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=26445026</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26445026</guid></item><item><title><![CDATA[New comment by remontoire in "I Am Bezos"]]></title><description><![CDATA[
<p>let?</p>
]]></description><pubDate>Mon, 22 Feb 2021 09:58:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=26222654</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=26222654</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26222654</guid></item><item><title><![CDATA[New comment by remontoire in "Tesla buys $1.5B in Bitcoin, may accept it as payment in the future"]]></title><description><![CDATA[
<p>Pretty disappointing to see the reaction this has received in this thread.</p>
]]></description><pubDate>Mon, 08 Feb 2021 14:12:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=26064660</link><dc:creator>remontoire</dc:creator><comments>https://news.ycombinator.com/item?id=26064660</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26064660</guid></item></channel></rss>