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).
| com.medigy.persist.reference.type.clincial.CPT.code | label | |
|---|---|---|
| 0003T | Cervicography | |
| 0008T | Upper gi endoscopy w/suture | |
| 0010T | Tb test, gamma interferon | |
| 0016T | Thermotx choroid vasc lesion | |
| 0017T | Photocoagulat macular drusen | |
| 0018T | Transcranial magnetic stimul | |
| 0019T | Extracorp shock wave tx, ms | |
| 0020T | Extracorp shock wave tx, ft | |
| 0021T | Fetal oximetry, trnsvag/cerv |
| source: http://www.markbrilman.nl/2011/08/howto-convert-a-pfx-to-a-seperate-key-crt-file/ | |
| `openssl pkcs12 -in [yourfile.pfx] -nocerts -out [keyfile-encrypted.key]` | |
| What this command does is extract the private key from the .pfx file. Once entered you need to type in the importpassword of the .pfx file. This is the password that you used to protect your keypair when you created your .pfx file. If you cannot remember it anymore you can just throw your .pfx file away, cause you won’t be able to import it again, anywhere!. Once you entered the import password OpenSSL requests you to type in another password, twice!. This new password will protect your .key file. | |
| Now let’s extract the certificate: | |
| `openssl pkcs12 -in [yourfile.pfx] -clcerts -nokeys -out [certificate.crt]` |
| --- CREATE SELF-SIGNED ECDSA CERTIFICATE WITH PRIVATE KEY INSIDE ---- | |
| 1. Open openssl.exe. | |
| 2. If you haven't chosen a curve, you can list them with this command: | |
| ecparam -list_curves | |
| I picked sect571r1 for this example. Use this to generate an EC private key if you don't have one already: |
| abandoned | |
| able | |
| absolute | |
| adorable | |
| adventurous | |
| academic | |
| acceptable | |
| acclaimed | |
| accomplished | |
| accurate |
| #!/bin/bash | |
| # taken from blog post: http://www.mokacoding.com/blog/automatic-xcode-versioning-with-git/ | |
| # Automatically sets version of target based on most recent tag in git | |
| # Automatically sets build number to number of commits | |
| # | |
| # Add script to build phase in xcode at the top of the chain named "set build number" | |
| # put this script in the root of the xcode project in a directory called scripts (good idea to version control this too) | |
| # call the script as $SRCROOT/scripts/set_build_number_by_git_commits.sh in xcode |
| Step 1. Make a copy of the spreadsheet in an empty directory. Rename the extension to .zip | |
| Step 2. Extract the zip file. | |
| Step 3. In the extracted contents, goto the folder \xl\worksheets\ | |
| Step 4. There should be one xml file per sheet? I editing "sheet1.xml" with NotePad++. From nearly the very end of the file, remove the tag that starts with: | |
| <sheetProtection | |
| My entire tag was as follows: | |
| <sheetProtection algorithmName="SHA-512" hashValue="ALciNBSIqRcjDiFbCuyWoGk4iOcC/ZRKnEjwEVi1skb6G5JbHhp+QVZ9+rlPVbGILOS7lYiCvJmR4Q7IuSphXA==" saltValue="8OVKXrG0VacLOLVztUpEYw==" spinCount="100000" sheet="1" objects="1" scenarios="1" selectLockedCells="1"/> | |
| Step 5. Save the file. Open the ZIP file in 7zip, find the same file, drag and drop, save, exit, rename the file back to (xlsx) and open |
| <!-- Example #1 - no styling --> | |
| Made with ❤ in Switzerland | |
| <!-- Example #2 - inline-styled ❤ --> | |
| Made with <span style="color: #e25555;">♥</span> in Switzerland | |
| Made with <span style="color: #e25555;">♥</span> in Switzerland | |
| <!-- Example #3 - CSS-style class for ❤ --> | |
| <style>.heart{color:#e25555;}</style> | |
| Made with <span class="heart">❤</span> in Switzerland |
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).