Skip to content

Commit bf44ecd

Browse files
authored
Merge pull request #11 from shawnrhoads/master
added hackathon page + some minor bug fixes
2 parents acf1fdb + bb38c25 commit bf44ecd

5 files changed

Lines changed: 123 additions & 22 deletions

File tree

β€Žhackathons.htmlβ€Ž

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
<!DOCTYPE HTML>
2+
<!--
3+
Hyperspace by HTML5 UP
4+
html5up.net | @ajlkn
5+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6+
-->
7+
<html>
8+
<head>
9+
<title>GU Methods Lab | Workshops</title>
10+
<meta charset="utf-8" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
12+
<link rel="stylesheet" href="assets/css/main.css" />
13+
<link rel="icon" href="https://emojipedia-us.s3.amazonaws.com/thumbs/120/microsoft/106/brain_1f9e0.png">
14+
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
15+
</head>
16+
<body class="is-preload">
17+
18+
<!-- Header -->
19+
<header id="header">
20+
<a href="index.html" class="title">GU Methods Lab</a>
21+
<nav>
22+
<ul>
23+
<li><a href="journalclub.html">Journal Club</a></li>
24+
<li><a href="workshops.html">Workshops</a></li>
25+
<li><a href="hackathons.html" class="active">Hackathons</a></li>
26+
</ul>
27+
</nav>
28+
</header>
29+
30+
<!-- Wrapper -->
31+
<div id="wrapper">
32+
33+
<!-- Main -->
34+
<section id="main" class="wrapper">
35+
<div class="inner">
36+
<h1 class="major">Hackathons & Mini-labs</h1>
37+
<span class="image fit"><img src="images/banner_hackathon.jpg" alt="" /></span>
38+
39+
<p>
40+
A few times throughout the academic year, we meet either on a larger-scale (hackathons) or on a smaller-scale (mini-labs) to explore/analysis public neuroimaging datasets and/or improve neuroimaging resources (e.g., tutorial creation, in-house lab scripts, software development). These are typically casual, low-pressure gatherings aimed at improving skills and increasing research productivity. <b>No coding experience required!</b>
41+
</p>
42+
43+
<h3>November 16-17, 2020<br>Brainhack DC
44+
</h3>
45+
<p><a href="https://brainhackdc.github.io/BrainHackDC2019/" target="blank">[Website]</a>
46+
<br/><br/>
47+
Tutorials included: Intro to BIDS/fMRIprep, Intro to Jupyter Notebooks/Python for Neuroimagers, & Intro to Functional Connectivity<br/><br/>
48+
Sponsored by <a href="https://cfmi.georgetown.edu/" target="blank">the Center for Functional and Molecular Imaging</a>, <a href="https://psychology.georgetown.edu/" target="blank">Georgetown Department of Psychology</a>, & <a href="http://www.gradgov.com/" target="blank">Georgetown GradGov</a>.</p>
49+
50+
51+
52+
<h4>Contributors</h4>
53+
54+
<table role="table">
55+
<thead role="rowgroup">
56+
<tr role="row">
57+
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/" target="blank"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b><b title="Funding">πŸ”</b></sub></td>
58+
59+
<td align="center" role="columnheader"><a href="https://nacs.umd.edu/gradprofile/merchant/junaid" target="blank"><img src="https://avatars3.githubusercontent.com/u/8362069" width="100px;" alt=""/><br /><sub><b>Junaid Merchant</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b></sub></td>
60+
61+
<td align="center" role="columnheader"><a href="https://www.stoodleylab.org/lab-members" target="blank"><img src="https://avatars3.githubusercontent.com/u/" width="100px;" alt=""/><br /><sub><b>Laura Rice</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b></sub></td>
62+
63+
</tr>
64+
</thead>
65+
66+
</table>
67+
68+
<p>
69+
The above follows the <a href="https://github.com/all-contributors/all-contributors" target="blank">all-contributors</a> specification (see <a href=
70+
"https://allcontributors.org/docs/en/emoji-key" target="blank">emoji key</a>).</p>
71+
72+
</div>
73+
74+
</section>
75+
76+
</div>
77+
78+
<!-- Footer -->
79+
<footer id="footer" class="wrapper alt">
80+
<div class="inner">
81+
<center>
82+
<ul class="menu">
83+
<li>&copy; GU Methods Lab. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
84+
</ul>
85+
</center>
86+
</div>
87+
</footer>
88+
89+
<!-- Scripts -->
90+
<script src="assets/js/jquery.min.js"></script>
91+
<script src="assets/js/jquery.scrollex.min.js"></script>
92+
<script src="assets/js/jquery.scrolly.min.js"></script>
93+
<script src="assets/js/browser.min.js"></script>
94+
<script src="assets/js/breakpoints.min.js"></script>
95+
<script src="assets/js/util.js"></script>
96+
<script src="assets/js/main.js"></script>
97+
98+
</body>
99+
</html>

