<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: for_xyz</title><link>https://news.ycombinator.com/user?id=for_xyz</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 13 Jun 2026 16:17:11 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=for_xyz" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by for_xyz in "State of the Windows: How many layers of UI inconsistencies are in Windows 10?"]]></title><description><![CDATA[
<p>> I guess one challenge with this is that old school Win32 doesn't really support anything resembling automatic / responsive layout.<p>It gives you all the building blocks to implement it yourself.<p>Remember that Win32 is not UI framework but OS API which allow you to build yourself one (wxWidgets, QT, SWT).</p>
]]></description><pubDate>Sun, 20 Jun 2021 12:36:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=27569394</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=27569394</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27569394</guid></item><item><title><![CDATA[New comment by for_xyz in "State of the Windows: How many layers of UI inconsistencies are in Windows 10?"]]></title><description><![CDATA[
<p>> The latest UI framework (XAML/WinUI) sits on top of a better rendering architecture (compositor) that itself wraps DirectX tech.<p>WinUI/UWP still uses CreateWindowEx and good old WndProc for event loop message handling at the top level on Windows 10.</p>
]]></description><pubDate>Sun, 20 Jun 2021 12:31:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=27569372</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=27569372</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27569372</guid></item><item><title><![CDATA[New comment by for_xyz in "State of the Windows: How many layers of UI inconsistencies are in Windows 10?"]]></title><description><![CDATA[
<p>If you drop something, then you need some kind of replacement for that.<p>I don't see any alternative on where entire OS could be configured other than registry.</p>
]]></description><pubDate>Sat, 19 Jun 2021 07:14:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=27558484</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=27558484</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27558484</guid></item><item><title><![CDATA[New comment by for_xyz in "Windows 11 screenshots leak, show new Start menu and more"]]></title><description><![CDATA[
<p>> I mean, it's an early leaked build. I predict that the file explorer specifically will be completely replaced, which is why it hasn't been updated at all.<p>I really hope that _replacement_ will be as feature complete and useful via keyboard as the current explorer. UWP UI components tend to be unnavigable via keyboard.<p>For example I really like old Win32 listview behaviour to just type in the item name to select it.</p>
]]></description><pubDate>Tue, 15 Jun 2021 20:19:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=27520970</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=27520970</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27520970</guid></item><item><title><![CDATA[New comment by for_xyz in "GNU Coding Standards: Writing Robust Programs"]]></title><description><![CDATA[
<p>> Meanwhile, the big open-source desktop C++ libraries (Qt and WxWindows) still don't fully take advantage of the types and features in the standard library in 2021.<p>Of course not. C++ and libraries don't go along nicely. STL is not really useful for cross boundary interop due the fact that C++ ABI is not stable.<p>Shipping libraries that leak STL types all over the place will only give you headache.</p>
]]></description><pubDate>Sat, 12 Jun 2021 11:09:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=27483609</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=27483609</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27483609</guid></item><item><title><![CDATA[CPU Bugs (2018)]]></title><description><![CDATA[
<p>Article URL: <a href="https://danluu.com/cpu-bugs/">https://danluu.com/cpu-bugs/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=27244941">https://news.ycombinator.com/item?id=27244941</a></p>
<p>Points: 98</p>
<p># Comments: 20</p>
]]></description><pubDate>Sat, 22 May 2021 09:26:32 +0000</pubDate><link>https://danluu.com/cpu-bugs/</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=27244941</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27244941</guid></item><item><title><![CDATA[New comment by for_xyz in "Java Is Underhyped"]]></title><description><![CDATA[
<p>Sorry, my bad. They already started rewriting core components in Rust.<p>Here you go:<p><a href="https://dropbox.tech/infrastructure/rewriting-the-heart-of-our-sync-engine" rel="nofollow">https://dropbox.tech/infrastructure/rewriting-the-heart-of-o...</a></p>
]]></description><pubDate>Sun, 18 Apr 2021 11:33:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=26851595</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=26851595</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26851595</guid></item><item><title><![CDATA[New comment by for_xyz in "WinGet is terrible, I want AppGet back"]]></title><description><![CDATA[
<p>If you start from scratch, I'd suggest to use MSIX [0] instead. It makes auto update trivial to implement with PackageManager.UpdatePackage(url_to_your_msix)[1] or plain  execute via "ms-appinstaller:?source=url_to_your_msix". It'll do diffs properly and you also get package reflection for free via WinRT apis (such as where app is installed, appdata location, app version, etc).<p>[0] <a href="https://docs.microsoft.com/en-us/windows/msix/overview" rel="nofollow">https://docs.microsoft.com/en-us/windows/msix/overview</a><p>[1] <a href="https://docs.microsoft.com/en-us/uwp/api/windows.management.deployment.packagemanager.updatepackageasync?view=winrt-19041" rel="nofollow">https://docs.microsoft.com/en-us/uwp/api/windows.management....</a></p>
]]></description><pubDate>Sun, 18 Apr 2021 07:59:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=26850686</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=26850686</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26850686</guid></item><item><title><![CDATA[New comment by for_xyz in "Java Is Underhyped"]]></title><description><![CDATA[
<p>To prevent half assed refactoring in the first place where only namespaces and classes get refactored while folders and filenames remain as they were. It would just further confuse new devs on the project.</p>
]]></description><pubDate>Sat, 17 Apr 2021 09:48:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=26842971</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=26842971</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26842971</guid></item><item><title><![CDATA[New comment by for_xyz in "Java Is Underhyped"]]></title><description><![CDATA[
<p>In case of the Dropbox please read this:<p>_But as the company grew, new engineers who joined couldn’t understand the code. Clever code is usually short and cryptic, written by and for the individual who came up with it, but is hard for anyone else to understand—and nearly impossible to maintain. Guido called this “cowboy coding culture”. He recognized its value in our early stages of trying to implement things quickly, but knew it wouldn’t be sustainable over time, so he decided to speak up in his own quiet way._<p>And now they'll have to rewrite everything in programming languages where maintenance is not a burden.<p>[0] <a href="https://blog.dropbox.com/topics/company/thank-you--guido" rel="nofollow">https://blog.dropbox.com/topics/company/thank-you--guido</a></p>
]]></description><pubDate>Sat, 17 Apr 2021 09:02:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=26842738</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=26842738</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26842738</guid></item><item><title><![CDATA[New comment by for_xyz in "Java Is Underhyped"]]></title><description><![CDATA[
<p>No, he is in need of writing production quality software together with his medium to big sized dev team and he doesn't want to introduce maintenance burden into his project 10 years from now. Software will get improved during it's lifetime and not overwritten from scratch every 2 years.</p>
]]></description><pubDate>Sat, 17 Apr 2021 08:44:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=26842661</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=26842661</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26842661</guid></item><item><title><![CDATA[New comment by for_xyz in "Java Is Underhyped"]]></title><description><![CDATA[
<p>Of course you can write anything in R but that doesn't mean it will be possible to maintain the codebase for the next 10 maybe 20 years including dev team changes.<p>In other words R is wrong tool to use for building the software just from maintainability standpoint.</p>
]]></description><pubDate>Sat, 17 Apr 2021 07:43:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=26842388</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=26842388</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26842388</guid></item><item><title><![CDATA[New comment by for_xyz in "GNOME has no thumbnails in the file picker and my toilets are blocked"]]></title><description><![CDATA[
<p>Old one yes. New one (since win vista) allows you to pick folders.<p><pre><code>  pFileOpen->SetOptions(FOS_PICKFOLDERS | FOS_PATHMUSTEXIST | FOS_ALLOWMULTISELECT);
 
</code></pre>
<a href="https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nn-shobjidl_core-ifiledialog" rel="nofollow">https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_...</a></p>
]]></description><pubDate>Sun, 10 Jan 2021 23:36:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=25721650</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=25721650</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25721650</guid></item><item><title><![CDATA[New comment by for_xyz in "Windows Subsystem for Linux: The lost potential"]]></title><description><![CDATA[
<p>Which VM software did you use under windows?</p>
]]></description><pubDate>Fri, 20 Nov 2020 12:56:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=25159984</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=25159984</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25159984</guid></item><item><title><![CDATA[New comment by for_xyz in "Windows Subsystem for Linux: The lost potential"]]></title><description><![CDATA[
<p>> So... it's both NTFS and the Windows "subsystems."<p>Ok, probably both on default windows installation due legacy and backward compatibility with dos names [1].<p><a href="https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/fsutil-8dot3name" rel="nofollow">https://docs.microsoft.com/en-us/windows-server/administrati...</a><p>I remember this issue when creating few million of files inside one folder and it was extremelly slow because of 8dot3 name creation. It has to go through each filename to generate short name O(n) when this legacy feature is enabled.<p>After disabling 8dot3 there were no performance issues anymore.<p>> I have no experience with BTRFS, but that doesn't prove anything without knowing more details (the overhead introduced to make it work)<p>I tried to point out following: 
Ext4, Btrfs, Zfs, any other UNIX filesystem will be slow under Windows. NTFS or any Windows first filesystem will be slow on Linux. There is just too much of the differences in OS architecture between the NT and Linux.</p>
]]></description><pubDate>Fri, 20 Nov 2020 12:49:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=25159941</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=25159941</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25159941</guid></item><item><title><![CDATA[New comment by for_xyz in "Windows Subsystem for Linux: The lost potential"]]></title><description><![CDATA[
<p>> so what's the 'Windows way' then?<p>Using either memory mapped files of overlapped io (IOCP).<p>It's tricky to use when you want to write the content since you must preallocate the file before you start with the writing. Appending to file just doesn't work under NT kernel since WriteFile blocks even if you use overlapped io.<p>Devs just need different mentality when it comes to Windows programming compared to Linux. Due the fact that everything under NT kernel is operated asynchronously you'll have to adapt your code to such concept. Meanwhile under Linux you had no other alternative for nearly 30 years (io_uring and friends) so if you wanted to be portable with minimum OS specific code then you had to implement things in synchronous way or write two separate code paths for each OS.<p>Guess which one is used in practice.</p>
]]></description><pubDate>Fri, 20 Nov 2020 11:40:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=25159508</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=25159508</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25159508</guid></item><item><title><![CDATA[New comment by for_xyz in "Windows Subsystem for Linux: The lost potential"]]></title><description><![CDATA[
<p>It's possible to interact with native windows tooling from WSL.<p>Example: 
$ echo "test" > test.txt & notepad.exe test.txt</p>
]]></description><pubDate>Fri, 20 Nov 2020 10:58:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=25159258</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=25159258</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25159258</guid></item><item><title><![CDATA[New comment by for_xyz in "Windows Subsystem for Linux: The lost potential"]]></title><description><![CDATA[
<p>This is the correct answer. Myth that NTFS is slow should already go away.<p>You can already run windows on top of BTRFS if you want but it'll be painfully slow compared to linux [1].<p><a href="https://twitter.com/NTDEV_/status/1327358814891470850" rel="nofollow">https://twitter.com/NTDEV_/status/1327358814891470850</a>
<a href="https://github.com/maharmstone/quibble" rel="nofollow">https://github.com/maharmstone/quibble</a></p>
]]></description><pubDate>Fri, 20 Nov 2020 10:55:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=25159238</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=25159238</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25159238</guid></item><item><title><![CDATA[New comment by for_xyz in "Windows Subsystem for Linux: The lost potential"]]></title><description><![CDATA[
<p>> the bottleneck is that NTFS is a crappy filesystem.<p>Care to explain why do you think NTFS is crap?<p>From my experience it's usually bad assumptions about files under windows and every application or library tries to stick to posix interface when dealing with files (open, read/write, close) which tends to block for longer periods on windows than on linux counterparts which results in significant perfomance loss .<p>Linux first software will always outperform windows implementation and Windows first software will outperform Linux implementations unless you provide separate code paths to properly handle underlying OS architecture and assumptions.<p>On Windows closing the file handle is extremely costly operation due AV checks and file content indexing [1]<p>[1] <a href="https://www.youtube.com/watch?v=qbKGw8MQ0i8" rel="nofollow">https://www.youtube.com/watch?v=qbKGw8MQ0i8</a></p>
]]></description><pubDate>Fri, 20 Nov 2020 08:26:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=25158407</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=25158407</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25158407</guid></item><item><title><![CDATA[New comment by for_xyz in "Windows 10 is now nagging users with full screen Microsoft Edge ads"]]></title><description><![CDATA[
<p>> This ad appeared only when our devices were set to use Google Chrome and Firefox as the default web browser.<p>I have new edge as default browser and I still got this screen.<p>This screen appears if you have other browsers installed even if they are not default.<p>It seems that code quality in Microsoft products keeps dropping rapidly every year.<p>It has already been 5 years and UWP is still unstable and buggy compared to Win32.</p>
]]></description><pubDate>Tue, 17 Nov 2020 09:02:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=25121514</link><dc:creator>for_xyz</dc:creator><comments>https://news.ycombinator.com/item?id=25121514</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25121514</guid></item></channel></rss>