-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
119 lines (108 loc) · 4.35 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE HTML>
<!--
Stellar by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>The Art of C++</title>
<meta charset="utf-8" />
<meta name="author" content="Dr. Colin Hirsch">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header" class="alt">
<span class="logo"><img src="images/tao.png" alt="TAO" /></span>
<h1>The Art of C++</h1>
<p>A collection of high-quality C++ libraries</p>
</header>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="#intro" class="active">Intro</a></li>
<li><a href="#projects">Projects</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- Introduction -->
<section id="intro" class="main">
<div class="spotlight">
<div class="content">
<header class="major">
<h2>The Art of C++</h2>
</header>
<i>The Art of C++</i>, or </i>taocpp</i> for short, is a collection of high-quality C++ libraries,
written in a "modern" C++ style,
with minimal external dependencies,
straightforward interfaces,
extensively tested and highly portable,
and, last but not least, well documented.</p>
<p>Simplicity is an important design goal, in particular to provide no-surprise interfaces.</p>
<p>Continuous integration runs all the many tests with multiple compilers on multiple operating systems.</p>
<p><i>The Art of C++</i> was featured in <a href="http://cppcast.com/2018/08/colin-hirsch/">Episode 162</a> of <a href="http://cppcast.com/">CppCast</a>.</p>
</div>
</div>
</section>
<!-- First Section -->
<section id="projects" class="main special">
<header class="major">
<h2>Projects</h2>
</header>
<h3>PEGTL</h3>
<p>The Parsing Expression Grammar Template Library<br />
<a href="https://github.com/taocpp/PEGTL">https://github.com/taocpp/PEGTL</a></p>
<h3>taoJSON</h3>
<p>A modern, modular, versatile JSON library<br />
<a href="https://github.com/taocpp/json">https://github.com/taocpp/json</a></p>
<h3>taoPQ</h3>
<p>A modern client library for PostgreSQL<br />
<a href="https://github.com/taocpp/taopq">https://github.com/taocpp/taopq</a></p>
<h3>taoCONFIG</h3>
<p>JSON-based config reader library<br />
<a href="https://github.com/taocpp/config">https://github.com/taocpp/config</a></p>
<h3>taocpp/operators</h3>
<p>A highly efficient, move-aware operators library<br />
<a href="https://github.com/taocpp/operators">https://github.com/taocpp/operators</a></p>
<h3>taocpp/sequences</h3>
<p>Efficient algorithms to generate and work on std::integer_sequence<br />
<a href="https://github.com/taocpp/sequences">https://github.com/taocpp/sequences</a></p>
<h3>taocpp/tuple</h3>
<p>A compile-time-efficient and CUDA-enabled std::tuple<br />
<a href="https://github.com/taocpp/tuple">https://github.com/taocpp/tuple</a></p>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<section>
<h2>People</h2>
<p>Daniel Frey<br />
Dr. Colin Hirsch<br />
Uilian Ries</p>
</section>
<section>
<h2>Address</h2>
<ul class="icons">
<li><a href="mailto:[email protected]" class="icon fa-envelope alt"><span class="label">E-Mail</span></a></li>
<li><a href="https://github.com/taocpp" class="icon brands fa-github alt"><span class="label">GitHub</span></a></li>
</ul>
</section>
<p class="copyright">Copyright © Dr. Colin Hirsch & Daniel Frey (Content) – <a href="https://html5up.net">HTML5 UP</a> (Design)</p>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>