シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ
- C製
- Doxygen, Moinmoinなどと連携可能
- ブロック図、クラス図、ネットワーク図など
シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ
I hereby claim:
To claim this, I am signing this object:
| ###### development tools | |
| sudo apt-get install build-essential python-dev git nodejs-legacy npm gnome-tweak-tool openjdk-8-jdk | |
| ### Python packages | |
| sudo apt-get install python-pip python-virtualenv python-numpy python-matplotlib | |
| ### pip packages | |
| pip install django flask django-widget-tweaks django-ckeditor beautifulsoup4 requests classifier SymPy ipython |
| =Navigating= | |
| visit('/projects') | |
| visit(post_comments_path(post)) | |
| =Clicking links and buttons= | |
| click_link('id-of-link') | |
| click_link('Link Text') | |
| click_button('Save') | |
| click('Link Text') # Click either a link or a button | |
| click('Button Value') |
| start = doc | |
| doc = block:block + { | |
| return `<body>${block.join("")}</body>`; | |
| } | |
| block = headline | |
| / paragraph | |
| headline = prefix:("#" / "##" / "###" / "####" / "#####" / "######") textline:TEXT_LINE EOS { | |
| return `<h${prefix.length}>${textline}</h${prefix.length}>` | |
| } |
Ubuntu 16.04 LST Docker Install スクリプト
from https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04
| #include <string> | |
| #include <iostream> | |
| #include <stdio.h> | |
| #include <curl/curl.h> | |
| void check_verification() { | |
| #ifdef SKIP_PEER_VERIFICATION | |
| /* | |
| * If you want to connect to a site who isn't using a certificate that is | |
| * signed by one of the certs in the CA bundle you have, you can skip the |
| #! /usr/bin/env python3 | |
| from sklearn import datasets | |
| from sklearn.cross_validation import train_test_split | |
| from sklearn.preprocessing import StandardScaler | |
| from sklearn.linear_model import Perceptron | |
| from sklearn.metrics import accuracy_score | |
| import numpy as np | |
| iris = datasets.load_iris() |
Error: --with-openssl and --with-libressl are both specified and
curl can only use one at a time.
というエラーが出た時の対処法