Posts

Show HN: Co-locating Debian Bullseye with an evil maid - Klaput News

Show HN: Co-locating Debian Bullseye with an evil maid 2 by dinom | 0 comments on Hacker News. In order to facilitate the secure co-location of a server, I looked into protecting a Debian Bullseye system from evil maid attacks. In addition, since I've enjoyed using ZFS for some time, I decided to rely on a natively encrypted ZFS root file system. Basically... I'd like to take a system containing sensitive information, box it up, and drop it in the mail without worrying about losing it or having it wind up in the wrong hands. A couple of things became clear while researching how to do this. First, there should be little chance that a rogue data-center admin can insert malicious software. When the system reaches the data center and gets powered on we should be confident that it's running our software completely unmodified. As I understand things, Secure Boot is designed to help with this and therefore should be enabled. However, by relying on Secure Boot alone, there will ...

Show HN: Salesforce Announces Einstein GPT - Klaput News

Show HN: Salesforce Announces Einstein GPT 2 by naj1n | 1 comments on Hacker News. Salesforce Announces Einstein GPT, the World’s First Generative AI for CRM

Show HN: Hello World Java Polyglot - Klaput News

Show HN: Hello World Java Polyglot 3 by yarg | 0 comments on Hacker News. I wanted to see how much simpler native code integration has become with GraalVM's polyglot, when compared to JNI. It's less than 100 lines all up (including the POM). (I feel kinda stupid posting a "hello world" to HN, but this is a hell of an improvement.) Linux only at the moment.

Show HN: A CLI tool to analyze TCP connections, especially for tuning conn pools - Klaput News

Show HN: A CLI tool to analyze TCP connections, especially for tuning conn pools 2 by patrickevans | 0 comments on Hacker News.

Show HN: I made calling WebAssembly from Python 25x times Faster - Klaput News

Show HN: I made calling WebAssembly from Python 25x times Faster 3 by alsadi | 0 comments on Hacker News. I found a serious bottleneck in Python binding of Wasmer and Wasmtime and I found a trick to make 25x faster. Then beat all that using NumPy.

Show HN: Crypto payment gateway with recurring billing - Klaput News

Show HN: Crypto payment gateway with recurring billing 3 by salimstartup | 1 comments on Hacker News. We have built a non-custodial solution that helps merchants to accept recurring payments. Easy to integrate and smooth UX (no need to leave merchant website). Feedback is much appreciated

Show HN: I made a chatbot that debugs your code better than ChatGPT - Klaput News

Show HN: I made a chatbot that debugs your code better than ChatGPT 3 by jshobrook | 1 comments on Hacker News. I built this using semantic search and the ChatGPT API, which was just released the other day. What makes it special is it not only understands the code you're debugging, but also pulls in additional context like relevant documentation to help answer your questions and suggest code changes. Ultimately, my goal is to take the hassle out of pasting error messages into Google, finding a vaguely related StackOverflow post, and manually integrating the solution into your code.