<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: mcshicks</title><link>https://news.ycombinator.com/user?id=mcshicks</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 27 Apr 2026 09:59:02 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=mcshicks" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by mcshicks in "US national level OS-level age verification bill proposed"]]></title><description><![CDATA[
<p>There have been bills in the past like "The improved digital identity act of 2023" that never get out of committee.  The latest incarnation seems to be "H.R.7270 - Stop Identity Fraud and Identity Theft Act of 2026".  There almost always have one republican and one democratic sponsor.  But they don't seem to rise to the level of urgency to get past the current dysfunction in congress.<p><a href="https://www.congress.gov/bill/119th-congress/house-bill/7270/text" rel="nofollow">https://www.congress.gov/bill/119th-congress/house-bill/7270...</a></p>
]]></description><pubDate>Wed, 15 Apr 2026 14:47:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47779805</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=47779805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47779805</guid></item><item><title><![CDATA[New comment by mcshicks in "Doomsday scoreboard"]]></title><description><![CDATA[
<p>They seemed to have missed peter turchin<p>"In 2010, Turchin published research using 40 combined social indicators to predict that there would be worldwide social unrest in the 2020s"<p><a href="https://en.wikipedia.org/wiki/Peter_Turchin" rel="nofollow">https://en.wikipedia.org/wiki/Peter_Turchin</a></p>
]]></description><pubDate>Tue, 21 Oct 2025 21:36:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=45662035</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=45662035</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45662035</guid></item><item><title><![CDATA[New comment by mcshicks in "IDEs we had 30 years ago and lost (2023)"]]></title><description><![CDATA[
<p>Surprised there was no mention of brief.  That was my favorite editor for programming for a while.<p><a href="https://en.wikipedia.org/wiki/Brief_(text_editor)" rel="nofollow">https://en.wikipedia.org/wiki/Brief_(text_editor)</a></p>
]]></description><pubDate>Sat, 18 Oct 2025 16:25:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=45628496</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=45628496</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45628496</guid></item><item><title><![CDATA[New comment by mcshicks in "Airpass – easily overcome WiFi time limits"]]></title><description><![CDATA[
<p>Pretty sure it will work on JAL at least right now.  They just asked for an email.  But it was also a new service so maybe to wanted people to try it.  It occurred to me at the time that two devices with two emails should work for twice as long.  For what I wanted to do on that flight, i.e. check and send a few messages the one free hour was fine.  But yeah of course they could change it so that would not work.</p>
]]></description><pubDate>Sat, 21 Jun 2025 20:51:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=44340647</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=44340647</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44340647</guid></item><item><title><![CDATA[New comment by mcshicks in "Airpass – easily overcome WiFi time limits"]]></title><description><![CDATA[
<p>I think the name refers to the limits some airlines have.  JAL for instance offers one hour free on some flights.</p>
]]></description><pubDate>Sat, 21 Jun 2025 20:14:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=44340428</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=44340428</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44340428</guid></item><item><title><![CDATA[New comment by mcshicks in "Sam Altman Wants Your Eyeball"]]></title><description><![CDATA[
<p>In the US there is a bill that's been floating around Congress for a while called the improving digital identity act.<p><a href="https://www.congress.gov/bill/118th-congress/senate-bill/884/all-info" rel="nofollow">https://www.congress.gov/bill/118th-congress/senate-bill/884...</a></p>
]]></description><pubDate>Sat, 10 May 2025 18:31:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=43947806</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43947806</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43947806</guid></item><item><title><![CDATA[New comment by mcshicks in "DeepSeek-Prover-V2"]]></title><description><![CDATA[
<p>You can run the model for free on openrouter.ai.  I have played around with lean, slowly working my way through mathmatics in lean.  I was stuck on this problem in section 3.6<p>theorem convergesTo_unique {s : ℕ → ℝ} {a b : ℝ}
      (sa : ConvergesTo s a) (sb : ConvergesTo s b) :<p>For fun I tried it on the free model on openrouter.ai.  Got the answer the first time.<p><a href="https://leanprover-community.github.io/mathematics_in_lean/mathematics_in_lean.pdf" rel="nofollow">https://leanprover-community.github.io/mathematics_in_lean/m...</a><p>Here's the answer just to give you a feel.<p><pre><code>  by_contra h
  have h₁ : a ≠ b := h
  have h₂ : |a - b| > 0 := by
    apply abs_pos.mpr
    exact sub_ne_zero.mpr h₁
  -- Use the definition of convergence to find N₁ and N₂
  have h₃ := sa (|a - b| / 2) (by linarith)
  have h₄ := sb (|a - b| / 2) (by linarith)
  cases' h₃ with N₁ h₃
  cases' h₄ with N₂ h₄
  -- Choose N to be the maximum of N₁ and N₂
  let N := max N₁ N₂
  have h₅ := h₃ N (by simp [N, le_max_left])
  have h₆ := h₄ N (by simp [N, le_max_right])
  -- Derive a contradiction using the triangle inequality
  have h₇ : |s N - a| < |a - b| / 2 := by simpa using h₅
  have h₈ : |s N - b| < |a - b| / 2 := by simpa using h₆
  have h₉ : |a - b| < |a - b| := by
    calc
      |a - b| = |a - s N + (s N - b)| := by ring_nf
      _ ≤ |a - s N| + |s N - b| := by
        apply abs_add
      _ = |s N - a| + |s N - b| := by
        rw [abs_sub_comm]
      _ < |a - b| / 2 + |a - b| / 2 := by
        linarith
      _ = |a - b| := by ring
  linarith</code></pre></p>
]]></description><pubDate>Wed, 30 Apr 2025 21:12:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=43850723</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43850723</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43850723</guid></item><item><title><![CDATA[New comment by mcshicks in "Ask HN: Share your AI prompt that stumps every model"]]></title><description><![CDATA[
<p>That's so funny I had to check something was working with an llm API last night and that's what I asked it, but just in jest.</p>
]]></description><pubDate>Thu, 24 Apr 2025 17:27:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=43785228</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43785228</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43785228</guid></item><item><title><![CDATA[New comment by mcshicks in "Trump temporarily drops tariffs to 10% for most countries"]]></title><description><![CDATA[
<p>I find the most consistent explanation for Donald Trump is he does whatever is going to keep himself the top news story in the media.   I don't think there's any deeply held belief other than if he doesn't think people are talking about him that's bad</p>
]]></description><pubDate>Wed, 09 Apr 2025 21:36:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=43638283</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43638283</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43638283</guid></item><item><title><![CDATA[New comment by mcshicks in "Silicon Valley 'nepo baby' publishes scathing first novel about growing up rich"]]></title><description><![CDATA[
<p>Silicon Valley meets Bret Easton Ellis and Less than Zero.<p><a href="https://en.wikipedia.org/wiki/Less_than_Zero_(novel)" rel="nofollow">https://en.wikipedia.org/wiki/Less_than_Zero_(novel)</a></p>
]]></description><pubDate>Tue, 08 Apr 2025 01:15:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=43617466</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43617466</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43617466</guid></item><item><title><![CDATA[New comment by mcshicks in "Show HN: Clawtype v2.1 – a one-hand chorded USB keyboard and mouse [video]"]]></title><description><![CDATA[
<p>I was going to say I have a old twiddler 2 (wired usb).  There was this program I used to learn called "twidor" that was like a type tutor but had graphic that showed you the chords.  Really helpful.  I didn't see anything like that in the github repository linked in the video.  I guess they are up to twiddler 4 now.  I read the linked chordite page and I agree that a problem with the twiddler is you are kind of trying to hold the thing steady so you can chord with the same fingers you chording with.<p><a href="https://wearables.cc.gatech.edu/projects/twidor/screens.html" rel="nofollow">https://wearables.cc.gatech.edu/projects/twidor/screens.html</a></p>
]]></description><pubDate>Sat, 05 Apr 2025 06:11:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=43591258</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43591258</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43591258</guid></item><item><title><![CDATA[New comment by mcshicks in "Learn electricity and electronics fundamentals without taking a formal course"]]></title><description><![CDATA[
<p>I don't know, it's hard for me to know what the author means by "fundamentals". I looked at the table of contents from the amazon website, and somethings that I consider pretty fundamental like Thevenin's Theorem didn't seem to be listed there.  By comparison it's in Chapter 1, page 9 on my copy of "The Art of Electronics".  I'm not trying to knock the book, it could be very handy, but I would use the term "basics" as opposed to "fundamentals" to describe the content as I understand it.</p>
]]></description><pubDate>Sat, 05 Apr 2025 05:39:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=43591093</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43591093</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43591093</guid></item><item><title><![CDATA[New comment by mcshicks in "A USB Interface to the "Mother of All Demos" Keyset"]]></title><description><![CDATA[
<p>I have a twiddler and tried doing this a long time ago i.e. emacs with a twiddler.  For me I really needed to use a sticky cntl and alt key because I just couldn't press the cntl button on the top and chord at the same time.  And I couldn't figure out how to make the sticky cntl work on the phone.   But that was a very long time ago.  Now I just use a mini bt keyboard and termux to run emacsclient over ssh and that's good enough for what I want.</p>
]]></description><pubDate>Mon, 24 Mar 2025 15:04:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=43461918</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43461918</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43461918</guid></item><item><title><![CDATA[New comment by mcshicks in "Notetime: Minimalistic notes where everything is timestamped"]]></title><description><![CDATA[
<p>My org capture template from bernt Hanson's website clocks in and out giving you a timestamp.  There is a "note" capture type.<p><a href="https://doc.norang.ca/org-mode.html" rel="nofollow">https://doc.norang.ca/org-mode.html</a></p>
]]></description><pubDate>Fri, 21 Mar 2025 14:38:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=43436267</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43436267</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43436267</guid></item><item><title><![CDATA[New comment by mcshicks in "Why and How I use "Org Mode" for my writing and more"]]></title><description><![CDATA[
<p>Tailscale, ssh and emacsclient in terminal mode makes it pretty easy to access and update notes from different machines without syncing by just say leaving your main laptop on and connected to the Internet and using emacs daemon.  If you have sshd running on all the machines you can use tramp to move files around or use git or many other tools.  The trickier part is using emacs key bindings on say android.  Read only sharing with PDFs works fine.  Co editing is impossible :).</p>
]]></description><pubDate>Fri, 28 Feb 2025 11:38:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=43204535</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43204535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43204535</guid></item><item><title><![CDATA[New comment by mcshicks in "Musk-led group makes $97B bid for control of OpenAI"]]></title><description><![CDATA[
<p>Honest question.  What's happens to Microsoft's investment then?</p>
]]></description><pubDate>Mon, 10 Feb 2025 23:06:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=43006450</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43006450</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43006450</guid></item><item><title><![CDATA[New comment by mcshicks in "Musk-led group makes $97B bid for control of OpenAI"]]></title><description><![CDATA[
<p>Exactly what I want know!  A non profit is a corporation for public benefit.  They bylaws state how the board gets elected, but there is no such thing as voting shares.  So there is no owner.  When you close a non profit you have to disperse the assets to another entity that supports the non profits mission statement.</p>
]]></description><pubDate>Mon, 10 Feb 2025 22:33:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=43006160</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=43006160</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43006160</guid></item><item><title><![CDATA[New comment by mcshicks in "Spaced repetition can allow for infinite recall (2022)"]]></title><description><![CDATA[
<p>I guess it matters how long it is and if you need to know it exactly, and how long you need to retain it.  I had to memorize 50 to 100 word phrases and I chained them together with index cards.  The first sentence is the cue for the second, the second for the third, etc.  Carried them around in my pocket in order and started from first a few times a day until I could do the whole thing.   But I only needed to know it exactly for a few weeks usually.</p>
]]></description><pubDate>Sun, 02 Feb 2025 15:35:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=42909280</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=42909280</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42909280</guid></item><item><title><![CDATA[New comment by mcshicks in "Meta in talks to reincorporate in Texas or another state, WSJ reports"]]></title><description><![CDATA[
<p>Maybe if you are a non profit based in CA.  There's probably some other corner cases I'm not aware of, like it might be simpler in some cases like an LLC for holding family property, etc.</p>
]]></description><pubDate>Fri, 31 Jan 2025 20:43:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=42891732</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=42891732</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42891732</guid></item><item><title><![CDATA[New comment by mcshicks in "Intel slashes prices of Xeon 6 CPUs by up to $5,340"]]></title><description><![CDATA[
<p>It means the child of a first cousin.  I'm a native speaker of English and I find the phrase confusing also.</p>
]]></description><pubDate>Tue, 28 Jan 2025 14:19:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=42852558</link><dc:creator>mcshicks</dc:creator><comments>https://news.ycombinator.com/item?id=42852558</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42852558</guid></item></channel></rss>