https://www.digitalocean.com/community/tutorials/how-to-add-and-delete-users-on-ubuntu-16-04
# Create new user with sudo
adduser develop
usermod -aG sudo develop
| #!/bin/bash | |
| ## Read and edit this file. | |
| ## Run it once as a root. | |
| FILE="/Library/Scripts/ramdisk.sh" | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "You must be a root user" 2>&1 | |
| exit 1 |
https://www.digitalocean.com/community/tutorials/how-to-add-and-delete-users-on-ubuntu-16-04
# Create new user with sudo
adduser develop
usermod -aG sudo develop
| import { createStore, applyMiddleware } from 'redux' | |
| import app from './reducers' | |
| import createSagaMiddleware from 'redux-saga' | |
| import dataSaga from './saga' | |
| const sagaMiddleware = createSagaMiddleware() | |
| export default function configureStore() { | |
| const store = createStore(app, applyMiddleware(sagaMiddleware)) |
| import R from 'ramda'; | |
| const items = [ | |
| {id: 1, name: 'Al', country: 'AA'}, | |
| {id: 2, name: 'Connie', country: 'BB'}, | |
| {id: 3, name: 'Doug', country: 'CC'}, | |
| {id: 4, name: 'Zen', country: 'BB'}, | |
| {id: 5, name: 'DatGGboi', country: 'AA'}, | |
| {id: 6, name: 'Connie', country: 'AA'}, | |
| ]; |
| /* Sometimes it's pretty easy to run ito troubles with React ES6 components. | |
| Consider the following code: */ | |
| class EventStub extends Component { | |
| componentDidMount() { | |
| window.addEventListener('resize', this.onResize.bind(this)); //notice .bind | |
| } | |
| componentWillUnmount() { | |
| window.removeEventListener('resize', this.onResize.bind(this)); |
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.