├── .gitignore ├── README.md ├── bot.sh ├── count-paren.sh ├── cron-task.sh ├── get-oauth-key.sh ├── last-check.sh ├── oauth-death-time.sh ├── post-comment.sh └── user-secrets-sample.sh /.gitignore: -------------------------------------------------------------------------------- 1 | oauth_key.json 2 | user-secrets.sh 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoNikanor/reddit-parenthesis-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoNikanor/reddit-parenthesis-bot/HEAD/bot.sh -------------------------------------------------------------------------------- /count-paren.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoNikanor/reddit-parenthesis-bot/HEAD/count-paren.sh -------------------------------------------------------------------------------- /cron-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoNikanor/reddit-parenthesis-bot/HEAD/cron-task.sh -------------------------------------------------------------------------------- /get-oauth-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoNikanor/reddit-parenthesis-bot/HEAD/get-oauth-key.sh -------------------------------------------------------------------------------- /last-check.sh: -------------------------------------------------------------------------------- 1 | lastCheck=0 2 | -------------------------------------------------------------------------------- /oauth-death-time.sh: -------------------------------------------------------------------------------- 1 | oauthDeath=1463015691 2 | -------------------------------------------------------------------------------- /post-comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoNikanor/reddit-parenthesis-bot/HEAD/post-comment.sh -------------------------------------------------------------------------------- /user-secrets-sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoNikanor/reddit-parenthesis-bot/HEAD/user-secrets-sample.sh --------------------------------------------------------------------------------