I hereby claim:
- I am goerz on github.
- I am goerz (https://keybase.io/goerz) on keybase.
- I have a public key whose fingerprint is 1794 FF0B 42B3 3EAB EAC9 2C92 34A7 2F20 57A6 CAA6
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Turn on Notifications | |
do shell script "defaults -currentHost write com.apple.notificationcenterui doNotDisturb -bool FALSE; defaults -currentHost delete com.apple.notificationcenterui doNotDisturbDate; osascript -e 'quit application \"NotificationCenter\" ' && killall usernoted" -- this set 'Do not disturb' to false in the pref | |
# Show Desktop | |
do shell script "defaults write com.apple.finder CreateDesktop -bool true; killall Finder" | |
# Show all windows | |
tell application "System Events" | |
set visible of (every process) to true | |
end tell |
This gist contains out.tex
, a tex file that adds a PDF outline ("bookmarks") to the freely available pdf file of the book
An Introduction to Statistical Learning with Applications in R, by Gareth James, Daniela Witten, Trevor Hastie and Robert Tibshirani
http://www-bcf.usc.edu/~gareth/ISL/index.html
The bookmarks allow to navigate the contents of the book while reading it on a screen.
This gist contains out.tex
, a tex file that adds a PDF outline ("bookmarks") to the freely available pdf file of the book
The Elements of Statistical Learning (2nd ed), by Trevor Hastie, Robert Tibshirani, and Jerome Friedman
https://web.stanford.edu/~hastie/ElemStatLearn/
The bookmarks allow to navigate the contents of the book while reading it on a screen.
((*- extends 'article.tplx' -*)) | |
% See http://blog.juliusschulz.de/blog/ultimate-ipython-notebook#templates | |
% for some useful tips | |
%=============================================================================== | |
% Document class | |
%=============================================================================== | |
((* block docclass *)) |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
"""Add a warning to the top of any documentation page for the "latest" version | |
on ReadTheDocs (RTD). Somewhat confusingly, "latest" is the latest development | |
version, not the latest release (which is stable). | |
Note that RTD has a builtin feature to show a similar warning on the | |
documentation of old releases. This can be enable in the Admin section on RTD, | |
under "Advanced Settings", "Show version warning" | |
""" | |
# This program is public domain | |
# Author: Michael Goerz |