├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── new-entry.md └── workflows │ └── gen_fingerprints.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── fingerprints.json └── scripts └── gen_fingerprints.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdOverflow/can-i-take-over-xyz/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-entry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdOverflow/can-i-take-over-xyz/HEAD/.github/ISSUE_TEMPLATE/new-entry.md -------------------------------------------------------------------------------- /.github/workflows/gen_fingerprints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdOverflow/can-i-take-over-xyz/HEAD/.github/workflows/gen_fingerprints.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdOverflow/can-i-take-over-xyz/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdOverflow/can-i-take-over-xyz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdOverflow/can-i-take-over-xyz/HEAD/README.md -------------------------------------------------------------------------------- /fingerprints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdOverflow/can-i-take-over-xyz/HEAD/fingerprints.json -------------------------------------------------------------------------------- /scripts/gen_fingerprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdOverflow/can-i-take-over-xyz/HEAD/scripts/gen_fingerprints.py --------------------------------------------------------------------------------