<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: kritixilithos</title><link>https://news.ycombinator.com/user?id=kritixilithos</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 03 Aug 2026 04:14:02 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=kritixilithos" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Chick Culling]]></title><description><![CDATA[
<p>Article URL: <a href="https://en.wikipedia.org/wiki/Chick_culling">https://en.wikipedia.org/wiki/Chick_culling</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=25670664">https://news.ycombinator.com/item?id=25670664</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 07 Jan 2021 13:20:40 +0000</pubDate><link>https://en.wikipedia.org/wiki/Chick_culling</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=25670664</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25670664</guid></item><item><title><![CDATA[Symbolic Logic (1897)]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.gutenberg.org/files/28696/28696-h/28696-h.htm">https://www.gutenberg.org/files/28696/28696-h/28696-h.htm</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=23348511">https://news.ycombinator.com/item?id=23348511</a></p>
<p>Points: 131</p>
<p># Comments: 25</p>
]]></description><pubDate>Fri, 29 May 2020 10:58:19 +0000</pubDate><link>https://www.gutenberg.org/files/28696/28696-h/28696-h.htm</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=23348511</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23348511</guid></item><item><title><![CDATA[New comment by kritixilithos in "Problem solving with Unix commands"]]></title><description><![CDATA[
<p>Actually the following is even shorter<p><pre><code>  /A/{N;d;}
</code></pre>
So all together this gives the following<p><pre><code>  ls|sed '/A/{N;d;}'</code></pre></p>
]]></description><pubDate>Fri, 15 Feb 2019 07:25:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=19169117</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=19169117</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19169117</guid></item><item><title><![CDATA[New comment by kritixilithos in "Problem solving with Unix commands"]]></title><description><![CDATA[
<p>Nicely done using Unix utils. You can have a pure sed solution (save the `ls` invocation) that is much simpler, albeit obscure, that hinges on the fact that every number has a `data.csv` file.<p>Given a sorted list of these files (through `ls` or otherwise) the following sed code will print out the data files for which A did not succeed on them.<p><pre><code>  /data/!N
  /A/d
  P;D

</code></pre>
This works on the fact that there exists a data file for all successful and unsuccessful runs on data, so sed simply prints the files for which there does not exist an `A` counterpart.<p>If you want to only print out the numbers, you can add a substitution or two towards the end.<p><pre><code>  /data/!N
  /A/d
  s/^0*\|_.*//g;P;D
</code></pre>
Edit: fixed the sed program</p>
]]></description><pubDate>Thu, 14 Feb 2019 19:19:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=19164952</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=19164952</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19164952</guid></item><item><title><![CDATA[Palaeos – Life Through Deep Time]]></title><description><![CDATA[
<p>Article URL: <a href="http://palaeos.com/">http://palaeos.com/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=19155002">https://news.ycombinator.com/item?id=19155002</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 13 Feb 2019 17:57:56 +0000</pubDate><link>http://palaeos.com/</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=19155002</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19155002</guid></item><item><title><![CDATA[New comment by kritixilithos in "Maze-solving algorithm implemented in sed"]]></title><description><![CDATA[
<p>Reached 96 bytes (now where would that last byte be hmmmm). And as you can see, my sed skills aren't as good as yours either :)<p>Nice meeting a fellow golfer, this was fun :)</p>
]]></description><pubDate>Wed, 09 Jan 2019 17:58:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=18866962</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=18866962</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18866962</guid></item><item><title><![CDATA[New comment by kritixilithos in "Maze-solving algorithm implemented in sed"]]></title><description><![CDATA[
<p>Are you tails? Anyways, thanks for helping me tie with first place :)</p>
]]></description><pubDate>Wed, 09 Jan 2019 08:58:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=18863348</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=18863348</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18863348</guid></item><item><title><![CDATA[New comment by kritixilithos in "Maze-solving algorithm implemented in sed"]]></title><description><![CDATA[
<p>There's even an implementation of lisp in sed :) <a href="https://github.com/shinh/sedlisp/" rel="nofollow">https://github.com/shinh/sedlisp/</a></p>
]]></description><pubDate>Wed, 09 Jan 2019 06:40:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=18862794</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=18862794</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18862794</guid></item><item><title><![CDATA[New comment by kritixilithos in "Maze-solving algorithm implemented in sed"]]></title><description><![CDATA[
<p>That's probably because you used BSD sed. Running it on my BSD sed also gives an error, presumably because it thinks the `}` is a part of the label in `binput}`.<p>However it works fine in GNU sed, and now that you mention it, GNU sed's extensions were not used, like the `-z` flag to slurp all input in one "line" to avoid `:input;$!{N;binput}`.</p>
]]></description><pubDate>Tue, 08 Jan 2019 17:08:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=18857184</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=18857184</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18857184</guid></item><item><title><![CDATA[New comment by kritixilithos in "Kitty – a fast, featureful, GPU based terminal emulator"]]></title><description><![CDATA[
<p>As another user of iTerm2, I am currently using several keyboard mappings from key to key (like Tab being interpreted as Esc), do you know whether Kitty supports that? As far as I can see in the docs, only examples of key to action are shown.</p>
]]></description><pubDate>Thu, 06 Sep 2018 10:18:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=17925143</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=17925143</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17925143</guid></item><item><title><![CDATA[New comment by kritixilithos in "Show HN: I'm 12, learning JS, and wrote Wolfram's cellular automaton in Node"]]></title><description><![CDATA[
<p>Congratulations!<p>Are you familiar with code golf? If not, I recommend it. In Code Golf, the objective is to complete a programming task in the shortest program possible, measured in bytes. While doing so, you really learn about the nuances of your language and its obscure features.<p>When I was about your age, I joined the code golf community at Stack Exchange, and since then my JS skills and general programming skills have improved greatly. I hope that you would find it to be useful too.</p>
]]></description><pubDate>Thu, 30 Aug 2018 16:40:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=17878138</link><dc:creator>kritixilithos</dc:creator><comments>https://news.ycombinator.com/item?id=17878138</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17878138</guid></item></channel></rss>