From Crypto King to Pardon-Seeking Prisoner: SBF's Final Gamble Fails

比推2026-02-25 tarihinde yayınlandı2026-02-25 tarihinde güncellendi

Özet

Sam Bankman-Fried (SBF), the convicted cryptocurrency fraudster and former major Democratic donor, has recently adopted a pro-Trump and MAGA-aligned rhetoric in a series of social media posts from prison, where he is serving a 25-year sentence. He publicly praised Donald Trump and criticized what he called a politically biased judicial system, aiming to seek a presidential pardon. Despite his efforts to align with conservative causes and even appearing on Tucker Carlson’s show, the Trump administration has explicitly stated it has no intention of pardoning SBF. His shift to the right—including attacks on the “deep state” and endorsements of free speech platforms like Truth Social—is seen as a strategic yet futile attempt to gain freedom, given his history as a top Biden donor and his notorious reputation in the crypto industry. SBF continues to appeal his conviction while maintaining an active, proxy-managed presence on X.

Author: Fortune

Compiled by: Felix, PANews

Original Title: "Startled from a dying illness," SBF desperately flatters Trump for pardon but gets rejected


Convicted cryptocurrency fraudster Sam Bankman-Fried (SBF) was once a major donor to the Democratic Party, but his recent public statements have taken on a distinct "MAGA" (Make America Great Again) flavor. In a recent manifesto posted on the X platform, he wrote: "Judge Lewis Kaplan, appointed by Clinton, showed no hesitation in revealing his political bias when sentencing me. I admire President Donald Trump because he dares to stand against this 'biased, out-of-control radical'!"

This is just one of dozens of tweets SBF has posted in recent weeks, filled with attacks on the "Deep State" and other MAGA villains. Despite being one of the most notorious financial criminals of the century, currently serving a 25-year sentence in federal prison, he remains active.

Although SBF has not explicitly stated it, the purpose of his social media frenzy is obvious: to persuade President Donald Trump to free him from prison. Given that Trump has pardoned several high-profile individuals convicted of financial crimes, including SBF's former rival, Binance founder Changpeng Zhao (CZ), this strategy seems logical.

However, for SBF, his plea for Trump's mercy appears futile. In response to recent social media advocacy, a White House spokesperson reiterated to Fortune magazine that Trump has no intention of pardoning SBF.

In an email, the spokesperson referenced Trump's remarks in January of this year, when the president clearly stated that he does not plan to pardon SBF or several other high-profile prisoners, including former New Jersey Senator Robert Menendez and ousted Venezuelan President Nicolás Maduro. The spokesperson wrote: "The president is the final arbiter of all pardon matters."

SBF's lawyers did not respond to this matter.

Failed Attempt

SBF has long been a supporter of progressive causes. His parents are Stanford law professors with considerable influence among top Democrats. But when SBF's fraudulent crypto empire collapsed in November 2022, the founder began planning a shift to the right. During the trial, a private document revealed that SBF planned to appear on conservative TV host Tucker Carlson's show and "come out as a Republican."

On the surface, this strategy seemed reasonable, especially in the current political climate. Trump is set to take office in January 2025 and has promised to roll back the Biden administration's crackdown on cryptocurrencies. Under Trump's leadership, regulators have withdrawn key lawsuits against blockchain companies, and the Department of Justice has shifted its approach to cryptocurrency enforcement.

However, Washington insiders say that SBF's status as a top donor to Biden, combined with his continued notoriety in the crypto industry, makes his pardon plea a long shot. Even his unauthorized appearance on Tucker Carlson's show last year (which reportedly landed him in solitary confinement) failed to turn the tide.

Despite the slim chances, SBF has not given up. He is also appealing his conviction in federal appellate court. His X account is filled with posts promoting his newly adopted conservative identity, which critics have dubbed a "puppet account." (In his bio, SBF clarifies that he conveys content to agents via Bureau of Prisons-approved phones and emails for posting.)

His recent post reads: "Democrats love to censor 'misinformation' on social media," followed by praise for Trump's campaign platform. "Truth Social and GETTR have always prioritized free speech."


Twitter:https://twitter.com/BitpushNewsCN

Bitpush TG Group:https://t.me/BitPushCommunity

Bitpush TG Subscription: https://t.me/bitpush

Original link:https://www.bitpush.news/articles/7614352

İlgili Sorular

QWhat was the main reason SBF (Sam Bankman-Fried) started publicly supporting Donald Trump and MAGA ideology?

ASBF started publicly supporting Donald Trump and the MAGA ideology in an attempt to seek a presidential pardon from Trump, hoping to be released from his 25-year prison sentence for cryptocurrency fraud.

