-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.html
106 lines (85 loc) · 3.09 KB
/
meta.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meta</title>
<link rel="stylesheet" href="./assets/auto.css">
</head>
<body class="tx-j">
<section>
<h1>T<sup>3<sup>3</sup></sup></h1>
<div progress="1100000"></div>
<p>
<iframe
src="https://www.youtube-nocookie.com/embed/u1Ds422Qrdw?modestbranding=1&showinfo=0&rel=0&cc_load_policy=1&iv_load_policy=3&color=white"
width="560" height="315" frameborder="0"></iframe>
<a href="https://en.wikipedia.org/wiki/Quantum_tic-tac-toe">QTTT Wikipedia</a>
<a
href="https://www.researchgate.net/publication/338113536_Quantum_Tic-Tac-Toe_A_Hybrid_of_Quantum_and_Classical_Computing">Hybrid
Style Implementation </a>
<a
href="https://www.researchgate.net/publication/46461544_Strategic_Insights_From_Playing_the_Quantum_Tic-Tac-Toe">Playing
Strategies</a>
</p>
</section>
<section>
<h1>Quandris</h1>
<div progress="1100000"></div>
<p>
<a href="https://github.com/dartmouth-cs98/Quantum-Tetris">Inspiration</a>
<a href="http://quantumtetris.com">Inspiration ki Website</a>
<a href="https://medium.com/dartmouth-cs98/quantum-tetris-6452a0c96227">Inspiration ka Blog</a>
</p>
<p>
<a href="https://github.com/olivierbrcknr/quantum-tetris/">Kuch to hai yeh bhi apparently IBM ka
implementation hai</a>
</p>
</section>
<section>
<h1>PaqMan</h1>
<div progress="1110000"></div>
<p>
<a
href="https://medium.com/mit-6-s089-intro-to-quantum-computing/quhacman-a-quantum-two-player-pacman-game-5aca10b633eb">QPacMan
Description | Medium</a>
</p>
</section>
</body>
<style>
section {
padding: 10px 20px;
background: #333;
border-radius: 10px;
margin: 10px;
}
a,
a:visited {
display: block;
color: #2af;
}
</style>
<script>
window.onload = () => {
const progessBar = ( div, pg ) => {
const labeler = ( label, state ) => `<label><input type="checkbox" ${ state }>${ label }<br/></label>`;
const stages = [
'Basic Layout',
'Algorithm: Operational', 'Algorithm: Logical', 'Algorithm: Quantum',
'Secondary Styling', 'Compatibility',
'Optimisation'
];
stages.forEach( ( label, i ) => {
const checked = +pg.charAt( i ) === 1 ? 'checked' : '';
div.innerHTML += labeler( label, checked );
} );
return 0;
};
document
.querySelectorAll( '[progress]' )
.forEach( div => progessBar( div, div.getAttribute( 'progress' ) ) );
}
</script>
<script src="./assets/lib/supports.js"></script>
</html>