Given the following table:
CREATE TABLE "venue"
(
"id" INTEGER NOT NULL PRIMARY KEY,
"name" VARCHAR(255) NOT NULL
);
INSERT INTO "venue" ("name") VALUES ('V1');
Given the following table:
CREATE TABLE "venue"
(
"id" INTEGER NOT NULL PRIMARY KEY,
"name" VARCHAR(255) NOT NULL
);
INSERT INTO "venue" ("name") VALUES ('V1');
data:image/gif;base64,R0lGODlhAQABAAAAACw= |
Password-store keeps your passwords (or any other sensitive information) saved in GnuPG encrypted files organized in ~/.password-store
. For more information about GPG, consult the GNU Privacy Handbook.
To get started, install pass
and generate a keypair.
$ brew install pass
$ gpg --gen-key
$ gpg --list-keys
#!/usr/bin/env hy | |
;; match.hy - Getting started with hy (hylang.org), a simple example. | |
;; | |
;; As executable, `chmod +x match.hy`: | |
;; | |
;; $ ./match.hy '(.*), (.*)!' 'Hello, world!' | |
;; ('Hello', 'world') | |
;; | |
;; Developed on hy master 14c412c (after 0.11.1) on Python 3.5. | |
;; |
@startuml | |
' uncomment the line below if you're using computer with a retina display | |
' skinparam dpi 300 | |
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >> | |
' we use bold for primary key | |
' green color for unique | |
' and underscore for not_null | |
!define primary_key(x) <b>x</b> | |
!define unique(x) <color:green>x</color> | |
!define not_null(x) <u>x</u> |