Install Development Tools
Install Xcode Development Tools
xcode-select --install
Setup the Xcode colour theme
- Download the Space Gray colour theme
https://github.com/ph1p/vue-paintable | |
https://github.com/luckyboy07/vue-storya | |
https://github.com/anthonygore/vuex-undo-redo-example | |
https://github.com/fetaoily/fabricjs-extra | |
https://github.com/HWcool/vue-sketchpad | |
https://github.com/gongph/fabricjs-studio |
<!doctype html> | |
<html> | |
<head> | |
<!-- Priority tags. These must come first. --> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge; chrome=1"> <!-- Render Chrome if available or using latest version of Internet Explorer (Recommended). --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
<!-- Document Title --> | |
<title>Page Title</title> | |
<!-- Allows control over where resources are loaded from. Place as early in the document as possible, only applies to content below this tag. --> |
xcode-select --install
#!/usr/bin/env bash | |
# http://chetansachdev.com | |
# http://www.sirwinston.org/ | |
# Install Xcode | |
# Install Homebrew | |
# Install Node | |
# Install Yarn | |
# Install Gulp | |
# Install Bower | |
# Install Linters |
Run each of the following lines, replacing yourdomain.com
and AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
with your details:
export NOW_DOMAIN=yourdomain.com
export GOOGLE_VERIFICATION=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
now dns add "$NOW_DOMAIN" @ TXT "google-site-verification=$GOOGLE_VERIFICATION"
now dns add "$NOW_DOMAIN" @ MX ASPMX.L.GOOGLE.COM 1
now dns add "$NOW_DOMAIN" @ MX ALT1.ASPMX.L.GOOGLE.COM 5
now dns add "$NOW_DOMAIN" @ MX ALT2.ASPMX.L.GOOGLE.COM 5
now dns add "$NOW_DOMAIN" @ MX ALT3.ASPMX.L.GOOGLE.COM 10
#!/bin/bash | |
## Script to merge all mp4 videos in current directory (recursively 2 levels) | |
## And update chapter marks to retain the folder/filename | |
## Script for merging videos | |
filename=`basename pwd` | |
current=`pwd` |
[ | |
{ | |
"id": "aaron-bond.better-comments", | |
"name": "better-comments", | |
"publisher": "aaron-bond", | |
"version": "2.0.3" | |
}, | |
{ | |
"id": "alefragnani.Bookmarks", | |
"name": "Bookmarks", |
{"lastUpload":"2018-04-20T16:20:08.292Z","extensionVersion":"v2.9.0"} |
tree --dirsfirst --noreport -I README.md |
sed '1s/^/```'"$(printf '\n')"'/;$s/$/'"$(printf '\n')"'```/' > README.md
If tree is not available, install it via
brew install tree