- Create CSR and Private Key easily
- Create a PFX from cert and private key
- Command
openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt
- https://www.ssl.com/how-to/create-a-pfx-p12-certificate-file-using-openssl/
- Command
- Check the status of a certificate
- Check url cert status before domain name propogates
- Command
curl -v <urlyouarewaitingtogetpropogated> --resolve <urlyouarewaitingtogetpropogated>:443:<ipofserver>
- Command
- The above can be used with localhost as well
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
toggled: false, | |
actions: { | |
toggle() { | |
let val = this.toggleProperty('toggled'); | |
this.get('onToggle')(val); |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
import { find, click, triggerEvent } from 'ember-native-dom-helpers'; | |
import waitFor from 'myapp/tests/helpers/wait-for'; | |
export default async function clickDraw({ x, y, debug }) { | |
let element = find('.leaflet-container'); | |
let rect = element.getBoundingClientRect(); | |
let baseX = rect.left + 1; | |
let baseY = rect.top + 1; | |
let clientX = baseX + x; | |
let clientY = baseY + y; |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: '', | |
didInsertElement() { | |
let onInsert = this.get('onInsert'); | |
if (onInsert) { | |
onInsert(); | |
} |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'span', | |
classNames: ['template-tag'], | |
click() { | |
let tag = this.get('tag'); | |
let promise = this.get('onClick')(tag); |