Skip to content

Commit 4a13d2e

Browse files
committed
Initial import.
1 parent d46b0d7 commit 4a13d2e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+9067
-0
lines changed

404.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

Gemfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
gem "jekyll", "~> 3.6.2"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem "minima", "~> 2.0"
15+
16+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
17+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18+
# gem "github-pages", group: :jekyll_plugins
19+
20+
# If you have any plugins, put them here!
21+
group :jekyll_plugins do
22+
gem "jekyll-feed", "~> 0.6"
23+
end
24+
25+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
26+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
27+

Gemfile.lock

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.2)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
ffi (1.9.18)
8+
forwardable-extended (2.6.0)
9+
jekyll (3.6.2)
10+
addressable (~> 2.4)
11+
colorator (~> 1.0)
12+
jekyll-sass-converter (~> 1.0)
13+
jekyll-watch (~> 1.1)
14+
kramdown (~> 1.14)
15+
liquid (~> 4.0)
16+
mercenary (~> 0.3.3)
17+
pathutil (~> 0.9)
18+
rouge (>= 1.7, < 3)
19+
safe_yaml (~> 1.0)
20+
jekyll-feed (0.9.2)
21+
jekyll (~> 3.3)
22+
jekyll-sass-converter (1.5.1)
23+
sass (~> 3.4)
24+
jekyll-seo-tag (2.4.0)
25+
jekyll (~> 3.3)
26+
jekyll-watch (1.5.1)
27+
listen (~> 3.0)
28+
kramdown (1.16.2)
29+
liquid (4.0.0)
30+
listen (3.1.5)
31+
rb-fsevent (~> 0.9, >= 0.9.4)
32+
rb-inotify (~> 0.9, >= 0.9.7)
33+
ruby_dep (~> 1.2)
34+
mercenary (0.3.6)
35+
minima (2.3.0)
36+
jekyll (~> 3.5)
37+
jekyll-feed (~> 0.9)
38+
jekyll-seo-tag (~> 2.1)
39+
pathutil (0.16.1)
40+
forwardable-extended (~> 2.6)
41+
public_suffix (3.0.1)
42+
rb-fsevent (0.10.2)
43+
rb-inotify (0.9.10)
44+
ffi (>= 0.5.0, < 2)
45+
rouge (2.2.1)
46+
ruby_dep (1.5.0)
47+
safe_yaml (1.0.4)
48+
sass (3.5.5)
49+
sass-listen (~> 4.0.0)
50+
sass-listen (4.0.0)
51+
rb-fsevent (~> 0.9, >= 0.9.4)
52+
rb-inotify (~> 0.9, >= 0.9.7)
53+
54+
PLATFORMS
55+
ruby
56+
57+
DEPENDENCIES
58+
jekyll (~> 3.6.2)
59+
jekyll-feed (~> 0.6)
60+
minima (~> 2.0)
61+
tzinfo-data
62+
63+
BUNDLED WITH
64+
1.16.0

_config.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: Data Exploration Lab
17+
email: matthewturk@gmail.com
18+
description: >- # this means to ignore newlines until "baseurl:"
19+
Write an awesome description for your new site here. You can edit this
20+
line in _config.yml. It will appear in your document head meta (for
21+
Google search results) and in your feed.xml site description.
22+
baseurl: "" # the subpath of your site, e.g. /blog
23+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
24+
twitter_username: jekyllrb
25+
github_username: jekyll
26+
27+
# Build settings
28+
markdown: kramdown
29+
theme: minima
30+
plugins:
31+
- jekyll-feed
32+
33+
# Exclude from processing.
34+
# The following items will not be processed, by default. Create a custom list
35+
# to override the default setting.
36+
# exclude:
37+
# - Gemfile
38+
# - Gemfile.lock
39+
# - node_modules
40+
# - vendor/bundle/
41+
# - vendor/cache/
42+
# - vendor/gems/
43+
# - vendor/ruby/

