go run /usr/local/share/llhlstools/ll-hls-origin-example.go -dir /Library/WebServer/Documents -http :8000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 依據內政部: | |
| 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 台東縣 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; | |
| } |
extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"Thx to crxviewer for the magic download URL.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Bp(a, b) { | |
| var c = b.split("."); | |
| b = Number(c[0]) || 0; | |
| for (var d = [], e = 0, f = 0; f < a.length; f++) { | |
| var h = a.charCodeAt(f); | |
| 128 > h ? d[e++] = h : (2048 > h ? d[e++] = h >> 6 | 192 : (55296 == (h & 64512) && f + 1 < a.length && 56320 == (a.charCodeAt(f + 1) & 64512) ? (h = 65536 + ((h & 1023) << 10) + (a.charCodeAt(++f) & 1023), d[e++] = h >> 18 | 240, d[e++] = h >> 12 & 63 | 128) : d[e++] = h >> 12 | 224, d[e++] = h >> 6 & 63 | 128), d[e++] = h & 63 | 128) | |
| } | |
| a = b; | |
| for (e = 0; e < d.length; e++) a += d[e], a = Ap(a, "+-a^+6"); | |
| a = Ap(a, "+-3^+b+-f"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |