Skip to content

Instantly share code, notes, and snippets.

View black-black-cat's full-sized avatar

bcatb black-black-cat

View GitHub Profile
@black-black-cat
black-black-cat / formatCurrTime.js
Last active March 9, 2020 02:01
format time, format duration
const padNum = require('padNum')
const formatTime = date => {
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
const hour = date.getHours()
const minute = date.getMinutes()
const second = date.getSeconds()
@black-black-cat
black-black-cat / findStringInFiles.js
Last active September 19, 2018 06:10
递归查找文本内容
#!/usr/bin/env node
var path = require("path");
var fs = require("fs");
var filePath = path.resolve(__dirname, '../../src/') // process.argv[2];
var lookingForString = 'debugger' //process.argv[3];
recursiveReadFile(filePath);
function recursiveReadFile (fileName) {
// https://www.kancloud.cn/kancloud/promises-book/44249
function sequenceTasks(tasks) {
function recordValue(results, value) {
results.push(value);
return results;
}
var pushValue = recordValue.bind(null, []);
return tasks.reduce(function (promise, task) {
return promise.then(task).then(pushValue);
}, Promise.resolve());
registry=https://registry.npm.taobao.org/
phantomjs_cdnurl=https://npm.taobao.org/mirrors/phantomjs/
sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
electron_mirror=https://npm.taobao.org/mirrors/electron/
@black-black-cat
black-black-cat / camel_kebab.js
Created May 9, 2018 08:55
toCamel and toKebab
function toCamel (s) { return s.replace(/-(\w)/g, (m, c) => c.toUpperCase()) }
function toKebab (s) { return s.replace(/([A-Z])(?=[^A-Z]+?)|([A-Z]+?)((?=[A-Z][^A-Z])|$)/g, (m, c, cc) => '-' + (c || cc||'').toLowerCase()) }
function PubSub() {
return Object.assign(Object.create(_pubSubBase), {
_id: 0,
_subSignals: {},
_subCallbacks: {}
})
}
function bind(obj, fn) {
return function() {
@black-black-cat
black-black-cat / settings.json
Created April 1, 2018 15:29
vscode eslint auto fix
{
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
{
"language": "vue",
"autoFix": true
},
"html",
"vue"
border-width: 0 0 1px
border-bottom-style: solid
border-bottom-color: #c8c7cc
/* :root.retina */
border-image-source: url("data:image/svg+xml;charset=utf-8,<svg height='1' width='1' xmlns='http://www.w3.org/2000/svg'><rect height='.5' width='1' y='.5' fill='%23c8c7cc'/></svg>")
border-image-slice: 0 0 1
let psdSize = 750; //设计稿宽度
let RemRatio = 16; //REM 换算比值
let baseFontSize = psdSize / RemRatio; // 基准字体大小,单位px
var templateFunction = function (data) {
var common = '.icon {display: inline-block;}';
var perSprite = data.sprites.map(function (sprite) {
return '.imgN {background-image: url(I); width: Wpx; height: Hpx; background-position: Xpx Ypx; }'
.replace(/px/g, 'rem')
.replace('I', sprite.image)
@black-black-cat
black-black-cat / planet_unicode.js
Last active December 28, 2017 02:40
太阳系九大行星的unicode,紧接下来就是星座符号
var str = ''
var FP_CODE = 0x263f
var FS_CODE = 0X2648
for (var i = 0; i < 9; i++) { str += String.fromCharCode( FP_CODE + i ) } // --> "☿♀♁♂♃♄♅♆♇"
for (i = 0; i < 12; i++) { str += String.fromCharCode( FS_CODE + i ) } // --> "☿♀♁♂♃♄♅♆♇♈♉♊♋♌♍♎♏♐♑♒♓"