├── .editorconfig ├── .gitignore ├── .prettierrc ├── license ├── package.json ├── readme.md ├── src ├── algorithmic-feed.ts ├── index.ts └── types.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/.prettierrc -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/readme.md -------------------------------------------------------------------------------- /src/algorithmic-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/src/algorithmic-feed.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/twitter-feed-algorithm/HEAD/yarn.lock --------------------------------------------------------------------------------