Vim Advent Calendar 2012の345日目(2013-11-10)の記事です。
普通のWindowsアプリにおいて、擬似的にViエディタのNormal mode編集操作を使えるようにするIMEを作りました。
Vim Advent Calendar 2012の345日目(2013-11-10)の記事です。
普通のWindowsアプリにおいて、擬似的にViエディタのNormal mode編集操作を使えるようにするIMEを作りました。
# Lynx patch to ignore xml encoding if charset is specified in Content-Type header | |
## Problem | |
Some sites (2chcopipe.com, digital-thread.com) use | |
incorrect <?xml encoding value. | |
Lynx displays garbled characters. | |
Content-Type: text/html; charset=euc-jp | |
... | |
<?xml version="1.0" encoding="UTF-8"?> |
$ cat trips.json
[{"vendor":"car","path":[[139.8007914,35.5144044],[139.9108676,35.4396142]],"timestamps":[0,600]},{"vendor":"escooter","path":[[139.9108139,35.439529],[139.8008987,35.5140027]],"timestamps":[0,600]}]
$ curl https://raw.githubusercontent.com/visgl/deck.gl-data/master/examples/trips/trips-v7.json 2> /dev/null | jq -c 'map(select(.path[0][0] < -73.98 and .path[-1][0] < -73.98 and .path[0][0] > -74.02 and .path[-1][0] > -74.02 and .path[0][1] < 40.75 and .path[-1][1] < 40.75 and .path[0][1] > 40.70 and .path[-1][1] > 40.70))' | jq -c '.' > trips-v7_0.json
Vim Advent Calendar 2012の102日目(2013-03-12)の記事です。
W,E,BでのWORD移動を文節単位にする jasegment.vimを作りました。
<html> | |
<head> | |
<title>gzip on browser</title> | |
</head> | |
<body> | |
<input type="file" id="fileElem" multiple /> | |
<script> | |
const fileElem = document.getElementById("fileElem"); |