In programming languages, literals are textual representations of values in the source code. This is a syntactical concept.
Some examples:
7 # integer literal
In programming languages, literals are textual representations of values in the source code. This is a syntactical concept.
Some examples:
7 # integer literal
$ nmcli connection add type wifi ifname wlo1 con-name 0001docomo ssid 0001docomo | |
Connection '0001docomo' (a6fde1b0-6055-4e6c-a314-05027eb6083a) successfully added. | |
$ nmcli con edit id 0001docomo | |
===| nmcli interactive connection editor |=== | |
Editing existing '802-11-wireless' connection: '0001docomo' | |
Type 'help' or '?' for available commands. | |
Type 'print' to show all the connection properties. |
// chromeを利用して、ユーザ一覧を表示しつつconsoleで↓を実行すると、現在の参加者からランダムで一人表示することができます | |
const names_array = document.querySelector("[aria-label='参加者']").innerText.split("\n").filter((word)=> !word.match(/\(|メイン|ミュート|主催者|画面共有|その他の操作|keep_off|more_vert|keep|domain_disabled/)) | |
const names_set = new Set(names_array) | |
const names_uniq_array = Array.from(names_set) | |
names_uniq_array[Math.floor(Math.random() * names_uniq_array.length)] |
```mermaid
sequenceDiagram
participant dotcom
participant iframe
participant viewscreen
dotcom->>iframe: loads html w/ iframe url
iframe->>viewscreen: request template
viewscreen->>iframe: html & javascript
iframe->>dotcom: iframe ready
Trigger event | pull_request |
pull_request_target |
push |
---|---|---|---|
github.ref |
refs/pull/53/merge | refs/heads/main | refs/heads/test/pull_request_target |
github.head_ref |
test/pull_request_target | test/pull_request_target | - |
main
: default branchtest/pull_request_target
: topic branch name53
: pull request number(1) FEATURE EXPECTATIONS [5 min]
(1) Use cases
(2) Scenarios that will not be covered
(3) Who will use
(4) How many will use
(5) Usage patterns
# Instruction + template repo: https://github.com/FedericoPonzi/rust-ci | |
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*.*.*' |