HN user

oldfuture

450 karma
Posts54
Comments26
View on HN
news.ycombinator.com 2d ago

Fake News: a game

oldfuture
1pts0
www.404media.co 18d ago

Apple Hide My Email Reveals the User’s Real Email

oldfuture
4pts1
ldyang694.github.io 2mo ago

Pixel-Aligned 3D Generation from Images

oldfuture
1pts0
corticallabs.com 2mo ago

Cortical Cloud – Code to Real Neurons

oldfuture
2pts1
opendyslexic.org 2mo ago

OpenDyslexic: A Typeface for Dyslexia

oldfuture
2pts1
github.com 2mo ago

0xBitNet

oldfuture
4pts0
github.com 2mo ago

Potato OS

oldfuture
2pts1
docs.thrml.ai 2mo ago

Thrml - Probabilistic Compute Simulation on GPUs

oldfuture
2pts0
www.calcifercomputing.com 2mo ago

Temporal Language Models

oldfuture
3pts0
itayinbarr.substack.com 3mo ago

Honey, I Shrunk the Coding Agent

oldfuture
8pts0
omlx.ai 3mo ago

OMLX – Apple Silicon Optimized Local Inference

oldfuture
1pts0
z-lab.ai 3mo ago

DFlash: Block Diffusion for Flash Speculative Decoding

oldfuture
3pts0
ntrs.nasa.gov 3mo ago

Free Space Optical Link Utilizing a Modulated Retro-Reflector [pdf]

oldfuture
1pts0
github.com 3mo ago

Mesh LLM

oldfuture
4pts0
huggingface.co 3mo ago

Run Gemma 4 in Your Browser

oldfuture
4pts0
www.producer.ai 3mo ago

Producer by Google

oldfuture
2pts0
github.com 3mo ago

Grove: Distributed LLM Training over AirDrop

oldfuture
3pts0
epstein.observer 4mo ago

Epstein Fallout Tracker

oldfuture
4pts0
github.com 5mo ago

Distributed Llama

oldfuture
3pts0
resist.bot 5mo ago

Resist.bot – Text your elected officials all at once

oldfuture
1pts0
static.stepfun.com 5mo ago

Step 3.5 Flash

oldfuture
3pts0
epsteinsecrets.com 5mo ago

Epstein Graph Visualization

oldfuture
8pts0
github.com 5mo ago

PowerInfer: Fast LLM Inference on a Consumer-Grade GPU

oldfuture
1pts0
arxiv.org 5mo ago

The Shape of Reasoning: Topological Analysis of Large Language Models

oldfuture
3pts0
github.com 7mo ago

OpenBB – Open Financial Terminal

oldfuture
4pts0
extropic.ai 7mo ago

Thermodynamic Computing

oldfuture
2pts0
umbrel.com 7mo ago

Umbrel – Personal Cloud

oldfuture
220pts122
agu.confex.com 7mo ago

Real-time volcanic forecasting using seismic ambient noise analysis (AGU 2025)

oldfuture
1pts0
experience.odyssey.ml 7mo ago

Realtime Interactive AI Videos

oldfuture
3pts0
www.youtube.com 7mo ago

Democracy in the Workplace: Co-ops [video]

oldfuture
2pts1

And the prospectus says it plainly: "Mr. Musk will be able to control the outcome of matters requiring shareholder approval."

Musk holds over 85% voting power through Class B super-voting shares (10 votes/share). Public investors combined will have 15%.

What Musk Controls:

- CEO removal = his consent. You can't fire him even if he destroys the company

- Take business for himself. SpaceX gets a rocket deal? Musk can say "I'll do it at Tesla instead"

- 85% voting forever. No expiration, no time limit, permanent control

- Board elections. You have no power to elect directors you trust

Interaction Models 2 months ago

the intentions may be good but it looks like a boost to surveillance tech in the wrong hands, time to react

Potato OS 3 months ago

usable ai on a simple raspberrypi, quite an achievement for sovereign ai

The word "fake" draws attention but I think the article obscures two real problems:

Training is missing from the analysis entirely (as someone else noted)

Inference water use is indeed minimal per prompt no argument there, but training the old GPT-3 consumed roughly 5.4 million liters of water. LLaMA 3: ~22 million. These are huge events, happening multiple times a year across the industry, folding them into national averages seems like the statistical simplification he article criticizes everyone else for doing…

"Small nationally" ≠ "fine locally"

The Dalles, Oregon is the clearest example. In 2012, Google used 12% of the city's water supply. Today it consumes a third, around 1.19 million gallons per day, and well a sixth data center comes online in 2026, in the same area.

