This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| // >>> DatHost Competitive Config 0.1 <<< // | |
| // Reset from Practice to Competitive | |
| sv_cheats "false" // Disable cheats | |
| mp_ct_default_grenades "" // Spawn CTs without grenades | |
| mp_t_default_grenades "" // Spawn Ts without grenades | |
| sv_showimpacts "0" // Don't show bullet impacts | |
| sv_falldamage_scale "1" // Enable fall damage | |
| sv_full_alltalk "0" // Disable voice chat with anyone |
| @ECHO OFF | |
| if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK | |
| if NOT EXIST Private goto MDPrivate | |
| :CONFIRM | |
| echo Are you sure to lock this folder? (Y/N) | |
| set/p "cho=>" | |
| if %cho%==Y goto LOCK | |
| if %cho%==y goto LOCK | |
| if %cho%==n goto END | |
| if %cho%==N goto END |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| <?php | |
| // multiple recipients | |
| $to = '[email protected]' . ', '; // note the comma | |
| $to .= '[email protected]'; | |
| // subject | |
| $subject = 'Birthday Reminders for August'; | |
| // message | |
| $message = ' |
| @-webkit-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } | |
| 100% { background-color: #ccffff; } } | |
| @-moz-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } | |
| 100% { background-color: #ccffff; } } | |
| @-ms-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } |