I hereby claim:
- I am zenware on github.
- I am zenware (https://keybase.io/zenware) on keybase.
- I have a public key whose fingerprint is CE57 E416 3F5F 8B4D ECC5 94A9 096B A1D1 A50F 48A5
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDP/uIv+4NCTeHd5czMbRrCq1aH8R0pp8jOuNc+ENWqB5/Z/+qUA59rY+i8Za1omKKODlBkOk7RzBPyP7/e45kP+gOdAVmp1BVcyaSsSB6GV+x5+/zjdQ5HuFshlfUrm9uNKRNyqsftLuYMEt3mQ8mhXEGkAaRGMkLBMd6dYirJMTKHAHcrSvF3TFC+9Ef4NVg+F2gdnQcDLwpy8xwUxBuV7sCsd+vKAe6mXITbHKgUohbX6jMwbHuEXbXdh7q79oaCM73KAQMmLpzehhIuzIfnunZWFXQbNvXNivpN5bt9X0UjslfyCl1CEygi9q9ua3MxxtYPnw55XxoP/LWuzmtx [email protected] |
/* | |
Create tables by considering the following: | |
1. A primary key for the relation. | |
2. Foreign key (referential integrity) constraints | |
3. NOT NULL constraints and default values as appropriate. | |
*/ | |
use jl790a; | |
/* | |
DROP TABLE CourseRoster; |
#!/bin/bash | |
usage () { | |
echo >&2 "Usage: $0 [-f orce] [-v erbose] [-i nteractive]" | |
exit 1 | |
} | |
confirm () { | |
# Maybe add Default Y or N, and perhaps switch to using select... | |
read -r -p "${1:-Are you sure? [y/N]} " response |
#include <chrono> | |
#include <functional> | |
#include <iostream> | |
#include <random> | |
#include <string> | |
static void show_usage(std::string name) | |
{ | |
std::cerr << "Usage: " << name << " <option(s)>\n" | |
<< "Options:\n" |
data:text/html, | |
<html style="background:#002b36;font:13px monospace;padding:30px;"> | |
<head> | |
<link rel="stylesheet" href="http://codemirror.net/lib/codemirror.css"> | |
<style>.CodeMirror{height:100%}.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor{background:#93a1a1}.CodeMirror-linenumber{color:#b58900}.CodeMirror-gutters{background:#073642;border-color:#073642}</style> | |
<script src="http://codemirror.net/lib/codemirror.js"></script> | |
<script src="http://codemirror.net/keymap/vim.js"></script> | |
<body style="background:#073642;color:#93a1a1;max-width:600px;padding:10px 0;"> | |
<textarea id="code"></textarea> | |
<script> |