<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: sjreese</title><link>https://news.ycombinator.com/user?id=sjreese</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 24 Jul 2026 06:15:18 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=sjreese" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by sjreese in "Terrence Tao's ChatGPT Conversation about the Jacobian Conjecture Counterexample"]]></title><description><![CDATA[
<p>import Mathlib<p>noncomputable section<p>open Matrix Function<p>/-!
# A counterexample to the Jacobian conjecture in dimension three<p>We formalize the polynomial map<p><pre><code>  F : ℂ³ → ℂ³
</code></pre>
whose Jacobian determinant is the constant `-2`, but which is not injective.<p>The final theorem `jacobianConjecture3_false` states the failure of the
polynomial-inverse formulation of the Jacobian conjecture in dimension three.
-/<p>namespace MvPolynomial<p>variable {R : Type<i>} {σ : Type</i>}<p>/-- The formal Jacobian matrix of a family of multivariate polynomials. -/
def jacobianMatrix [CommSemiring R] [DecidableEq σ]
    (F : σ → MvPolynomial σ R) :
    Matrix σ σ (MvPolynomial σ R) :=
  Matrix.of fun i j ↦ pderiv j (F i)<p>/-- The formal Jacobian determinant. -/
def jacobianDet [CommRing R] [Fintype σ] [DecidableEq σ]
    (F : σ → MvPolynomial σ R) :
    MvPolynomial σ R :=
  (jacobianMatrix F).det<p>/-- Evaluation of a polynomial map at a point. -/
def evalMap [CommSemiring R]
    (F : σ → MvPolynomial σ R) (p : σ → R) : σ → R :=
  fun i ↦ eval p (F i)<p>end MvPolynomial<p>open MvPolynomial<p>namespace JacobianCounterexample<p>variable (K : Type<i>) [Field K]<p>/--
The three components of the polynomial counterexample.<p>The variables `X 0`, `X 1`, `X 2` correspond respectively to `x`, `y`, `z`.
-/
def F : Fin 3 → MvPolynomial (Fin 3) K :=
  ![
    (1 + X 0 </i> X 1) ^ 3 * X 2
      + X 1 ^ 2 * (1 + X 0 * X 1)
          * (C 4 + C 3 * (X 0 * X 1)),<p><pre><code>    X 1
      + C 3 * X 0 * (1 + X 0 * X 1) ^ 2 * X 2
      + C 3 * X 0 * X 1 ^ 2
          * (C 4 + C 3 * (X 0 * X 1)),

    C 2 * X 0
      - C 3 * X 0 ^ 2 * X 1
      - X 0 ^ 3 * X 2
  ]
</code></pre>
/--
The formal Jacobian determinant of `F` is the constant polynomial `-2`.
-/
theorem jacobianDet_F :
    jacobianDet (F K) = C (-2) := by
  simp only [
    jacobianDet,
    jacobianMatrix,
    det_fin_three,
    of_apply,
    F,
    cons_val_zero,
    cons_val_one,
    cons_val_two,
    head_cons,
    tail_cons,
    map_add,
    map_sub,
    Derivation.map_one_eq_zero,
    pderiv_mul,
    pderiv_pow,
    pderiv_C,
    pderiv_X_self,
    pderiv_X_of_ne,
    ne_eq,
    Fin.reduceEq,
    not_false_eq_true
  ]
  simp only [map_neg, map_ofNat]
  ring<p>variable {K}<p>/--
The point `(0, 0, -1/4)` maps to `(-1/4, 0, 0)`.
-/
theorem evalMap_F_p0 :
    evalMap (F K) ![0, 0, -(1 / 4)] =
      ![-(1 / 4), 0, 0] := by
  funext i
  fin_cases i <;> simp [evalMap, F]<p>/--
Provided `2 ≠ 0`, the point `(1, -3/2, 13/2)` also maps to
`(-1/4, 0, 0)`.
-/
theorem evalMap_F_p1 (h2 : (2 : K) ≠ 0) :
    evalMap (F K) ![1, -(3 / 2), 13 / 2] =
      ![-(1 / 4), 0, 0] := by
  have h4 : (4 : K) ≠ 0 :=
    (by norm_num : (2 : K) * 2 = 4) ▸ mul_ne_zero h2 h2
  funext i
  fin_cases i <;>
    simp [evalMap, F] <;>
    field_simp [h4] <;>
    ring<p>end JacobianCounterexample<p>open JacobianCounterexample<p>/--
