-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.php
140 lines (99 loc) · 5.97 KB
/
about.php
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
session_start();
include('inc/db_conn.php');
//===========================
// pull important dates
//===========================
//$today = date("Y")."-".date("m")."-".date("d");
$sql_dates = "SELECT ";
$sql_dates .= "DATE_FORMAT(`impt_date`, '%b %D') as date_f, ";
$sql_dates .= "`description` ";
$sql_dates .= "FROM `important_dates` ";
$sql_dates .= "WHERE conference_id = 2 ";
$sql_dates .= "AND display = \"public\" ";
$sql_dates .= "ORDER BY impt_date";
$total_dates = @mysql_query($sql_dates, $connection) or die("Error #". mysql_errno() . ": " . mysql_error());
$total_dates_found = @mysql_num_rows($total_dates);
$row_color=($row_count%2)?$row_1:$row_2;
do {
if ($row['description'] != '')
{
$display_dates .=" <li>" . $row['date_f'] . ": " . $row['description'] . "</li>";
}}
while($row = mysql_fetch_array($total_dates));
?>
<!DOCTYPE html>
<html>
<?php $thisPage="About"; ?>
<head>
<?php include('inc/header.php') ?>
<link rel="shortcut icon" href="http://conference.scipy.org/scipy2013/favicon.ico" />
</head>
<body>
<div id="container">
<?php include('inc/page_headers.php') ?>
<section id="sidebar">
<?php include("inc/sponsors.php") ?>
</section>
<section id="main-content">
<h1>SciPy 2013 Conference Announcement</h1>
<p>SciPy 2013, the twelfth annual Scientific Computing with Python conference, will be held this June 24th-29th in Austin, Texas. SciPy is a community dedicated to the advancement of scientific computing through open source Python software for mathematics, science, and engineering. The annual SciPy Conference allows participants from academic, commercial, and governmental organizations to showcase their latest projects, learn from skilled users and developers, and collaborate on code development.</p>
<p>The conference consists of two days of tutorials followed by two days of presentations, and concludes with two days of developer sprints on projects of interest to the attendees.</p>
<h2>Specialized Tracks</h2>
<p>This year we are happy to announce two specialized tracks that run in parallel in the general conference:</p>
<h3>Machine Learning</h3>
<p>In recent years, Python's machine learning libraries rapidly matured with a flurry of new libraries and cutting-edge algorithm implement and development occurring within Python. As Python makes these algorithms more accessible, machine learning algorithm application has spread across disciplines. Showcase your favorite machine learning library or how it has been used as an effective tool in your work!</p>
<h3>Reproducible Science</h3>
<p>Over recent years, the Open Science movement has stoked a renewed acknowledgement of the importance of reproducible research. The goals of this movement include improving the dissemination of progress, preventing fraud through transparency, and enabling deeper/wider development and collaboration. This track is to discuss the tools and methods used to achieve reproducible scientific computing.</p>
<h2>Domain-specific Mini-symposia</h2>
<p>Introduced in 2012, mini-symposia are held to discuss scientific computing applied to a specific scientific domain/industry during a half afternoon after the general conference. Their goal is to promote industry specific libraries and tools, and gather people with similar interests for discussions.</p>
<p>Mini-symposia on the following topics will take place this year:</p>
<ul>
<li>Meteorology, climatology, and atmospheric and oceanic science</li>
<li>Astronomy and astrophysics</li>
<li>Medical imaging</li>
<li>Bio-informatics</li>
<li>GIS - Geospatial Data Analysis</li>
</ul>
<h2>Tutorials</h2>
<p>Multiple interactive half-day tutorials will be taught by community experts. The tutorials provide conceptual and practical coverage of tools that have broad interest at both an introductory or advanced level. This year, a third track will be added, targeting specifically programmers with no prior knowledge of scientific python.</p>
<h2>Developer Sprints</h2>
<p>A hackathon environment is setup for attendees to work on the core SciPy packages or their own personal projects. The conference is an opportunity for developers that are usually physically separated to come together and engage in highly productive sessions. It is also an occasion for new community members to introduce themselves and recieve tips from community experts. This year, some of the sprints will be scheduled and announced ahead of the conference.</p>
<h2>Birds-of-a-Feather (BOF) Sessions</h2>
<p>Birds-of-a-Feather sessions are self-organized discussions that run parallel to the main conference. The BOFs sessions cover primary, tangential, or unrelated topics in an interactive, discussion setting. This year, some of the BOF sessions will be scheduled and announced ahead of the conference.</p>
<h2>Important Dates</h2>
<ul>
<?php echo $display_dates ?>
<li>June 24th-29th: 2 days of tutorials, 2 days of conference, 2 days of sprints</li>
</ul>
<p>We look forward to a very exciting conference and hope to see you all at the conference.</p>
<p>The SciPy 2013 organization team:</p>
<ul>
<li>Andy Terrel, Co-chair</li>
<li>Jonathan Rocher, Co-chair</li>
<li>Katy Huff, Program Committee co-chair</li>
<li>Matt McCormick, Program Committee co-chair</li>
<li>Dharhas Pothina, Tutorial co-chair</li>
<li>Francesc Alted, Tutorial co-chair</li>
<li>Corran Webster, Sprint co-chair</li>
<li>Peter Wang, Sprint co-chair</li>
<li>Kyle Mandli, BoF co-chair</li>
<li>Matthew Turk, BoF co-chair</li>
<li>Jarrod Millman, Proceeding co-chair</li>
<li>Stéfan van der Walt, Proceeding co-chair</li>
<li>Anthony Scopatz, Communications co-chair</li>
<li>Majken Tranby, Communications co-chair</li>
<li>Jeff Daily, Financial Aid co-chair</li>
<li>John Wiggins, Financial Aid co-chair</li>
<li>Leah Jones, Operations chair</li>
<li>Brett Murphy, Sponsor chair</li>
<li>Bill Cowan, Financial chair</li>
</ul>
</section>
<div style="clear:both;"></div>
<footer id="page_footer">
<?php include('inc/page_footer.php') ?>
</footer>
</div>
</body>
</html>