| emoji | unicode | emoji | unicode |
|---|---|---|---|
✒️ :black_nib: |
\U00002712 | ✔️ :heavy_check_mark: |
\U00002714 |
✖️ :heavy_multiplication_x: |
\U00002716 | :bangbang: |
\U0000203C |
✳️ :eight_spoked_asterisk: |
\U00002733 | ✨ :sparkles: |
\U00002728 |
❕ :grey_exclamation: |
\U00002755 | ✴️ :eight_pointed_black_star: |
\U00002734 |
❄️ :snowflake: |
\U00002744 | ❇️ :sparkle: |
\U00002747 |
❌ :x: |
\U0000274c | ❎ :negative_squared_cross_mark: |
\U0000274e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| set /p domain="Enter Domain: " | |
| set OPENSSL_CONF=../conf/openssl.cnf | |
| if not exist .\%domain% mkdir .\%domain% | |
| ..\bin\openssl req -config cert.conf -new -sha256 -newkey rsa:2048 -nodes -keyout %domain%\server.key -x509 -days 3650 -out %domain%\server.crt | |
| echo. | |
| echo ----- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ req ] | |
| default_bits = 2048 | |
| default_keyfile = server-key.pem | |
| distinguished_name = subject | |
| req_extensions = req_ext | |
| x509_extensions = x509_ext | |
| string_mask = utf8only | |
| [ subject ] |
In February 2017, Google announced the availability GPU-based VMs. I spun up a few of these instances, and ran some benchmarks. Along the way, I wrote down the steps taken to provision these VM instances, and install relevant drivers.
Update April 2019: Updated instructions to use instances with the Tesla T4 GPUs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // initialize variables | |
| $pswd = ""; | |
| $code = ""; | |
| $error = ""; | |
| $valid = true; | |
| $color = "#FF0000"; | |
| // if form was submit |