移動しました https://aoki-app.jp.larksuite.com/docx/Fq1IddBr3ozbFJx9mIBj09PupQb
フォローしよう!
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
| ### うまく変換が働かない例 | |
| #### Raw | |
| | wParam | lParam->vkCode | lParam->scanCode | lParam->flags | lParam->dwExtraInfo | | |
| | ------ | -------------- | ---------------- | ------------- | ------------------- | | |
| | 256 | 91 | 91 | 1 | 0 | | |
| | 256 | 67 | 46 | 0 | 0 | | |
| | 257 | 67 | 46 | 128 | 0 | | |
| | 257 | 91 | 91 | 129 | 0 | |
Tested with OptiPlex 9020
$ uname -a
Linux iwashi 5.11.0-27-generic #29~20.04.1-Ubuntu SMP Wed Aug 11 15:58:17 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
- Intel(R) Core(TM) i5-4570
- Ubuntu Server 20.04.2
- DDR3 4GB x 4
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
| import re | |
| import base64 | |
| import io | |
| from PIL import Image | |
| f = open("./roadmap-img.svg") | |
| alltext = f.read() | |
| f.close() | |
| while True: | |
| pat = re.search(r'xlink:href="data:image/png;base64,(.*)"', alltext) |
- Made with React
- Async interface
- Modular component
- Hardware wallet ready
- Cold mode
- Bitcoin-derivative, Polkadot, Ethereum is main target
- Wasm, Multi thread
- Web3, mpurse compatible
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
| #!/bin/bash | |
| echo "--- compiling ---" | |
| g++ -std=gnu++1y -O0 -I/usr/local/include -L/usr/local/lib -o ./a.out ./main.cpp | |
| echo "--- running ---" | |
| ./a.out |
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
| #!/bin/bash | |
| echo "--- compiling ---" | |
| g++ -std=gnu++1y -O0 -I/usr/local/include -L/usr/local/lib -o ./a.out ./main.cpp | |
| echo "--- please type ---" | |
| read line | |
| in=$line | |
| while true | |
| do | |
| read line | |
| if ["$line" = ""]; then |
NewerOlder