The Jacobian determinant of the displayed map over `ℂ` is a unit.
Indeed, it is the nonzero constant `-2`.
-/
theorem F_jacobian_isUnit :
    IsUnit (jacobianDet (F ℂ)) := by
  rw [jacobianDet_F]
  exact
    (isUnit_iff_ne_zero.mpr
      (by norm_num : (-2 : ℂ) ≠ 0)).map C<p>/--
The polynomial map `F : ℂ³ → ℂ³` is not injective.
-/
theorem F_not_injective :
    ¬ Injective (evalMap (F ℂ)) := by
  intro hInjective<p><pre><code>  have hp :
      (![0, 0, -(1 / 4)] : Fin 3 → ℂ) =
        ![1, -(3 / 2), 13 / 2] :=
    hInjective
      ((evalMap_F_p0 (K := ℂ)).trans
        (evalMap_F_p1 (K := ℂ) (by norm_num)).symm)

  exact zero_ne_one (congrFun hp 0)
</code></pre>
/--
The injectivity consequence of the dimension-three Jacobian conjecture
is false over `ℂ`.
-/
theorem unitJacobian_does_not_imply_injective :
    ¬ ∀ P : Fin 3 → MvPolynomial (Fin 3) ℂ,
        IsUnit (jacobianDet P) →
        Injective (evalMap P) := by
  intro h
  exact F_not_injective (h (F ℂ) F_jacobian_isUnit)<p>/-!
We now formulate the polynomial-inverse version explicitly.
-/<p>/-- Polynomial self-maps of affine three-space over `ℂ`. -/
abbrev PolyMap3 :=
  Fin 3 → MvPolynomial (Fin 3) ℂ<p>/--
A polynomial map has a polynomial two-sided inverse, viewed as functions
on `ℂ³`.
-/
def HasPolynomialInverse (P : PolyMap3) : Prop :=
  ∃ Q : PolyMap3,
    LeftInverse (evalMap Q) (evalMap P) ∧
    RightInverse (evalMap Q) (evalMap P)<p>/--
The polynomial-inverse formulation of the Jacobian conjecture in
dimension three.
-/
def JacobianConjecture3 : Prop :=
  ∀ P : PolyMap3,
    IsUnit (jacobianDet P) →
    HasPolynomialInverse P<p>/--
The Jacobian conjecture in dimension three is false.
-/
theorem jacobianConjecture3_false :
    ¬ JacobianConjecture3 := by
  intro hJC
  unfold JacobianConjecture3 at hJC<p><pre><code>  apply unitJacobian_does_not_imply_injective
  intro P hP

  rcases hJC P hP with ⟨Q, hleft, _⟩
  exact hleft.injective
