HackerTrans
TopNewTrendsCommentsPastAskShowJobs

dloss

no profile record

Submissions

Show HN: Kelora – query and transform logs from the command line

github.com
1 points·by dloss·há 23 dias·0 comments

Underground: Tales of hacking, madness and obsession on the electronic frontier

underground-book.net
3 points·by dloss·há 6 meses·0 comments

Show HN: Kelora – Turn messy logs into structured data

kelora.dev
1 points·by dloss·há 7 meses·1 comments

comments

dloss
·há 2 meses·discuss
My voice teacher had me blow air into water with a straw. Felt good and had some therapeutic effect on my vocal chords. Apparently the technique had been developed by a Finnish speech and voice therapist. Here is some background: https://www.laxvox.com/history/
dloss
·há 3 meses·discuss
Carlini gives some more background about his vulnerability research with Claude in this interview by tptacek & co. https://securitycryptographywhatever.com/2026/03/25/ai-bug-f...
dloss
·há 4 meses·discuss
If you're fine with CLIs, maybe my Kelora project is worth a look. It's a very flexible log processor with built-in scripting: https://kelora.dev
dloss
·há 6 meses·discuss
Do you have any specific pointers concerning that "relaxing/manipulating of fascia/muscles" part? I have only dabbled a bit in qigong and hadn't noticed this. Would love to learn more.
dloss
·há 6 meses·discuss
> "simply taking time to feel your body and put your attention into latched tissues can release them."

That has been my experience as well. I have developed my own little technique around this idea, where you invite tight areas of your body to soften and spontaneously make tiny stretching or unwinding movements - without forcing, bracing, or following a scripted routine. I call it Intuitive Release.

https://dirk-loss.de/intuitive-release/
dloss
·há 7 meses·discuss
I'm sharing Kelora, a hobby project that I have been developing over the last 6 months. It's a scriptable log processor for the command line, with 150+ built-in functions for parsing, transforming, and analyzing log files and streams.

My original idea was to have an easy to deploy, potentially faster and more correct "rewrite in Rust" of my Python log processing tool klp. It quickly turned into an AI coding experiment: how far I could get with vibe-coding, in a programming language that I barely know?

Kelora's code and extensive test suite have been generated entirely by AI agents (Claude CLI with Sonnet 4 to 4.5, Codex CLI with GPT5-codex). I come up with feature ideas and discuss it with the AI agents. The AIs then write the spec, the implementation, tests, docs and CI. I don't review the code, but I use the resulting program myself and review the docs. The result is fully functional and quite useful, in my opinion.

I am fully aware that this vibe-coding process has its problems. Without human review we cannot be sure that Kelora does (only) what it's supposed to do. And although Kelora passes 1000+ automatic tests and several checks (clippy, cargo audit, cargo deny, cargo fuzz), that probably shouldn't be sufficient to use it in production. In this sense, it's an experiment, or a prototype. So maybe just run it against the example logs I've provided in the GitHub repo. Or read the docs to get inspiration for your own log processing tool.

Because that's what I want to share: My ideas about a log processing tool with embedded scripting that can help turn messy logs into structured data. Some interesting features like level maps, windows and spans, tracking and state, JWT parsing, pseudonymisation, etc. And last but not least, my joy of working together with AI agent on a software project that would otherwise have been much too big for me. I've never had so much fun in 30+ years of (hobby) programming.
dloss
·há 7 meses·discuss
Yes, the 3B variant, with vLLM 0.11.2. Parameters are given on the HF page. Had to override the temperature to 0.15 though (as suggested on HF) to avoid random looking syllables.
dloss
·há 8 meses·discuss
Some more example programs in Lambda Calculus here, including a compliant brainf#*k interpreter: https://justine.lol/lambda/
dloss
·há 9 meses·discuss
Anthropic recently released a sandboxing tool based on bubblewrap (Linux, quite lightweight) and sandbox-exec (macOS). https://github.com/anthropic-experimental/sandbox-runtime

I wonder if nsjails or gVisor may be useful as well. Here's a more comprehensive list of sandboxing solutions: https://github.com/restyler/awesome-sandbox
dloss
·há 9 meses·discuss
Here's a list: https://github.com/dloss/binary-parsing
dloss
·há 9 meses·discuss
Great list! Will incorporate some of those into my list of tools for binary parsing: https://github.com/dloss/binary-parsing