<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: paveworld</title><link>https://news.ycombinator.com/user?id=paveworld</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 06 Jul 2026 20:58:56 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=paveworld" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by paveworld in "Lightning Memory-Mapped Database Manager (LMDB) 1.0"]]></title><description><![CDATA[
<p>HTTP ?? Com’on man</p>
]]></description><pubDate>Thu, 02 Jul 2026 20:30:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=48766962</link><dc:creator>paveworld</dc:creator><comments>https://news.ycombinator.com/item?id=48766962</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48766962</guid></item><item><title><![CDATA[New comment by paveworld in "Sublime text started adding a “.s” to new files"]]></title><description><![CDATA[
<p>I wonder if this also happens if a partition is formatted case-sensitive?</p>
]]></description><pubDate>Mon, 23 Sep 2024 00:37:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=41621341</link><dc:creator>paveworld</dc:creator><comments>https://news.ycombinator.com/item?id=41621341</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41621341</guid></item><item><title><![CDATA[New comment by paveworld in "A Simple Spaced Repetition Algo (In Ugly SQL)"]]></title><description><![CDATA[
<p>Why wouldn’t you use something like this instead?<p>WITH episode_ AS (...), -- stale episodes
s_ AS (
  SELECT
    e.feed_id,
    s.card_id,
    MAX(e.created_at) AS last_created_at,
    AVG(COALESCE(s.score::INT::REAL, 0.5)) AS _avg,
    COUNT(s.score) AS _count
  FROM score s
  INNER JOIN episode e ON s.episode_id = e.episode_id
  INNER JOIN feed f ON e.feed_id = f.feed_id
  WHERE f.usr_id IS NOT NULL
  GROUP BY e.feed_id, s.card_id
)
INSERT INTO episode (episode_id, feed_id, card_ids)
SELECT LEFT(MD5(RANDOM()::TEXT), 16), feed_id, ARRAY_AGG(card_id)
FROM (
  SELECT feed_id, card_id
  FROM (
    SELECT
      feed_id,
      card_id,
      per_episode,
      ROW_NUMBER() OVER (
        PARTITION BY feed_id
        ORDER BY
          COALESCE(s_.last_created_at, c.created_at, NOW())
          + f.every * RANDOM() * COALESCE(fd.chaos, 0.3)
          + f.every * COALESCE(s_._count, 7) ^ COALESCE(fd.deceleration, 0.7) * s_._avg ^ COALESCE(fd.feedback, 1.2)
          + f.every * LN(1 + c.bytes_b) * COALESCE(fd.ease, 1.0),
          RANDOM()
      ) AS n
    FROM episode_ e_
    INNER JOIN feed f USING (feed_id)
    INNER JOIN feed_deck fd USING (feed_id)
    INNER JOIN card c USING (deck_id)
    LEFT JOIN s_ ON s_.feed_id = e_.feed_id AND s_.card_id = c.card_id
    WHERE NOT c.card_id = ANY(fd.hidden_card_ids)
  ) a
  WHERE per_episode >= n
) b
GROUP BY feed_id;</p>
]]></description><pubDate>Sun, 22 Sep 2024 00:02:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=41613559</link><dc:creator>paveworld</dc:creator><comments>https://news.ycombinator.com/item?id=41613559</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41613559</guid></item><item><title><![CDATA[New comment by paveworld in "Everything that uses configuration files should report where they're located"]]></title><description><![CDATA[
<p>just try using the unix command lsof<p>if you know the PID aka Process ID for the application yr running try lsof -p PID_NUM_HERE<p>it will give you a list of every open file your application is using along with it's full path<p>finally, if that gave you too many lines try  lsof -p PID_NUM_HERE  | grep -E 'txt|properties|config'<p>I know you wanted the files listed it in a help file however this will work 100% of the time<p>Best,
Stephen</p>
]]></description><pubDate>Sun, 25 Jun 2023 09:50:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=36466485</link><dc:creator>paveworld</dc:creator><comments>https://news.ycombinator.com/item?id=36466485</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36466485</guid></item><item><title><![CDATA[New comment by paveworld in "An Intern’s Guide to Trading"]]></title><description><![CDATA[
<p>Not sure if this will help you but…<p><a href="https://web.archive.org/web/20210301042419/http://www.stockfighter.io/" rel="nofollow">https://web.archive.org/web/20210301042419/http://www.stockf...</a></p>
]]></description><pubDate>Wed, 07 Jul 2021 19:43:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=27765006</link><dc:creator>paveworld</dc:creator><comments>https://news.ycombinator.com/item?id=27765006</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27765006</guid></item></channel></rss>