(according to me)
Todo: Review these to make this more comprehensive
| #!/usr/bin/env bash | |
| THISDIR=$(cd $(dirname "$0"); pwd) #this script's directory | |
| do_sync() { | |
| source=$1 | |
| dest=$2 | |
| if [[ ! -e "$source" ]]; then | |
| echo "source does not exist: $source" | |
| return |
| #!/bin/bash | |
| # Print usage | |
| usage() { | |
| echo "Usage: build-release.sh -v <version number>" | |
| echo "This script builds the Smartnode builder image used to build the daemon binaries." | |
| exit 0 | |
| } | |
| # ================= |
(according to me)
Todo: Review these to make this more comprehensive
| // This file doesn't go through babel or webpack transformation. | |
| // Make sure the syntax and sources this file requires are compatible with the current node version you are running | |
| // See https://github.com/zeit/next.js/issues/1245 for discussions on Universal Webpack or universal Babel | |
| import { createServer } from "http" | |
| import { parse } from "url" | |
| import next from "next" | |
| import render from "./lib/ssr" | |
| const dev = process.env.NODE_ENV !== "production" | |
| const app = next({ dev }) |
Here are a few notes:
npm. More on npm at https://docs.npmjs.com/getting-started/what-is-npmPlease publicly post the following Gist, and name it keybase.md
I hereby claim:
| exportEvernote() | |
| on exportEvernote() | |
| set outputDir to (do shell script "echo ~/Downloads/") | |
| set theDate to current date | |
| set timeStamp to (do shell script "date +'%y-%m-%d-%T'") | |
| tell application "Evernote" |
| Verifying that +activescott is my blockchain ID. https://onename.com/activescott |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |