2018-01-01から1ヶ月間の記事一覧
アナログシンセ ARTURIA MicroBrute MOOG Mother-32 アナログドラムマシン Moog DFAM (Drummer From Another Mother) ARTURIA DrumBrute Akai Rhythm Wolf KORG volca beats 同僚がお高いアナログシーケンサを購入したと聞いてアナログなやつ欲しくなっちゃ…
const HOGE = new Map() .set('popuko', 14) .set('pipimi', 14) console.info(HOGE) // -> Map { 'popuko' => 14, 'pipimi' => 14 } 参考 Map - JavaScript | MDN
この記事の続き form の bool_flg フィールドでの例 <form action="" method="post"> {% csrf_token %} {% for choice in form.bool_flg.field.choices %} </form>
tidy をインストール MacOS の場合 $ brew install tidy-html5 設定 emacs.d/init.el (add-hook 'after-init-hook #'global-flycheck-mode) (eval-after-load 'flycheck '(flycheck-add-mode 'html-tidy 'web-mode)) 参考リンク Flycheck — Syntax checking …
(修正: 2018-02-05) 下記のようなラジオボタンボタン表示 from django import forms class HogeForm(forms.Form): bool_flg = forms.TypedChoiceField( initial=1, coerce=lambda x: bool(int(x)), choices=( (1, u'ON'), (0, u'OFF'), ), widget=forms.Radi…