This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <assert.h> | |
typedef struct _car { | |
char model[20]; | |
char brand[20]; | |
int year; | |
long worth; |
This file contains 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
import praw, time, csv, random, itertools, requests | |
BOT = 'spirit_of_mckenna' | |
PASSWORD = "" #not actual password | |
KEYWORD = "mckenna" | |
SLEEP_MESSAGE = "Sleeping for 12 hours..." | |
BY_LINE = " -Terence McKenna" | |
USER_AGENT = "When people reference McKenna, I provide a quote of his, /u/spirit_of_mckenna" | |
SUBREDDITS = [ 'test', | |
'psychonaut', |