見出し部分。ここをクリック。**見出し部分のMarkdown太文字は不可**
*divの下に行を空けないで書くとMarkdownは変換されない*
ここが隠れてる部分。
中身には色々書ける。
| $ wget http://nginx.org/keys/nginx_signing.key | |
| $ sudo apt-key add nginx_signing.key | |
| $ sudo su | |
| # echo 'deb http://nginx.org/packages/mainline/ubuntu/ xenial nginx' >> /etc/apt/sources.list.d/nginx.list | |
| # echo 'deb-src http://nginx.org/packages/mainline/ubuntu/ xenial nginx' >> /etc/apt/sources.list.d/nginx.list | |
| # apt-get update | |
| # apt-get install unit |
ここが隠れてる部分。
中身には色々書ける。
| <?php // Don't use this line. | |
| /* | |
| * Add the script below to wherever you store custom code snippets | |
| * in your site, whether that's your child theme's functions.php, | |
| * a custom plugin file, or through a code snippet plugin. | |
| */ | |
| /** | |
| * This function will connect wp_mail to your authenticated |
| Related to this pull-request: | |
| https://github.com/alpinelinux/aports/pull/1092 | |
| Steps: | |
| 1. upgrade busybox to the one, which has busybox-extras | |
| 2. telnet does not exist anymore | |
| 3. add busybox-extras | |
| 4. telnet exists | |
| 5. uninstall busybox-extras and re-install busybox | |
| 6. telnet does not exist anymore |
| getRequest(url: string): Promise<any> { | |
| return new Promise<any>( | |
| function (resolve, reject) { | |
| const request = new XMLHttpRequest(); | |
| request.onload = function () { | |
| if (this.status === 200) { | |
| resolve(this.response); | |
| } else { | |
| reject(new Error(this.statusText)); | |
| } |
| class Tools { | |
| /* | |
| * Generate random integer between $min and $max | |
| * @param [type] $min [description] | |
| * @param [type] $max [description] | |
| * @return [type] [description] | |
| */ | |
| public static function secureRandomInt($min, $max) { | |
| $max++; |
| Feature: WordPress Admin | |
| Scenario: Showing the Homepage with PC | |
| Given the screen size is 1440x900 | |
| And I login as "admin" with password "admin" | |
| When I am on "/wp-admin/plugin-install.php" | |
| And I fill in "s" with "contact-form-7" | |
| And I wait for 10 seconds | |
| Then I should see "Just another contact form plugin." |
| https://raw.github.com/wiki/user/repo/page.md?login=login&token=token |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm