Turi Create - https://github.com/apple/turicreate - https://apple.github.io/turicreate/docs/userguide/ - https://gist.github.com/glebsteron/89b282f2960f1d6c50983e516b1aab73
View latex
sudo apt install texlive-latex-base | |
sudo apt install texlive-lang-cyrillic | |
sudo apt install lmodern --- ??? | |
верхнее не прокатило, пробуем как тут: | |
http://tmel.ru/installyaciya-latex/ | |
https://www.overleaf.com/latex/templates/1-dot-1-basic-russian-template/zzwxxzmwsnsg | |
успех |
View Обучающие материалы.md
- Курс "Машинное обучение" на ФКН ВШЭ - https://github.com/esokolov/ml-course-hse
View jupyter.md
https://github.com/ipython-contrib/jupyter_contrib_nbextensions:
- pip install https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tarball/master
- jupyter contrib nbextension install --user
- http://localhost:8888/tree#nbextensions_configurator
- Collapsible Headings
- Codefolding
- Hide input
- Table of content
View batsed.bat
@echo off | |
set FILEPATH="dir\2" | |
powershell -command "write-host 'hello from powershell' -fore green" | |
powershell -command "(Get-Content %FILEPATH%\123.txt) -replace 'DEFAULT_','%1_'">%FILEPATH%\1231.txt |
View install_idea_13.1.3.sh
#!/bin/bash | |
# Pull this file down, make it executable and run it with sudo | |
# wget https://gist.githubusercontent.com/Eldar7/ce277f6e90a1466f2c41/raw/install_idea_13.1.3.sh | |
# chmod u+x install_idea_13.1.3.sh | |
# sudo ./install_idea_13.1.3.sh | |
apt-get install openjdk-7-jdk | |
if [ $(id -u) != "0" ]; then | |
echo "You must be the superuser to run this script" >&2 |