johnlockejrr

Results 22 comments of johnlockejrr

Yes, I use the `-v` flag but it only shows me the progress like 0/9288383, I would like to know the last key tried, still reading your code, wanted to...

you're right. writing to disk every key is not an option, that's why I thought about writing last key once per hour. anyway, computing last key incrementing from the given...

Any idea how can I do that in C? Doesn't seem to work for me: ``` #include int main() { int x; x = 0xb04c426e30f75098e207fb537b5c975f77ad7f8d + 1; printf("%x\n", x); }...

Yeah, my bad, tried also `unsigned long long int` and `%llx` format, same almost same thing, it gets truncated to `7b5c975f77ad7f8e`

Good tip with python: ``` #!/usr/bin/env python2.7 x = 0xb04c426e30f75098e207fb537b5c975f77ad7f8d + 1; print("%0.2x" % x) ``` Output: `b04c426e30f75098e207fb537b5c975f77ad7f8e`

> @secretnumber Thanks again for uploading a current DB. > > I spent this weekend immersing myself in trying to learn code - I was able create what I originally...

Python is an interpreted language, it doesn't compile, anyway, my code is an example, you have to "tune" it a little not just copy/paste, and should work.

> @johnlockejrr thanks! I attempted to insert the code and I can't get it to compile. Oh well. I'm going to just stick with running Plutus for now. I would...

> @johnlockejrr I just pulled in your code and got it running. Quite fast! I also checked to see if it was properly working, and it is! Clearly i'm not...

Managed to get the data from the origin, now another problem, I follow your example and I get no model saved... do I do anything wrong? ``` import pandas as...