Recent content by Claire King

  1. C

    How to learn Ubuntu, Debian and All linux distros?

    Even macOS is fine to start out with. That's how I started out, I had my shittass 2013 MacBook air that my mom gave me because she spilled tea on it at least 3 separate times. Hell, I made my first machine learning project on that thing.
  2. C

    Is C++ a good choice to make bots?

    Hell no. Take a look at a GET request in C++ vs Python: C++: #include <curl/curl.h> #include <string> size_t writeFunction(void *ptr, size_t size, size_t nmemb, std::string* data) { data->append((char*) ptr, size * nmemb); return size * nmemb; } int main(int argc, char** argv) {...
  3. C

    How to learn Ubuntu, Debian and All linux distros?

    You don't need to learn all linux distros, all linux distros run on the UNIX kernel meaning they are much more similar to each other than ubuntu to windows for example. Look up "basic linux commands", learn the important ones and start practicing.
  4. C

    Python beginner looking for direction

    Hey there, I would be willing to help you out, send me a PM on here. I have been programming for about 3 years now and am proficient in Python (3, if you want me to teach you 2.x you're SOL), C, Assembly and Perl(RIP). I have quite a bit of experience with web-scraping, request protocols, deep...
  5. C

    BTC-SEEDS & WALLET INFOS FREE HELP ME

    Yeah, Bruteforcing it will be easy, considering there are 2^256 private keys out there and bitcoin uses elliptic curve encryption which is known for being more secure and less lengthy than say RSA. Should be easy. Oh, by the way, maybe don't mention the fact that you have 5000 stolen BTC and XMR...
Back
Top