既に上げられていたので、出遅れた。
http://delta114514.hatenablog.jp/entry/2018/03/15/014555
そして上記の記事は大変まとまっているため、私の記事は不要だと思う。以下、駄文。
既に上げられていたので、出遅れた。
http://delta114514.hatenablog.jp/entry/2018/03/15/014555
そして上記の記事は大変まとまっているため、私の記事は不要だと思う。以下、駄文。
OSX El CapitanのデフォルトのVimは7.3で、7.4に依存するdeinを使いたくなったのでKaoriYa Vimをコンソールから利用する方法。
export PATH=$HOME/bin:$PATH
| def f(x) | |
| if x | |
| unless x | |
| p :foo | |
| end | |
| end | |
| end | |
| TracePoint.trace(:line) do |tp| | |
| if tp.lineno == 2 |
| # coding: UTF-8 | |
| import urllib.request | |
| from bs4 import BeautifulSoup | |
| # アクセスするURL | |
| url = "http://www.nikkei.com/" | |
| # URLにアクセスする htmlが帰ってくる → <html><head><title>経済、株価、ビジネス、政治のニュース:日経電子版</title></head><body.... | |
| html = urllib.request.urlopen(url) |
| int num = 50; | |
| PVector[] points = new PVector[num]; | |
| void setup() { | |
| size(320, 240); | |
| colorMode(HSB, 360, 100, 100, 100); | |
| noStroke(); | |
| for (int i = 0; i < points.length; i++) { | |
| float x = random(width); | |
| float y = random(height); |