β€Žindex.htmlβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ <h2><span class="fa fa-cog"></span> Workshops</h2>
7272
<div class="content">
7373
<div class="inner">
7474
<h2><span class="fa fa-users"></span> Hackathons & "Mini-labs"</h2>
75-
<p>A few times throughout the academic year, we meet either on a larger-scale (hackathons) or on a smaller-scale (mini-labs) to explore/analysis public neuroimaging datasets and/or improve neuroimaging resources (e.g., in-house lab scripts, software development). These are typically casual, low-pressure gatherings aimed at improving skills and increasing research productivity.</p>
75+
<p>A few times throughout the academic year, we meet either on a larger-scale (hackathons) or on a smaller-scale (mini-labs) to explore/analysis public neuroimaging datasets and/or improve neuroimaging resources (e.g., tutorial creation, in-house lab scripts, software development). These are typically casual, low-pressure gatherings aimed at improving skills and increasing research productivity. <b>No coding experience required!</b></p>
7676
<ul class="actions">
7777
<li><a href="hackathons.html" class="button">More info</a></li>
7878
</ul>
@@ -149,16 +149,16 @@ <h3>Email</h3>
149149
</ul>
150150
</section>
151151

152-
<h2>Our team</h2>
152+
<h2>Organizing team</h2>
153153
<section>
154154
<table role="table">
155155
<thead role="rowgroup">
156156
<tr role="row">
157-
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></sub></a></td>
157+
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/" target="blank"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></sub></a></td>
158158

159-
<td align="center" role="columnheader"><a href="https://github.com/ml1796"><img src="https://avatars3.githubusercontent.com/u/41344078" width="100px;" alt=""/><br /><sub><b>Marissa Laws</b></sub></a></td>
159+
<td align="center" role="columnheader"><a href="https://sites.google.com/georgetown.edu/csl/csl-members/marissa-laws" target="blank"><img src="https://avatars3.githubusercontent.com/u/41344078" width="100px;" alt=""/><br /><sub><b>Marissa Laws</b></sub></a></td>
160160

161-
<td align="center" role="columnheader"><a href="https://srdamera.com/"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></sub></a></td>
161+
<td align="center" role="columnheader"><a href="https://srdamera.com/" target="blank"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></sub></a></td>
162162
</tr>
163163
</thead>
164164
</table>

β€Žjournalclub.htmlβ€Ž

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<meta charset="utf-8" />
1111
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
1212
<link rel="stylesheet" href="assets/css/main.css" />
13+
<link rel="icon" href="https://emojipedia-us.s3.amazonaws.com/thumbs/120/microsoft/106/brain_1f9e0.png">
1314
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
1415
</head>
1516
<body class="is-preload">
@@ -21,7 +22,7 @@
2122
<ul>
2223
<li><a href="journalclub.html" class="active">Journal Club</a></li>
2324
<li><a href="workshops.html">Workshops</a></li>
24-
<li><a href="workshops.html">Hackathons</a></li>
25+
<li><a href="hackathons.html">Hackathons</a></li>
2526
</ul>
2627
</nav>
2728
</header>
@@ -57,9 +58,9 @@ <h3>June 11, 2020<br><a href="https://www.sciencedirect.com/science/article/pii/
5758
<table role="table">
5859
<thead role="rowgroup">
5960
<tr role="row">
60-
<td align="center" role="columnheader"><a href="https://sites.psu.edu/alainapearce/"><img src="https://avatars3.githubusercontent.com/u/64649875" width="100px;" alt=""/><br /><sub><b>Alaina Pearce</b></a><br/>06/11/2020</sub></td>
61+
<td align="center" role="columnheader"><a href="https://sites.psu.edu/alainapearce/" target="blank"><img src="https://avatars3.githubusercontent.com/u/64649875" width="100px;" alt=""/><br /><sub><b>Alaina Pearce</b></a><br/>06/11/2020</sub></td>
6162

