Malachi Jones
Malachi Jones
Thanks for this, I came here with the same issue that you've solved here. I was going to suggest `find_files` and `grep_files` as the names of the tools here, to...
> Claude suggested this: > > ```c++ > unsigned int generate_seed() { > unsigned int seed = (unsigned int)time(NULL); > seed ^= (unsigned int)clock(); > seed ^= (unsigned int)getpid(); >...
> Sounds good. So can you implement it? Yep, updated to XOR with the nanosecond value too :)