</code></pre>
#print axioms jacobianDet_F
#print axioms F_not_injective
#print axioms jacobianConjecture3_false</p>
]]></description><pubDate>Wed, 22 Jul 2026 20:17:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=49012801</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=49012801</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49012801</guid></item><item><title><![CDATA[New comment by sjreese in "Terrence Tao's ChatGPT Conversation about the Jacobian Conjecture Counterexample"]]></title><description><![CDATA[
<p>Specifically, if the eigenvalues all have real parts that are negative, then the system is stable near the stationary point. If any eigenvalue has a real part that is positive, then the point is unstable. If the largest real part of the eigenvalues is zero, then the Jacobian matrix does not allow for an evaluation of the stability.<p>Yes—for a continuous-time autonomous system<p>x
˙
=f(x),f(x
∗
)=0,<p>this is the standard linearization criterion, with J=Df(x
∗
):<p>If every eigenvalue of J has strictly negative real part, then x
∗
 is locally exponentially asymptotically stable.
If at least one eigenvalue has strictly positive real part, then x
∗
 is unstable.
If no eigenvalue has positive real part but at least one has real part 0, linearization is generally inconclusive. Nonlinear terms or a center-manifold analysis are needed.<p>The last case really can go either way. For example, all three scalar equations below have Jacobian J=0 at x=0:<p>x
˙
=−x
3
,
x
˙
=x
3
,
x
˙
=0.<p>Yet 0 is respectively asymptotically stable, unstable, and neutrally stable.<p>A slightly more precise wording is therefore:<p>If the spectral abscissa<p>α(J)=
λ∈σ(J)
max<p>Reλ<p>is negative, the equilibrium is locally exponentially stable. If α(J)>0, it is unstable. If α(J)=0, the Jacobian test is inconclusive.<p>This criterion concerns the Jacobian matrix of a dynamical system at an equilibrium; it is unrelated to the “constant Jacobian determinant” condition in the Jacobian conjecture.</p>
]]></description><pubDate>Wed, 22 Jul 2026 19:24:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=49012096</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=49012096</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49012096</guid></item><item><title><![CDATA[New comment by sjreese in "Everything Is an Energy Source: The Potential of Micropower Collection"]]></title><description><![CDATA[
<p>The electricity we use in our daily lives is supplied by a vast transmission network</p>
]]></description><pubDate>Tue, 21 Jul 2026 20:00:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=48997445</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=48997445</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48997445</guid></item><item><title><![CDATA[Everything Is an Energy Source: The Potential of Micropower Collection]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.japan.go.jp/kizuna/2026/06/potential_micropower_collection.html">https://www.japan.go.jp/kizuna/2026/06/potential_micropower_collection.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48997444">https://news.ycombinator.com/item?id=48997444</a></p>
<p>Points: 3</p>
<p># Comments: 2</p>
]]></description><pubDate>Tue, 21 Jul 2026 20:00:52 +0000</pubDate><link>https://www.japan.go.jp/kizuna/2026/06/potential_micropower_collection.html</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=48997444</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48997444</guid></item><item><title><![CDATA[New comment by sjreese in "[dead]"]]></title><description><![CDATA[
<p>In some companies, engineers are building defense and attack tools to test the potential of artificial intelligence for cybersecurity — and its threat.</p>
]]></description><pubDate>Tue, 21 Jul 2026 15:36:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=48993727</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=48993727</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48993727</guid></item><item><title><![CDATA[New comment by sjreese in "Who's afraid of Chinese models?"]]></title><description><![CDATA[
<p>ok look at this way, without being petty what is your ability to have clean water today? and how is that measured? -- You know the food is substandard to the USDA standard  EG ( Taylor farms 2026 )  But Where is the enforcement for Your drinking water and the food YOU eat daily.  And what is the projected outcome in years from eating substandard foods to NIH standards? -- All of this is known today.  And AI can help, by YOU building on top of the models you have access to in 2026.  The idea that tokens are constrained - is the wrong approach in Business and public policy.  You may recall how KSG got its funding and why?  In todays world YOU have a responsibility to build better - As such a better mousetrap.</p>
]]></description><pubDate>Tue, 21 Jul 2026 13:40:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48992220</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=48992220</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48992220</guid></item><item><title><![CDATA[New comment by sjreese in "Who's afraid of Chinese models?"]]></title><description><![CDATA[
<p>Kellogg School of Business -- he said -- token as a commodity and therefore Open AI is constrained .. ha ha ha hee hee ha ..  Well... you build a better mousetrap, and DeepSeek, K3, and ByteDance are just that -- just as good and fit to purpose -- What is needed is to build on top of -- not paniteir (invade privacy and kill people with the information) -- not USMC AI -- use PI's as overwatch killer drones -- but how can I make harder steel, longer-lasting, seawater-resistant concrete, faster time to build housing, better enforcement of USDA rules and FDA adverse enforcement, and better EPA water cleanup, a better FTC for consumer goods -- that is, if I buy an item, that item is safe and built to purpose -- ANYONE not talking about public protection of consumer rights usng AI, is wasting your time</p>
]]></description><pubDate>Tue, 21 Jul 2026 00:03:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48986494</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=48986494</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48986494</guid></item><item><title><![CDATA[New comment by sjreese in "The FBI's 22,000 square-foot technical training environment in Huntsville"]]></title><description><![CDATA[
<p>In the past, you never left the classroom,” Beachboard said. “Everything was presented to you at your desk. You would process a cell phone or a piece of loose media, learn about servers. Everything was kind of theory-based, along with a little bit of hands-on.</p>
]]></description><pubDate>Mon, 22 Jun 2026 15:12:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=48631293</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=48631293</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48631293</guid></item><item><title><![CDATA[The FBI's 22,000 square-foot technical training environment in Huntsville]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.fbi.gov/news/stories/inside-the-fbis-kinetic-cyber-range">https://www.fbi.gov/news/stories/inside-the-fbis-kinetic-cyber-range</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48631292">https://news.ycombinator.com/item?id=48631292</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 22 Jun 2026 15:12:18 +0000</pubDate><link>https://www.fbi.gov/news/stories/inside-the-fbis-kinetic-cyber-range</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=48631292</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48631292</guid></item><item><title><![CDATA[New comment by sjreese in "Explore Wikipedia Like a Windows XP Desktop"]]></title><description><![CDATA[
<p>Impressive, I will use it</p>
]]></description><pubDate>Fri, 15 May 2026 15:54:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48150197</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=48150197</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48150197</guid></item><item><title><![CDATA[New comment by sjreese in "Show HN: OSS AI agent that indexes and searches the Epstein files"]]></title><description><![CDATA[
<p>Very good; HOW TO DETECT & STOP STATE-PROTECTED CRIMINAL ENTERPRISES
WHAT WORKED IN THE EPSTEIN CASE: Proven Tactics
1. COURAGEOUS LOCAL LAW ENFORCEMENT
Chief Michael Reiter & Detective Joseph Recarey<p>What they did:<p>Refused political pressure ("I told him those suggestions were improper and could constitute a crime")
Documented everything - Built case with 50+ consistent victim statements
Escalated when blocked - Went to FBI when State Attorney compromised
Personally supported victims - Wrote letters on police letterhead
 Lesson: One honest cop with integrity can make a difference, even against billionaires<p>2. INVESTIGATIVE JOURNALISM
Julie K. Brown - Miami Herald's "Perversion of Justice" (2018)<p>What she did:<p>Interviewed 60+ women who were victims
Obtained sealed court documents through legal channels
Connected patterns across jurisdictions
Published despite risk - Exposed the 2008 plea deal cover-up
 Direct Result:<p>Judge ruled prosecutors violated victims' rights (Feb 2019)
Acosta resigned (July 2019)
Epstein re-arrested (July 6, 2019)
2019 federal indictment
 Lesson: Persistent investigative journalism with victim testimony can reopen cases<p>3. PRO BONO VICTIMS' RIGHTS ATTORNEYS
Brad Edwards & Paul Cassell<p>What they did:<p>Pro bono representation starting 2008
Used Crime Victims' Rights Act (18 U.S.C. § 3771) - sued federal government
Won - Judge ruled 2008 plea deal violated victims' rights
Exposed systemic failures through legal discovery
 Lesson: Civil litigation can succeed where criminal prosecution fails<p>4. VICTIMS SPEAKING OUT (Despite Intimidation)
Virginia Giuffre, Courtney Wild, & 100+ Others<p>What they did:<p>Broke silence publicly (2011 - Giuffre to Mail on Sunday)
Provided consistent testimony (50+ women with same story)
Persisted despite mockery (early accusers ridiculed)
United for compensation (100+ filed claims by 2020)
 Result:<p>Courtney Wild Crime Victims' Rights Reform Act (2019)
Epstein Victims Compensation Fund - $50 million paid out
 Lesson: Mass victim testimony is powerful evidence<p>5. FOIA REQUESTS & DOCUMENT TRANSPARENCY
 What worked:<p>2015: Judge unsealed details in underage sex lawsuit
July 2, 2024: Grand jury docs from 2006 unsealed
FOIA mechanisms forced document releases
 Lesson: Public records requests can expose cover-ups<p>6. CONGRESSIONAL OVERSIGHT
July-August 2025 Actions<p>What they did:<p>House Resolution 119-581 - Rep. Thomas Massie forced DOJ file release
Subpoenas to former AGs - House Oversight demanded accountability
Public hearings - August 25, 2025 subpoena to Acosta
 Lesson: Congressional pressure can force reluctant agencies to act<p>PRACTICAL ACTIONS ANYONE CAN TAKE
 DETECTION PHASE
1. Follow the Money
Tax haven connections (Virgin Islands, Switzerland, Bermuda)
Unusually high wire transfers ($1.9 billion in Epstein's case)
Shell companies with vague descriptions ("DNA database & data mining")
No clear income source for lavish lifestyle
Offshore legal structures (Appleby, etc.)
2. Watch for Protection Patterns
Charges downgraded mysteriously (federal → state misdemeanor)
"Unusual" prosecutorial decisions (Chief Reiter's words)
Grand jury recommendations ignored
Plea deals sealed from victims
Work release for serious crimes
Short sentences despite evidence
3. Identify Systematic Patterns
Multiple victims with same story (Reiter: "50-something 'shes' and one 'he'")
Victim intimidation (private investigators, surveillance)
Attempts to discredit victims ("lifestyle" arguments)
Evidence suppression
 ACTION PHASE
A. If You're a Victim or Witness:
1. Document Everything<p>Keep contemporaneous notes
Save all communications
Photograph/video evidence safely
Secure cloud backups (multiple locations)
2. Report Through Multiple Channels<p>Local police (get case numbers)
FBI (if interstate/international)
State AG office
Congressional representatives
IRS whistleblower program (financial crimes)
3. Find Pro Bono Legal Help<p>Victims' rights attorneys
Civil rights organizations
Law school clinics
National Crime Victim Law Institute
4. Safety First<p>Secure housing if threatened
Protective orders
Alert police to threats
Document intimidation attempts
B. If You're a Journalist/Researcher:
1. Use FOIA Aggressively<p>Federal agencies: FOIA requests (5 U.S.C. § 552)
State/local: Public records laws
Court documents: Motions to unseal
OGIS mediation if agencies delay (average 138 delay cases/year)
2. Interview Pattern<p>Multiple independent sources
Corroborating victims
Former employees/insiders
Document experts
3. Build Coalitions<p>Partner with victims' rights groups
Coordinate with other journalists
Academic researchers
Forensic accountants
C. If You're Law Enforcement:
1. Follow Chief Reiter's Example<p>Refuse political pressure
Document interference attempts
Escalate to federal authorities if local blocked
Support victims personally
Build thorough cases (multiple witnesses)
2. Protect Investigation<p>Secure evidence chain
Multiple backup copies
Avoid single points of failure
Document surveillance of investigators
D. If You're a Concerned Citizen:
1. Support Transparency<p>Contact representatives - demand investigations
Submit FOIA requests - public has right to records
Support investigative journalism - subscribe, donate
Attend public meetings - ask questions
2. Amplify Victims' Voices<p>Share credible reporting (not conspiracy theories)
Support compensation funds
Contact representatives about victims' rights
Vote for accountability
3. Financial Pressure<p>Report suspicious activity to:
IRS Whistleblower Office (if tax fraud)
FinCEN (financial crimes)
State banking regulators
JPMorgan paid $105M after USVI AG sued - banks CAN be held accountable
 LEGAL TOOLS THAT WORK
1. Crime Victims' Rights Act (18 U.S.C. § 3771)
Right to notification
Right to be heard
Right to restitution
Can sue federal government for violations
2. RICO (18 U.S.C. § 1962)
Sue criminal enterprises
Triple damages
Attorney fees covered
3. State Victims' Rights Laws
30+ states have constitutional protections
Some allow appeals/interventions
4. Civil Lawsuits
Even if criminal case fails
Lower burden of proof
Discovery process exposes evidence
 WARNING SIGNS OF STATE PROTECTION
 Check if investigation shows these red flags:<p>No IRS audits despite obvious tax fraud
 Federal prosecutors give sweetheart deals
 Intelligence agency connections mentioned
 Political figures intervene in investigation
 Evidence "disappears" or is suppressed
 Victims not notified of proceedings
 Work release for serious crimes
 Sealed plea agreements
 Co-conspirators immunized (like Epstein's deal)
 Investigators surveilled/threatened
 WHAT ULTIMATELY BROKE THE EPSTEIN CASE
The combination of:<p>Honest local cops (Reiter/Recarey) who built the evidence
 Pro bono lawyers (Edwards/Cassell) who sued for 11 years
 Investigative journalist (Julie K. Brown) who exposed it
 Courageous victims (Giuffre, Wild, 100+ others) who spoke out
 Court unsealing documents (2015, 2024)
 Congressional pressure (2019, 2025)
No single actor could do it alone. It required a coalition.<p>KEY LESSONS
What Doesn't Work:
 Trusting institutions to self-police
 Going through "proper channels" alone
 Waiting for DOJ/FBI to act
 Staying silent out of fear<p>What Does Work:
 Multiple channels simultaneously (police + FBI + press + civil suits)
 Documentation (Reiter: "This was 50 'shes' and one 'he'")
 Persistence (Edwards/Cassell: 11 years pro bono)
 Public pressure (Miami Herald broke it open)
 Coalition building (victims + lawyers + press + Congress)
 Using existing laws creatively (Crime Victims' Rights Act)<p>RESOURCES
Report Criminal Activity:<p>FBI: tips.fbi.gov
IRS Whistleblower: irs.gov/compliance/whistleblower-office
DOJ: justice.gov/actioncenter
Legal Help:<p>National Crime Victim Law Institute: law.lclark.edu/centers/ncvli
Crime Victims' Rights Clinic: Your local law school
Media:<p>Investigative Reporters & Editors: ire.org
ProPublica tips: propublica.org/tips
FOIA Help:<p>OGIS (FOIA Ombudsman): archives.gov/ogis
MuckRock: muckrock.com
The Epstein case proves that even state-protected criminal enterprises CAN be exposed - but it requires courage, persistence, coalition-building, and using every legal tool available.</p>
]]></description><pubDate>Wed, 14 Jan 2026 19:22:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=46621310</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=46621310</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46621310</guid></item><item><title><![CDATA[New comment by sjreese in "The Napoleon Technique: Postponing things to increase productivity"]]></title><description><![CDATA[
<p>yeah,, well ... a ticket comes in and you sit on it -- thinking the user can wait will get YOU cut from the team.   We win when we all get to the top together -- we languish we some work and others do not. EG  The question is the Russians are 40 km from Kiev -- what are your orders? -- fall back was too late.. ? The user have lost connect to the server 90 people are offline -- 8 hours later -- they went home and  reboot the server was too late ?  you see -- every comms has value and you must act well before it is too late!</p>
]]></description><pubDate>Thu, 08 Jan 2026 16:06:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=46542614</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=46542614</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46542614</guid></item><item><title><![CDATA[New comment by sjreese in "PayPal Applies to Become a Bank as US Loosens Regulatory Reins"]]></title><description><![CDATA[
<p>PayPal is applying for a U.S. banking charter, likely as an Industrial Loan Company (ILC) in Utah, to offer more direct financial services like small business lending, taking advantage of a more favorable regulatory environment under the Trump administration for fintechs to become banks, gain FDIC insurance, and better compete with traditional banks. Essentially, PayPal wants to move beyond just being a payment app to become a full-fledged, regulated bank, especially to boost lending. This Fintech-to-Bank Trend: Follows other crypto firms like Circle and Paxos also getting bank-like approvals, showing a shift in financial regulation.</p>
]]></description><pubDate>Tue, 16 Dec 2025 01:19:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=46283507</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=46283507</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46283507</guid></item><item><title><![CDATA[New comment by sjreese in "Ask HN: Why can't we discuss Israel on HN?"]]></title><description><![CDATA[
<p>UN RES 1701 is being violated - in Lebanon  -- the public news suppression is total from - HN point of view there is two questions - HOW and WHY -- The IDF has created a new adware insertion tools - that has the ability to drop malware by clicking on an ad -- infecting cell phones in 150 countries  -- the test of the tool was to shutdown 28% of the internet in the last 30 days ( Cloudflare spin team reports 1 man gave a bad updated )  -- This was done Three times. Second this new tool can create false ad impressions - generating real profit from ads no human every saw - and because of the placement of malware the SLPP ( London based ) lawfare team can sue for millions if you don't pay.  for google, meta and XAl the loss with be in the 100's millions on 4.5 Billion in total revenue. The real target is REAL news UN/1701 and YOU.</p>
]]></description><pubDate>Wed, 10 Dec 2025 15:52:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=46219161</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=46219161</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46219161</guid></item><item><title><![CDATA[New comment by sjreese in "New benchmark shows top LLMs struggle in real mental health care"]]></title><description><![CDATA[
<p>GIGO is the story here -- If I say I'm Iron man "WHO is the LLM to say I'm NOT"</p>
]]></description><pubDate>Wed, 10 Dec 2025 15:30:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=46218796</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=46218796</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46218796</guid></item><item><title><![CDATA[Semiconductor Warfare of the XNUMXst Century]]></title><description><![CDATA[
<p>Article URL: <a href="https://en.topwar.ru/199987-poluprovodnikovye-vojny-xxi-veka.html">https://en.topwar.ru/199987-poluprovodnikovye-vojny-xxi-veka.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=32479262">https://news.ycombinator.com/item?id=32479262</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Tue, 16 Aug 2022 04:41:05 +0000</pubDate><link>https://en.topwar.ru/199987-poluprovodnikovye-vojny-xxi-veka.html</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=32479262</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32479262</guid></item><item><title><![CDATA[Korea to remove tariff on rare gases for chip manufacturing amid Ukraine war]]></title><description><![CDATA[
<p>Article URL: <a href="http://www.koreaherald.com/view.php?ud=20220317000685">http://www.koreaherald.com/view.php?ud=20220317000685</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=30709437">https://news.ycombinator.com/item?id=30709437</a></p>
<p>Points: 7</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 17 Mar 2022 10:11:17 +0000</pubDate><link>http://www.koreaherald.com/view.php?ud=20220317000685</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=30709437</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30709437</guid></item><item><title><![CDATA[How to send messages in Ukraine if the internet shuts down]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.dw.com/en/how-to-send-messages-in-ukraine-if-the-internet-shuts-down/a-61041676">https://www.dw.com/en/how-to-send-messages-in-ukraine-if-the-internet-shuts-down/a-61041676</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=30592552">https://news.ycombinator.com/item?id=30592552</a></p>
<p>Points: 9</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 07 Mar 2022 19:54:38 +0000</pubDate><link>https://www.dw.com/en/how-to-send-messages-in-ukraine-if-the-internet-shuts-down/a-61041676</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=30592552</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30592552</guid></item><item><title><![CDATA[Why a Russian Attack on Ukraine Looks Imminent]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.forbes.com/sites/sebastienroblin/2022/02/13/12-reasons-why-a-russian-attack-on-ukraine-looks-imminent/">https://www.forbes.com/sites/sebastienroblin/2022/02/13/12-reasons-why-a-russian-attack-on-ukraine-looks-imminent/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=30329442">https://news.ycombinator.com/item?id=30329442</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 14 Feb 2022 08:00:23 +0000</pubDate><link>https://www.forbes.com/sites/sebastienroblin/2022/02/13/12-reasons-why-a-russian-attack-on-ukraine-looks-imminent/</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=30329442</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30329442</guid></item><item><title><![CDATA[Japanese reporter describes agonizing long-term effects of Covid-19]]></title><description><![CDATA[
<p>Article URL: <a href="https://mainichi.jp/english/articles/20220212/p2g/00m/0na/043000c">https://mainichi.jp/english/articles/20220212/p2g/00m/0na/043000c</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=30311157">https://news.ycombinator.com/item?id=30311157</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 12 Feb 2022 08:54:09 +0000</pubDate><link>https://mainichi.jp/english/articles/20220212/p2g/00m/0na/043000c</link><dc:creator>sjreese</dc:creator><comments>https://news.ycombinator.com/item?id=30311157</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30311157</guid></item></channel></rss>