$ ./node_modules/.bin/knex:migrate:latest -c db/config.js
This is a collection of the most common commands I run while administering Postgres databases. The variables shown between the open and closed tags, "<" and ">", should be replaced with a name you choose. Postgres has multiple shortcut functions, starting with a forward slash, "". Any SQL command that is not a shortcut, must end with a semicolon, ";". You can use the keyboard UP and DOWN keys to scroll the history of previous commands you've run.
http://www.postgresql.org/download/linux/ubuntu/ https://help.ubuntu.com/community/PostgreSQL
Picking the right architecture = Picking the right battles + Managing trade-offs
- Clarify and agree on the scope of the system
- User cases (description of sequences of events that, taken together, lead to a system doing something useful)
- Who is going to use it?
- How are they going to use it?
Responding to requests via simple route matching is built in to Go's net/http
standard library package. Just register the path prefixes and callbacks you want invoked and then call the ListenAndServe
to have the default request handler invoked on each request. For example:
package main
import (
import React from 'react'; | |
import { editor } from 'monaco-editor'; | |
import IMouseTarget = editor.IMouseTarget; | |
import IStandaloneCodeEditor = editor.IStandaloneCodeEditor; | |
import IContentWidget = editor.IContentWidget; | |
const { ContentWidgetPositionPreference } = editor; | |
export type TDropHandler = (e: React.DragEvent, target: IMouseTarget, instance: IStandaloneCodeEditor) => void; | |
export type TInstanceGetter = () => IStandaloneCodeEditor; |