This note is for myself from reading
Many file creation and update can be accomplished with usethis
.
Some that I found useful are
This note is for myself from reading
Many file creation and update can be accomplished with usethis
.
Some that I found useful are
The input numpy array is mapped to the input of a C++ wrapper function using pybind11
. Then, core function myfunc
with templated input type is executed on the mapped matrix.
To execute the test function and profile memory usage, run
/usr/bin/time -v python test.py
% Encoding: UTF-8 | |
@TechReport{AlzhimersAssociation2012, | |
author = {{Alzhimer's~Association},{}}, | |
title = {Alzheimer's Disease: Facts and Figures}, | |
institution = {Alzhimer's Association}, | |
year = {2012}, | |
file = {:papers/Association2012 - Alzheimer's Disease_ Facts and Figures.pdf:PDF}, | |
groups = {Neuroscience, [syoh:]}, | |
owner = {syoh}, |
#!/bin/bash | |
pip install rise | |
jupyter nbextension install rise --py --sys-prefix | |
pip install hide_code | |
jupyter nbextension install hide_code --py --sys-prefix | |
jupyter nbextension enable hide_code --py --sys-prefix | |
jupyter serverextension enable hide_code --py --sys-prefix |
#!/bin/bash | |
mkdir -p $(jupyter --data-dir)/nbextensions | |
git clone https://github.com/lambdalisue/jupyter-vim-binding \ | |
$(jupyter --data-dir)/nbextensions/vim_binding | |
jupyter nbextension enable vim_binding/vim_binding |