Skip to content

Instantly share code, notes, and snippets.

View afteroot's full-sized avatar
🎮
Focusing

Andrey afteroot

🎮
Focusing
  • afteroot.info
  • Kiev, Ukraine
  • 23:49 (UTC +03:00)
View GitHub Profile
@hygull
hygull / LICENSE KEY FOR SUBLIME TEXT 3 BUILD 3143.md
Last active December 16, 2023 19:30
LICENSE KEY FOR SUBLIME TEXT 3 BUILD 3143

STEPS

  • Click on Help menu

  • Select Enter License

  • Then paste given KEY given at bottom

  • Finally click on Use License

@dcommander
dcommander / gencert.cn
Last active March 11, 2023 03:30
Scripts/config file that I use to create X.509 certificates for TurboVNC testing
set -e
SUBJ="/C=US/ST=Texas/L=Austin/O=The VirtualGL Project/OU=Software Development/"
# Fake Server CA
openssl genrsa -out ca_server.key 2048
openssl req -new -newkey rsa:2048 -nodes -out ca_server.csr -keyout ca_server.key -subj "$SUBJ""CN=VeNCryptFakeServerCA"
openssl x509 -req -days 3650 -startdate -enddate -in ca_server.csr -signkey ca_server.key -out ca_server.crt
rm -f *.csr *.srl