$ docker
CREATE TABLE job_grades ( | |
grade CHAR(1), | |
lowest_sal NUMBER(8,2) NOT NULL, | |
highest_sal NUMBER(8,2) NOT NULL | |
); | |
ALTER TABLE job_grades | |
ADD CONSTRAINT jobgrades_grade_pk PRIMARY KEY (grade); | |
INSERT INTO job_grades VALUES ('A', 1000, 2999); |
<template> | |
<div :id="uppyId" > | |
<button | |
:id="buttonInstanceId" | |
:class="['uppy-container', dashboardInstanceId, {'btn btn-primary': modalButton}]" | |
type="button" | |
class="" >Select File{{ multipleFiles ? 's' : '' }}</button> | |
</div> | |
</template> |
<template> | |
<div :id="uppyId"> | |
<div class="uppyFileInput" /> | |
</div> | |
</template> | |
<script> | |
import uppy from "@uppy/core"; | |
import XHRUpload from "@uppy/xhr-upload"; | |
import FileInput from "@uppy/file-input"; |
{"lastUpload":"2019-09-12T19:38:19.349Z","extensionVersion":"v3.4.2"} |
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
this essay has been updated on my personal site, together with a followup on how to get started
If there's a golden rule, it's this one, so I put it first. All the other rules are more or less elaborations of this rule #1.
You already know that you will never be done learning. But most people "learn in private", and lurk. They consume content without creating any themselves. Again, that's fine, but we're here to talk about being in the top quintile. What you do here is to have a habit of creating learning exhaust. Write blogs and tutorials and cheatsheets. Speak at meetups and conferences. Ask and answer things on Stackoverflow or Reddit. (Avoid the walled gardens like Slack and Discourse, they're not public). Make Youtube videos or Twitch streams. Start a newsletter. Draw cartoons (people loooove cartoons!). Whatever your thing is, make the thing you wish you had found when you were learni