First if you have not already install the IIS role on your windows system.
Open IIS and choose the top level folder(your server) then choose Server Certificates

Now choose Create Self Signed Certificate from the far right

friendly name should be the DNS name of the device you need to create the pem file for, then choose ok.
Now open the certificate manager on your system, to do this run mmc

File > Add/Remove snap-in
Choose Certificates > Add > Computer account > Next > Local computer > Finish > OK

Now expand the certificates folder you create the cert in, by default this is Personal > Certificates.

right click on the certificate you created and choose all tasks > export > next > No, > next > Base-64 > next >

pick a file name
filename.cer
Now, you can rename the .cer file to .pem and that's it you're done.

This can be one of the most frustrating errors because your UNC path may work from some computers but not others. If you are receiving this error the following steps should solve the issue.
Go to Control Panel
- change the view by to small icons
- select "User Accounts"
- select "Manage your credentials"
- select "Windows Credentials"
- then "Add a Windows Credential"

Now enter your UNC server and share path for example: \\UNCServer\SharedFolder
Username and password, then click OK.
Now you should be able to access your UNC share from the windows explorer shell.
Concept:
Staggered animation to create a slideshow from pure CSS and HTML5
Demo
The CSS:
div {
width: 100px;
height: 100px;
background: red;
position: relative;
-webkit-animation: mymove 5s infinite; /* Safari 4.0 - 8.0 */
-webkit-animation-delay: 2s; /* Safari 4.0 - 8.0 */
animation: mymove 5s infinite;
animation-delay: 2s;
}
div#two {
animation: mymove 5s infinite;
animation-delay: 5s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
from {left: 0px;}
to {left: 200px;}
}
@keyframes mymove {
from {left: 0px;}
to {left: 200px;}
}
And the HTML:
<div id="one"></div>
<div id="two"></div>
In some cases using the HTTP Response Headers option to manually set the server still shows Microsoft IIS server headers, for example:

Open configuration editor

then go to section system.webServer/security/requestFiltering and update the removeServerHeader to True

Visual Studio Code is a great stand alone code editor that is free from Microsoft. However, it does have a few annoying functions out of the box. The worst of them is the constant tool tips which can get in the way of code and in some cases open browser windows as you accidently click on these tool tips.
Here is how you can remove these tool tips
In all methods you will need to open the User Settings editor. To do this:
- Click File > Preferences > Settings
- Now expand "Text Editor"
- Click on "Suggestions"
- Click "Edit in Settings.json"
Now you will have the "{} User Settings" tab open. The pane on the left is the defaults and the pane on the right is where you can edit these settings. You will need to place the updates inside of the "{ code here, }" then click save.
Method 1, update the suggestion delay so you can still have tips but they don't appear unless you hover over the element for some time.
"editor.quickSuggestionsDelay": 1000,
Method 2, disable the hover function. You will still be able to use CtrlR + K and CtrlR + I as needed.
"editor.hover.enabled": false,
Method 3, disable completely. You don't want or need these tips and you want them to go away forever.
"editor.parameterHints": false,
That's it, your done!