| 1 | = 2021-10-04 = |
| 2 | |
| 3 | == JMeter == |
| 4 | |
| 5 | * 目的:製作可以裝在 EC2 (Amazon Linux) 的 JMeter RPM 套件 |
| 6 | |
| 7 | == homebrew == |
| 8 | {{{ |
| 9 | ~$ brew tap |
| 10 | coursier/formulas |
| 11 | homebrew/cask |
| 12 | homebrew/cask-fonts |
| 13 | homebrew/cask-versions |
| 14 | homebrew/core |
| 15 | homebrew/services |
| 16 | jlhonora/lsusb |
| 17 | }}} |
| 18 | {{{ |
| 19 | ~$ brew list --formula |
| 20 | bash-completion dos2unix git libidn2 openssl@1.1 readline unrar |
| 21 | ca-certificates fzf git-extras libunistring p7zip sqlite wget |
| 22 | coreutils gdbm gmp ncurses pcre2 tig |
| 23 | ddrescue gettext htop nmap pidof tree |
| 24 | }}} |
| 25 | {{{ |
| 26 | ~$ brew list --cask |
| 27 | firefox joplin skype tableau-public vmware-horizon-client |
| 28 | font-hack messenger slack visual-studio-code zulu8 |
| 29 | google-chrome pingid spectacle vlc |
| 30 | }}} |
| 31 | {{{ |
| 32 | #!graphviz |
| 33 | digraph "brew-dep" { rankdir=LR; node [shape=record]; |
| 34 | "ca-certificates"->"openssl@1.1"; "gettext"->"git"; "gettext"->"libidn2"; "gettext"->"wget"; "gmp"->"coreutils"; "libidn2"->"wget"; "libunistring"->"libidn2"; "libunistring"->"wget"; "ncurses"->"htop"; "openssl@1.1"->"nmap"; "openssl@1.1"->"wget"; "pcre2"->"git"; "readline"->"sqlite"; "readline"->"tig"; "bash-completion"; "ca-certificates"; "ddrescue"; "dos2unix"; "fzf"; "gdbm"; "gettext"; "git-extras"; "gmp"; "libunistring"; "ncurses"; "p7zip"; "pcre2"; "pidof"; "readline"; "tree"; "unrar"; |
| 35 | } |
| 36 | }}} |