Skip to content

Instantly share code, notes, and snippets.

View MichaelWashburnJr's full-sized avatar

Michael Washburn Jr MichaelWashburnJr

View GitHub Profile
@MichaelWashburnJr
MichaelWashburnJr / App.js
Last active December 10, 2019 13:20
react-native-push-notification-ios example
iump
import { View } from 'react-native';
import NotificationProvider from './NotificationProvider';
const App = () => {
return (
<View>
<NotificationProvider />
{/* Include NotificationProvider with the rest of your app */}
</View>
@MichaelWashburnJr
MichaelWashburnJr / arrowFunctions.js
Created November 29, 2017 16:25
Embrace arrow functions
//old function
function test() {
return 1 + 2;
}
const test = () => {
return 1 + 2;
}
./letsencrypt-auto certonly --renew-by-default -d domain1.com,domain2.com