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

标签:#hackernews

找到 6727 篇相关文章

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 原文 →