Documentation: https://letsencrypt.readthedocs.org/en/latest/
Source on Github: https://github.com/letsencrypt/letsencrypt
Quick start guide: https://community.letsencrypt.org/t/quick-start-guide/1631
| // ==UserScript== | |
| // @name Remove Twitter Blue Promotions | |
| // @namespace https://d23.dev/ | |
| // @version 1.1 | |
| // @description Removes the "Get Verified" box on the Home page and the "Verified" button on the sidebar | |
| // @author angeld23 | |
| // @match *://*.twitter.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
| // @grant none | |
| // ==/UserScript== |
| # To listen for remote connections, change this to 0.0.0.0 or your actual IP on the desired interface. | |
| ip=0.0.0.0 | |
| # This is the port the server will listen for tracking packets on. | |
| port=11573 |
| curl --location --request POST 'https://YOUR_AUTH0_DOMAIN/oauth/token' \ | |
| --header 'Content-Type: application/x-www-form-urlencoded' \ | |
| --data-urlencode 'client_id=YOUR_AUTH0_CLIENT_ID' \ | |
| --data-urlencode 'username=YOUR_USERNAME' \ | |
| --data-urlencode 'password=YOUR_PASSWORD' \ | |
| --data-urlencode 'grant_type=password' \ | |
| --data-urlencode 'scope=openid' |
| import sys, os, requests, json, time, math | |
| if len(sys.argv) < 2: | |
| print("Tags not specified") | |
| sys.exit(1) | |
| elif sys.argv[1].count(" ") > 1: | |
| print("Maximum of 2 arguments") | |
| sys.exit(1) | |
| tags = sys.argv[1] |
| According to all known laws | |
| of aviation, | |
| there is no way a bee | |
| should be able to fly. | |
| Its wings are too small to get | |
| its fat little body off the ground. |
Documentation: https://letsencrypt.readthedocs.org/en/latest/
Source on Github: https://github.com/letsencrypt/letsencrypt
Quick start guide: https://community.letsencrypt.org/t/quick-start-guide/1631