OSDN Git Service

Regular updates
authorErik <erikgronwal@users.osdn.me>
Wed, 25 Sep 2019 14:55:07 +0000 (23:55 +0900)
committerErik <erikgronwal@users.osdn.me>
Wed, 25 Sep 2019 14:55:07 +0000 (23:55 +0900)
.github/workflows/rebase.yml [new file with mode: 0644]
.travis.yml
bash.md
css.md
editorconfig.md
es6.md
homebrew.md

diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml
new file mode 100644 (file)
index 0000000..ee36380
--- /dev/null
@@ -0,0 +1,2 @@
+- name: Automatic rebase
+  uses: cirrus-actions/rebase@1.2
index e4f0a01..47c1f43 100644 (file)
@@ -1,10 +1,7 @@
 language: ruby
 rvm:
-  - 2.5.0
+  - 2.5
 script:
   - make -B _site
   - if ! make test; then make test-warning; exit 16; fi
-cache:
-  directories:
-    - node_modules
-    - _site
+cache: bundler
diff --git a/bash.md b/bash.md
index ab61a3a..9aefd8c 100644 (file)
--- a/bash.md
+++ b/bash.md
@@ -678,6 +678,12 @@ source "${0%/*}/../share/foo.sh"
 ```bash
 printf "Hello %s, I'm %s" Sven Olga
 #=> "Hello Sven, I'm Olga
+
+printf "1 + 1 = %d" 2
+#=> "1 + 1 = 2"
+
+printf "This is how you print a float: %f" 2
+#=> "This is how you print a float: 2.000000"
 ```
 
 ### Directory of script
diff --git a/css.md b/css.md
index dfb7ef4..162d28c 100644 (file)
--- a/css.md
+++ b/css.md
@@ -43,13 +43,14 @@ keywords:
 
 ### Attribute selectors
 
-| Selector          | Description                         |
-| ----------------- | ----------------------------------- |
-| `[role="dialog"]` | `=` Exact                           |
-| `[class~="box"]`  | `~=` Has word                       |
-| `[class|="box"]`  | `|=` Exact or prefix (eg, `value-`) |
-| `[href$=".doc"]`  | `$=` Ends in                        |
-| `[class*="-is-"]` | `*=` Contains                       |
+| Selector           | Description                         |
+| ------------------ | ----------------------------------- |
+| `[role="dialog"]`  | `=` Exact                           |
+| `[class~="box"]`   | `~=` Has word                       |
+| `[class|="box"]`   | `|=` Exact or prefix (eg, `value-`) |
+| `[href$=".doc"]`   | `$=` Ends in                        |
+| `[href^="/index"]` | `^=` Begins with                    |
+| `[class*="-is-"]`  | `*=` Contains                       |
 
 ### Pseudo-classes
 
index 19ed561..efb16ac 100644 (file)
@@ -72,4 +72,4 @@ indent_size = 2
 
 ### References
 
-- <http://EditorConfig.org>
+- <https://EditorConfig.org>
diff --git a/es6.md b/es6.md
index 3aea891..3354696 100644 (file)
--- a/es6.md
+++ b/es6.md
@@ -248,7 +248,7 @@ function greet({ name, greeting }) {
 greet({ name: 'Larry', greeting: 'Ahoy' })
 ```
 
-Destructuring of objects and arrays can be also be done in function arguments.
+Destructuring of objects and arrays can also be done in function arguments.
 
 ### Default values
 
index 57507b6..a26b43b 100644 (file)
@@ -36,6 +36,15 @@ category: CLI
 | `brew list`     | List installed           |
 | `brew outdated` | What's due for upgrades? |
 
+### Brew Cask commands
+
+| Command                       | Description                           |
+| ---                           | ---                                   |
+| `brew cask install firefox`   | Install the Firefox browser           |
+| `brew cask list`              | List installed applications           |
+
+Cask commands are used for interacting with graphical applications.
+
 ## Also see
 {: .-one-column}