今日已更新 396 条资讯 | 累计 20866 条内容
关于我们

标签:#News

找到 7520 篇相关文章

AI 资讯

Google deleting all recently inactive accounts without phone number

Google is now deleting all accounts that do not, and have never had, phone numbers associated with them if they haven't logged in within a year or so. "Urgent: Sign in to your Google Account if you want to keep it" But then it doesn't matter if you log in with the correct username and password and receive the PIN via your email. This is isn't enough. Unless a phone number is somehow added to the account one gets, "You can’t recover your account at this time because Google doesn’t have enough inf

2026-07-11 原文 →
AI 资讯

Show HN: Clx – Compile Lua to Native Executables Through C++20

Hi HN, clx is an ahead-of-time compiler for standard Lua that generates C++20 and produces standalone native executables through GCC, Clang or MSVC. The project started as an experiment to see whether modern C++ could be used as a portable compiler backend instead of LLVM or direct machine code generation. The generated code is then compiled and optimized by the host toolchain. The latest release replaces the previous NaN-tagged value representation with a new shadow-types implementation, adds f

2026-07-11 原文 →
AI 资讯

Show HN: Hidetext.sh – encrypted pastebin where the server never sees the key

Hi HN! I built hidetext.sh — a way to share text, code, and files through links the server can't read. How it works: your browser generates a random key and encrypts everything locally (NaCl secretbox, XSalsa20-Poly1305). Only ciphertext is uploaded. The key goes into the URL fragment — the part after # — which browsers never send to servers. The link carries the key, my server stores the locked box, and the two only meet in a browser. A design detail I'm fairly happy with: burn-after-read doesn

2026-07-11 原文 →