| 日時: | 2018-03-31 |
|---|---|
| 作: | @voluntas |
| バージョン: | 18.3.5 |
| URL: | https://voluntas.github.io/ |
突っ込みは Twitter @voluntas まで。
| --- | |
| - name: Install BCC (BPF Compiler Collection) Package Upstream Stable | |
| hosts: all | |
| connection: ssh | |
| become: yes | |
| become_user: root | |
| become_method: sudo | |
| vars: | |
| - bccpath: '/usr/share/bcc/tools' |
| //This is the one that Daniel Jackson wrote | |
| abstract sig Node {inputs: set Node} | |
| sig Source extends Node {} {no inputs} | |
| sig Sink extends Node {} {one inputs} | |
| abstract sig Gate extends Node {} | |
| sig And, Or, Xor extends Gate {} {#inputs = 2} | |
| sig Not extends Gate {} {one inputs} |
| 日時: | 2018-03-31 |
|---|---|
| 作: | @voluntas |
| バージョン: | 18.3.5 |
| URL: | https://voluntas.github.io/ |
突っ込みは Twitter @voluntas まで。
| cat <<EOF > ~/Library/LaunchAgents/com.$(whoami).jupyterlab.plist | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>KeepAlive</key> | |
| <true/> | |
| <key>Label</key> | |
| <string>com.$(whoami).jupyterlab</string> | |
| <key>ProgramArguments</key> |
| { | |
| repository(name: "sickvim", owner: "jonathansick") { | |
| ref(qualifiedName: "master") { | |
| target { | |
| ... on Commit { | |
| id | |
| history(first: 5) { | |
| pageInfo { | |
| hasNextPage | |
| } |
以下転載:
自分がインストールしたとき (2022年9月) の参考用のメモです。
(情報が古くなっている可能性があります)
**<<<現在では より新しい MSYS2/MinGW-w64 UCRT64 (64bit) の開発環境もあります>>>
MSYS2/MinGW-w64 UCRT64 (64bit) 開発環境のインストールについては、
以下のページの方を参照ください。
https://gist.github.com/Hamayama/7810d2a1a59a872a2fbc271345151f77
| (require 'nadvice) | |
| (defun pps-after (x) | |
| (interactive) | |
| (let ((lst `(:depth ,(nth 0 x) | |
| :char-add-start-innermost ,(nth 1 x) | |
| :char-add-start-last ,(nth 2 x) | |
| :instring ,(nth 3 x) | |
| :inside-comment ,(nth 4 x) | |
| :quote-char ,(nth 5 x) | |
| :min-paren-depth ,(nth 6 x) |