<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: electricEmu</title><link>https://news.ycombinator.com/user?id=electricEmu</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Apr 2026 00:49:35 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=electricEmu" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by electricEmu in "Awk Technical Notes (2023)"]]></title><description><![CDATA[
<p>PowerShell is open source and available on Linux today for those who enjoy an OO terminal.<p>MIT licensed.<p><a href="https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-linux?view=powershell-7.5" rel="nofollow">https://learn.microsoft.com/en-us/powershell/scripting/insta...</a></p>
]]></description><pubDate>Fri, 14 Nov 2025 20:44:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=45931956</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=45931956</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45931956</guid></item><item><title><![CDATA[New comment by electricEmu in "Tech's Elite Hates Labor"]]></title><description><![CDATA[
<p>Examples of Musk benefitting Musk do not demonstrate a net-positive impact on the world.<p>The artists criticizing Mr. Musk make a good point about what's really happening.<p><a href="https://youtu.be/i9qWYUH5x3k" rel="nofollow">https://youtu.be/i9qWYUH5x3k</a></p>
]]></description><pubDate>Tue, 07 Feb 2023 18:01:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=34696369</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=34696369</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34696369</guid></item><item><title><![CDATA[New comment by electricEmu in "When Facebook went down this week, traffic to news sites went up"]]></title><description><![CDATA[
<p>Funny, nmap  was released in 1997.</p>
]]></description><pubDate>Fri, 08 Oct 2021 16:08:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=28800834</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=28800834</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28800834</guid></item><item><title><![CDATA[New comment by electricEmu in "Alternative shell with native support for JSON, YAML, TOML, CSV, etc."]]></title><description><![CDATA[
<p>PowerShell maps plaintext to objects without issue. No need to drop down into bytestreams.<p>In the following example, 'choco' (Chocolatey) outputs a list of outdated packages in a consistent format (--limit-output). The text output is piped to the ConvertFrom-CSV PowerShell CmdLet, which maps the text output from choco into a PowerShell object.<p>```ps1
choco outdated --limit-output | ConvertFrom-csv -Delimiter '|' -Header 'name','version','v-new','pin'
```<p>For what it's worth, STDERR is already colorized in PowerShell too.</p>
]]></description><pubDate>Sat, 27 Feb 2021 23:48:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=26289271</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=26289271</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26289271</guid></item><item><title><![CDATA[New comment by electricEmu in "Alternative shell with native support for JSON, YAML, TOML, CSV, etc."]]></title><description><![CDATA[
<p>WSL on Windows replaces the need for uutils/coreutils. Running an actual distribution of Linux on Windows with WSL provides an actual Linux/POSIX environment.<p>In my experience, there is a graveyard of tools that I tried which attempted to create native POSIX ports for Windows. Each port came up short in my workflow every time. PowerShell and WSL provide me and the teams I work with an experience that simply works.</p>
]]></description><pubDate>Sat, 27 Feb 2021 23:33:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=26289162</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=26289162</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26289162</guid></item><item><title><![CDATA[New comment by electricEmu in "Alternative shell with native support for JSON, YAML, TOML, CSV, etc."]]></title><description><![CDATA[
<p>PowerShell also runs on Mac, Windows, and Linux. You pass objects instead of plaintext through the pipeline which provides a rich experience. The full .NET type and ecosystem are also available when you really need a full fledged class for a thing.<p>There are good choices in 2021.<p><a href="https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux?view=powershell-7.1" rel="nofollow">https://docs.microsoft.com/en-us/powershell/scripting/instal...</a></p>
]]></description><pubDate>Sat, 27 Feb 2021 15:24:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=26285394</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=26285394</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26285394</guid></item><item><title><![CDATA[New comment by electricEmu in "Alternative Shells"]]></title><description><![CDATA[
<p>POSIX commands are available on *nix platforms and PowerShell provides native functions or POSIX wrappers for most tasks. About the biggest issue is speed, but there's always POSIX or .NET Core in the rare instance tons of performance is required.<p>If I may, PS is a first-class citizen on Linux, macOS, and Windows. PowerShell is a spectacular cross-platform shell that provides an object oriented paradigm and it's available today.</p>
]]></description><pubDate>Sat, 13 Feb 2021 19:21:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=26125949</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=26125949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26125949</guid></item><item><title><![CDATA[New comment by electricEmu in "Alternative Shells"]]></title><description><![CDATA[
<p>PowerShell runs on Linux. I run PS as my primary shell [0] on Linux today. It's is open source too.<p>You're not far away with how PowerShell can parse Linux commands. Instead of relying on awk/grep, PowerShell uses .NET under the hood to provide consistency across operating systems. There are a few methods for converting from a Linux command to PowerShell objects based on delimiters or OFS. If you're interested, Steve Lee wrote a blog post that does a good job covering how to parse Linux command output into PowerShell objects [1].<p>[0] <a href="https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux?view=powershell-7.1" rel="nofollow">https://docs.microsoft.com/en-us/powershell/scripting/instal...</a><p>[1] <a href="https://devblogs.microsoft.com/powershell/parsing-text-with-powershell-1-3/" rel="nofollow">https://devblogs.microsoft.com/powershell/parsing-text-with-...</a></p>
]]></description><pubDate>Sat, 13 Feb 2021 16:09:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=26124382</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=26124382</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26124382</guid></item><item><title><![CDATA[New comment by electricEmu in "Mass die-off of birds in south-western US 'caused by starvation'"]]></title><description><![CDATA[
<p>For years I've watched the rivers in Washington State receive consideration. Progress has been made and continues to be.<p>Saying humankind has done "nothing" is not only mistaken, but makes for poor conversation. Perhaps more people should take a page from Attenborough.<p><a href="https://www.spokesman.com/stories/2020/dec/17/for-the-first-time-in-more-than-80-years-salmon-sp/" rel="nofollow">https://www.spokesman.com/stories/2020/dec/17/for-the-first-...</a></p>
]]></description><pubDate>Sat, 26 Dec 2020 18:56:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=25545505</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=25545505</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25545505</guid></item><item><title><![CDATA[New comment by electricEmu in "Study suggests that fresh asphalt is a significant source of air pollution"]]></title><description><![CDATA[
<p>Small trucks may cut enough emissions by reducing road-wear. If everyone switched from large trucks to an even larger amount of small trucks it's possible the problem is made worse.<p>Why the focus on small trucks as if they're a panacea?</p>
]]></description><pubDate>Thu, 03 Sep 2020 20:50:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=24368741</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=24368741</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=24368741</guid></item><item><title><![CDATA[New comment by electricEmu in "Zettlr – FOSS markdown editor for personal knowledge management and publishing"]]></title><description><![CDATA[
<p>Honestly, it's good to hear I'm not alone.<p>Synchronization in Joplin concerned me too. E2EE is non-trivial to setup and Joplin will upload decrypted files if E2EE is misconfigured on a device. Encryption appears to be  an afterthought in Joplin.<p>Standard Notes looks snazzy but too many features fail to work. I cannot get paste to work consistently on my mobile devices, and you're right - the editors are a an absolute mess. File Safe is only supported in unsupported editors and the supported editors lack basic features. FYI, the spreadsheet editor unsupported and exporting sheet data is...difficult.<p>I do not recommend Standard Notes anymore. Thanks for pointing out a need for external backups in Joplin though!</p>
]]></description><pubDate>Fri, 03 Jul 2020 17:53:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=23726000</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23726000</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23726000</guid></item><item><title><![CDATA[New comment by electricEmu in "Zettlr – FOSS markdown editor for personal knowledge management and publishing"]]></title><description><![CDATA[
<p>What happened with your Joplin sync issue?<p>I am interested in using Joplin exclusively and use both apps currently. The Standard Notes development team is nice but refactors happen too frequently and estimates are rarely (never) produced, even though the product is paid Open Source.</p>
]]></description><pubDate>Fri, 03 Jul 2020 16:10:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=23725184</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23725184</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23725184</guid></item><item><title><![CDATA[New comment by electricEmu in "Capitol Hill Autonomous Zone"]]></title><description><![CDATA[
<p>Ando Ngo has frequently posted information to intentionally muddy the situation and incite an anger against protestors. As a Seattle resident, my fear is that people are beginning to act on this disinformation from Andy Ngo and others.<p>Here, a multi-racial family was menaced by residents of Forks, WA. Residents actually cut down trees to block the road.<p><a href="https://q13fox.com/2020/06/05/spokane-family-harassed-stranded-on-olympic-peninsula-after-locals-accuse-them-of-antifa-affiliation/" rel="nofollow">https://q13fox.com/2020/06/05/spokane-family-harassed-strand...</a><p>Here, a police offier's relative drove into the protests, shot a protestor, and ran to the police station.<p><a href="https://www.washingtonpost.com/nation/2020/06/08/seattle-shooting-protest/" rel="nofollow">https://www.washingtonpost.com/nation/2020/06/08/seattle-sho...</a><p>While these instances are not widespread, they are incredibly troubling.</p>
]]></description><pubDate>Fri, 12 Jun 2020 18:55:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=23502436</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23502436</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23502436</guid></item><item><title><![CDATA[New comment by electricEmu in "Ask HN: Do you still use MongoDB?"]]></title><description><![CDATA[
<p>DynamoDB is consistent and scalable, not fast and cheap.<p>DDB is great for storing data that is required to be scalable and never needs to be joined. Add in DAX, developer time necessary to orchestrate transactions, calculate the scaling costs and...that's how AWS gets you.<p>Plus, local development requires half-complete emulators or a hosted database you're charged for.<p>No, maybe people should think twice about DynanoDB.</p>
]]></description><pubDate>Fri, 22 May 2020 16:34:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=23273914</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23273914</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23273914</guid></item><item><title><![CDATA[New comment by electricEmu in "Argon – a clean, responsive, modern template for Dokuwiki"]]></title><description><![CDATA[
<p>Dokuwiki will function perfectly for some specific use-cases. The file format and plugins are not something that should be glossed over with Dokuwiki though.<p>Yes, it's possible to rsync flat files from Dokuwiki to somewhere else, but Dokuwiki files are stored in a unique format.  Moving files from one machine to another does not make the format more ubiquitous or easier to parse. The amount of work required to migrate data out of Dokuwiki may be trivial to some very experienced developers but would be neigh impossible for greener developers.<p>The plugin ecosystem of Dokuwiki is reminiscent of Jenkins. Dokuwiki plugins can do anything, but few seem to do them well or without quirks. Some require updating the CSS and HTML template for a theme. Others require modifying the host system. Few plugins are active, modern, and useful to more than a subset of specialized scenarios. The mobile editors are truly an exercise in frustration for even tech-savvy users.<p>Dokuwiki is great if you have specialized needs and accept the file format costs. The specialized markup language and plugin ecosystem are a type lock-in that should really be stated more up-front to new and perspective Dokuwiki users. I do recommend Dokuwiki for very particular and specific needs, but not as a general purpose wiki for "most people".</p>
]]></description><pubDate>Wed, 20 May 2020 17:28:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=23249471</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23249471</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23249471</guid></item><item><title><![CDATA[New comment by electricEmu in "Argon – a clean, responsive, modern template for Dokuwiki"]]></title><description><![CDATA[
<p>Hardly needs maintenance at all was not my experience.<p>My primary driver for seeking out a new wiki was because of how difficult testing and managing Dokuwiki can be. Updates to the main wiki are infrequent, plugins are often abandoned, and the setup, running, and maintained of the wiki is non-trivial.<p>I recommended wiki.js is easier to run, uses markdown by default, backs up data as flat files in a git repository, and does not require many resources either. Plus, there's a supported Docker image that works out of the box.<p>There's no problem with choice. Dokuwiki is frequently recommended to new users and wonder if that wiki is an appropriate recommendation. I explicitly would suggest wiki.js or something similar to someone not already running Dokuwiki.</p>
]]></description><pubDate>Tue, 19 May 2020 22:16:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=23240942</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23240942</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23240942</guid></item><item><title><![CDATA[New comment by electricEmu in "Argon – a clean, responsive, modern template for Dokuwiki"]]></title><description><![CDATA[
<p>Seriously. wiki.js was easy to setup, simple to run, and actually works on mobile devices. Markdown files are  published to an external git repository.<p>I am happy with wiki.js. It's much less maintenance than Dokuwiki.</p>
]]></description><pubDate>Tue, 19 May 2020 16:06:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=23236407</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23236407</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23236407</guid></item><item><title><![CDATA[New comment by electricEmu in "Redfin: Vacation real-estate ‘toast’ as Airbnb owners rush to offload homes"]]></title><description><![CDATA[
<p>Some people will move away from a city and others will move to a city. It happens. Neither of us expects to see a sizable net movement from urban to "exurban" (rural) areas.<p>Why choose the exurbs where you pay a premium to drive long distances and live far away from opportunity and medical care? Plus, exurbs were some of the hardest hit during the '08 recession [1].<p>> But underlying today’s exurban fervor is an uncomfortable truth: The reason that homes in these communities are so affordable is that these areas were among the hardest-hit by the housing crisis and recession, and prices have only recently recovered.<p>Recessions are very difficult to predict. Maybe it will be some time before a reckoning in the exurbs comes due again.<p>[1] <a href="https://www.marketwatch.com/story/it-can-be-risky-to-buy-a-house-in-the-exurbs-but-will-todays-buyers-care-2019-04-17" rel="nofollow">https://www.marketwatch.com/story/it-can-be-risky-to-buy-a-h...</a></p>
]]></description><pubDate>Tue, 12 May 2020 01:42:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=23149681</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23149681</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23149681</guid></item><item><title><![CDATA[New comment by electricEmu in "Redfin: Vacation real-estate ‘toast’ as Airbnb owners rush to offload homes"]]></title><description><![CDATA[
<p>> Why risk living in close quarters if this may be a recurring pattern and pay a premium for doing so.<p>Your original assertion was renters will move because the city is unsafe during COVID and that suburan areas are worth the price to commute trade-off.<p>Two suburban areas around Seattle are Snohomish and Pierce counties. Those "safer" suburbs are doing an objectively worse job of following Washington State's "Stay at Home" order [1]. Prior to COVID, hospitals were closing in rural and exurban areas, which reduced capacity during this pandemic [2]. Disregarding SAH/SIP orders and reduced capacity sounds dangerous, not safer and worth saving money.<p>As for cost, when enough housing capacity was built in Seattle then the rent stabilized. After short-term rentals are converted back into single-family homes or long-term leases then rent should continue to stabilize or decrease. When I last looked, increasing my commute from 25m to over 1h was not worth the savings in rent and would have required purchasing a car.<p>It's great you prefer the suburbs and there are absolutely people the 'burbs are better suited. Unless you have a valid reason to suggest people are going to move in-mass from cities to the burbs then I find "diminished city living" mistaken and comical.<p>[1] <a href="https://www.unacast.com/covid19/social-distancing-scoreboard?view=state&fips=53" rel="nofollow">https://www.unacast.com/covid19/social-distancing-scoreboard...</a>
[2] <a href="https://www.npr.org/2020/04/09/829753752/small-town-hospitals-are-closing-just-as-coronavirus-arrives-in-rural-america" rel="nofollow">https://www.npr.org/2020/04/09/829753752/small-town-hospital...</a></p>
]]></description><pubDate>Mon, 11 May 2020 22:09:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=23147708</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23147708</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23147708</guid></item><item><title><![CDATA[New comment by electricEmu in "Redfin: Vacation real-estate ‘toast’ as Airbnb owners rush to offload homes"]]></title><description><![CDATA[
<p>Only time will tell for certain but the preemptive measures places like Seattle have taken appear to be paying dividends. Living in rural Texas is much more concerning than living in Seattle during COVID19.<p>As for space, cities have lacked space for as long as cities have existed but people continue to migrate for the opportunity. I wouldn't be surprised if housing prices drop from short-term rentals reentering the market as single-family homes or long-term rentals.<p>The decision is not so clear cut.</p>
]]></description><pubDate>Mon, 11 May 2020 18:15:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=23145204</link><dc:creator>electricEmu</dc:creator><comments>https://news.ycombinator.com/item?id=23145204</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23145204</guid></item></channel></rss>