「独学プログラマー」をちょっと読む
MIME タイプと拡張子
Posted on Wed 06 February 2019 in misc • Tagged with python, mimetypes
じゅんやは Linter を てに いれた
Posted on Tue 05 February 2019 in misc • Tagged with python, lint
ログの出し方をちょっと学ぶ
Posted on Mon 04 February 2019 in misc • Tagged with python, log
Trinket M0 Lチカをなおす
Posted on Sun 03 February 2019 in misc • Tagged with trinket m0, circuitpython
from time import sleep
from board import D13
from digitalio import DigitalInOut, Direction
if __name__ == '__main__':
led = DigitalInOut(D13)
led.direction = Direction.OUTPUT
while True:
led.value = True
print(D13, led.value)
sleep(0.1)
led.value = False
print(D13, led.value)
sleep(0.5)
Continue reading
英語の文書を読む そして誤解に気づく
Posted on Sat 02 February 2019 in misc
Trinket-M0 を買ったときに、 こんなことを書きました。
ところで、商品ページ を見ていたら、 AVR で CircuitPython がプログラミングできるとい …
Continue reading
このコーディングで良いのか?
Posted on Fri 01 February 2019 in misc
Byte Order Mark に対処する
Posted on Thu 31 January 2019 in misc
UnicodeEncodeError に対処する
Posted on Wed 30 January 2019 in misc