Git 更換遠端伺服器倉庫網址URL
1.確認目前Git遠端伺服器網址: git remote -v
git remote -v
origin https://github.com/USERNAME/REPOSITORY.git (fetch)
origin https://github.com/USERNAME/REPOSITORY.git (push)
2.更換Git遠端伺服器位網址,使用:git remote set-url
Git 更換遠端伺服器倉庫網址URL
1.確認目前Git遠端伺服器網址: git remote -v
git remote -v
origin https://github.com/USERNAME/REPOSITORY.git (fetch)
origin https://github.com/USERNAME/REPOSITORY.git (push)
2.更換Git遠端伺服器位網址,使用:git remote set-url
1. upload site to ipfs | |
2. update dns TXT record _dnslink.example.com to `"dnslink=/ipfs/QmZ4tDuvesekSs4qM5ZBKpXiZGun7S2CYtEZRB3DYXkjGx`(replace hash) | |
3. upadate dns CNAME record for `@` set to `cloudflare-ipfs.com` | |
4. set to always use https on cloudflare settings | |
5. visit https://ipfs.io/ipns/example.com to see if dnslink works | |
5. visit example.com and content should be served from cloudflare ipfs |
// https://www.learningsomethingnew.com/how-to-make-your-svelte-3-cordova-app-work-on-old-phones-using-babel-7-and-rollup | |
// https://blog.az.sg/posts/svelte-and-ie11/ | |
module.exports = function (api) { | |
api.cache(true); | |
const presets = [ | |
[ | |
'@babel/preset-env', { | |
useBuiltIns: 'usage', | |
corejs: 3, |
{ | |
"extends": ["stylelint-config-recommended"], | |
"processors": ["stylelint-processor-ignore-front-matter"], | |
"rules": { | |
"at-rule-no-unknown": [true, { | |
"ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen"] | |
} ], | |
"declaration-block-trailing-semicolon": "always", | |
"no-descending-specificity": [true, { "ignore": ["selectors-within-list"] } ], | |
"no-invalid-double-slash-comments": true |
go run /usr/local/share/llhlstools/ll-hls-origin-example.go -dir /Library/WebServer/Documents -http :8000
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<d:devices xmlns:d="http://schemas.android.com/sdk/devices/3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<d:device> | |
<d:name>HUAWEI Mate 20 X</d:name> | |
<d:manufacturer>HUAWEI</d:manufacturer> | |
<d:meta/> | |
<d:hardware> | |
<d:screen> | |
<d:screen-size>large</d:screen-size> | |
<d:diagonal-length>7.20</d:diagonal-length> |
/* 依據內政部: | |
1. 身分證編碼原則 | |
2. 外來人口統一證號編碼原則(居留證) https://www.immigration.gov.tw/ct_cert.asp?xItem=1106801&ctNode=32601&mp=1 | |
身分證及居留證通用 | |
第一碼 縣市編碼原則: | |
A=10 台北市 J=18 新竹縣 S=26 高雄縣 | |
B=11 台中市 K=19 苗栗縣 T=27 屏東縣 | |
C=12 基隆市 L=20 台中縣 U=28 花蓮縣 | |
D=13 台南市 M=21 南投縣 V=29 台東縣 |
pragma solidity ^0.4.19; | |
contract ERC20Basic { | |
string public constant name = "ERC20Basic"; | |
string public constant symbol = "BSC"; | |
uint8 public constant decimals = 18; | |
event Approval(address indexed tokenOwner, address indexed spender, uint tokens); |
checkVersion = function () { | |
var agent = window.navigator.userAgent, | |
start = agent.indexOf( ‘OS ‘ ); | |
if( ( agent.indexOf( ‘iPhone’ ) > -1 || agent.indexOf( ‘iPad’ ) > -1 ) && start > -1 ){ | |
return window.Number( agent.substr( start + 3, 3 ).replace( ‘_’, ’.’ ) ); | |
} | |
return 0; | |
} |