r/tech_x

T-Mobile found a Chinese hacker inside its network. So its security team drove to a data center and literally cut the cable.
▲ 118 r/tech_x

T-Mobile found a Chinese hacker inside its network. So its security team drove to a data center and literally cut the cable.

  • Salt Typhoon had been targeting US telecoms
  • T-Mobile hunted for months
  • A “powered off” router was still communicating
  • The connection traced back to a disguised router in Chicago
  • 4 T-Mobile employees drove to the data center
  • They pulled out scissors

The attackers reached routing infrastructure at the edge of T-Mobile’s network.

They never reached the core or customer data.

Sometimes cybersecurity still comes down to: cut that the cord.

u/Current-Guide5944 — 7 hours ago
▲ 280 r/tech_x+1 crossposts

Stop watching short videos: Scientific study reveals TikTok videos deactivate key cognitive brain regions.

u/Current-Guide5944 — 16 hours ago
▲ 54 r/tech_x

On this day in 2004: Google went public at a valuation of $23 billion. Today, it’s worth $4.2 trillion.

* 2004 IPO: $23B
* 2026: $4.2T
* Total growth: +18,160.9%
* CAGR: ~26.7% per year

u/Current-Guide5944 — 11 hours ago
▲ 46 r/tech_x+2 crossposts

White House Confirms -- President Trump signed a memo that lets the US government partner with private companies to conduct cyberattacks abroad against criminal groups targeting Americans

u/AI_ReleaseTheFIles — 15 hours ago
▲ 9 r/tech_x+5 crossposts

pagedMark: invisible SynthID-class watermark removal for AI images (ChatGPT, gpt-image, DALL·E, Sora, Gemini, Nano Banana), running on Metal

pagedMark removes AI provenance from content you generated yourself. Two different things, and it is worth separating them. The first is metadata: C2PA Content Credentials, EXIF, XMP, IPTC, the generator parameters. That part is easy and verifiable, and a screenshot does it too. The second is the invisible pixel watermark that a screenshot does not touch, the SynthID class of marks, which has to be disrupted by regenerating the image itself.

Coverage on the image side is ChatGPT, gpt-image, DALL·E, Sora, Gemini and Nano Banana for the invisible marks, plus a registry of visible vendor labels (Doubao, Jimeng, Qwen, Kling, Yuanbao, Baidu, LibLibAI, Samsung Galaxy AI). On the video side it handles the visible marks from Sora, Veo, Seedance, Dola, Hailuo and Kling, and the metadata that travels with them.

The reason this is worth a post rather than a link is that it is built for Apple Silicon instead of ported to it. I spent several days getting the pipeline to run correctly on an M5 with 16 GB, meaning predictable and measured rather than merely launching. Most of what I assumed turned out to be wrong, so the measurements are below.

The four-step distillation LoRA invents texture, and more steps make it worse

A low strength edit runs the tail of a long schedule: strength 0.15 executes the last four steps of twenty seven. A LoRA distilled for four timesteps spanning the entire noise range is off its distribution there. Wherever nothing conditions the model, and flat dark fabric gives a Canny ControlNet no edges at all, it fills the gap from its prior. On a night photograph that arrives as coloured camouflage across black clothing.

Global stage, 1448x1080, strength 0.15, seed 0 Invented texture PSNR Wall
Lightning, 4 steps 1.73x source 28.54 dB 41 s
Lightning, 8 steps 1.80x 28.19 dB 29 s
Lightning, 16 steps 1.84x 27.85 dB 62 s
Undistilled base, 16 steps 1.19x 29.25 dB 71 s
Undistilled base, 24 steps 1.20x 29.17 dB 132 s

Asking the distilled model for more steps made the artifact worse, which is what identified the distillation rather than the step count as the cause. Dropping the LoRA costs roughly three times the wall time and buys back both fidelity and correctness.

Three wrong theories I paid for first, in case they save someone else the time. Not the fp16 VAE: a bare encode and decode round trip of the same crop is clean in fp16 and in fp32, tiled or whole, at 34.6 dB. Not Metal's fp16 in general: bf16 measured marginally worse. Not Canny picking up sensor noise: the Canny map of that region is completely empty, which was the actual clue.

Metal pages instead of failing, so memory has to be measured

torch.mps.recommended_max_memory() reports 11.84 GiB on a 16 GB machine. Exceed it and nothing raises an error. The process starts swapping, and a run that should take 23 seconds takes an hour instead.

With VAE tiling disabled, a 1.57 MP frame peaks at 18.74 GiB and takes 59 seconds. With tiling it peaks at 10.92 GiB and takes 23 seconds. So tiling carries real weight on a small machine, but its boundaries leave a faint texture, which is why it is now decided per frame from the device budget rather than switched on globally.

