Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit acdff15

Browse files
committed
Fix link issues
1 parent 5dd3244 commit acdff15

File tree

4 files changed

+62
-1
lines changed

4 files changed

+62
-1
lines changed

‎website/content/favicon.ico‎

1.12 KB
Binary file not shown.

‎website/content/pages/about.md‎

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
title: About
2+
slug: about
3+
Template: about
4+
5+
<img src="/images/jake.jpg" align="left" width="150" style="padding-right:20px;"/>
6+
My name is Jake VanderPlas.
7+
I am an astronomer by training, and currently am the director open software
8+
at the University of Washington's
9+
[eScience Institute](http://escience.washington.edu/), where I spend time on
10+
research, teaching, and developing software tools for science.
11+
<br clear="left"/>
12+
13+
If you like my blog, you might also like my books:
14+
15+
<a href="http://shop.oreilly.com/product/0636920034919.do"><img src="/images/PythonDataScience.jpg" align="left" width="100" style="padding-right:20px;"/></a>
16+
The *Python Data Science Handbook* by Jake VanderPlas (O'Reilly Media, 2016). This is a comprehensive introduction to the most important data science tools in the Python world. Several examples used in the book are drawn from posts on this blog.
17+
The content is also available as Jupyter notebooks [on GitHub](http://github.com/jakevdp/PythonDataScienceHandbook).<br clear="left"/>
18+
19+
<a href="http://www.oreilly.com/programming/free/a-whirlwind-tour-of-python.csp"><img src="/images/WhirlwindTour.jpg" align="left" width="100" style="padding-right:20px;"/></a>
20+
*A Whirlwind Tour of Python* by Jake VanderPlas (O'Reilly Media, 2016). This free e-book is a fast-paced intro to Python aimed at researchers and engineers. It's content is drawn from Python intro courses and tutorials that I have taught over the years.
21+
The content is also available as Jupyter notebooks [on GitHub](http://github.com/jakevdp/WhirlwindTourOfPython).<br clear="left"/>
22+
23+
<a href="http://press.princeton.edu/titles/10159.html"><img src="/images/StatisticsDataMining.jpg" align="left" width="100" style="padding-right:20px;"/></a>
24+
*Statistics, Machine Learning, and Data Mining in Astronomy* by Zeljko Ivezic, Andy Connolly, Jake VanderPlas, and Alex Gray (Princeton Press, 2014). This is a graduate-level text on statistical methods in astronomy, with emphasis on Python code.
25+
Code from the book is available at [http://astroML.org/](http://astroML.org).<br clear="left"/>
26+
27+
Thanks for visiting!

‎website/copy_notebooks.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def copy_notebooks():
7878
pagefile = os.path.join(PAGE_DEST_DIR, base + '.md')
7979
with open(pagefile, 'w') as f:
8080
f.write(PAGEFILE.format(title=title,
81-
slug=base.lower(),
81+
slug=base,
8282
notebook_file=nb,
8383
template=template,
8484
cells=cells))
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{% extends "base.html" %}
2+
{% block title %}{{ page.title }}{% endblock %}
3+
{% block headerimg %}{% if page.headerimg %}{{ page.headerimg }}{% else %}{{ DEFAULT_HEADER_BG }}{% endif %}{% endblock %}
4+
5+
{% block content %}
6+
7+
<div class="container bookinfo">
8+
<p>
9+
<img align="left" style="padding-right:10px;" src="/PythonDataScienceHandbook/figures/PDSH-cover-small.png">
10+
<em>This is an excerpt from the <a href="http://shop.oreilly.com/product/0636920034919.do">Python Data Science Handbook</a> by Jake VanderPlas; Jupyter notebooks are available <a href="https://github.com/jakevdp/PythonDataScienceHandbook">on GitHub</a>.</em>
11+
</p>
12+
<p>
13+
<em>The text is released under the <a href="https://creativecommons.org/licenses/by-nc-nd/3.0/us/legalcode">CC-BY-NC-ND license</a>, and code is released under the <a href="https://opensource.org/licenses/MIT">MIT license</a>. If you find this content useful, please consider supporting the work by <a href="http://shop.oreilly.com/product/0636920034919.do">buying the book</a>!</em>
14+
</p>
15+
</div>
16+
17+
18+
<div class="container post">
19+
20+
<article>
21+
<header>
22+
<h1>{{ page.title }}</h1>
23+
{% if page.date %}
24+
<time datetime="page.date.isoformat()" pubdate>{{ page.locale_date }}</time>
25+
{% endif %}
26+
</header>
27+
28+
<div class="article_content">
29+
{{ page.content }}
30+
</div>
31+
32+
</article>
33+
</div>
34+
{% endblock %}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /