<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: ralish</title><link>https://news.ycombinator.com/user?id=ralish</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 15 Jun 2026 11:40:08 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=ralish" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by ralish in "A fork() in the road"]]></title><description><![CDATA[
<p>I'm a bit rusty on this but from memory the overhead is by and large specific to the Win32 environment. Creating a "raw" process is cheap and fast (as you'd reasonably expect), but there's a lot of additional initialisation that needs to occur for a "fully-fledged" Win32 process before it can start executing.<p>Beyond the raw Process and Thread kernel objects, which are represented by EPROCESS + KPROCESS and ETHREAD + KTHREAD structures in kernel address space, a Win32 process also needs to have:<p>- A PEB (Process Environment Block) structure in its user address space<p>- An associated CSR_PROCESS structure maintained by Csrss (Win32 subsystem user-mode)<p>- An associated W32PROCESS structure for Win32k (Win32 subsystem kernel-mode)<p>I'm pretty sure these days the W32PROCESS structure only gets created on-demand with the first creation of a GDI or USER object, so presumably CLI apps don't have to pay that price. But either way, those latter three structures are non-trivial. They are complicated structures and I assume involve a context switch (or several) at least for the Csrss component. At least some steps in the process also involve manipulating global data structures which block other process creation/destruction (Csrss steps only?).<p>I expect all this Win32 specific stuff largely doesn't apply to e.g. the Linux subsystem, and so creating processes should be <i>much</i> faster. The key takeaway is its all the Win32 stuff that contributes the bulk of the overhead, not the fundamental process or thread primitives themselves.<p>EDIT: If you want to learn more, Mark Russinovich's Windows Internals has a whole chapter on process creation which I'm sure explains all this.</p>
]]></description><pubDate>Wed, 10 Apr 2019 05:53:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=19622212</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=19622212</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19622212</guid></item><item><title><![CDATA[A fork() in the road]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.microsoft.com/en-us/research/publication/a-fork-in-the-road/">https://www.microsoft.com/en-us/research/publication/a-fork-in-the-road/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=19621799">https://news.ycombinator.com/item?id=19621799</a></p>
<p>Points: 257</p>
<p># Comments: 178</p>
]]></description><pubDate>Wed, 10 Apr 2019 04:18:06 +0000</pubDate><link>https://www.microsoft.com/en-us/research/publication/a-fork-in-the-road/</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=19621799</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19621799</guid></item><item><title><![CDATA[New comment by ralish in "NirSoft Freeware (2008)"]]></title><description><![CDATA[
<p>If they're integrated into the OS they have to be supported at the same level as the rest of the OS, which entails the same rigorous processes w.r.t. updates, bug fixes, etc...<p>By keeping them out-of-band, that support requirement doesn't apply, allowing the tools to be much more aggressively updated and released without the same degree of oversight. There's a reason they're licensed separately and effectively with no support or warranty. Doing so enables their rapid development without/less-of the usual bureaucracy.</p>
]]></description><pubDate>Tue, 17 Apr 2018 07:18:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=16856216</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=16856216</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16856216</guid></item><item><title><![CDATA[New comment by ralish in "MS Paint is here to stay"]]></title><description><![CDATA[
<p>Hence the Delay option.</p>
]]></description><pubDate>Tue, 25 Jul 2017 06:42:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=14845628</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=14845628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14845628</guid></item><item><title><![CDATA[New comment by ralish in "New Distros Coming to Bash/WSL via Windows Store"]]></title><description><![CDATA[
<p>Uh, that may not be the best example. Are you aware of a reliable way to retrieve the OS version across all POSIX OSs? Because if you are, I would <i></i>love<i></i> to hear it.</p>
]]></description><pubDate>Fri, 12 May 2017 04:07:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=14321373</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=14321373</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14321373</guid></item><item><title><![CDATA[New comment by ralish in "Rumors of Cmd’s death have been greatly exaggerated"]]></title><description><![CDATA[
<p>Sure, but the degree of usage of cmd makes Silverlight's usage look like a hobby project. It's used <i>everywhere</i>, including all over Microsoft's own software. It'd easily be the single biggest backwards incompatible change ever made by Microsoft and would affect software going back to the 1980s. The engineering effort involved to migrate anything that is using cmd is mind boggling, to the extent of being completely infeasible. It's a safe bet that for as long as Windows is around, cmd is going to stay with it.</p>
]]></description><pubDate>Thu, 05 Jan 2017 04:39:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=13324790</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=13324790</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13324790</guid></item><item><title><![CDATA[New comment by ralish in "Rumors of Cmd’s death have been greatly exaggerated"]]></title><description><![CDATA[
<p>Because it's well known by anyone interested in this area? There's been a barrage of "Windows 10 Telemetry/Privacy" related stories since its release. It's also publicly documented by Microsoft itself: <a href="https://technet.microsoft.com/en-au/itpro/windows/manage/configure-windows-telemetry-in-your-organization?f=255&MSPPError=-2147217396" rel="nofollow">https://technet.microsoft.com/en-au/itpro/windows/manage/con...</a><p><i>"Performance and reliability data, such as which programs are launched on a device, how long they run, how quickly they respond to input, how many problems are experienced with an app or device, and how quickly information is sent or received over a network connection."</i></p>
]]></description><pubDate>Thu, 05 Jan 2017 04:14:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=13324682</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=13324682</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13324682</guid></item><item><title><![CDATA[New comment by ralish in "Rumors of Cmd’s death have been greatly exaggerated"]]></title><description><![CDATA[
<p>Agree that the phrasing could have been a lot clearer, but really, Microsoft removing cmd just doesn't pass even a basic sanity check. I remember seeing the original news articles and just ignoring them as obviously rubbish. It's pretty sad to see so many tech news sites & aggregators just pick-up and run with stories like that which anyone at all knowledgeable about the subject area would immediately know is hyperbole.</p>
]]></description><pubDate>Thu, 05 Jan 2017 04:05:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=13324640</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=13324640</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13324640</guid></item><item><title><![CDATA[New comment by ralish in "Web Bloat Score Calculator"]]></title><description><![CDATA[
<p>It's certainly a lean web site. Or rather, the 503 is lean.</p>
]]></description><pubDate>Tue, 25 Oct 2016 07:49:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=12786013</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=12786013</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=12786013</guid></item><item><title><![CDATA[New comment by ralish in "High CPU use by taskhost.exe when Windows 8.1 user name contains “user”"]]></title><description><![CDATA[
<p>It appears to be a support library for dfp.exe, which is the "Disk Footprint Tool". I never knew it existed until now, but it seems to be a potentially quite handy utility with a purpose similar to tools like WinDirStat (but CLI only?).<p>So to answer your question, no, it's not part of the telemetry infrastructure. And I'll add that calling that infrastructure "spyware" is a simplistic analysis of what's a complex issue. I say that as someone who goes to great pains to turn off as much telemetry as I can across almost all applications I use.</p>
]]></description><pubDate>Tue, 17 May 2016 16:24:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=11714901</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=11714901</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=11714901</guid></item><item><title><![CDATA[New comment by ralish in "Managing dotfiles with GNU Stow"]]></title><description><![CDATA[
<p>I've found Stow to be outstanding. When I initially started actually maintaining my <i>dotfiles</i> properly I looked at what others were doing based on public repositories and most at the time were either not using any sort of management tool (manual symlinking as needed) or using something written in a interpreted language that couldn't be assumed to be on a diverse range of Unix-like systems in default installations (e.g. Ruby, Python, Node.js, etc...).<p>The problem was I wanted something I could easily install on effectively any system, including live servers, without needing to install dependencies or otherwise change the underlying global system state. Stow manages to solve this beautifully as pretty much all Unix-like systems do have a Perl interpreter and Stow has no unusual dependencies beyond the core runtime. That, and it can be included in your <i>dotfiles</i> collection itself, so you can literally "<i>stow stow</i>" to "<i>bootstrap</i>" itself and then carry along!<p>If anyone's interested you can find my <i>dotfiles</i> below which may be nice as reference material if you're wanting to "stow-ify" your <i>dotfiles</i>. I've also written some Bash scripts to automatically stow the available components on a given system (<i>dot-manage</i>) and easily fetch updates from an upstream repository, re-run component detection and update Vim bundles via Vundle (<i>dot-update</i>). There's also a metadata-esque system which augments detection of which components are available for where simply checking if a binary named after the relevant folder exists on the system is insufficient (e.g. for libraries like <i>readline</i>).<p><a href="https://github.com/ralish/dotfiles" rel="nofollow">https://github.com/ralish/dotfiles</a></p>
]]></description><pubDate>Sun, 17 Apr 2016 23:37:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=11516876</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=11516876</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=11516876</guid></item><item><title><![CDATA[New comment by ralish in "LibreCrypt: Transparent on-the-fly disk encryption for Windows. LUKS compatible"]]></title><description><![CDATA[
<p>It's not inherently bad, but choice for choice's sake is generally not a good thing for security software in my view.<p>Saying you support more features in non-security software might be a great thing but saying you support more ciphers, encryption algorithms, etc... than the competition just means a higher probability you're supporting weak/broken security algorithms and/or that the implementations are not well audited.<p>That, and the overwhelming majority of users are going to have no idea what the actual difference is between all the options nor are going to take the time to investigate what exactly is the difference between RIPEMD-320 & SHA-512. Nor should they have to for that matter.<p>The goal here is to implement high quality security software. The more features you support, the more code is in your product, and the harder it is to ensure that your code is in fact delivering the security you're aiming for.</p>
]]></description><pubDate>Sat, 06 Jun 2015 05:42:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=9669856</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=9669856</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=9669856</guid></item><item><title><![CDATA[New comment by ralish in "LibreCrypt: Transparent on-the-fly disk encryption for Windows. LUKS compatible"]]></title><description><![CDATA[
<p>What options are superior to XTS? As I understand it XTS does have some weaknesses, but is still the superior option versus LRW & CBC w/ secret IVs. I'm not aware of any other well supported block cipher modes other than those major three?</p>
]]></description><pubDate>Sat, 06 Jun 2015 05:33:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=9669837</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=9669837</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=9669837</guid></item><item><title><![CDATA[New comment by ralish in "My Microsoft Experience (2013)"]]></title><description><![CDATA[
<p>What are you talking about? Cygwin provides packages for bash, dash, fish, tcsh, zsh, and others. It's not a crutch, these are the exact same shells you run on Unix(-like) systems. The source is the same, albeit with some Cygwin specific patches, but that's no different than any other Unix-like distribution that applies patches to upstream packages (e.g. Debian, FreeBSD, Gentoo, etc...).<p>Your NiH assertion doesn't even remotely make sense. PowerShell is fundamentally different from traditional Unix shells and has many interesting, unique & innovative features. Not liking them or agreeing with the philosophy is entirely valid, but suggesting they've just refused to use an existing shell because of NiH isn't born out by the facts.<p>Honestly, I'd suggest trying to adapt an existing Unix style shell to Windows as the "official" shell would be an inherently bad idea at worst and extremely difficult at best. Apart from the numerous issues that traditional shells have which PowerShell seeks to address (reliance on string parsing, lack of consistency in commands/parameterss, etc...), traditional Unix shells are very much built around a Unix operating system philosophy, especially wrt. exposing operating system internals, devices, etc... via the file system. That's a great thing, but it's not so much applicable to Windows.<p>You'd either need to radically re-design large chunks of the system to conform to the Unix philosophy of exposing much of the system via the file system, which let's face it, is unlikely to happen, much less any time soon, or augment the shell with a lot of extra support for Windows specific functionality (e.g. the Registry, WMI, etc...). Things as simple as ACLs on Unix won't even map nicely. Better to have a shell that works well for Windows and fits its administrative model than trying to shoe-horn in a shell designed with a completely different administrative philosophy in mind.<p>You mention OS X, and yes, they did get it to work. As other commenters have mentioned though, OS X is UNIX. As in, UNIX(R). The userland API exposed by the kernel is based off BSD, as are large chunks of the operating system (although, Apple seems to be replacing them one by one). It's pretty easy to use a nix shell when your operating system is largely based on Unix (at least, from the perspective of userland applications).</p>
]]></description><pubDate>Mon, 25 May 2015 11:14:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=9599524</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=9599524</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=9599524</guid></item><item><title><![CDATA[New comment by ralish in "IE7 users, we need to talk…"]]></title><description><![CDATA[
<p>IE7 shipped with Vista. I've seen a few organisations that started deploying Vista and updated their XP systems to IE7 so all their workstations are running the same IE version.<p>Admittedly, there aren't many of these companies given most gave Vista a miss in favour of 7 or something else entirely, but they do exist, and it is a plausible reason that IE7 is still around for some.</p>
]]></description><pubDate>Wed, 29 Jan 2014 07:15:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=7142468</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=7142468</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=7142468</guid></item><item><title><![CDATA[New comment by ralish in "Did Shutting Down Silk Road Make the World a More Dangerous Place?"]]></title><description><![CDATA[
<p>I think you've possibly misinterpreted the argument the author is making. My interpretation wasn't that he was being critical of the FBI for shutting it down; of course they had to shut it down. Rather, the criticism is of the laws and policies that are in place which dictate that the FBI had to shut it down in the first place.<p>As the article notes, law enforcement has been given a "hopeless task", where if you subscribe to the view that Silk Road actually made buying and selling drugs safer (as I do), shutting it down has made the whole business less safe at direct risks to citizens of many countries. As you note, the FBI had to do this, but it's a huge indictment of our drug policy that this is the action they are compelled to take given the result.<p>Which brings us back to the war on drugs...</p>
]]></description><pubDate>Fri, 04 Oct 2013 15:56:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=6496094</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=6496094</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=6496094</guid></item><item><title><![CDATA[New comment by ralish in "MIT Report is a whitewash. My Statement in Response"]]></title><description><![CDATA[
<p>I'm sorry, but that's absolute rubbish. I rarely post on HN, but I feel compelled to do so here.<p>People rarely live in a vacuum, they engage with society, and those interactions have tangible results. I feel this is obvious, but it seems lost on people. When a person is systematically bullied, that negative interaction with society will inevitably have an impact, and if severe enough, suicide is a potential result. Aaron had the weight of a state on his shoulders, and while I'm glad to say I've never experienced that the prospects of it terrify me. As someone with a history of depression, I can quite confidently state, I'm unsure I'd survive through the experience, and can foresee it simply becoming too much.<p>To state that no one has responsibility for his death is to excuse the gross abuses of those who's interactions with Aaron led to it. You are giving a pass to disgraceful prosecution tactics including intimidation and overreach. You are giving a pass to institutions that abandoned morality by siding with an abusive prosecution instead of standing up for a member of their community. Most egregiously, you are encouraging a broad view that only the victim is at fault for their choice. There's so much wrong with this view it's hard to know where to start, but for one, it suggests they're in the position to even logically and rationally evaluate the choice. If you're depressed to the point of suicide, it's fairly safe to assume, you aren't thinking logically or rationally. How can you then be held at fault for the resultant choice?<p>Suicide is horrible, and I've known some who've taken that path. But blaming those who commit such an act is the easy way out. To reduce the instances of people taking their own lives, you need to understand why. This means fully comprehending the circumstances that led to their choice, and this means holding those to account that contributed to it.</p>
]]></description><pubDate>Tue, 30 Jul 2013 18:16:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=6128875</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=6128875</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=6128875</guid></item><item><title><![CDATA[New comment by ralish in "Thinking the unthinkable"]]></title><description><![CDATA[
<p>Considering she explains in detail how she has had to take him to hospital multiple times with the assistance of police to restrain him, and further admits that pressing charges against him is perhaps the only last remaining option (which she indicates she is understandably reluctant to do), I'm having a hard time seeing what she isn't doing?<p>Could you perhaps elaborate as to what you would do to control a mentally ill child such as her own?</p>
]]></description><pubDate>Sun, 16 Dec 2012 19:25:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=4929227</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=4929227</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4929227</guid></item><item><title><![CDATA[New comment by ralish in "Leak shows EU's plans for large scale surveillance of all communications"]]></title><description><![CDATA[
<p>Looking at the current list, the CCC contributes a substantial slab of resources to the overall network. It's a pretty suboptimal situation that the network performance could be impacted/compromised by one organisation (potentially) pulling its support for whatever reason.</p>
]]></description><pubDate>Wed, 26 Sep 2012 01:21:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=4573735</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=4573735</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4573735</guid></item><item><title><![CDATA[New comment by ralish in "Leak shows EU's plans for large scale surveillance of all communications"]]></title><description><![CDATA[
<p>Firstly, we'd need a massive expansion of the Tor network. While Tor might be quite well known among the more technically inclined, the network itself is of course largely composed of volunteer systems and is quite small:
<a href="http://torstatus.blutmagie.de/" rel="nofollow">http://torstatus.blutmagie.de/</a><p>As of writing, the number of Tor routers is in the low thousands and of course only a minority of those are exit nodes. Technically savvy people like the HN readership (who also often have a strong online civil rights interest) make pretty good candidates for helping the network out via running a Tor relay!</p>
]]></description><pubDate>Wed, 26 Sep 2012 01:17:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=4573723</link><dc:creator>ralish</dc:creator><comments>https://news.ycombinator.com/item?id=4573723</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4573723</guid></item></channel></rss>