Code Monkey home page Code Monkey logo

Comments (2)

 avatar commented on July 20, 2024

Is IDLE some kind of Python builtin, or do you just mean a super basic loop? Might be some kind of Python optimization that I have little knowledge of.

Also, your markdown is a bit wonky.

from bit.

AndZhig avatar AndZhig commented on July 20, 2024

it's because of some Tkinter Text widget. here the output or write in the terminal or somehow manually the functions called in the code to register through numba if possible. For scanning "32 btc puzzle" (what is it you can find out in google) at least 1000000 key per sec to get.

import time
from bit import *
from numba import jit
import random

@jit
def ran():
a = random.randint(36028797018963968,72057594037927936)
return a

while 1 == 1:

start_time = time.time()
i = 100000
while i >= 1:
    b = ran()
    key = Key.from_int(b)
    addr = key.address
    if addr == "17aPYR1m6pVAacXg1PTDDU7XafvK1dxvhi":
        print ("found!!!",addr,b)
        s1 = str(b)
        s2 = addr
        f=open(u"C:/a.txt","a")
        f.write(s1)
        f.write(s2)       
        f.close()
        break
    else:
        pass

    


    i = i -1
print("--- %s seconds ---" % (time.time() - start_time),addr,b)
time.sleep(1.0)
pass

from bit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.