- ユーザー -> ユーザ
- Enhancing MIDI output
- ビュアー -> ビューア
- オッターヴァ/オッターバ
- できます/出来ます
- コンマ/カンマ
- チルド/チルダ
- reference前後のスペースを統一
This file contains hidden or 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
function download(blob, filename) { | |
var objectURL = (window.URL || window.webkitURL).createObjectURL(blob), | |
a = document.createElement('a'); | |
e = document.createEvent('MouseEvent'); | |
//a要素のdownload属性にファイル名を設定 | |
a.download = filename; | |
a.href = objectURL; | |
//clickイベントを着火 |
This file contains hidden or 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
% \friendsNoFermata でフレンズっぽくなる | |
% ベクター素材として以下を利用させていただきました。 | |
% http://diagraph01.net/MMD_models/index.html#misc_kemofure_no | |
\version "2.19.64" | |
#(define friends-no-path | |
'((moveto 0.910213 -0.359043) | |
(rcurveto 0.046888 -0.080300 0.062305 -0.134120 0.076108 -0.197500) | |
(rcurveto 0.012709 -0.068600 0.020939 -0.119580 0.004504 -0.198900) |
This file contains hidden or 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
\version "2.19.64" | |
#(set-object-property! 'stem-fork-position 'backend-type? pair?) | |
#(set-object-property! 'skip-stem-fork-printing 'backend-type? boolean?) | |
forkedChord = #(define-music-function | |
(lst chord) (list? ly:music?) | |
(let* ((note-event-list (ly:music-property chord 'elements))) | |
(begin | |
(for-each |
This file contains hidden or 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
[General] | |
month_length = 62400 | |
shift_divisor = 1440 | |
[Stations] | |
始発駅 | |
中間駅 | |
終着駅 | |
[RawTimes] |
================== 私はいかにして全作GMを勝ち取ったか ==================
2017/12/18, りょくちゃ (@suitougreentea)
(12/20 22:20 モチベーション維持の部分に追記)
この記事は、テトリス Advent Calendar 2017 18日目の記事です。
2017/12/11, りょくちゃ (@suitougreentea)
この記事は、テトリス Advent Calendar 2017 11日目の記事です。
This file contains hidden or 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
Windows Registry Editor Version 5.00 | |
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\MSYS here] | |
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\MINGW64 here] | |
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\MINGW32 here] |
This file contains hidden or 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
CXX = i686-w64-mingw32-g++ | |
C = i686-w64-mingw32-gcc | |
LD = i686-w64-mingw32-ld | |
SDL_CONFIG = /usr/i686-w64-mingw32/sys-root/mingw/bin/sdl-config | |
SDL2_CONFIG = /usr/i686-w64-mingw32/sys-root/mingw/bin/sdl2-config | |
BACKEND=gdi | |
COLOUR_DEPTH=16 | |
OSTYPE=mingw32 |