社内発表資料を元に最新版に更新(参考: 2022/11/10(木) bpstyle 142)
- とりあえずはTypeScriptの導入
- 他はVRTがおすすめ
- 自分はChromaticを使用している
- API通信のモックデータは実データから生成するとよい
| define :one do | |
| 8.times do | |
| play (scale :e3, :harmonic_minor).tick, release: 0.1 | |
| sleep 0.125 | |
| end | |
| 8.times do | |
| play (scale :d4, :harmonic_minor).tick, release: 0.1 | |
| sleep 0.125 | |
| end | |
| 8.times do |
| d = { | |
| "success": True, | |
| "calendars": [ | |
| { | |
| "id": 123, | |
| "year": 2014, | |
| "months": [ | |
| { | |
| "id": 50, | |
| "monthnumber": 1, |
| """ | |
| - https://speakerdeck.com/anatoo/phpdexue-buvmxing-zheng-gui-biao-xian-enzinfalseshi-zu-mi | |
| - http://blog.asial.co.jp/1221 | |
| """ | |
| import copy | |
| class RegexVMThread(object): | |
| def __init__(self): | |
| self.string_pointer = 0 |
| # -*- coding: utf-8 -*- | |
| def parse_input_string(strs): | |
| import shlex | |
| parsed = shlex.split(cmd) | |
| print(parsed) | |
| return parsed | |
| cmd = 'hoge | moge 1 | insert_delimiter ! | whitespace' | |
| parsed = parse_input_string(cmd) |