-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathslides.py
69 lines (46 loc) · 1.98 KB
/
slides.py
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
# -*- coding: utf-8 -*-
# Copyright 2018, IBM.
#
# This source code is licensed under the Apache License, Version 2.0 found in
# the LICENSE.txt file in the root directory of this source tree.
from IPython.display import HTML
import webbrowser
def lab():
return HTML('''<img src="images/lab.jpg" width="1000 px">''')
def ibmqx():
# generate an URL
return webbrowser.open("https://quantumexperience.ng.bluemix.net/qx/editor", new=0)
def ibmq_qcc():
return HTML('''<img src="images/ibmq_qcc.jpg" width="1000 px">''')
def devices():
# generate an URL
return webbrowser.open("https://quantumexperience.ng.bluemix.net/qx/devices", new=0)
def qiskit():
return webbrowser.open("https://qiskit.org", new=0)
def git():
return webbrowser.open("https://github.com/qiskit", new=0)
def elements():
return HTML('''<img src="images/elements.jpg" width="1000 px">''')
def quantum():
return HTML('<img src="https://66.media.tumblr.com/763756ea907e30b639da239618bbe2d3/tumblr_mlotjw0e2C1r4xjo2o1_500.gif" width="500 px" align="center">')
def model():
return HTML('<img src="images/model.jpg" width="1000 px" align="center">')
def community():
return HTML('<img src="images/community.jpg" width="1000 px" align="center">')
def entanglement():
return HTML('<img src="images/entanglement.jpg" width="1000 px" align="center">')
def aqua():
return HTML('<img src="images/aqua.jpg" width="1000 px" align="center">')
def papers():
return HTML('<img src="images/papers.jpg" width="1000 px" align="center">')
def execution():
return HTML('''
<video src="images/executions_last_week_-_trace.mov" width="1000 px" autoplay>
''')
def thanks():
return HTML('<img src="images/thanks.gif" width="1000 px" align="center">')
def system():
return HTML('<img src="images/system.jpg" width="1000 px" align="center">')
def transmon():
return HTML('<img src="images/transmon.jpg" width="1000 px" align="center">')
print("Hello Reflections|Projections ... ")