- 拆座墊
- http://www.zclub.com.tw/discuz/thread-116267-1-1.html
- 工具 t10套筒頭鈑手一根(應該).隨車工具包的起子
- 在拆坐墊前請把2邊側殼拆下.
- 座墊固定點在尾殼跟座位中間.黃線是移車把手位置.紅色是螺絲位置.左右各1.
- 拆下時請把螺絲類管好.不然失蹤會很頭痛
- 拆後方向燈
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# nginx | |
wget -O /var/nginx_home/conf.d/default.conf https://gist.githubusercontent.com/marsyang1/1fcdb86aa274060ff5be/raw/7e1568c94791e171c6ba046fd7b667e5363c88f4/default.conf | |
docker run -d \ | |
--name nginx \ | |
-p 80:80 \ | |
-v /home/nginx_home/conf.d:/etc/nginx/conf.d | |
-v /home/nginx_home/html/:/usr/share/nginx/html | |
nginx | |
#scm-manager= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//1. 在console載入jQuery | |
var jq = document.createElement('script'); | |
jq.src = "http://code.jquery.com/jquery-latest.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); | |
$.post("/test/hello.php" | |
,{"accountName":"hello","birthday":"1980-08-01","bankno":"12341234"}, function (data) { | |
console.log(data); | |
console.log(data.data) | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.google.common.base.Charsets; | |
import com.google.common.io.Files; | |
import lombok.extern.slf4j.Slf4j; | |
import org.bouncycastle.asn1.pkcs.PrivateKeyInfo; | |
import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo; | |
import org.bouncycastle.openssl.PEMKeyPair; | |
import org.bouncycastle.openssl.PEMParser; | |
import org.bouncycastle.openssl.jcajce.JcaPEMKeyConverter; | |
import org.junit.Test; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://kubernetes.io/docs/getting-started-guides/ubuntu/ | |
# https://conjure-up.io/ | |
# http://www.admintome.com/blog/conjuring-up-kubernetes-on-ubuntu/ | |
# lxc https://help.ubuntu.com/lts/serverguide/lxc.html | |
sudo snap install lxd -y | |
sudo usermod -a -G lxd ubuntu | |
newgrp lxd | |
/snap/bin/lxd init |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your keymap | |
# | |
# Atom keymaps work similarly to style sheets. Just as style sheets use | |
# selectors to apply styles to elements, Atom keymaps use selectors to associate | |
# keystrokes with events in specific contexts. Unlike style sheets however, | |
# each selector can only be declared once. | |
# | |
# You can create a new keybinding in this file by typing "key" and then hitting | |
# tab. | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://hub.docker.com/r/rediscommander/redis-commander | |
docker run --rm --name redis-commander -d \ | |
--env REDIS_HOSTS=10.10.20.30 \ | |
-p 8081:8081 \ | |
rediscommander/redis-commander:latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# reference gd: https://github.com/docker-library/php/issues/225 | |
# pdo : https://github.com/docker-library/php/issues/62 | |
FROM php:7-fpm-alpine | |
# PHP extensions | |
RUN docker-php-ext-install pdo pdo_mysql | |
RUN apk add --no-cache freetype libpng libjpeg-turbo freetype-dev libpng-dev libjpeg-turbo-dev && \ | |
docker-php-ext-configure gd \ | |
--with-gd \ | |
--with-freetype-dir=/usr/include/ \ | |
--with-png-dir=/usr/include/ \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://stackoverflow.com/questions/41378918/cant-see-staring-installation-page-of-wordpress-docker-container-based-on-alpin | |
version: '2' | |
services: | |
web: | |
image: nginx:latest | |
ports: | |
- 80:80 | |
volumes: | |
- ./nginx_home/site.conf:/etc/nginx/conf.d/default.conf:ro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# test env only | |
# put this file to ./nginx_home | |
# consider use config generator by https://www.digitalocean.com/community/tools/nginx | |
user nginx; | |
worker_processes auto; | |
error_log /var/log/nginx/error.log notice; | |
pid /var/run/nginx.pid; | |