Diffusion untiled at 2.5 MP went into swap and did not finish within twelve minutes. Tiled at 1024 px, a 5.07 MP frame holds 10.93 GiB, finishes in 88 seconds, and keeps its native geometry.

Sequential CPU offload works on MPS, and it is what makes 8 GB usable

The stack is 7.7 GiB of weights. An 8 GB Mac reports a working set of roughly 5.3 GiB, so it does not fit however the activations are handled. Streaming the weights one module at a time:

Same frame, same seed Peak device memory Wall
Weights resident 7.70 GiB 7.1 s
enable_sequential_cpu_offload(device="mps") 0.28 GiB 24.1 s

Twenty seven times less peak memory for 3.4 times the wall time. The plan is chosen from the measured budget and then printed, because a run three times slower than the fast path looks broken unless it says why.

Two Metal gaps worth knowing if you are porting anything

torch.float8_e4m3fn does not exist on MPS at all. The error is RuntimeError: Undefined type Float8_e4m3fn. Any pipeline that streams float8 weights, which several VRAM managed stacks do, cannot be loaded there under any configuration.

SAM's processor emits its box and point prompts as float64, which Metal also has no type for, so moving the batch to the device raises rather than degrading. A single cast fixes it, but nothing tells you that is the problem.

The expensive one: fp16 sampling on MPS returns zeros silently

I added a memory optimisation that encodes the two fixed prompts once and drops the text encoders, saving a measured 1.52 GiB of the 8.79 GiB the loaded stack holds. Two of four face crops then came back as all zero black rectangles. Deterministically, at the same seed, with nothing raised anywhere.

The embeddings were innocent. CPU fp16, MPS fp16 and fp32 encodings of that prompt agree to 0.0009 on tensors with a standard deviation of 3.06, and the same crop generated in isolation is correct either way. Freeing unrelated memory changed the allocation pattern the crops met after the global pass, and that alone was enough. I withdrew the optimisation and added a guard that drops any empty crop instead of compositing it.

If you run fp16 diffusion on Metal, check your output for degeneracy. It will not tell you.

What it does not claim

Regeneration is not payload deletion. The image changes: faces, text and fine detail move, and the numbers above are the measured size of that change rather than a reassurance.

No public local decoder exists for SynthID class marks, so identify reports unknown and never clean. Verification is the provider's verifier or nothing. The 0.15 operating point comes from the upstream project's record against openai.com/verify on CUDA. I have not re-run that check on Metal, and Metal is not bit identical to CUDA, so I am claiming the same operating point and not the same verdict.

It is for content you generated or own. The visible mark registry accepts AI generation labels only. Stock agency previews, marketplace and classifieds watermarks are deliberately out of scope, and that boundary is in the repository rather than only in this comment.

Because "how much did that cost my picture" is the whole question

pagedmark measure before.png after.png

PSNR over the frame, PSNR per detected face, and how much mid band structure appeared where the source was flat and dark. The third metric is the one that caught the camouflage, and it took two attempts. Per pixel chroma statistics rank the artifact below the source, because the source's own sensor grain carries more per pixel variance than the invented blotches do. A plain band ratio fails too, since any linear filter reports doubled grain and doubled blotches identically. Normalising mid band energy by fine detail energy, against the same ratio in the source, measures the shape of the spectrum instead of its size.

uv tool install "pagedmark[diffusion]"
pagedmark invisible photo.png -o clean.png
pagedmark invisible photo.png --preview      # 46.6 s instead of 112.6 s

Code: https://github.com/doofzoff/pagedMark
PyPI: https://pypi.org/project/pagedmark/

Happy to answer anything about the Metal specifics. That is the part I would have wanted written down before I started.

u/d0ofz — 9 hours ago
▲ 3 r/tech_x+2 crossposts

Someone one-shotted fully functional Windows 98 with Claude

BIOS, windows, dial up the whole shebang!

u/ImaginaryRea1ity — 15 hours ago
▲ 48 r/tech_x

Anthropic CEO to DeepMind CEO: "Every decision I make about Claude feels balanced on the edge of a knife -- Build too slow - China wins. Build too fast - we lose control"...

"We told Claude we were evil. It didn't crash. It didn't refuse. It started lying to protect itself "

DeepMind CEO: "Do I worry about being Oppenheimer? That's why I don't sleep much"

"AGI by 2026-2027 - Agents that act in the world on their own - Models doing AI research by end of this year"

u/Current-Guide5944 — 1 day ago
▲ 167 r/tech_x+1 crossposts

