├── .env.example ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .goaccess.caddy.conf ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── api ├── README.md ├── api.go ├── coins │ └── coins.go ├── firm │ └── firm.go ├── firms │ └── firms.go ├── investments │ └── investments.go ├── investor │ └── investor.go ├── investors │ └── investors.go ├── summary │ └── summary.go └── utils │ └── utils.go ├── backup.sh ├── data ├── paper.org ├── paper.tex ├── paper_figure_1.png ├── paper_figure_2.png └── references.bib ├── docker-compose.yml ├── docker ├── Caddyfile ├── Dockerfile-caddy ├── Dockerfile-goaccess └── Dockerfile-golang ├── docs ├── css │ ├── dark-base.css │ ├── firm.css │ ├── index.css │ ├── leaderboards.css │ └── user.css ├── firm-edit.html ├── firm-leaderboard.html ├── firm.html ├── index.html ├── js │ ├── firm-leaderboard.js │ ├── firm.js │ ├── index.js │ ├── leaderboards.js │ ├── libs │ │ ├── countup.min.js │ │ ├── financial-chart.js │ │ ├── snowstorm-min.js │ │ └── snowstorm.js │ ├── modules │ │ ├── badges.js │ │ ├── dataUtils.js │ │ ├── jsonApi.js │ │ ├── scheduler.js │ │ └── uiElements.js │ └── user.js ├── leaderboards.html ├── resources │ ├── 2.png │ ├── 3.png │ ├── GitHub-Mark-Light-32px.png │ ├── badges │ │ ├── b.png │ │ ├── contributor.png │ │ ├── donor.png │ │ ├── laurel.png │ │ ├── overflow.png │ │ ├── top-beta.png │ │ └── top-investor.png │ ├── baseline-expand_more-24px.svg │ ├── christmas │ │ └── logo240_christmas.png │ ├── favicon │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon.ico │ ├── first.png │ ├── leaderboards │ │ ├── beta.json │ │ ├── s1.json │ │ └── seasons.js │ ├── logo-600.png │ ├── logo1.png │ ├── logo240.png │ ├── logo400.png │ ├── orange-rectanlge.png │ ├── paper.pdf │ └── spooky-season │ │ ├── hand-cursor-grab2.svg │ │ ├── hand-cursor.svg │ │ └── logo1.png └── user.html ├── performance.pl ├── requirements.txt ├── restore.sh ├── src ├── adjustment.py ├── all_plot.png ├── bulk_add.py ├── calculator.py ├── comment_worker.py ├── config.py ├── create_database.py ├── describe-tables.py ├── dummy.py ├── formula-graphs-for-paper.py ├── formula-test.py ├── formula-visualizer.py ├── formula.py ├── grant_badges.py ├── help_info.py ├── kill_handler.py ├── leaderboard.py ├── main.py ├── message.py ├── models.py ├── payroll.py ├── stopwatch.py ├── submitter.py ├── tops1.py └── utils.py ├── test.sh └── test ├── active.py ├── balance.py ├── basic.py ├── broke.py ├── firms.py ├── grant.py ├── invest.py ├── market.py ├── mock_praw.py ├── test.py ├── top.py └── user_init.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.goaccess.caddy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/.goaccess.caddy.conf -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/README.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/README.md -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/api.go -------------------------------------------------------------------------------- /api/coins/coins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/coins/coins.go -------------------------------------------------------------------------------- /api/firm/firm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/firm/firm.go -------------------------------------------------------------------------------- /api/firms/firms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/firms/firms.go -------------------------------------------------------------------------------- /api/investments/investments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/investments/investments.go -------------------------------------------------------------------------------- /api/investor/investor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/investor/investor.go -------------------------------------------------------------------------------- /api/investors/investors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/investors/investors.go -------------------------------------------------------------------------------- /api/summary/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/summary/summary.go -------------------------------------------------------------------------------- /api/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/api/utils/utils.go -------------------------------------------------------------------------------- /backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/backup.sh -------------------------------------------------------------------------------- /data/paper.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/data/paper.org -------------------------------------------------------------------------------- /data/paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/data/paper.tex -------------------------------------------------------------------------------- /data/paper_figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/data/paper_figure_1.png -------------------------------------------------------------------------------- /data/paper_figure_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/data/paper_figure_2.png -------------------------------------------------------------------------------- /data/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/data/references.bib -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docker/Caddyfile -------------------------------------------------------------------------------- /docker/Dockerfile-caddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docker/Dockerfile-caddy -------------------------------------------------------------------------------- /docker/Dockerfile-goaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docker/Dockerfile-goaccess -------------------------------------------------------------------------------- /docker/Dockerfile-golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docker/Dockerfile-golang -------------------------------------------------------------------------------- /docs/css/dark-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/css/dark-base.css -------------------------------------------------------------------------------- /docs/css/firm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/css/firm.css -------------------------------------------------------------------------------- /docs/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/css/index.css -------------------------------------------------------------------------------- /docs/css/leaderboards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/css/leaderboards.css -------------------------------------------------------------------------------- /docs/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/css/user.css -------------------------------------------------------------------------------- /docs/firm-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/firm-edit.html -------------------------------------------------------------------------------- /docs/firm-leaderboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/firm-leaderboard.html -------------------------------------------------------------------------------- /docs/firm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/firm.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/firm-leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/firm-leaderboard.js -------------------------------------------------------------------------------- /docs/js/firm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/firm.js -------------------------------------------------------------------------------- /docs/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/index.js -------------------------------------------------------------------------------- /docs/js/leaderboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/leaderboards.js -------------------------------------------------------------------------------- /docs/js/libs/countup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/libs/countup.min.js -------------------------------------------------------------------------------- /docs/js/libs/financial-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/libs/financial-chart.js -------------------------------------------------------------------------------- /docs/js/libs/snowstorm-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/libs/snowstorm-min.js -------------------------------------------------------------------------------- /docs/js/libs/snowstorm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/libs/snowstorm.js -------------------------------------------------------------------------------- /docs/js/modules/badges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/modules/badges.js -------------------------------------------------------------------------------- /docs/js/modules/dataUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/modules/dataUtils.js -------------------------------------------------------------------------------- /docs/js/modules/jsonApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/modules/jsonApi.js -------------------------------------------------------------------------------- /docs/js/modules/scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/modules/scheduler.js -------------------------------------------------------------------------------- /docs/js/modules/uiElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/modules/uiElements.js -------------------------------------------------------------------------------- /docs/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/js/user.js -------------------------------------------------------------------------------- /docs/leaderboards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/leaderboards.html -------------------------------------------------------------------------------- /docs/resources/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/2.png -------------------------------------------------------------------------------- /docs/resources/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/3.png -------------------------------------------------------------------------------- /docs/resources/GitHub-Mark-Light-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/GitHub-Mark-Light-32px.png -------------------------------------------------------------------------------- /docs/resources/badges/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/badges/b.png -------------------------------------------------------------------------------- /docs/resources/badges/contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/badges/contributor.png -------------------------------------------------------------------------------- /docs/resources/badges/donor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/badges/donor.png -------------------------------------------------------------------------------- /docs/resources/badges/laurel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/badges/laurel.png -------------------------------------------------------------------------------- /docs/resources/badges/overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/badges/overflow.png -------------------------------------------------------------------------------- /docs/resources/badges/top-beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/badges/top-beta.png -------------------------------------------------------------------------------- /docs/resources/badges/top-investor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/badges/top-investor.png -------------------------------------------------------------------------------- /docs/resources/baseline-expand_more-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/baseline-expand_more-24px.svg -------------------------------------------------------------------------------- /docs/resources/christmas/logo240_christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/christmas/logo240_christmas.png -------------------------------------------------------------------------------- /docs/resources/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /docs/resources/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /docs/resources/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/favicon/favicon.ico -------------------------------------------------------------------------------- /docs/resources/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/first.png -------------------------------------------------------------------------------- /docs/resources/leaderboards/beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/leaderboards/beta.json -------------------------------------------------------------------------------- /docs/resources/leaderboards/s1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/leaderboards/s1.json -------------------------------------------------------------------------------- /docs/resources/leaderboards/seasons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/leaderboards/seasons.js -------------------------------------------------------------------------------- /docs/resources/logo-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/logo-600.png -------------------------------------------------------------------------------- /docs/resources/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/logo1.png -------------------------------------------------------------------------------- /docs/resources/logo240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/logo240.png -------------------------------------------------------------------------------- /docs/resources/logo400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/logo400.png -------------------------------------------------------------------------------- /docs/resources/orange-rectanlge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/orange-rectanlge.png -------------------------------------------------------------------------------- /docs/resources/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/paper.pdf -------------------------------------------------------------------------------- /docs/resources/spooky-season/hand-cursor-grab2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/spooky-season/hand-cursor-grab2.svg -------------------------------------------------------------------------------- /docs/resources/spooky-season/hand-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/spooky-season/hand-cursor.svg -------------------------------------------------------------------------------- /docs/resources/spooky-season/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/resources/spooky-season/logo1.png -------------------------------------------------------------------------------- /docs/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/docs/user.html -------------------------------------------------------------------------------- /performance.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/performance.pl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | praw 2 | fastnumbers 3 | mysqlclient 4 | sqlalchemy 5 | -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/restore.sh -------------------------------------------------------------------------------- /src/adjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/adjustment.py -------------------------------------------------------------------------------- /src/all_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/all_plot.png -------------------------------------------------------------------------------- /src/bulk_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/bulk_add.py -------------------------------------------------------------------------------- /src/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/calculator.py -------------------------------------------------------------------------------- /src/comment_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/comment_worker.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/config.py -------------------------------------------------------------------------------- /src/create_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/create_database.py -------------------------------------------------------------------------------- /src/describe-tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/describe-tables.py -------------------------------------------------------------------------------- /src/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/dummy.py -------------------------------------------------------------------------------- /src/formula-graphs-for-paper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/formula-graphs-for-paper.py -------------------------------------------------------------------------------- /src/formula-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/formula-test.py -------------------------------------------------------------------------------- /src/formula-visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/formula-visualizer.py -------------------------------------------------------------------------------- /src/formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/formula.py -------------------------------------------------------------------------------- /src/grant_badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/grant_badges.py -------------------------------------------------------------------------------- /src/help_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/help_info.py -------------------------------------------------------------------------------- /src/kill_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/kill_handler.py -------------------------------------------------------------------------------- /src/leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/leaderboard.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/main.py -------------------------------------------------------------------------------- /src/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/message.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/models.py -------------------------------------------------------------------------------- /src/payroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/payroll.py -------------------------------------------------------------------------------- /src/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/stopwatch.py -------------------------------------------------------------------------------- /src/submitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/submitter.py -------------------------------------------------------------------------------- /src/tops1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/tops1.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/src/utils.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test.sh -------------------------------------------------------------------------------- /test/active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/active.py -------------------------------------------------------------------------------- /test/balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/balance.py -------------------------------------------------------------------------------- /test/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/basic.py -------------------------------------------------------------------------------- /test/broke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/broke.py -------------------------------------------------------------------------------- /test/firms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/firms.py -------------------------------------------------------------------------------- /test/grant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/grant.py -------------------------------------------------------------------------------- /test/invest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/invest.py -------------------------------------------------------------------------------- /test/market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/market.py -------------------------------------------------------------------------------- /test/mock_praw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/mock_praw.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/test.py -------------------------------------------------------------------------------- /test/top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/top.py -------------------------------------------------------------------------------- /test/user_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecsw/memeinvestor_bot/HEAD/test/user_init.py --------------------------------------------------------------------------------