**About** [Post Scream] [Search Screams] [Random Scream] [About]
Voidscream is a place to make anonymous posts about anything. It accepts markdeep so you can use latex for math, make diagrams, and many other things. You can make comments on screams that allow comments, and you can reply to screams with other screams - which allows forum-like behavior. If the bots come, we will try (re)captcha to keep them out. A human is running this website, not a company, and there is no harvesting of personal data. In fact, not even time stamps are stored, but instead, autoincrementing integer columns are used to give an ordering where needed, without storing the information about exactly when the data was created. In the future, a scream's password will also let you edit the text, and a history will be kept (of the versions not deleted using the password). Polls and geographic data gathering (like, salaries on a map) are also planned, with the ability to export the data as CSVs. Here are the database tables currently: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SQL CREATE TABLE `comments` ( `orderindex` int(11) NOT NULL AUTO_INCREMENT, `hash` varchar(32) NOT NULL, `text` mediumtext NOT NULL, `replyasscreamhash` varchar(32) NOT NULL, PRIMARY KEY (`orderindex`) USING BTREE, UNIQUE KEY `orderindexindex` (`orderindex`), KEY `replyasscreamhash` (`replyasscreamhash`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 CREATE TABLE `screams` ( `orderindex` int(11) NOT NULL AUTO_INCREMENT, `hash` varchar(32) NOT NULL, `passwordhash` varchar(256) NOT NULL, `text` mediumtext NOT NULL, `allowreplies` tinyint(1) NOT NULL, `replyingto` varchar(32) NOT NULL, PRIMARY KEY (`hash`), UNIQUE KEY `orderindexindex` (`orderindex`), KEY `replyingto` (`replyingto`), FULLTEXT KEY `screamsearch` (`text`) ) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~