<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: Menu_Overview</title><link>https://news.ycombinator.com/user?id=Menu_Overview</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 22 Apr 2026 22:09:31 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Menu_Overview" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Menu_Overview in "Android and iPhone users can now share files, starting with the Pixel 10"]]></title><description><![CDATA[
<p>AirDrop is faster and more secure and reliable than simple Bluetooth file sharing. There are a number of reasons they weren't going to do that.</p>
]]></description><pubDate>Fri, 21 Nov 2025 18:03:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=46006966</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=46006966</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46006966</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Tags to make HTML work like you expect"]]></title><description><![CDATA[
<p>Often times that is to create a comfortable reading width. (<a href="https://ux.stackexchange.com/questions/108801/what-is-the-best-number-of-paragraph-width-for-readability" rel="nofollow">https://ux.stackexchange.com/questions/108801/what-is-the-be...</a>)</p>
]]></description><pubDate>Mon, 27 Oct 2025 15:48:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=45722339</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=45722339</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45722339</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Svelte’s characteristics that likely contribute most to improved performance"]]></title><description><![CDATA[
<p>Yea, the version of Angular is from 2020. I don't think there is much to be gleamed from this study.</p>
]]></description><pubDate>Wed, 08 Oct 2025 20:39:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=45520362</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=45520362</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45520362</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Genie 2: A large-scale foundation world model"]]></title><description><![CDATA[
<p>Well, what's next? Beyond prototyping, I imagine this is an early step towards more practical agents building their own world model. Better problem solving.<p>Prompt: Here's a blueprint of my new house and a photo of my existing furniture. Show me some interior design options.</p>
]]></description><pubDate>Wed, 04 Dec 2024 17:23:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=42319663</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=42319663</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42319663</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Apple Watch Series 10"]]></title><description><![CDATA[
<p>Yea, this was the one "feature" I've wanted. My S8 is still working just fine, so no upgrade this year, but I'm glad they're trimming it back after several years of slight increases.</p>
]]></description><pubDate>Mon, 09 Sep 2024 20:45:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=41493561</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=41493561</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41493561</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Apple Watch Series 10"]]></title><description><![CDATA[
<p>I've thought about this. How much more battery life would they have to build in for it to be noticeably better?<p>When I charge my watch at the end of the day, I usually have plenty to spare, but not always enough to make it through to the morning (especially if I tracked an exercise). Even if a new watch got 24hrs of battery life, I would still have to charge it at night so I wouldn't really matter. I'd guess that 18hrs it a balance that keeps people content and gives Apple's engineers enough room to fit in all the features they want.<p>Of course, I would love to be able to track a long exercise or a 10-hour hike...but there's a different price tier for that.</p>
]]></description><pubDate>Mon, 09 Sep 2024 20:44:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=41493548</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=41493548</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41493548</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Ask HN: Should I use React for a personal portfolio?"]]></title><description><![CDATA[
<p>If you want to use or show off React, use it. If you want to make it simple, keep it simple.<p>If your portfolio's content is simple enough for one page, or just a unique pages, go for just HTML! You will like it. Static HTML files (with a bit of JS) will be easy to deploy and better for SEO and performance.<p>That said, you might quickly find you want something with more capabilities.<p>Through my experience, you're eventually going to want some sort of template engine. Want to reuse the same "article" layout or you want a for-loop over a list of articles? Templates. Your template engine could be as simple as Pug or Handlebars templates, no client-side rendering needed yet. Compile your templates and deploy your HTML files.<p>Pug (or other template engines) will probably carry you a long ways. The next step would be some sort of static site generator. This is basically the same as Pug, with with extra options and more structure. Hugo and Jekyll are popular, but there are a lot of options. Deploys are the same: build locally, deploy, or set it up with some hoster like Netlify or Vercel to build and deploy automatically (and for free!).<p>The next level is something like Nuxt, Vuepress, or Next, which can generate static websites, but also give you fancy things like client-side rendering for fancy page transitions (although there is now a native way to accomplish this with just HTML and CSS!). My blog articles are written in Markdown so they are easy to port to other frameworks or themes. This is the approach that I use because I like to stay up to date with Vue...but you'll spend a lot more time "upgrading" things instead of building or writing. Just my experience.</p>
]]></description><pubDate>Tue, 02 Jul 2024 22:20:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=40860987</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=40860987</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40860987</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Apple Discontinuing Apple Pay Later"]]></title><description><![CDATA[
<p>Why isn't is sustainable? Bad for customers, good for credit comapnies, but it isn't any different from other kinda of credit card debt, is it?<p>I considered it a few times, but like, it only spaced the payments out over 6 weeks and I had to unfreeze my credit report so...it wasn't a big win.</p>
]]></description><pubDate>Mon, 17 Jun 2024 19:59:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=40710351</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=40710351</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40710351</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Apple introduces M4 chip"]]></title><description><![CDATA[
<p>I was ready to buy one today, too. Disappointing.<p>I miss my old iPad mini 4. I guess I could try the 11" iPad, but I think I'd prefer it to be smaller.</p>
]]></description><pubDate>Tue, 07 May 2024 16:29:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=40287868</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=40287868</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40287868</guid></item><item><title><![CDATA[New comment by Menu_Overview in "GPT-4.5 or GPT-5 being tested on LMSYS?"]]></title><description><![CDATA[
<p>Sorry?</p>
]]></description><pubDate>Mon, 29 Apr 2024 17:05:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=40201067</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=40201067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40201067</guid></item><item><title><![CDATA[New comment by Menu_Overview in "GitHub Copilot Workspace: Technical Preview"]]></title><description><![CDATA[
<p>> and it would have been faster to just do it.<p>False. Obviously this depends on the work, but an LLM is going to get you 80-90% of the way there. It can get you 100% of the way there, but I wouldn't trust it, and you still need to proof read.<p>In the best of times, it is about as good as a junior engineer. If you approach it like you're pair programming with a junior dev that costs <$20/mo then you're approaching it correctly.</p>
]]></description><pubDate>Mon, 29 Apr 2024 16:57:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=40200955</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=40200955</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40200955</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Help us invent CSS Grid Level 3, a.k.a. "Masonry" layout"]]></title><description><![CDATA[
<p>If you read it to the end, you'll see their note on the name. That is also something they want up for debate.</p>
]]></description><pubDate>Tue, 23 Apr 2024 21:39:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=40137643</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=40137643</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40137643</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Kobo announces color e-readers"]]></title><description><![CDATA[
<p>I also love my Kobo.<p>Only issue I have is syncing. There is no wireless sync, right? I have to plug it in to sync my library and tack on extra files.<p>The Overdrive/Libby support is excellent, though.</p>
]]></description><pubDate>Fri, 12 Apr 2024 20:47:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=40017479</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=40017479</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40017479</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Show HN: PubCrank- the Markdown editor for your static site generator"]]></title><description><![CDATA[
<p>This only works with Google products.</p>
]]></description><pubDate>Thu, 28 Mar 2024 17:27:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=39854748</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=39854748</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39854748</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Ugly Avatar"]]></title><description><![CDATA[
<p>You'll need a library that can render to some 2D-context that can then be converted to PNG.<p>JS is probably where you should look. You might be able to find a good PHP drawing library but I've never come across that in my work. Lots of image converting libraries out there (usually just a wrapper around ImageMagik), but "drawing images" usually a client-side thing and you'll find more support for it.<p>In JS, you'll draw the image to a `<canvas>` element, which can then be downloaded as a PNG. You could go the SVG route, too, depending on the art style. Canvas is the safer bet.</p>
]]></description><pubDate>Mon, 25 Mar 2024 19:03:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=39820091</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=39820091</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39820091</guid></item><item><title><![CDATA[New comment by Menu_Overview in "Google: Angular and Wiz Are Merging"]]></title><description><![CDATA[
<p>Yea, but look at how fast that 11MB loads.</p>
]]></description><pubDate>Mon, 25 Mar 2024 15:57:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=39817942</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=39817942</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39817942</guid></item><item><title><![CDATA[New comment by Menu_Overview in "U.S. sues Apple, accusing it of maintaining an iPhone monopoly"]]></title><description><![CDATA[
<p>Thats for the writeup. I tend to agree with most of those, although the "super app" things is weird to me...I don't like the idea of "super apps" because it is hard for the user to share only the minimal permissions.</p>
]]></description><pubDate>Thu, 21 Mar 2024 19:50:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=39783537</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=39783537</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39783537</guid></item><item><title><![CDATA[New comment by Menu_Overview in "VitePress 1.0"]]></title><description><![CDATA[
<p>I think the etymology for both of these kinda comes from "letterpress".<p>> producing many copies by repeated direct impression</p>
]]></description><pubDate>Thu, 21 Mar 2024 18:06:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=39782184</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=39782184</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39782184</guid></item><item><title><![CDATA[New comment by Menu_Overview in "VitePress 1.0"]]></title><description><![CDATA[
<p>VitePress is geared more for documentation websites, while Nuxt Content is more for regular websites.<p>Of course, VitePress can be used for all sorta of stuff. My old website used to be based on it. If you click through the sites using VitePress you can see the similarities and what you get for free with the default theme.</p>
]]></description><pubDate>Thu, 21 Mar 2024 18:03:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=39782141</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=39782141</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39782141</guid></item><item><title><![CDATA[New comment by Menu_Overview in "VitePress 1.0"]]></title><description><![CDATA[
<p>Vite Pres has client-side routing, right? Like, it works without JS, but if JS is enabled, it runs as a SPA.</p>
]]></description><pubDate>Thu, 21 Mar 2024 16:51:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=39781123</link><dc:creator>Menu_Overview</dc:creator><comments>https://news.ycombinator.com/item?id=39781123</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39781123</guid></item></channel></rss>