<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: ipodopt</title><link>https://news.ycombinator.com/user?id=ipodopt</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 29 Jun 2026 21:27:29 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=ipodopt" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by ipodopt in "Age verification is just a precursor to automated attribution of speech"]]></title><description><![CDATA[
<p>Maybe not the laws, but the systems being built are attribute based.</p>
]]></description><pubDate>Mon, 29 Jun 2026 13:55:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48719347</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=48719347</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48719347</guid></item><item><title><![CDATA[New comment by ipodopt in "Adventures in Rust: Bringing Exchange Support to Thunderbird"]]></title><description><![CDATA[
<p>I want more integrated office support in Linux. I am happy with any and all attempts that can improve it.<p>On the rust side, it doesn't seem like they have gotten to benefit too much from the ecosystem yet (one crate for XML deserialization). But I am sure now that it will come with time.</p>
]]></description><pubDate>Sun, 21 Apr 2024 04:45:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=40103241</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=40103241</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40103241</guid></item><item><title><![CDATA[Gitea Enterprise]]></title><description><![CDATA[
<p>Article URL: <a href="https://about.gitea.com/products/gitea-enterprise/">https://about.gitea.com/products/gitea-enterprise/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=39687979">https://news.ycombinator.com/item?id=39687979</a></p>
<p>Points: 40</p>
<p># Comments: 18</p>
]]></description><pubDate>Wed, 13 Mar 2024 04:00:25 +0000</pubDate><link>https://about.gitea.com/products/gitea-enterprise/</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=39687979</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39687979</guid></item><item><title><![CDATA[New comment by ipodopt in "Omg.lol: An Oasis on the Internet"]]></title><description><![CDATA[
<p>It's $20 per year, not per month... and there are promo codes for $5/year available most of the time. I don't use the site but browsed the guy's mastodon feed.</p>
]]></description><pubDate>Mon, 11 Dec 2023 15:40:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=38601535</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=38601535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38601535</guid></item><item><title><![CDATA[New comment by ipodopt in "SiFive Gives Its WorldGuard Security Model to the RISC-V Community"]]></title><description><![CDATA[
<p>I believe this is equivalent to Intel SGX. Having this open source is encouraging.</p>
]]></description><pubDate>Fri, 02 Jun 2023 20:26:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=36170295</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=36170295</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36170295</guid></item><item><title><![CDATA[New comment by ipodopt in "Donald Knuth’s Christmas Lecture (2022) [video]"]]></title><description><![CDATA[
<p>Pragmatically, what are good use cases of a twintree data structure?</p>
]]></description><pubDate>Sun, 25 Dec 2022 20:52:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=34131107</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=34131107</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34131107</guid></item><item><title><![CDATA[New comment by ipodopt in "‘We don’t have to feel like prey’: the female joggers running with guns"]]></title><description><![CDATA[
<p>If you had to bring one thing on a jog for protection it should be a well trained dog. It can deter, warn, and respond to an attack. A concealed carry only does the last thing, increase your ability to respond to an attack. Also, the dog is arguable a more enjoyable companion on the run. Counter argument would be that the dog is a lot of maintenance.<p>An open carry in addition to the dog would probably keep you safe outside a war zone.</p>
]]></description><pubDate>Fri, 23 Sep 2022 13:41:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=32951842</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=32951842</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32951842</guid></item><item><title><![CDATA[New comment by ipodopt in "Rust Is Hard, Or: The Misery of Mainstream Programming"]]></title><description><![CDATA[
<p>True, but I suspect that without a truly global prescient scheduler it is almost never worth it to core switch unless you generally have really long tasks.<p>For an efficient core context switch the scheduler must accurately predict that the source (current) core won't be free for the duration of the full core context switch time and that the sink core will be free by the time the meta context gets there and will have been free by the time the rest gets there. Otherwise, the scheduler ends up thrashing the cpu (it is actually a bit worse as future task might need same context so you have to be aware of the future). So, for the scheduler to know this it would need to be:<p>- Global: The only scheduler on the system or basically rafting with all the other schedulers on the system<p>- Prescient: The scheduler(s) would need to be able to predict all tasks, thier context, and work time per task perfectly. Which could really could only happen when everything is static and hence deterministic.<p>For example, I think most tasks people are throwing at async are web requests. Most actually take the core an order of magnitude shorter time to compute then the time it takes passing the context from one core to another and they are all unpredictable to the scheduler. In this scenario I could see the scheduler taking up the majority of computational time on the system. So turn on multi-threading + async on a quad core and you will get worse bandwidth and latency(always) for all your pains.<p>EDIT: Although this single data point would tell me I am wrong (see description):<p><a href="https://www.youtube.com/watch?v=IG-wGXENTt8" rel="nofollow">https://www.youtube.com/watch?v=IG-wGXENTt8</a></p>
]]></description><pubDate>Fri, 03 Jun 2022 13:39:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=31608106</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=31608106</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31608106</guid></item><item><title><![CDATA[New comment by ipodopt in "Rust Is Hard, Or: The Misery of Mainstream Programming"]]></title><description><![CDATA[
<p>Thanks for the link, very helpful :)</p>
]]></description><pubDate>Fri, 03 Jun 2022 13:25:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=31607895</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=31607895</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31607895</guid></item><item><title><![CDATA[New comment by ipodopt in "Rust Is Hard, Or: The Misery of Mainstream Programming"]]></title><description><![CDATA[
<p>It has been a sec but if I were to do another multi-threaded  async Rust project I would do one thread per async runtime and explicitly pass anything that needed to be shared.<p>This should be more ergonomic as this should get rid of everything needing to have send/sync traits. I also suspect it may be more performant as I am not sure how good the async runtimes are about keeping scopes pinned to a particular core so its not constantly jumping around and busting the l1 caches (which would be extremely detrimental to compute latency and bandwidth)... Happy to be schooled on any of this.</p>
]]></description><pubDate>Fri, 03 Jun 2022 00:15:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=31602386</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=31602386</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31602386</guid></item><item><title><![CDATA[New comment by ipodopt in "Ask HN: How can I best utilize $20k towards a startup idea?"]]></title><description><![CDATA[
<p>I am not an expert but was in your shoes a few years ago so check and think on what I say.<p>The best chance of success will come from having more development time. So don't spend your money. You could also find partners, but make sure there is a peaking order (one of the founders has a plurality). So join someones existing project or sweat enough over your own that other founders would be willing to join at a lesser cut.<p>I would not register a business. Waste of money (dev time). You can wait till there are other founders or you have revenue and want a tax advantage. Assuming you are in the US you default to a sole proprietorship under your name anyhow, so no worries there. If you want a cool sounding name you file for a "Doing Business As" <cool name" for under ten bucks and ten minutes of your time.<p>I would not using the big cloud providers. Waste of money. Run it on k8s/VM/Container on your desktop or your PI till you have users or use free tier services.<p>I would not hire. At 20k the best bang for the buck would be your time.<p>I would not move. Again, costs. If you want to meet people you already seem to have a knack for it. :)<p>Also, hunter321 and yuppie_scum are wise men, hahaha, and I don't see any bad advice on this page. Add a contact to your about and I would be happy to chat.</p>
]]></description><pubDate>Tue, 08 Mar 2022 02:08:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=30595692</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=30595692</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30595692</guid></item><item><title><![CDATA[New comment by ipodopt in "Starlink uplink transmissions become beacons for airstrikes"]]></title><description><![CDATA[
<p>I was assuming geostationary satellite in example to point out that obscuring the IP could add a layer of security.<p>In regards to your general point I am making assumptions and it would be harder. But within an order of magnitude. A great place to use some basic machine learning.<p>In regards to LEO being harder... I agree the the latency analysis will have more moving pieces. But it being better in terms of resulting anonymity would depend on its implementation...</p>
]]></description><pubDate>Fri, 04 Mar 2022 01:38:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=30549529</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=30549529</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30549529</guid></item><item><title><![CDATA[New comment by ipodopt in "Starlink uplink transmissions become beacons for airstrikes"]]></title><description><![CDATA[
<p>"This isn’t how the internet works."<p>Okay, here is my understanding.<p>Lets say I control a few assets like a website, news.com, a DNS server, and relegram, a messaging app, and control the ASs that route to them.<p>Let's say the target posted something to relegram. I grab to logs and gain the IP. Cool, now I have the IP.<p>I add the IP to a list that instructs my controlled ASs to collect latency stats during handshake protocols (could do it from the end assets but this should be easier/better).<p>Meanwhile I also look up who owns the blocks the IP is from, likely finding their ISP.<p>If it a satellite provider I could go grab a a friendly dish in a known location and add that to list as well for the baseline. I could at this point double check my seconds/meter converter by moving said dish but it likely to track with physical constants.<p>After getting ten thousand hits or so I take the difference between the mean baseline latency and target latency and translate it to distance with my constant. Now I know the target should be within ~x of the satellite. I also have a map with terrain so the torus becomes a circle with a hole in it.<p>Now I take a plane and hopefully it can fly high enough between the satellite and the circler path as to 'shadow' a statistically significant portion of the area as it goes around.</p>
]]></description><pubDate>Thu, 03 Mar 2022 23:36:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=30548579</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=30548579</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30548579</guid></item><item><title><![CDATA[New comment by ipodopt in "Starlink uplink transmissions become beacons for airstrikes"]]></title><description><![CDATA[
<p>- If your adversary has access to your ISP's data they can tie IP to address/geofences.<p>- If they where clever they could time the latency and find how far you are on relative to the satellite. Giving a circle  path to look at. Meaning plane could find you by flying along the circle. So I guess it could help them track the radio signal...</p>
]]></description><pubDate>Thu, 03 Mar 2022 22:38:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=30547999</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=30547999</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30547999</guid></item><item><title><![CDATA[New comment by ipodopt in "Starlink uplink transmissions become beacons for airstrikes"]]></title><description><![CDATA[
<p>Aren't Starlink terminals hyper-directional? Seems like it would be hard to triangulate them.<p>EDIT 1: <a href="https://media.defense.gov/2022/Jan/25/2002927101/-1/-1/0/CSA_PROTECTING_VSAT_COMMUNICATIONS_01252022.PDF" rel="nofollow">https://media.defense.gov/2022/Jan/25/2002927101/-1/-1/0/CSA...</a><p>Seems like the NSA recommends a vpn to obscure VSAT use. They don't have much else to say about anonymity.<p>EDIT 2: Found this thread:<p><a href="https://old.reddit.com/r/SpaceXLounge/comments/t5y67a/updating_software_to_reduce_peak_power/" rel="nofollow">https://old.reddit.com/r/SpaceXLounge/comments/t5y67a/updati...</a><p>EDIT 3:<p>After some thought, I think Starlink will be robust against tracking. They should be harder to locate then VSATs which the author mentions in the Twitter thread. In comparison:<p>1. They are beaming to a constantly moving swarms of satellites rather then a geostationary satellite:
   a. So timing attacks can't be used to find a search path.
   b. The beam is moving to even he a plane pickup on a signal it would quickly lose it as the beam moved. Although there is a workaround I won't mention.<p>2. They are lower powered so the signal is weaker. I assume they are just as directional.<p>3. They are smaller and harder to spot.<p>4. They are much more numerous.<p>5. They are portable.</p>
]]></description><pubDate>Thu, 03 Mar 2022 22:15:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=30547778</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=30547778</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30547778</guid></item><item><title><![CDATA[New comment by ipodopt in "A single Artemis launch costs $4.1B"]]></title><description><![CDATA[
<p>To the moon costs are ~$31,500 per kg for SLS and ~$2,000 per kg for Starship according to:<p><a href="https://everydayastronaut.com/sls-vs-starship/" rel="nofollow">https://everydayastronaut.com/sls-vs-starship/</a><p>Time will tell though as they are both in late stage development.<p>Edit: SLS vs Starship is the correct comparison to make. Spacex does not intend to use Falcon 9 or the Falcon Heavy for lunar transport.</p>
]]></description><pubDate>Wed, 02 Mar 2022 15:09:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=30528193</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=30528193</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30528193</guid></item><item><title><![CDATA[New comment by ipodopt in "How Russia Took over the Internet in Crimea and Eastern Ukraine"]]></title><description><![CDATA[
<p>I am not an expert but this is my rough take.<p>It seems that the Russians are having logistical issues. They are running out of gas. Not sure how but it seems like it.<p>We are hearing today about them sending in more armored divisions. These will re enforce the supply lines. But this is a really risky play. It is a double edge sword. Now that they send more in they need even more gas. And if they run out they suffer a larger loss. What good are 4,000 tanks without fuel? Suddenly your armored division are infantry divisions who are outgunned on foreign soil.<p>The less risky play would be to withdraw there armor pretty far back. But this means an extend war. Which they should lose do to basically endless international support to the Ukraine and their willingness to fight.<p>So the play would be to pull back and stick to claiming the small section of the separateness region they have capture so far. This is will happened when the last of the armored units cross the line to cover the retreat. Given Ukraine can last four more days and keep the supply lines broken.</p>
]]></description><pubDate>Sat, 26 Feb 2022 16:22:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=30478879</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=30478879</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30478879</guid></item><item><title><![CDATA[New comment by ipodopt in "Self-replicating radiation-shield for deep-space exploration: Radiotrophic fungi"]]></title><description><![CDATA[
<p>We don't want a material that builds and repairs itself?<p>Anyhow, seems like they think it is the concentration of melanin in the fungi. The melanin has been sequenced and it is the same type found in human skin. Maybe we will see this adaptation in space fairing humans... Wonder if current black astronauts are less effected by radiation.<p>EDIT: Probably something that will seem so obvious in hindsight.</p>
]]></description><pubDate>Sat, 15 Jan 2022 16:45:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=29947836</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=29947836</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29947836</guid></item><item><title><![CDATA[New comment by ipodopt in "Sciter, the 5 MB Electron alternative, has switched to JavaScript"]]></title><description><![CDATA[
<p><a href="https://scholar.google.com/citations?user=guNVlmIAAAAJ&hl=en&oi=sra" rel="nofollow">https://scholar.google.com/citations?user=guNVlmIAAAAJ&hl=en...</a><p><a href="https://scholar.google.com/scholar?hl=en&as_sdt=0%2C10&q=bacon+cycle+collection&oq=bacon+cycle" rel="nofollow">https://scholar.google.com/scholar?hl=en&as_sdt=0%2C10&q=bac...</a><p>Probably specifically refers to "Concurrent cycle collection in reference counted systems" where Bacon is first author?</p>
]]></description><pubDate>Fri, 31 Dec 2021 03:57:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=29744715</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=29744715</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29744715</guid></item><item><title><![CDATA[New comment by ipodopt in "DIY Mail"]]></title><description><![CDATA[
<p>I have used both pm and migadu with custom domains. Miguda ends being much better on that front feature, pricing, and ease of use wise.<p><a href="https://www.migadu.com/pricing/" rel="nofollow">https://www.migadu.com/pricing/</a><p>You do lose the layer of encryption protonmail provides. But it is essentially boils down Encryption at Rest and e2e when between two protonmail users. It  can be mimicked by pulling down the mail from the servers to your machine and using pgp.</p>
]]></description><pubDate>Tue, 28 Dec 2021 16:34:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=29715229</link><dc:creator>ipodopt</dc:creator><comments>https://news.ycombinator.com/item?id=29715229</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29715229</guid></item></channel></rss>