_data/citations.yaml

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
- _id:
2+
$oid: 56ec02b4b8d1b401c8c4ba49
3+
author:
4+
- Thompson, Robert
5+
- "Dav\xC3\xA9, Romeel"
6+
- Huang, Shuiyao
7+
- Katz, Neal
8+
journal: ArXiv e-prints
9+
link: http://adsabs.harvard.edu/abs/2015arXiv150801851T
10+
month: August
11+
title: Identifying mergers using non-parametric morphological classification
12+
at high redshifts
13+
year: 2015
14+
- _id:
15+
$oid: 56ec02d6b8d1b401c8c4ba51
16+
author:
17+
- Olsen, Karen P.
18+
- Greve, Thomas R.
19+
- Narayanan, Desika
20+
- Thompson, Robert
21+
- Toft, Sune
22+
- Brinch, Christian
23+
doi: 10.1088/0004-637X/814/1/76
24+
journal: The Astrophysical Journal
25+
link: http://adsabs.harvard.edu/abs/2015ApJ...814...76O
26+
month: November
27+
pages: '76'
28+
title: "Simulator of Galaxy Millimeter/Submillimeter Emission (S\xC3\xADGAME):\
29+
\ The [C ii]-SFR Relationship of Massive z = 2 Main Sequence Galaxies"
30+
volume: '814'
31+
year: 2015
32+
- _id:
33+
$oid: 56ec02deb8d1b401c8c4ba53
34+
author:
35+
- Goldbaum, Nathan J.
36+
- Krumholz, Mark R.
37+
- Forbes, John C.
38+
doi: 10.1088/0004-637X/814/2/131
39+
journal: The Astrophysical Journal
40+
link: http://adsabs.harvard.edu/abs/2015ApJ...814..131G
41+
month: December
42+
pages: '131'
43+
title: 'Mass Transport and Turbulence in Gravitationally Unstable Disk Galaxies.
44+
I: The Case of Pure Self-Gravity'
45+
volume: '814'
46+
year: 2015
47+
- _id:
48+
$oid: 56ec02beb8d1b401c8c4ba4b
49+
author:
50+
- Narayanan, Desika
51+
- Turk, Matthew
52+
- Feldmann, Robert
53+
- Robitaille, Thomas
54+
- Hopkins, Philip
55+
- Thompson, Robert
56+
- Hayward, Christopher
57+
- Ball, David
58+
- "Faucher-Gigu\xE8re, Claude-Andr\xE9"
59+
- "Kere\u0161, Du\u0161an"
60+
doi: 10.1038/nature15383
61+
journal: Nature
62+
link: http://adsabs.harvard.edu/abs/2015Natur.525..496N
63+
month: September
64+
pages: '496'
65+
title: The formation of submillimetre-bright galaxies from gas infall over a
66+
billion years
67+
volume: '525'
68+
year: 2015
69+
- _id:
70+
$oid: 56ec02e5b8d1b401c8c4ba55
71+
author:
72+
- Lang, Meagan
73+
- Holley-Bockelmann, Kelly
74+
- Sinha, Manodeep
75+
doi: 10.1088/0004-637X/811/2/152
76+
journal: The Astrophysical Journal
77+
link: http://adsabs.harvard.edu/abs/2015ApJ...811..152L
78+
month: October
79+
pages: '152'
80+
title: Voronoi Tessellation and Non-parametric Halo Concentration
81+
volume: '811'
82+
year: 2015
83+
- _id:
84+
$oid: 56ec05d1b8d1b405bab66915
85+
author:
86+
- Kamdar, Harshil M.
87+
- Turk, Matthew J.
88+
- Brunner, Robert J.
89+
doi: 10.1093/mnras/stv2981
90+
journal: Monthly Notices of the Royal Astronomical Society
91+
link: http://adsabs.harvard.edu/abs/2016MNRAS.457.1162K
92+
month: April
93+
pages: '1162'
94+
title: Machine learning and cosmological simulations - II. Hydrodynamical simulations
95+
volume: '457'
96+
year: 2016
97+
- _id:
98+
$oid: 56ec02c6b8d1b401c8c4ba4d
99+
author:
100+
- Thompson, Robert
101+
- "Dav\xE9, Romeel"
102+
- Nagamine, Kentaro
103+
doi: 10.1093/mnras/stv1433
104+
journal: Monthly Notices of the Royal Astronomical Society
105+
link: http://adsabs.harvard.edu/abs/2015MNRAS.452.3030T
106+
month: September
107+
pages: '3030'
108+
title: "The rise and fall of a challenger: the Bullet Cluster in \u039B cold\
109+
\ dark matter simulations"
110+
volume: '452'
111+
year: 2015
112+
- _id:
113+
$oid: 56ec02cfb8d1b401c8c4ba4f
114+
author:
115+
- Kamdar, Harshil M.
116+
- Turk, Matthew J.
117+
- Brunner, Robert J.
118+
doi: 10.1093/mnras/stv2310
119+
journal: Monthly Notices of the Royal Astronomical Society
120+
link: http://adsabs.harvard.edu/abs/2016MNRAS.455..642K
121+
month: January
122+
pages: '642'
123+
title: Machine learning and cosmological simulations - I. Semi-analytical models
124+
volume: '455'
125+
year: 2016

