Skip to content

Instantly share code, notes, and snippets.

@avi-antares
avi-antares / linode-user-create
Last active July 29, 2022 12:25
Linode User Create
## On the Linode Machine
````
ssh root@$LINODE_MACHINE_FQDN
# Create User
# USER=<username>
useradd -m -d /home/$USER -s /bin/bash $USER
@avi-antares
avi-antares / Makefile
Created May 26, 2022 08:05 — forked from dmitriid/Makefile
Makefile: webpack, babel, stylus, eslint
### Makefile to be used when compiling assets for Event Manager
### Based on ideas from https://github.com/acdlite/the-react-way/blob/master/Makefile
###
### Requirements/assumptions of this Makefile:
### JS
### - webpack (include json and css loaders to webpack cofig just in case)
### - babel
### - eslint (eslint-plugin-react if you want more lints of your react code)
### - eslint-watch (broken until 2.0.0: https://github.com/rizowski/eslint-watch/issues/8)
### CSS