<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: E6300</title><link>https://news.ycombinator.com/user?id=E6300</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 17 Apr 2026 02:07:30 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=E6300" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by E6300 in "Why Cutting Carbs Is So Tough"]]></title><description><![CDATA[
<p>I'm talking about weight loss, not overall health.</p>
]]></description><pubDate>Thu, 20 Jul 2017 14:37:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=14812832</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14812832</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14812832</guid></item><item><title><![CDATA[New comment by E6300 in "Why Cutting Carbs Is So Tough"]]></title><description><![CDATA[
<p>The only diet that works is caloric restriction. You can follow any fad diet you want, but if you don't expend more calories than you ingest you're not going to lose weight. Replace all the carbs in your equilibrium diet with the same amount of fat per mass and you're going to start gaining weight. It's as simple as that.</p>
]]></description><pubDate>Thu, 20 Jul 2017 14:34:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=14812795</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14812795</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14812795</guid></item><item><title><![CDATA[New comment by E6300 in "Why Cutting Carbs Is So Tough"]]></title><description><![CDATA[
<p>Well, fat certainly is worse than carbs, as far as weight loss is concerned. Fat contains twice the calories per gram compared to carbohydrates or protein, that's why things like cheese and oil are a big no-no if you're trying to lose weight. Butter is alright as long as you don't take a big ol' chomp out of a stick.</p>
]]></description><pubDate>Thu, 20 Jul 2017 14:20:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=14812655</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14812655</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14812655</guid></item><item><title><![CDATA[New comment by E6300 in "Firefox marketshare revisited"]]></title><description><![CDATA[
<p>> When you start Firefox two times in a row, the dialog "Firefox is already running, please close the running instance" or something like this pops up.<p>On Windows, this only happens if the second instance starts with a specific command-line option (the name escapes me at the moment). Otherwise, the existing instance just opens a new window.</p>
]]></description><pubDate>Wed, 19 Jul 2017 17:52:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=14806315</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14806315</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14806315</guid></item><item><title><![CDATA[New comment by E6300 in "Microsoft cuts off Windows 10 support early for some PCs"]]></title><description><![CDATA[
<p>Only you need a volume license for that, and if you have the dough to spend on that, presumably you'd get a higher-specced CPU.</p>
]]></description><pubDate>Wed, 19 Jul 2017 16:23:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=14805448</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14805448</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14805448</guid></item><item><title><![CDATA[New comment by E6300 in "Fastest Way to Delete Large Folders in Windows (2015)"]]></title><description><![CDATA[
<p>Yeah, since Windows Vista/7, when Documents and Settings was moved to Users, the system creates new user directories with a bunch of symbolic links/junctions that don't seem to be properly created and always cause issues when copying the directory to another place or deleting the directory. I always get this problem when moving my profile directory out of the system partition.<p>Incidentally, it's amazing that Windows <i>still</i> doesn't let you specify a custom location to create the profile directory of a new user.</p>
]]></description><pubDate>Tue, 18 Jul 2017 18:06:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=14798710</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14798710</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14798710</guid></item><item><title><![CDATA[New comment by E6300 in "AMD Threadripper prices undercut Intel's Core i9 by as much as $1,000"]]></title><description><![CDATA[
<p>You are again conflating high bandwidth and low latency.<p>> So to not be memory bound you need to run an extra 15 times more instructions... without adding any cache misses, just to execute one instruction per cycle (a fraction of the possible). If it's less you are memory bound.<p>Yes, if you do operations in a lineal access pattern like this the performance will be bound by the bandwidth. This is the situation I was referring to above.<p>> Now imagine it's not perfectly sequential, and instead you have to retrieve something from memory before you know where to go next. Like say a database index, binary tree, or linked list. Instead of getting 8 bytes @ 2400 Mhz you get 8 bytes per 70 ns. Keep in mind that's 8 bytes per 1/2.4 ns vs 70 or 168 times worse.<p>> Suddenly instead of needing 15 times more instructions you need 2500 instructions per memory load, all without a extra cache miss.<p>> So as you can see it can be quite easy to be memory limited.<p>No, in this case you will not be limited by the bandwidth, but by the latency. Having more bandwidth will do nothing, because at 8 bytes per 70 ns you're only moving about 109 MiB/s. If 100% of the memory accesses are cache misses (they won't be) and the application uses all cores then yes, doubling the number of memory channels will double the multi-thread performance (unless channel count = core count), although the single-threaded performance will stay unchanged. Additionally, in this particular load you could get away with relatively low frequency RAM, which won't significantly affect the latency but will lower the total bandwidth (it will still be way higher than 109 MiB/s) and will be cheaper.</p>
]]></description><pubDate>Sat, 15 Jul 2017 03:19:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=14774874</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14774874</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14774874</guid></item><item><title><![CDATA[New comment by E6300 in "AMD Threadripper prices undercut Intel's Core i9 by as much as $1,000"]]></title><description><![CDATA[
<p>An application being cache-unfriendly doesn't imply that it will be bandwidth-bound. If the application reads single words from random locations it will be cache-unfriendly and latency-bound. If it reads 1K contiguous bytes from random locations it will be cache-unfriendly and <i>possibly</i> bandwidth-bound. If it scans the entire memory space sufficiently quickly it may be both cache-friendly and still bandwidth-bound.<p>I can't speak for the server market, but I'm certain that the high-end desktop market is composed primarily of people who do run top-of-the-line specs just for fun.</p>
]]></description><pubDate>Sat, 15 Jul 2017 01:36:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=14774555</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14774555</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14774555</guid></item><item><title><![CDATA[New comment by E6300 in "AMD Threadripper prices undercut Intel's Core i9 by as much as $1,000"]]></title><description><![CDATA[
<p>For all the cases you mention, the critical factor is the product of the average transaction size and the transaction count per second. As long as this value is smaller than the RAM bandwidth, the application will not be RAM bandwidth-bound.<p>Generally speaking, databases are kept in memory to minimize latency, not maximize throughput. Bandwidth is not really a problem. Having to update 10 GB/s of a database would be highly unusual. Having to get data from random positions in a disk or SSD is much more common.<p>As for the message broken, it's not clear to me why the bandwidth would "of course" be the limiting factor.</p>
]]></description><pubDate>Sat, 15 Jul 2017 00:57:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=14774444</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14774444</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14774444</guid></item><item><title><![CDATA[New comment by E6300 in "AMD Threadripper prices undercut Intel's Core i9 by as much as $1,000"]]></title><description><![CDATA[
<p>The only situation where I imagine that could happen is if you need to apply a small number of instructions to a massive data set that's fully loaded in memory. What sort of application are you running? If you can say, obviously.</p>
]]></description><pubDate>Fri, 14 Jul 2017 23:59:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=14774205</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14774205</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14774205</guid></item><item><title><![CDATA[New comment by E6300 in "AMD Threadripper prices undercut Intel's Core i9 by as much as $1,000"]]></title><description><![CDATA[
<p>> A quad channel system will have twice the throughput of a 2 channel because there can be twice as many cache misses being handled at once.<p>Sure, that's the theory, but in practice it doesn't seem to make much of a difference, at least not for dual vs. single.</p>
]]></description><pubDate>Fri, 14 Jul 2017 23:56:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=14774185</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14774185</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14774185</guid></item><item><title><![CDATA[New comment by E6300 in "AMD Threadripper prices undercut Intel's Core i9 by as much as $1,000"]]></title><description><![CDATA[
<p>Are there any applications that are RAM bandwidth-bound, though? The main bottleneck is supposed to be RAM latency.<p>Going from single channel to dual channel offers like an 8% performance increase, IIRC. Is there any reason to expect any different with quad channel RAM?</p>
]]></description><pubDate>Fri, 14 Jul 2017 22:30:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=14773717</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14773717</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14773717</guid></item><item><title><![CDATA[New comment by E6300 in "AMD Threadripper prices undercut Intel's Core i9 by as much as $1,000"]]></title><description><![CDATA[
<p>VT-x and VT-d are definitely not on AMD. AMD has its own versions of these sets that do basically the same, though, and AFAIK all hypervisors support both.</p>
]]></description><pubDate>Fri, 14 Jul 2017 22:26:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=14773700</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14773700</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14773700</guid></item><item><title><![CDATA[New comment by E6300 in "What libraries lost when they threw out the card catalog"]]></title><description><![CDATA[
<p>> difference between fiction and non-fiction<p>Wait, was that actually part of a curriculum? Surely if you know what "fiction" and "non-" mean you can understand the difference between the two.</p>
]]></description><pubDate>Thu, 13 Jul 2017 18:56:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=14764093</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14764093</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14764093</guid></item><item><title><![CDATA[New comment by E6300 in "Transit Detection of a Starshade at the Inner Lagrange Point of an Exoplanet"]]></title><description><![CDATA[
<p>I know I'm gonna get downvoted for saying this, but this is kinda dumb. Might as well look for Dyson spheres by looking for gravitational lensing around dark spots in the sky.</p>
]]></description><pubDate>Tue, 11 Jul 2017 19:20:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=14747140</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14747140</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14747140</guid></item><item><title><![CDATA[New comment by E6300 in "Hard Drive Cost per Gigabyte"]]></title><description><![CDATA[
<p>I do a lot of work in local VMs (testing in clean environments, debugging drivers, etc.), and those can take up quite a bit of room.</p>
]]></description><pubDate>Tue, 11 Jul 2017 16:56:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=14745778</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14745778</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14745778</guid></item><item><title><![CDATA[New comment by E6300 in "24-core CPU and I can’t move my mouse"]]></title><description><![CDATA[
<p>If the times claimed by the developers are true, then it just tells me that BSD was the correct choice of license, as otherwise zapcc might not have happened. A world with a lot of high quality software, some of it open source and some of it closed source, is better than that same world minus the closed source.</p>
]]></description><pubDate>Mon, 10 Jul 2017 19:57:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=14739097</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14739097</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14739097</guid></item><item><title><![CDATA[New comment by E6300 in "24-core CPU and I can’t move my mouse"]]></title><description><![CDATA[
<p>It's because the 7-Zip file manager first extracts to %temp% and then copies (not moves) to the drop location. If you use the regular extract function it extracts to the destination directly. Using the Explorer context menu does the same thing, and thus is also fast.</p>
]]></description><pubDate>Mon, 10 Jul 2017 16:11:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=14737204</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14737204</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14737204</guid></item><item><title><![CDATA[New comment by E6300 in "It's been 191 days since Google Drive worked for me"]]></title><description><![CDATA[
<p>It's so annoying that I can't use the arrow keys to scroll. Only Page Up/Down or the mouse.</p>
]]></description><pubDate>Sun, 09 Jul 2017 23:15:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=14732276</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14732276</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14732276</guid></item><item><title><![CDATA[New comment by E6300 in "Generating faces of cats using Generative Adversarial Networks"]]></title><description><![CDATA[
<p>I think the sound is generated locally. Check out the page source, which contains the JS I think is responsible for generation (I haven't checked in detail).</p>
]]></description><pubDate>Thu, 06 Jul 2017 20:00:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=14713409</link><dc:creator>E6300</dc:creator><comments>https://news.ycombinator.com/item?id=14713409</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=14713409</guid></item></channel></rss>