The popular open-source contract for web designers and developers by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: October 8th 2015
- Original post
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> |
#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" |
#!/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 |
/* | |
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; |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDP/uIv+4NCTeHd5czMbRrCq1aH8R0pp8jOuNc+ENWqB5/Z/+qUA59rY+i8Za1omKKODlBkOk7RzBPyP7/e45kP+gOdAVmp1BVcyaSsSB6GV+x5+/zjdQ5HuFshlfUrm9uNKRNyqsftLuYMEt3mQ8mhXEGkAaRGMkLBMd6dYirJMTKHAHcrSvF3TFC+9Ef4NVg+F2gdnQcDLwpy8xwUxBuV7sCsd+vKAe6mXITbHKgUohbX6jMwbHuEXbXdh7q79oaCM73KAQMmLpzehhIuzIfnunZWFXQbNvXNivpN5bt9X0UjslfyCl1CEygi9q9ua3MxxtYPnw55XxoP/LWuzmtx [email protected] |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
echo "Enter your desired user name: " | |
read USERNAME | |
echo "Enter a full name for this user: " | |
read FULLNAME | |
echo "Enter a password for this user: " | |
read -s PASSWORD |
Since this is on Hacker News and reddit...
_t
in my types. I spend a lot of time at a level where I can do that; "reserved for system libraries? I am the system libraries".char *
s.type * name
, however, is entirely intentional.