<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: trestacos</title><link>https://news.ycombinator.com/user?id=trestacos</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 12 Sep 2026 07:12:20 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=trestacos" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by trestacos in "Show HN: GETadb.com – every GET request creates a DB"]]></title><description><![CDATA[
<p>As someone looking to use supabase for a project, I'd love to learn more about what you mean by supabase rots - did you run into scaling problems?</p>
]]></description><pubDate>Fri, 08 May 2026 23:06:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=48069866</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=48069866</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48069866</guid></item><item><title><![CDATA[New comment by trestacos in "Device uses wind to create ammonia out of air"]]></title><description><![CDATA[
<p>+1 "alchemy of air" is a great read. The angle that would be most interesting to the HN crowd is that it exposed me to how much innovation was happening in chemistry in this pre-WWI era. Reminds me a bit of silicon valley.<p>The also a fascinating look at how the inventors got heavily caught up in WWI and WWII due to being in Germany and how tied up their industry became with government. Interesting to reflect on in current times.<p>Truly a great book.</p>
]]></description><pubDate>Thu, 16 Jan 2025 17:23:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=42728153</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=42728153</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42728153</guid></item><item><title><![CDATA[New comment by trestacos in "Hoarder: Self-hostable bookmark-everything app"]]></title><description><![CDATA[
<p>Pikapods looks to be running containers for you, preconfigured for the self hosted apps they support. That's a cool service, I assume there are other similar services around.<p>The concept I'm thinking about is different - it doesn't run any app code on the server, the apps are SPAs that run in the browser only (no backend supporting code), and then the server just syncs the data from the apps. This means the apps can focus on building ux/business logic and not worry about database, how data gets to/from clients, identity, etc. Somewhat like firebase but where the users pays for the server, not the app. That should hopefully be simpler for developers, and theres a lot less likelihood of issues with server config/etc (although presumably pikapod will handle that). It should also be cheaper since you're not constantly running a container, just storing data.<p>I'm not sure if it's a useful concept or not yet :)</p>
]]></description><pubDate>Wed, 25 Dec 2024 17:51:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=42510002</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=42510002</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42510002</guid></item><item><title><![CDATA[New comment by trestacos in "Hoarder: Self-hostable bookmark-everything app"]]></title><description><![CDATA[
<p>I've been thinking about building a service that makes it easy to self host apps like this. I'm curious if you'd find it useful.<p>It would host webapps like yours that use in browser sqlite to store data, then the service provide a sync their sqlite data across different devices. The user not the app would pay for the storage of the data, so they would own their data. And you can use CSP to lock down the app from sharing with other domains, meaning an app can't leak your data.<p>The service would handle identity (only you can access your sqlite data - the app just ) and could provide an app store like experience with different apps of this type.<p>Sort of like a firebase style backend as a service, but the user would own the data instead of the app.</p>
]]></description><pubDate>Tue, 24 Dec 2024 14:59:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=42502313</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=42502313</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42502313</guid></item><item><title><![CDATA[New comment by trestacos in "What if California's dams fail?"]]></title><description><![CDATA[
<p>Practical engineering has a good detailed walkthrough of what happened at Oroville dam from an engineering perspective: <a href="https://youtu.be/jxNM4DGBRMU" rel="nofollow noreferrer">https://youtu.be/jxNM4DGBRMU</a></p>
]]></description><pubDate>Fri, 30 Jun 2023 03:45:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=36530281</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=36530281</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36530281</guid></item><item><title><![CDATA[New comment by trestacos in "The Hypermedia-Driven Application (HDA) Architecture"]]></title><description><![CDATA[
<p>Thanks for finding/sharing those links. As I read them they reminded me a lot of what I've been seeing as I have been using Remix (remix.run)<p>For example: in "how to update content", they discuss path dependent updates. Those are how remix does all it's updates - they use nested routes, so it knows it only needs to update a part of the page (eg only update the content of the page, leaving the nav alone, since an update occured only in the content part of the page)<p>I think the htmx folks would have a lot of issues with remix but I think remix takes a lot of the best of both worlds. Remix focuses on using basic html/http concepts and layering some smart JavaScript on top of that.<p>To return the favor, here's a couple docs I found helpful:<p><a href="https://remix.run/docs/en/v1/tutorials/jokes" rel="nofollow">https://remix.run/docs/en/v1/tutorials/jokes</a> - this is their advanced tutorial and it's a bit long but once you get past the setup steps it's a really well written introduction to the concepts of remix through useful examples. One of the better tutorials I've ever read.<p>And then two of their technical docs which are a bit hidden in their site but useful:
<a href="https://remix.run/docs/en/v1/pages/philosophy" rel="nofollow">https://remix.run/docs/en/v1/pages/philosophy</a><p><a href="https://remix.run/docs/en/v1/pages/technical-explanation" rel="nofollow">https://remix.run/docs/en/v1/pages/technical-explanation</a><p>The key concepts is remix is understanding the loader(), UI component, and action() interactions and how those work with minimal code changes in:
1) server side only mode (with only raw html served)
2) server + smart JS client mode</p>
]]></description><pubDate>Mon, 07 Feb 2022 03:03:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=30239794</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=30239794</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30239794</guid></item><item><title><![CDATA[New comment by trestacos in "Mozilla's Firefox Relay to be added to disposable-email-domains blacklist"]]></title><description><![CDATA[
<p>I think another option here is for email masking services to allow other services to ask if a user has registered at their site before. Details: <a href="https://dev.to/stephensisk/throwaway-email-blocklists-want-to-block-firefox-relay-heres-an-alternative-470f" rel="nofollow">https://dev.to/stephensisk/throwaway-email-blocklists-want-t...</a><p>I'd be happy to work on building that for my service if someone is interested in using it.<p>I think your point about mozilla's pricing being too cheap is an interesting one.  I don't think of the pricing as $1 - I think it as $1/month, so it builds over time. But clearly it would be a bigger deterrent if it cost more.<p>I think blocking these email masking services and treating them exactly like throwaway email services is the wrong way to go since I think a lot of users want to use something like this. (discloure: I'm working on <a href="https://www.thxnothx.com" rel="nofollow">https://www.thxnothx.com</a> which is also an email masking service combined with some other features)</p>
]]></description><pubDate>Fri, 21 Jan 2022 17:40:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=30026987</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=30026987</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30026987</guid></item><item><title><![CDATA[Android's New Secret Weapon]]></title><description><![CDATA[
<p>Article URL: <a href="http://trestacos.quora.com/Androids-New-Secret-Weapon">http://trestacos.quora.com/Androids-New-Secret-Weapon</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=6328478">https://news.ycombinator.com/item?id=6328478</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 04 Sep 2013 16:04:26 +0000</pubDate><link>http://trestacos.quora.com/Androids-New-Secret-Weapon</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=6328478</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=6328478</guid></item><item><title><![CDATA[New comment by trestacos in "Charlie Stross on Girls Around Me"]]></title><description><![CDATA[
<p>A fundamental part of charles' argument is that in order to sell ads, facebook must encourage you to set your profile settings to public. That's not the case. It doesn't matter whether you've set your profile to fully private - Facebook's privacy settings don't affect whether or not marketers can target you with ads.  In fact, in that regard facebook is incented to protect your privacy so that you'll be comfortable putting more information in the site, which they can then use for better targeting. Since marketers don't get specific information about <i>you</i> when you're targeted, your privacy hasn't been breached in doing so.<p>This doesn't change that people should be very careful about their privacy settings, but the fact that facebook does targeted ads doesn't mean they have incentives to encourage you to make everything you post public.</p>
]]></description><pubDate>Sat, 31 Mar 2012 15:03:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=3780443</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=3780443</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=3780443</guid></item><item><title><![CDATA[New comment by trestacos in "Charlie Stross on Girls Around Me"]]></title><description><![CDATA[
<p>I think Charles is right to be concerned about the current state of privacy in social media, but I take issue with his statement that facebook is deliberately making it harder to make your content private. If you click on Privacy setting in facebook today the first thing you're greeted with is a big control asking you if you want your profile to be public /friends/custom. But first you have to care enough to click on it.<p>Building social network privacy controls is not an easy problem b/c people don't want to do the extra work that's involved in setting privacy on things that they post AND it's confusing. Most people just don't want to choose a circle for their 300 fb friends.<p>Facebook has gone through many iterations of privacy controls - <a href="https://blog.facebook.com/blog.php?post=391922327130" rel="nofollow">https://blog.facebook.com/blog.php?post=391922327130</a> goes into some of that history. Some of them even included google circle-like functionality for privacy. No one used them.<p>I'm not saying that these controls couldn't be improved, but the point here is that privacy controls take <i>work</i> from users. Until society as a whole is aware of these issues (and Girls Around Me does a great job of it :), people aren't going to invest the time to do it.<p>TL;DR - building privacy controls are hard. The industry as a whole needs to improve them, but society also needs to learn to care about their privacy so they actually use what's available to them.</p>
]]></description><pubDate>Sat, 31 Mar 2012 14:50:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=3780409</link><dc:creator>trestacos</dc:creator><comments>https://news.ycombinator.com/item?id=3780409</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=3780409</guid></item></channel></rss>