I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # This script downloads the official Cursor Agent installer, programmatically | |
| # modifies it for Android/Termux compatibility, and then executes it. | |
| # It uses `sed` and temporary files to inject logic, making it resilient to | |
| # version changes in the official installer. | |
| # --- Helper Functions --- | |
| step() { echo -e "\033[0;34m▸\033[0m $1"; } |
| Title Mininum Alpha | |
| Author Jere Majava | |
| ======== | |
| OBJECTS | |
| ======== | |
| background _ | |
| darkblue | |
| player |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| var svg = document.getElementById('graph'), | |
| xml = new XMLSerializer().serializeToString(svg), | |
| data = "data:image/svg+xml;base64," + btoa(xml), | |
| img = new Image() | |
| img.setAttribute('src', data) | |
| document.body.appendChild(img) |
| package main | |
| import ( | |
| "math" | |
| ) | |
| const ( | |
| StatusSpriteOverflow = iota | |
| StatusSprite0Hit |
| var soundex = function (s) { | |
| var a = s.toLowerCase().split(''), | |
| f = a.shift(), | |
| r = '', | |
| codes = { | |
| a: '', e: '', i: '', o: '', u: '', | |
| b: 1, f: 1, p: 1, v: 1, | |
| c: 2, g: 2, j: 2, k: 2, q: 2, s: 2, x: 2, z: 2, | |
| d: 3, t: 3, | |
| l: 4, |