-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* DOC: change title of index * ENH: add cheatsheets * ENH: add license * DOC: update README * MAINT: republish * MAINT: change license
- Loading branch information
Showing
9 changed files
with
839 additions
and
389 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
#!/bin/bash | ||
# Embed Clicky web analytics to generated HTML files. | ||
|
||
# Embed Clicky web analytics. | ||
LINE=9 | ||
|
||
head -n $LINE tests-as-linear.html > index.html | ||
echo '<script>var clicky_site_ids = clicky_site_ids || []; clicky_site_ids.push(101159456);</script>' >> index.html | ||
echo '<script async src="//static.getclicky.com/js"></script>' >> index.html | ||
tail -n +$LINE tests-as-linear.html >> index.html | ||
|
||
# Change title. | ||
sed -i.bak "s/<title>tests-as-linear<\/title>/<title>Common statistical tests are linear models (or: how to teach stats) | Eigenfoo<\/title>/" "index.html" | ||
rm index.html.bak |
Large diffs are not rendered by default.
Oops, something went wrong.