(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| * NES Emulator | |
| * ツイ消し監視 | |
| * IC カードのようなものをかざす前に外出しようとすると警告音が鳴る | |
| * 全角文字と半角文字の間に spaces を挿入する | |
| * like するアカウントを Twitter web で選ぶ | |
| * Twitter で画像を投稿するとき JPEG に変換されることを防ぐために画像の左上 1px を不透明度 99% にして PNG32 にしてから post する |
| { | |
| "title":"command -> eisuu + kana, caps_lock -> command", | |
| "rules":[ | |
| { | |
| "description":"left_command -> japanese_eisuu", | |
| "manipulators":[ | |
| { | |
| "type":"basic", | |
| "from":{ | |
| "key_code":"left_command", |
| uiについて | |
| - アイテムの並び,導線,認知の方法,左から右へ,上から下へ | |
| - テーマカラー | |
| - 馴染ませる | |
| - 抽象する | |
| - 思考をトレースする | |
| - 後で絞らせる | |
| - 対話させる | |
| 挙動と期待するレスポンス | |
| 結論を得る |
| #InstallKeybdHook | |
| Vim_n := 0 | |
| VimMove(key="", shift=0){ | |
| global | |
| if(InStr(VimMode, "Visual") or InStr(VimMode, "ydc") or shift == 1){ | |
| Send, {Shift Down} | |
| } | |
| ; Left/Right | |
| if(not InStr(VimMode, "Line")){ |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| @font-face { | |
| font-family: 'Noto Serif Japanese'; | |
| font-style: normal; | |
| font-weight: 200; | |
| src: url('./github/user/NotoSerifCJKjp-ExtraLight.otf') format('opentype'); | |
| } | |
| @font-face { | |
| font-family: 'Noto Serif Japanese'; | |
| font-style: normal; | |
| font-weight: 300; |
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <map> | |
| using namespace std; | |
| int main(void) { | |
| std::ios::sync_with_stdio(false); | |
| std::cin.tie(0); |