#!/usr/bin/perl


srand;

$html_mode = 1;
$cgi_mode = 1;


@words=('accountability','art for art\'s sake','artistic autonomy',
'autonomous living', 'autonomous space', 'birth control', 'business growth', 'business', 'care work', 'censorship', 'camouflage', 'code of conduct', 'collaboration', 'collective autonomy', 'collective precarity', 'colonial status', 'commodity', 'commoning', 'commune', 'concrete action', 'constitution', 'control', 'conversation', 'cooperative', 'bureaucracy', 'autonomy', 'art project', 'precarity', 'craft labour', 'cross-border smuggling', 'cryptocurrency', 'data extraction', 'dependence', 'design research', 'economic power', 'emotional wellbeing', 'entitlement', 'experiment', 'financial autonomy', 'flying under the radar', 'food', 'free market', 'cookbook', 'free speech', 'group influence', 'leaderless uprising', 'legal system', 'liberty', 'logistics', 'money making', 'market', 'micromanagement', 'minority position', 'mutual aid', 'nationalism', 'natural resource', 'network', 'NFT art market', 'nonkrong', 'occupation', 'open sexuality', 'Open Source', 'operating system', 'Otto Muehl commune', 'outlawness', 'oversimplification', 'ownership', 'Palestinian flag', 'parallel trading', 'partisan self-organization', 'performance', 'performance art piece', 'personal choice', 'platform', 'playfulness', 'playground', 'policy', 'policymaking', 'political activism', 'political experiment', 'pop-up store', 'postcoloniality', 'power structure', 'privacy', 'private investment', 'privately owned resource', 'propaganda', 'protest', 'public space', 'punk', 'radicalness', 'radical performance art', 'regulation', 'relationality', 'repair', 'resource', 'responsibility', 'rhizomatic structure', 'romanticisation', 'self-made system', 'self-organization', 'self-control', 'self-determination', 'self-management', 'self-reliance', 'semi-autonomy', 'serendipity', 'shamanic practice', 'shared responsibility', 'smuggling', 'social design', 'social experiment', 'social mobility', 'social movement', 'social work', 'solidarity', 'strategy', 'subversion', 'sustainability', 'tax evasion', 'technology', 'territory', 'meme', 'interdisciplinarity', 'tribalism', 'unwritten rule', 'value', 'venture capitalism', 'Western romanticism', 'workshop format'
);


$sentence='your '. $words[int(rand($#words+1))] . ' is my ' . $words[int(rand($#words+1))] ;


if ($cgi_mode) {print "Content-type: text/html\nPragma: no-cache\n\n"}
if ($html_mode) {print "<html>\n<head><title>autonomy lab bot</title>
<meta http-equiv=\"refresh\" content=\"10\" \/>
<style>

\@font-face {
font-family: 'Baekmuk Batang'\;
src: url('Baekmuk-Batang.woff2') format('woff2'),
url('Baekmuk-Batang.woff') format('woff')\;
font-weight: normal\;
font-style: normal\;
font-display: swap\;
}

h1{
  font-size: 100pt;
  font-family: 'Baekmuk Batang';
  font-weight: normal;
}
</style>
</head>
<body>\n\n<h1>"}


print $sentence,"\n";


if ($html_mode) {print "</h1>\n\n</body>\n</html>\n\n"}


# EOF
