-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooks.html
More file actions
80 lines (75 loc) · 3.78 KB
/
books.html
File metadata and controls
80 lines (75 loc) · 3.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C4TVS1004P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C4TVS1004P');
</script>
<meta charset="UTF-8">
<title>Daniel de Oliveira - Featured Book</title>
<meta name="description" content="Featured Book of Professor Daniel de Oliveira">
<meta name="keywords" content="IC-UFF, Data Science, Cloud Computing, Bioinformatics, Provenance, Scientific Workflows">
<style>
body { font-family: Arial, Helvetica, sans-serif; background-color: #ffffff; color: #333333; margin: 0; padding: 0; line-height: 1.6; }
a { color: #004f9e; text-decoration: none; }
a:hover { text-decoration: underline; }
header { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; border-bottom: 1px solid #ccc; }
header img { height: 60px; }
nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
nav ul li a { font-weight: bold; }
main { padding: 40px; max-width: 900px; margin: auto; }
.book-container { display: flex; align-items: flex-start; gap: 20px; }
.book-container img { width: 300px; height: auto; border-radius: 8px; }
.book-details { flex: 1; }
h1, h2 { color: #004f9e; }
ul { margin-left: 20px; }
footer { display: flex; justify-content: space-between; padding: 20px 40px; border-top: 1px solid #ccc; background-color: #f9f9f9; font-size: 0.9em; }
</style>
</head>
<body>
<header>
<a href="http://www.uff.br"><img src="arquivos/uff.png" alt="UFF Logo"></a>
<nav>
<ul>
<li><a href="https://danielcmo.github.io">Home</a></li>
<li><a href="https://danielcmo.github.io/cv.html">Publications</a></li>
<li><a href="https://danielcmo.github.io/books.html">Books</a></li>
<li><a href="https://danielcmo.github.io/ap.html">Research Areas</a></li>
<li><a href="https://danielcmo.github.io/cur.html">Teaching</a></li>
<li><a href="https://danielcmo.github.io/collab.html">Collaborations</a></li>
<li><a href="https://danielcmo.github.io/li.html">Students</a></li>
<li><a href="https://danielcmo.github.io/awards.html">Awards</a></li>
<li><a href="https://danielcmo.github.io/projects.html">Projects</a></li>
<li><a href="https://danielcmo.github.io/per.html">News</a></li>
</ul>
</nav>
<a href="http://www.ic.uff.br"><img src="arquivos/logo-ic.png" alt="IC-UFF Logo"></a>
</header>
<main>
<div class="book-container">
<img src="https://m.media-amazon.com/images/I/71fV2uEquWL._SY385_.jpg" alt="Provenance and Data Management for Scientific Workflows">
<div class="book-details">
<h1>Featured Book</h1>
<p>I would like to highlight the book <strong><a href="https://link.springer.com/book/10.1007/978-3-031-01872-5" target="_blank">Provenance and Data Management for Scientific Workflows</a></strong>, co-authored by <strong>Daniel de Oliveira, Ji Liu, and Esther Pacitti</strong>. This work provides a thorough exploration of managing data-intensive workflows in scientific research, focusing on reproducibility, transparency, and efficiency.</p>
<h2>Key Topics Covered</h2>
<ul>
<li>Workflow management principles and best practices</li>
<li>Workflow Execution in a Single-Site Cloud</li>
<li>Workflow Execution in a Multi-Site Cloud</li>
<li>Real-world case studies in bioinformatics, astronomy, and engineering</li>
<li>Workflow Execution in DISC Environments</li>
</ul>
<p>This book is a valuable resource for researchers, data scientists, and professionals interested in practical and theoretical insights on scientific workflow management.</p>
</div>
</div>
</main>
<footer>
<div><b>Phone: +55 (21) 2629-5637<br>Fax: +55 (21) 2629-5627</b></div>
<div><b>danielcmo (at) ic (dot) uff (dot) br</b></div>
</footer>
</body>
</html>