The city is now pursuing a $260 million reservoir expansion into a national forest (!), where 95% of the projected new water demand will be industrial, not residential. Residents are looking at a potential 99% rate increase by 2036 to fund infrastructure that may exists primarily to serve one company. Apparently the city fought a 13-month legal battle just to keep those numbers secret, that’s like a community being reshaped around a single tenant.

Hays County, Texas residents sharing the Edwards Aquifer with incoming data centers voted to block one. Memphis is watching xAI draw 5 million gallons per day. Bloomberg found two-thirds of new U.S. data centers since 2022 are sited in high water-stress zones. Arizona have already passed ordinances capping data center water use.

This to me looks like a problem in the making, AI water use isn't a national crisis for now, but local impacts are already real, training costs are systematically underreported, and the five year trajectory in water stressed regions deserves serious attention indeed

this can be solved by adding an external nas - for redundancy - and an opensource application or extension that manages the syncing?

making self hosting more seamless is key, we simply can't trust to be dependent on third parties for access to our own data in the long term

Google's removal of num=100 parameter last month makes it harder for third party tools (e.g. chatgpt, perplexity) to access beyond the first 10 results

This is incredibly hurting the visibility of any new emergent site as we can already see in the data

One thing worth stressing is that the witness + executor layer is the critical trust boundary here.

In classic Ethereum, bugs are noisy: if one client diverges, other clients complain, and consensus fails until fixed.

In zk Ethereum, bugs can be silent: the proof validates the wrong execution and everyone downstream accepts it as truth.

I mean that the witness is like a transcript of everything the EVM touched while running a block: contract code, storage slots, gas usage, etc. so you can replay the block later using only this transcript, without needing the full Ethereum state.

For security, that witness ideally needs to be cryptographically bound to the block (e.g., via Merkle commitments), so no one can tamper with it.

The executor is the piece that replays that transcript deterministically. If it does so correctly, then you can generate a zk proof saying “this block really executed as Ethereum says it should.” But correctness here isn’t binary, it means bit-for-bit agreement with the Yellow Paper and all EIPs, including tricky cases like precompile gas rules. So the danger is in the details. If the witness omits even one corner case, or the executor diverges subtly, the zk system can still generate a perfectly valid proof, but of the wrong thing. zk proofs don’t check what you proved, only that you proved it consistently. In today’s consensus model, client bugs show up quickly when nodes disagree.

So while the compilation and toolchain work here is impressive, the real challenge is making sure the witness and executor are absolutely faithful to Ethereum semantics, with strong integrity guarantees. Otherwise you risk building cryptographic certainty, but about the wrong computation. This makes the witness/executor correctness layer the single point of failure in my view where human fallibility can undermine mathematical guarantees, looking forward to understand how this problem will be tackled

Meta Ray-Ban Display 10 months ago

You have more control, in theory, on a cellphone, and so do people around you. With the glasses you really have no way to say if they are listening or watching what you see. The phone has most of the time the sensors partially blocked by a bag or a pocket so it really can't be compared with eyewear.

Meta Ray-Ban Display 10 months ago

the fact that surveillance capitalism, or we should rather say surveillance oligarchy, is here does not mean we have to support it going forward, it can only be worse if nobody reacts

Meta Ray-Ban Display 10 months ago

https://www.wired.com/story/tiktok-promotes-stickers-for-sec...

Why they shouldn't be allowed ---

1.The glasses have cameras and microphones capable of recording people nearby often without their knowledge (e.g. the recording indicator can be subtle or blocked, “GhostDot” stickers are being sold to block the LED indicator light so others won’t see when recording is happening)

2. As I remember Meta has changed its privacy policy so that voice recordings are stored in the cloud (up to one year) and “Hey Meta” voice-activation with camera may be enabled by default, meaning more frequent analysis of what the camera sees to train AI models.

3.The possibility that anytime someone might be recording you wearing glasses that look like ordinary sunglasses can create a chilling effect: people may feel uneasy, censor themselves, avoid public spaces, etc.

[dead] 11 months ago

why is he so fascinated by this topic?

why while he seemingly wish for a katechon (restraint) his portfolio appears to be accelerating concentration of power instead in the very same way as the antichrist in his view would do?

Guardrailed AMIE (g-AMIE) from DeepMind is an AI system that does:

-patient interviews to gather medical history

-never shares medical advice or diagnosis if not reviewed and approved by licensed doctors

apparently g-AMIE followed safety rules 90% of the time compared to 72% for human doctors