<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: 8mobile</title><link>https://news.ycombinator.com/user?id=8mobile</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 20 Apr 2026 12:54:18 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=8mobile" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Show HN: Rewrite Text – On-Device AI Writing Tool for iOS]]></title><description><![CDATA[
<p>Hi HN,<p>I built a small iOS app that performs text rewriting and summarization entirely on-device using Apple’s Foundation Models (iOS 18+).<p>Most AI writing tools rely on cloud APIs. That introduces API costs, privacy concerns, and infrastructure overhead. I wanted to explore what it looks like to build a useful AI writing utility with:<p>- no backend
- no external APIs
- no server costs
- fully offline support<p>The app can rewrite text in different tones, generate summaries, extract key points, and produce short post-ready output. Everything runs locally on supported devices.<p>Why I built it<p>I was curious whether on-device language models are “good enough” for everyday writing tasks like cleaning up emails, summarizing articles, or restructuring notes.<p>I also wanted to test a different economics model: since inference runs locally, marginal cost per user is essentially zero. That allowed me to avoid subscriptions and instead use a simple free tier with an optional one-time unlock.<p>Technical notes<p>- SwiftUI main app
- Share Extension for system-wide text processing
- Apple FoundationModels for local inference
- No networking layer<p>Some interesting constraints compared to cloud LLMs:
- Smaller context window
- More sensitive prompt design
- Device-dependent performance
- Latency perception is critical in extensions<p>On-device models are obviously less capable than large cloud models, but for constrained rewriting tasks they are surprisingly usable.<p>If anyone is experimenting with FoundationModels or on-device inference, I’d be curious how you’re handling prompt structure and long input segmentation.<p>App Store link:
<a href="https://apps.apple.com/us/app/rewrite-text-ai-writing-tool/id6758913519">https://apps.apple.com/us/app/rewrite-text-ai-writing-tool/i...</a><p>Happy to answer technical questions.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47162985">https://news.ycombinator.com/item?id=47162985</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 26 Feb 2026 07:27:59 +0000</pubDate><link>https://apps.apple.com/us/app/rewrite-text-ai-writing-tool/id6758913519</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=47162985</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47162985</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: Layoffstoday – Open database tracking for 10k Companies"]]></title><description><![CDATA[
<p>Great idea for tracking layoffs, the graphics are simple and clean. 
It would be nice to filter by country and create monthly and quarterly reports to see trends. 
The metrics section should be expanded.</p>
]]></description><pubDate>Fri, 09 Jan 2026 05:52:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=46550487</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=46550487</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46550487</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: macOS menu bar app to track Claude usage in real time"]]></title><description><![CDATA[
<p>This is a great idea and a useful one for avoiding having to monitor Claude's consumption. 
I've often exceeded the limit mid-process. If I'm not mistaken, something like this already exists, but I like the graphics and how the information is displayed. 
Congratulations!</p>
]]></description><pubDate>Fri, 09 Jan 2026 05:48:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=46550468</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=46550468</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46550468</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: A Minimal Monthly Task Planner (printable, offline, no signup)"]]></title><description><![CDATA[
<p>Thanks for the reply, I thought so because I use it in paper form. A to-do list for the selected month, along with notes, is helpful.</p>
]]></description><pubDate>Fri, 05 Dec 2025 05:53:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=46157209</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=46157209</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46157209</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: A Minimal Monthly Task Planner (printable, offline, no signup)"]]></title><description><![CDATA[
<p>I really like your Minimal Monthly Task Planner, is it also responsive?
Great idea, simple, I like the side notes; if possible, I'd add a list above or below.<p>Thanks, I'll use it and print it at home.</p>
]]></description><pubDate>Thu, 04 Dec 2025 05:51:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=46144218</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=46144218</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46144218</guid></item><item><title><![CDATA[Show HN: Bookmark Bar – Browser Hub (Open Any Bookmark in Any Browser on macOS)]]></title><description><![CDATA[
<p>Hi HN,<p>I built a small macOS menu bar utility after running into the same daily annoyance for years: bookmarks are still tied to the browser you're using.<p>As a developer I often switch between Safari, Chrome, Arc, Brave and Edge depending on testing, debugging extensions, or isolating workflows. Every browser keeps its own independent bookmark list, and syncing them (or importing/exporting) never really works well. I kept losing structure or duplicating folders.<p>Why I built it
I needed a simple way to access the same set of bookmarks no matter which browser I was in. Instead of syncing browser-to-browser or relying on cloud extensions, I thought a menu bar layer on top of all browsers would be more reliable and reduce cognitive load.<p>Platform & Tech
- macOS menu bar app
- Built with SwiftUI + SwiftData
- Uses system APIs to open URLs in specific browsers
- All data is stored locally
- No accounts, no network usage<p>If you're curious
Here’s the App Store link:
<a href="https://apps.apple.com/us/app/bookmark-bar-browser-hub/id6755682496?mt=12">https://apps.apple.com/us/app/bookmark-bar-browser-hub/id675...</a><p>Happy to answer technical questions or hear ideas from others who work with multiple browsers daily (profiling, testing setups, automation, etc.).</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46087034">https://news.ycombinator.com/item?id=46087034</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 29 Nov 2025 12:28:33 +0000</pubDate><link>https://apps.apple.com/us/app/bookmark-bar-browser-hub/id6755682496?mt=12</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=46087034</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46087034</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: Awesome J2ME"]]></title><description><![CDATA[
<p>Wow, what a project! I've spent a lot of time on j2me developing various utilities. 
Those were the good old days when you could try everything on your basic Nokia or Symbian. 
Here are my applications:
<a href="https://www.8mobile.org/products/j2me/moneymanager/" rel="nofollow">https://www.8mobile.org/products/j2me/moneymanager/</a>
<a href="https://www.8mobile.org/products/j2me/moneymanager2/" rel="nofollow">https://www.8mobile.org/products/j2me/moneymanager2/</a>
<a href="https://www.8mobile.org/products/j2me/rssmanager/" rel="nofollow">https://www.8mobile.org/products/j2me/rssmanager/</a>
<a href="https://www.8mobile.org/products/j2me/spymanager/" rel="nofollow">https://www.8mobile.org/products/j2me/spymanager/</a><p>Thanks
Otto</p>
]]></description><pubDate>Fri, 21 Nov 2025 07:30:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=46002079</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=46002079</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46002079</guid></item><item><title><![CDATA[Show HN: AppReviewAI Analyze App Store Reviews Locally with Apple's On-Device AI]]></title><description><![CDATA[
<p>Hi HN,<p>I’ve been experimenting with Apple’s new on-device Foundation Models (iOS 18 / macOS Sequoia) and built a small tool around them: AppReview AI, a Mac + iPad app to analyze App Store reviews privately and offline.<p>The motivation was simple: as an indie developer, reading hundreds of reviews from competitor apps was slow, noisy, and hard to extract signal from. Existing tools rely on cloud processing, API keys, or external servers. I wanted something lightweight and private that used Apple’s new local AI instead.<p>What it does
- Summarizes reviews using Apple’s on-device models
- Extracts sentiment, recurring issues, bugs, and feature requests
- Shows per-country ratings to detect market differences
- Displays basic estimated downloads and revenue (SensorTower public data)
- Syncs selected apps and analyses through iCloud<p>All AI processing stays on-device. No external servers, no accounts, no OpenAI key.<p>Why I built it
I wrote a recent article on Apple Foundation Models and was surprised how far the local models can go with the right prompts. This project was a way to test how practical on-device analysis could be in a real use case for developers.<p>Free tier
The app has a small free tier (1 app + 3 AI analyses) so anyone can try it without registration.<p>If you’re curious, here’s the link: <a href="https://apps.apple.com/lu/app/appreview-ai-review-analyzer/id6755069850?mt=12">https://apps.apple.com/lu/app/appreview-ai-review-analyzer/i...</a><p>I’d love feedback, criticism, or ideas for what to analyze next (keywords, rankings, crashes, changelogs, etc.).
Happy to answer technical questions about the on-device AI integration as well.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45989976">https://news.ycombinator.com/item?id=45989976</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 20 Nov 2025 07:37:27 +0000</pubDate><link>https://apps.apple.com/lu/app/appreview-ai-review-analyzer/id6755069850?mt=12</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=45989976</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45989976</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: MyTimers.app offline-first PWA with no build step and zero dependencies"]]></title><description><![CDATA[
<p>The confusion arises because it displays the timer in minutes but sets it in seconds. Thanks</p>
]]></description><pubDate>Wed, 05 Nov 2025 06:19:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=45819866</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=45819866</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45819866</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: MyTimers.app offline-first PWA with no build step and zero dependencies"]]></title><description><![CDATA[
<p>Hi,
Congratulations on mytimers.app. 
The graphics are too basic, but they need some work. Is it possible to create a timer other than 1 minute? I don't understand how.<p>Otherwise, keep it the same. 
Thanks</p>
]]></description><pubDate>Tue, 04 Nov 2025 06:25:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=45807915</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=45807915</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45807915</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: Learn German with Games"]]></title><description><![CDATA[
<p>I tried the app because I'd like to improve my German. 
The UI is well-designed, but it would be nice to have prompts like Duolingo, as this is a bit too difficult.<p>I'll test it more, congratulations.</p>
]]></description><pubDate>Thu, 30 Oct 2025 05:50:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=45756792</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=45756792</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45756792</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: I Built DevTools for Blazor (Like React DevTools but for .NET)"]]></title><description><![CDATA[
<p>Thank you so much for this tool, it was just what was missing for Blazor development. 
I can finally avoid having to include Console.WriteLine everywhere.<p>Do you have any other features in mind? 
Thanks</p>
]]></description><pubDate>Mon, 27 Oct 2025 05:46:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=45717776</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=45717776</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45717776</guid></item><item><title><![CDATA[Show HN: TimeCalc – A Simple and Accurate Time Calculator for iPhone/iPad/Mac]]></title><description><![CDATA[
<p>Hi HN,<p>TimeCalc is a small utility I’ve been maintaining for years. I originally built it to help pilots log and calculate flight hours without the hassle of spreadsheets or clunky online tools.<p>Over time, it evolved into a simple and accurate time calculator that lets you add, subtract, and compare hours, minutes, and seconds — or even calculate the exact difference between two dates.<p>This new version was completely rebuilt for iOS 26 and macOS, with:
- A clean, native interface
- iCloud sync across devices
- No ads, no accounts, no third-party servers
- Accurate operations on hours, minutes, seconds, and dates<p>It’s designed to do one thing well: make time math fast and reliable.
Data stays in your iCloud account, and everything works offline.<p>I’d love feedback especially from anyone who’s built or used similar tools. Are there features or workflows you’d expect from a native time calculator that could make it better?<p>Thanks for checking it out.
App Store link: <a href="https://apps.apple.com/us/app/time-calc-time-calculator/id1279195300">https://apps.apple.com/us/app/time-calc-time-calculator/id12...</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45512976">https://news.ycombinator.com/item?id=45512976</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 08 Oct 2025 07:00:04 +0000</pubDate><link>https://apps.apple.com/us/app/time-calc-time-calculator/id1279195300</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=45512976</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45512976</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: I made a website to track my subscriptions"]]></title><description><![CDATA[
<p>Hi, the website is well-designed. What makes it different/special from other existing ones?</p>
]]></description><pubDate>Mon, 22 Sep 2025 04:33:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=45329118</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=45329118</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45329118</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: I'm a dermatologist and I vibe coded a skin cancer learning app"]]></title><description><![CDATA[
<p>You've really had a great idea, and maybe you can save lives with this. Do you process the images yourself? Do you pass them to some AI? How does it work for privacy? Do you delete them afterwards? Thanks and congratulations.</p>
]]></description><pubDate>Mon, 08 Sep 2025 04:50:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=45164726</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=45164726</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45164726</guid></item><item><title><![CDATA[Show HN: CodeSwissKnife Bar – Dev tools in your macOS menu bar (offline)]]></title><description><![CDATA[
<p>Hi HN!<p>I'm a developer who got tired of jumping between tabs just to run everyday tasks — decoding Base64, converting timestamps, generating UUIDs, etc.<p>So I built a small macOS menu bar app called CodeSwissKnife Bar. It gives you quick access to essential dev tools, all running 100% offline.<p>No accounts, no cloud, no tracking — just useful utilities where you need them.<p>Right now it includes:
- Base64 / URL / HTML encoder & decoder
- UUID and color converters
- Unix timestamp ↔ Date
- Text base conversions (binary / decimal / hex)
- A simple daily Scrum journal
- One-click feedback shortcut<p>It’s not trying to replace IDEs or big tools — I just wanted to remove friction from tiny, repetitive dev actions.<p>Happy to share it here and get your thoughts!
<a href="https://www.codeswissknife.com/codeswissknifebar.html" rel="nofollow">https://www.codeswissknife.com/codeswissknifebar.html</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44755491">https://news.ycombinator.com/item?id=44755491</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 01 Aug 2025 11:49:13 +0000</pubDate><link>https://codeswissknife.com/codeswissknifebar.html</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=44755491</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44755491</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: I built a biological network visualization tool"]]></title><description><![CDATA[
<p>Hi, I'm interested in the tool but I get this error, 502 Bad Gateway.</p>
]]></description><pubDate>Sat, 26 Jul 2025 06:18:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=44691828</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=44691828</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44691828</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: I built BodyCount to get an accurate 'number'"]]></title><description><![CDATA[
<p>Is this really necessary? It makes no sense.</p>
]]></description><pubDate>Fri, 25 Jul 2025 04:59:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=44679700</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=44679700</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44679700</guid></item><item><title><![CDATA[New comment by 8mobile in "Show HN: iPantry – Track food inventory and reduce waste"]]></title><description><![CDATA[
<p>Thanks for the comment, I built the app because I needed it myself. My wife and I often forgot what we had at home, bought duplicates, or let food expire. We still use it today mainly as a shared shopping list and to track key items it’s simple but works for us.</p>
]]></description><pubDate>Wed, 16 Jul 2025 04:10:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=44578584</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=44578584</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44578584</guid></item><item><title><![CDATA[Show HN: iPantry – Track food inventory and reduce waste]]></title><description><![CDATA[
<p>Hi HN,<p>iPantry is a simple app I built to solve a recurring problem in my home: forgetting what we already had in the pantry or fridge, buying duplicates, and letting food expire.<p>With a busy schedule and a shared household, it became easy to lose track of what was available, especially when grocery shopping was split among family members. We'd end up with multiple milk cartons or expired pasta tucked away in the back of the cupboard.<p>I couldn’t find an app that was both easy to use and shareable with native iOS tools. Most were either too complex or locked features behind account systems or external sync.<p>So I made iPantry:
- Track products with quantities and expiration dates
- Get low stock and expiry alerts
- Export lists or share items via iCloud and Apple Reminders
- All data stays in your iCloud account, synced across devices
- No registration or third-party service required<p>It’s a small tool built for clarity and speed. I'd love to hear your thoughts, ideas, or critique. 
Thanks for taking a look.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44568541">https://news.ycombinator.com/item?id=44568541</a></p>
<p>Points: 1</p>
<p># Comments: 3</p>
]]></description><pubDate>Tue, 15 Jul 2025 06:46:11 +0000</pubDate><link>https://apps.apple.com/us/app/ipantry-food-inventory/id1291843113</link><dc:creator>8mobile</dc:creator><comments>https://news.ycombinator.com/item?id=44568541</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44568541</guid></item></channel></rss>