I hereby claim:
- I am mp4096 on github.
- I am mp4096 (https://keybase.io/mp4096) on keybase.
- I have a public key whose fingerprint is 0639 BFEA 7F2A 577D D8F4 18F2 26F8 94EC B588 E873
To claim this, I am signing this object:
| #include <iostream> | |
| #include <vector> | |
| struct Foo { | |
| float x; | |
| float y; | |
| float z; | |
| }; | |
| using Bar = std::vector<float>; |
I hereby claim:
To claim this, I am signing this object:
| product xss = foldr f [[]] xss | |
| where f xs yss = foldr g [] xs | |
| where g x zss = foldr h zss yss | |
| where h ys qss = (x : ys) : qss |
| # Activate dark theme | |
| jt -t chesterish -f source -T | |
| # Reset to default | |
| jt -r | |
| # Modify ~/.ipython/profile_default/startup/startup.ipy | |
| # | |
| # from jupyterthemes import jtplot | |
| # jtplot.style() |
| \documentclass[10 pt, a4paper]{article} | |
| % ====================================================================== | |
| % Use UTF-8 and T1 | |
| % ====================================================================== | |
| \usepackage[utf8]{inputenc} | |
| \usepackage[T1]{fontenc} | |
| \usepackage{lmodern} | |
| % ====================================================================== |
| import joblib | |
| a = 1 | |
| b = "hello" | |
| c = 2.71828 | |
| # The `compress` argument is optional; | |
| # 9 is the highest compression level | |
| joblib.dump((a, b, c), "foo.xz", compress=9) |
| sudo apt-get update -qq && sudo apt-get upgrade -qq -y | |
| sudo apt-get install -y make clang libiomp-dev | |
| wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh | |
| bash Miniconda3-latest-Linux-x86_64.sh | |
| # reboot | |
| conda install pyyaml numpy pandas joblib |
| DOXYFILE_ENCODING = UTF-8 | |
| PROJECT_NAME = "{{project_name}}" | |
| PROJECT_NUMBER = | |
| PROJECT_BRIEF = | |
| PROJECT_LOGO = | |
| OUTPUT_DIRECTORY = "{{output_dir}}" | |
| CREATE_SUBDIRS = NO | |
| ALLOW_UNICODE_NAMES = NO | |
| OUTPUT_LANGUAGE = English | |
| BRIEF_MEMBER_DESC = YES |