-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (56 loc) · 2.41 KB
/
index.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
---
layout: single
author_profile: true
classes: wide
---
<style>
#output {
display: inline-block;
padding: 10px 20px;
text-decoration: none;
color: black;
background-color: #D3D3D3;
border: 2px solid #AAAAAA;
border-radius: 5px;
font-family: Arial, sans-serif;
}
</style>
<script>
const quotes = [
'"Knowing yourself is the beginning of all wisdom." - Aristotle',
'"Stay hungry, stay foolish." - Steve Jobs',
'"Give me six hours to chop down a tree and I will spend the first four shapening the axe." - Abraham Lincoln',
'"It is not the strongest of species that survive, nor the most intelligent, but rather the one most adaptable to change." - Charles Darwin (as quoted by Leon C. Megginson)',
'"No amount of experimentation can ever prove me right. A single experiment can prove me wrong." - Albert Einstein',
'"When you want something with all your heart, all the universe conspires in helping you to archive it." - Paolo Coelho',
'"Being a man is first and foremost being a good human. That means being responsible, reliable, working hard, kind, respectful and compassionate." - Barack Obama',
'"Nothing is more precious than independence and freedom." - Chi Minh Ho',
'"Mercy to the guilty is cruelty to the innocent." - Adam Smith',
'"Forme-toi toi-même et agis sur les autres par ce que tu es." - Wilhelm von Humboldt'
]
function setText() {
const randomIndex = Math.floor(Math.random() * 10);
const output = document.getElementById('output');
output.textContent = quotes[randomIndex];
}
window.onload = setText;
</script>
<b>Biography</b>: <a href="https://orcid.org/0000-0002-3517-0945">ORCID</a>
<br/>
<br/>
<!--
<b>Research interests</b>: Internet of Things (IoT), OPC UA, Ontology, Asset Administration Shell (AAS)
-->
<b>Research Publications</b>: <a href="https://scholar.google.fr/citations?user=yMXCWm0AAAAJ&hl=fr">Google Scholar</a>
<br/>
<br/>
<b>Other Research IDs</b>: <a href="https://www.webofscience.com/wos/author/record/2213253">WoS</a>, <a href="https://www.scopus.com/authid/detail.uri?authorId=57190120717">Scopus</a>
<br/>
<br/>
<b>Social Networks</b>: <a href="https://fr.linkedin.com/in/nqduy35">LinkedIn</a>, <a href="https://www.researchgate.net/profile/Quang-Duy-Nguyen-4">ResearchGate</a>
<br/>
<br/>
<b>Curriculum Vitae</b>: <a href="https://nqduy35.github.io/files/cv.pdf">Latest version</a>
<br/>
<br/>
<a id="output"></a>