<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: selendym</title><link>https://news.ycombinator.com/user?id=selendym</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 12 Apr 2026 08:02:10 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=selendym" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by selendym in "One-man campaign ravages EU 'Chat Control' bill"]]></title><description><![CDATA[
<p>> If anyone else knows of similar interventions, I would love to learn of them. It makes me think about how individuals can force multiply their impact, and whether there's methods for personal empowerment to be learned from these examples.<p>One that comes to mind is Keith Gill [1] of GameStop fame [2].<p>[1]: <a href="https://en.wikipedia.org/wiki/Keith_Gill" rel="nofollow">https://en.wikipedia.org/wiki/Keith_Gill</a><p>[2]: <a href="https://en.wikipedia.org/wiki/GameStop_short_squeeze" rel="nofollow">https://en.wikipedia.org/wiki/GameStop_short_squeeze</a></p>
]]></description><pubDate>Wed, 08 Oct 2025 17:24:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=45518488</link><dc:creator>selendym</dc:creator><comments>https://news.ycombinator.com/item?id=45518488</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45518488</guid></item><item><title><![CDATA[New comment by selendym in "Seven Engineers Suspended After $2.3M Bridge Includes 90-Degree Turn"]]></title><description><![CDATA[
<p>Client-side-only validation?</p>
]]></description><pubDate>Thu, 10 Jul 2025 16:55:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=44523025</link><dc:creator>selendym</dc:creator><comments>https://news.ycombinator.com/item?id=44523025</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44523025</guid></item><item><title><![CDATA[New comment by selendym in "Our crisis is not loneliness but human beings becoming invisible"]]></title><description><![CDATA[
<p>> Sometimes we would day dream.<p>There was an article about that a month or two ago: The Death of Daydreaming - <a href="https://news.ycombinator.com/item?id=43894305">https://news.ycombinator.com/item?id=43894305</a></p>
]]></description><pubDate>Fri, 20 Jun 2025 16:01:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=44329026</link><dc:creator>selendym</dc:creator><comments>https://news.ycombinator.com/item?id=44329026</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44329026</guid></item><item><title><![CDATA[New comment by selendym in "U.K. orders Apple to let it spy on users’ encrypted accounts"]]></title><description><![CDATA[
<p>The problem with this line of thinking is that the government is, of course, composed of... individual citizens.</p>
]]></description><pubDate>Fri, 07 Feb 2025 19:32:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=42976533</link><dc:creator>selendym</dc:creator><comments>https://news.ycombinator.com/item?id=42976533</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42976533</guid></item><item><title><![CDATA[New comment by selendym in "TKey – Security for the New World"]]></title><description><![CDATA[
<p>For what it's worth, this company was spawned by Mullvad: <a href="https://mullvad.net/en/blog/mullvad-creates-a-hardware-company" rel="nofollow">https://mullvad.net/en/blog/mullvad-creates-a-hardware-compa...</a></p>
]]></description><pubDate>Fri, 07 Feb 2025 03:48:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=42969144</link><dc:creator>selendym</dc:creator><comments>https://news.ycombinator.com/item?id=42969144</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42969144</guid></item><item><title><![CDATA[New comment by selendym in "NsJail: A light-weight process isolation tool for Linux"]]></title><description><![CDATA[
<p>> Firejail can't handle : in some paths (at all, no escaping provided) which made me dump it.<p>This doesn't match my experience. For example, the following works just fine in a profile file:<p><pre><code>  blacklist /sys/devices/pci0000:00/*
</code></pre>
Can you give an example of what you had problems with?</p>
]]></description><pubDate>Wed, 05 Feb 2025 17:22:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=42951903</link><dc:creator>selendym</dc:creator><comments>https://news.ycombinator.com/item?id=42951903</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42951903</guid></item><item><title><![CDATA[New comment by selendym in "An Unreasonable Amount of Time"]]></title><description><![CDATA[
<p>> it bugs me to an unreasonable extent that he finished one person short of 7777<p>Perhaps (likely?) he himself should be counted too, so 7777 in total.</p>
]]></description><pubDate>Wed, 01 Jan 2025 13:33:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=42565907</link><dc:creator>selendym</dc:creator><comments>https://news.ycombinator.com/item?id=42565907</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42565907</guid></item><item><title><![CDATA[New comment by selendym in "CLI tool to insert spacers when command output stops"]]></title><description><![CDATA[
<p>In bash, you can do something like this out-of-the-box by setting the `PS1` variable to your liking.
For example, I use the following in `/etc/bash.bashrc`:<p><pre><code>  PROMPT_COMMAND='_prev_status="$?"'
  PS1='\n$(printf "%0${COLUMNS}d\n" 0 | tr 0 -)\n[\D{%y%m%d-%H%M%S}] \u@\H (${_prev_status})\n${PWD}\n\$ '
</code></pre>
The first line saves the status of the previous command and the second line sets the prompt string.
The result is something like this:<p><pre><code>  ---------------------------------------- <these dashes span the terminal width>
  [date-time] user@host (status)
  /current/working/directory
  $ <next command></code></pre></p>
]]></description><pubDate>Mon, 23 Dec 2024 19:16:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=42496870</link><dc:creator>selendym</dc:creator><comments>https://news.ycombinator.com/item?id=42496870</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42496870</guid></item></channel></rss>