QAccording to the article, what was the White House's response to SBF's attempts to gain a pardon?

AA White House spokesperson stated that President Trump has no intention of pardoning SBF, reiterating Trump's earlier position from January that he would not pardon SBF or other high-profile prisoners.

QHow did SBF's political affiliations change after the collapse of his crypto empire in November 2022?

AAfter the collapse of his crypto empire, SBF began to shift towards the right wing. He planned to appear on conservative commentator Tucker Carlson's show and present himself as a Republican, despite previously being a major donor to the Democratic Party.

QWhat method does SBF use to post on social media while in federal prison?

ASBF posts on social media by relaying content through an agent using a phone and email approved by the Bureau of Prisons, as clarified in his profile.

QBesides his appeal in federal appellate court, what other action is SBF taking to try to overturn his conviction?

ABesides his legal appeal, SBF is actively posting on social media to promote his newly adopted conservative identity and criticize his perceived political enemies, in a continued effort to seek a pardon.

İlgili Okumalar

Can Generative Models Finally Be Trained End-to-End? The Core Is a For Loop

This article introduces a novel training paradigm for generative models called Explorative Modeling (XM), which enables true end-to-end training. Traditionally, powerful generative models like autoregressive and diffusion models are not trained end-to-end. They are trained to predict a single small step but require iterative multi-step sampling for inference. This "exposure bias" leads to error accumulation and limits performance. The core challenge XM addresses is "mode blurring." In generative tasks, a single input (e.g., "generate a dog") corresponds to many valid outputs (multiple modes). Standard training objectives like reconstruction loss force the model to average these modes, producing unrealistic, blurry outputs. To avoid this, existing models break generation into many small, almost deterministic steps, sacrificing end-to-end training. XM tackles this by restructuring the training loop itself. Its key insight is to amplify "generative expressivity." For each training input, instead of generating one sample, the model generates K candidate outputs. Only the candidate closest to the real data is used for computing the loss and updating the model via backpropagation. This simple "best-of-K" mechanism is implemented as a short for-loop. By exploring multiple possibilities, the model learns to distribute its guesses across different modes rather than collapsing to their uninformative average. The paper demonstrates that "exploration" acts as a new, powerful scaling axis. Gains from XM increase with model size, data scale, and compute. Experiments show improvements in FID scores for image generation and significant efficiency gains, sometimes outperforming larger models without exploration. When pushed to the limit, XM enables fully single-step, end-to-end generative models. In robotics tasks, an "Explorative Policy" matched the performance of a 100-step Diffusion Policy with a single forward pass, drastically improving inference speed. While the best-of-K concept is not entirely new, the authors' contribution lies in formally understanding it as a direct method to boost generative expressivity without fragmenting the generation process. This work suggests that as models scale, enhancing exploration during training may become crucial for overcoming fundamental performance bottlenecks.

marsbit8 dk önce

Can Generative Models Finally Be Trained End-to-End? The Core Is a For Loop

marsbit8 dk önce

Annual Salary of Millions Competing for Electricians, Meta Rushes to Open Its Own Technical School

The AI boom is facing an unexpected bottleneck: a severe shortage of skilled construction workers and electricians. As tech giants like Meta, OpenAI, and Alphabet race to build massive data centers—such as OpenAI's $16 billion "Stargate" project—they are hitting a critical labor wall. The U.S. needs an estimated 130,000 more electricians, 240,000 construction workers, and 150,000 supervisors by 2030 for AI infrastructure alone, but tens of thousands of electrician jobs go unfilled each year. While AI companies offer high premiums, with electricians earning up to $280,000 annually, worker scarcity still causes massive losses—delays on a single project can cost $14.2 million per month. The complexity of building AI data centers, which require immense power (equivalent to powering hundreds of thousands of homes), sophisticated electrical systems, and advanced liquid cooling solutions, demands highly skilled technicians who are in short supply. To combat this, companies are investing heavily in training. Meta has committed $115 million to a free training school offering tuition, housing, and stipends, targeting 5,000 new workers. OpenAI is partnering with unions to secure skilled labor. These efforts are paying off, with a significant rise in Gen Z interest in trade schools over college. However, the power demands are staggering. AI data centers are driving a rapid surge in electricity consumption, projected to account for up to 12% of U.S. power use by 2028 and raising costs for consumers. Furthermore, the construction boom is project-based, leading to a potential future glut of trained workers once building peaks, which could depress wages industry-wide. The race for AI supremacy now depends as much on skilled hands as on advanced chips.

marsbit1 saat önce

Annual Salary of Millions Competing for Electricians, Meta Rushes to Open Its Own Technical School

marsbit1 saat önce

İşlemler

Spot
活动图片