The scale of diagnosed mental illness is now prodigious. In Britain, for example, some 170,000 patients are admitted each year to hospitals for various categories of “mental illness” (and another 16,000 for “mental handicap”). Mental illness patients these days are discharged quite soon, so there are only some 80,000 in hospitals at any one time. Mental handicap patients stay longer—there are almost 47,000 in hospitals at any one time. Put another way,
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table if not exists users | |
( | |
id int primary key generated always as identity, | |
name text not null | |
); | |
create table if not exists apikeys | |
( | |
userid int references users(id), | |
apikey text not null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Convert a cbr file to cbz because rar is proprietary | |
set -e | |
tmpdir=$(mktemp -d) | |
cleanup() { | |
rm -rf "$tmpdir" || true |