Skip to content

Instantly share code, notes, and snippets.

@justforuse
justforuse / express.md
Last active February 17, 2020 14:40
Express cross origin headers
app.all('*', function(req, res, next) {
  res.header("Access-Control-Allow-Origin", "*");
  res.header("Access-Control-Allow-Headers", "X-Requested-With");
  res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
  res.header("X-Powered-By",' 3.2.1')
  res.header("Content-Type", "application/json;charset=utf-8");
  next();
});
@justforuse
justforuse / list.md
Created October 9, 2019 06:42
npm registries
npm -----  https://registry.npmjs.org/
yarn ----- https://registry.yarnpkg.com
cnpm ----  http://r.cnpmjs.org/
taobao --  https://registry.npm.taobao.org/
nj ------  https://registry.nodejitsu.com/
skimdb -- https://skimdb.npmjs.com/registry
@justforuse
justforuse / Terminal proxy(http & socks).md
Last active September 29, 2019 15:38
How to set terminal proxy
export http_proxy="http://127.0.0.1:1080"
export https_proxy="http://127.0.0.1:1080"


export http_proxy="socks5://127.0.0.1:1080"
export https_proxy="socks5://127.0.0.1:1080"


export ALL_PROXY=socks5://127.0.0.1:1080
@justforuse
justforuse / generate-certificates.sh
Created August 1, 2019 14:37
Generate self-signed ssl certificates.
#!/bin/bash
# set values for certificate DNs
# note: CN is set to different values in the sections below
ORG="000_Test_Certificates"
# set values that the commands will share
VALID_DAYS=360
CA_KEY=ca.key
CA_CERT=ca.crt
@justforuse
justforuse / gist:a5b99e7b2ec94f84a521eac5cceecd49
Last active October 10, 2018 06:24
Element table render-header demo
<template>
<el-table>
<el-table-column
v-for='(column, index) in columns'
:key='index'
:label="column"
:render-header="renderHeader">
</el-table-column>
</el-table>
@justforuse
justforuse / show-all-spaces.css
Created January 11, 2017 10:09
Angular UI-Grid display multiple spaces as a space
.ui-grid-cell-contents {
white-space: pre !important;
}