title | url | date |
---|---|---|
Windows 10でNerves利用がどこまで可能か |
Jul 22, 2019 |
昨日のリベンジとしてUBSシリアルコンソールするためFTDIの変換モジュール注文した。FAQにのってるのでこれが正解かな...
On Windows, use the Serial option to connect to COM.
{- | |
$ 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.
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 | |
)' \ |
Sub WebSearchActiveCell() | |
Dim cs As Range | |
Dim c As Range | |
Dim query As String | |
If ActiveWindow.RangeSelection.Count = 1 Then | |
Set cs = ActiveWindow.RangeSelection | |
Else | |
Set cs = ActiveWindow.RangeSelection.SpecialCells(xlCellTypeVisible) | |
End If |