If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
I hereby claim:
To claim this, I am signing this object:
Authro: @ookangzheng
License: MIT
Modified: 2021/06/13
``` | |
// const zone = route53.HostedZone.fromLookup(this, 'Zone', { | |
// domainName: api.url | |
// }) | |
// const stagingZone = new route53.PublicHostedZone(this, `${environment.ENV}-HostedZone`, { | |
// zoneName: `${environment.ENV}-api.sygna.io` | |
// }) | |
// const customDomain = apigateway.DomainName.fromDomainNameAttributes(this, 'CustomDomain', { | |
// domainName: environment.apiDomainName, | |
// domainNameAliasTarget: environment.domainNameAliasTarget, |
// step 1 | |
const myRegexPatternSet = new wafv2.CfnRegexPatternSet( | |
this, | |
'sygna-api-tokyo-regex', | |
{ | |
description: 'Sygna Bridge Api Regex', | |
name: 'sygna-bridge-api-regex', | |
scope: 'REGIONAL', | |
regularExpressionList: ['^[a-zA-Z]{64}$', '.w[api_].w[key]w'], | |
}, |
``` | |
// .prettierrc.json | |
{ | |
"trailingComma": "all", | |
"tabWidth": 2, | |
"semi": false, | |
"singleQuote": true | |
} |
https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt
https://gitee.com/xinggsf/Adblock-Rule/raw/master/rule.txt
去广告和科学上网hosts源
1.yhosts: https://raw.githubusercontent.com/vokins/yhosts/master/hosts (国内维护者屏蔽国内网站广告)
2.大圣净化:https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts (主要针对国内视频网站)
3.1024_hosts:https://raw.githubusercontent.com/Goooler/1024_hosts/master/hosts (1024网站和澳门皇家赌场)
4.neoHosts: https://hosts.nfz.moe/full/hosts (国内屏蔽挖矿统计JS&360&百度&法轮功等)
runtime/cgo
_cgo_export.c:3:10: fatal error: 'stdlib.h' file not found
import React from 'react' | |
import { useQuery } from '@apollo/react-hooks' | |
import gql from 'graphql-tag' | |
import { Grid, Divider } from 'semantic-ui-react' | |
import PostCard from '../components/PostCard' | |
function Home() { | |
let posts = '' | |
const { loading, data } = useQuery(FETCH_POSTS_QUERY) |