Skip to content

Instantly share code, notes, and snippets.

View justintien's full-sized avatar
🍞
Jiapan

Justin Tien (Yi-Ming Tien) justintien

🍞
Jiapan
View GitHub Profile
{
// http://eslint.org/docs/rules/
"ecmaFeatures": {
"arrowFunctions": false, // enable arrow functions
"binaryLiterals": false, // enable binary literals
"blockBindings": false, // enable let and const (aka block bindings)
"classes": false, // enable classes
"defaultParams": false, // enable default function parameters
"destructuring": false, // enable destructuring
@justintien
justintien / fluxpurejs.js
Created January 21, 2016 17:02 — forked from changtimwu/fluxpurejs.js
gasolin demonstrates flux concept in only 50 lines of javascript
/* original link http://blog.gasolin.idv.tw/2014/11/flux-javascript.html */
// Renderer.js
var ClickRenderer = {
init: function s_init(element, Store) {
this.element = element;
this.store = Store;
window.addEventListener('render_view1', this);
},
handleEvent: s_handleEvent(evt) {
<?php
namespace Pokus;
class Exception extends \Exception
{
}
function tttt($string)
{
try {
@justintien
justintien / check_docker_container.sh
Created March 3, 2017 00:40 — forked from ekristen/check_docker_container.sh
Bash Script for Nagios to Check Status of Docker Container
#!/bin/bash
# Author: Erik Kristensen
# Email: [email protected]
# License: MIT
# Nagios Usage: check_nrpe!check_docker_container!_container_id_
# Usage: ./check_docker_container.sh _container_id_
#
# The script checks if a container is running.
# OK - running

Web Development with Laravel 5

目標

如何在開發的過程中加入測試。

  1. Model
  2. Repository
  3. Controller
  4. Auth
@justintien
justintien / _README.md
Created May 8, 2017 02:17 — forked from up9cloud/_README.md
Laravel nginx reverse proxy conf exmaple for php-fpm on another vm

nginx on vm1

docker run \
-d \
--restart=always \
--p 80:80 \
--v /path/to/default.conf:/etc/nginx/conf.d/default.conf \
nginx:1-alpine
@justintien
justintien / _README.md
Created May 8, 2017 02:17 — forked from up9cloud/_README.md
Laravel nginx reverse proxy conf exmaple for php-fpm on another vm

nginx on vm1

docker run \
-d \
--restart=always \
--p 80:80 \
--v /path/to/default.conf:/etc/nginx/conf.d/default.conf \
nginx:1-alpine
@justintien
justintien / aws-ec2-hd-resize-note.md
Created May 19, 2017 02:32
aws-ec2-hd-resize-note.md

AWS EC2 硬碟空間擴大 Linux

問題:如何調整 EBS Boot的 EC2雲主機的Root Disk大小

環境:CentOS 6.X x86_64

目標:Root Disk 容量由 30G 延展到 40G

Amazon AWS Console 部分

@justintien
justintien / aws-ec2-clone-IAM.md
Created May 19, 2017 02:33
aws-ec2-clone-IAM.md

AWS EC2 複製一台新的主機

建立印象檔,類似Ghost

AWS Console > Instances > 選擇要複製的主機 按右鍵 > Create Image >填入相關資訊

  • Image name :要儲存的映像檔名稱,好記憶的名稱即可
  • Image description:填寫該映像檔的敘述
  • No reboot:不重新開機
  • Instance Volumes:是否要變更儲存空間大小 (EC2的硬碟大小)
@justintien
justintien / aws-ec2-ami-ubuntu-16.04-and-docker.md
Created May 19, 2017 02:44
aws-ec2-ami-ubuntu-16.04(LTS)

find ami: ami-a163b4cc

# see https://docs.docker.com/engine/installation/linux/ubuntu/
sudo apt-get update
sudo apt-get install -y \
	apt-transport-https \
	ca-certificates \
	curl \
	software-properties-common