62-
<td align="center" role="columnheader"><a href="https://sites.google.com/georgetown.edu/csl/csl-members/cameron-mckay"><img src="https://avatars3.githubusercontent.com/u/15912134" width="100px;" alt=""/><br /><sub><b>Cameron McCay</b></a><br/>06/18/2020</sub></td>
63+
<td align="center" role="columnheader"><a href="https://sites.google.com/georgetown.edu/csl/csl-members/cameron-mckay" target="blank"><img src="https://avatars3.githubusercontent.com/u/15912134" width="100px;" alt=""/><br /><sub><b>Cameron McCay</b></a><br/>06/18/2020</sub></td>
6364
</tr>
6465
</thead>
6566
</table>
@@ -73,9 +74,9 @@ <h3>May 28, 2020<br><a href="https://www.sciencedirect.com/science/article/abs/p
7374
<table role="table">
7475
<thead role="rowgroup">
7576
<tr role="row">
76-
<td align="center" role="columnheader"><a href=""><img src="https://avatars3.githubusercontent.com/u/" width="100px;" alt=""/><br/><sub><b>Plamen Nikolov</b></a><br/>05/28/2020</sub></td>
77+
<td align="center" role="columnheader"><a href="" target="blank"><img src="https://avatars3.githubusercontent.com/u/" width="100px;" alt=""/><br/><sub><b>Plamen Nikolov</b></a><br/>05/28/2020</sub></td>
7778

78-
<td align="center" role="columnheader"><a href="https://srdamera.com/"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></a><br/>06/04/2020</sub></td>
79+
<td align="center" role="columnheader"><a href="https://srdamera.com/" target="blank"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></a><br/>06/04/2020</sub></td>
7980
</tr>
8081
</thead>
8182
</table>

β€Žworkshops.htmlβ€Ž

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<meta charset="utf-8" />
1111
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
1212
<link rel="stylesheet" href="assets/css/main.css" />
13+
<link rel="icon" href="https://emojipedia-us.s3.amazonaws.com/thumbs/120/microsoft/106/brain_1f9e0.png">
1314
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
1415
</head>
1516
<body class="is-preload">
@@ -21,7 +22,7 @@
2122
<ul>
2223
<li><a href="journalclub.html">Journal Club</a></li>
2324
<li><a href="workshops.html" class="active">Workshops</a></li>
24-
<li><a href="workshops.html">Hackathons</a></li>
25+
<li><a href="hackathons.html">Hackathons</a></li>
2526
</ul>
2627
</nav>
2728
</header>
@@ -46,9 +47,9 @@ <h3>March 2, 2020<br>Introduction to Representational Similarity Analysis
4647
<table role="table">
4748
<thead role="rowgroup">
4849
<tr role="row">
49-
<td align="center" role="columnheader"><a href="https://srdamera.com/"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b></sub></td>
50+
<td align="center" role="columnheader"><a href="https://srdamera.com/" target="blank"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b></sub></td>
5051

51-
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b></sub></td>
52+
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/" target="blank"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b><b title="Funding">πŸ”</b></sub></td>
5253
</tr>
5354
</thead>
5455
</table>
@@ -61,9 +62,9 @@ <h3>December 6, 2019<br>Workshop on Connectome-based Predictive Modeling
6162
<thead role="rowgroup">
6263
<tr role="row">
6364

