This tutorial has been updated to include additional steps for linking to GitHub pages.
$ npm install -g hexo-cli
// check version | |
node -v || node --version | |
// list locally installed versions of node | |
nvm ls | |
// list remove available versions of node | |
nvm ls-remote | |
// install specific version of node |
This tutorial has been updated to include additional steps for linking to GitHub pages.
$ npm install -g hexo-cli
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
# | |
# Building an MVP? | |
# Need a quick database you can set up in seconds? | |
# What about JSON? | |
# | |
# by @levelsio (with help from @marckohlbrugge, @oskarth, @maxdeviant and @kumailht) | |
# JS | |
db=[] | |
fs=require('fs') |
(* | |
Open in VS Code | |
To use: | |
* Drag Open In VS Code to the toolbar of any finder | |
window to add it to the toolbar | |
*) | |
on run | |
tell application "Finder" | |
if selection is {} then |
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
// MM/DD/YYYY, M/D/YYYY | |
const DATE_REGEX = new RegExp(/^(\d{2}|\d{1})\/(\d{2}|\d{1})\/\d{4}$/); | |
export { DATE_REGEX }; |
{"lastUpload":"2020-12-16T17:08:01.803Z","extensionVersion":"v3.4.3"} |
/* cssTable */ | |
.c-cssTable | |
display: table | |
+has(thead) | |
display: table-header-group | |
+has(tbody) | |
display: table-row-group |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="following https://medium.com/@natelapinski/learning-observables-part-1-arrays-14480816eb61"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> |