- go to chrome://settings/certificates
- tab "authorities"
- button "import"
- choose "ca.crt"
- trust for identify websites
- go to about:preferences#privacy
| { | |
| "name": "preact single html", | |
| "version": "1.0.0", | |
| "description": "", | |
| "scripts": { | |
| "build-single": "preact build --no-sw --no-esm -c preact.single-config.js --dest single && sh remove-link-stylesheet.sh", | |
| }, | |
| "keywords": [], | |
| "author": "", | |
| "license": "ISC" |
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/SSL-on-amazon-linux-2.html#install
sudo ./install-certbot.sh| Run | |
| docker build -f dockfile.fail . | |
| it will fail to build. Error: | |
| make: /bin/sh: Operation not permitted | |
| make: /bin/sh: Operation not permitted | |
| make: /bin/sed: Operation not permitted |
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
I hereby claim:
To claim this, I am signing this object:
| curl -u "user" "https://api.github.com/orgs/company/repos?per_page=100" | tee result.json | |
| curl -u "user" "https://api.github.com/orgs/company/repos?per_page=100&page=2" | tee result2.json | |
| cat result.json result2.json | jq -s add > all.json | |
| cat all.json | jq '.[]|{"name":.name, "private":.private, "html_url": .html_url, "description": .description, "created_at": .created_at, "updated_at": .updated_at, "pushed_at": .pushed_at, "homepage": .homepage, "stargazers_count": .stargazers_count, "watchers_count": .watchers_count, "language": .language, "archived": .archived, "forks": .forks, "open_issues": .open_issues, "watchers": .watchers}' > filtrado.json | |
| cat filtrado.json | jq -s . | jq -r '(map(keys) | add | unique) as $cols | map(. as $row | $cols | map($row[.])) as $rows | $cols, $rows[] | @csv' > filtrado.csv |
| #!/usr/bin/env node | |
| require('https').get(`https://crt.sh/?q=%.${process.argv[2]}&output=json`, resp => { | |
| let data = '' | |
| resp.on('data', chunk => {data += chunk;}); | |
| resp.on('end', () => { | |
| const json = JSON.parse('['+data.split('}{').join('},{')+']'); | |
| const domains = json.map( j => j.name_value ).sort().filter( (i,p,a) => !p || i != a[p-1] ) | |
| domains.forEach( d => { |
| #!/usr/bin/env node | |
| require('https').get(`https://crt.sh/?q=%.${procces.argv[2]}&output=json`, resp => { | |
| let data = '' | |
| resp.on('data', chunk => {data += chunk;}); | |
| resp.on('end', () => { | |
| const json = JSON.parse('['+data.split('}{').join('},{')+']'); | |
| const domains = json.map( j => j.name_value ).sort().filter( (i,p,a) => !p || i != a[p-1] ) | |
| domains.forEach( d => { |