View pip-error.log
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
Created temporary directory: /tmp/pip-install-jd1y17b6 | |
Collecting git+https://github.com/hagenw/sphinxcontrib-katex@math_numfig | |
Created temporary directory: /tmp/pip-req-build-tyoiow_a | |
Cloning https://github.com/hagenw/sphinxcontrib-katex (to revision math_numfig) to ./pip-req-build-tyoiow_a | |
Running command git clone -q https://github.com/hagenw/sphinxcontrib-katex /tmp/pip-req-build-tyoiow_a | |
Running command git show-ref math_numfig | |
14ec302f3b73b0a4e177617ab72c3881fa786a74 refs/remotes/origin/math_numfig | |
Running command git rev-parse HEAD | |
f4aaf369b0b932a801aa26e1a311add0784624bf | |
Running command git fetch -q https://github.com/hagenw/sphinxcontrib-katex 14ec302f3b73b0a4e177617ab72c3881fa786a74 |
View katex_align.html
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
<!DOCTYPE html> | |
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0-alpha1/katex.min.css" type="text/css" /> | |
</head> |
View install_python_matlab_engine.sh
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
#!/bin/bash | |
# Go to $MATLABROOT/extern/engines/python and run the following line to build the python engine without root permissions. | |
# See https://uk.mathworks.com/help/matlab/matlab_external/install-matlab-engine-api-for-python-in-nondefault-locations.html | |
python setup.py build --build-base=$HOME/tmp/build install |
View install_zopflipng.sh
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
#!/bin/bash | |
git clone https://github.com/google/zopfli.git | |
cd zopfli/ | |
make zopflipng |
View requirements.txt
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
-e git+https://github.com/sfstoolbox/sfs-documentation-theme.git#egg=SfsDoc |
View fire_blossom.wxm
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
load(draw); | |
draw_polar(expr,range) := | |
block([theta_var: range[1]], | |
draw2d(background_color = black, | |
xtics = 'none, | |
ytics = 'none, | |
axis_top = false, | |
axis_bottom = false, | |
axis_left = false, |
View narginchk.m
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
function narginchk(minargs, maxargs) | |
if (nargin ~= 2) | |
error('%s: Usage: narginchk(minargs, maxargs)',upper(mfilename)); | |
elseif (~isnumeric (minargs) || ~isscalar (minargs)) | |
error ('minargs must be a numeric scalar'); | |
elseif (~isnumeric (maxargs) || ~isscalar (maxargs)) | |
error ('maxargs must be a numeric scalar'); | |
elseif (minargs > maxargs) | |
error ('minargs cannot be larger than maxargs') |