-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (91 loc) · 3.95 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Complexity Sciences Center</title>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/site.css"/>
</head>
<body>
<div class="row">
<div class="col-md-5 col-md-offset-3">
<header>
<div class="page-header">
<h1>complexity sciences center</h1>
<h3>university of california, davis</h3>
</div>
<div class="row">
<div class="col-md-4">
<img src="img/anthroscopic_memories.png" class="img-responsive"/>
</div>
<div class="col-md-4">
<img src="img/the_fibonacci_dream.png" class="img-responsive"/>
</div>
<div class="col-md-4">
<img src="img/smokescreen.png" class="img-responsive"/>
</div>
</div>
</header>
<hr/>
<article id="main">
<p class="lead"><strong>Patterns in Complex Systems:</strong>
Simple rules lead to unpredictable behavior; multi-component
systems spontaneously organize into macroscopic structures. The
emergence of chaos and order is the hallmark of natural and
designed systems. The Complexity Sciences Center seeks to
discover the common principles of emergence and use them to
understand the physical, biological, and social worlds.</p>
<hr/>
<div class="row">
<div class="col-md-9">
<h2>software</h2>
<br/>
<div class="panel panel-default">
<div class="panel-heading">
<h3><a href="http://github.com/ComSciCtr/pyvrui/">pyvrui</a></h3>
</div>
<div class=panel-body>
<p class="project-description"><strong>pyvrui</strong> is
a python interface for <a
href="https://github.com/KeckCAVES/Vrui">VRUI</a>. It is
built using <a href="www.swig.org">SWIG</a>.</p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3><a href="http://comscictr.github.io/vroom/">vroom</a></h3>
</div>
<div class=panel-body>
<p class="project-description"><strong>vroom</strong> is a
rapid visualization environment designed to make visualizing
and interacting with data in 3D easier and more
enjoyable.</p>
</div>
</div>
</div>
</div>
</article>
<footer>
<hr />
<ul class="list-inline">
<li>
<a href="http://github.com/ComSciCtr" title="github repos">
<i class="icon-github icon-large"></i></a>
</li>
<li>
<a href="http://csc.ucdavis.edu/Welcome.html" title="csc homepage">
<i class="icon-home icon-large"></i></a>
</li>
</ul>
<p class="pull-right">images by <a href="http://flickr.com/photos/makasu">ambientfusion</a></p>
</footer>
</div>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$('footer ul a').tooltip({placement: 'top'});
</script>
</html>