I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| @echo off | |
| cscript PinItem.vbs /taskbar /item:"%ProgramData%\Microsoft\Windows\Start Menu\Programs\Mozilla Firefox\Mozilla Firefox.lnk" | |
| cscript PinItem.vbs /taskbar /item:"%ProgramData%\Microsoft\Windows\Start Menu\Programs\Microsoft Office\Microsoft Office Word 2007.lnk" | |
| cscript PinItem.vbs /taskbar /item:"%ProgramData%\Microsoft\Windows\Start Menu\Programs\Microsoft Office\Microsoft Office Excel 2007.lnk" | |
| cscript PinItem.vbs /taskbar /item:"%ProgramData%\Microsoft\Windows\Start Menu\Programs\Microsoft Office\Microsoft Office PowerPoint 2007.lnk" |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| /* | |
| * Run on https://www.humblebundle.com/home/library | |
| * Global variable `gamekeys` is available on the Library page | |
| * | |
| */ | |
| Promise.all(gamekeys.map(key => { | |
| return new Promise((resolve, reject) => { | |
| $.ajax({ | |
| url: `https://www.humblebundle.com/api/v1/order/${key}?all_tpkds=true` | |
| }).done(data => resolve(data)) |
Sometimes you want to figure out what path your code takes when getting executed. This may be helpful for investigating inconsistent behaviour between function calls or finding where exactly in the bundled/minified code your function is located
// Logs the current stack trace of the code, also logs any provided parameters
/*
* YOUR CODE HERE
*/
console.trace(var1, var2);