| title | url | date |
|---|---|---|
Windows 10でNerves利用がどこまで可能か |
Jul 22, 2019 |
昨日のリベンジとしてUBSシリアルコンソールするためFTDIの変換モジュール注文した。FAQにのってるのでこれが正解かな...
On Windows, use the Serial option to connect to COM.
| # This will unstage all files you might have staged with git add: | |
| git reset | |
| # This will revert all local uncommitted changes (should be executed in repo root): | |
| git checkout . | |
| # You can also revert uncommitted changes only to particular file or directory: | |
| git checkout [some_dir|file.txt] | |
| # Yet another way to revert all uncommitted changes (longer to type, but works from any subdirectory): |
| {- | |
| $ nix-env --install ghc | |
| $ ghc --version | |
| /nix/store/z4ajipns0l1s8b2lrgpy6nng4cys7h99-bash-4.4-p23/bin/sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8) | |
| The Glorious Glasgow Haskell Compilation System, version 8.8.3 | |
| $ ghci | |
| /nix/store/z4ajipns0l1s8b2lrgpy6nng4cys7h99-bash-4.4-p23/bin/sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8) | |
| /nix/store/z4ajipns0l1s8b2lrgpy6nng4cys7h99-bash-4.4-p23/bin/sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8) |
| @startuml | |
| skinparam monochrome true | |
| skinparam backgroundColor #EEEEEE | |
| control ALB as LB | |
| actor "Front\nEnd" as FE | |
| actor "Counting\nService" as CS | |
| actor "Worker\nManager" as WM | |
| actor Worker as W | |
| actor "Placement\nService" as PS |
| title | url | date |
|---|---|---|
Windows 10でNerves利用がどこまで可能か |
Jul 22, 2019 |
昨日のリベンジとしてUBSシリアルコンソールするためFTDIの変換モジュール注文した。FAQにのってるのでこれが正解かな...
On Windows, use the Serial option to connect to COM.
map p scrollToTop
map n scrollToBottom
map wf LinkHints.activateModeToCopyLinkUrl
map b nextTab
map y previousTab
map ; removeTab
map ww copyCurrentUrl
map J performFind
| aws ec2 describe-instances \ | |
| --filters "Name=instance-state-name,Values=running" \ | |
| --query ' | |
| sort_by( | |
| Reservations[*].Instances[*].{Name:Tags[?Key==`Name`].[Value][0][0], | |
| ID:InstanceId, | |
| IP:PrivateIpAddress, | |
| Type:InstanceType}[0], | |
| &Name | |
| )' \ |