64-
<td align="center" role="columnheader"><a href="esfinn.github.io/"><img src="https://avatars3.githubusercontent.com/u/20361384" width="100px;" alt=""/><br /><sub><b>Emily Finn</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Ideas">πŸ€”</b></sub></td>
65+
<td align="center" role="columnheader"><a href="esfinn.github.io/" target="blank"><img src="https://avatars3.githubusercontent.com/u/20361384" width="100px;" alt=""/><br /><sub><b>Emily Finn</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Ideas">πŸ€”</b></sub></td>
6566

66-
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></a><br/><b title="Event Organizing">πŸ“‹</b></sub></td>
67+
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/" target="blank"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></a><br/><b title="Event Organizing">πŸ“‹</b><b title="Funding">πŸ”</b></sub></td>
6768
</tr>
6869
</thead>
6970
</table>
@@ -76,9 +77,9 @@ <h3>October 21, 2019<br>Introduction to Non-Parametric Statistics in fMRI
7677
<table role="table">
7778
<thead role="rowgroup">
7879
<tr role="row">
79-
<td align="center" role="columnheader"><a href="https://srdamera.com/"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Ideas">πŸ€”</b></sub></td>
80+
<td align="center" role="columnheader"><a href="https://srdamera.com/" target="blank"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Ideas">πŸ€”</b></sub></td>
8081

81-
<td align="center" role="columnheader"><a href="https://github.com/ml1796"><img src="https://avatars3.githubusercontent.com/u/41344078" width="100px;" alt=""/><br /><sub><b>Marissa Laws</a></b><br/><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b></sub></td>
82+
<td align="center" role="columnheader"><a href="https://sites.google.com/georgetown.edu/csl/csl-members/marissa-laws" target="blank"><img src="https://avatars3.githubusercontent.com/u/41344078" width="100px;" alt=""/><br /><sub><b>Marissa Laws</a></b><br/><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b></sub></td>
8283
</tr>
8384
</thead>
8485
</table>
@@ -91,18 +92,18 @@ <h3>March 28, 2019<br>Introduction to Python
9192
<table role="table">
9293
<thead role="rowgroup">
9394
<tr role="row">
94-
<td align="center" role="columnheader"><a href="https://srdamera.com/"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Ideas">πŸ€”</b></sub></td>
95+
<td align="center" role="columnheader"><a href="https://srdamera.com/" target="blank"><img src="https://avatars3.githubusercontent.com/u/28606263" width="100px;" alt=""/><br /><sub><b>Sri Damera</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Ideas">πŸ€”</b></sub></td>
9596

96-
<td align="center" role="columnheader"><a href="https://github.com/ml1796"><img src="https://avatars3.githubusercontent.com/u/37379641" width="100px;" alt=""/><br /><sub><b>Katherine O'Connell</a></b><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Ideas">πŸ€”</b></sub></td>
97+
<td align="center" role="columnheader"><a href="https://github.com/kmo5128" target="blank"><img src="https://avatars3.githubusercontent.com/u/37379641" width="100px;" alt=""/><br /><sub><b>Katherine O'Connell</a></b><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Ideas">πŸ€”</b></sub></td>
9798

98-
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b></sub></td>
99+
<td align="center" role="columnheader"><a href="https://shawnrhoads.github.io/" target="blank"><img src="https://avatars3.githubusercontent.com/u/24925845" width="100px;" alt=""/><br /><sub><b>Shawn Rhoads</b></a><br/><b title="Instruction">πŸ“’</b><b title="Code">πŸ’»</b><b title="Tutorial">βœ…</b><b title="Event Organizing">πŸ“‹</b><b title="Ideas">πŸ€”</b><b title="Funding">πŸ”</b></sub></td>
99100
</tr>
100101
</thead>
101102
</table>
102103

103-
<br><br>
104+
<p>
104105
The above follows the <a href="https://github.com/all-contributors/all-contributors" target="blank">all-contributors</a> specification (see <a href=
105-
"https://allcontributors.org/docs/en/emoji-key" target="blank">emoji key</a>).
106+
"https://allcontributors.org/docs/en/emoji-key" target="blank">emoji key</a>).</p>
106107

107108
</div>
108109

0 commit comments

Comments
Β (0)