Skip to content

Instantly share code, notes, and snippets.

View allenfantasy's full-sized avatar
😸
Feeding my cat

Zeqiu Wu allenfantasy

😸
Feeding my cat
View GitHub Profile
@allenfantasy
allenfantasy / .tmux.conf
Last active December 28, 2015 22:49
tmux conf
set -g default-command /bin/zsh set -g default-shell /bin/zsh
set-option -g mouse-select-pane on
set-option -g mouse-select-window on
set-window-option -g mode-mouse on
audio {
display: none;
}
#box {
width: 300px;
background-color: #f8f8f8;
padding: 10px;
}
.details {
height: 0px;
overflow: hidden;
}
.close {
.flexcroll{ height:200px;
overflow:auto;
}
.flexcroll{
scrollbar-face-color: #367CD2;
scrollbar-shadow-color: #FFFFFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #FFFFFF;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-track-color: #FFFFFF;
@allenfantasy
allenfantasy / ajax.js
Created January 22, 2016 02:59
A naive ajax function
// @credit to http://stackoverflow.com/questions/8567114/how-to-make-an-ajax-call-without-jquery
function ajax(options) {
if (!options) {
throw new Error('Ajax: options is missing');
}
if (!options.url) {
throw new Error('Ajax: options.url is missing');
}
var async = options.async === undefined ? true : (!!options.async);
var type = options.type || 'GET';
@allenfantasy
allenfantasy / regex.js
Last active May 2, 2016 13:58
regex.js
/***** Fixed Phone Number Regex *****/
/*
Fixed phone numbers' format:
(district number)-(phone number)
*/
var phoneRegex = /^(0[\d]{2,3}-)?[\d]{7,8}$/;
phoneRegex.test("020-82376643"); //=> true
phoneRegex.test("0755-6633868"); //=> true
@allenfantasy
allenfantasy / extends.js
Last active June 2, 2016 15:42 — forked from hayeah/gist:9757971
Implementation of inheritance in CoffeeScript
var __hasProp = {}.hasOwnProperty;
var __extends = function(child, parent) {
for (var key in parent) {
if (__hasProp.call(parent, key)) child[key] = parent[key];
}
function ctor() {
// why set the prototype's constructor to child?
this.constructor = child;
}
ctor.prototype = parent.prototype;
@allenfantasy
allenfantasy / sortByArr.js
Last active November 10, 2017 02:12
sort by another array's order
// arr = [12,3,7]
// arr_source = [{id:1, name:'a'}, {id:2, name:'b'}, ..., {id:100, name:'xxxx'}]
// sort arr_source based on arr:
// [{id: 12, name: 'xx'}, {id: 3, name: 'xxx'}, {id: 7, name: 'xxx'}, …., {id: 100, name: 'xxxx'}]
const sortByArr = (targetArr, orderArr) => {
let ret = orderArr.slice(0)
targetArr.forEach((item,index) => {
let orderIndex = orderArr.indexOf(item.id)
if (orderIndex > -1) {
@allenfantasy
allenfantasy / basic.js
Last active January 29, 2018 02:06
Observable learning snippets. Inspired and referenced from "30天精通RxJS": https://ithelp.ithome.com.tw/articles/10187005
//=== Using Observable.create() ===//
import Rx from 'rxjs/Rx'
let observable = Rx.Observable
.create(observer => {
observer.next('Jerry')
observer.next('Anna')
})
// OR:
// let observable = Rx.Observable.of('Jerry', 'Anna')
// let observable = Rx.Observable.from(['Jerry', 'Anna']) // **any enumerables**
@allenfantasy
allenfantasy / item.vue
Last active May 17, 2018 02:18
Performance difference between render and non-render for vue list component
<template>
<div class="item">{{ number }}</div>
</template>
<script>
export default {
name: 'TestItem',
props: {
number: Number
}