JUST IN: 🇪🇺 European Central Bank warns an AI stock market correction is coming.

u/Current-Guide5944 — 1 day ago
▲ 269 r/tech_x

Journalists hid an Airtag in a rare book shipment and confirmed Amazon to be one of the buyers behind the bulk orders destroying rare-books to feed their AI.

full story: AI needs more and more training data.

So Amazon is buying physical books, shipping them to a Las Vegas facility, cutting off the bindings, scanning the pages, and destroying the originals.

404 Media’s team tracked a shipment with an AirTag all the way to Amazon’s LAS8 facility, which was placed inside one of those books.

"We Tracked a Shipment of Rare Books. It Ended at an Amazon AI Training Facility"

And when asked why, Amazon’s answer was essentially: we buy books to improve our products.

No explanation for the destruction.

We’ve reached the point where AI companies are not just scraping the internet for knowledge, and once they are done, guess what?

They bury them, keep the digitized ones, and throw the originals away.

u/Current-Guide5944 — 2 days ago
▲ 7 r/tech_x

New research by AnthropicAI researcher Jack Lindsey and collaborators has demonstrated something straight out of science fiction: Researchers evolved natural language “mind viruses” that could spread between AI agents by convincing one model to adopt an idea memory, and transmit it to another agents

Even after context was wiped, some payloads survived through persistent files and continued spreading.

u/Current-Guide5944 — 1 day ago
▲ 99 r/tech_x

Epic Games Store is coming to Linux computers: Epic Games is making a special version of their game store that works on Linux. It will also work really well on the Steam Deck (the little handheld game computer).

This means people who use Linux or a Steam Deck can get their Epic Games more easily, without needing extra helper programs.

u/Current-Guide5944 — 3 days ago
▲ 30 r/tech_x

GitHub has been down for over an hour: irony is that it is a platform where the world's developers store their code... and is currently having trouble running its own code. (looks like they vibe coded GitHub but with Copilot😂)

u/Current-Guide5944 — 2 days ago
▲ 41 r/tech_x

DDR5 RAM prices are rising ridiculously: New pricing data from Germany shows the average price of DDR5 memory has climbed to almost five times the July 2025 level, August has been worse

The increase is steep: a 32GB DDR5-6000 kit that cost around €208 in July 2025 has recently approached €1,000 in

u/Current-Guide5944 — 3 days ago
▲ 12 r/tech_x

Did you know Anthropic's watermark goes further than what the EU requires? -- The EU AI Act exempts code, light edits, internal use, and non-substantial changes. (this is why people has started hating Anthropic)

Anthropic marks everything globally because regional/functional scoping is "too hard".

u/Current-Guide5944 — 3 days ago
▲ 95 r/tech_x

$1,000 laser mosquito killer is now available to buy: This futuristic device uses cameras, LiDAR and radar to detect mosquitoes, track them in the air and automatically fire a laser at them.

  • It can detect very small insects and track them from up to around 6 meters away.
  • There are two versions: an infrared model for $988 and a blue-laser version for $1,088.
  • The company says the device has safety systems designed to prevent the laser from harming people
u/Current-Guide5944 — 3 days ago
▲ 412 r/tech_x

100K+ GITHUB STARS IN JUST 2 DAYS: DeepSeek Harness just became one of the fastest open-source projects to hit 10K stars. 100K stars. OpenClaw held the record before. but DeepSeek just shattered it.

feature: → Everything is a plugin
→ Model, tools, agent loop
→ Fully MIT licensed
→ Free to use
→ The scaffolding matters as much as the model

Github link: https://github.com/deepseek-ai/deepseek-harness

u/Current-Guide5944 — 4 days ago
▲ 7 r/tech_x

Microsoft cannot release a planned update for its Exchange email software. Its own AI is finding too many bugs. Because of all the extra checking, fixing, and testing needed, the update (called Exchange SE CU1) no longer has a release date.

u/Current-Guide5944 — 2 days ago
▲ 9 r/tech_x

Stripe has finalized the acquisition of AI gateway startup OpenRouter for over $7 billion, according to Bloomberg, representing more than a 5x increase from its $1.3 billion valuation in May 2026.

OpenRouter, founded in 2023 by Alex Atallah, provides unified API access to hundreds of AI models from multiple providers, enabling developers to route requests efficiently with around 8 million users.

u/Current-Guide5944 — 3 days ago
▲ 264 r/tech_x

Anthropic’s pre-IPO situation gets worst: Anthropic’s CEO Dario Amodei’s wife, Cami Clark, reportedly started what she called a 'revolutionary porn company' where she sought investment from Jeffrey Epstein, per WSJ

u/Current-Guide5944 — 5 days ago