<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: GNOMES</title><link>https://news.ycombinator.com/user?id=GNOMES</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 17 Apr 2026 03:44:31 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=GNOMES" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by GNOMES in "Show HN: Playing LongTurn FreeCiv with Friends"]]></title><description><![CDATA[
<p>This sounds amazing. Hard to wrangle friends together to play a game, so giving a full day is great.<p>Ignoring Civ 2 vs Civ 5 differences, any experiancing hosting Unciv vs Freeciv?<p><a href="https://github.com/freeciv/freeciv" rel="nofollow">https://github.com/freeciv/freeciv</a><p><a href="https://github.com/yairm210/unciv" rel="nofollow">https://github.com/yairm210/unciv</a></p>
]]></description><pubDate>Wed, 18 Mar 2026 20:18:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=47430902</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=47430902</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47430902</guid></item><item><title><![CDATA[New comment by GNOMES in "Show HN: Wildex – Pokémon Go for real wildlife"]]></title><description><![CDATA[
<p>Thinking back to 2016 when Pogo launched there were news stories about trespassing, people getting hurt etc for virtual creatures...<p>I could easily see someone be foolish enough to go up to predators</p>
]]></description><pubDate>Mon, 16 Feb 2026 22:05:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47040963</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=47040963</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47040963</guid></item><item><title><![CDATA[New comment by GNOMES in "The Unix Pipe Card Game"]]></title><description><![CDATA[
<p>This gets shared a ton, but the old Bell Labs video from 4:56 to 10:52 is still the best way I have seen pipes explained:<p><a href="https://www.youtube.com/watch?v=tc4ROCJYbm0" rel="nofollow">https://www.youtube.com/watch?v=tc4ROCJYbm0</a></p>
]]></description><pubDate>Tue, 20 Jan 2026 18:48:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=46696101</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=46696101</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46696101</guid></item><item><title><![CDATA[New comment by GNOMES in "Counter-Strike's player economy is in a freefall"]]></title><description><![CDATA[
<p>This article is making me laugh.<p>Guy I used to play Diablo + Destiny with mentioned once that he had just sold a knife in CS for 4k, and was going to buy his first (used) car with it.<p>We thought he was joking.</p>
]]></description><pubDate>Fri, 24 Oct 2025 14:48:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=45695205</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=45695205</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45695205</guid></item><item><title><![CDATA[New comment by GNOMES in "Scripts I wrote that I use all the time"]]></title><description><![CDATA[
<p>I use my "dc" command to reverse "cd" frequently
<a href="https://gist.github.com/GNOMES/6bf65926648e260d8023aebb9ede9573" rel="nofollow">https://gist.github.com/GNOMES/6bf65926648e260d8023aebb9ede9...</a><p>Ex:<p><pre><code>    > echo $PWD
    /foo/bar/batz/abc/123

    > dc bar && echo $PWD
    /foo/bar
</code></pre>
Useful for times when I don't want to type a long train of dot slashes(ex. cd ../../..).<p>Also useful when using Zoxide, and I tab complete into a directory tree path where parent directories are not in Zoxide history.<p>Added tab complete for speed.</p>
]]></description><pubDate>Thu, 23 Oct 2025 17:54:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=45684759</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=45684759</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45684759</guid></item><item><title><![CDATA[New comment by GNOMES in "Zoxide: A Better CD Command"]]></title><description><![CDATA[
<p>I have been testing this as a daily driver since the last big mention on HN to simplify my .bashrc file.<p>I use it with `eval "$(zoxide init bash --cmd cd)"` so I can continue to use CD due to muscle memory.<p><pre><code>    - I like that if there are multiple /foo directories known by Zoxide, say /foo/ and /abc/foo/, that you can do `cd abc foo` to go the path containing both.

    - I am not a fan of having to do `cd foo**` for tab completion to folders outside CWD. I feel it slows me down as a tab complete fanatic.

    - Also don't enjoy if I `cd foo/bar/batz` directly, then try `cd bar`, Zoxide has no reference. You would need to CD into each directory individually to build the database. I have seen scripts kicking around online to put a complete directory structure into Zoxide database by CD'ing to each subdirectory for you.
</code></pre>
Not sure if I am officially sold, or I'll go back to aliases and simple tab completes forwards, and backwards (logic I use for tab complete backwards to exact directory name backwards from CWD instead of `cd ../../../etc` <a href="https://gist.github.com/GNOMES/6bf65926648e260d8023aebb9ede9573?permalink_comment_id=5372297#gistcomment-5372297" rel="nofollow">https://gist.github.com/GNOMES/6bf65926648e260d8023aebb9ede9...</a>)</p>
]]></description><pubDate>Tue, 23 Sep 2025 13:41:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=45346912</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=45346912</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45346912</guid></item><item><title><![CDATA[New comment by GNOMES in "Replacing tmux in my dev workflow"]]></title><description><![CDATA[
<p>Never realized you can do that. Can you share that tmux binding? Right now I use `bind -r Space next-layout` for resizing (spam repeatedly).</p>
]]></description><pubDate>Fri, 01 Aug 2025 15:55:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=44758646</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=44758646</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44758646</guid></item><item><title><![CDATA[New comment by GNOMES in "Replacing tmux in my dev workflow"]]></title><description><![CDATA[
<p>I have been tempted to drop tmux locally for native Ghostty panes/tabs, but I prefer the single height tmux status bar with window list only (set -g status-left '' + set -g status-right '') vs the thicker window decorations using macos-titlebar-style = tabs.<p>I did come up with Ghostty bindings to replicate my tmux settings if it helps anyone (my tmux leader is ctrl + space):<p><pre><code>    # clear default bindings + add paste back
    keybind=clear
    keybind=super+v=paste_from_clipboard

    # navigate panes
    keybind=ctrl+h=goto_split:left
    keybind=ctrl+j=goto_split:bottom
    keybind=ctrl+k=goto_split:top
    keybind=ctrl+l=goto_split:right
    keybind=ctrl+space>shift+apostrophe=new_split:down
    keybind=ctrl+space>shift+five=new_split:right
    keybind=ctrl+space>space=equalize_splits
    keybind=ctrl+space>z=toggle_split_zoom

    # navigate tabs
    keybind=ctrl+space>c=new_tab
    keybind=ctrl+space>one=goto_tab:1
    ...
    keybind=ctrl+space>zero=goto_tab:10</code></pre></p>
]]></description><pubDate>Fri, 01 Aug 2025 15:08:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=44757948</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=44757948</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44757948</guid></item><item><title><![CDATA[New comment by GNOMES in "TikTok Is Harming Children at an Industrial Scale"]]></title><description><![CDATA[
<p>The fact that Family Link app on Android doesn't have this feature drives me crazy.<p>Youtube kids exists, but far too many channels are not available without manual intervention.</p>
]]></description><pubDate>Thu, 17 Apr 2025 14:56:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=43717847</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=43717847</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43717847</guid></item><item><title><![CDATA[New comment by GNOMES in "Curl-impersonate: Special build of curl that can impersonate the major browsers"]]></title><description><![CDATA[
<p>I had to do something like this with Ansible's get_url module once.<p>Was having issues getting module to download an installer from a vendors site.<p>Played with Curl/WGET, but was running into the same, while it worked from a browser.<p>I ended up getting both Curl + get_url to work by passing the same headers my browser sent such as User-Agent, encoding, etc</p>
]]></description><pubDate>Fri, 04 Apr 2025 17:03:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=43585131</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=43585131</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43585131</guid></item><item><title><![CDATA[New comment by GNOMES in "An update on Mozilla's terms of use for Firefox"]]></title><description><![CDATA[
<p>I thought the initial wording/hype was around poorly phrased lawyer speak for "you give FF permission to interact (post/get requests) with a web page as a browser. Don't sue us".<p>The whole some may consider it "legally selling your data" proves this is not just a Terms of Use change in good faith.</p>
]]></description><pubDate>Sat, 01 Mar 2025 01:26:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=43214491</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=43214491</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43214491</guid></item><item><title><![CDATA[New comment by GNOMES in "A CLI to quickly launch VSCode/cursor devcontainers"]]></title><description><![CDATA[
<p>Tooling looks useful, but still trying to understand Dev containers themselves.<p>Why use one of these premade container images vs using a base image, adding extra packages/layers as needed?</p>
]]></description><pubDate>Thu, 27 Feb 2025 16:37:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=43195935</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=43195935</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43195935</guid></item><item><title><![CDATA[New comment by GNOMES in "Shunpo: Minimalist bash tool to make directory navigation a little bit faster"]]></title><description><![CDATA[
<p>I use an Array + Sed to go backwards in path to an exact directory without having to spam cd ..:<p><a href="https://gist.github.com/GNOMES/6bf65926648e260d8023aebb9ede9573" rel="nofollow">https://gist.github.com/GNOMES/6bf65926648e260d8023aebb9ede9...</a></p>
]]></description><pubDate>Mon, 27 Jan 2025 15:24:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=42842042</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=42842042</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42842042</guid></item><item><title><![CDATA[New comment by GNOMES in "I Switched to Firefox and Never Looked Back"]]></title><description><![CDATA[
<p>I've been back on Firefox for 2-3 years now since the Manifest v3 stuff was initially brewing. Still eagerly waiting for Fission/tab isolation to land on Android.<p>Every morning I open a bookmarks folder with my dailies (news/blogs/Wordle/XKCD etc) that includes <a href="https://mrotherguy.github.io/fx-nightly-changelog/" rel="nofollow">https://mrotherguy.github.io/fx-nightly-changelog/</a>, and CTRL+F hoping for Fission on Fenix :(</p>
]]></description><pubDate>Tue, 14 Jan 2025 16:31:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=42699495</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=42699495</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42699495</guid></item><item><title><![CDATA[New comment by GNOMES in "Stimulation Clicker"]]></title><description><![CDATA[
<p>the whispering/eating guy is so tilting lol</p>
]]></description><pubDate>Tue, 07 Jan 2025 20:27:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=42627028</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=42627028</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42627028</guid></item><item><title><![CDATA[New comment by GNOMES in "IMG_0001"]]></title><description><![CDATA[
<p>Seems that views through this site don't seem to reflect?<p>Found a video that had zero views, watched to completion, then hit back on next video to return to it. Video still had 0 views.</p>
]]></description><pubDate>Wed, 04 Dec 2024 14:12:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=42317563</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=42317563</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42317563</guid></item><item><title><![CDATA[New comment by GNOMES in "Command Line Tools I Like (2022)"]]></title><description><![CDATA[
<p>I was previously really excited about this in the past, but uninstalled it due to remote storing of PDF features: <a href="https://www.reddit.com/r/commandline/comments/jb4axl/comment/g8vxntx/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button" rel="nofollow">https://www.reddit.com/r/commandline/comments/jb4axl/comment...</a><p>Has this gone away?</p>
]]></description><pubDate>Wed, 09 Oct 2024 23:54:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=41794090</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=41794090</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41794090</guid></item><item><title><![CDATA[New comment by GNOMES in "Roblox is the biggest game in the world, but is unprofitable"]]></title><description><![CDATA[
<p>Paying fines while still racking in cash. Basically the cost of doing business.</p>
]]></description><pubDate>Mon, 19 Aug 2024 14:26:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=41291331</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=41291331</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41291331</guid></item><item><title><![CDATA[New comment by GNOMES in "Roblox is the biggest game in the world, but is unprofitable"]]></title><description><![CDATA[
<p>Understand your point, but Epic (Fortnite) and games like Fifa have gotten sued or major slap on the wrists for the same practices</p>
]]></description><pubDate>Mon, 19 Aug 2024 14:17:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=41291243</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=41291243</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41291243</guid></item><item><title><![CDATA[New comment by GNOMES in "Roblox is the biggest game in the world, but is unprofitable"]]></title><description><![CDATA[
<p>My kiddo has easily spent 500+ on Roblox across birthday/Xmas gift cards/chores.<p>I can't stand that almost all of the games seem to have a pay to win aspect, or are heavily advertising every chance they get.<p>As a gamer dad, I try to show my kid better games to play, but because they aren't free, his friends can't play. Just drives him to keep playing and wanting more Robux. It's compounded when his favorite Youtubers play...<p>Seriously don't understand how Roblox isn't being investigated for predatory practices. I imagine they can hide behind the fact users are making most of the mini games, and they are just providing a platform.</p>
]]></description><pubDate>Mon, 19 Aug 2024 14:09:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=41291192</link><dc:creator>GNOMES</dc:creator><comments>https://news.ycombinator.com/item?id=41291192</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41291192</guid></item></channel></rss>