- 2015/03/??: JOY AUTO SERVICEにて調査。OBD-IIツールによると、CVTのエラーだったということだ。
- 2015/03/??: BMW MINIディーラー。CVTエラーということを伝えたら、全交換ということで、$12,000という見積もりを出されたようだ。
- 2015/03/17: hagatさんに見てもらって、やっぱり漏れの原因を特定すべきじゃね?という話に
- 2015/03/17: 車上げグッズを注文。スロープx4とウマx4(安全用)。
- 2015/03/23: スロープで前輪だけ上げて見てみた。エンジンオイル漏れてるっぽい。CVTオイルは漏れてないようだ。
- 2015/03/23: CVTオイル交換しようと、バッテリー外し方法をググった結果、バッテリーが弱いとCVTに不具合が出るという報告を見つけた。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I've wrote the manual for "how to look after Kiki". | |
Fill food and water | |
1. Open the box put the sticker "cat food" near the auto-feeder and put the food in the box into the auto-feeder. After closing the lid of the auto-feeder, check the red indicator not blinking. | |
2. Fill water into the water dispenser. | |
Option: Clean the litter | |
3. Clean the litter box with a scoop and put the garbage into the cat litter disposal tower. Pull the board in the middle of the disposal tower to fall the piled garbage. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rexml/document' | |
d = REXML::Document.new(File.read(ARGV[0])) | |
nib_list = [] | |
d.elements.each('//*[@storyboardIdentifier]') do |e| | |
nib_list << e.attribute('storyboardIdentifier').to_s | |
if e.name.intern == :viewController |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
# ディレクトリ・ファイル名とファイルの中身のテキストを置換する | |
require 'fileutils' | |
require 'open3' | |
PATTERN = 'AF' | |
REPLACEMENT = 'TomboAF' | |
DRY_RUN = false |
- Hyatt Regency San Francisco
- 5 Embarcadero Center, San Francisco, California, USA, 94111
- https://www.google.com/maps/place/Hyatt+Regency+San+Francisco,+5+Embarcadero+Center,+San+Francisco,+CA+94111/@37.7943007,-122.3979187,17z/data=!3m1!4b1!4m5!3m4!1s0x80858066b2ae7cab:0xfa369d8ed2b35dd6!8m2!3d37.7943007!4d-122.39573
- http://sanfrancisco.regency.hyatt.com/en/hotel/home.html
- The Westin St. Francis SF
- 335 Powell Street, San Francisco, California 94102
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
<script> | |
alert('aaa'); | |
</script> | |
--> | |
<html> | |
<head> | |
<title>test</title> | |
<script> | |
document.addEventListener('DOMContentLoaded', function() { |
git shortlog -sne | awk '{$1="";print}'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
import json | |
import urllib | |
import urllib2 | |
import codecs | |
import time | |
from bs4 import BeautifulSoup | |
from datetime import datetime | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# gem install exifr | |
require 'find' | |
require 'exifr' | |
require 'fileutils' | |
Find.find('.') do |path| | |
next if File.extname(path) != '.jpg' | |
exif = EXIFR::JPEG.new(path) | |
date = exif.date_time_original |