Skip to content

Instantly share code, notes, and snippets.

View interjc's full-sized avatar
😂
Learning

Justin Chen interjc

😂
Learning
View GitHub Profile
@interjc
interjc / app.js
Created February 26, 2020 09:00 — forked from jeffijoe/app.js
Streaming uploads through Koa.
import Koa from 'koa'
import parse from './busboy'
import AWS from 'aws-sdk'
const app = new Koa()
const s3 = new AWS.S3({
params: { Bucket: 'myBucket' }
})
@interjc
interjc / ajax.js
Last active April 26, 2017 02:54
Axios packaging
/**
* import Vuejs
*/
import Vue from 'vue'
/**
* import axios
*
* Usage of Axios
* https://github.com/mzabriskie/axios
@interjc
interjc / mysql-docker.sh
Created April 18, 2017 13:50 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@interjc
interjc / vuePicker.vue
Created August 26, 2016 09:07
Vue Picker
<script>
import Pikaday from 'pikaday';
const today = new Date(),
i18n = {
previousMonth: '上月',
nextMonth: '下月',
months: [
'一月',
'二月',
@interjc
interjc / remove.vue
Created August 23, 2016 06:16
Use Vue Modal Component
<script>
import Vue from 'vue';
import Ajax from '../utils/ajax';
import Modal from './modal.vue';
let httpRes = {};
export default {
props: {
@interjc
interjc / ajax.js
Created July 18, 2016 07:04
vue-resource 二次封装
import Vue from 'vue';
import VueResource from 'vue-resource';
import utils from './utils';
import local from './local';
import toast from './toast';
Vue.use(VueResource);
// Usage
@interjc
interjc / node.js.md
Last active May 5, 2016 01:58
Node.js 基础入门
1、nodejs编写HelloWord,了解什么是nodejs,nodejs有什么特点

2、nodejs的模块怎么用,如何载入别的模块(require),如何给另一模块调用(module, module.exports),自己编写的模块与
   node_modules下模块有什么区别,载入顺序是怎样的;自己写一个编写nodejs的一个模块;

3、npm是什么,npm工具如何使用
   npm install 
   npm init 
   npm install xxx
@interjc
interjc / Promise XHR.markdown
Last active February 3, 2016 01:53
Promise XHR
@interjc
interjc / 0_reuse_code.js
Created January 20, 2016 02:16
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console