Hello World / plɹoM ollǝH

Programmers Live in Vain

2018-01-01から1ヶ月間の記事一覧

three.js Chromeローカルファイル読み込みで怒られたよ

three.jsのサンプルローカルで実行してたら怒られたのでメモ Failed to load **** Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https. ローカルサーバー建てるのは面倒くさいので 起動オプショ…

pythonのreversedはイテレータを返す

反転したリストを複数回使うときにハマった a = reversed([1, 2, 3]) # イテレータを返す for x in a: print(x) for x in a: print(x) # ここは呼ばれない reverseなどでリスト自体を反転させておくか a = [1, 2, 3] a.reverse() for文ごとにreversedを呼べ…