_data/news.yaml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
- _id: new_website
2+
body: The DXL has launched a new website, based on the Regolith project.
3+
day: 30
4+
image: /static/img/dxl_logo.svg
5+
month: March
6+
title: New Website
7+
year: 2016
8+
- _id: ng_pyastro
9+
body: Nathan Goldbaum <a href="https://www.youtube.com/watch?v=zb0HBu3IhbU">presented
10+
his work</a> on releasing large datasets via NDS Labs at PyAstro16, along
11+
with a <a href="https://youtu.be/nzr2vMQqiug?t=5m46s">lightning talk</a> on
12+
PyMinecraft.
13+
day: 29
14+
image: /static/img/news/pyastro16_nathan.png
15+
month: March
16+
title: PyAstro16
17+
year: 2016
18+
- _id: opengl_merged
19+
body: OpenGL-based interactive data visualization has <a href="http://yt-project.org/docs/dev/visualizing/interactive_data_visualization.html">been
20+
merged</a> into the development version of yt.
21+
day: 10
22+
month: April
23+
title: OpenGL VR
24+
year: 2016
25+
- _id: hublaunch
26+
body: We have launched the yt hub, a platform for data sharing and analysis. For
27+
more information, visit <a href="https://hub.yt/">hub.yt</a> or read Kacper's
28+
<a href="http://lists.spacepope.org/pipermail/yt-users-spacepope.org/2016-May/007791.html">announcement</a>
29+
day: 6
30+
month: May
31+
title: yt Hub
32+
year: 2016
33+
- body: In collaboration with the <a href="http://arfc.github.io/">ARFC</a>, Alex
34+
Lindsay has joined the DXL as a postdoc. Welcome, Alex!
35+
day: 1
36+
image: ''
37+
month: September
38+
sid: lindsay_joins
39+
submit: true
40+
title: Alex Lindsay joins the DXL
41+
year: 2016
42+
- body: DXL Group Leader Matt Turk has <a href="https://ischool.illinois.edu/articles/2016/09/turk-joins-ischool-faculty">joined
43+
the University of Illinois faculty</a>, joint between the <a href="http://ischool.illinois.edu/">School
44+
of Information Sciences</a> and the <a href="http://www.astro.illinois.edu/">Department
45+
of Astronomy</a>.
46+
day: 9
47+
image: ''
48+
month: September
49+
sid: turk_faculty
50+
submit: true
51+
title: Turk joins Faculty
52+
year: 2016

0 commit comments

Comments
 (0)