Close
0%
0%

Quantum Random Numbers for Lottery Draw

I have tried and failed every legal route to win the lottery.

Public Chat
Similar projects worth following
I started thinking about Schrodinger’s Cat then I came up with an idea to cheat on lottery.

Apparently doesn’t work either way as obscuring information seems impossible at the moment. Due to conventional computers they tend to force a binary state?

I have a row of variables indicating each ball from the powerball lottery. Each variable except the last one generates a random number between 1-69. The idea is that as long as no one observes the information then every number has been chosen. By using A == A: I try obscuring information.


Having trouble at the moment in trying to figure out how to claim my prize without causing a collapse(its a joke)

But seriously, I have 18,000 lines of code in a python script.

And, I have strangely picked up evp like echos of my own voice a few times. Even recordings of my voice seemed to differ than my memory.

I'm hoping it was real and not a computer error.

This code is meant to use a mic to record your voice as if you are a cat in Schrödinger's thought experiment.  Sadly,  all 292 million possible states are collapsed ounce you claim your prize at your state's capital.

THIS IS ONLY A CHUNK OF THE ENTIRE SCRIPT

Which is only about 18,000 lines long. The code's authenticity is protected by an unconventional cryptographic signature on other sites and is protected by a onetime pad and its trivial  to consider xor'n anyway. So don't try too.


import quantumrandom
import os, sys
import gtk.gdk
import time
import pyaudio
import wave
from array import array



A = quantumrandom.randint(1, 70)
B = quantumrandom.randint(1, 70)
C = quantumrandom.randint(1, 70)
D = quantumrandom.randint(1, 70)
E = quantumrandom.randint(1, 70)
F = quantumrandom.randint(1, 27)



time.sleep(10)



if A == A:

        D = quantumrandom.randint(10, 70)
        FORMAT=pyaudio.paInt16
        CHANNELS=2
        RATE=44100
        CHUNK=1024
        RECORD_SECONDS=D
        FILE_NAME=D


        audio=pyaudio.PyAudio() #instantiate the pyaudio

        #recording prerequisites
        stream=audio.open(format=FORMAT,channels=CHANNELS,
                          rate=RATE,
                          input=True,
                          frames_per_buffer=CHUNK)

        #starting recording
        frames=[]

        for i in range(0,int(RATE/CHUNK*RECORD_SECONDS)):
            data=stream.read(CHUNK)
            data_chunk=array('h',data)
            vol=max(data_chunk)
            if(vol>=0):
                print("catisalive-something said")
                frames.append(data)
            else:
                print("catisalive-something said")
            print("\n")


        #end of recording
        stream.stop_stream()
        stream.close()
        audio.terminate()
        #writing to file
        wavfile=wave.open('%s.wav' % FILE_NAME, 'wb')
        wavfile.setnchannels(CHANNELS)
        wavfile.setsampwidth(audio.get_sample_size(FORMAT))
        wavfile.setframerate(RATE)
        wavfile.writeframes(b''.join(frames))#append frames recorded to file
        wavfile.close()

jumpy.py

Very long file, so its recommended to only open up if you are patient!

x-python - 527.36 kB - 02/06/2019 at 03:54

Download

  • 1
    Step 1

    mic required and install the module quantumrandom via pip and use mic.

View all instructions

Enjoy this project?

Share

Discussions

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates