Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
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.
import React from 'react'; | |
import { Route } from 'react-router-dom'; | |
export default class RouteTest extends React.PureComponent { | |
render() { | |
return ( | |
<div> | |
<Route path="/hello" render={() => (<div>Hello world!</div>)} /> | |
</div> |
export const fetchAddress = ( | |
fieldName: string, | |
): Function => | |
async (dispatch, getState) => { | |
const state = getState(); | |
const zipcode = selector(state, `${fieldName}.zipcode`); | |
const housenumber = selector(state, `${fieldName}.housenumber`); | |
if (!zipcode || !housenumber) { | |
return; |
blueprint: | |
name: Low battery level detection & notification for all battery sensors | |
description: Regularly test all sensors with 'battery' device-class for crossing | |
a certain battery level threshold and if so execute an action. | |
domain: automation | |
input: | |
threshold: | |
name: Battery warning level threshold | |
description: Battery sensors below threshold are assumed to be low-battery (as | |
well as binary battery sensors with value 'on'). |