Anonymous ID: 853eae Jan. 11, 2019, 11:12 p.m. No.4722028   🗄️.is 🔗kun   >>2031 >>2041 >>2102

Anons. IBM released their first quantum computer to the market and can be bought now by companies. My prediction is that these companies will quickly try to tie it to the market, including on Wall Street. This will initiate the crash. 100%

 

You can see the official IBM video here:

https://www.youtube.com/watch?v=LAA0-vjTaNY

 

You can also program on it with Qiskit. So far, it's not open yet for private use. Only commerical. However, be aware, this is huge.

Anonymous ID: 853eae Jan. 11, 2019, 11:15 p.m. No.4722041   🗄️.is 🔗kun

>>4722028

>>4722031

If anyone wants to experiment around (simulation) of a Quantum Computer, you can do it here:

https://quantumexperience.ng.bluemix.net/qx/editor

 

Need some deep understanding of superposition and q programming though. There's also an assembly language to it, called OpenQASM.

Anonymous ID: 853eae Jan. 11, 2019, 11:28 p.m. No.4722122   🗄️.is 🔗kun   >>2124 >>2147 >>2369

>>4722037

It's funny that none of you faggots still get, that Mueller was spying and following on Alex Soros, that's why he was sitting there. God damnit. Really.

 

This pic is old and we went over it many times already.

Anonymous ID: 853eae Jan. 12, 2019, 12:25 a.m. No.4722520   🗄️.is 🔗kun

For any programming fags.

I wrote my first QASM code for that IBM quantum computer. It's the popular grover's algorithm and supposed to be faster than anything on classical computers. There is a site somewhere you can test out the code.

 

include "qelib1.inc";

 

qreg q[5];

creg c[5];

 

h q[1];

h q[2];

h q[2];

cx q[1],q[2];

h q[2];

h q[1];

h q[2];

x q[1];

x q[2];

h q[2];

cx q[1],q[2];

h q[2];

x q[1];

x q[2];

h q[1];

h q[2];

measure q[1] -c[1];

measure q[2] -c[2];