diff --git a/.env b/.env.example similarity index 100% rename from .env rename to .env.example diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index f149fe328..3747adddc 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,6 @@ -* @phenax +* @phenax @wdhdev + +/.github/ @wdhdev +/domains/ @is-a-dev/maintainers @is-a-dev/trial-maintainers -domains/ @is-a-dev/maintainers *.md @is-a-dev/maintainers diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 8d0c3eec1..e1877d426 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,3 @@ -custom: ["https://www.paypal.me/phenax", "https://www.buymeacoffee.com/phenax"] +custom: ["https://www.paypal.me/phenax"] liberapay: phenax +buy_me_a_coffee: phenax diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index ef6c5eebf..37adf2e0a 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -6,9 +6,8 @@ labels: bug --- +### Your subdomain + ### Expected outcome - ### Observed outcome - - diff --git a/.github/ISSUE_TEMPLATE/questions.md b/.github/ISSUE_TEMPLATE/questions.md index 453382d05..1e1a07a33 100644 --- a/.github/ISSUE_TEMPLATE/questions.md +++ b/.github/ISSUE_TEMPLATE/questions.md @@ -6,5 +6,4 @@ labels: question --- -You can elaborate here - +### Your question diff --git a/.github/ISSUE_TEMPLATE/report-abuse.md b/.github/ISSUE_TEMPLATE/report-abuse.md index 3924deedc..c25ca4e37 100644 --- a/.github/ISSUE_TEMPLATE/report-abuse.md +++ b/.github/ISSUE_TEMPLATE/report-abuse.md @@ -6,8 +6,10 @@ labels: report-abuse --- -Domain you want to report: +### Domain ### Reason -Explain why you think this domain is being abused + +### Proof + diff --git a/.github/ISSUE_TEMPLATE/suggestions.md b/.github/ISSUE_TEMPLATE/suggestions.md index 514629d2d..d30835232 100644 --- a/.github/ISSUE_TEMPLATE/suggestions.md +++ b/.github/ISSUE_TEMPLATE/suggestions.md @@ -6,3 +6,4 @@ labels: suggestion --- +### What do you want added? diff --git a/.github/ISSUE_TEMPLATE/support.md b/.github/ISSUE_TEMPLATE/support.md index 1f305dfdd..dbe3c3030 100644 --- a/.github/ISSUE_TEMPLATE/support.md +++ b/.github/ISSUE_TEMPLATE/support.md @@ -6,7 +6,6 @@ labels: support --- -Your domain name: - -Explain any issues you are facing +### Your subdomain +### The issue diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d64517868..e7eb65913 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,15 +1,16 @@ + + ## Requirements Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above. Please note that we reserve the rights not to accept any domain at our own discretion. - [ ] The file is in the `domains` folder and is in the JSON format. +- [ ] The file's name is all lowercased and alphanumeric. - [ ] You have completed your website. - [ ] The website is reachable. -- [ ] You're not using Vercel or Netlify. - [ ] The CNAME record doesn't contain `https://` or `/`. -- [ ] There is sufficient information at the `owner` field. - +- [ ] There is sufficient information at the `owner` field. ## Website Link/Preview - + diff --git a/.github/workflows/bot.yml b/.github/workflows/bot.yml deleted file mode 100644 index 4c68ceaa2..000000000 --- a/.github/workflows/bot.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Helper - -on: - pull_request: - types: - - closed - -jobs: - instructions: - name: instructions - runs-on: ubuntu-latest - steps: - - run: curl https://notify-api.is-a.dev/pr/merged/${{ github.event.pull_request.number }} - if: github.event.action == 'closed' && github.event.pull_request.merged == true -# - uses: actions/checkout@v2 -# - name: Comment -# if: github.event.action == 'closed' && github.event.pull_request.merged == true -# uses: actions/github-script@v3 -# with: -# github-token: ${{secrets.GITHUB_TOKEN}} -# script: | -# const { hasLabel } = require(`${process.env.GITHUB_WORKSPACE}/scripts/action-utils.js`); -# const { instructions } = require(`${process.env.GITHUB_WORKSPACE}/scripts/reply.js`); -# if (hasLabel(context, 'domain')) -# console.log('Domain'); -# await instructions(context, github); diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 678e6525c..be5f73e48 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -1,23 +1,18 @@ name: Checks -on: [pull_request] + +on: [pull_request, workflow_dispatch] jobs: validation: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 - - name: Setup node v15 - uses: actions/setup-node@v1 + - uses: oven-sh/setup-bun@v1 with: - node-version: '15' - - name: Install dependencies - uses: borales/actions-yarn@v2.0.0 - with: - cmd: install --ignore-engines --frozen-lockfile + bun-version: latest + - run: bun install - name: Run tests - uses: borales/actions-yarn@v2.0.0 - with: - cmd: test + run: bun test diff --git a/.github/workflows/publish-records.yml b/.github/workflows/publish-records.yml index c8ed824e1..40e58b3ea 100644 --- a/.github/workflows/publish-records.yml +++ b/.github/workflows/publish-records.yml @@ -4,24 +4,22 @@ on: push: branches: [main] workflow_dispatch: - name: 'Publish records' jobs: publish: if: github.repository == 'is-a-dev/register' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: borales/actions-yarn@v2.0.0 + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v1 with: - cmd: install --ignore-engines - - name: Running tests - uses: borales/actions-yarn@v2.0.0 - with: - cmd: test + bun-version: latest + - run: bun install + - run: bun test - name: Publishing records env: CI: 1 + NODE_ENV: production ENV: production DOMAIN_USER: ${{ secrets.DOMAIN_USER }} DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }} @@ -29,6 +27,4 @@ jobs: DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }} DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }} DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }} - uses: borales/actions-yarn@v2.0.0 - with: - cmd: publish-records + run: bun run publish-records diff --git a/.github/workflows/raw-api.yml b/.github/workflows/raw-api.yml new file mode 100644 index 000000000..35680dc72 --- /dev/null +++ b/.github/workflows/raw-api.yml @@ -0,0 +1,46 @@ +name: Raw API + +on: + push: + branches: [main] + paths: + - "domains/*" + - ".github/workflows/raw-api.yml" + + workflow_dispatch: + +concurrency: + group: ${{ github.ref }}-raw-api + cancel-in-progress: true + +jobs: + update: + name: Update + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - uses: actions/checkout@v4 + with: + repository: is-a-dev/raw-api + path: raw-api + token: ${{ secrets.BOT }} + + - uses: actions/setup-node@v4 + with: + node-version: 20.x + + - name: Update Data + run: node raw-api/scripts/update.js + + - name: Commit + uses: cpina/github-action-push-to-another-repository@main + with: + source-directory: "raw-api" + destination-github-username: is-a-dev + destination-repository-name: raw-api + user-email: actions@github.com + user-name: "GitHub Actions" + env: + API_TOKEN_GITHUB: ${{ secrets.BOT }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 786060ccc..9eefecd7b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,8 +13,8 @@ jobs: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - days-before-stale: 30 - days-before-close: 20 + days-before-stale: 7 + days-before-close: 3 stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue to prevent it' stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it' exempt-issue-labels: 'no-stale' diff --git a/.gitignore b/.gitignore index b4bfa3d64..209d4adc4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules/ -*.env.* +*.env.production *.log +is-a-dev-cert/ diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 31c61b68f..8baab2bf1 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -5,5 +5,7 @@ This is a Code of Conduct for any interactions in this repository. This includes - **Don't abuse the service** - This service is intended for developers to get a cleaner URL for their personal websites. - **No wrongful use** - Do not use this service as a way, to promote hacking, scams, fraud, and other illegal activites. -If you believe a domain that has been registered using this service is an abuse of this service, you can report it by creating an issue. -The abuse reports will be investigated and the necessary action will be taken! +## Reporting abuse +If you believe a domain that has been registered using this service is abusing our terms, you can report it by creating an issue. + +The abuse reports will be investigated and the necessary action will be taken. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 965261eda..4fa514e5b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,24 +1,21 @@ # Contributing When contributing to this repository, please first discuss the change you wish to make via issue before making a change. -You should also read up on this project's [code of conduct](./CODE_OF_CONDUCT.md). +You should also read up on this project's [code of conduct](https://github.com/is-a-dev/register/blob/main/CODE_OF_CONDUCT.md). ## Pull requests -You can create an pull request for the following reasons - -* Adding, changing or removing a domain file you own. -* Fixing a bug in the scripts or CI. -* Fix an error in the documentation. +- Adding, changing or removing a domain file you own. +- Fixing a bug in the scripts or CI. +- Fix an error in the documentation. #### Domains -Changes to domain files will follow the given process - -* PR will be reviewed and merged to `main` branch. -* The records will be published as soon as the PR is merged. -* The changes should reflect soon after publishing. - +- Your pull request will be reviewed and merged into `main` branch. +- The records will be published as soon as the PR is merged. +- The changes should reflect soon after publishing. ## Issues -* **Report an abusive domain** - Create a new issue with the label `report-abuse`. -* **Report a problem with your domain** - Create a new issue with the label `support`. -* **Suggestions** - Create a new issue with the label `suggestion`. -* **For any questions** - Create a new issue with the label `question`. -* **Report any other issues related to this repository** - Create a new issue with any label that fits. +- **Report an abusive domain** - Create a new issue with the label `report-abuse`. +- **Report a problem with your domain** - Create a new issue with the label `support`. +- **Suggestions** - Create a new issue with the label `suggestion`. +- **For any questions** - Create a new issue with the label `question`. +- **Report any other issues related to this repository** - Create a new issue with any label that fits. diff --git a/Dockerfile b/Dockerfile index d5a4de6b7..990a6e0b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,17 +5,18 @@ RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime RUN apt-get -y update RUN apt-get install -y nodejs npm curl wget dnsutils certbot --fix-missing +RUN apt-get install -y unzip -RUN npm i -g n yarn && n 15.11 +RUN bash -c "curl -fsSL https://bun.sh/install | bash -s 'bun-v1.0.15'" -RUN node -v +RUN ~/.bun/bin/bun -v WORKDIR /opt/app -COPY yarn.lock . +COPY bun.lockb . COPY package.json . -RUN yarn install +RUN ~/.bun/bin/bun install CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"] diff --git a/MAINTAINERS.md b/MAINTAINERS.md new file mode 100644 index 000000000..071673ba9 --- /dev/null +++ b/MAINTAINERS.md @@ -0,0 +1,12 @@ +# is-a.dev Team +| Name | GitHub | Role | +|:-:|-|-| +| Akshay | [@phenax](https://github.com/phenax) | Owner | +| William | [@wdhdev](https://github.com/wdhdev) | Administrator | +| CuteDog5695 | [@CuteDog5695](https://github.com/CuteDog5695) | Maintainer | +| Daniel | [@hackermondev](https://github.com/hackermondev) | Maintainer | +| DIBSTER | [@DEV-DIBSTER](https://github.com/DEV-DIBSTER) | Maintainer | +| MaskDuck | [@MaskDuck](https://github.com/MaskDuck) | Maintainer | +| Om | [@omsenjalia](https://github.com/omsenjalia) | Maintainer | +| orangc | [@orxngc](https://github.com/orxngc) | Maintainer | +| Stef | [@Stef-00012](https://github.com/Stef-00012) | Maintainer | diff --git a/README.md b/README.md index 74b9d107e..a2aff3b08 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- is-a-dev Banner + is-a.dev Banner

@@ -13,52 +13,48 @@

is-a-dev is a service that allows developers to get a sweet-looking ".is-a.dev" domain for their personal websites.

- Discord Server + Discord Server

+## Phishing emails alert +**We have been notified of scammers using emails in this repository to send phishing emails. Do NOT click any links in suspicious emails.** + +If you would like to remove your email, remove it from your JSON file and provide a separate contact method (preferably Discord). + +Leave the email field there, but just blank. Then add a separate contact method to your file. + +Please see more information in issue https://github.com/is-a-dev/register/issues/14802. + +## Issues +If you have any problems, feel free to [open a issue](https://github.com/is-a-dev/register/issues/new/choose). + +If you have an issue that contains confidental infomation, send an email to security@m.is-a.dev. + ## Register ### Manual Registration +> If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge). -- [Fork](https://github.com/is-a-dev/register/fork) this repository. -- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`. -- [Read the documentation](https://is-a.dev/docs). +- [Fork](https://github.com/is-a-dev/register/fork) and star this repository +- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev` +- [Read the documentation](https://www.is-a.dev/docs) - Your pull request will be reviewed and merged. *Make sure to keep an eye on it incase we need you to make any changes!* -- After the pull request is merged, please allow up to 24 hours for the changes to propagate. +- After the pull request is merged, please allow up to 24 hours for the changes to propagate - Enjoy your new `.is-a.dev` domain! -### CLI Registration +### Automated Registration +> [!WARNING] +> **When using automated registration, please ensure your records are valid. Please do NOT "test" out the system and create invalid PRs, it wastes maintainers' time.** -###### Source Code: https://github.com/wdhdev/is-a-dev-cli - -Install the CLI: - -```bash -npm install @is-a-dev/cli -g -``` - -Login to the CLI: - -```bash -is-a-dev login -``` - -Register a subdomain on the CLI: - -``` -is-a-dev register -``` +Join our [Discord server](https://discord.gg/is-a-dev-830872854677422150), head to the commands channel and run `/register`. The bot will ask you a few questions then will generate your PR and domain automatically. The bot also allows for domain deletion and editing. ## Status -You can check the uptime of our services on our [status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw). - -[![Uptime Robot - DNS](https://img.shields.io/uptimerobot/ratio/m787472645-ec25e3920c7af893a7c66f19?label=uptime%20-%20dns&style=for-the-badge)](https://stats.uptimerobot.com/zY4XKIRVzw/787472645) -[![Uptime Robot - Redirect](https://img.shields.io/uptimerobot/ratio/m787472617-240f4d61a5439a87becb2cf9?label=uptime%20-%20redirections&style=for-the-badge)](https://stats.uptimerobot.com/zY4XKIRVzw/787472617) - -### Similar Services -If you want to find services similar to is-a.dev, take a look on [free-for.life](https://free-for.life/#/?id=domains). +You can check the uptime of our services on our [status dashboard](https://is-a-dev.hrsn.dev). ### Donate If you like this project, please consider donating so we can keep this project running forever! Buy Me a Coffee Liberapay + +### Similar Services +If you want to find services similar to is-a.dev, take a look at [Free For Life](https://github.com/wdhdev/free-for-life#domains). diff --git a/SECURITY.md b/SECURITY.md index b382809f4..e6b236db7 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,6 +1,6 @@ # Security Policy -## Reporting a Vulnerability +## Reporting a vulnerability +You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repository. -You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repo. -For higher severity vulnerabilities and bugs, kindly email them to me at [akshay-n0@protonmail.com](mailto:akshay-n0@protonmail.com). +However, for **higher severity vulnerabilities and bugs**, please email security@m.is-a.dev. diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 000000000..502212010 Binary files /dev/null and b/bun.lockb differ diff --git a/default.nix b/default.nix index 51e03c2d0..bc0f66aa3 100644 --- a/default.nix +++ b/default.nix @@ -3,11 +3,10 @@ let inherit (nixpkgs) pkgs; nixPackages = with pkgs; [ - nodejs-16_x yarn docker-compose dnsutils - #certbot + bun ]; in pkgs.stdenv.mkDerivation { diff --git a/domains/00.json b/domains/00.json new file mode 100644 index 000000000..fe125c21b --- /dev/null +++ b/domains/00.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "rayrsn@proton.me" + }, + "record": { + "URL": "https://rayrsn.me/" + } +} diff --git a/domains/01.json b/domains/01.json new file mode 100644 index 000000000..fe125c21b --- /dev/null +++ b/domains/01.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "rayrsn@proton.me" + }, + "record": { + "URL": "https://rayrsn.me/" + } +} diff --git a/domains/011.json b/domains/011.json new file mode 100644 index 000000000..ace8aeeb8 --- /dev/null +++ b/domains/011.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamxani", + "email": "xenpei11@gmail.com" + }, + "record": { + "CNAME": "iamxani.github.io" + } +} diff --git a/domains/0ad.json b/domains/0ad.json new file mode 100644 index 000000000..e6ec978b1 --- /dev/null +++ b/domains/0ad.json @@ -0,0 +1,11 @@ +{ + "description": "0ad.is-a.dev", + "owner": { + "username": "broduer40", + "email": "broduer@aogamers.net", + "discord": "[AoG+] Broduer#0331" + }, + "record": { + "URL": "https://play0ad.com" + } +} diff --git a/domains/0l1v3r.json b/domains/0l1v3r.json new file mode 100644 index 000000000..653612f95 --- /dev/null +++ b/domains/0l1v3r.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "chuckchicken100", + "email": "", + "discord": "815256243786350594", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T8bRgPEutjHjEjKjSZNHRhoeLZVxW_dxgWIwpTe7r5vVqdbx-MtV23kRR7ZKYKO5fyRcvR0i-rxyVTqWyk141vjXvjvx0-op0G2EzSBfPUif_y9VrSXOe03MuIk0fE8J8QVxN5nYNFR4-mhamlVOml5EzQh2NJYtL0y6jyV2NNZn6xn0L2E_6wpNiszZoxCt7lmBmbN9r5pEA8n3CPca8XY9nDqSNwQIufuVkGoifmbluGWKMCJl1NJYBtBqtF70_5fDOTGAGi2aWqJ3ZRmJENvdnafjSOxK4HNYu1rqa7HeCSIW0EBsTfvcHZAyqVqMAXkaK-2wKJbWgsZmV7iaEQ.-i_4qpIVnvNZiYt-GHAjew.RPKfuVCpY1wTAP-uBHPZs-kduKC-cCB_rovn1uOJyIEgEZeOU3BQiHgzDdTNiitXiPKhLaWfg7A9VGYqEfJQt9aIoSoDGdWv_e46o4aKMhQ.TIzGWSSO6JchPkdCTKqn9g" + }, + + "record": { + "A": ["103.97.126.29"] + } + } + \ No newline at end of file diff --git a/domains/0v90.json b/domains/0v90.json new file mode 100644 index 000000000..98925033e --- /dev/null +++ b/domains/0v90.json @@ -0,0 +1,22 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/0v90/0v90.github.io", + "owner": { + "username": "0v90", + "discord": "651519394673065989", + "email": "" + + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.110.153" + ] + } + } + + + diff --git a/domains/0w0.json b/domains/0w0.json new file mode 100644 index 000000000..fbd001098 --- /dev/null +++ b/domains/0w0.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ae9lxcsRx9K7NJv-AcRXmgm-8sWQp-2e6Pxly82K9_797Wy3RjBtVGaq9snYtOkL-Qm9Oj845TiS8DV-ae7fPyWYwHgzrDj99tuRjVFyrvWfCbglvOWWHODsjV5lJpJZQjuHQn08O1Ptv69N5E2-imTQegZhcn5pkMiTCW8VpuXNXD_1Viu5_xSUYXYaAsaY-G0QYNLK3IPky8zorgdC4-5w23htVxmbiAMTtqHHOJx-wqv2R-xya96-BlQ_P8GtCTG5XJQzdqrqz630012T_tdD5VL5wbBbsCcWI4EoHqGZcBt4LhUL0GPnr9jnWuTcoBVyMSevG6plNjPF9wc6WQ.cOsFit33h3r9GZdCYQ8B3Q.iOkTaYYCBBWaWv9ZtDxpCL4ix4zMWwIYcIMuje17bYUcWom6plFOQFmG24WCucDMgbeMd_eM0NdttpHYRdl7VaM_E4zTUMViGInDWEO1ucI2whNYUt3Cf1Zev1851l44.eoIzam49yND7K-OzfY6Rag" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/0x1026.json b/domains/0x1026.json new file mode 100644 index 000000000..268a804f7 --- /dev/null +++ b/domains/0x1026.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0x1026", + "email": "me@hugovidafe.dev" + }, + "record": { + "URL": "https://hugovidafe.dev" + } +} diff --git a/domains/0xsurya.json b/domains/0xsurya.json deleted file mode 100644 index f12c9f802..000000000 --- a/domains/0xsurya.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "0xSuryax", - "email": "surya98613@gmail.com" - }, - "record": { - "A": ["38.242.141.34"] - } - } - \ No newline at end of file diff --git a/domains/0xzer0x.json b/domains/0xzer0x.json new file mode 100644 index 000000000..8b4dccf09 --- /dev/null +++ b/domains/0xzer0x.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "0xzer0x", + "email": "youssefessamasu@gmail.com" + }, + "record": { + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": [ + "forward-email=youssefessamasu@gmail.com", + "v=spf1 a include:spf.forwardemail.net include:_spf.google.com -all" + ] + } +} diff --git a/domains/1-train-ride-in-germany-is-300-euros.json b/domains/1-train-ride-in-germany-is-300-euros.json new file mode 100644 index 000000000..88200669e --- /dev/null +++ b/domains/1-train-ride-in-germany-is-300-euros.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "A": ["185.199.109.153","185.199.108.153","185.199.110.153","185.199.111.153"] + } +} diff --git a/domains/1.json b/domains/1.json new file mode 100644 index 000000000..ccf0df602 --- /dev/null +++ b/domains/1.json @@ -0,0 +1,10 @@ +{ + "description": "1.is-a.dev", + "owner": { + "username": "i-am-is-a-dev", + "email": "lx737456@gmail.com" + }, + "record": { + "A": ["89.106.200.1"] + } +} diff --git a/domains/104.json b/domains/104.json new file mode 100644 index 000000000..59cca2be0 --- /dev/null +++ b/domains/104.json @@ -0,0 +1,15 @@ +{ + "description": "Email thingy", + "owner": { + "username": "QuinceTart10", + "email": "", + "discord": "862644161156218891" + }, + "record": { + "MX": [ + "a8aacaa795f68ffd.mx1.emailprofi.seznam.cz", + "a8aacaa795f68ffd.mx2.emailprofi.seznam.cz" + ], + "TXT": "v=spf1 include:spf.seznam.cz ~all" + } +} diff --git a/domains/1111.json b/domains/1111.json new file mode 100644 index 000000000..0e948dbee --- /dev/null +++ b/domains/1111.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "PogMaster9001", + "email": "", + "discord": "1190052608346435597" + }, + + "record": { + "CNAME": "projectdevs.net" + } + } + diff --git a/domains/13nn07.json b/domains/13nn07.json new file mode 100644 index 000000000..ddf8a01a7 --- /dev/null +++ b/domains/13nn07.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/navandarnidhi/navandarnidhi.github.io", + "owner": { + "username": "navandarnidhi", + "email": "nidhi.navandar@mescoeorg.onmicrsoft.com" + }, + "record": { + "CNAME": "navandarnidhi.github.io" + } +} diff --git a/domains/18o4.json b/domains/18o4.json deleted file mode 100644 index 5e20f0c1a..000000000 --- a/domains/18o4.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "redirects to my website", - "repo": "https://github.com/18o4/18o4.github.io", - "owner": { - "username": "18o4", - "email": "", - "discord": "18O4#4350", - "discordUserID": "279894305630453760" - }, - "record": { - "URL": "https://18o4.tk" - } -} diff --git a/domains/1rogman.json b/domains/1rogman.json index 693de4e20..03ec19107 100644 --- a/domains/1rogman.json +++ b/domains/1rogman.json @@ -1,11 +1,11 @@ { - "description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.", - "repo": "https://github.com/EndingPencil/EndingPencil.github.io", - "owner": { - "username": "EndingPencil", - "email": "watsonsohil@gmail.com" - }, - "record": { - "CNAME": "EndingPencil.github.io" - } + "description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.", + "repo": "https://github.com/EndingPencil/EndingPencil.github.io", + "owner": { + "username": "EndingPencil", + "email": "watsonsohil@gmail.com" + }, + "record": { + "CNAME": "EndingPencil.github.io" + } } diff --git a/domains/200anxy.json b/domains/200anxy.json new file mode 100644 index 000000000..476e8e5f6 --- /dev/null +++ b/domains/200anxy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "200anxy", + "email": "aadarshnair.p@gmail.com" + }, + "record": { + "CNAME": "200anxy.github.io" + } +} diff --git a/domains/207.json b/domains/207.json new file mode 100644 index 000000000..92fec3e09 --- /dev/null +++ b/domains/207.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "merakesh207", + "email": "merakesh207@gmail.com" + }, + "record": { + "URL": "https://behance.net/merakesh207" + } +} diff --git a/domains/2096779623.json b/domains/2096779623.json index 98f4c4939..f474ee3dc 100644 --- a/domains/2096779623.json +++ b/domains/2096779623.json @@ -1,10 +1,10 @@ -{ - "owner": { - "username": "2096779623", - "email": "2096779623@qq.com", - "telegram": "utermux_blog" - }, - "record": { - "URL": "https://www.utermux.dev" - } -} +{ + "owner": { + "username": "2096779623", + "email": "2096779623@qq.com", + "telegram": "utermux_blog" + }, + "record": { + "URL": "https://www.utermux.dev" + } +} diff --git a/domains/21z.json b/domains/21z.json new file mode 100644 index 000000000..3bf4995f9 --- /dev/null +++ b/domains/21z.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "21Z", + "email": "", + "discord": "780356848737058857" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/2fa.phoenix.json b/domains/2fa.phoenix.json new file mode 100644 index 000000000..4d74122a1 --- /dev/null +++ b/domains/2fa.phoenix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PhoenixOrigin", + "email": "phoenixorigin171@gmail.com" + }, + "record": { + "A": ["130.162.166.134"] + } +} diff --git a/domains/2giosangmitom.json b/domains/2giosangmitom.json new file mode 100644 index 000000000..37e11d6c0 --- /dev/null +++ b/domains/2giosangmitom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "2giosangmitom", + "email": "yeuxacucodon.dev@proton.me" + }, + "record": { + "CNAME": "2giosangmitom.github.io" + } +} diff --git a/domains/37cut.json b/domains/37cut.json new file mode 100644 index 000000000..9a9bc8d7f --- /dev/null +++ b/domains/37cut.json @@ -0,0 +1,11 @@ +{ + "description": "Url redirect to cutt37.is-a.dev", + "repo": "https://github.com/37cut/37cut.github.io", + "owner": { + "username": "37cut", + "email": "cutt37@outlook.com" + }, + "record": { + "URL": "https://cutt37.is-a.dev" + } +} diff --git a/domains/3pls0de.json b/domains/3pls0de.json index 849a5e20c..0e1e6ae5e 100644 --- a/domains/3pls0de.json +++ b/domains/3pls0de.json @@ -1,11 +1,11 @@ -{ - "description": "3pls0de.is-a.dev.", - "repo": "https://github.com/3pls0de", - "owner": { - "username": "3pls0de", - "email": "naji.aka58@gmail.com" - }, - "record": { - "URL": "https://lostpipel.blogspot.com" - } -} \ No newline at end of file +{ + "description": "3pls0de.is-a.dev.", + "repo": "https://github.com/3pls0de", + "owner": { + "username": "3pls0de", + "email": "naji.aka58@gmail.com" + }, + "record": { + "URL": "https://lostpipel.blogspot.com" + } +} diff --git a/domains/4-m4t.json b/domains/4-m4t.json new file mode 100644 index 000000000..9a6c53bf3 --- /dev/null +++ b/domains/4-m4t.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "4-m4t", + "email": "e_serhat@hotmail.com" + }, + "record": { + "CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net" + } +} diff --git a/domains/404.json b/domains/404.json new file mode 100644 index 000000000..b3e8e1a95 --- /dev/null +++ b/domains/404.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "404Dev-404", + "email": "anthonyvaldes318+404@gmail.com" + }, + + "record": { + "CNAME": "404dev-404.github.io" + } +} diff --git a/domains/4217803c._improvmx.dhilipan.json b/domains/4217803c._improvmx.dhilipan.json new file mode 100644 index 000000000..1308b6706 --- /dev/null +++ b/domains/4217803c._improvmx.dhilipan.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "MysticalPvE", + "email": "", + "discord": "1229782675678826496", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.K-aVOrk2T-4Wp0VAaLx8W9V1QsToSmJJmlK-jJlb-Zzx6kpwvGMlemfsdLH4XQSksUlk6PD51_Mx7d83HzqgqiYb6zwx2-iSgfEn6fUKWlF09k1fWne_wS0sSjYiz6GluI6qNs9hh9buq19iGPVz9L16KWCvL0xnjQxBjVCiR0Q69p9Vaw3_5b7VEUnKQvomYkdbovZ2p10hzGmnrwtKkA0gboxJnqshcV-eUzav7LZJZOwbzoVPEODqdLbqCOlTBP4IJXNjkwKSNKsnQ6BorPydgmXNv4hCsuga3JKg2M438dLG9NK-H8U8Q4GHLk7sx797WY1EJ8AChvgojqX1Ag.OMEl4nD9pPVbIku9jIFcpA.qV3yol4qlMITrJUHTUtYxGLd7ARn8msshNlY6uMWmf8ZeIe7_RQdG-JV1f-rDEZLZX_FcDsE7c8kpOjy9ulW1uiFZW9lw-f0LEqywyLeZ94.K1K5YV-DWV_hIlL8X9l8jQ" + }, + + "record": { + "TXT": "4217803c2e3e461b9f07eb8be0320a79" + } + } + diff --git a/domains/44.json b/domains/44.json new file mode 100644 index 000000000..c150bfffe --- /dev/null +++ b/domains/44.json @@ -0,0 +1,11 @@ +{ + "description": "44.is-a.dev", + "repo": "https://github.com/9xN/9xN.github.io", + "owner": { + "username": "9xN", + "email": "0@fbi.ac" + }, + "record": { + "CNAME": "9xN.github.io" + } +} diff --git a/domains/4k5h4y.json b/domains/4k5h4y.json index 3985abb65..a7f76e8b0 100644 --- a/domains/4k5h4y.json +++ b/domains/4k5h4y.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "Akshay-Arjun", + "email": "akshayvollala779@gmail.com" + }, - { - "owner": { - "username": "Akshay-Arjun", - "email": "akshayvollala779@gmail.com" - }, - - "record": { - "URL": "https://akshay-arjun.github.io/Akshay-Arjun" - } - } - + "record": { + "URL": "https://akshay-arjun.github.io/Akshay-Arjun" + } +} diff --git a/domains/50x.json b/domains/50x.json new file mode 100644 index 000000000..753d855b4 --- /dev/null +++ b/domains/50x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MullerIsabella", + "email": "AlpineDreamer92@protonmail.com" + }, + "record": { + "CNAME": "suisse.onrender.com" + } +} diff --git a/domains/57.json b/domains/57.json new file mode 100644 index 000000000..6d3e7a757 --- /dev/null +++ b/domains/57.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fiftys7vencode", + "email": "potatogamer34579@gmail.com" + }, + "record": { + "A": ["185.199.108.153"] + } +} diff --git a/domains/6.json b/domains/6.json new file mode 100644 index 000000000..d7c943095 --- /dev/null +++ b/domains/6.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "URL": "https://shockbs.is-a.dev/" + } +} diff --git a/domains/600.json b/domains/600.json index feeb324c5..6df43d890 100644 --- a/domains/600.json +++ b/domains/600.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/5rq/5rq.github.io", - "owner": { - "username": "5rq", - "email": "600@fbi.ac" - }, - "record": { - "CNAME": "5rq.github.io" - } + "repo": "https://github.com/5rq/5rq.github.io", + "owner": { + "username": "5rq", + "email": "600@fbi.ac" + }, + "record": { + "CNAME": "5rq.github.io" + } } diff --git a/domains/62radio.json b/domains/62radio.json new file mode 100644 index 000000000..5d3264644 --- /dev/null +++ b/domains/62radio.json @@ -0,0 +1,12 @@ +{ + "description": "62radio.is-a.dev", + "repo": "https://github.com/radio-indonesia/radio-indonesia.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com", + "discord": "romanromannya#0" + }, + "record": { + "CNAME": "radio-indonesia.github.io" + } +} diff --git a/domains/69.json b/domains/69.json new file mode 100644 index 000000000..239044d30 --- /dev/null +++ b/domains/69.json @@ -0,0 +1 @@ +{"owner":{"username":"maskduck","email":"","discord":"716134528409665586"},"record":{"CNAME":"maskduck.pages.dev"}} diff --git a/domains/77.json b/domains/77.json new file mode 100644 index 000000000..1b9626783 --- /dev/null +++ b/domains/77.json @@ -0,0 +1,11 @@ +{ + "description": "7.is.a.dev why not", + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": ["89.106.200.1"] + } +} diff --git a/domains/8bit.json b/domains/8bit.json new file mode 100644 index 000000000..3645a0037 --- /dev/null +++ b/domains/8bit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "8-bittt", + "email": "8botted@gmail.com" + }, + "record": { + "URL": "https://replit.com/@8bittt?path=" + } +} diff --git a/domains/@.json b/domains/@.json index 36cd14e7b..4fe4c1133 100644 --- a/domains/@.json +++ b/domains/@.json @@ -2,8 +2,8 @@ "description": "The root domain for is-a.dev website", "repo": "https://github.com/is-a-dev/is-a-dev.github.io", "owner": { - "username": "phenax", - "email": "phenax5@gmail.com" + "username": "is-a-dev", + "email": "" }, "record": { "URL": "http://www.is-a.dev" diff --git a/domains/_acme-challenge.ai.esb.json b/domains/_acme-challenge.ai.esb.json new file mode 100644 index 000000000..bef1435a1 --- /dev/null +++ b/domains/_acme-challenge.ai.esb.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ" + }, + + "record": { + "CNAME": "af252befb545b3b27e96b5b9._acme.deno.dev" + } + } + diff --git a/domains/_acme-challenge.api.juststudio.json b/domains/_acme-challenge.api.juststudio.json new file mode 100644 index 000000000..1d3e92ea1 --- /dev/null +++ b/domains/_acme-challenge.api.juststudio.json @@ -0,0 +1,11 @@ +{ + "description": "JustStudio.API", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "CNAME": "ec675496b91489e24d221965._acme.deno.dev" + } +} diff --git a/domains/_acme-challenge.cdn.esb.json b/domains/_acme-challenge.cdn.esb.json new file mode 100644 index 000000000..00111381b --- /dev/null +++ b/domains/_acme-challenge.cdn.esb.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ" + }, + + "record": { + "CNAME": "fe4cfa72d5862865fb2759c8._acme.deno.dev" + } + } + diff --git a/domains/_acme-challenge.juqwtf.json b/domains/_acme-challenge.juqwtf.json new file mode 100644 index 000000000..e8fc66acc --- /dev/null +++ b/domains/_acme-challenge.juqwtf.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "denboy0123", + "email": "pochtaproverka01@gmail.com" + }, + "record": { + "TXT": [ + "FZo9g0GqRYR-fhmWc1QzbycfV5UZIE4bwh42BI81NDQ", + "V1N8tuJvEcUtltxMXLRvP0U1_jaAgsSJJ89MgyxpWUk" + ] + } +} diff --git a/domains/_acme-challenge.katz.json b/domains/_acme-challenge.katz.json new file mode 100644 index 000000000..434720b24 --- /dev/null +++ b/domains/_acme-challenge.katz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Bananalolok", + "email": "", + "discord": "bananalol7678" + }, + + "record": { + "CNAME": "77c60266e3d311053d5b2fe1._acme.deno.dev" + } +} diff --git a/domains/_acme-challenge.oioioi.json b/domains/_acme-challenge.oioioi.json new file mode 100644 index 000000000..1bb254789 --- /dev/null +++ b/domains/_acme-challenge.oioioi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VaibhavSys", + "email": "vaibhavsys@protonmail.com" + }, + "record": { + "CNAME": "b00be066-ce45-455f-bb4a-de9f6dc14e0c.acmedns.infinityfree.net" + } +} diff --git a/domains/_acme-challenge.parrot.json b/domains/_acme-challenge.parrot.json new file mode 100644 index 000000000..4e34f2525 --- /dev/null +++ b/domains/_acme-challenge.parrot.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ" + }, + + "record": { + "CNAME": "51de1eeaf31ce67a1c3f69aa._acme.deno.dev" + } + } + diff --git a/domains/_acme-challenge.raafey.json b/domains/_acme-challenge.raafey.json new file mode 100644 index 000000000..59d86c9fe --- /dev/null +++ b/domains/_acme-challenge.raafey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RaafeyRaza", + "email": "raafeyraza1@gmail.com" + }, + "record": { + "CNAME": "dc6fbbae-3aba-4a5d-9741-4b7a386b9151.acmedns.infinityfree.net" + } +} diff --git a/domains/_acme-challenge.us.mcstatus.json b/domains/_acme-challenge.us.mcstatus.json new file mode 100644 index 000000000..55ec2e523 --- /dev/null +++ b/domains/_acme-challenge.us.mcstatus.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ" + }, + + "record": { + "CNAME": "e6797667cd820de372823eb4._acme.deno.dev" + } + } + \ No newline at end of file diff --git a/domains/_discord.0xviel.json b/domains/_discord.0xviel.json new file mode 100644 index 000000000..0b0a270aa --- /dev/null +++ b/domains/_discord.0xviel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nobuyaki", + "email": "contact@0xviel.my.id", + "discord": "445073800850046977" + }, + "record": { + "TXT": "dh=3553e848300a672fa174b27085b19d419d95ef75" + } +} diff --git a/domains/_discord.aboutjes.json b/domains/_discord.aboutjes.json new file mode 100644 index 000000000..f39aebfeb --- /dev/null +++ b/domains/_discord.aboutjes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "octyn-yt", + "email": "simplelogin-newsletter.idealize471@simplelogin.com" + }, + "record": { + "TXT": "dh=492dbadf8b48232a357717e9d54511826184e352" + } +} diff --git a/domains/_discord.acronical.json b/domains/_discord.acronical.json new file mode 100644 index 000000000..b4ebaa00f --- /dev/null +++ b/domains/_discord.acronical.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com", + "discord": "627045949998497792" + }, + "record": { + "TXT": "dh=b787b100fba1eaf9de455acb506e5f6fdcf1e829" + } +} diff --git a/domains/_discord.adoqet.json b/domains/_discord.adoqet.json new file mode 100644 index 000000000..c24ed9b26 --- /dev/null +++ b/domains/_discord.adoqet.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "adoqet", + "email": "adoqet@gmail.com", + "discord": "614408768733708288" + }, + "record": { + "TXT": "dh=3b5f69bbeb63aef097096698547869d0d47e36fb" + } +} diff --git a/domains/_discord.ak47.json b/domains/_discord.ak47.json new file mode 100644 index 000000000..2c41598d8 --- /dev/null +++ b/domains/_discord.ak47.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "octyn-yt", + "email": "simplelogin-newsletter.idealize471@simplelogin.com" + }, + "record": { + "TXT": "dh=a55cf3b9bc75b12674dfdd8e1d89219da7607931" + } +} diff --git a/domains/_discord.akatsuki2555.json b/domains/_discord.akatsuki2555.json new file mode 100644 index 000000000..1169636d9 --- /dev/null +++ b/domains/_discord.akatsuki2555.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Akatsuki2555", + "email": "akatsuki2555@proton.me", + "discord": "1226900455037075509" + }, + "record": { + "TXT": "dh=30962b6c5cdbbd4629fdf0da9d0bf4c717f065e9" + } +} \ No newline at end of file diff --git a/domains/_discord.akcord.json b/domains/_discord.akcord.json new file mode 100644 index 000000000..1773b9414 --- /dev/null +++ b/domains/_discord.akcord.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AKCord", + "email": "shrestha.aeniv@gmail.com" + }, + "record": { + "TXT": "dh=fc3eadcea1712e3159f516950cf20f2397647f63" + } +} diff --git a/domains/_discord.akshtt.json b/domains/_discord.akshtt.json new file mode 100644 index 000000000..e3e6e9228 --- /dev/null +++ b/domains/_discord.akshtt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "akshtt-dev", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "TXT": "dh=09032e888f853fbc8b540d4ff64dc7abd828f107" + } +} diff --git a/domains/_discord.alora.json b/domains/_discord.alora.json new file mode 100644 index 000000000..606b655fa --- /dev/null +++ b/domains/_discord.alora.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com" + }, + "record": { + "TXT": "dh=c5c6a95b0839d3a31d0ca2ae91236c9dbee84fd6" + } +} diff --git a/domains/_discord.alpha.json b/domains/_discord.alpha.json new file mode 100644 index 000000000..16f82ef6a --- /dev/null +++ b/domains/_discord.alpha.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e" + } +} diff --git a/domains/_discord.amol254542.json b/domains/_discord.amol254542.json new file mode 100644 index 000000000..1c4f32863 --- /dev/null +++ b/domains/_discord.amol254542.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amol234545", + "email": "amolmilton@gmail.com" + }, + "record": { + "TXT": "dh=383b5b12e8a16256189d4e54677f7c217ddde07a" + } +} diff --git a/domains/_discord.ann.json b/domains/_discord.ann.json new file mode 100644 index 000000000..384c75b9c --- /dev/null +++ b/domains/_discord.ann.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "true1ann", + "email": "true1ann@tutamail.com" + }, + "record": { + "TXT": "dh=6eb0f066bdc17804b776bb9cb7b351dfb831a22e" + } +} diff --git a/domains/_discord.api.stefdp.json b/domains/_discord.api.stefdp.json new file mode 100644 index 000000000..b6e9ec775 --- /dev/null +++ b/domains/_discord.api.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "TXT": "dh=e71ddcd3beca6bbd44125eb4d861d4cf28eed0c8" + } +} diff --git a/domains/_discord.arman.json b/domains/_discord.arman.json new file mode 100644 index 000000000..e864e1387 --- /dev/null +++ b/domains/_discord.arman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ItzArman09", + "email": "itz.armxn@outlook.com" + }, + "record": { + "TXT": "dh=508604a0381985579d65a0e9c8b241bc6186cc44" + } +} diff --git a/domains/_discord.arvindt.json b/domains/_discord.arvindt.json new file mode 100644 index 000000000..ac2bd1772 --- /dev/null +++ b/domains/_discord.arvindt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ARVIN3108", + "email": "31arvin08@gmail.com" + }, + "record": { + "TXT": "dh=f4de5717bd2c2b490973ead6cdd9a7c81d38fe5b" + } +} \ No newline at end of file diff --git a/domains/_discord.ashishagarwal.json b/domains/_discord.ashishagarwal.json new file mode 100644 index 000000000..f6ecafb7b --- /dev/null +++ b/domains/_discord.ashishagarwal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ashishagarwal2023", + "email": "code.with.aasheesh@gmail.com" + }, + "record": { + "TXT": "dh=d5e203382ac94458c0d7d26b4864676898e72ea0" + } +} diff --git a/domains/_discord.azhammakestrash.json b/domains/_discord.azhammakestrash.json new file mode 100644 index 000000000..91fa17ed6 --- /dev/null +++ b/domains/_discord.azhammakestrash.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AzhamProdLive", + "email": "websitedomain.regroup588@passinbox.com", + "discord": "797534115935027271" + }, + "record": { + "TXT": "dh=b3b9be236f1e61048cecc94f8e3e6a4accf9d6b5" + } +} diff --git a/domains/_discord.bkms.json b/domains/_discord.bkms.json new file mode 100644 index 000000000..7c76299e0 --- /dev/null +++ b/domains/_discord.bkms.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bkmsstudio", + "email": "mmini15354424@gmail.com" + }, + "record": { + "TXT": "dh=28e7384e869c06a1ca87f91b10fd14aefc7f4433" + } +} diff --git a/domains/_discord.blog.vornexx.json b/domains/_discord.blog.vornexx.json new file mode 100644 index 000000000..3ae537de8 --- /dev/null +++ b/domains/_discord.blog.vornexx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vornexx", + "email": "ajay.ramnath@courvix.com" + }, + "record": { + "TXT": "dh=9834c3a11e7647463c3f62cbbbb0aa0442f503f6" + } +} diff --git a/domains/_discord.blue.json b/domains/_discord.blue.json new file mode 100644 index 000000000..d83536f91 --- /dev/null +++ b/domains/_discord.blue.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "B1ue-Dev", + "email": "b1uedev@outlook.com", + "twitter": "b1uedev" + }, + "record": { + "TXT": "dh=17587955722bcb2745e20304b98cb5cbda716054" + } +} diff --git a/domains/_discord.c.json b/domains/_discord.c.json new file mode 100644 index 000000000..e0d3ad199 --- /dev/null +++ b/domains/_discord.c.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "TXT": "dh=dff53e3c9534a4606fe07fef0142ab53acf4a0e4" + } +} diff --git a/domains/_discord.caiden.json b/domains/_discord.caiden.json new file mode 100644 index 000000000..c1815cf52 --- /dev/null +++ b/domains/_discord.caiden.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Caiden-P", + "email": "iididhejejdj@gmail.com", + "discord": "850820069310201896" + }, + "record": { + "TXT": "dh=9edde4bc2a73469cb8653bf05ae22226397bc77a" + } +} diff --git a/domains/_discord.cala.json b/domains/_discord.cala.json new file mode 100644 index 000000000..2d8b99ebd --- /dev/null +++ b/domains/_discord.cala.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "calamitywoah", + "email": "krivojta@gmail.com" + }, + "record": { + "TXT": "dh=2cd3fcd551a8d871e135c5613dccb097d9abcb03" + } +} diff --git a/domains/_discord.capivara.json b/domains/_discord.capivara.json new file mode 100644 index 000000000..dd582ca1c --- /dev/null +++ b/domains/_discord.capivara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gabrielasants", + "email": "gabrielasantos030@gmail.com" + }, + "record": { + "TXT": "dh=a755ef48b5344a0fb3b986db5b0e2304caced68c" + } +} diff --git a/domains/_discord.catto24.json b/domains/_discord.catto24.json new file mode 100644 index 000000000..4b167fc50 --- /dev/null +++ b/domains/_discord.catto24.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "catto24", + "email": "catto24@proton.me" + }, + "record": { + "TXT": "dh=cb090910b5977bb43674000fab99c3a76492ac78" + } +} diff --git a/domains/_discord.chaotic.json b/domains/_discord.chaotic.json new file mode 100644 index 000000000..e8cbec23d --- /dev/null +++ b/domains/_discord.chaotic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ChaoticChaosTheGreat", + "email": "ryan.ryanabraham@gmail.com" + }, + "record": { + "TXT": "dh=99c69f88a933d5ec20fe830e8543f7e7c63646cd" + } +} diff --git a/domains/_discord.chiko.json b/domains/_discord.chiko.json new file mode 100644 index 000000000..1ce885b25 --- /dev/null +++ b/domains/_discord.chiko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chikoiko", + "email": "itsmezark05@gmail.com", + "discord": "1152640014832902245" + }, + "record": { + "TXT": "dh=bcbc8ef1f361e6190ebf1ffb09b84800ac8cd341" + } +} diff --git a/domains/_discord.ciaobot.json b/domains/_discord.ciaobot.json new file mode 100644 index 000000000..3de0ba048 --- /dev/null +++ b/domains/_discord.ciaobot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Ciao287", + "email": "", + "discord": "687333016921440317" + }, + "record": { + "TXT": "dh=7033eb795b01d2b28ceb767f8e34a4dffa268406" + } +} diff --git a/domains/_discord.clyron.json b/domains/_discord.clyron.json new file mode 100644 index 000000000..6b3020b3c --- /dev/null +++ b/domains/_discord.clyron.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "theclyron", + "email": "onenonlyclyron@gmail.com" + }, + "record": { + "TXT": "dh=08fd1efb158b657de5293ec643a8426a20a93ede" + } +} diff --git a/domains/_discord.codesuthar.json b/domains/_discord.codesuthar.json new file mode 100644 index 000000000..1d18066b6 --- /dev/null +++ b/domains/_discord.codesuthar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CodeSuthar", + "email": "AdityaSuthar13@outlook.com" + }, + "record": { + "TXT": "dh=c9d95514358feae443357e8366bfa224cb7709e1" + } +} diff --git a/domains/_discord.crischutu07.json b/domains/_discord.crischutu07.json new file mode 100644 index 000000000..d23dd3689 --- /dev/null +++ b/domains/_discord.crischutu07.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "crischutu07", + "email": "crischutu07owo@gmail.com" + }, + "record": { + "TXT": "dh=fffa03e2584e730d2c0166aaa6fe846542439b19" + } +} diff --git a/domains/_discord.cupglass.json b/domains/_discord.cupglass.json new file mode 100644 index 000000000..15f8ddf82 --- /dev/null +++ b/domains/_discord.cupglass.json @@ -0,0 +1,13 @@ +{ + "description": "My base website. Very epik tbh 💥💥", + "repo": "https://github.com/cupglassdev/cupglassdev.github.io", + "owner": { + "username": "cupglassdev", + "email": "", "twitter":"https://x.com/cupglassdev", +"lahelu":"https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev" + }, + "record": { + "TXT": ["dh=1a7a67b133e464ce252912f15ae575f3a74b7c45"] + } +} diff --git a/domains/_discord.cutedog5695.json b/domains/_discord.cutedog5695.json new file mode 100644 index 000000000..ae46c9666 --- /dev/null +++ b/domains/_discord.cutedog5695.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "", + "discord": "716306888492318790", + "twitter": "cutedog5695" + }, + "record": { + "TXT": "dh=f85ce7cf4e6ff1f6136767a12c041fbbcb446045" + } +} diff --git a/domains/_discord.cuxdi.json b/domains/_discord.cuxdi.json new file mode 100644 index 000000000..66ea3b294 --- /dev/null +++ b/domains/_discord.cuxdi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cuxdii", + "email": "vihar2408@gmail.com" + }, + "record": { + "TXT": "dh=afaf5843216f288f6b9d6d2b06b66bcc396b0479" + } +} diff --git a/domains/_discord.daamin.json b/domains/_discord.daamin.json new file mode 100644 index 000000000..6b2e20a5a --- /dev/null +++ b/domains/_discord.daamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Daamin909", + "email": "ashai.daamin@gmail.com" + }, + "record": { + "TXT": "dh=bc215d4445233c4ff76582ad1b83c8b277c2713e" + } +} diff --git a/domains/_discord.dag.json b/domains/_discord.dag.json new file mode 100644 index 000000000..d9bebef1f --- /dev/null +++ b/domains/_discord.dag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "daglaroglou", + "email": "christos.daglaroglou@gmail.com" + }, + "record": { + "TXT": "dh=835bc23146b3e22366c53fc75b2e573d30f02730" + } +} diff --git a/domains/_discord.darkdevil.json b/domains/_discord.darkdevil.json new file mode 100644 index 000000000..8b19c5b7d --- /dev/null +++ b/domains/_discord.darkdevil.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "LRxDarkDevil", + "email": "", + "discord": "707565643200724993", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Y3TZa4qDHPnsPvTI65DC4aNjRm5GeZ6p3QPMWkHzAJV3XmYPK88vXOcBjTIjdhl0WJq7y8VqaoAVMeRVrjK_7-tIR4T5xKm43wEv2YLyt5IKBIZR66UZ5CpeCxh_Lw_vENSdY0K2cJhWb7c99Ytc9-ZWfKOuo1NE5-ycNpFRNHzcMnqeeqK7kIjPTEDUuFoo_Gsb_cSvEcQi4CU7HGYVw_MCf-1zwGFrneBVvPOyhWF9y4ObJu1AE8lI0xPk-BYHRL2OP-xvU3qjHrf3J3PR1lC2JxXNZ90IevZ2smBYtXpKGRb3uww34XwF-cFX9R2QaXXO06gGrmsLM7-sYHyWMQ.Ci7-CteTV4_CkmZNn-XoKg.UtEZid919zv3RjoY9WD17nMUi7Q70Ab-fFhi9g8zd7AwLN-Zc7JpkEthG7_-V-gQupao7qYFD0paq-IaIlPt8jrCPUPTZGIcBmUH1mOG4Qk.ZhtLnN9ARZebAq0oP5uePA" + }, + + "record": { + "TXT": "dh=8c77ed7246a59a97a79bd853da4df0d375f2558d" + } + } + \ No newline at end of file diff --git a/domains/_discord.debtlessflea.json b/domains/_discord.debtlessflea.json new file mode 100644 index 000000000..500699a06 --- /dev/null +++ b/domains/_discord.debtlessflea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DebtlessFlea", + "email": "citizen.caption020@passfwd.com" + }, + "record": { + "TXT": "dh=ec2194e7089856af252f3cffdbc4378b193c4cd0" + } +} \ No newline at end of file diff --git a/domains/_discord.devansh.json b/domains/_discord.devansh.json new file mode 100644 index 000000000..deeaea321 --- /dev/null +++ b/domains/_discord.devansh.json @@ -0,0 +1,12 @@ +{ + "description": "dc domain connect", + "repo": "https://github.com/devanshyadav2010/register", + "owner": { + "username": "devanshyadav2010", + "email": "dev8adam576@gmail.com", + "twitter": "devanshyadav" + }, + "record": { + "TXT": "dh=d14eedf95cd289bfd460f05eff5cca7a8a28d7f0" + } + } diff --git a/domains/_discord.drake.json b/domains/_discord.drake.json new file mode 100644 index 000000000..a75677cf9 --- /dev/null +++ b/domains/_discord.drake.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "drake-dot-o", + "email": "", + "discord": "197905102865039371", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mmPhx-ID9xqljgGC66-Zsd9EUwS4V3yi_xWUWAzQlcF42kfOFbW9SqczuiXOwuVXLyx5RaJoPCOhma2N_EgIcIxmi5zbPbW8u22M3-L0a3NRwLs0GHTs2JiCKyuKjQ-hxNqgY61oV2B_X3utIgMkG_oBgJp3F6EzN7Nawq-pSYAkhRRnhbcEFa0sQ7XQsTttoAszEZcJIORdxwdfDFfI91-Y5TJOudpT0Fd2LA8K0TSs8xcLO9uQKZwvoqiZQ4T-uEdIr54siJqzIyqKxgtMdcT_44xm6tabGT0F44K2X9Ns3hhj7VgXAxb3WRFjRdMIBqspRPs0kvqGgdEp9wNUlg.eC5L5l-_oNRn_fR_JaZQ9w.KyJyCZ9z-IvwVj1NWiY7aFa_7yOauoO-2i1L8pN60dqIafeVBdpt5mhI_6yiEZkxLsebFIZHX8YLhLRYiN3uXg7zm8E7sZveLzKwAZ6ARUE.gLvOaKt6jNjnsAk00eL4Bw" + }, + + "record": { + "TXT": "dh=25c86cb259851742d4f9d6168db474328c6b27d0" + } + } + \ No newline at end of file diff --git a/domains/_discord.dscbmr.json b/domains/_discord.dscbmr.json new file mode 100644 index 000000000..32ee53f3e --- /dev/null +++ b/domains/_discord.dscbmr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SRPVT", + "email": "syedyaseeralirayan@gmail.com" + }, + "record": { + "TXT": "dh=7864dbaf534fd1fe06980cef458e294c317390ad" + } +} diff --git a/domains/_discord.duckysolucky.json b/domains/_discord.duckysolucky.json new file mode 100644 index 000000000..e5e96d7c9 --- /dev/null +++ b/domains/_discord.duckysolucky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DuckySoLucky", + "email": "robertkovac160@gmail.com" + }, + "record": { + "TXT": "dh=7bb43942d51685c0980f38345bf6a13e4498157a" + } +} diff --git a/domains/_discord.dwigoric.json b/domains/_discord.dwigoric.json new file mode 100644 index 000000000..70acc2c97 --- /dev/null +++ b/domains/_discord.dwigoric.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dwigoric", + "email": "dwigoric@pm.me", + "discord": "295391820744228867" + }, + + "record": { + "TXT": "dh=0dbe5579faf14819c58607e423f955be71311f60" + } +} diff --git a/domains/_discord.dyno.json b/domains/_discord.dyno.json new file mode 100644 index 000000000..abe4ec2b7 --- /dev/null +++ b/domains/_discord.dyno.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DynoW", + "email": "naffets0@gmail.com", + "discord": "455608238335983617" + }, + "record": { + "TXT": "dh=8bb2a3b679cd393d772165a0baf0eea849b5c698" + } +} diff --git a/domains/_discord.e.json b/domains/_discord.e.json new file mode 100644 index 000000000..b2b0a44d2 --- /dev/null +++ b/domains/_discord.e.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.E52gF-yRvCrEPcTRHxMbPUqD3h9rFOcrEu7zeUC8-bcjtSOLrw7TwnWKn0ca_trDmDAf0Se7lxfbhmMwv06eCgrZn-fBgaYD3YeQ6rHlmL3L6WQgx16qhF-KdjyyPRGCdPmSfeoowR45AxY_48QLixoDzNIxWte8CUvJ_nCmC2NKhA84HRD8qudA0w7I0riwr9J7JCz1NLkGaGqLg_Oi4IDClom8nOhb3cB4w0BgK5umz0BmiXH5SibsfG7fkFJ4ETvQzzIrNH_w8TLkNRGv5hs3lSBEobx4Qe_BCq1KHuSHo-LmE-Aw74G96GgVHATECw0RW2sVyK3OnIOTZKzwDg.efXKzrCWSo9Ze3Xir-KhUg.PCY3rWSr7tGJsVM_wF5VKnRB2Tk2QKNKS6pZPJJH9XirQY7TJocpov1F0xZxI4mzll5FjRgP_DxsErWY-p3YqLDUSk5lJ7RywtFpfr4wsLOrjEEcwj_yYNAVphDqxsI3.OL1QnPKxsZtqZXbrhbnk2w" + }, + + "record": { + "TXT": "dh=2812b2fbe8af8bd92dc2c1248d0d3a71a5b8555c" + } + } + \ No newline at end of file diff --git a/domains/_discord.enderpoint.json b/domains/_discord.enderpoint.json new file mode 100644 index 000000000..dac6e915f --- /dev/null +++ b/domains/_discord.enderpoint.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "EnderPoint07", + "email": "", + "discord": "DotM38#5497" + }, + "record": { + "TXT": "dh=1ad21660e3db8fba8f5f18150a89514bee83350e" + } +} diff --git a/domains/_discord.eryquicc.json b/domains/_discord.eryquicc.json new file mode 100644 index 000000000..178836ab0 --- /dev/null +++ b/domains/_discord.eryquicc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "eryquicc", + "email": "fathirzaidanmaulana@gmail.com", + "discord": "629939924589608961" + }, + "record": { + "TXT": "dh=7efcfd9b81fc26c7d20c998cbc23866c0d6bc407" + } +} diff --git a/domains/_discord.esb.json b/domains/_discord.esb.json new file mode 100644 index 000000000..48477d96b --- /dev/null +++ b/domains/_discord.esb.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fiKDfHFdeXEvcx-9T9B_2QxG8p8P-fC3uT5So98T78XutxFp6Nc6qElNABob_nxlsiOK9N1RIqeRdDfPDN1jMATvN5NbJK3djCOaSDU7gb7qXVKpNHJKERtcSBVfFP4GzEgnyFP2x6y0USWUI3qjuuyhEP73lVvBkI8Xwi9ijhVGPiJI2OXMh4SRLvUlTXxSyi0EmK5GJEZNMan0Phxhe1vIN4HXialEHu5X9z85VVDaPnTKtZUM0cv_YSlnL5KbHxL8o82zNdiuTX1XV2gjACcmk1-YW_AhH3pUOvCNlbodewyVG9Q0whaLZvtccOnsbVst8dzc2STxanASBN2idA.hMiZtTdAF3ZgNO_mRHziWw.fImfROdecxp7xIqWTq_k-a339nOvZCxndcY8pHEQ6ZMYJ0gNwSBWbm3W8ob1k83z9DvgrYFwBansZ4JrlG7VU_o4HPAmB0sHPMpp8EsHpOQ1IORmNM5sMUEJbBeXeekG.n_nbnPDDQbi7MqrJXIc5xw" + }, + + "record": { + "TXT": "dh=fb569bc3fb022455ac370440b925e73fbf40b75d" + } + } + \ No newline at end of file diff --git a/domains/_discord.evie.json b/domains/_discord.evie.json new file mode 100644 index 000000000..dc5fd1346 --- /dev/null +++ b/domains/_discord.evie.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Socketlike", + "discordId": "285329659023851520", + "discord": "encyclopedic", + "email": "" + }, + "record": { + "TXT": "dh=2ffdb09f9be5f3f51fe2089c4cced6ec296d490e" + } +} diff --git a/domains/_discord.f.json b/domains/_discord.f.json new file mode 100644 index 000000000..fcde71dbd --- /dev/null +++ b/domains/_discord.f.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "iHategithub9000", + "email": "", + "discord": "836012649959522384", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IoMNwO2tYrmgvq3ChAPc1qf6eDMgrJfRbXdqbzBf8ywDPU9Ra5CAUcuBemL6SDw8kc7f6NLEAw14OV_zYwhEVVOWAr6g33gWIvtMQMaQFxp45c-SSOgSxFTPNIKhY5Cy7WirCXF0QBpaJkYn11BStJ19R2o33pzDEQD8wgabeDj72fe2E_kGwhjaDpIUvupkoa-07gXdrZwqA2SZezzi4RMGwTyw3BjKFfCliiEkjIHbyd8V8xy-mQsp0sIDzGWdt7JssjQg8bmPaqH_IAWH66SM6YqGriPSMrDWsgW1ziuJmWTv90LxbnNfsNohiNM0dwwfQjtIbapSm-BAeuaidQ.FWMYF89IinoFZTo43A6OCA.XE1-D9gvFshr40e-76KUCONloYxBJnfGpCgZhkryiJRh6wYkLfE6fImr9A2-AcbhKvuzKQrf9X5U0kquwWGxGU5GMX9AlwBFMvJHXJNVh08.rCvo-LUbkRogE7My_TgyWQ" + }, + + "record": { + "TXT": "dh=dc67333f26184dd81afd46574761e6243b4b1fd8" + } + } + \ No newline at end of file diff --git a/domains/_discord.founderfie.json b/domains/_discord.founderfie.json new file mode 100644 index 000000000..c6393a490 --- /dev/null +++ b/domains/_discord.founderfie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Founderfie", + "email": "director@founderfie.in" + }, + "record": { + "TXT": "dh=d0051682cdad6866306cdb315ae5abff7e314dcc" + } +} diff --git a/domains/_discord.fran.json b/domains/_discord.fran.json new file mode 100644 index 000000000..3ce849246 --- /dev/null +++ b/domains/_discord.fran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xzonix", + "email": "imahalojigi@gmail.com" + }, + "record": { + "TXT": "dh=9ffde6acccff8c74faeb599818e2901110d15fa5" + } +} diff --git a/domains/_discord.ftn.json b/domains/_discord.ftn.json new file mode 100644 index 000000000..bb7497e1a --- /dev/null +++ b/domains/_discord.ftn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "furthir", + "email": "furthir@pm.me" + }, + "record": { + "TXT": "dh=a80a210e492f34a4378ffbb73352034cdc60fbb3" + } +} diff --git a/domains/_discord.funn.json b/domains/_discord.funn.json new file mode 100644 index 000000000..d89e44cc3 --- /dev/null +++ b/domains/_discord.funn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "funnsam", + "email": "funnsam8@gmail.com" + }, + "record": { + "TXT": "dh=901b963730610d7e0f1d4f29c48658f871d6e71d" + } +} diff --git a/domains/_discord.gabek.json b/domains/_discord.gabek.json new file mode 100644 index 000000000..8646e0122 --- /dev/null +++ b/domains/_discord.gabek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gabekgfx", + "email": "bussines.gabrys@gmail.com" + }, + "record": { + "TXT": "dh=02ed193dbc1e396517abe81c2c5d9a007a4a6e25" + } +} diff --git a/domains/_discord.gattinhosbot.json b/domains/_discord.gattinhosbot.json new file mode 100644 index 000000000..aedad44a3 --- /dev/null +++ b/domains/_discord.gattinhosbot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "TXT": "dh=03933534192052d1ca904fb933de9acde3b4ed48" + } +} diff --git a/domains/_discord.gioco.json b/domains/_discord.gioco.json new file mode 100644 index 000000000..249cbd259 --- /dev/null +++ b/domains/_discord.gioco.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "giocoliere", + "email": "simcrigjeki@gmail.com" + }, + "record": { + "TXT": "dh=4301bad793b7475c64673daa37b9599f04aafdd8" + } +} diff --git a/domains/_discord.gonpvp.json b/domains/_discord.gonpvp.json new file mode 100644 index 000000000..ae0bf235a --- /dev/null +++ b/domains/_discord.gonpvp.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "iammehdib", + "email": "", + "discord": "949450590084292608", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OR-_LLE86-QZu2pD6feFI0Y3Kt93KL6A46ZN2IU_3DKZ2vHUrWnyEGQbP2svew27jqbdEzQSswWCpXByUS-jJKDYYZtjIBm0xuPqu-IuOO0wgAXQhMWCrvJuRJrT-Hhlf9dXu5LelKEAQlB8Qeid5FBdrjNst5xWMv8rlWHYINTScb-5oPBeHzt9GDKwPGvZOQRsVs_m9bJq8au1ISq_MakkQmMIRR_nBYN4ReSziJx-uVN09sbmSv8cSbBbZ9QZGvDgTF2GyRJYh301N8IeFBB2B5XzeA-ws93ajlVDkWcl7afuIXJEM8aBSHLWWJ_b8ocbvB-A-i3LXiE7-vkK5g.e-RplW2mFIb9IShDR4Zupg.MvnWmk7N-m6NJEdnLxfRPMX3pLB2X6XoXkLzENwH8rH7_ZD7k_-9vg9LFyVeSK927cKriwIIJ45quwC7wuB2pH8jk1RxnrgLCAaEnO2rVbk.iWR394yzOgznDeoa_mg5Jw" + }, + + "record": { + "TXT": "dh=ba636b73eeffb865ffaf0fc772f7677061ff0982" + } + } + \ No newline at end of file diff --git a/domains/_discord.goyal.json b/domains/_discord.goyal.json new file mode 100644 index 000000000..0cb21f7f8 --- /dev/null +++ b/domains/_discord.goyal.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "dgbkn", + "discord": "somegumtank", + "email": "anandrambkn@gmail.com" + }, + "record": { + "TXT": "dh=f6d08bad0d4c2032a55386a83761bc8ddef363fa" + } +} diff --git a/domains/_discord.gunman.json b/domains/_discord.gunman.json new file mode 100644 index 000000000..d4ad3f37f --- /dev/null +++ b/domains/_discord.gunman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MukuJhansi", + "email": "mukundagrawal800@gmail.com" + }, + "record": { + "TXT": "dh=be7d82f3a9cf950d2aa2d3379ddf345aff4859f0" + } +} diff --git a/domains/_discord.hafi.json b/domains/_discord.hafi.json new file mode 100644 index 000000000..6d62018a5 --- /dev/null +++ b/domains/_discord.hafi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HafiTheCat", + "email": "", + "discord": "hafi_the_cat" + }, + "record": { + "TXT": "dh=1ae8d3b3460ce837d26bf5cfaa473a1bdc13460f" + } +} diff --git a/domains/_discord.hchs-bot.json b/domains/_discord.hchs-bot.json new file mode 100644 index 000000000..b01a1f70f --- /dev/null +++ b/domains/_discord.hchs-bot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jimmy20180130", + "email": "jimmy20180130@gmail.com", + "twitter": "@jimmyyo45639462", + "discord": "xiaoxi_tw#0" + }, + "record": { + "TXT": "dh=1001abef3571d8f5aa7d6d94543d8409f9e786ea" + } +} diff --git a/domains/_discord.hilight3r.json b/domains/_discord.hilight3r.json new file mode 100644 index 000000000..a78cebdb3 --- /dev/null +++ b/domains/_discord.hilight3r.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HIlight3R", + "email": "", + "discord": "632272741000544259", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lEEbmOZavCkur0apEhD0MigNx6rzV3Kqhd9_Lw4Wxt7U7b0rcV779rEFB1Fm4LdwKAVJJ8_MeDm1jf0y14lGqQotXsvYzRKOCBk5t7vLtS_541WkodNwOPbAUV_g2KBaq6MynjnwX5786OLkuRJE-QnxwflxQRQHtL76xYJV3d7UVmZk0ppSUxyCw5SdSXUp7zgoJiTE2JIshtR5dFULQCyH9QK7gVpNFJBwaoTJeoRsCOy_oYoXVhYysYhX94tubtwKzE4xSDmQW4UbOo8yLRNTIo-PkyuY6cBD4yYvueRcTAd_UChS12Y27QSFhQq78I7WLaE7u4cV060Th1fEmA.9kQc0tIg1PyfXJtKgbiBSQ.uFTPklnOgLBqnu-dg7ZsCEZ_QrMiuyiHY60IgI1X3CdE1kSQckWTdApOQF8AXTC0inYYfmSpfvzP02Rcgo3Z9vyrckWG_ZSJbmfKR2SOpeN_Cq94jwKAZQXW0U45LxB1.cYkl_VljmQbyvurLc7hF6Q" + }, + "record": { + "TXT": "dh=0d11368eef3be6f6195da6a3a1b55663a1bafb38" + } +} diff --git a/domains/_discord.imide.json b/domains/_discord.imide.json new file mode 100644 index 000000000..06a6c486d --- /dev/null +++ b/domains/_discord.imide.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "imide", + "email": "", + "discord": "555915168932954112" + }, + "record": { + "TXT": "dh=5bac029dd3873cf20dba45eaec03433d5afe5608" + } +} diff --git a/domains/_discord.imm0nv1nhtv.json b/domains/_discord.imm0nv1nhtv.json new file mode 100644 index 000000000..dcce76bce --- /dev/null +++ b/domains/_discord.imm0nv1nhtv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imm0nv1nhtv", + "email": "windows10phamvinh+github@gmail.com" + }, + "record": { + "TXT": "dh=05d77c5d6895f487e96ea956a6a985fa532fa0ee" + } +} diff --git a/domains/_discord.jadebetty.json b/domains/_discord.jadebetty.json new file mode 100644 index 000000000..eaa74e709 --- /dev/null +++ b/domains/_discord.jadebetty.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JadeBetty", + "email": "", + "discord": "758617912566087681" + }, + "record": { + "TXT": "dh=94e84997f373f2235c194f248969912336c5c0e8" + } +} diff --git a/domains/_discord.jirafey.json b/domains/_discord.jirafey.json new file mode 100644 index 000000000..ca5092c75 --- /dev/null +++ b/domains/_discord.jirafey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jirafey", + "email": "e9282425-361f-427d-a3dd-249a564432b9@anonaddy.me" + }, + "record": { + "TXT": "dh=3c80d94ed181b223255b5fbf35f8fda6a402058f" + } +} diff --git a/domains/_discord.joesepp.json b/domains/_discord.joesepp.json new file mode 100644 index 000000000..5ebef5bdc --- /dev/null +++ b/domains/_discord.joesepp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joesepph", + "email": "markwer.dev@proton.me" + }, + "record": { + "TXT": "dh=9ce2fab52773c35cecf4a10133d502e0644e19cb" + } +} diff --git a/domains/_discord.joetroll.json b/domains/_discord.joetroll.json new file mode 100644 index 000000000..a0776f3fa --- /dev/null +++ b/domains/_discord.joetroll.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "trolljoe", + "email": "joetechtok@proton.me" + }, + "record": { + "TXT": "dh=0ebb35a3def7a74049859c553b91d46c3eccbf3f" + } +} diff --git a/domains/_discord.joshua.json b/domains/_discord.joshua.json new file mode 100644 index 000000000..d2caa64b4 --- /dev/null +++ b/domains/_discord.joshua.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dwigoric", + "email": "dwigoric@gmail.com", + "discord": "295391820744228867" + }, + + "record": { + "TXT": "dh=091e5d13b0f360e03d1ae8a746c5bed81da680e2" + } +} diff --git a/domains/_discord.justdeveloper.json b/domains/_discord.justdeveloper.json new file mode 100644 index 000000000..fc8da2bd5 --- /dev/null +++ b/domains/_discord.justdeveloper.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "lk.qq@ya.ru" + }, + "record": { + "TXT": "dh=a468556178a0bac462fa84043545b67b982e7fe0" + } +} diff --git a/domains/_discord.juststudio.json b/domains/_discord.juststudio.json new file mode 100644 index 000000000..0241907fb --- /dev/null +++ b/domains/_discord.juststudio.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "TXT": "dh=33f1a73c2f587fed7b0f3c03f18e1bf4591f8aec" + } +} diff --git a/domains/_discord.kappurumedia.json b/domains/_discord.kappurumedia.json new file mode 100644 index 000000000..0c1f534ad --- /dev/null +++ b/domains/_discord.kappurumedia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CyrusCore", + "email": "abramsatria7@gmail.com" + }, + "record": { + "TXT": "dh=ce5c5f60ae66a7f508b44432fe2d9a0b51038fa8" + } +} diff --git a/domains/_discord.keiran.json b/domains/_discord.keiran.json new file mode 100644 index 000000000..0de82ec5b --- /dev/null +++ b/domains/_discord.keiran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KeiranScript", + "email": "keiran0@proton.me" + }, + "record": { + "TXT": "dh=eb547686041eae67bd1cc80bb3ce863b47199c02" + } +} diff --git a/domains/_discord.kenny.json b/domains/_discord.kenny.json new file mode 100644 index 000000000..8ca4f5fa4 --- /dev/null +++ b/domains/_discord.kenny.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "KennySB-dev", + "email": "kennybugeja@gmail.com", + "discord": "kenny.sb" + }, + "record": { + "TXT": "dh=aaf780c8f8f85a096d0adea5223a0fdfd643de02" + } +} diff --git a/domains/_discord.kleb.json b/domains/_discord.kleb.json new file mode 100644 index 000000000..a69be2446 --- /dev/null +++ b/domains/_discord.kleb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KrazyKleb", + "email": "krazykleb@outlook.com" + }, + "record": { + "TXT": "dh=3e455eb128d3f2996cd8226c6666872d617d7bdf" + } +} diff --git a/domains/_discord.koriumm.json b/domains/_discord.koriumm.json new file mode 100644 index 000000000..32251e8fe --- /dev/null +++ b/domains/_discord.koriumm.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Koriumm", + "email": "KoriummLive@gmail.com", + "discord": "hong.kong" + }, + "record": { + "TXT": "dh=6bb4d63a46cfa4b087744e44ff2a2b68398bcf0f" + } +} diff --git a/domains/_discord.korrykatti.json b/domains/_discord.korrykatti.json new file mode 100644 index 000000000..17edd0917 --- /dev/null +++ b/domains/_discord.korrykatti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "korrykatti", + "email": "8nctvx7gi@mozmail.com" + }, + "record": { + "TXT": "dh=75cc1a7bea6d033882a519e2d3fb4dd85314d6ec" + } +} diff --git a/domains/_discord.krazy.json b/domains/_discord.krazy.json new file mode 100644 index 000000000..136b23b6d --- /dev/null +++ b/domains/_discord.krazy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KrazyKleb", + "email": "krazykleb@outlook.com" + }, + "record": { + "TXT": "dh=9b437fc3639b73eb33fe9b536d5ad6acbec42dd1" + } +} diff --git a/domains/_discord.krishanu.json b/domains/_discord.krishanu.json new file mode 100644 index 000000000..cddbd0ee3 --- /dev/null +++ b/domains/_discord.krishanu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "krishanunaskar", + "email": "portfolio.krishanu@gmail.com", + "discord": "977802250716078210" + }, + + "record": { + "TXT": "dh=1603c613efb962d2d1557e92b16fe8caf00d0680" + } +} diff --git a/domains/_discord.krishnan.json b/domains/_discord.krishnan.json new file mode 100644 index 000000000..76332d52c --- /dev/null +++ b/domains/_discord.krishnan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "krishnans2006", + "email": "krishnans2006@gmail.com" + }, + "record": { + "TXT": "dh=fb4689a2ce0128317b7371c97ce6cc9c1940d73e" + } +} diff --git a/domains/_discord.krunch.json b/domains/_discord.krunch.json new file mode 100644 index 000000000..cc0a0db9b --- /dev/null +++ b/domains/_discord.krunch.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RadioactivePotato", + "email": "", + "discord": "krunchiekrunch._." + }, + "record": { + "TXT": "dh=df2bf9fb87a1dc3ee29c6ddfa51ed86da28581c5" + } +} diff --git a/domains/_discord.kuba.json b/domains/_discord.kuba.json new file mode 100644 index 000000000..4555aca5e --- /dev/null +++ b/domains/_discord.kuba.json @@ -0,0 +1,15 @@ +{ + "description": "_discord.kuba is a subdomain for verification of Discord's domain ownership system.", + "owner": { + "telegram": "idkuba", + "username": "kbvivi", + "email": "kbvivi.contact@gmail.com", + "discord": "105170831130234880" + }, + "repo": "https://github.com/kbvivi/kuba.lol", + "record": { + "TXT": [ + "dh=4f43d84403713773fa9506963218fe01cfd9b61d" + ] + } +} diff --git a/domains/_discord.l7neg.json b/domains/_discord.l7neg.json new file mode 100644 index 000000000..090bf45bc --- /dev/null +++ b/domains/_discord.l7neg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "l7neg", + "email": "l7negdev@gmail.com", + "discord": "669453086418534400" + }, + "record": { + "TXT": "dh=5d787c6b4618def8d0af7492ae43cbe337c6675d" + } +} diff --git a/domains/_discord.lasty.json b/domains/_discord.lasty.json new file mode 100644 index 000000000..887e589c2 --- /dev/null +++ b/domains/_discord.lasty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "me0w-0", + "email": "lasty@outlook.in" + }, + "record": { + "TXT": "dh=c380482ea03623c429b2750e9daa2f2778dc18b8" + } +} diff --git a/domains/_discord.letum.json b/domains/_discord.letum.json new file mode 100644 index 000000000..4d36f8459 --- /dev/null +++ b/domains/_discord.letum.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "amoramicae", + "discord": "1252631745514180790", + "email": "" + }, + "record": { + "TXT": "dh=d49386149c842861e763ac8bf5ce74c93414ce5a" + } +} diff --git a/domains/_discord.lewdhutao.json b/domains/_discord.lewdhutao.json new file mode 100644 index 000000000..60c4f4a41 --- /dev/null +++ b/domains/_discord.lewdhutao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LewdHuTao", + "email": "lewdhutao@shittybot.xyz" + }, + "record": { + "TXT": "dh=b54d35b2dcde4ad6184e155736f8fd9911772204" + } +} diff --git a/domains/_discord.linksrayan.json b/domains/_discord.linksrayan.json new file mode 100644 index 000000000..f6a20e2ca --- /dev/null +++ b/domains/_discord.linksrayan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "syedrayangames", + "email": "syedrayangames@gmail.com" + }, + "record": { + "TXT": "dh=9978fb189e392bec25b857297f914f34ef65ffb7" + } +} diff --git a/domains/_discord.lumix.json b/domains/_discord.lumix.json new file mode 100644 index 000000000..83962b4e7 --- /dev/null +++ b/domains/_discord.lumix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "o-lumix", + "email": "bylumixxx@gmail.com" + }, + "record": { + "TXT": "dh=bbcffd54d5f1b8489e6641a569f55d5e82a7a32f" + } +} diff --git a/domains/_discord.meesam.json b/domains/_discord.meesam.json new file mode 100644 index 000000000..9d67256b3 --- /dev/null +++ b/domains/_discord.meesam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meesam4687", + "email": "meesam4687@gmail.com" + }, + "record": { + "TXT": "dh=f7e6c74947af4ca6f07d83d6b2fba1fcb965c9a6" + } +} diff --git a/domains/_discord.meywy.json b/domains/_discord.meywy.json new file mode 100644 index 000000000..c45f63440 --- /dev/null +++ b/domains/_discord.meywy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Meywy", + "email": "meywyy@gmail.com" + }, + "record": { + "TXT": "dh=67bbe9b7f65f85288f9235e79cde1dbab8dc825f" + } +} diff --git a/domains/_discord.minhphan.json b/domains/_discord.minhphan.json new file mode 100644 index 000000000..931081253 --- /dev/null +++ b/domains/_discord.minhphan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MinhPhan1203", + "email": "phan48788@gmail.com" + }, + "record": { + "TXT": "dh=78c7c89ac00d07ec34dd5e1d68289a3a877353dd" + } +} diff --git a/domains/_discord.mrstickypiston.json b/domains/_discord.mrstickypiston.json new file mode 100644 index 000000000..c846e3961 --- /dev/null +++ b/domains/_discord.mrstickypiston.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "MrStickyPiston", + "email": "mr.sticky.piston@gmail.com", + "discord": "700766242268774471" + }, + + "record": { + "TXT": "dh=bf6dee9491a16ba5f5e3f6550e1fe4640843323e" + } + } + \ No newline at end of file diff --git a/domains/_discord.mwa.json b/domains/_discord.mwa.json new file mode 100644 index 000000000..bb21e3b42 --- /dev/null +++ b/domains/_discord.mwa.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "totallynotmwa", + "email": "", + "discord": "totallynotmwa" + }, + "record": { + "TXT": "dh=7d4809eb409755939787cbc69a2de54a863b32d8" + } +} diff --git a/domains/_discord.mxritz.json b/domains/_discord.mxritz.json new file mode 100644 index 000000000..4dacc65db --- /dev/null +++ b/domains/_discord.mxritz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mxritzdev", + "email": "contact@mxritz.dev" + }, + "record": { + "TXT": "dh=01795372b646a8a36087b00130313eda00b40928" + } +} diff --git a/domains/_discord.myrdin.json b/domains/_discord.myrdin.json new file mode 100644 index 000000000..8b73e6b53 --- /dev/null +++ b/domains/_discord.myrdin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Myrdincx", + "email": "myrdincx@gmail.com" + }, + "record": { + "TXT": "dh=66640cb07a3d5f325ece17597144b38af7b75ec9" + } +} diff --git a/domains/_discord.nekitori17.json b/domains/_discord.nekitori17.json new file mode 100644 index 000000000..97571ee8e --- /dev/null +++ b/domains/_discord.nekitori17.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nekitori17", + "email": "cuongnguyen286641@gmail.com", + "discord": "nekitorihakari" + }, + "record": { + "TXT": "dh=8849bd42df7ed435ec3e75b68585a930ec3634b0" + } +} \ No newline at end of file diff --git a/domains/_discord.neon.json b/domains/_discord.neon.json new file mode 100644 index 000000000..dea66936a --- /dev/null +++ b/domains/_discord.neon.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GoodBoyNeon", + "discord": "neonthedeveloper", + "twitter": "NeonTheNerd", + "email": "goodboyneon03@gmail.com" + }, + "record": { + "TXT": "dh=9179ff512ac0562aeebd4d418a565cd7208cdfb2" + } +} diff --git a/domains/_discord.niksne.json b/domains/_discord.niksne.json new file mode 100644 index 000000000..0d7a19eb1 --- /dev/null +++ b/domains/_discord.niksne.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NiKSneMC", + "email": "contact@niksne.ru" + }, + "record": { + "TXT": "dh=47ed92cf32dd1f8ab41a7dd00ee21d1e09fc8317" + } +} diff --git a/domains/_discord.nikymetaa.json b/domains/_discord.nikymetaa.json new file mode 100644 index 000000000..05d81f346 --- /dev/null +++ b/domains/_discord.nikymetaa.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nikytap1n", + "email": "anhky726@gmail.com", + "discord": "1007521768761729094" + }, + "record": { + "TXT": "dh=0d03c1e4a0e12d0e7190cea1571ec61cb3ba0101" + } +} diff --git a/domains/_discord.oc.json b/domains/_discord.oc.json new file mode 100644 index 000000000..ca3feed6f --- /dev/null +++ b/domains/_discord.oc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "TXT": "dh=a46c846585142f2290edfa87de14a47c01715d15" + } +} diff --git a/domains/_discord.okinea.json b/domains/_discord.okinea.json new file mode 100644 index 000000000..0a77c016c --- /dev/null +++ b/domains/_discord.okinea.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "okineadev", + "discord": "okineadev", + "telegram": "okinea", + "email": "81070564+okineadev@users.noreply.github.com" + }, + "record": { + "TXT": "dh=72f6dea86d79bda34d2c61e1edb3037954caac82" + } +} diff --git a/domains/_discord.orangc.json b/domains/_discord.orangc.json new file mode 100644 index 000000000..dcdfb506a --- /dev/null +++ b/domains/_discord.orangc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "TXT": "dh=d27c8c015aa5f1be96c0c468e091a0958dd1c1dc" + } +} diff --git a/domains/_discord.orange.json b/domains/_discord.orange.json new file mode 100644 index 000000000..f211bc75e --- /dev/null +++ b/domains/_discord.orange.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "TXT": "dh=7e7e671a8b44d02fde9ab6f6df7baf94086c96fd" + } +} diff --git a/domains/_discord.owo.json b/domains/_discord.owo.json new file mode 100644 index 000000000..21dea334f --- /dev/null +++ b/domains/_discord.owo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "TXT": "dh=f05ab12fac60a5257c0ebc18895228ee3ec397d3" + } +} diff --git a/domains/_discord.oxmc.json b/domains/_discord.oxmc.json new file mode 100644 index 000000000..330958e8a --- /dev/null +++ b/domains/_discord.oxmc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "oxmc", + "email": "oxmc7769.mail@gmail.com", + "discord": "oxmc7769" + }, + "record": { + "TXT": "dh=6493e80ff0645ec8c706643ae6e357066becb660" + } +} diff --git a/domains/_discord.painscreen.json b/domains/_discord.painscreen.json new file mode 100644 index 000000000..08cf77287 --- /dev/null +++ b/domains/_discord.painscreen.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "iHategithub9000", + "email": "", + "discord": "836012649959522384", + "reddit": "u/ahhlifeeee" + }, + + "record": { + "TXT":"dh=7e6fb461ca0baaa88aa3fd36db70d4f8efa67675" + } + } diff --git a/domains/_discord.paul.json b/domains/_discord.paul.json new file mode 100644 index 000000000..4f6f6efb3 --- /dev/null +++ b/domains/_discord.paul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotKaskus", + "email": "kaskus45@proton.me" + }, + "record": { + "TXT": "dh=47c4b20ad8d876bd40060dd5cee8a4a201378626" + } +} diff --git a/domains/_discord.pig.json b/domains/_discord.pig.json new file mode 100644 index 000000000..332ae06de --- /dev/null +++ b/domains/_discord.pig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ipigtw", + "email": "diegogamingtw@gmail.com" + }, + "record": { + "TXT": "dh=3f12653d72696e056aa42fc684e3177a5de4b7ba" + } +} diff --git a/domains/_discord.piste.json b/domains/_discord.piste.json new file mode 100644 index 000000000..043fb9f30 --- /dev/null +++ b/domains/_discord.piste.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zpiste", + "email": "contact@piste.dev" + }, + "record": { + "TXT": "dh=896e7262fdc9ab140d9c5b137e41917e8512a6bd" + } +} diff --git a/domains/_discord.ploszukiwacz.json b/domains/_discord.ploszukiwacz.json new file mode 100644 index 000000000..e41ea70af --- /dev/null +++ b/domains/_discord.ploszukiwacz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PlOszukiwaczDEV", + "email": "ploszukiwacz1@gmail.com" + }, + "record": { + "TXT": "dh=eaa22a150696d8482b787e7ec7b05b3512224995" + } +} diff --git a/domains/_discord.poked.json b/domains/_discord.poked.json new file mode 100644 index 000000000..2f54d094c --- /dev/null +++ b/domains/_discord.poked.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PokedWasTaken", + "email": "pokedwastaken@gmail.com", + "discord": "poked" + }, + "record": { + "TXT": "dh=14c9c8708542baf32a78da0ac413184b02e43486" + } +} diff --git a/domains/_discord.potatochips0706.json b/domains/_discord.potatochips0706.json new file mode 100644 index 000000000..f447f2aea --- /dev/null +++ b/domains/_discord.potatochips0706.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "potato0706", + "email": "potatochips0706@gmail.com" + }, + "record": { + "TXT": "dh=0eeef9c4f4ec2b1309eec477bd8170e116d3b1d9" + } +} diff --git a/domains/_discord.priyanshu.json b/domains/_discord.priyanshu.json new file mode 100644 index 000000000..de00307ca --- /dev/null +++ b/domains/_discord.priyanshu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Priyansxu", + "email": "cloudypriyanshu@gmail.com", + "discord": "priyansxu" + }, + "record": { + "TXT": "dh=4784b7e772166e35d7f9a41207e1ddf7e3d57f82" + } +} diff --git a/domains/_discord.push.json b/domains/_discord.push.json new file mode 100644 index 000000000..b827037a4 --- /dev/null +++ b/domains/_discord.push.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pushingcc", + "email": "pushing@mailfence.com" + }, + "record": { + "TXT": "dh=63d8f2f88286c81885273cdf5f07364b15884ff6" + } +} diff --git a/domains/_discord.raccoon.json b/domains/_discord.raccoon.json new file mode 100644 index 000000000..f14a64ce6 --- /dev/null +++ b/domains/_discord.raccoon.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "nilsraccoon", + "email": "", + "discord": "1129507464589627512", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PPnoIJfcoL_7yxUSqZflrlb75Q3se_Tt1I62wfjtmAQ-SQoJnScuTko8x83owshF2icNswmUe5tn7f3DbxJYDnnIlumVntt0CezIbQEocX_x8TCMtRuTcTvD4ueeBQsxnBmEtvfKPsZj5Razij8afJmoUwgLJVmBwsqWzEdtYXBhcuJRwa0X-7LTx_1UKBPRhuoAbUUCyXLpnczz1O8q0ZUNLZE1fiIlpF-wvZV9n807Vq9_CdAPsywBKdBEp7bzdBl-J_Tz9eDL7fon71moFHCd9HK2m-KWJZx9WkspaTt7DQ4fgqj47VyvZKDtjyaAILpYQjlzE5AlLmMF54Sgew.m3UG6A4GKt7d98bD7Ipfdw.NJwkUVeZFpfRumoeOQA8ip8Uv-T74jhtnBIrtwQw6wWoBpOQMiIFmefxRWVvGqH2BZWfyupRFExmMqxmzLUIMZBwmNtwW7Six9ixDYXZPWM.nM4AkCd7tHSfBFyQ7313Jw" + }, + + "record": { + "TXT": "dh=e9381b84c8007443b186820d32a3797bd8fa537d" + } + } + \ No newline at end of file diff --git a/domains/_discord.ravener.json b/domains/_discord.ravener.json new file mode 100644 index 000000000..74860950c --- /dev/null +++ b/domains/_discord.ravener.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ravener", + "email": "ravener.anime@gmail.com", + "twitter": "RavenRavener", + "discord": "292690616285134850" + }, + "record": { + "TXT": "dh=da7bf917ef77c49f85bb9303d1703d0f10f492d8" + } +} diff --git a/domains/_discord.receiptify.json b/domains/_discord.receiptify.json new file mode 100644 index 000000000..053353cea --- /dev/null +++ b/domains/_discord.receiptify.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "TXT": "dh=4ded2f0ba889f8dad38ad210e9a015c180dcc6c8" + } +} diff --git a/domains/_discord.riku.json b/domains/_discord.riku.json new file mode 100644 index 000000000..d429c336e --- /dev/null +++ b/domains/_discord.riku.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rikuxyz", + "email": "rikukagenou@gmail.com" + }, + "record": { + "TXT": "dh=fb048a2833345c205c4d76f9e7a44a13b180967f" + } +} diff --git a/domains/_discord.riviox.json b/domains/_discord.riviox.json new file mode 100644 index 000000000..f58c79501 --- /dev/null +++ b/domains/_discord.riviox.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "riviox", + "email": "rivioxyt@hotmail.com", + "discord": "1200520669570539620" + }, + + "record": { + "TXT": "dh=dd0ace532148756be1fc56725f272b263adb8978" + } +} diff --git a/domains/_discord.rllanonymous.json b/domains/_discord.rllanonymous.json new file mode 100644 index 000000000..fdc343de9 --- /dev/null +++ b/domains/_discord.rllanonymous.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RLLanonymous", + "email": "ethanweirich31@gmail.com" + }, + "record": { + "TXT": "dh=da8ae85aafa7325f95bd440a972eb5efa90c45f6" + } +} diff --git a/domains/_discord.rrcoder0167.json b/domains/_discord.rrcoder0167.json new file mode 100644 index 000000000..94386ec93 --- /dev/null +++ b/domains/_discord.rrcoder0167.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rrcoder0167", + "email": "riddhiman.rana@gmail.com" + }, + "record": { + "TXT": "dh=edffc018717818b3b5679949d15c4d3014187e1f" + } +} diff --git a/domains/_discord.rusky.json b/domains/_discord.rusky.json new file mode 100644 index 000000000..d347894a7 --- /dev/null +++ b/domains/_discord.rusky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RuskyDev", + "email": "iamayaanalee@gmail.com" + }, + "record": { + "TXT": "dh=cb120c45e7e8c3ff2e65938b1e2fdf9d2f18707f" + } +} diff --git a/domains/_discord.sanooj.json b/domains/_discord.sanooj.json new file mode 100644 index 000000000..6d1aa5537 --- /dev/null +++ b/domains/_discord.sanooj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sanoojes", + "email": "sanoojes6371@gmail.com" + }, + "record": { + "TXT": "dh=e486a386ca77d0104403742c5e9955c337ab70ec" + } +} diff --git a/domains/_discord.satindar.json b/domains/_discord.satindar.json new file mode 100644 index 000000000..c1e90be25 --- /dev/null +++ b/domains/_discord.satindar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "satindar31", + "email": "satindar@satindar-is.me" + }, + "record": { + "TXT": "dh=68721fc8451ae56bc306d470eb43f2127e0f9970" + } +} diff --git a/domains/_discord.sdp.json b/domains/_discord.sdp.json new file mode 100644 index 000000000..6c40942f7 --- /dev/null +++ b/domains/_discord.sdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "TXT": "dh=a34d656a6fb91723bfe4f87e413345df85ca74f7" + } +} diff --git a/domains/_discord.seria.json b/domains/_discord.seria.json new file mode 100644 index 000000000..3eb6d4560 --- /dev/null +++ b/domains/_discord.seria.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "seriaati", + "email": "seria.ati@gmail.com", + "discord": "seria_ati" + }, + "record": { + "TXT": "dh=bbebabaaf56930459c8954d414197dddbc96ef11" + } +} diff --git a/domains/_discord.sewt.json b/domains/_discord.sewt.json new file mode 100644 index 000000000..2ab351d09 --- /dev/null +++ b/domains/_discord.sewt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + }, + "record": { + "TXT": "dh=a34e8bb281bffd5d738efe81e189ab6ef231ebb5" + } +} diff --git a/domains/_discord.shan.json b/domains/_discord.shan.json new file mode 100644 index 000000000..0a25a1dd1 --- /dev/null +++ b/domains/_discord.shan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adwaith-Shan-Pk", + "email": "mail@adwaithshan.rf.gd" + }, + "record": { + "TXT": "dh=edc2f8a1ed533b91a794ced9244cb4fa8a138531" + } +} diff --git a/domains/_discord.shing.json b/domains/_discord.shing.json new file mode 100644 index 000000000..81fbb0f5a --- /dev/null +++ b/domains/_discord.shing.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShingSemicolon", + "email": "Shing.XD.0602@gmail.com" + }, + "record": { + "TXT": "dh=df5daefdc7745f38295b3f89ac5de5373eec9c6c" + } +} diff --git a/domains/_discord.shy.json b/domains/_discord.shy.json new file mode 100644 index 000000000..d06766437 --- /dev/null +++ b/domains/_discord.shy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ImShyMike", + "email": "", + "discord": "582648583635992622" + }, + "record": { + "TXT": "dh=4277dadd7134f6e2ee439faf5377801a9eec7b2c" + } +} diff --git a/domains/_discord.shymega.json b/domains/_discord.shymega.json new file mode 100644 index 000000000..55ad48b75 --- /dev/null +++ b/domains/_discord.shymega.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shymega", + "email": "shymega@shymega.org.uk" + }, + "record": { + "TXT": "dh=43b627cccb9f6828d48ec7db6a573824bccfabc5" + } +} diff --git a/domains/_discord.status.ciaobot.json b/domains/_discord.status.ciaobot.json new file mode 100644 index 000000000..80a194d66 --- /dev/null +++ b/domains/_discord.status.ciaobot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Ciao287", + "email": "", + "discord": "687333016921440317" + }, + "record": { + "TXT": "dh=5b1ae56adf1959519abbb008b4803ee9911ff1b6" + } +} diff --git a/domains/_discord.stefdp.json b/domains/_discord.stefdp.json new file mode 100644 index 000000000..e0d13c96d --- /dev/null +++ b/domains/_discord.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "TXT": "dh=f6d71b43aecaa5a4ea3534d21f11f6b0e4559d8a" + } +} diff --git a/domains/_discord.sussyrayan.json b/domains/_discord.sussyrayan.json new file mode 100644 index 000000000..c78384ca1 --- /dev/null +++ b/domains/_discord.sussyrayan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "syedrayangames", + "email": "syedrayangames@gmail.com" + }, + "record": { + "TXT": "dh=634d6d19cba1fa609a7e88e098292bcec9198aa7" + } +} diff --git a/domains/_discord.tat2008.json b/domains/_discord.tat2008.json new file mode 100644 index 000000000..7f4ae134f --- /dev/null +++ b/domains/_discord.tat2008.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tat2008", + "email": "tuan.trananh2008@gmail.com" + }, + + "record": { + "TXT": "dh=9abe38f80f0a7adbf9ef20a7048ff7dd399d984b" + } +} diff --git a/domains/_discord.tay.json b/domains/_discord.tay.json new file mode 100644 index 000000000..0d3727a5d --- /dev/null +++ b/domains/_discord.tay.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tayrp", + "email": "mystixmew@gmail.com", + "discord": "1050531216589332581" + }, + "record": { + "TXT": "dh=e7e657ac53ef369ebb204320dd3fce49a25ed959" + } +} diff --git a/domains/_discord.tee.json b/domains/_discord.tee.json new file mode 100644 index 000000000..72f9cf2f9 --- /dev/null +++ b/domains/_discord.tee.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tayrp", + "email": "mystixmew@gmail.com", + "discord": "1050531216589332581" + }, + "record": { + "TXT": "dh=a15b4e8395d7033db9d69d9961dd8c15194a4cbe" + } +} diff --git a/domains/_discord.thatoddshade.json b/domains/_discord.thatoddshade.json new file mode 100644 index 000000000..6f7fc8d1f --- /dev/null +++ b/domains/_discord.thatoddshade.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "thatoddshade", + "email": "thatoddshade+contact@proton.me", + "discord": "thatoddshade" + }, + "record": { + "TXT": "dh=51cf54deca00dbc60a7d6f7985307a726223fdd8" + } +} diff --git a/domains/_discord.thenoppy12.json b/domains/_discord.thenoppy12.json new file mode 100644 index 000000000..4ed5817f9 --- /dev/null +++ b/domains/_discord.thenoppy12.json @@ -0,0 +1,12 @@ +{ + "description": "Discord Domain Verify", + "repo": "https://github.com/thenoppy12/thenoppy12.github.io", + "owner": { + "username": "BussyBakks", + "email": "lengochuykiengiang@gmail.com", + "discord": ".thenoppy12" + }, + "record": { + "TXT": "dh=a865dfb9b8ef277f5edfaad346ddbbcfcba85b71" + } +} diff --git a/domains/_discord.toast.json b/domains/_discord.toast.json new file mode 100644 index 000000000..13c896aec --- /dev/null +++ b/domains/_discord.toast.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lightly-toasted", + "email": "tooast@duck.com" + }, + "record": { + "TXT": "dh=bfb579423bd225af45d72942fe5c646b0504b2c6" + } +} diff --git a/domains/_discord.tobez.json b/domains/_discord.tobez.json new file mode 100644 index 000000000..76330cf99 --- /dev/null +++ b/domains/_discord.tobez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tobezdev", + "email": "therealtobes28@gmail.com" + }, + "record": { + "TXT": "dh=64624183b9e763aa7a812ddf39b0ae9261491182" + } +} diff --git a/domains/_discord.tomgxz.json b/domains/_discord.tomgxz.json new file mode 100644 index 000000000..36e55c167 --- /dev/null +++ b/domains/_discord.tomgxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tomgxz", + "email": "tomgxz138@gmail.com" + }, + "record": { + "TXT": "dh=ead80df9c64ea8aecd35e8a291ef261f0f26e133" + } +} diff --git a/domains/_discord.turvenuija.json b/domains/_discord.turvenuija.json new file mode 100644 index 000000000..88b0b83ca --- /dev/null +++ b/domains/_discord.turvenuija.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "turvenuija1", + "email": "akulehtola123@gmail.com" + }, + "record": { + "TXT": "dh=6e9f6180791c2d3ba3454777dde4d4637bc66c17" + } +} diff --git a/domains/_discord.untitled.json b/domains/_discord.untitled.json new file mode 100644 index 000000000..6d57baa9a --- /dev/null +++ b/domains/_discord.untitled.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VihaanAnand", + "email": "macos14sonoma@gmail.com" + }, + "record": { + "TXT": "dh=635f70c64c210c98011d4391e0ba6a69adfedc89" + } +} diff --git a/domains/_discord.urging.json b/domains/_discord.urging.json new file mode 100644 index 000000000..f556b7c19 --- /dev/null +++ b/domains/_discord.urging.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UrgingOfc", + "email": "diogo.lopes.silva.ch@gmail.com" + }, + "record": { + "TXT": "dh=847ffa96587e4547c31ae6c36fbc5fed451bf886" + } +} diff --git a/domains/_discord.uwu.json b/domains/_discord.uwu.json new file mode 100644 index 000000000..2c72d9128 --- /dev/null +++ b/domains/_discord.uwu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "TXT": "dh=23993c297b87e754fd5660af023aa55579ed324e" + } +} diff --git a/domains/_discord.vornexx.json b/domains/_discord.vornexx.json new file mode 100644 index 000000000..462772ba8 --- /dev/null +++ b/domains/_discord.vornexx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vornexx", + "email": "ajay.ramnath@courvix.com" + }, + "record": { + "TXT": "dh=d7455d2e7bbe608a4e60dee8c502c758d3d13464" + } +} diff --git a/domains/_discord.windowsed.json b/domains/_discord.windowsed.json new file mode 100644 index 000000000..3c735ceb2 --- /dev/null +++ b/domains/_discord.windowsed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "windowsed1225", + "email": "me@windowsed.me" + }, + "record": { + "TXT": "dh=bf0d796bf4de62ac96f875becc18c082d8896a0a" + } +} diff --git a/domains/_discord.xiaoxi-tw.json b/domains/_discord.xiaoxi-tw.json new file mode 100644 index 000000000..8b7cee5b7 --- /dev/null +++ b/domains/_discord.xiaoxi-tw.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jimmy20180130", + "email": "jimmy20180130@gmail.com", + "twitter": "@jimmyyo45639462", + "discord": "xiaoxi_tw#0" + }, + "record": { + "TXT": "dh=816d1cc1b74e35ba02a286a5b9cbded58cbdf513" + } +} diff --git a/domains/_discord.xrap1dx.json b/domains/_discord.xrap1dx.json new file mode 100644 index 000000000..ca3644d28 --- /dev/null +++ b/domains/_discord.xrap1dx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xrap1dx", + "email": "sirrapid155@gmail.com" + }, + "record": { + "TXT": "dh=5552cf7dcf2fec81360ac9ee4af0b0a674f1cd33" + } +} diff --git a/domains/_discord.xzonix.json b/domains/_discord.xzonix.json new file mode 100644 index 000000000..3ce849246 --- /dev/null +++ b/domains/_discord.xzonix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xzonix", + "email": "imahalojigi@gmail.com" + }, + "record": { + "TXT": "dh=9ffde6acccff8c74faeb599818e2901110d15fa5" + } +} diff --git a/domains/_discord.yfa.json b/domains/_discord.yfa.json new file mode 100644 index 000000000..ae38ea033 --- /dev/null +++ b/domains/_discord.yfa.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "dh=b8044fd4f0628a706be5fd878fae96886bae23b7" + } +} diff --git a/domains/_discord.z.json b/domains/_discord.z.json new file mode 100644 index 000000000..278cf9fb8 --- /dev/null +++ b/domains/_discord.z.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + }, + "record": { + "TXT": "dh=f84f09e3884eca601066a6e1dba5175f6e82940f" + } +} diff --git a/domains/_discord.zayaanar.json b/domains/_discord.zayaanar.json new file mode 100644 index 000000000..55026c874 --- /dev/null +++ b/domains/_discord.zayaanar.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "userandaname", + "email": "", + "discord": "823939421686071386", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a62ohGnPWnZcxwliAblMFZoEcnjztiOXGJrf3viuLFutyG5cwvSgEFmeYQAiODGndCak3XXgSJwLyFiS-HIsLWG6ViBhu9A48zkUMTv6IHO7OUFE9kNiGIqhp3S8h8lhaaxA3zW_OuOIQBoLFJnL0RqQgOd2QC6P-v1Fm6Aab3HMCGYN5tNwk1Jpl5vwisxnCG-PDUWrrgJ8PbMGRUa2Sa5qvFOJK0LML3yDqKOlFUGs9XmBcbTMc2KVdGjAm0F8l1w0WRDyx15hNFu_ppB7yaIS91o7iJS-g-ViSWf3-Hj0gCyUl1sHPQi3-2IE5GaNtfqVLQGNC2Kh6NBAkRRT7g.09Llm3K10Q7Tl3ceKAy76g.6NdcyRztDAFkqDFs5CWyaShozcshoMQ2qq1p7D8wQTG6O8shr8lbczRgMQZhgvzrq7u1g6HMQnW8bQdDdn2Mb1Jj3_qcHXnCUub6exAZONY.0ZXI8zVi0kGV0Qm7uvJOrA" + }, + + "record": { + "TXT": "dh=b4e0c21a832a290e9c3d6d073a1c70ed8b9a344e" + } + } diff --git a/domains/_discord.zeaxey.json b/domains/_discord.zeaxey.json new file mode 100644 index 000000000..486063733 --- /dev/null +++ b/domains/_discord.zeaxey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Pixel556", + "email": "therealzeaxey123@gmail.com" + }, + "record": { + "TXT": "dh=03271c5828f57362f1d12969313966fb88b6f83e" + } +} diff --git a/domains/_discord.ziyn.json b/domains/_discord.ziyn.json new file mode 100644 index 000000000..419153720 --- /dev/null +++ b/domains/_discord.ziyn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ZiynCS", + "email": "NotZiyn@gmail.com" + }, + "record": { + "TXT": "dh=b7efba321635b7528ef7d9a605d747b343fa135d" + } +} diff --git a/domains/_discord.zoom.json b/domains/_discord.zoom.json new file mode 100644 index 000000000..2306b16b2 --- /dev/null +++ b/domains/_discord.zoom.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "theoldzoom", + "email": "theoldzoom@gmail.com", + "twitter": "theoldzoom", + "discord": "theoldzoom" + }, + "record": { + "TXT": "dh=170063c268dd129fa057f1517490d51aa9e792f7" + } +} diff --git a/domains/_dmarc.om.json b/domains/_dmarc.om.json new file mode 100644 index 000000000..f3a7cf119 --- /dev/null +++ b/domains/_dmarc.om.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "omsenjalia", + "email": "", + "OWL":"eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RROLuTVz1Yiu7gYQ78NhdEWblxDBcdAtgXSrSKBX4s-6C15Gbg1gvdalVJRUFfhvt7FQ1HEtB7Wwz0Rdn1Jxk7Eqxp2s116sCmWwviCoh8RfWUEkWt9k4csRDjBtnwijFrfSv5gjf67gAe1dyoryQjg1ZFf9dlmwmaQtiJNKVkjlBsNAYNph9-CsYK8a0-TI-GVXung0rFjd-222TQij66CYBd7qitAvTPEypCBarB2SyBrN30wLTS9NjB-bSpmJZwcZO8CQ2obcYdMfVQ0nZgXBJhkbwjtGWfWTS-3AnCeLF48mT-9DCsVoraLb6DLoJoPB-9g4dim-tSZwC5pQ.OsIglUJ8OXge3R5CTVoEEw.YS-YtdmeJZKK1TEkERBJlH9RKdKcMynvcB5PrUsKXY4FJhgfrPoqF_JOAXO4tyYqwJzWnNM0hfd4WxqLi3KmjXToHxRAzdiFu1f4iiBfX68ABHoycHXkose4AHWe54a8.UazMc8kLEVvxHs2YN0DC3Q" + }, + "record": { + "TXT": "v=DMARC1; p=quarantine; rua=mailto:omsenjalia@gmail.com; ruf=mailto:omsenjalia@gmail.com; sp=quarantine; adkim=r; aspf=r" + } +} diff --git a/domains/_gh-DeadCodeGames-o.deadcode.json b/domains/_gh-DeadCodeGames-o.deadcode.json new file mode 100644 index 000000000..15d36be09 --- /dev/null +++ b/domains/_gh-DeadCodeGames-o.deadcode.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "RichardKanshen", + "email": "richard@kanshen.click", + "twitter": "@kanskje0", + "discord": "kanshen.uwu", + "bluesky": "kanshen.click", + "telegram": "@richardkanskje" + }, + "record": { + "TXT": "392e701839" + } +} diff --git a/domains/_gh-is-a-dev-o.m.json b/domains/_gh-is-a-dev-o.m.json new file mode 100644 index 000000000..e7af9390b --- /dev/null +++ b/domains/_gh-is-a-dev-o.m.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "TXT": "e0ffcded3e" + } +} diff --git a/domains/_gh-is-a-dev-o.maintainers.json b/domains/_gh-is-a-dev-o.maintainers.json new file mode 100644 index 000000000..e381c3c8c --- /dev/null +++ b/domains/_gh-is-a-dev-o.maintainers.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "TXT": "7b45eb688b" + } +} diff --git a/domains/_gh-is-a-dev-o.www.json b/domains/_gh-is-a-dev-o.www.json new file mode 100644 index 000000000..a93e75f33 --- /dev/null +++ b/domains/_gh-is-a-dev-o.www.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "TXT": "1259c184c5" + } +} diff --git a/domains/_github-challenge-SpicyDevs-org.spicy.json b/domains/_github-challenge-SpicyDevs-org.spicy.json new file mode 100644 index 000000000..b38b357ca --- /dev/null +++ b/domains/_github-challenge-SpicyDevs-org.spicy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oyepriyansh", + "email": "oyepriyansh@hotmail.com" + }, + "record": { + "TXT": "0e84f14f3a" + } +} diff --git a/domains/_github-challenge-is-a-dev-org.json b/domains/_github-challenge-is-a-dev-org.json new file mode 100644 index 000000000..d9ade36b1 --- /dev/null +++ b/domains/_github-challenge-is-a-dev-org.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "TXT": "2c9dfbe7c8" + } +} diff --git a/domains/_github-challenge-thenoppy12-org.thenoppy12.json b/domains/_github-challenge-thenoppy12-org.thenoppy12.json new file mode 100644 index 000000000..1613186f9 --- /dev/null +++ b/domains/_github-challenge-thenoppy12-org.thenoppy12.json @@ -0,0 +1,12 @@ +{ + "description": "Github Orgs Verify", + "repo": "https://github.com/thenoppy12", + "owner": { + "username": "BussyBakks", + "email": "lengochuykiengiang@gmail.com", + "discord": ".thenoppy12#0" + }, + "record": { + "TXT": "19f2dbfb9a" + } +} diff --git a/domains/_github-challenge-yfadev-org.alpha.json b/domains/_github-challenge-yfadev-org.alpha.json new file mode 100644 index 000000000..9267c8d18 --- /dev/null +++ b/domains/_github-challenge-yfadev-org.alpha.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "9568f60569" + } +} diff --git a/domains/_github-challenge-yfadev-org.yfa.json b/domains/_github-challenge-yfadev-org.yfa.json new file mode 100644 index 000000000..42ef5a3b9 --- /dev/null +++ b/domains/_github-challenge-yfadev-org.yfa.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "a4b5c60953" + } +} diff --git a/domains/_github-challenge-yfadev-org.yfadev.json b/domains/_github-challenge-yfadev-org.yfadev.json new file mode 100644 index 000000000..4f6102623 --- /dev/null +++ b/domains/_github-challenge-yfadev-org.yfadev.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "ed3c92c01a" + } +} diff --git a/domains/_github-pages-challenge-0v90.json b/domains/_github-pages-challenge-0v90.json new file mode 100644 index 000000000..cbb6c1ed8 --- /dev/null +++ b/domains/_github-pages-challenge-0v90.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "0v90", + "discord": "651519394673065989", + "email": "" + }, + "record": { + "TXT": "9e58408bb4a7267e5a81669f75cfb3" + } +} diff --git a/domains/_github-pages-challenge-404dev-404.404.json b/domains/_github-pages-challenge-404dev-404.404.json new file mode 100644 index 000000000..d7d28cf9a --- /dev/null +++ b/domains/_github-pages-challenge-404dev-404.404.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "404Dev-404", + "email": "anthonyvaldes318+404@gmail.com" + }, + "record": { + "TXT": "22a06372e0e8c1ce907acca87f8222" + } +} diff --git a/domains/_github-pages-challenge-9xn.44.json b/domains/_github-pages-challenge-9xn.44.json new file mode 100644 index 000000000..3452563d3 --- /dev/null +++ b/domains/_github-pages-challenge-9xn.44.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "9xN", + "email": "0@fbi.ac" + }, + "record": { + "TXT": "e104ec0ddb56ddb03a3ced402e0b45" + } +} diff --git a/domains/_github-pages-challenge-Abaan5467.abaan.json b/domains/_github-pages-challenge-Abaan5467.abaan.json new file mode 100644 index 000000000..35e940ffb --- /dev/null +++ b/domains/_github-pages-challenge-Abaan5467.abaan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abaan5467", + "email": "abaan@metfabproducts.com" + }, + "record": { + "TXT": "325c1344f55d617d4e206517dde06c" + } +} diff --git a/domains/_github-pages-challenge-Adolar0042.adolar0042.json b/domains/_github-pages-challenge-Adolar0042.adolar0042.json new file mode 100644 index 000000000..3fec52a64 --- /dev/null +++ b/domains/_github-pages-challenge-Adolar0042.adolar0042.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adolar0042", + "email": "adolar0042@gmail.com" + }, + "record": { + "TXT": "927a8ca97dbdccd9140313116bd068" + } +} diff --git a/domains/_github-pages-challenge-Akatsuki2555.akatsuki2555.json b/domains/_github-pages-challenge-Akatsuki2555.akatsuki2555.json new file mode 100644 index 000000000..93f108113 --- /dev/null +++ b/domains/_github-pages-challenge-Akatsuki2555.akatsuki2555.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Akatsuki2555", + "email": "Akatsuki2555@proton.me" + }, + "record": { + "TXT": "af66c6734ae2342654c413fbb3b9aa" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-Arch881010.arch.json b/domains/_github-pages-challenge-Arch881010.arch.json new file mode 100644 index 000000000..335a14182 --- /dev/null +++ b/domains/_github-pages-challenge-Arch881010.arch.json @@ -0,0 +1,14 @@ +{ + "description": "My personal website on arch.is-a.dev (main files in repo/repository)[Github Challenge].", + "repo": "https://github.com/Arch881010/Arch881010", + "owner": { + "username": "Arch881010", + "email": "arch@arch1010.dev", + "discord": "arch1010", + "discord-id": "410248634593050627", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kSAiARG7F3TMPQLHtfhtk3dE05kz7As2lA8g_FzeDJHxsc9y68hJe40iZByj83Q-A7wgguTAPkshy34EfXOlnbEW6QGE3nwCdu8BLCDAZFZSDYffesKjYPq7djQpYfIcrwaKQ8BNsPejDVBpfycXULTJKFg6860m6AQeCRBCTKbs1et_J_1LKbD58oCoA2fRjoOcmsfiuv177b0JB5y4YYJvv-ZUxnqfFOYs8z4cYa0sjLz1PHf45ZXI94YaiIGbctnl4-mCWmUyVAEzoZXMMZTpb2yDmkfkXbubaRL8ftl6dXFlsr_s8t5oNNn_qqydjVqHAgoBod7pnX8nnbNB7g.QIJDtBcgQc6abzpqMJEDQQ.yqolPrBs4ixr0g2Sd6FkMHqMg_CXvxV146dDoe4y8yeSmW951Au23QlBGwemyMKQmJv6fNMo7GPctGfxCxgaaL6hXPVbtJ13MdgtO22e5bA.vevEeBUZxq5C7dewSx_YUQ" + }, + "record": { + "TXT": "f7ef0429540150e9e2d26e968dc4de" + } +} diff --git a/domains/_github-pages-challenge-Bikoil.biko.json b/domains/_github-pages-challenge-Bikoil.biko.json new file mode 100644 index 000000000..37dbd9fd0 --- /dev/null +++ b/domains/_github-pages-challenge-Bikoil.biko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bikoil", + "email": "devbikoilu@gmail.com" + }, + "record": { + "TXT": "aec0a553854eb46c3b87f4d4797407" + } +} diff --git a/domains/_github-pages-challenge-Bimarsha69.bimarsha.json b/domains/_github-pages-challenge-Bimarsha69.bimarsha.json new file mode 100644 index 000000000..f53fe5cbf --- /dev/null +++ b/domains/_github-pages-challenge-Bimarsha69.bimarsha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Bimarsha69", + "email": "bimarshathapa2@gmail.com" + }, + "record": { + "TXT": "ad9b8ff5793eb8dd58746a30bee4c7" + } +} diff --git a/domains/_github-pages-challenge-Codemaine.maine.json b/domains/_github-pages-challenge-Codemaine.maine.json new file mode 100644 index 000000000..d8e26f5b0 --- /dev/null +++ b/domains/_github-pages-challenge-Codemaine.maine.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Codemaine", + "email": "jermaineantwi22@gmail.com" + }, + "record": { + "TXT": "9991ed48ef1e29bebb9213d814ebd6" + } +} diff --git a/domains/_github-pages-challenge-Crazy-Max-Blog.rpi.crazymax.json b/domains/_github-pages-challenge-Crazy-Max-Blog.rpi.crazymax.json new file mode 100644 index 000000000..468d5157c --- /dev/null +++ b/domains/_github-pages-challenge-Crazy-Max-Blog.rpi.crazymax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Crazy-Max-Blog", + "email": "Crazy-Max-2011@yandex.ru" + }, + "record": { + "TXT": "78e02ece6b6361900c40e44be0079c" + } +} diff --git a/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json b/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json new file mode 100644 index 000000000..c2d66c756 --- /dev/null +++ b/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "", + "discord": "716306888492318790", + "twitter": "cutedog5695" + }, + "record": { + "TXT": "cd8aac10494e4b5b76656163a11508" + } +} diff --git a/domains/_github-pages-challenge-D-Pow.devon.json b/domains/_github-pages-challenge-D-Pow.devon.json new file mode 100644 index 000000000..875c3aa2e --- /dev/null +++ b/domains/_github-pages-challenge-D-Pow.devon.json @@ -0,0 +1,10 @@ +{ + "description": "GitHub Pages verification for devon.is-a.dev", + "owner": { + "username": "D-Pow", + "email": "D-Pow@users.noreply.github.com" + }, + "record": { + "TXT": "cec54b510828f770750c1b17cad7f2" + } +} diff --git a/domains/_github-pages-challenge-Daamin909.daamin.json b/domains/_github-pages-challenge-Daamin909.daamin.json new file mode 100644 index 000000000..b3738e6d7 --- /dev/null +++ b/domains/_github-pages-challenge-Daamin909.daamin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Daamin909", + "email": "ashai.daamin@gmail.com" + }, + "record": { + "TXT": "3c96f2bc76027656f9d05fbdd95026" + } +} diff --git a/domains/_github-pages-challenge-DebtlessFlea.debtlessflea.json b/domains/_github-pages-challenge-DebtlessFlea.debtlessflea.json new file mode 100644 index 000000000..da607d762 --- /dev/null +++ b/domains/_github-pages-challenge-DebtlessFlea.debtlessflea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DebtlessFlea", + "email": "citizen.caption020@passfwd.com" + }, + "record": { + "TXT": "ba015236c9b45aa3d3427b2b3c0f7e" + } +} diff --git a/domains/_github-pages-challenge-Defective4.defective.json b/domains/_github-pages-challenge-Defective4.defective.json new file mode 100644 index 000000000..6e699dae5 --- /dev/null +++ b/domains/_github-pages-challenge-Defective4.defective.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Defective4", + "email": "def3ctive4@gmail.com" + }, + "record": { + "TXT": "6a4d7169e05d83cb7512bd39e631ac" + } +} diff --git a/domains/_github-pages-challenge-Dev-Ajay-sahani.ajays.json b/domains/_github-pages-challenge-Dev-Ajay-sahani.ajays.json new file mode 100644 index 000000000..bb1371c1b --- /dev/null +++ b/domains/_github-pages-challenge-Dev-Ajay-sahani.ajays.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dev-Ajay-sahani", + "email": "ajays.dev.contact@gmail.com" + }, + "record": { + "TXT": "41d8fd2a7b00dc0110fdfa4c1518c9" + } +} diff --git a/domains/_github-pages-challenge-DevHanza.hansana.json b/domains/_github-pages-challenge-DevHanza.hansana.json new file mode 100644 index 000000000..f90d67258 --- /dev/null +++ b/domains/_github-pages-challenge-DevHanza.hansana.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevHanza", + "email": "josephandrew1@logicstreak.com" + }, + "record": { + "TXT": "f8be8c81d5fc3ad6c97e687a404a9d" + } +} diff --git a/domains/_github-pages-challenge-Diordnas.cassie.json b/domains/_github-pages-challenge-Diordnas.cassie.json new file mode 100644 index 000000000..5c191eb92 --- /dev/null +++ b/domains/_github-pages-challenge-Diordnas.cassie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Diordnas", + "email": "cassthepurple@gmail.com" + }, + "record": { + "TXT": "756d917b8c992b5032094d6765915b" + } +} diff --git a/domains/_github-pages-challenge-FoxsDenYT.foxsden.json b/domains/_github-pages-challenge-FoxsDenYT.foxsden.json new file mode 100644 index 000000000..d2b2622c5 --- /dev/null +++ b/domains/_github-pages-challenge-FoxsDenYT.foxsden.json @@ -0,0 +1,10 @@ +{ + "description": "GitHub Pages verification for foxsden.is-a.dev", + "owner": { + "username": "FoxsDenYT", + "email": "foxsdenyt+isadev@gmail.com" + }, + "record": { + "TXT": "37455d1a9cf706acc4f0cd6ada2ce7" + } +} diff --git a/domains/_github-pages-challenge-Glqch404.glqch.json b/domains/_github-pages-challenge-Glqch404.glqch.json new file mode 100644 index 000000000..e9001d5ba --- /dev/null +++ b/domains/_github-pages-challenge-Glqch404.glqch.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Glqch404", + "email": "bridgerbusiness2@gmail.com", + "twitter": "Glqch", + "discord": "915932527871541309" + }, + "record": { + "TXT": "a3b430c8adc12043863d6785cfa782" + } +} diff --git a/domains/_github-pages-challenge-HarshNarayanJha.harshnj.json b/domains/_github-pages-challenge-HarshNarayanJha.harshnj.json new file mode 100644 index 000000000..48279b3b5 --- /dev/null +++ b/domains/_github-pages-challenge-HarshNarayanJha.harshnj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HarshNarayanJha", + "email": "harshnj@proton.me" + }, + "record": { + "TXT": "fc925e645f243f84b9c9f0585add64" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-Hima-Pro.tdim.json b/domains/_github-pages-challenge-Hima-Pro.tdim.json new file mode 100644 index 000000000..6022b25f3 --- /dev/null +++ b/domains/_github-pages-challenge-Hima-Pro.tdim.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "Hima-Pro", + "email": "pnpop01027066161@gmail.com" + }, + "record": { + "TXT": "c8b67d5aafafeb2e5ec1561e503552" + } +} diff --git a/domains/_github-pages-challenge-ImShyMike.shymike.json b/domains/_github-pages-challenge-ImShyMike.shymike.json new file mode 100644 index 000000000..53070340a --- /dev/null +++ b/domains/_github-pages-challenge-ImShyMike.shymike.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ImShyMike", + "email": "", + "discord": "582648583635992622" + }, + "record": { + "TXT": "f3bee6548add17e5852c9b567d9a44" + } +} diff --git a/domains/_github-pages-challenge-JVDesignBavaria.jvdesign.json b/domains/_github-pages-challenge-JVDesignBavaria.jvdesign.json new file mode 100644 index 000000000..c74ef7368 --- /dev/null +++ b/domains/_github-pages-challenge-JVDesignBavaria.jvdesign.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JVDesignBavaria", + "email": "", + "twitter": "JVDesignBavaria" + }, + "record": { + "TXT": "f4729fd3c0ae53d5150331f5f741a2" + } +} diff --git a/domains/_github-pages-challenge-JustStudio7.juststudio.json b/domains/_github-pages-challenge-JustStudio7.juststudio.json new file mode 100644 index 000000000..d624b59dd --- /dev/null +++ b/domains/_github-pages-challenge-JustStudio7.juststudio.json @@ -0,0 +1,13 @@ +{ + "description": "JustStudio.", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "TXT": [ + "9f7414e9ff060a1d5721a914dd48e3" + ] + } +} diff --git a/domains/_github-pages-challenge-LIGMATV.ligmatv.json b/domains/_github-pages-challenge-LIGMATV.ligmatv.json new file mode 100644 index 000000000..7e27b7ac0 --- /dev/null +++ b/domains/_github-pages-challenge-LIGMATV.ligmatv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LIGMATV", + "email": "ligmatv.id@gmail.com" + }, + "record": { + "TXT": "de8560c4ea3c0f753266b402385c50" + } +} diff --git a/domains/_github-pages-challenge-LevaniVashadze.levani.json b/domains/_github-pages-challenge-LevaniVashadze.levani.json new file mode 100644 index 000000000..1ce35f930 --- /dev/null +++ b/domains/_github-pages-challenge-LevaniVashadze.levani.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LevaniVashadze", + "email": "vashadzelevani11@gmail.com" + }, + "record": { + "TXT": "ed2358814bd1764933a1fb860ab339" + } +} diff --git a/domains/_github-pages-challenge-LowkeyGUY4444.akshya.json b/domains/_github-pages-challenge-LowkeyGUY4444.akshya.json new file mode 100644 index 000000000..c6b0bb7ef --- /dev/null +++ b/domains/_github-pages-challenge-LowkeyGUY4444.akshya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lowkeyguy4444", + "email": "akshyathapa23@gmail.com" + }, + "record": { + "TXT": "b29322c856bfcf9889e95c6cd95b91" + } +} diff --git a/domains/_github-pages-challenge-MadisonWirtanen.zwyz.json b/domains/_github-pages-challenge-MadisonWirtanen.zwyz.json new file mode 100644 index 000000000..594e85860 --- /dev/null +++ b/domains/_github-pages-challenge-MadisonWirtanen.zwyz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "madisonwirtanen", + "email": "isadev@imkk.uk" + }, + "record": { + "TXT": "18776d6f831dd6e69e7889f4747ecb" + } +} diff --git a/domains/_github-pages-challenge-MukuJhansi.gunman.json b/domains/_github-pages-challenge-MukuJhansi.gunman.json new file mode 100644 index 000000000..ef4cff6cd --- /dev/null +++ b/domains/_github-pages-challenge-MukuJhansi.gunman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MukuJhansi", + "email": "mukundagrawal800@gmail.com" + }, + "record": { + "TXT": "c891d48a286f45f50eb814e97f60df" + } +} diff --git a/domains/_github-pages-challenge-Myrdincx.myrdin.json b/domains/_github-pages-challenge-Myrdincx.myrdin.json new file mode 100644 index 000000000..8f23e4a78 --- /dev/null +++ b/domains/_github-pages-challenge-Myrdincx.myrdin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Myrdincx", + "email": "myrdincx@gmail.com" + }, + "record": { + "TXT": "73c422f79a3a088a46e52e7844cb08" + } +} diff --git a/domains/_github-pages-challenge-NamesMT.namesmt.json b/domains/_github-pages-challenge-NamesMT.namesmt.json new file mode 100644 index 000000000..51c701b9a --- /dev/null +++ b/domains/_github-pages-challenge-NamesMT.namesmt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NamesMT", + "email": "dangquoctrung123@gmail.com" + }, + "record": { + "TXT": "6ec39f629cd9510bca23b84ba61aff" + } +} diff --git a/domains/_github-pages-challenge-Nekitori17.nekitori17.json b/domains/_github-pages-challenge-Nekitori17.nekitori17.json new file mode 100644 index 000000000..4af3ddf19 --- /dev/null +++ b/domains/_github-pages-challenge-Nekitori17.nekitori17.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nekitori17", + "email": "cuongnguyen286641@gmail.com", + "discord": "nekitorihakari" + }, + "record": { + "TXT": "24cd28e86ee31fda98f1ffb6c3c732" + } +} diff --git a/domains/_github-pages-challenge-Noma4321.noma.json b/domains/_github-pages-challenge-Noma4321.noma.json new file mode 100644 index 000000000..d2491c88a --- /dev/null +++ b/domains/_github-pages-challenge-Noma4321.noma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Noma4321", + "email": "noam.malka1yt@gmail.com" + }, + "record": { + "TXT": "3050b2d9504b6f7cab6049c0d11f64" + } +} diff --git a/domains/_github-pages-challenge-PokedWasTaken.poked.json b/domains/_github-pages-challenge-PokedWasTaken.poked.json new file mode 100644 index 000000000..e3df4a54d --- /dev/null +++ b/domains/_github-pages-challenge-PokedWasTaken.poked.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PokedWasTaken", + "email": "pokedwastaken@gmail.com", + "discord": "poked" + }, + "record": { + "TXT": "492698bed250302903bda08e024c89" + } +} diff --git a/domains/_github-pages-challenge-Riihime.riihime.json b/domains/_github-pages-challenge-Riihime.riihime.json new file mode 100644 index 000000000..cecec3884 --- /dev/null +++ b/domains/_github-pages-challenge-Riihime.riihime.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Riihime", + "email": "", + "discord": "riihime" + }, + "record": { + "TXT": "dbf468dcc12907dc90b485737f344a" + } +} diff --git a/domains/_github-pages-challenge-RomzyyTV.romzyytv.json b/domains/_github-pages-challenge-RomzyyTV.romzyytv.json new file mode 100644 index 000000000..0f2c3d0ee --- /dev/null +++ b/domains/_github-pages-challenge-RomzyyTV.romzyytv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RomzyyTV", + "email": "jesaisqpaspourquoi@gmail.com" + }, + "record": { + "TXT": "09d37b4f10c58e217e89458dad3fef" + } +} diff --git a/domains/_github-pages-challenge-Rouf0x.json b/domains/_github-pages-challenge-Rouf0x.json new file mode 100644 index 000000000..16c8283a8 --- /dev/null +++ b/domains/_github-pages-challenge-Rouf0x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rouf0x", + "email": "Gabrielruf.fr@gmail.com" + }, + "record": { + "TXT": "f01cd0a4cbac68efe6b87568776ad9" + } +} diff --git a/domains/_github-pages-challenge-Satindar31.satindar.json b/domains/_github-pages-challenge-Satindar31.satindar.json new file mode 100644 index 000000000..c659079e7 --- /dev/null +++ b/domains/_github-pages-challenge-Satindar31.satindar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "satindar31", + "email": "satindar@satindar-is.me" + }, + "record": { + "TXT": "ccd690fc913ce2ac27c8b9e10132a1" + } +} diff --git a/domains/_github-pages-challenge-ScytheMediaTheDev.scythemedia.json b/domains/_github-pages-challenge-ScytheMediaTheDev.scythemedia.json new file mode 100644 index 000000000..53ad119dd --- /dev/null +++ b/domains/_github-pages-challenge-ScytheMediaTheDev.scythemedia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ScytheMediaTheDev", + "email": "tswartz22@aol.com" + }, + "record": { + "TXT": "46b3d088175cbb38e9c4b3b81cdb4b" + } +} diff --git a/domains/_github-pages-challenge-Shaunfurtado.blog.shaunfurtado.json b/domains/_github-pages-challenge-Shaunfurtado.blog.shaunfurtado.json new file mode 100644 index 000000000..3ca28bde7 --- /dev/null +++ b/domains/_github-pages-challenge-Shaunfurtado.blog.shaunfurtado.json @@ -0,0 +1,10 @@ +{ + "description": "Verification for blog.shaunfurtado.is-a.dev in Github Pages", + "owner": { + "username": "Shaunfurtado", + "email": "shaunf1801@gmail.com" + }, + "record": { + "TXT": "08ce2f232e7028cbeb1a6baf8c8e49" + } +} diff --git a/domains/_github-pages-challenge-Sife-shuo.sife.json b/domains/_github-pages-challenge-Sife-shuo.sife.json new file mode 100644 index 000000000..9880d9229 --- /dev/null +++ b/domains/_github-pages-challenge-Sife-shuo.sife.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sife-shuo", + "email": "sifed@qq.com" + }, + "record": { + "TXT": "35bbdb5b21b0f5706786ea4bc01002" + } +} diff --git a/domains/_github-pages-challenge-SkyExploreWasTaken.sewt.json b/domains/_github-pages-challenge-SkyExploreWasTaken.sewt.json new file mode 100644 index 000000000..5fecfdce7 --- /dev/null +++ b/domains/_github-pages-challenge-SkyExploreWasTaken.sewt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + }, + "record": { + "TXT": "6db7bbc1e3f533f3dad4925751cdc7" + } +} diff --git a/domains/_github-pages-challenge-SkyExploreWasTaken.z.json b/domains/_github-pages-challenge-SkyExploreWasTaken.z.json new file mode 100644 index 000000000..640a0cd3a --- /dev/null +++ b/domains/_github-pages-challenge-SkyExploreWasTaken.z.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + }, + "record": { + "TXT": "7eb5b6034d696256f342136b0289cc" + } +} diff --git a/domains/_github-pages-challenge-Socketlike.evie.json b/domains/_github-pages-challenge-Socketlike.evie.json new file mode 100644 index 000000000..7ab6df371 --- /dev/null +++ b/domains/_github-pages-challenge-Socketlike.evie.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Socketlike", + "discordId": "285329659023851520", + "discord": "encyclopedic", + "email": "" + }, + "record": { + "TXT": "351773beb3717122300722aeb5d1ac" + } +} diff --git a/domains/_github-pages-challenge-Stacksyz.stacksyz.json b/domains/_github-pages-challenge-Stacksyz.stacksyz.json new file mode 100644 index 000000000..6d6de7983 --- /dev/null +++ b/domains/_github-pages-challenge-Stacksyz.stacksyz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Stacksyz", + "email": "thedevmonke@gmail.com" + }, + "record": { + "TXT": "121e8450b6aa5b9edbe73dd077ca57" + } +} diff --git a/domains/_github-pages-challenge-Th3-C0der.th3.json b/domains/_github-pages-challenge-Th3-C0der.th3.json new file mode 100644 index 000000000..4222831f9 --- /dev/null +++ b/domains/_github-pages-challenge-Th3-C0der.th3.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Th3-C0der", + "email": "Th3Drag8N@proton.me" + }, + "record": { + "TXT": "5eb5141d4526c7035a1a9e1613b3d6" + } +} diff --git a/domains/_github-pages-challenge-TheOldZoom.zoom.json b/domains/_github-pages-challenge-TheOldZoom.zoom.json new file mode 100644 index 000000000..bf25ddd7b --- /dev/null +++ b/domains/_github-pages-challenge-TheOldZoom.zoom.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "theoldzoom", + "email": "theoldzoom@gmail.com", + "twitter": "theoldzoom", + "discord": "theoldzoom" + }, + "record": { + "TXT": "617b3a42e42c46cb26aef97305fd8e" + } +} diff --git a/domains/_github-pages-challenge-TheWongLife.thewonglife.json b/domains/_github-pages-challenge-TheWongLife.thewonglife.json new file mode 100644 index 000000000..7e2626680 --- /dev/null +++ b/domains/_github-pages-challenge-TheWongLife.thewonglife.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheWongLife", + "email": "nwong27@illinois.edu" + }, + "record": { + "TXT": "eab75ad7eaab8f055c0d350cb1d28e" + } +} diff --git a/domains/_github-pages-challenge-TorchedSammy.sammy.json b/domains/_github-pages-challenge-TorchedSammy.sammy.json new file mode 100644 index 000000000..6b2d4517e --- /dev/null +++ b/domains/_github-pages-challenge-TorchedSammy.sammy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TorchedSammy", + "email": "torchedsammy@gmail.com" + }, + "record": { + "TXT": "9693d9e721696f4184aa3abfa35921" + } +} diff --git a/domains/_github-pages-challenge-UtilsForTheWeb.utils.json b/domains/_github-pages-challenge-UtilsForTheWeb.utils.json new file mode 100644 index 000000000..c371bc2a5 --- /dev/null +++ b/domains/_github-pages-challenge-UtilsForTheWeb.utils.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Blob2763", + "email": "blob2763@gmail.com" + }, + "record": { + "TXT": "c5ac9060fffaa7b40b58852449f983" + } +} diff --git a/domains/_github-pages-challenge-YantCaccia.antonio.json b/domains/_github-pages-challenge-YantCaccia.antonio.json new file mode 100644 index 000000000..11bca6447 --- /dev/null +++ b/domains/_github-pages-challenge-YantCaccia.antonio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YantCaccia", + "email": "yantcaccia@gmail.com" + }, + "record": { + "TXT": "7af4c3a94c5f7fa70f489c3c8c901f" + } +} diff --git a/domains/_github-pages-challenge-YesnielX.yesnielx.json b/domains/_github-pages-challenge-YesnielX.yesnielx.json new file mode 100644 index 000000000..ed210c389 --- /dev/null +++ b/domains/_github-pages-challenge-YesnielX.yesnielx.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/YesnielX/yesnielx.github.io", + "owner": { + "username": "YesnielX", + "email": "", + "discord": "yesnielx" + }, + "record": { + "TXT": ["7b437ce587783bab1a17084b82cca0"] + } +} diff --git a/domains/_github-pages-challenge-YouFoundAlpha.alpha.json b/domains/_github-pages-challenge-YouFoundAlpha.alpha.json new file mode 100644 index 000000000..e0787ddbd --- /dev/null +++ b/domains/_github-pages-challenge-YouFoundAlpha.alpha.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "123b9197abda60197a8afa64af5cf0" + } +} diff --git a/domains/_github-pages-challenge-YummyOreo.oreo.json b/domains/_github-pages-challenge-YummyOreo.oreo.json new file mode 100644 index 000000000..9400f38ef --- /dev/null +++ b/domains/_github-pages-challenge-YummyOreo.oreo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YummyOreo", + "email": "bobgim20@gmail.com" + }, + "record": { + "TXT": "91193592629d4273fa574d6c88a7e4" + } +} diff --git a/domains/_github-pages-challenge-aakankshabhende.aakanksha.json b/domains/_github-pages-challenge-aakankshabhende.aakanksha.json new file mode 100644 index 000000000..dabf55d7f --- /dev/null +++ b/domains/_github-pages-challenge-aakankshabhende.aakanksha.json @@ -0,0 +1,10 @@ +{ + "description": "Verification for aakanksha.is-a.dev", + "owner": { + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" + }, + "record": { + "TXT": "0e195a2a30854573db976207e5f2f2" + } +} diff --git a/domains/_github-pages-challenge-abdessattar23.abdessattar.json b/domains/_github-pages-challenge-abdessattar23.abdessattar.json new file mode 100644 index 000000000..2941defe6 --- /dev/null +++ b/domains/_github-pages-challenge-abdessattar23.abdessattar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdessattar23", + "email": "elyagoubiabdessattar@gmail.com" + }, + "record": { + "TXT": "c9b03d3b0500160eabd33e0c27913c" + } +} diff --git a/domains/_github-pages-challenge-acutewoof.acutewoof.json b/domains/_github-pages-challenge-acutewoof.acutewoof.json new file mode 100644 index 000000000..ef063b23a --- /dev/null +++ b/domains/_github-pages-challenge-acutewoof.acutewoof.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ACuteWoof", + "email": "sutharshanvithushan@gmail.com" + }, + "record": { + "TXT": "8a47d2fca716e0d7e0bcfd424d0784" + } +} diff --git a/domains/_github-pages-challenge-akpi816218.akpi.json b/domains/_github-pages-challenge-akpi816218.akpi.json new file mode 100644 index 000000000..2a1566dbb --- /dev/null +++ b/domains/_github-pages-challenge-akpi816218.akpi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "akpi816218", + "email": "", + "discord": "equus_quagga" + }, + "record": { + "TXT": "83f74e3c71720aa4514d32cabe7324" + } +} diff --git a/domains/_github-pages-challenge-albinpraveen.albinpraveen.json b/domains/_github-pages-challenge-albinpraveen.albinpraveen.json new file mode 100644 index 000000000..61a62e522 --- /dev/null +++ b/domains/_github-pages-challenge-albinpraveen.albinpraveen.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website (domain verification)", + "repo": "https://github.com/ALBINPRAVEEN/albinpraveen.github.io", + "owner": { + "username": "albinpraveen", + "email": "hi@albinpraveen.com" + }, + "record": { + "TXT": "815094cd16aed1ad1a2eb8306c390a" + } +} diff --git a/domains/_github-pages-challenge-aldnnnz.aldnnnz.json b/domains/_github-pages-challenge-aldnnnz.aldnnnz.json new file mode 100644 index 000000000..71373891b --- /dev/null +++ b/domains/_github-pages-challenge-aldnnnz.aldnnnz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aldnnnz", + "email": "aldynnn@yahoo.com" + }, + "record": { + "TXT": "5fd4c25bc65bfba8a87f5aa0b38a37" + } +} diff --git a/domains/_github-pages-challenge-alvitodev.alvito.json b/domains/_github-pages-challenge-alvitodev.alvito.json new file mode 100644 index 000000000..a6be273d8 --- /dev/null +++ b/domains/_github-pages-challenge-alvitodev.alvito.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvitodev", + "email": "alvitodev@protonmail.com" + }, + "record": { + "TXT": "c5a2eacc172cec9ec45a87d828b08c" + } +} diff --git a/domains/_github-pages-challenge-amalpotra.amarjeet.json b/domains/_github-pages-challenge-amalpotra.amarjeet.json new file mode 100644 index 000000000..6e6260fef --- /dev/null +++ b/domains/_github-pages-challenge-amalpotra.amarjeet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amalpotra", + "email": "amarjeetmalpotra@outlook.com" + }, + "record": { + "TXT": "15c0eb5d4a85c75c4b205ac26a4d31" + } +} diff --git a/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json b/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json new file mode 100644 index 000000000..2303cd5e5 --- /dev/null +++ b/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "anamolsapkota", + "email": "anamolsapkota@gmail.com" + }, + + "record": { + "TXT": "d89d65454e6f71641cc8e45a2ad8b2" + } +} diff --git a/domains/_github-pages-challenge-anandyeole.anandyeole.json b/domains/_github-pages-challenge-anandyeole.anandyeole.json new file mode 100644 index 000000000..b53887bfb --- /dev/null +++ b/domains/_github-pages-challenge-anandyeole.anandyeole.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anandyeole", + "email": "anandyeole@duck.com" + }, + "record": { + "TXT": "510cbb66f4422990546436db3c897a" + } +} diff --git a/domains/_github-pages-challenge-ananth-swamy.ananth.json b/domains/_github-pages-challenge-ananth-swamy.ananth.json new file mode 100644 index 000000000..2de98b708 --- /dev/null +++ b/domains/_github-pages-challenge-ananth-swamy.ananth.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website (domain verification)", + "repo": "https://github.com/ANANTH-SWAMY/ananth-swamy.github.io", + "owner": { + "username": "ANANTH-SWAMY", + "email": "ananth.nps@gmail.com" + }, + "record": { + "TXT": "cb106acbe8da52273b1a5807fb1d9f" + } +} diff --git a/domains/_github-pages-challenge-andrewstech.privacy.json b/domains/_github-pages-challenge-andrewstech.privacy.json deleted file mode 100644 index 2f4e6595b..000000000 --- a/domains/_github-pages-challenge-andrewstech.privacy.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, - "record": { - "TXT": "f4099fcae5cf0ea04f853bc649c5b1" - } -} diff --git a/domains/_github-pages-challenge-andyfaizan.andy.json b/domains/_github-pages-challenge-andyfaizan.andy.json new file mode 100644 index 000000000..b1ec9c9e8 --- /dev/null +++ b/domains/_github-pages-challenge-andyfaizan.andy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "andyfaizan", + "email": "andyfaizan@gmail.com" + }, + "record": { + "TXT": "8c35e4942c57ea0659a1b4c0cae798" + } +} diff --git a/domains/_github-pages-challenge-anshbhimani.anshbhimani.json b/domains/_github-pages-challenge-anshbhimani.anshbhimani.json new file mode 100644 index 000000000..405a10c0e --- /dev/null +++ b/domains/_github-pages-challenge-anshbhimani.anshbhimani.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anshbhimani", + "email": "ansh.bhimani@outlook.com" + }, + "record": { + "TXT": "36d0b9db7565094d11ea8fdb539e1dg" + } +} diff --git a/domains/_github-pages-challenge-anshtyagi0093.anshtyagi.json b/domains/_github-pages-challenge-anshtyagi0093.anshtyagi.json new file mode 100644 index 000000000..3a7386337 --- /dev/null +++ b/domains/_github-pages-challenge-anshtyagi0093.anshtyagi.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "anshtyagi0", + "email": "tyagiansh175@gmail.com" + }, + "record": { + "TXT": "7b628651b5ce7a58e0876e8ddbae98" + } +} diff --git a/domains/_github-pages-challenge-antton-dev.antton.json b/domains/_github-pages-challenge-antton-dev.antton.json new file mode 100644 index 000000000..88b88ee98 --- /dev/null +++ b/domains/_github-pages-challenge-antton-dev.antton.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "antton-dev", + "email": "antton.chevrier@etik.com" + }, + "record": { + "TXT": "a3787429898a0a8bb9b3cbffa253fa" + } +} diff --git a/domains/_github-pages-challenge-aravinds-arv.arv.json b/domains/_github-pages-challenge-aravinds-arv.arv.json new file mode 100644 index 000000000..6248563a8 --- /dev/null +++ b/domains/_github-pages-challenge-aravinds-arv.arv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aravinds-arv", + "email": "aravinds.arv@pm.me" + }, + "record": { + "TXT": "4596a3ed04da898883da2218983b90" + } +} diff --git a/domains/_github-pages-challenge-arboygo.arboy.json b/domains/_github-pages-challenge-arboygo.arboy.json new file mode 100644 index 000000000..c9e358d3b --- /dev/null +++ b/domains/_github-pages-challenge-arboygo.arboy.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "arboygo", + "email": "arboygo@duck.com" + }, + "record": { + "TXT": "279fd9e58ed7ce7558663b3992f871" + } +} diff --git a/domains/_github-pages-challenge-archelaus.archelaus.json b/domains/_github-pages-challenge-archelaus.archelaus.json new file mode 100644 index 000000000..298a790e9 --- /dev/null +++ b/domains/_github-pages-challenge-archelaus.archelaus.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "archelaus", + "email": "archelaus@skiff.com" + }, + + "record": { + "TXT": "58a91a812285d77c1c035298480109" + } +} diff --git a/domains/_github-pages-challenge-armoredvortex.armoredvortex.json b/domains/_github-pages-challenge-armoredvortex.armoredvortex.json new file mode 100644 index 000000000..cdcc43e8f --- /dev/null +++ b/domains/_github-pages-challenge-armoredvortex.armoredvortex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "armoredvortex", + "email": "rachitpandey@protonmail.com" + }, + "record": { + "TXT": "f333cd13b1edfcaa51d5413b7fd05f" + } +} diff --git a/domains/_github-pages-challenge-ashesh3.ashesh.json b/domains/_github-pages-challenge-ashesh3.ashesh.json new file mode 100644 index 000000000..4ad14d5b8 --- /dev/null +++ b/domains/_github-pages-challenge-ashesh3.ashesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ashesh3", + "email": "ashesh1708@gmail.com" + }, + "record": { + "TXT": "a0d1fde4660333a6c2b992a1d5e637" + } +} diff --git a/domains/_github-pages-challenge-auravoid.aura.json b/domains/_github-pages-challenge-auravoid.aura.json new file mode 100644 index 000000000..3bb0e6741 --- /dev/null +++ b/domains/_github-pages-challenge-auravoid.aura.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "auravoid", + "email": "github@auravoid.dev" + }, + "record": { + "TXT": "a0182396037ba6edc7f689cf8847f9" + } +} diff --git a/domains/_github-pages-challenge-avellea.avellea.json b/domains/_github-pages-challenge-avellea.avellea.json new file mode 100644 index 000000000..c2039ae7f --- /dev/null +++ b/domains/_github-pages-challenge-avellea.avellea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "avellea", + "email": "" + }, + "record": { + "TXT": "5c38dbee73e6936232992c0f98829e" + } +} diff --git a/domains/_github-pages-challenge-avipars.avi.json b/domains/_github-pages-challenge-avipars.avi.json new file mode 100644 index 000000000..8ab3f2d7e --- /dev/null +++ b/domains/_github-pages-challenge-avipars.avi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "avipars", + "email": "avi.pars@gmail.com" + }, + "record": { + "TXT": "870948b647f71ebf9489fa34db4efb" + } +} diff --git a/domains/_github-pages-challenge-axviii3.axviii3.json b/domains/_github-pages-challenge-axviii3.axviii3.json deleted file mode 100644 index 06cbcb791..000000000 --- a/domains/_github-pages-challenge-axviii3.axviii3.json +++ /dev/null @@ -1,11 +0,0 @@ - -{ - "owner": { - "username": "AXVIII3", - "email": "anirbanrc2286@gmail.com" - }, - "record": { - "TXT": "f99b7081b391b0e77e8b9bd80ea50e" - } -} - \ No newline at end of file diff --git a/domains/_github-pages-challenge-ayvacs.ave.json b/domains/_github-pages-challenge-ayvacs.ave.json index 07951a5d8..1da3471f7 100644 --- a/domains/_github-pages-challenge-ayvacs.ave.json +++ b/domains/_github-pages-challenge-ayvacs.ave.json @@ -6,6 +6,6 @@ "email": "ayvacs@proton.me" }, "record": { - "TXT": "5a1e6c3195a98bf63ceba5a88f4be2" + "TXT": "e0986b3076f4a103b5f4de9bb7a302" } -} \ No newline at end of file +} diff --git a/domains/_github-pages-challenge-b1ue-dev.blue.json b/domains/_github-pages-challenge-b1ue-dev.blue.json new file mode 100644 index 000000000..33036b267 --- /dev/null +++ b/domains/_github-pages-challenge-b1ue-dev.blue.json @@ -0,0 +1,12 @@ +{ + "description": "Personal site for b1uedev, a.k.a Blue.", + "repo": "https://github.com/B1ue-Dev/b1ue-dev.github.io", + "owner": { + "username": "B1ue-Dev", + "email": "ngolong1396@hotmail.com", + "twitter": "b1uedev" + }, + "record": { + "TXT": "e921e6896e19bfdc214f60f54aaacc" + } +} diff --git a/domains/_github-pages-challenge-berzcode.saurabhkirve.json b/domains/_github-pages-challenge-berzcode.saurabhkirve.json new file mode 100644 index 000000000..d2206b590 --- /dev/null +++ b/domains/_github-pages-challenge-berzcode.saurabhkirve.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sxurabh", + "email": "saurabhkirve@gmail.com" + }, + + "record": { + "TXT": "e587577c97f73d2047aaf6ec8ff92c" + } +} diff --git a/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json b/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json new file mode 100644 index 000000000..b1d693157 --- /dev/null +++ b/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site for github@bi0hazarDD (GH Pages verification)", + "repo": "https://github.com/bi0hazarDD/bi0hazarDD.github.io", + "owner": { + "username": "bi0hazarDD", + "email": "jonathan-8@hotmail.co.uk" + }, + "record": { + "TXT": "87235c5c433d52086cbf2ae6ddd9a1" + } +} diff --git a/domains/_github-pages-challenge-birabittoh.birabittoh.json b/domains/_github-pages-challenge-birabittoh.birabittoh.json new file mode 100644 index 000000000..54e5d03cc --- /dev/null +++ b/domains/_github-pages-challenge-birabittoh.birabittoh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BiRabittoh", + "email": "andronacomarco@gmail.com" + }, + + "record": { + "TXT": "9b7611136c86e6ff35c8292b8f6a34" + } +} diff --git a/domains/_github-pages-challenge-blob2763.blob2763.json b/domains/_github-pages-challenge-blob2763.blob2763.json new file mode 100644 index 000000000..2b0dc3291 --- /dev/null +++ b/domains/_github-pages-challenge-blob2763.blob2763.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Blob2763", + "email": "blob2763@gmail.com" + }, + "record": { + "TXT": "a658c7bf2ffa85c1e1c68cb3776ef7" + } +} diff --git a/domains/_github-pages-challenge-blob2763.utils.json b/domains/_github-pages-challenge-blob2763.utils.json new file mode 100644 index 000000000..2af16373e --- /dev/null +++ b/domains/_github-pages-challenge-blob2763.utils.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Blob2763", + "email": "blob2763@gmail.com" + }, + "record": { + "TXT": "bac9fea219f8e188022d1c5f70a6c7" + } +} diff --git a/domains/_github-pages-challenge-bnyro.bnyro.json b/domains/_github-pages-challenge-bnyro.bnyro.json new file mode 100644 index 000000000..542433ac2 --- /dev/null +++ b/domains/_github-pages-challenge-bnyro.bnyro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Bnyro", + "email": "bnyro@tutanota.com" + }, + "record": { + "TXT": "44677d523e6eee7f03f41e5d062066" + } +} diff --git a/domains/_github-pages-challenge-bob16077.bob16077.json b/domains/_github-pages-challenge-bob16077.bob16077.json new file mode 100644 index 000000000..264aef891 --- /dev/null +++ b/domains/_github-pages-challenge-bob16077.bob16077.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bob16077", + "email": "", + "discord": "bob16077777" + }, + "record": { + "TXT": "8e9dc25e9c1ae9cc0823ede9ba135d" + } +} diff --git a/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json b/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json new file mode 100644 index 000000000..d32c795e4 --- /dev/null +++ b/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "boredcodebyk", + "email": "khromabyk+dev@gmail.com" + }, + "record": { + "TXT": "18eddbb722418d4b62eb8976f91621" + } +} diff --git a/domains/_github-pages-challenge-bqwerr.srujan.json b/domains/_github-pages-challenge-bqwerr.srujan.json new file mode 100644 index 000000000..5bcc6c1ac --- /dev/null +++ b/domains/_github-pages-challenge-bqwerr.srujan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bqwerr", + "email": "srujan.t@outlook.com" + }, + "record": { + "TXT": "0f2975970f0cdf325103a7d1f3ecf3" + } +} diff --git a/domains/_github-pages-challenge-caodoc.caodoc.json b/domains/_github-pages-challenge-caodoc.caodoc.json new file mode 100644 index 000000000..0856b8ca0 --- /dev/null +++ b/domains/_github-pages-challenge-caodoc.caodoc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "caodoc", + "email": "", + "discord": "caodoc" + }, + "record": { + "TXT": "c3aa36c2b7f2e2bf94a92b760760ca" + } +} diff --git a/domains/_github-pages-challenge-carafelix.heroprotagonist.json b/domains/_github-pages-challenge-carafelix.heroprotagonist.json new file mode 100644 index 000000000..c02fd3255 --- /dev/null +++ b/domains/_github-pages-challenge-carafelix.heroprotagonist.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "carafelix", + "email": "heroprotagonist32@gmail.com" + }, + "record": { + "TXT": "61ef4af708632a4018579e72c75b65" + } +} diff --git a/domains/_github-pages-challenge-catto24.catto24.json b/domains/_github-pages-challenge-catto24.catto24.json new file mode 100644 index 000000000..864f7278a --- /dev/null +++ b/domains/_github-pages-challenge-catto24.catto24.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "catto24", + "email": "catto24@proton.me" + }, + "record": { + "TXT": "6616d125c078fe2114ba6b6a505ed6" + } +} diff --git a/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json b/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json new file mode 100644 index 000000000..d97c8b7a4 --- /dev/null +++ b/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Cfhoiril", + "email": "iamchoirilfk@gmail.com" + }, + "record": { + "TXT": "9b283f49dbeb511d5060e9f26a83b4" + } +} diff --git a/domains/_github-pages-challenge-chadeeeee.chadee.json b/domains/_github-pages-challenge-chadeeeee.chadee.json new file mode 100644 index 000000000..ff922c3e2 --- /dev/null +++ b/domains/_github-pages-challenge-chadeeeee.chadee.json @@ -0,0 +1,12 @@ +{ + "description": "Chadee website", + "repo": "https://github.com/chadeeeee/chadee-site", + "owner": { + "username": "chadeeeee", + "telegram": "@chadeeeeeeeeee", + "email": "esurginet2011@gmail.com" + }, + "record": { + "TXT": "86c9964ec0f6d3ccbb233390376306" + } +} diff --git a/domains/_github-pages-challenge-charmingdisorder.alexey.json b/domains/_github-pages-challenge-charmingdisorder.alexey.json new file mode 100644 index 000000000..48987a8b1 --- /dev/null +++ b/domains/_github-pages-challenge-charmingdisorder.alexey.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "charmingdisorder", + "email": "null" + }, + + "record": { + "TXT": "8045a0394db9ecae4e8f4a76f5c17c" + } +} diff --git a/domains/_github-pages-challenge-chethanyadav456.chethan.json b/domains/_github-pages-challenge-chethanyadav456.chethan.json new file mode 100644 index 000000000..4d40fa57d --- /dev/null +++ b/domains/_github-pages-challenge-chethanyadav456.chethan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chethanyadav456", + "email": "rockchethan1111@gmail.com" + }, + "record": { + "TXT": "9781ed4422557bd427d0eff2c17b99" + } +} diff --git a/domains/_github-pages-challenge-clay990.suraj.json b/domains/_github-pages-challenge-clay990.suraj.json new file mode 100644 index 000000000..d4d6cfad7 --- /dev/null +++ b/domains/_github-pages-challenge-clay990.suraj.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Clay990", + "email": "asuraj991m@gmail.com" + }, + "record": { + "TXT": [ + "dee6e1fa6a0e02df5af4edb0e40ac4" + ] + } +} diff --git a/domains/_github-pages-challenge-clumzyofficial.adarsh.json b/domains/_github-pages-challenge-clumzyofficial.adarsh.json new file mode 100644 index 000000000..ba928468a --- /dev/null +++ b/domains/_github-pages-challenge-clumzyofficial.adarsh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "clumzyofficial", + "email": "adarshshukla0344@gmail.com" + }, + + "record": { + "TXT": "b37649c87b3dc3594b1c44139e420a" + } +} diff --git a/domains/_github-pages-challenge-compcoder007.umesh.json b/domains/_github-pages-challenge-compcoder007.umesh.json new file mode 100644 index 000000000..fb7600926 --- /dev/null +++ b/domains/_github-pages-challenge-compcoder007.umesh.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "compCoder007", + "email": "competentcoder007@gmail.com" + }, + "record": { + "TXT": "7e581a7ce40509036ecb310e92fd21" + } +} diff --git a/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json b/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json new file mode 100644 index 000000000..388b4dfbe --- /dev/null +++ b/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Crazy-Max-Blog", + "email": "Crazy-Max-2011@yandex.ru" + }, + "record": { + "TXT": "bf0161fd315024bd5069ccb7f38cdc" + } +} diff --git a/domains/_github-pages-challenge-creeperkafasi.deniz.json b/domains/_github-pages-challenge-creeperkafasi.deniz.json new file mode 100644 index 000000000..ba2dc9223 --- /dev/null +++ b/domains/_github-pages-challenge-creeperkafasi.deniz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "creeperkafasi", + "email": "creeperkafasiyt@gmail.com" + }, + "record": { + "TXT": "a6a4af6f32972c69be7ec1700f7196" + } +} diff --git a/domains/_github-pages-challenge-creepsooff.creepso.json b/domains/_github-pages-challenge-creepsooff.creepso.json new file mode 100644 index 000000000..5a4f16fd3 --- /dev/null +++ b/domains/_github-pages-challenge-creepsooff.creepso.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CreepsoOff", + "email": "eternel_universite0s@icloud.com" + }, + "record": { + "TXT": "299e56541b39e06bef97fc4006974a" + } +} diff --git a/domains/_github-pages-challenge-crischutu07.crischutu07.json b/domains/_github-pages-challenge-crischutu07.crischutu07.json new file mode 100644 index 000000000..fbd8c58f1 --- /dev/null +++ b/domains/_github-pages-challenge-crischutu07.crischutu07.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "crischutu07", + "email": "sondolavnxbox.omlet@gmail.com" + }, + "record": { + "TXT": "bad00bc54be093493a43e915dfd349" + } +} diff --git a/domains/_github-pages-challenge-crystalbajgai.crystal.json b/domains/_github-pages-challenge-crystalbajgai.crystal.json new file mode 100644 index 000000000..cc16256d8 --- /dev/null +++ b/domains/_github-pages-challenge-crystalbajgai.crystal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "crystalbajgai", + "email": "crystalbajgai@gmail.com" + }, + "record": { + "TXT": "6fbb6593b607699c01a1c17c8c2849" + } +} diff --git a/domains/_github-pages-challenge-cupglassDEV.cupglass.json b/domains/_github-pages-challenge-cupglassDEV.cupglass.json new file mode 100644 index 000000000..2c783ce72 --- /dev/null +++ b/domains/_github-pages-challenge-cupglassDEV.cupglass.json @@ -0,0 +1,13 @@ +{ + "description": "My base website. Very epik tbh 💥💥", + "repo": "https://github.com/cupglassdev/cupglassdev.github.io", + "owner": { + "username": "cupglassdev", + "email": "", "twitter":"https://x.com/cupglassdev", +"lahelu":"https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev" + }, + "record": { + "TXT": ["8512bd6443e9d125eb9223d57c1a40"] + } +} diff --git a/domains/_github-pages-challenge-dandepan303.dean.json b/domains/_github-pages-challenge-dandepan303.dean.json new file mode 100644 index 000000000..d673646fe --- /dev/null +++ b/domains/_github-pages-challenge-dandepan303.dean.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dandepan303", + "email": "dandepan303@gmail.com" + }, + "record": { + "TXT": "35714d694a49776a1e8125d03b4e0b" + } +} diff --git a/domains/_github-pages-challenge-danilofuchs.danilofuchs.json b/domains/_github-pages-challenge-danilofuchs.danilofuchs.json new file mode 100644 index 000000000..7dcb7b90c --- /dev/null +++ b/domains/_github-pages-challenge-danilofuchs.danilofuchs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "danilofuchs", + "email": "danilo_fuchs@hotmail.com" + }, + "record": { + "TXT": "09bee48261a7e91718432a7b51baaa" + } +} diff --git a/domains/_github-pages-challenge-darkdevil3610.gourav.json b/domains/_github-pages-challenge-darkdevil3610.gourav.json new file mode 100644 index 000000000..79ce1246d --- /dev/null +++ b/domains/_github-pages-challenge-darkdevil3610.gourav.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "darkdevil3610", + "email": "herokugourav@gmail.com" + }, + "record": { + "TXT": [ + "9c53fbad44d0be32a846af5f673015" + ] + } +} diff --git a/domains/_github-pages-challenge-deltafumble.deltafumble.json b/domains/_github-pages-challenge-deltafumble.deltafumble.json new file mode 100644 index 000000000..497b8b526 --- /dev/null +++ b/domains/_github-pages-challenge-deltafumble.deltafumble.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "deltafumble", + "email": "deltafumblecontact@skiff.com" + }, + "record": { + "TXT": "39cc94cea6bb9c128a442df111f0c9" + } +} diff --git a/domains/_github-pages-challenge-denboy0123.juqwtf.json b/domains/_github-pages-challenge-denboy0123.juqwtf.json new file mode 100644 index 000000000..f59cc1eba --- /dev/null +++ b/domains/_github-pages-challenge-denboy0123.juqwtf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "denboy0123", + "email": "pochtaproverka01@gmail.com" + }, + "record": { + "TXT": "6146edfce746644d8877fd941120eb" + } +} diff --git a/domains/_github-pages-challenge-dev-420.dev-420.json b/domains/_github-pages-challenge-dev-420.dev-420.json new file mode 100644 index 000000000..a0512f44d --- /dev/null +++ b/domains/_github-pages-challenge-dev-420.dev-420.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dev-420", + "email": "imakbss@gmail.com" + }, + "record": { + "TXT": "af648cf0502797580ddf061805dad3" + } +} diff --git a/domains/_github-pages-challenge-devendrakanojiya.devendra.json b/domains/_github-pages-challenge-devendrakanojiya.devendra.json new file mode 100644 index 000000000..961fb0562 --- /dev/null +++ b/domains/_github-pages-challenge-devendrakanojiya.devendra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devendrakanojiya", + "email": "s_36100@bkbirlacollegekalyan.com" + }, + "record": { + "TXT": "1bab44a51e777f98e075d71f2806a4" + } +} diff --git a/domains/_github-pages-challenge-devendrakanojiya.devendrakanojiya.json b/domains/_github-pages-challenge-devendrakanojiya.devendrakanojiya.json new file mode 100644 index 000000000..bc273caf0 --- /dev/null +++ b/domains/_github-pages-challenge-devendrakanojiya.devendrakanojiya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devendrakanojiya", + "email": "s_36100@bkbirlacollegekalyan.com" + }, + "record": { + "TXT": "37b9724a41bf8e23b2a352d65b7d19" + } +} diff --git a/domains/_github-pages-challenge-dumprr.dumprr.json b/domains/_github-pages-challenge-dumprr.dumprr.json new file mode 100644 index 000000000..a497bb694 --- /dev/null +++ b/domains/_github-pages-challenge-dumprr.dumprr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dumprr", + "email": "duhhhmprr@proton.me" + }, + "record": { + "TXT": "493971f29452bc15b55966259b43a5" + } +} diff --git a/domains/_github-pages-challenge-dushmanta05.dushmanta.json b/domains/_github-pages-challenge-dushmanta05.dushmanta.json new file mode 100644 index 000000000..471006b8b --- /dev/null +++ b/domains/_github-pages-challenge-dushmanta05.dushmanta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dushmanta05", + "email": "dushmanta.dev@gmail.com" + }, + "record": { + "TXT": "259ff2c88b910f54c7a1ec2d0da405" + } +} diff --git a/domains/_github-pages-challenge-dvandervlag.dennis.json b/domains/_github-pages-challenge-dvandervlag.dennis.json new file mode 100644 index 000000000..ca38a7f53 --- /dev/null +++ b/domains/_github-pages-challenge-dvandervlag.dennis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dvandervlag", + "email": "dvandervlag@gmail.com" + }, + "record": { + "TXT": "e0c9a40b22c0a75c4043ff40e1b926" + } +} diff --git a/domains/_github-pages-challenge-edenqwq.eden.json b/domains/_github-pages-challenge-edenqwq.eden.json new file mode 100644 index 000000000..2460433b0 --- /dev/null +++ b/domains/_github-pages-challenge-edenqwq.eden.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EdenQwQ", + "email": "lsahlm1eden@gmail.com" + }, + "record": { + "TXT": "2babcf1b4a0ae8e0f7bc801719d6af" + } +} diff --git a/domains/_github-pages-challenge-edwardthelegend.edward.json b/domains/_github-pages-challenge-edwardthelegend.edward.json new file mode 100644 index 000000000..77392390d --- /dev/null +++ b/domains/_github-pages-challenge-edwardthelegend.edward.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "EdwardTheLegend", + "email": "edward@edwardtlowe.com" + }, + + "record": { + "TXT": "fba1c393a4bf816cdb2aa4515feae1" + } +} diff --git a/domains/_github-pages-challenge-eldano.eldano.json b/domains/_github-pages-challenge-eldano.eldano.json new file mode 100644 index 000000000..6b3a52210 --- /dev/null +++ b/domains/_github-pages-challenge-eldano.eldano.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eldano", + "email": "eldano.v2@gmail.com" + }, + "record": { + "TXT": "f805956b9898312782616bc73ce1cd" + } +} diff --git a/domains/_github-pages-challenge-eldinesh.eldinesh.json b/domains/_github-pages-challenge-eldinesh.eldinesh.json new file mode 100644 index 000000000..754b01a0a --- /dev/null +++ b/domains/_github-pages-challenge-eldinesh.eldinesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eldinesh", + "email": "dseera6@gmail.com" + }, + "record": { + "TXT": "dafe75727b19da6bd62bf961a94c7d" + } +} diff --git a/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json b/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json new file mode 100644 index 000000000..ecfbf1b52 --- /dev/null +++ b/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Endermanbugzjfc", + "email": "endermanbugzjfc@gmail.com" + }, + "record": { + "TXT": "238acf06da9051a27631863f11abbf" + } +} diff --git a/domains/_github-pages-challenge-enderpoint07.enderpoint.json b/domains/_github-pages-challenge-enderpoint07.enderpoint.json new file mode 100644 index 000000000..9534d7137 --- /dev/null +++ b/domains/_github-pages-challenge-enderpoint07.enderpoint.json @@ -0,0 +1,13 @@ +{ + "description": "EnderPoint's dev site", + "repo": "https://github.com/EnderPoint07/EnderPoint07.github.io", + "owner": { + "username": "EnderPoint07", + "email": "", + "discord": "DotM38#5497", + "instagram": "enderpoint07" + }, + "record": { + "TXT": "ea82a679a2f0a737ed5a4c6a5d0e2b" + } +} diff --git a/domains/_github-pages-challenge-fa-fifi.fa-fifi.json b/domains/_github-pages-challenge-fa-fifi.fa-fifi.json new file mode 100644 index 000000000..e68a19e0e --- /dev/null +++ b/domains/_github-pages-challenge-fa-fifi.fa-fifi.json @@ -0,0 +1,10 @@ +{ + "description": "Github page domain verification", + "owner": { + "username": "fa-fifi", + "email": "fafifi1997@gmail.com" + }, + "record": { + "TXT": "4076c15aac94a89c1a131d252cf368" + } +} diff --git a/domains/_github-pages-challenge-fdciabdul.fdciabdul.json b/domains/_github-pages-challenge-fdciabdul.fdciabdul.json new file mode 100644 index 000000000..ff827cd72 --- /dev/null +++ b/domains/_github-pages-challenge-fdciabdul.fdciabdul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fdciabdul", + "email": "cp@imtaqin.id" + }, + "record": { + "TXT": "54ca8d4fa780d986e86c1306c00519" + } +} diff --git a/domains/_github-pages-challenge-flazepe.flazepe.json b/domains/_github-pages-challenge-flazepe.flazepe.json new file mode 100644 index 000000000..49f113584 --- /dev/null +++ b/domains/_github-pages-challenge-flazepe.flazepe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "flazepe", + "email": "flazepe@gmail.com" + }, + "record": { + "TXT": "68edc295b0936fb51d13af5cbbfc3b" + } +} diff --git a/domains/_github-pages-challenge-flc995.florin.json b/domains/_github-pages-challenge-flc995.florin.json new file mode 100644 index 000000000..634deabb5 --- /dev/null +++ b/domains/_github-pages-challenge-flc995.florin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "flc995", + "email": "flc995@gmail.com" + }, + "record": { + "TXT": "eab0530066ed691b55a4edd424f74b" + } +} diff --git a/domains/_github-pages-challenge-foxy4096.foxy4096.json b/domains/_github-pages-challenge-foxy4096.foxy4096.json new file mode 100644 index 000000000..c6e871060 --- /dev/null +++ b/domains/_github-pages-challenge-foxy4096.foxy4096.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "foxy4096", + "email": "adityapriyadarshi669@gmail.com" + }, + "record": { + "TXT": "eb006bea4f375b57b795dbfc8dd3fe" + } +} diff --git a/domains/_github-pages-challenge-frost2k5.frost2k5.json b/domains/_github-pages-challenge-frost2k5.frost2k5.json new file mode 100644 index 000000000..a1b0bec68 --- /dev/null +++ b/domains/_github-pages-challenge-frost2k5.frost2k5.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrosT2k5", + "email": "androygaming@gmail.com" + }, + "record": { + "TXT": "470d49eac00aadbe7f580a6c455ad9" + } +} diff --git a/domains/_github-pages-challenge-funnsam.funn.json b/domains/_github-pages-challenge-funnsam.funn.json new file mode 100644 index 000000000..ef59f63b6 --- /dev/null +++ b/domains/_github-pages-challenge-funnsam.funn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "funnsam", + "email": "funnsam8@gmail.com" + }, + "record": { + "TXT": "a81a9e51e2583c003a02eba386cb78" + } +} diff --git a/domains/_github-pages-challenge-gabekgfx.gabek.json b/domains/_github-pages-challenge-gabekgfx.gabek.json new file mode 100644 index 000000000..ec4a1d969 --- /dev/null +++ b/domains/_github-pages-challenge-gabekgfx.gabek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gabekgfx", + "email": "bussines.gabrys@gmail.com" + }, + "record": { + "TXT": "e9b873f6071bb8f4c1384efe52d14d" + } +} diff --git a/domains/_github-pages-challenge-gautamkrishnar.gkr.json b/domains/_github-pages-challenge-gautamkrishnar.gkr.json new file mode 100644 index 000000000..c064bd3c7 --- /dev/null +++ b/domains/_github-pages-challenge-gautamkrishnar.gkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gautamkrishnar", + "email": "rgautamkrishna@gmail.com" + }, + "record": { + "TXT": "155ab7179ccadb58ed0627f0b45420" + } +} diff --git a/domains/_github-pages-challenge-giocoliere.gioco.json b/domains/_github-pages-challenge-giocoliere.gioco.json new file mode 100644 index 000000000..9ea7ff84e --- /dev/null +++ b/domains/_github-pages-challenge-giocoliere.gioco.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "giocoliere", + "email": "simcrigjeki@gmail.com" + }, + "record": { + "TXT": "6da8f68c4f74f990d4d75ad48bdd93" + } +} diff --git a/domains/_github-pages-challenge-habeel06.habeel.json b/domains/_github-pages-challenge-habeel06.habeel.json new file mode 100644 index 000000000..df7d357b9 --- /dev/null +++ b/domains/_github-pages-challenge-habeel06.habeel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "habeel06", + "email": "" + }, + "record": { + "TXT": "6bbac3351ea3d8ad90603e1318c7ff" + } +} diff --git a/domains/_github-pages-challenge-harishnkr.hari.json b/domains/_github-pages-challenge-harishnkr.hari.json new file mode 100644 index 000000000..6e88e44c1 --- /dev/null +++ b/domains/_github-pages-challenge-harishnkr.hari.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "harishnkr", + "email": "hari2menon1234@gmail.com" + }, + "record": { + "TXT": "7f15aad6874de8ea118574464c8169" + } +} diff --git a/domains/_github-pages-challenge-hector-vigil.hector-vigil.json b/domains/_github-pages-challenge-hector-vigil.hector-vigil.json new file mode 100644 index 000000000..694ff157d --- /dev/null +++ b/domains/_github-pages-challenge-hector-vigil.hector-vigil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hector-vigil", + "email": "vigilescalera.h@gmail.com" + }, + "record": { + "TXT": "01a4ef998725972f99991612a43336" + } +} diff --git a/domains/_github-pages-challenge-heyshaquib.heyshaquib.json b/domains/_github-pages-challenge-heyshaquib.heyshaquib.json new file mode 100644 index 000000000..a2dbe89ac --- /dev/null +++ b/domains/_github-pages-challenge-heyshaquib.heyshaquib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heyshaquib", + "email": "heyshaquib@proton.me" + }, + "record": { + "TXT": "cd081244e0ad3700962e9d4280285a" + } +} diff --git a/domains/_github-pages-challenge-hilight3r.hilight3r.json b/domains/_github-pages-challenge-hilight3r.hilight3r.json new file mode 100644 index 000000000..6bdc1b937 --- /dev/null +++ b/domains/_github-pages-challenge-hilight3r.hilight3r.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HIlight3R", + "email": "", + "discord": "632272741000544259", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lEEbmOZavCkur0apEhD0MigNx6rzV3Kqhd9_Lw4Wxt7U7b0rcV779rEFB1Fm4LdwKAVJJ8_MeDm1jf0y14lGqQotXsvYzRKOCBk5t7vLtS_541WkodNwOPbAUV_g2KBaq6MynjnwX5786OLkuRJE-QnxwflxQRQHtL76xYJV3d7UVmZk0ppSUxyCw5SdSXUp7zgoJiTE2JIshtR5dFULQCyH9QK7gVpNFJBwaoTJeoRsCOy_oYoXVhYysYhX94tubtwKzE4xSDmQW4UbOo8yLRNTIo-PkyuY6cBD4yYvueRcTAd_UChS12Y27QSFhQq78I7WLaE7u4cV060Th1fEmA.9kQc0tIg1PyfXJtKgbiBSQ.uFTPklnOgLBqnu-dg7ZsCEZ_QrMiuyiHY60IgI1X3CdE1kSQckWTdApOQF8AXTC0inYYfmSpfvzP02Rcgo3Z9vyrckWG_ZSJbmfKR2SOpeN_Cq94jwKAZQXW0U45LxB1.cYkl_VljmQbyvurLc7hF6Q" + }, + "record": { + "TXT": "0c51eaecf1de5c4349169056229f46" + } +} diff --git a/domains/_github-pages-challenge-himangshu147-git.himangshu147.json b/domains/_github-pages-challenge-himangshu147-git.himangshu147.json new file mode 100644 index 000000000..b70bb5b04 --- /dev/null +++ b/domains/_github-pages-challenge-himangshu147-git.himangshu147.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "himangshu147-git", + "email": "saikiahimangshu1256@gmail.com", + "discord": "775660503342776341" + }, + + "record": { + "TXT": "2679f35b2c0a88253be04cc1230ee2" + } +} diff --git a/domains/_github-pages-challenge-hmonsterg.soap.json b/domains/_github-pages-challenge-hmonsterg.soap.json new file mode 100644 index 000000000..ad3c92831 --- /dev/null +++ b/domains/_github-pages-challenge-hmonsterg.soap.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HmonsterG", + "email": "Plzdontgethacked@outlook.com" + }, + "record": { + "TXT": "e97c07c8d241804c777b23d7015d00" + } +} diff --git a/domains/_github-pages-challenge-i-Jer.jer.json b/domains/_github-pages-challenge-i-Jer.jer.json new file mode 100644 index 000000000..ba868f179 --- /dev/null +++ b/domains/_github-pages-challenge-i-Jer.jer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JerBlox", + "email": "chen.fuyuan07@gmail.com" + }, + "record": { + "TXT": "e1e6eda49ed7d363f8492c91821a1a" + } +} diff --git a/domains/_github-pages-challenge-iakzs.iakzs.json b/domains/_github-pages-challenge-iakzs.iakzs.json new file mode 100644 index 000000000..989e344d2 --- /dev/null +++ b/domains/_github-pages-challenge-iakzs.iakzs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "iakzs", + "email": "iakzs@protonmail.com", + "discord": "622795838032314388" + }, + + "record": { + "TXT": "e20d874e765da4afd4a221f6c8bce4" + } +} diff --git a/domains/_github-pages-challenge-iakzs.kz.json b/domains/_github-pages-challenge-iakzs.kz.json new file mode 100644 index 000000000..1c706849a --- /dev/null +++ b/domains/_github-pages-challenge-iakzs.kz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "iakzs", + "email": "iakzs@protonmail.com", + "discord": "622795838032314388" + }, + + "record": { + "TXT": "cb7cd68eea57b70a1cd2814629c399" + } +} diff --git a/domains/_github-pages-challenge-iamrony777.ronit.json b/domains/_github-pages-challenge-iamrony777.ronit.json new file mode 100644 index 000000000..be394ee52 --- /dev/null +++ b/domains/_github-pages-challenge-iamrony777.ronit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "iamrony777", + "email": "iamrony777@pm.me" + }, + + "record": { + "TXT": "702edaf64e30be353646b4988cbc26" + } +} diff --git a/domains/_github-pages-challenge-icky17.jairomorales.json b/domains/_github-pages-challenge-icky17.jairomorales.json new file mode 100644 index 000000000..0e4a4af87 --- /dev/null +++ b/domains/_github-pages-challenge-icky17.jairomorales.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Icky17", + "email": "jairomoralesperez0@gmail.com" + }, + "record": { + "TXT": "bdff1e7214b7ebd125f3b9e9e9f1cd" + } +} diff --git a/domains/_github-pages-challenge-icm185.icm.json b/domains/_github-pages-challenge-icm185.icm.json new file mode 100644 index 000000000..cd9a85d65 --- /dev/null +++ b/domains/_github-pages-challenge-icm185.icm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ICM185", + "email": "ironcladmonster185@gmail.com" + }, + "record": { + "TXT": "0a7797274484306ed45f07548705fa" + } +} diff --git a/domains/_github-pages-challenge-impratik7.pratikmali.json b/domains/_github-pages-challenge-impratik7.pratikmali.json new file mode 100644 index 000000000..53c529cb3 --- /dev/null +++ b/domains/_github-pages-challenge-impratik7.pratikmali.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "impratik7", + "email": "malipratik09@gmail.com" + }, + "record": { + "TXT": "31f203aa7f5e0f5c0d7e984a718bc7" + } +} diff --git a/domains/_github-pages-challenge-inkilu.gautham.json b/domains/_github-pages-challenge-inkilu.gautham.json new file mode 100644 index 000000000..0002db549 --- /dev/null +++ b/domains/_github-pages-challenge-inkilu.gautham.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "inkilu", + "email": "gauthamgkm@gmail.com" + }, + "record": { + "TXT": "c49ff3bbd82885e942c6785d410fd0" + } +} diff --git a/domains/_github-pages-challenge-inkilu.inkilu.json b/domains/_github-pages-challenge-inkilu.inkilu.json new file mode 100644 index 000000000..b6033f50e --- /dev/null +++ b/domains/_github-pages-challenge-inkilu.inkilu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "inkilu", + "email": "gauthamgkm@gmail.com" + }, + "record": { + "TXT": "d84cc8928b4a48588344fd7d279fd6" + } +} diff --git a/domains/_github-pages-challenge-iraviteja.raviteja.json b/domains/_github-pages-challenge-iraviteja.raviteja.json new file mode 100644 index 000000000..2378c5633 --- /dev/null +++ b/domains/_github-pages-challenge-iraviteja.raviteja.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iraviteja", + "email": "iraviteja77@gmail.com" + }, + "record": { + "TXT": "6bb854139d8be9a7f37ccb05319b75" + } +} diff --git a/domains/_github-pages-challenge-is-a-dev.data.json b/domains/_github-pages-challenge-is-a-dev.data.json new file mode 100644 index 000000000..be6e79b91 --- /dev/null +++ b/domains/_github-pages-challenge-is-a-dev.data.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "TXT": "9b2dd0cf1f2f48466e165d39351c97" + } +} diff --git a/domains/_github-pages-challenge-is-a-dev.raw-api.json b/domains/_github-pages-challenge-is-a-dev.raw-api.json new file mode 100644 index 000000000..d9fd3f4e6 --- /dev/null +++ b/domains/_github-pages-challenge-is-a-dev.raw-api.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "TXT": "22bbab4068a6c51de6df06aac442d5" + } +} diff --git a/domains/_github-pages-challenge-is-a-dev.team.json b/domains/_github-pages-challenge-is-a-dev.team.json new file mode 100644 index 000000000..22b7ccc10 --- /dev/null +++ b/domains/_github-pages-challenge-is-a-dev.team.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "TXT": "c551c059fb167540ec0498d9011556" + } +} diff --git a/domains/_github-pages-challenge-itachisan.giovanni.json b/domains/_github-pages-challenge-itachisan.giovanni.json new file mode 100644 index 000000000..41ccd7e29 --- /dev/null +++ b/domains/_github-pages-challenge-itachisan.giovanni.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ItachiSan", + "email": "giovannisantini93@yahoo.it" + }, + "record": { + "TXT": "e7997ccdbdbbd94187efc184b3acc3" + } +} diff --git a/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json b/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json new file mode 100644 index 000000000..971ce9da8 --- /dev/null +++ b/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsnicecraft", + "email": "itsnicecraft@protonmail.com" + }, + "record": { + "TXT": "af298352953860816795903319fbc9" + } +} diff --git a/domains/_github-pages-challenge-itsvick.itsvick.json b/domains/_github-pages-challenge-itsvick.itsvick.json new file mode 100644 index 000000000..e34fb6f5c --- /dev/null +++ b/domains/_github-pages-challenge-itsvick.itsvick.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "itsvick", + "email": "vivek_kasture@techjoomla.com" + }, + + "record": { + "TXT": "6cccc8b9552901f383cdc6a606b185" + } +} diff --git a/domains/_github-pages-challenge-j3rrythomas.jerry.json b/domains/_github-pages-challenge-j3rrythomas.jerry.json new file mode 100644 index 000000000..685b4867c --- /dev/null +++ b/domains/_github-pages-challenge-j3rrythomas.jerry.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "j3rrythomas", + "email": "jerrythomasjohn9@gmail.com" + }, + "record": { + "TXT": "8d2b658010e7359f0de68b61b4b6dd" + } +} diff --git a/domains/_github-pages-challenge-jakehe1226.jakehe.json b/domains/_github-pages-challenge-jakehe1226.jakehe.json new file mode 100644 index 000000000..bb10367b2 --- /dev/null +++ b/domains/_github-pages-challenge-jakehe1226.jakehe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jakehe1226", + "email": "jakehe1226@gmail.com" + }, + "record": { + "TXT": "d96dac12901888fba491ca3e7666b6" + } +} diff --git a/domains/_github-pages-challenge-jakethebest1238.jakehe.json b/domains/_github-pages-challenge-jakethebest1238.jakehe.json new file mode 100644 index 000000000..0f4c0ea5c --- /dev/null +++ b/domains/_github-pages-challenge-jakethebest1238.jakehe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jakethebest1238", + "email": "jakehe1226@gmail.com" + }, + "record": { + "TXT": "d96dac12901888fba491ca3e7666b6" + } +} diff --git a/domains/_github-pages-challenge-javascript-void0.java.json b/domains/_github-pages-challenge-javascript-void0.java.json new file mode 100644 index 000000000..fe6db6bfc --- /dev/null +++ b/domains/_github-pages-challenge-javascript-void0.java.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "javascript-void0", + "email": "", + "discord": "Java#3865" + }, + "record": { + "TXT": "ce7434d57dd03085f434bc76dbab2f" + } +} diff --git a/domains/_github-pages-challenge-jb3.joe.json b/domains/_github-pages-challenge-jb3.joe.json new file mode 100644 index 000000000..a7b22c1f8 --- /dev/null +++ b/domains/_github-pages-challenge-jb3.joe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jb3", + "email": "joe@jb3.dev" + }, + "record": { + "TXT": "b10c435ad8d9bb1a305cf52669e9ad" + } +} diff --git a/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json b/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json new file mode 100644 index 000000000..0d8941195 --- /dev/null +++ b/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jcarpenter48", + "email": "jcarpenter48@mail.com" + }, + "record": { + "TXT": "2b652a052305150f64e2df88a21d0f" + } +} diff --git a/domains/_github-pages-challenge-jcgaming-official.jcquieta.json b/domains/_github-pages-challenge-jcgaming-official.jcquieta.json new file mode 100644 index 000000000..32b4b98a9 --- /dev/null +++ b/domains/_github-pages-challenge-jcgaming-official.jcquieta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jcgaming-official", + "email": "quieta.johncarl158@gmail.com" + }, + "record": { + "TXT": "c7ad513bd1a641f4be43d3ea718a5e" + } +} diff --git a/domains/_github-pages-challenge-jesgran.jesgran.json b/domains/_github-pages-challenge-jesgran.jesgran.json new file mode 100644 index 000000000..edef8f039 --- /dev/null +++ b/domains/_github-pages-challenge-jesgran.jesgran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jesgran", + "email": "calzdani20@libero.it" + }, + "record": { + "TXT": "4ca188e02efff19513cd6f803a57e2" + } +} diff --git a/domains/_github-pages-challenge-jeymen.jeymen.json b/domains/_github-pages-challenge-jeymen.jeymen.json new file mode 100644 index 000000000..3075b9884 --- /dev/null +++ b/domains/_github-pages-challenge-jeymen.jeymen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jeymen", + "email": "jeymen11@proton.me" + }, + "record": { + "TXT": "d01c3f5f2e886990f511ffb0dc7fcb" + } +} diff --git a/domains/_github-pages-challenge-joythejoystick1.glqch.json b/domains/_github-pages-challenge-joythejoystick1.glqch.json new file mode 100644 index 000000000..229a87d5f --- /dev/null +++ b/domains/_github-pages-challenge-joythejoystick1.glqch.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joythejoystick1", + "email": "midoayoub778@gmail.com" + }, + "record": { + "TXT": "eb682c2a35bd6139b653df86f7d248" + } +} diff --git a/domains/_github-pages-challenge-justtobbi.justtobbi.json b/domains/_github-pages-challenge-justtobbi.justtobbi.json new file mode 100644 index 000000000..3c7a1ebc3 --- /dev/null +++ b/domains/_github-pages-challenge-justtobbi.justtobbi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "justtobbi", + "email": "justtobbi@gmail.com" + }, + "record": { + "TXT": "40c1c0481529b00233ccf00048c45c" + } +} diff --git a/domains/_github-pages-challenge-jwaxy.jwaxy.json b/domains/_github-pages-challenge-jwaxy.jwaxy.json new file mode 100644 index 000000000..96595b11e --- /dev/null +++ b/domains/_github-pages-challenge-jwaxy.jwaxy.json @@ -0,0 +1,10 @@ +{ + "description": "GitHub said that the verification was needed so I created this record.", + "owner": { + "username": "jwaxy", + "email": "me@yxawj.aleeas.com" + }, + "record": { + "TXT": "8e4b33b2837436011e57d5cade6b40" + } +} diff --git a/domains/_github-pages-challenge-k22rma.k22rma.json b/domains/_github-pages-challenge-k22rma.k22rma.json new file mode 100644 index 000000000..b0b3db76c --- /dev/null +++ b/domains/_github-pages-challenge-k22rma.k22rma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "k22rma", + "email": "krrishsharma.ks12345@gmail.com" + }, + "record": { + "TXT": "c4d4e7c7ad03a88fd89ea4f1beb994" + } +} diff --git a/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json b/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json new file mode 100644 index 000000000..c64213de6 --- /dev/null +++ b/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kaustubhkharvi", + "email": "kaustubh_2008@outlook.com", + "twitter": "kaustubhkharvi" + }, + "record": { + "TXT": "1ac125c3f84f3381a22491edf36bb0" + } +} diff --git a/domains/_github-pages-challenge-kenwuqianghao.kenwu.json b/domains/_github-pages-challenge-kenwuqianghao.kenwu.json new file mode 100644 index 000000000..f89f348a2 --- /dev/null +++ b/domains/_github-pages-challenge-kenwuqianghao.kenwu.json @@ -0,0 +1,12 @@ +{ + "description": "This is Ken Wu's personal portfolio website.", + "repo": "https://github.com/kenwuqianghao/kenwuqianghao.github.io", + "owner": { + "username": "KenWuqianghao", + "email": "wooqianghao@gmail.com", + "twitter": "KenWuqianghao" + }, + "record": { + "TXT": "ddd9e6fce10cefd43829dc21e9bc09" + } +} diff --git a/domains/_github-pages-challenge-kiensamson0000.khuathuykien.json b/domains/_github-pages-challenge-kiensamson0000.khuathuykien.json new file mode 100644 index 000000000..0d7ce5a96 --- /dev/null +++ b/domains/_github-pages-challenge-kiensamson0000.khuathuykien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kiensamson0000", + "email": "kienkh99@gmail.com" + }, + "record": { + "TXT": "5bcdd0e68060954c89ee00291531a9" + } +} diff --git a/domains/_github-pages-challenge-kingsmen732.mithilesh.json b/domains/_github-pages-challenge-kingsmen732.mithilesh.json new file mode 100644 index 000000000..3604cc9a5 --- /dev/null +++ b/domains/_github-pages-challenge-kingsmen732.mithilesh.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site to showcase my future works.", + "repo": "https://github.com/kingsmen732/nextgen-Resume-OTA", + "owner": { + "username": "kingsmen732", + "email": "kingsmen732@gmail.com" + }, + "record": { + "TXT": "796acaf6e18fb8e734811097f93a0a" + } +} diff --git a/domains/_github-pages-challenge-krishnans2006.krishnan.json b/domains/_github-pages-challenge-krishnans2006.krishnan.json new file mode 100644 index 000000000..b5377951e --- /dev/null +++ b/domains/_github-pages-challenge-krishnans2006.krishnan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "krishnans2006", + "email": "krishnans2006@gmail.com" + }, + "record": { + "TXT": "98ed55fbc51103499325626a360a64" + } +} diff --git a/domains/_github-pages-challenge-krix12.krix.json b/domains/_github-pages-challenge-krix12.krix.json new file mode 100644 index 000000000..b54e2d599 --- /dev/null +++ b/domains/_github-pages-challenge-krix12.krix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Krix12", + "email": "kristjan.kocevar89@gmail.com" + }, + "record": { + "TXT": "178ab459221fd277af8029cae84a63" + } +} diff --git a/domains/_github-pages-challenge-kunsh13.kunsh13.json b/domains/_github-pages-challenge-kunsh13.kunsh13.json new file mode 100644 index 000000000..1d8a75d5c --- /dev/null +++ b/domains/_github-pages-challenge-kunsh13.kunsh13.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kunsh13", + "email": "kunshmaurya@gmail.com" + }, + "record": { + "TXT": "72d4c5c21140c36045a8acebb81bd3" + } +} diff --git a/domains/_github-pages-challenge-l6174.l6174.json b/domains/_github-pages-challenge-l6174.l6174.json new file mode 100644 index 000000000..97dae4a78 --- /dev/null +++ b/domains/_github-pages-challenge-l6174.l6174.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "l6174", + "email": "l6174@proton.me" + }, + "record": { + "TXT": "239afcf7406892899a65a396dc024f" + } +} diff --git a/domains/_github-pages-challenge-labus3.madhav.json b/domains/_github-pages-challenge-labus3.madhav.json new file mode 100644 index 000000000..7308650c5 --- /dev/null +++ b/domains/_github-pages-challenge-labus3.madhav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LaBus3", + "email": "madhav.v.1996@gmail.com" + }, + "record": { + "TXT": "7362cb36811c9eefc5039e6e6da778" + } +} diff --git a/domains/_github-pages-challenge-lean-cc.kars.json b/domains/_github-pages-challenge-lean-cc.kars.json new file mode 100644 index 000000000..a8b7cabc1 --- /dev/null +++ b/domains/_github-pages-challenge-lean-cc.kars.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website.", + "repo": "https://github.com/lean-cc/Personal-site", + "owner": { + "username": "lean-cc", + "email": "leancc3020@gmail.com" + }, + "record": { + "TXT": "3c11059b471a5b5163437912c020df" + } +} diff --git a/domains/_github-pages-challenge-liancastellon.liancg.json b/domains/_github-pages-challenge-liancastellon.liancg.json new file mode 100644 index 000000000..198577cdd --- /dev/null +++ b/domains/_github-pages-challenge-liancastellon.liancg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "liancastellon", + "email": "liancg@gmail.com" + }, + + "record": { + "TXT": "de487db710c1daf905269fb57775b6" + } +} diff --git a/domains/_github-pages-challenge-lightly-toasted.toast.json b/domains/_github-pages-challenge-lightly-toasted.toast.json new file mode 100644 index 000000000..6b9d99795 --- /dev/null +++ b/domains/_github-pages-challenge-lightly-toasted.toast.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lightly-toasted", + "email": "tooast@duck.com" + }, + "record": { + "TXT": "b92470bdf6083c1af8509ee249c02f" + } +} diff --git a/domains/_github-pages-challenge-likalium.likalium.json b/domains/_github-pages-challenge-likalium.likalium.json new file mode 100644 index 000000000..8e5150129 --- /dev/null +++ b/domains/_github-pages-challenge-likalium.likalium.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "likalium", + "email": "", + "discord": "likalium" + }, + "record": { + "TXT": "57407626f3a1e351e728a974c6d5af" + } +} diff --git a/domains/_github-pages-challenge-linuzzx.linusx.json b/domains/_github-pages-challenge-linuzzx.linusx.json new file mode 100644 index 000000000..ba45a31e0 --- /dev/null +++ b/domains/_github-pages-challenge-linuzzx.linusx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "linuzzx", + "email": "GalaxyLinus@gmail.com" + }, + "record": { + "TXT": "029ab228dfd885b308be6aef43066d" + } +} diff --git a/domains/_github-pages-challenge-lizhiyao.zhiyao.json b/domains/_github-pages-challenge-lizhiyao.zhiyao.json new file mode 100644 index 000000000..56a39114c --- /dev/null +++ b/domains/_github-pages-challenge-lizhiyao.zhiyao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lizhiyao", + "email": "dancerlzy@gmail.com" + }, + "record": { + "TXT": "5079abdefe48796d3c55f058920bee" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-lnminh1411.lnminh1411.json b/domains/_github-pages-challenge-lnminh1411.lnminh1411.json new file mode 100644 index 000000000..6390f086c --- /dev/null +++ b/domains/_github-pages-challenge-lnminh1411.lnminh1411.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lnminh1411", + "email": "nhatminh.forwarding@gmail.com" + }, + "record": { + "TXT": "4f83fedca6340871b27f2bb29e61ae" + } +} diff --git a/domains/_github-pages-challenge-loisvelasco.loisvelasco.json b/domains/_github-pages-challenge-loisvelasco.loisvelasco.json new file mode 100644 index 000000000..a0b715d7e --- /dev/null +++ b/domains/_github-pages-challenge-loisvelasco.loisvelasco.json @@ -0,0 +1,10 @@ +{ + "description": "Github Verification", + "owner": { + "username": "loiSvelasco", + "email": "loisuperficialvelasco@gmail.com" + }, + "record": { + "TXT": "e45f5cee8c9438fe563d3bf4b2fbbe" + } +} diff --git a/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json b/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json new file mode 100644 index 000000000..313d46ba1 --- /dev/null +++ b/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LRxDarkDevil", + "email": "tahaadnanawan@gmail.com" + }, + "record": { + "TXT": "13dafb5731efc3b35b3e1fe1a20ac2" + } +} diff --git a/domains/_github-pages-challenge-mackrz.mackrz.json b/domains/_github-pages-challenge-mackrz.mackrz.json new file mode 100644 index 000000000..558858b2d --- /dev/null +++ b/domains/_github-pages-challenge-mackrz.mackrz.json @@ -0,0 +1,10 @@ +{ + "description": "GitHub Pages verification for mackrz.is-a.dev", + "owner": { + "username": "mackrz", + "email": "macio181@gmail.com" + }, + "record": { + "TXT": "5a7205dd21c68bf953f930899845d9" + } +} diff --git a/domains/_github-pages-challenge-madebytragic.madebytragic.json b/domains/_github-pages-challenge-madebytragic.madebytragic.json new file mode 100644 index 000000000..ed97e08a4 --- /dev/null +++ b/domains/_github-pages-challenge-madebytragic.madebytragic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lrmn7", + "email": "lrmnid@gmail.com" + }, + "record": { + "TXT": "9693d9e721696f4184aa3abfa35921" + } +} diff --git a/domains/_github-pages-challenge-marcossatoshi.satoshi.json b/domains/_github-pages-challenge-marcossatoshi.satoshi.json new file mode 100644 index 000000000..cd34c9e68 --- /dev/null +++ b/domains/_github-pages-challenge-marcossatoshi.satoshi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marcossatoshi", + "email": "marcos.satoshi@gmail.com" + }, + "record": { + "TXT": "f3045f0960ac5562a7d764b72d102a" + } +} diff --git a/domains/_github-pages-challenge-mcotocel.mcotocel.json b/domains/_github-pages-challenge-mcotocel.mcotocel.json new file mode 100644 index 000000000..6e0d751cf --- /dev/null +++ b/domains/_github-pages-challenge-mcotocel.mcotocel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MCotocel", + "email": "mcotocel@outlook.com" + }, + "record": { + "TXT": "059ac86f94300091a59d2cef8b09a6" + } +} diff --git a/domains/_github-pages-challenge-mesflit.mesflit.json b/domains/_github-pages-challenge-mesflit.mesflit.json new file mode 100644 index 000000000..f445a2871 --- /dev/null +++ b/domains/_github-pages-challenge-mesflit.mesflit.json @@ -0,0 +1,9 @@ +{ +"owner": { +"username": "mesflit", +"email": "benomerfaruk11@gmail.com" +}, +"record": { +"TXT": "67874e41f93805b9e30bd65ea1ca5a" +} +} diff --git a/domains/_github-pages-challenge-mikeymoo5.moothecow.json b/domains/_github-pages-challenge-mikeymoo5.moothecow.json new file mode 100644 index 000000000..abb91996a --- /dev/null +++ b/domains/_github-pages-challenge-mikeymoo5.moothecow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mikeymoo5", + "email": "smartguy9964@gmail.com" + }, + "record": { + "TXT": "2f899dd96f9394c2c189dc9a31aaf6" + } +} diff --git a/domains/_github-pages-challenge-mr1cecream.mricecream.json b/domains/_github-pages-challenge-mr1cecream.mricecream.json new file mode 100644 index 000000000..dd9c1f358 --- /dev/null +++ b/domains/_github-pages-challenge-mr1cecream.mricecream.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mr1cecream", + "email": "guy@ochakov.com", + "twitter": "Mr__Icecream" + }, + "record": { + "TXT": "86fe9c2f7e2d0be6a7a1c16a1c8032" + } +} diff --git a/domains/_github-pages-challenge-mrasif.mrasif.json b/domains/_github-pages-challenge-mrasif.mrasif.json new file mode 100644 index 000000000..4578316ae --- /dev/null +++ b/domains/_github-pages-challenge-mrasif.mrasif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrasif", + "email": "admin@mrasif.in" + }, + "record": { + "TXT": "3a800ee62fcc8911956495882b71ec" + } +} diff --git a/domains/_github-pages-challenge-n0r1uno.steffen.json b/domains/_github-pages-challenge-n0r1uno.steffen.json new file mode 100644 index 000000000..d8c7fba21 --- /dev/null +++ b/domains/_github-pages-challenge-n0r1uno.steffen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "N0r1uno", + "email": "steffen.florschuetz@t-online.de" + }, + "record": { + "TXT": "06dbcd4fdc6325c0bce9ab6031937a" + } +} diff --git a/domains/_github-pages-challenge-nCenti.centi.json b/domains/_github-pages-challenge-nCenti.centi.json new file mode 100644 index 000000000..831d1e373 --- /dev/null +++ b/domains/_github-pages-challenge-nCenti.centi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nCenti", + "email": "contactocenti@gmail.com" + }, + "record": { + "TXT": "0623291ff64cbeebbfad2df7939f83" + } +} diff --git a/domains/_github-pages-challenge-nameisminh.ming.json b/domains/_github-pages-challenge-nameisminh.ming.json new file mode 100644 index 000000000..9dc22d928 --- /dev/null +++ b/domains/_github-pages-challenge-nameisminh.ming.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nameisminh", + "email": "buicongminh081104@gmail.com" + }, + "record": { + "TXT": "124480cad3fd4ed9b6cf85747562f6" + } +} diff --git a/domains/_github-pages-challenge-natblida68.ashwa.json b/domains/_github-pages-challenge-natblida68.ashwa.json new file mode 100644 index 000000000..76d0989cd --- /dev/null +++ b/domains/_github-pages-challenge-natblida68.ashwa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NatBLida68", + "email": "aswajith.jithu888@gmail.com" + }, + "record": { + "TXT": "f20bb532af2838eed8bfe622378d4b" + } +} diff --git a/domains/_github-pages-challenge-neoapps-dev.neoapps.json b/domains/_github-pages-challenge-neoapps-dev.neoapps.json new file mode 100644 index 000000000..38bdb1364 --- /dev/null +++ b/domains/_github-pages-challenge-neoapps-dev.neoapps.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "neoapps-dev", + "email": "asd22.info@gmail.com" + }, + "record": { + "TXT": "e18c9ddc220cc83720a8cf6a0d2b2c" + } +} diff --git a/domains/_github-pages-challenge-nerdwithcomputers.m1raclemax.json b/domains/_github-pages-challenge-nerdwithcomputers.m1raclemax.json new file mode 100644 index 000000000..9e8fae654 --- /dev/null +++ b/domains/_github-pages-challenge-nerdwithcomputers.m1raclemax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nerdwithcomputers", + "email": "hpscigeek@gmail.com" + }, + "record": { + "TXT": "c944d7c547efbee69cf6537db51faa" + } +} diff --git a/domains/_github-pages-challenge-ngocjohn.ngocjohn.json b/domains/_github-pages-challenge-ngocjohn.ngocjohn.json new file mode 100644 index 000000000..ee4e12f81 --- /dev/null +++ b/domains/_github-pages-challenge-ngocjohn.ngocjohn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ngocjohn", + "email": "ngocjohn@me.com" + }, + "record": { + "TXT": "ffa3766e16ef7c648239c0d3292491" + } +} diff --git a/domains/_github-pages-challenge-night0721.night.json b/domains/_github-pages-challenge-night0721.night.json new file mode 100644 index 000000000..cb6960f96 --- /dev/null +++ b/domains/_github-pages-challenge-night0721.night.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio for showing my projects, contacts and about me", + "repo": "https://github.com/night0721/night0721.github.io", + "owner": { + "username": "night0721", + "email": "nightkalyyy@gmail.com" + }, + "record": { + "TXT": "e87fbe224df0c16bf8e0796e229952" + } +} diff --git a/domains/_github-pages-challenge-niksnemc.niksne.json b/domains/_github-pages-challenge-niksnemc.niksne.json new file mode 100644 index 000000000..c4fe3f77b --- /dev/null +++ b/domains/_github-pages-challenge-niksnemc.niksne.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NikSneMC", + "email": "contact@niksne.ru" + }, + "record": { + "TXT": "6cde33bca742bd0dd9adf39a8f6d82" + } +} diff --git a/domains/_github-pages-challenge-noahziheng.noahgao.json b/domains/_github-pages-challenge-noahziheng.noahgao.json new file mode 100644 index 000000000..63500d9e0 --- /dev/null +++ b/domains/_github-pages-challenge-noahziheng.noahgao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "noahziheng", + "email": "noahgaocn@outlook.com" + }, + "record": { + "TXT": "a25695a5c49f374f6eb483ff49c7c7" + } +} diff --git a/domains/_github-pages-challenge-nobody5050.6502.json b/domains/_github-pages-challenge-nobody5050.6502.json new file mode 100644 index 000000000..89758a2e7 --- /dev/null +++ b/domains/_github-pages-challenge-nobody5050.6502.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nobody5050", + "email": "levibelland@gmail.com" + }, + "record": { + "TXT": "0648c9309d9441b7f6b0dea3a78194" + } +} diff --git a/domains/_github-pages-challenge-node0505.node.json b/domains/_github-pages-challenge-node0505.node.json new file mode 100644 index 000000000..d50fdd21c --- /dev/null +++ b/domains/_github-pages-challenge-node0505.node.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "node0505", + "email": "node0505@outlook.com" + }, + "record": { + "TXT": "18bf4da227454aaee1c8e2ba62d466" + } +} diff --git a/domains/_github-pages-challenge-noobshubham.shubham.json b/domains/_github-pages-challenge-noobshubham.shubham.json new file mode 100644 index 000000000..a935a9a32 --- /dev/null +++ b/domains/_github-pages-challenge-noobshubham.shubham.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/noobshubham/Portfolio", + "owner": { + "username": "noobshubham", + "email": "noobshubham65@gmail.com" + }, + "record": { + "TXT": "d195c824403985d365b744c05663fb" + } +} diff --git a/domains/_github-pages-challenge-not-a-ethan.not-ethan.json b/domains/_github-pages-challenge-not-a-ethan.not-ethan.json new file mode 100644 index 000000000..3964f9dd1 --- /dev/null +++ b/domains/_github-pages-challenge-not-a-ethan.not-ethan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "not-a-ethan", + "email": "", + "discord": "not_ethan." + }, + "record": { + "TXT": "72fd44f779f6bd6ad363ff20bdeffb" + } +} diff --git a/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json b/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json new file mode 100644 index 000000000..c74466525 --- /dev/null +++ b/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "not-a-ethan", + "email": "", + "discord": "not_ethan." + }, + "record": { + "TXT": "6a37d74710c72cb55ff05fffd71974" + } +} diff --git a/domains/_github-pages-challenge-not-coded.notcoded.json b/domains/_github-pages-challenge-not-coded.notcoded.json new file mode 100644 index 000000000..057d30c8b --- /dev/null +++ b/domains/_github-pages-challenge-not-coded.notcoded.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "not-coded", + "email": "", + "discord": "notcoded", + "discordUserID": "620662953347121163" + }, + "record": { + "TXT": "54806bbd47bc06fa6f626952eb06aa" + } +} diff --git a/domains/_github-pages-challenge-notnotrachit.rachit.json b/domains/_github-pages-challenge-notnotrachit.rachit.json new file mode 100644 index 000000000..658bac750 --- /dev/null +++ b/domains/_github-pages-challenge-notnotrachit.rachit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "notnotrachit", + "email": "rachitkhurana40@gmail.com" + }, + "record": { + "TXT": "934b26e127661bad98765dc4d571f2" + } +} diff --git a/domains/_github-pages-challenge-nxb1t.nxb1t.json b/domains/_github-pages-challenge-nxb1t.nxb1t.json new file mode 100644 index 000000000..bdac95dbd --- /dev/null +++ b/domains/_github-pages-challenge-nxb1t.nxb1t.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "nxb1t", + "email": "nxb1t@proton.me" + }, + "record": { + "TXT": "c18d4423748e2acdfacadefa6495a6" + } +} diff --git a/domains/_github-pages-challenge-o-lumix.lumix.json b/domains/_github-pages-challenge-o-lumix.lumix.json new file mode 100644 index 000000000..043436e80 --- /dev/null +++ b/domains/_github-pages-challenge-o-lumix.lumix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "o-lumix", + "email": "bylumixxx@gmail.com" + }, + "record": { + "TXT": "5eeb1461cd186204552743313555e9" + } +} diff --git a/domains/_github-pages-challenge-okineadev.okinea.json b/domains/_github-pages-challenge-okineadev.okinea.json new file mode 100644 index 000000000..08e93918c --- /dev/null +++ b/domains/_github-pages-challenge-okineadev.okinea.json @@ -0,0 +1,11 @@ +{ + "description": "Okinea Dev website", + "repo": "https://github.com/okineadev", + "owner": { + "username": "okineadev", + "email": "81070564+okineadev@users.noreply.github.com" + }, + "record": { + "TXT": "a4553ebffa6a3356fc37fb4f8e8a14" + } +} diff --git a/domains/_github-pages-challenge-opaayush.aayush.json b/domains/_github-pages-challenge-opaayush.aayush.json index 1f573c3b7..6749023b3 100644 --- a/domains/_github-pages-challenge-opaayush.aayush.json +++ b/domains/_github-pages-challenge-opaayush.aayush.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "OpAayush", - "email": "aayushmagrawal@gmail.com" - }, - "record": { - "TXT": "d609a47482f885a41a61549fbad3ee" - } + "owner": { + "username": "OpAayush", + "email": "aayushmagrawal@gmail.com" + }, + "record": { + "TXT": "d609a47482f885a41a61549fbad3ee" + } } diff --git a/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json b/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json new file mode 100644 index 000000000..9bb2054c5 --- /dev/null +++ b/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OrangeLeafDev", + "email": "caluzajacob07@gmail.com" + }, + "record": { + "TXT": "46dcf591ef5db2595dc3ba5180bfc8" + } +} diff --git a/domains/_github-pages-challenge-ottercodes101.otter.json b/domains/_github-pages-challenge-ottercodes101.otter.json new file mode 100644 index 000000000..bce3e58f5 --- /dev/null +++ b/domains/_github-pages-challenge-ottercodes101.otter.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "OtterCodes101", + "email": "oliver.anderson4435@gmail.com" + }, + "record": { + "TXT": "39223fa7956e66887c05db8b244538" + } +} diff --git a/domains/_github-pages-challenge-owentechv.owentech.json b/domains/_github-pages-challenge-owentechv.owentech.json new file mode 100644 index 000000000..3ee03fa12 --- /dev/null +++ b/domains/_github-pages-challenge-owentechv.owentech.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "owentechv", + "email": "dowenx83@gmail.com" + }, + "record": { + "TXT": "c07b3c627d33a0c9fe4cbc593a2234" + } +} diff --git a/domains/_github-pages-challenge-oxmc.oxmc.json b/domains/_github-pages-challenge-oxmc.oxmc.json new file mode 100644 index 000000000..742e18a45 --- /dev/null +++ b/domains/_github-pages-challenge-oxmc.oxmc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "oxmc", + "email": "oxmc7769.mail@gmail.com", + "discord": "oxmc7769" + }, + "record": { + "TXT": "eb7d97f93f961fd03de6e26db45846" + } +} diff --git a/domains/_github-pages-challenge-p3nguin-kun.p3nguin.json b/domains/_github-pages-challenge-p3nguin-kun.p3nguin.json new file mode 100644 index 000000000..0a0536331 --- /dev/null +++ b/domains/_github-pages-challenge-p3nguin-kun.p3nguin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "p3nguin-kun", + "email": "p3nguinkun@proton.me" + }, + "record": { + "TXT": "5c46702c7db5dc72a476dec9da3d34" + } +} diff --git a/domains/_github-pages-challenge-pansy27.pansy.json b/domains/_github-pages-challenge-pansy27.pansy.json new file mode 100644 index 000000000..838551c31 --- /dev/null +++ b/domains/_github-pages-challenge-pansy27.pansy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pansy27", + "email": "uselessshogun99@gmail.com" + }, + "record": { + "TXT": "f7dedb2a4d727663fc9b0198fe3797" + } +} diff --git a/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json b/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json new file mode 100644 index 000000000..6a9d91dbd --- /dev/null +++ b/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "patrickzhou1234", + "email": "", + "discord": "moist__nugget" + }, + "record": { + "TXT": "d7c5e799b2dc38d36cb2345dd0e78d" + } +} diff --git a/domains/_github-pages-challenge-pingoda.pingoda.json b/domains/_github-pages-challenge-pingoda.pingoda.json new file mode 100644 index 000000000..7116c4e7e --- /dev/null +++ b/domains/_github-pages-challenge-pingoda.pingoda.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Pingoda", + "email": "francescoclem915@gmail.com", + "twitter": "Pingoda_" + }, + "record": { + "TXT": "9ddc01a76b306b3cef2aba7445689b" + } +} diff --git a/domains/_github-pages-challenge-pixelgeek.pixelgeek.json b/domains/_github-pages-challenge-pixelgeek.pixelgeek.json new file mode 100644 index 000000000..49a6de195 --- /dev/null +++ b/domains/_github-pages-challenge-pixelgeek.pixelgeek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pixelgeek", + "email": "pxe.geek+github@gmail.com" + }, + "record": { + "TXT": "6ca9401189820db4d366aacc7832c3" + } +} diff --git a/domains/_github-pages-challenge-pjschinske.peter.json b/domains/_github-pages-challenge-pjschinske.peter.json new file mode 100644 index 000000000..7f7c0034b --- /dev/null +++ b/domains/_github-pages-challenge-pjschinske.peter.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pjschinske", + "email": "pjschinske@gmail.com" + }, + + "record": { + "TXT": "ae060fca298593aaf2b5cc7aec64e6" + } +} diff --git a/domains/_github-pages-challenge-plu5.ck.json b/domains/_github-pages-challenge-plu5.ck.json new file mode 100644 index 000000000..6bac36094 --- /dev/null +++ b/domains/_github-pages-challenge-plu5.ck.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/plu5/plu5.github.io", + "owner": { + "username": "plu5", + "email": "ctre@users.sourceforge.net", + "twitter": "preminster" + }, + "record": { + "TXT": "1d92c5eb70762c032ba6d32b9b631e" + } +} diff --git a/domains/_github-pages-challenge-potato0706.potatochips0706.json b/domains/_github-pages-challenge-potato0706.potatochips0706.json new file mode 100644 index 000000000..637ee416f --- /dev/null +++ b/domains/_github-pages-challenge-potato0706.potatochips0706.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "potato0706", + "email": "potatochips0706@gmail.com" + }, + "record": { + "TXT": "5b91b8e422a44c261ea94f0cd21d21" + } +} diff --git a/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json b/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json new file mode 100644 index 000000000..6f78b4294 --- /dev/null +++ b/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prakhillohiya", + "email": "prakhillohiya@gmail.com" + }, + "record": { + "TXT": "31f067f6796f63a3cb4e0110ff10df" + } +} diff --git a/domains/_github-pages-challenge-priyanshprajapat.monu.json b/domains/_github-pages-challenge-priyanshprajapat.monu.json deleted file mode 100644 index bc92aa104..000000000 --- a/domains/_github-pages-challenge-priyanshprajapat.monu.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "priyanshprajapat", - "email": "priy@nsh.is-a.dev" - }, - "record": { - "TXT": "a65192c96ebe888e8f9b09822aa059" - } -} diff --git a/domains/_github-pages-challenge-priyanshprajapat.priyansh.json b/domains/_github-pages-challenge-priyanshprajapat.priyansh.json deleted file mode 100644 index f5c94e99f..000000000 --- a/domains/_github-pages-challenge-priyanshprajapat.priyansh.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "priyanshprajapat", - "email": "priy@nsh.is-a.dev" - }, - "record": { - "TXT": "9344cea7b5e595f0feaf87f729a26a" - } -} diff --git a/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json b/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json new file mode 100644 index 000000000..cb1d3a612 --- /dev/null +++ b/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "proudmuslim-dev", + "email": "proudmuslim-dev@protonmail.com" + }, + "record": { + "TXT": "47cff427b2b6f1e86c38ea84e341f2" + } +} diff --git a/domains/_github-pages-challenge-quackduck.ishan.json b/domains/_github-pages-challenge-quackduck.ishan.json new file mode 100644 index 000000000..c2c9c3831 --- /dev/null +++ b/domains/_github-pages-challenge-quackduck.ishan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "quackduck", + "email": "igoel.mail@gmail.com" + }, + "record": { + "TXT": "14ec35f5a4a8dc217d642452be6b35" + } +} diff --git a/domains/_github-pages-challenge-quvvii.quvi.json b/domains/_github-pages-challenge-quvvii.quvi.json new file mode 100644 index 000000000..8906daf64 --- /dev/null +++ b/domains/_github-pages-challenge-quvvii.quvi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "quvvii", + "email": "quvi.top@gmail.com" + }, + "record": { + "TXT": "73689a256517432e99c181b07d0a83" + } +} diff --git a/domains/_github-pages-challenge-radioactivepotato.krunch.json b/domains/_github-pages-challenge-radioactivepotato.krunch.json new file mode 100644 index 000000000..eba5fb38d --- /dev/null +++ b/domains/_github-pages-challenge-radioactivepotato.krunch.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RadioactivePotato", + "email": "", + "discord": "krunchiekrunch._." + }, + "record": { + "TXT": "05dc6febabf44f8decab35d01609ee" + } +} diff --git a/domains/_github-pages-challenge-reuel-k.reuel.json b/domains/_github-pages-challenge-reuel-k.reuel.json new file mode 100644 index 000000000..c4b7bbc18 --- /dev/null +++ b/domains/_github-pages-challenge-reuel-k.reuel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "reuel-k", + "email": "reuelk@protonmail.com" + }, + "record": { + "TXT": "2a76de58b3d71c4918f07e57c92d5b" + } +} diff --git a/domains/_github-pages-challenge-revolutionisme.biplob.json b/domains/_github-pages-challenge-revolutionisme.biplob.json new file mode 100644 index 000000000..c7fe01116 --- /dev/null +++ b/domains/_github-pages-challenge-revolutionisme.biplob.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revolutionisme", + "email": "revolutionisme@gmail.com" + }, + "record": { + "TXT": "96bdd0268b2a0bb2c79eaeae1fd833" + } +} diff --git a/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json b/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json new file mode 100644 index 000000000..844946459 --- /dev/null +++ b/domains/_github-pages-challenge-riviox.galaxytweaks.riviox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "riviox", + "email": "rivioxyt@hotmail.com" + }, + "record": { + "TXT": "15bce163359555d636e6bd2cc5903f" + } +} diff --git a/domains/_github-pages-challenge-riviox.riviox.json b/domains/_github-pages-challenge-riviox.riviox.json new file mode 100644 index 000000000..34f04eb04 --- /dev/null +++ b/domains/_github-pages-challenge-riviox.riviox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "riviox", + "email": "rivioxyt@hotmail.com" + }, + "record": { + "TXT": "56a8f3f0363cd17d881a7380ede544" + } +} diff --git a/domains/_github-pages-challenge-rivioxgaming.riviox.json b/domains/_github-pages-challenge-rivioxgaming.riviox.json new file mode 100644 index 000000000..ef31b36ee --- /dev/null +++ b/domains/_github-pages-challenge-rivioxgaming.riviox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "riviox", + "email": "rivioxyt@hotmail.com" + }, + "record": { + "TXT": "2f2432d565a3e7e8f3a4577c0e4a90" + } +} diff --git a/domains/_github-pages-challenge-roadblockeddev.roadblocked.json b/domains/_github-pages-challenge-roadblockeddev.roadblocked.json new file mode 100644 index 000000000..b2c794620 --- /dev/null +++ b/domains/_github-pages-challenge-roadblockeddev.roadblocked.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roadblockeddev", + "email": "roadblockeddevcontact@skiff.com" + }, + "record": { + "TXT": "f255fd01482003b03f51e13141c132" + } +} diff --git a/domains/_github-pages-challenge-roktim32.gitninja.json b/domains/_github-pages-challenge-roktim32.gitninja.json new file mode 100644 index 000000000..7d548ef8d --- /dev/null +++ b/domains/_github-pages-challenge-roktim32.gitninja.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + + "record": { + "TXT": "d6e6727362997465d332f12898ad6b" + } +} diff --git a/domains/_github-pages-challenge-roktim32.roktim.json b/domains/_github-pages-challenge-roktim32.roktim.json new file mode 100644 index 000000000..06bb665bd --- /dev/null +++ b/domains/_github-pages-challenge-roktim32.roktim.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + + "record": { + "TXT": "9870d553eddd629da2c41de6add304" + } +} diff --git a/domains/_github-pages-challenge-roktim32.yourdad.json b/domains/_github-pages-challenge-roktim32.yourdad.json new file mode 100644 index 000000000..35bb43bc9 --- /dev/null +++ b/domains/_github-pages-challenge-roktim32.yourdad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + + "record": { + "TXT": "f2a400f4d62cba7fa18b6c288f38b1" + } +} diff --git a/domains/_github-pages-challenge-rubinskiy.bob.json b/domains/_github-pages-challenge-rubinskiy.bob.json new file mode 100644 index 000000000..a3dc297c9 --- /dev/null +++ b/domains/_github-pages-challenge-rubinskiy.bob.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Rubinskiy", + "discord": "rubinskiy#5258", + "email": "roebebin@gmail.com" + }, + "record": { + "TXT": "c3cc9a1718038c0034ac2b6d16f69e" + } +} diff --git a/domains/_github-pages-challenge-rushi0n.rushi.json b/domains/_github-pages-challenge-rushi0n.rushi.json new file mode 100644 index 000000000..fd62108ce --- /dev/null +++ b/domains/_github-pages-challenge-rushi0n.rushi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rushi0n", + "email": "rushikushare99@gmail.com" + }, + "record": { + "TXT": "cfaabf5e62265f5c2f811c0b22efae" + } +} diff --git a/domains/_github-pages-challenge-rv178.rv178.json b/domains/_github-pages-challenge-rv178.rv178.json new file mode 100644 index 000000000..ee9d3ee03 --- /dev/null +++ b/domains/_github-pages-challenge-rv178.rv178.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rv178", + "email": "idliyout@gmail.com" + }, + "record": { + "TXT": "e90b3dc10573fa656898bbbf08108c" + } +} diff --git a/domains/_github-pages-challenge-rwithik.rwithik.json b/domains/_github-pages-challenge-rwithik.rwithik.json new file mode 100644 index 000000000..58d276f08 --- /dev/null +++ b/domains/_github-pages-challenge-rwithik.rwithik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rwithik", + "email": "rwithik@gmail.com" + }, + "record": { + "TXT": "7a912f12f50a5cd49fc6148d672574" + } +} diff --git a/domains/_github-pages-challenge-ryznxx.ryznxx.json b/domains/_github-pages-challenge-ryznxx.ryznxx.json new file mode 100644 index 000000000..788e192ec --- /dev/null +++ b/domains/_github-pages-challenge-ryznxx.ryznxx.json @@ -0,0 +1,10 @@ +{ + "description": "To Get Great domain for developers get new dns", + "owner": { + "username": "ryznxx", + "email": "7ryznxx@gmail.com" + }, + "record": { + "TXT": "929fe6044a0a6c6e6d32410d33ceb1" + } +} diff --git a/domains/_github-pages-challenge-s3mant.semant.json b/domains/_github-pages-challenge-s3mant.semant.json index 9c13921ba..d3b3b1a2f 100644 --- a/domains/_github-pages-challenge-s3mant.semant.json +++ b/domains/_github-pages-challenge-s3mant.semant.json @@ -2,7 +2,7 @@ "owner": { "username": "S3mant", "email": "contact@semant.is-a.dev" - }, + }, "record": { "TXT": "137038fe5e46e3f5a6859e5985b8fd" } diff --git a/domains/_github-pages-challenge-sanchay9.sanchay.json b/domains/_github-pages-challenge-sanchay9.sanchay.json new file mode 100644 index 000000000..d93771c7a --- /dev/null +++ b/domains/_github-pages-challenge-sanchay9.sanchay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sanchay9", + "email": "sanchaykumar9@gmail.com" + }, + "record": { + "TXT": "25bca04982f50f307259901d6f7688" + } +} diff --git a/domains/_github-pages-challenge-sc136.sc.json b/domains/_github-pages-challenge-sc136.sc.json new file mode 100644 index 000000000..55138e942 --- /dev/null +++ b/domains/_github-pages-challenge-sc136.sc.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "SC136", + "email": "", + "discord": "594504468931018752", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UsBPZMyJypoRJ7FHuSCetm8xsuHGYmsrg0OMKR4F9AmvsbyW-AJvr9B4JqiMH68KFStc5sUkGa-rFuTS-A6X-3B3rJYvEv3VCBvvex0YbIRglLyjInmb1A_fwGUbFBrRC5L3MIItoFP3ozHrw-FLDBb8TWcsuH9DGkpRwO5m8ciCyV7hG47ucBbUQ7IjZQKSxoKMKsn13L-8fG1UmYDrO0NZ20F6jvJE5B6hxyBu7J2wqRfYDNmJe-UUsw7bAF07x3vyop29kk3QeULJ34-fbxC_ORUjc2VJhup-aqOmZiQRVPisiTX6z-HILvVsl8pMpn2rWiB0enHxP4qkAWh8Mg.foeauPuiVIE2DPD0uV63_w.r6Bl0pgQn6r58gtYr0mPsEqtpUPWN9DtYswrItO0OsvqanlNFf4hRIf5vSQjFnfLK3BFfKQW1Jr9fNOyzxB21InBYsETZVgBmC1XBNTTaHo.ffvkZoLVZOcTmmeWmOyoEQ" + }, + + "record": { + "TXT": "49195bdb90c44e0a7a76ae0e2a624d" + } + } + \ No newline at end of file diff --git a/domains/_github-pages-challenge-sekharmalla.chandra.json b/domains/_github-pages-challenge-sekharmalla.chandra.json new file mode 100644 index 000000000..fd0020367 --- /dev/null +++ b/domains/_github-pages-challenge-sekharmalla.chandra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sekharmalla", + "email": "sekharmalla.vfx@gmail.com" + }, + "record": { + "TXT": "11ecb44a01a667c78ba76d704d9fc5" + } +} diff --git a/domains/_github-pages-challenge-seriaati.seria.json b/domains/_github-pages-challenge-seriaati.seria.json new file mode 100644 index 000000000..ab4af411d --- /dev/null +++ b/domains/_github-pages-challenge-seriaati.seria.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "seriaati", + "email": "seria.ati@gmail.com" + }, + "record": { + "TXT": "2b63f16e0af54ee011fd27e02091a0" + } +} diff --git a/domains/_github-pages-challenge-sharkaboi.sarath.json b/domains/_github-pages-challenge-sharkaboi.sarath.json new file mode 100644 index 000000000..06146e3f1 --- /dev/null +++ b/domains/_github-pages-challenge-sharkaboi.sarath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sharkaboi", + "email": "sarathsedu@gmail.com" + }, + "record": { + "TXT": "9cc661fc83c313e055250b32fedfac" + } +} diff --git a/domains/_github-pages-challenge-shaunak-pandya.shaunak.json b/domains/_github-pages-challenge-shaunak-pandya.shaunak.json new file mode 100644 index 000000000..76e432573 --- /dev/null +++ b/domains/_github-pages-challenge-shaunak-pandya.shaunak.json @@ -0,0 +1,10 @@ +{ + "description": "Verification for shaunak.is-a.dev", + "owner": { + "username": "Shaunak-Pandya", + "email": "shaunak.n.pandya@gmail.com" + }, + "record": { + "TXT": "c5b15a4e5d620c286cd1a5dd937560" + } +} diff --git a/domains/_github-pages-challenge-shays24.shays.json b/domains/_github-pages-challenge-shays24.shays.json new file mode 100644 index 000000000..4e6f78c3f --- /dev/null +++ b/domains/_github-pages-challenge-shays24.shays.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SHays24", + "email": "shays24@student.sacs.nsw.edu.au" + }, + "record": { + "TXT": "16d1b82e4e76d05a0301fbf7a80f9b" + } +} diff --git a/domains/_github-pages-challenge-shinyzenith.aakash.json b/domains/_github-pages-challenge-shinyzenith.aakash.json new file mode 100644 index 000000000..7fbd1f953 --- /dev/null +++ b/domains/_github-pages-challenge-shinyzenith.aakash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Shinyzenith", + "email": "aakashsensharma@gmail.com" + }, + "record": { + "TXT": "6f217d98c6a92f084c092bab59d8b1" + } +} diff --git a/domains/_github-pages-challenge-shorecn.cs.json b/domains/_github-pages-challenge-shorecn.cs.json new file mode 100644 index 000000000..319730a93 --- /dev/null +++ b/domains/_github-pages-challenge-shorecn.cs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShoreCN", + "email": "c.shore.cn@gmail.com" + }, + "record": { + "TXT": "d4e6cbb56d440ddedd7bf5079b0d81" + } +} diff --git a/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json b/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json new file mode 100644 index 000000000..99165a8f8 --- /dev/null +++ b/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site for github@Shreyas-ITB (GH Pages verification)", + "repo": "https://github.com/Shreyas-ITB/Portfolio", + "owner": { + "username": "Shreyas-ITB", + "email": "shreyasbrillint@gmail.com" + }, + "record": { + "TXT": "737cf4521bb4d1c2a7530ce67a8304" + } +} diff --git a/domains/_github-pages-challenge-shymega.shymega.json b/domains/_github-pages-challenge-shymega.shymega.json new file mode 100644 index 000000000..ebda0f2f6 --- /dev/null +++ b/domains/_github-pages-challenge-shymega.shymega.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shymega", + "email": "shymega@shymega.org.uk" + }, + "record": { + "TXT": "83c50be1b56ddbe89e971e9f77aa0b" + } +} diff --git a/domains/_github-pages-challenge-skandabhairava.terroid.json b/domains/_github-pages-challenge-skandabhairava.terroid.json new file mode 100644 index 000000000..ab5c579c1 --- /dev/null +++ b/domains/_github-pages-challenge-skandabhairava.terroid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "skandabhairava", + "email": "skandabhairava@gmail.com" + }, + "record": { + "TXT": "73004005801e8467de8a643a7c1cf8" + } +} diff --git a/domains/_github-pages-challenge-sohrubh.saurabh.json b/domains/_github-pages-challenge-sohrubh.saurabh.json new file mode 100644 index 000000000..27a5f3b0f --- /dev/null +++ b/domains/_github-pages-challenge-sohrubh.saurabh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sohrubh", + "email": "saurabhyadav5931@gmail.com" + }, + "record": { + "TXT": "0c51849fbc5921380ddc445251597b" + } +} diff --git a/domains/_github-pages-challenge-spaxly.spaxly.json b/domains/_github-pages-challenge-spaxly.spaxly.json new file mode 100644 index 000000000..5bc8c142f --- /dev/null +++ b/domains/_github-pages-challenge-spaxly.spaxly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Spaxly", + "email": "ohmrc2545@gmail.com" + }, + "record": { + "TXT": "94c657ca404ce17483065583db2e61" + } +} diff --git a/domains/_github-pages-challenge-stardust-kyun.star.json b/domains/_github-pages-challenge-stardust-kyun.star.json new file mode 100644 index 000000000..e8f7d2b11 --- /dev/null +++ b/domains/_github-pages-challenge-stardust-kyun.star.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "stardust-kyun", + "email": "stardust-kyun@proton.me" + }, + "record": { + "TXT": "714f8a049247726086dbea6777c092" + } +} diff --git a/domains/_github-pages-challenge-stef-00012.gbot.json b/domains/_github-pages-challenge-stef-00012.gbot.json new file mode 100644 index 000000000..9186744ac --- /dev/null +++ b/domains/_github-pages-challenge-stef-00012.gbot.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "TXT": [ + "7d2f026325a7a6b08efdb7c6031370" + ] + } +} diff --git a/domains/_github-pages-challenge-stef-00012.receiptify.json b/domains/_github-pages-challenge-stef-00012.receiptify.json new file mode 100644 index 000000000..dda16f91e --- /dev/null +++ b/domains/_github-pages-challenge-stef-00012.receiptify.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "TXT": [ + "bd419a0cfdcbf998e7de1e486cbb4c" + ] + } +} diff --git a/domains/_github-pages-challenge-stef-00012.stefdp.json b/domains/_github-pages-challenge-stef-00012.stefdp.json new file mode 100644 index 000000000..372ad0c6d --- /dev/null +++ b/domains/_github-pages-challenge-stef-00012.stefdp.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "TXT": [ + "27c2dc9cd3e8a0a37947e82ab6f637" + ] + } +} diff --git a/domains/_github-pages-challenge-studiousgamer.natya.json b/domains/_github-pages-challenge-studiousgamer.natya.json new file mode 100644 index 000000000..f5c5a845b --- /dev/null +++ b/domains/_github-pages-challenge-studiousgamer.natya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "studiousgamer", + "email": "natyavidhanbiswas10@gmail.com" + }, + "record": { + "TXT": "4bab75757c1cd0f3fc332eadf5e1a9" + } +} diff --git a/domains/_github-pages-challenge-suhasdissa.suhasdissa.json b/domains/_github-pages-challenge-suhasdissa.suhasdissa.json new file mode 100644 index 000000000..4b7380b81 --- /dev/null +++ b/domains/_github-pages-challenge-suhasdissa.suhasdissa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SuhasDissa", + "email": "suhasdissa@gmail.com" + }, + "record": { + "TXT": "50e98ca19e56d314f4ab5b37d19d4b" + } +} diff --git a/domains/_github-pages-challenge-surv-is-a-dev.surv.json b/domains/_github-pages-challenge-surv-is-a-dev.surv.json new file mode 100644 index 000000000..ea54e5331 --- /dev/null +++ b/domains/_github-pages-challenge-surv-is-a-dev.surv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yuri-kiss", + "email": "a_2oo@outlook.com" + }, + "record": { + "TXT": "762ac4818881ad8a0420c077a2ab99" + } +} diff --git a/domains/_github-pages-challenge-suryanarayanrenjith.surya.json b/domains/_github-pages-challenge-suryanarayanrenjith.surya.json new file mode 100644 index 000000000..5844c2edc --- /dev/null +++ b/domains/_github-pages-challenge-suryanarayanrenjith.surya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "suryanarayanrenjith", + "email": "suryanarayanrenjith@outlook.com" + }, + "record": { + "TXT": "2c563764487945f6157ee1c82e15d6" + } +} diff --git a/domains/_github-pages-challenge-sxurabh.saurabhkirve.json b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json new file mode 100644 index 000000000..3c756d275 --- /dev/null +++ b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "berzcode", + "email": "saurabhkirve@gmail.com" + }, + + "record": { + "TXT": "e587577c97f73d2047aaf6ec8ff92c" + } +} diff --git a/domains/_github-pages-challenge-syahiramali.syahiramali.json b/domains/_github-pages-challenge-syahiramali.syahiramali.json new file mode 100644 index 000000000..3c2af2f09 --- /dev/null +++ b/domains/_github-pages-challenge-syahiramali.syahiramali.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "syahirAmali", + "email": "syahirAmali@gmail.com" + }, + "record": { + "TXT": "f6c381205b87390aaf3c1eaebc9023" + } +} diff --git a/domains/_github-pages-challenge-t-dynamos.anshdadwal.json b/domains/_github-pages-challenge-t-dynamos.anshdadwal.json new file mode 100644 index 000000000..1e5f433c4 --- /dev/null +++ b/domains/_github-pages-challenge-t-dynamos.anshdadwal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "T-Dynamos", + "email": "anshdadwal298@gmail.com" + }, + "record": { + "TXT": "75957defcd9e7e37ed359579a7dc2b" + } +} diff --git a/domains/_github-pages-challenge-takase1121.takase.json b/domains/_github-pages-challenge-takase1121.takase.json new file mode 100644 index 000000000..4bee63c79 --- /dev/null +++ b/domains/_github-pages-challenge-takase1121.takase.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "takase1121", + "email": "takase1121@proton.me" + }, + "record": { + "TXT": "f735d72a61c58977384c6f13305387" + } +} diff --git a/domains/_github-pages-challenge-talinthedev.talinsharma.json b/domains/_github-pages-challenge-talinthedev.talinsharma.json new file mode 100644 index 000000000..c7e5b19b5 --- /dev/null +++ b/domains/_github-pages-challenge-talinthedev.talinsharma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TalinTheDev", + "email": "talinsharma.dev@gmail.com" + }, + "record": { + "TXT": "2f1f6ebe67567dd216878b0619f465" + } +} diff --git a/domains/_github-pages-challenge-tayrp.tay.json b/domains/_github-pages-challenge-tayrp.tay.json new file mode 100644 index 000000000..e7a02c16c --- /dev/null +++ b/domains/_github-pages-challenge-tayrp.tay.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tayrp", + "email": "mystixmew@gmail.com", + "discord": "1050531216589332581" + }, + "record": { + "TXT": "360bbac0c42cd6beedbe67a62c8da5" + } +} diff --git a/domains/_github-pages-challenge-tayrp.tee.json b/domains/_github-pages-challenge-tayrp.tee.json new file mode 100644 index 000000000..457a6d4db --- /dev/null +++ b/domains/_github-pages-challenge-tayrp.tee.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tayrp", + "email": "mystixmew@gmail.com", + "discord": "1050531216589332581" + }, + "record": { + "TXT": "d255c6b97eabe6a65415232f8bdf4b" + } +} diff --git a/domains/_github-pages-challenge-tclement0922.tclement0922.json b/domains/_github-pages-challenge-tclement0922.tclement0922.json new file mode 100644 index 000000000..895a32409 --- /dev/null +++ b/domains/_github-pages-challenge-tclement0922.tclement0922.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tclement0922", + "email": "thibault.clement09@gmail.com" + }, + "record": { + "TXT": "9e402ea7933ed1c8da4935e5454fac" + } +} diff --git a/domains/_github-pages-challenge-technohacker.technohacker.json b/domains/_github-pages-challenge-technohacker.technohacker.json new file mode 100644 index 000000000..409233497 --- /dev/null +++ b/domains/_github-pages-challenge-technohacker.technohacker.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Technohacker", + "email": "technohacker1995@gmail.com" + }, + "record": { + "TXT": "5ad5e489ef3611f4d9a1b21f248218" + } +} diff --git a/domains/_github-pages-challenge-techpixel.tech.json b/domains/_github-pages-challenge-techpixel.tech.json new file mode 100644 index 000000000..80c1ac9d2 --- /dev/null +++ b/domains/_github-pages-challenge-techpixel.tech.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "techpixel", + "email": "manitejb@outlook.com" + }, + "record": { + "TXT": "123a1eec949122d5708325108c81b2" + } +} diff --git a/domains/_github-pages-challenge-testbot-github.mathiscool.json b/domains/_github-pages-challenge-testbot-github.mathiscool.json new file mode 100644 index 000000000..c2dfb573d --- /dev/null +++ b/domains/_github-pages-challenge-testbot-github.mathiscool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "testbot-github", + "email": "songboosterz.yt@gmail.com" + }, + "record": { + "TXT": "9c350d66193d49dec4cb05b15d387b" + } +} diff --git a/domains/_github-pages-challenge-thatqui.qui.json b/domains/_github-pages-challenge-thatqui.qui.json new file mode 100644 index 000000000..c84c45f43 --- /dev/null +++ b/domains/_github-pages-challenge-thatqui.qui.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thatqui", + "email": "_qui@tuta.io" + }, + "record": { + "TXT": "88feaaecca94fbb634748f98c0c48e" + } +} diff --git a/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json b/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json new file mode 100644 index 000000000..9334e6e7b --- /dev/null +++ b/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHackerDude1083", + "email": "TheHackerDude1083@proton.me" + }, + "record": { + "TXT": "66bceec5d092b15c1fcac188b02903" + } +} diff --git a/domains/_github-pages-challenge-thehatkid.hatkid.json b/domains/_github-pages-challenge-thehatkid.hatkid.json new file mode 100644 index 000000000..b23120824 --- /dev/null +++ b/domains/_github-pages-challenge-thehatkid.hatkid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thehatkid", + "email": "saha22023@gmail.com" + }, + "record": { + "TXT": "20405c421d70798fcddcbe0bb3d06d" + } +} diff --git a/domains/_github-pages-challenge-thenoppy12.thenoppy12.json b/domains/_github-pages-challenge-thenoppy12.thenoppy12.json new file mode 100644 index 000000000..816ddcdd9 --- /dev/null +++ b/domains/_github-pages-challenge-thenoppy12.thenoppy12.json @@ -0,0 +1,12 @@ +{ + "description": "Github Pages Register Domain", + "repo": "https://github.com/thenoppy12/thenoppy12.github.io", + "owner": { + "username": "BussyBakks", + "email": "lengochuykiengiang@gmail.com", + "discord": ".thenoppy12" + }, + "record": { + "TXT": "b41e7f365072dbb42ed1ee40c250db" + } +} diff --git a/domains/_github-pages-challenge-thesanju.thesanju.json b/domains/_github-pages-challenge-thesanju.thesanju.json new file mode 100644 index 000000000..a7a2e7c69 --- /dev/null +++ b/domains/_github-pages-challenge-thesanju.thesanju.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thesanju", + "email": "sanjayjr1official@gmail.com" + }, + "record": { + "TXT": "1ef563891d9e0572cd59f4a3e80b42" + } +} diff --git a/domains/_github-pages-challenge-thesct22.sharath.json b/domains/_github-pages-challenge-thesct22.sharath.json new file mode 100644 index 000000000..95249d979 --- /dev/null +++ b/domains/_github-pages-challenge-thesct22.sharath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thesct22", + "email": "sharathct22@gmail.com" + }, + "record": { + "TXT": "1cfa8b70882ea9cdf466e7b40dbe81" + } +} diff --git a/domains/_github-pages-challenge-thisisthamizh.thamizh.json b/domains/_github-pages-challenge-thisisthamizh.thamizh.json new file mode 100644 index 000000000..0cfcb2579 --- /dev/null +++ b/domains/_github-pages-challenge-thisisthamizh.thamizh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ThisisThamizh", + "email": "venthank88@gmail.com" + }, + "record": { + "TXT": "55f7385e475bf5148e262bf6a07289" + } +} diff --git a/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json b/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json new file mode 100644 index 000000000..742b0106e --- /dev/null +++ b/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "thou-mayest", + "email": "", + "twitter": "Dr_whoami_" + }, + "record": { + "TXT": "8c76c4245faa447e805828e24f3743" + } +} diff --git a/domains/_github-pages-challenge-thunder-coding.cd.json b/domains/_github-pages-challenge-thunder-coding.cd.json new file mode 100644 index 000000000..572d11aa2 --- /dev/null +++ b/domains/_github-pages-challenge-thunder-coding.cd.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "thunder-coding", + "email": "yakshbari4@gmail.com", + "discord": "codingthunder" + }, + "record": { + "TXT": "f56bab0740238435ae2bfe3a7d9283" + } +} diff --git a/domains/_github-pages-challenge-toxocious.toxocious.json b/domains/_github-pages-challenge-toxocious.toxocious.json new file mode 100644 index 000000000..e08d2c0e0 --- /dev/null +++ b/domains/_github-pages-challenge-toxocious.toxocious.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "toxocious", + "email": "toxocious@gmail.com" + }, + "record": { + "TXT": "d6440f69b31a9769f46475a3bfd91a" + } +} diff --git a/domains/_github-pages-challenge-true1ann.ann.json b/domains/_github-pages-challenge-true1ann.ann.json new file mode 100644 index 000000000..0e7d72ce0 --- /dev/null +++ b/domains/_github-pages-challenge-true1ann.ann.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "true1ann", + "email": "true1ann@tutamail.com" + }, + "record": { + "TXT": "9907c95c8764b5b6ddfa33bfe5486e" + } +} diff --git a/domains/_github-pages-challenge-turquoisetnt.tnt.json b/domains/_github-pages-challenge-turquoisetnt.tnt.json new file mode 100644 index 000000000..574e58e2d --- /dev/null +++ b/domains/_github-pages-challenge-turquoisetnt.tnt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TurquoiseTNT", + "email": "turquoisetntmultimedia@gmail.com" + }, + "record": { + "TXT": "a70919bec5e292800f53b8bd87da03" + } +} diff --git a/domains/_github-pages-challenge-turvenuija1.turvenuija.json b/domains/_github-pages-challenge-turvenuija1.turvenuija.json new file mode 100644 index 000000000..c56dbfa78 --- /dev/null +++ b/domains/_github-pages-challenge-turvenuija1.turvenuija.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "turvenuija1", + "email": "4209@lattahattu.fi" + }, + "record": { + "TXT": "91c902200720c9032d320f25ae736c" + } +} diff --git a/domains/_github-pages-challenge-userandaname.zayaanar.json b/domains/_github-pages-challenge-userandaname.zayaanar.json new file mode 100644 index 000000000..42ca881d7 --- /dev/null +++ b/domains/_github-pages-challenge-userandaname.zayaanar.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "userandaname", + "email": "", + "discord": "823939421686071386", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a62ohGnPWnZcxwliAblMFZoEcnjztiOXGJrf3viuLFutyG5cwvSgEFmeYQAiODGndCak3XXgSJwLyFiS-HIsLWG6ViBhu9A48zkUMTv6IHO7OUFE9kNiGIqhp3S8h8lhaaxA3zW_OuOIQBoLFJnL0RqQgOd2QC6P-v1Fm6Aab3HMCGYN5tNwk1Jpl5vwisxnCG-PDUWrrgJ8PbMGRUa2Sa5qvFOJK0LML3yDqKOlFUGs9XmBcbTMc2KVdGjAm0F8l1w0WRDyx15hNFu_ppB7yaIS91o7iJS-g-ViSWf3-Hj0gCyUl1sHPQi3-2IE5GaNtfqVLQGNC2Kh6NBAkRRT7g.09Llm3K10Q7Tl3ceKAy76g.6NdcyRztDAFkqDFs5CWyaShozcshoMQ2qq1p7D8wQTG6O8shr8lbczRgMQZhgvzrq7u1g6HMQnW8bQdDdn2Mb1Jj3_qcHXnCUub6exAZONY.0ZXI8zVi0kGV0Qm7uvJOrA" + }, + + "record": { + "TXT": "1488773820f7aed95586658ce389c2" + } + } diff --git a/domains/_github-pages-challenge-uuphoria2.uuphoria2.json b/domains/_github-pages-challenge-uuphoria2.uuphoria2.json new file mode 100644 index 000000000..f65e6dc95 --- /dev/null +++ b/domains/_github-pages-challenge-uuphoria2.uuphoria2.json @@ -0,0 +1,10 @@ +{ + "description": "Verification for my personal site", + "owner": { + "username": "uuphoria2", + "email": "gman36147@gmail.com" + }, + "record": { + "TXT": "e102771c99f70130190148a2d00ee0" + } +} diff --git a/domains/_github-pages-challenge-vachanmn123.vachanmn.json b/domains/_github-pages-challenge-vachanmn123.vachanmn.json new file mode 100644 index 000000000..ed98ab2f7 --- /dev/null +++ b/domains/_github-pages-challenge-vachanmn123.vachanmn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vachanmn123", + "email": "vachanmn123@gmail.com" + }, + "record": { + "TXT": "c8d038d8f44978beb4910c6c425cc8" + } +} diff --git a/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json b/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json new file mode 100644 index 000000000..e26154faa --- /dev/null +++ b/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VasilisMylonas", + "email": "vasilismylonas@protonmail.com" + }, + "record": { + "TXT": "2d79d108f14d2a9587952c4682b285" + } +} diff --git a/domains/_github-pages-challenge-vihaananand.untitled.json b/domains/_github-pages-challenge-vihaananand.untitled.json new file mode 100644 index 000000000..e5fe95813 --- /dev/null +++ b/domains/_github-pages-challenge-vihaananand.untitled.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VihaanAnand", + "email": "macos14sonoma@gmail.com" + }, + "record": { + "TXT": "53234a8871b871e94e29adff5a8e91" + } +} diff --git a/domains/_github-pages-challenge-vikramisdev.vikramisdev.json b/domains/_github-pages-challenge-vikramisdev.vikramisdev.json new file mode 100644 index 000000000..ef1fbb273 --- /dev/null +++ b/domains/_github-pages-challenge-vikramisdev.vikramisdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vikramisdev", + "email": "vs423502@gmail.com" + }, + "record": { + "TXT": "14810aa9ee3adf44431d8a64abc84a" + } +} diff --git a/domains/_github-pages-challenge-vikramv20.vikramv20.json b/domains/_github-pages-challenge-vikramv20.vikramv20.json new file mode 100644 index 000000000..37940f9a1 --- /dev/null +++ b/domains/_github-pages-challenge-vikramv20.vikramv20.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vikramv20", + "email": "vs423502@gmail.com" + }, + "record": { + "TXT": "14810aa9ee3adf44431d8a64abc84a" + } +} diff --git a/domains/_github-pages-challenge-vivek-oraon.vivek.json b/domains/_github-pages-challenge-vivek-oraon.vivek.json new file mode 100644 index 000000000..fd9fec9c2 --- /dev/null +++ b/domains/_github-pages-challenge-vivek-oraon.vivek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vivek-oraon", + "email": "vivekoraon@pm.me" + }, + "record": { + "TXT": "99d887f6958e3be7f2e1972d9ec212" + } +} diff --git a/domains/_github-pages-challenge-vj-abishek.abishek.json b/domains/_github-pages-challenge-vj-abishek.abishek.json new file mode 100644 index 000000000..71a346b4b --- /dev/null +++ b/domains/_github-pages-challenge-vj-abishek.abishek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vj-abishek", + "email": "abigosearch@gmail.com" + }, + "record": { + "TXT": "fe9c9b544613d7bf05295ad995cbaa" + } +} diff --git a/domains/_github-pages-challenge-vncsmnl.vinicius.json b/domains/_github-pages-challenge-vncsmnl.vinicius.json new file mode 100644 index 000000000..6aa751c44 --- /dev/null +++ b/domains/_github-pages-challenge-vncsmnl.vinicius.json @@ -0,0 +1,13 @@ +{ + "description": "My personal website", + "repo": "https://github.com/vncsmnl", + "owner": { + "username": "vncsmnl", + "email": "", + "twitter": "vncsmnl", + "discord": "vncsmnl#7835" + }, + "record": { + "TXT": "1bb7647bdc766f138d036f6fdbd2e6" + } +} diff --git a/domains/_github-pages-challenge-vyshuks.vysakh.json b/domains/_github-pages-challenge-vyshuks.vysakh.json new file mode 100644 index 000000000..d239bd2ad --- /dev/null +++ b/domains/_github-pages-challenge-vyshuks.vysakh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vyshuks", + "email": "vyshuks@gmail.com" + }, + "record": { + "TXT": "0cb8ba615b779ff95bfe738257a888" + } +} diff --git a/domains/_github-pages-challenge-wdhdev.raw-api.json b/domains/_github-pages-challenge-wdhdev.raw-api.json deleted file mode 100644 index 261a097c6..000000000 --- a/domains/_github-pages-challenge-wdhdev.raw-api.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "WilliamDavidHarrison", - "email": "william@williamharrison.dev" - }, - - "record": { - "TXT": "a6bc96312c4473df6c37f63d3e0fed" - } -} diff --git a/domains/_github-pages-challenge-wdhdev.w.json b/domains/_github-pages-challenge-wdhdev.w.json new file mode 100644 index 000000000..3976fa11f --- /dev/null +++ b/domains/_github-pages-challenge-wdhdev.w.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@m.is-a.dev" + }, + + "record": { + "TXT": "660ac3fbb8e294e077d68381ad6aeb" + } +} diff --git a/domains/_github-pages-challenge-wdhdev.william.json b/domains/_github-pages-challenge-wdhdev.william.json new file mode 100644 index 000000000..f9c6ef5ea --- /dev/null +++ b/domains/_github-pages-challenge-wdhdev.william.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@m.is-a.dev" + }, + + "record": { + "TXT": "6b3a5de4756e5840afc94698b74712" + } +} diff --git a/domains/_github-pages-challenge-window5000.window5.json b/domains/_github-pages-challenge-window5000.window5.json new file mode 100644 index 000000000..688618ff1 --- /dev/null +++ b/domains/_github-pages-challenge-window5000.window5.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Window5000", + "email": "spam.window5.spam@gmail.com" + }, + "record": { + "TXT": "e0f44964a7e707b4d78755bb66b3e4" + } +} diff --git a/domains/_github-pages-challenge-xKhronoz.xkhronoz.json b/domains/_github-pages-challenge-xKhronoz.xkhronoz.json new file mode 100644 index 000000000..38701e84c --- /dev/null +++ b/domains/_github-pages-challenge-xKhronoz.xkhronoz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xKhronoz", + "email": "yeek3063@gmail.com" + }, + "record": { + "TXT": "ea9be10bf29f3df4c2c6a77fc2b9ed" + } +} diff --git a/domains/_github-pages-challenge-xxtgamerxx.brin.json b/domains/_github-pages-challenge-xxtgamerxx.brin.json new file mode 100644 index 000000000..359257854 --- /dev/null +++ b/domains/_github-pages-challenge-xxtgamerxx.brin.json @@ -0,0 +1,10 @@ +{ + "description": "Github verification", + "owner": { + "username": "xXTgamerXx", + "email": "trin.n2848@gmail.com" + }, + "record": { + "TXT": "5b311a39ce20cd583c17d400434929" + } +} diff --git a/domains/_github-pages-challenge-yorodm.yorodm.json b/domains/_github-pages-challenge-yorodm.yorodm.json new file mode 100644 index 000000000..58ad2781a --- /dev/null +++ b/domains/_github-pages-challenge-yorodm.yorodm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yorodm", + "email": "yoandy.rmartinez@gmail.com" + }, + "record": { + "TXT": "4e4101d7a9a7606d96f9757829a24d" + } +} diff --git a/domains/_github-pages-challenge-yourtilak.tilak.json b/domains/_github-pages-challenge-yourtilak.tilak.json new file mode 100644 index 000000000..dc261fc78 --- /dev/null +++ b/domains/_github-pages-challenge-yourtilak.tilak.json @@ -0,0 +1,11 @@ +{ + "description": "YourTilak.is-a.dev", + "repo": "https://github.com/YourTilak/YourTilak.github.io", + "owner": { + "username": "YourTilak", + "email": "rj05tilak@gmail.com" + }, + "record": { + "TXT": "c599b4c1ad1e049f9a34ab0534ede8" + } +} diff --git a/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json b/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json new file mode 100644 index 000000000..c83ca33fd --- /dev/null +++ b/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "TXT": "a39a9e9549128753e8f6757a37d2c2" + } +} diff --git a/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json b/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json new file mode 100644 index 000000000..00925115e --- /dev/null +++ b/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "TXT": "44acf50d05a09c5bdcb82f64551e6c" + } +} diff --git a/domains/_github-pages-challenge-yunexiz.cat.json b/domains/_github-pages-challenge-yunexiz.cat.json new file mode 100644 index 000000000..9307de465 --- /dev/null +++ b/domains/_github-pages-challenge-yunexiz.cat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "TXT": "7b0048087227dc98eb47a46c9f1b43" + } +} diff --git a/domains/_github-pages-challenge-yunexiz.dog.json b/domains/_github-pages-challenge-yunexiz.dog.json new file mode 100644 index 000000000..253d7ddd7 --- /dev/null +++ b/domains/_github-pages-challenge-yunexiz.dog.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "TXT": "5fa47df0612540ae6e92989a4007e9" + } +} diff --git a/domains/_github-pages-challenge-yunexiz.y.json b/domains/_github-pages-challenge-yunexiz.y.json new file mode 100644 index 000000000..722be64ed --- /dev/null +++ b/domains/_github-pages-challenge-yunexiz.y.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "TXT": "e510e7d345184525230751fbbf1e5b" + } +} diff --git a/domains/_github-pages-challenge-yunexiz.yunexiz.json b/domains/_github-pages-challenge-yunexiz.yunexiz.json new file mode 100644 index 000000000..64e11b344 --- /dev/null +++ b/domains/_github-pages-challenge-yunexiz.yunexiz.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "TXT": [ + "273b8f26fd1aacf2cd47be00178179" + ] + } +} diff --git a/domains/_github-pages-challenge-zpiste.piste.json b/domains/_github-pages-challenge-zpiste.piste.json new file mode 100644 index 000000000..9398fd245 --- /dev/null +++ b/domains/_github-pages-challenge-zpiste.piste.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zpiste", + "email": "contact@piste.dev" + }, + "record": { + "TXT": "ad901dc238a681f67e4979e64eac7e" + } +} diff --git a/domains/_github-pages-challenge-zyrouge.zyrouge.json b/domains/_github-pages-challenge-zyrouge.zyrouge.json new file mode 100644 index 000000000..cdfc9e1c4 --- /dev/null +++ b/domains/_github-pages-challenge-zyrouge.zyrouge.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "zyrouge", + "email": "zyrouge@hotmail.com", + "twitter": "_zyrouge_" + }, + "record": { + "TXT": "dde2728dbadb035a4ffeda6f696112" + } +} diff --git a/domains/_gitlab-pages-verification-code.meerkats.shays.json b/domains/_gitlab-pages-verification-code.meerkats.shays.json new file mode 100644 index 000000000..e7a7d28ef --- /dev/null +++ b/domains/_gitlab-pages-verification-code.meerkats.shays.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SHays24", + "email": "SHays24@student.sacs.nsw.edu.au" + }, + "record": { + "TXT": "gitlab-pages-verification-code=621b768139e0bfaf6eb43d60db03cabf" + } +} diff --git a/domains/_gitlab-pages-verification-code.pinage404.json b/domains/_gitlab-pages-verification-code.pinage404.json new file mode 100644 index 000000000..072c8147a --- /dev/null +++ b/domains/_gitlab-pages-verification-code.pinage404.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pinage404", + "email": "pinage404+is-a.dev@gmail.com" + }, + "record": { + "TXT": "gitlab-pages-verification-code=d43eb39124dec340bdbb11a4d6aa6b52" + } +} diff --git a/domains/_gitlab-pages-verification-code.sadkon.json b/domains/_gitlab-pages-verification-code.sadkon.json new file mode 100644 index 000000000..7e5902fef --- /dev/null +++ b/domains/_gitlab-pages-verification-code.sadkon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhc@outlook.com" + }, + "record": { + "TXT": "gitlab-pages-verification-code=478e4a7c8445704809ba0fa31e003df3" + } +} diff --git a/domains/_psl.json b/domains/_psl.json index 6647add63..fd8db17bb 100644 --- a/domains/_psl.json +++ b/domains/_psl.json @@ -1,11 +1,10 @@ { "description": "PSL validation record for is-a.dev", - "repo": "https://github.com/is-a-dev/is-a-dev.github.io", "owner": { - "username": "phenax", + "username": "is-a-dev", "email": "phenax5@gmail.com" }, "record": { - "TXT": "https://github.com/publicsuffix/list/pull/1327" + "TXT": "https://github.com/publicsuffix/list/pull/1949" } } diff --git a/domains/_vercel.alora.json b/domains/_vercel.alora.json new file mode 100644 index 000000000..d203c2aef --- /dev/null +++ b/domains/_vercel.alora.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com", + "discord": "1236292707371057216" + }, + "record": { + "TXT": [ + "vc-domain-verify=drive.alora.is-a.dev,395400702612ae6db6a8", + "vc-domain-verify=profile.alora.is-a.dev,71bd18cc5db61dc75f91", + "vc-domain-verify=blog.alora.is-a.dev,39b11f87634c4710b9ab" + ] + } +} diff --git a/domains/_vercel.alvin.json b/domains/_vercel.alvin.json new file mode 100644 index 000000000..b133bd341 --- /dev/null +++ b/domains/_vercel.alvin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alvinsjoy", + "email": "", + "discord": "825382504353234954" + }, + "record": { + "TXT": "vc-domain-verify=www.alvin.is-a.dev,8cfb8dfac816eacccf2d" + } +} diff --git a/domains/_vercel.arceus.json b/domains/_vercel.arceus.json new file mode 100644 index 000000000..e9ddb721d --- /dev/null +++ b/domains/_vercel.arceus.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "arceusdev", + "email": "", + "discord": "1055478076013817936" + }, + "record": { + "TXT": "vc-domain-verify=arceus.is-a.dev,0f512cd8861911af26b6" + } + } diff --git a/domains/_vercel.ash.json b/domains/_vercel.ash.json new file mode 100644 index 000000000..c9de1a5d5 --- /dev/null +++ b/domains/_vercel.ash.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BloodLetters", + "email": "", + "discord": "961870785486671872" + }, + "record": { + "TXT": "vc-domain-verify=ash.is-a.dev,6543a60bcc98259cc8d5" + } +} diff --git a/domains/_vercel.ashwin-s-nambiar.json b/domains/_vercel.ashwin-s-nambiar.json new file mode 100644 index 000000000..f7fad0c67 --- /dev/null +++ b/domains/_vercel.ashwin-s-nambiar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ashwin-s-nambiar", + "email": "", + "discord": "ashwin_nambiar" + }, + "record": { + "TXT": "vc-domain-verify=ashwin-s-nambiar.is-a.dev,a34b7f9eac4c8f6d6a83" + } +} diff --git a/domains/_vercel.cesarmr.json b/domains/_vercel.cesarmr.json new file mode 100644 index 000000000..2a0026efe --- /dev/null +++ b/domains/_vercel.cesarmr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "cesarmr-github", + "email": "c3s1r@proton.me", + "discord": "740861702215565333" + }, + "record": { + "TXT": "vc-domain-verify=cesarmr.is-a.dev,f90aad152beffe874989" + } +} diff --git a/domains/_vercel.chandsi.json b/domains/_vercel.chandsi.json new file mode 100644 index 000000000..916a20a5a --- /dev/null +++ b/domains/_vercel.chandsi.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Gauravisdev", + "email": "", + "discord": "1119494339735867422" + }, + "record": { + "TXT": [ + "vc-domain-verify=chandsi.is-a.dev,8654576292b580f414fe" + ] + } +} diff --git a/domains/_vercel.crazo7924.json b/domains/_vercel.crazo7924.json new file mode 100644 index 000000000..62b6bd603 --- /dev/null +++ b/domains/_vercel.crazo7924.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "crazo7924", + "email": "", + "discord": "466605393309859840", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lK0DenxkbchUi8yOUyDH6gdvlQs6bXJRyaYAYCBgVjJUUoQ61fUcOHtdb2fltgObjiNYVqGywMpRFLuUOjQN3Uxb8Uv-NTND52eAkakL1xh4Vj5sbsVr05ehnAlCXDO1ykZpkn4kwldQBOQcYUFkNVhxFblPQO7jAybjc9QNpqsgW113BrPsY7aN0TWhARO8JTiWtOQT8oKfCqfYZH3F7qiU1wk-pvwaQBWy8Jiu0CiKQmTzIT4lN3lCCZpNL0PiyLXcSZEuEGzmt_LFuHcGtYrwavaN2ZbrC6gb_U4L6sBRAx5NNPDuEBMtX9ncP5WCDikgMVXsftbXW_KU8yHhVQ.wUUcKotRy8LSzAU6amSQ9A.on4Jq5kL1mB9zWF3OlqN2ckyZjOYboXbE_RzWE2UHOADNEDogYLvEl9rU3J6JNlw6fXyRFyDjNnosUvNBC2tBl7tSyrMaWkDXoWW8q3OoKhv1r0fUuNl93epFeYMg3yr.pUMvwVEA92EQgEXTwm2_PQ" + }, + "record": { + "TXT": "vc-domain-verify=blog.crazo7924.is-a.dev,08987fe260da74fe448e" + } +} diff --git a/domains/_vercel.cupglass.json b/domains/_vercel.cupglass.json new file mode 100644 index 000000000..461069610 --- /dev/null +++ b/domains/_vercel.cupglass.json @@ -0,0 +1,14 @@ +{ + "description": "just a simple website for my rpi", + "repo": "https://github.com/cupglassdev/rpi-nix-web", + "owner": { + "username": "cupglassdev", + "email": "", + "twitter":"cupglassdev", + "lahelu":"https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev" + }, + "record": { + "TXT": "vc-domain-verify=rpinix.cupglass.is-a.dev,0b8b2c5753fc7cbe4b83" + } +} diff --git a/domains/_vercel.cutedog5695.json b/domains/_vercel.cutedog5695.json new file mode 100644 index 000000000..0215aac17 --- /dev/null +++ b/domains/_vercel.cutedog5695.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "", + "discord": "716306888492318790", + "twitter": "cutedog5695" + }, + "record": { + "TXT": "vc-domain-verify=vercel.cutedog5695.is-a.dev,92820276b2029f5426ec" + } +} diff --git a/domains/_vercel.drive.alora.json b/domains/_vercel.drive.alora.json new file mode 100644 index 000000000..4ea73e91a --- /dev/null +++ b/domains/_vercel.drive.alora.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com", + "discord": "1236292707371057216" + }, + "record": { + "TXT": "vc-domain-verify=drive.alora.is-a.dev,395400702612ae6db6a8" + } +} diff --git a/domains/_vercel.farooq.json b/domains/_vercel.farooq.json new file mode 100644 index 000000000..32d631ffd --- /dev/null +++ b/domains/_vercel.farooq.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "fexxix", + "email": "fexxix@gmail.com", + "discord": "" + }, + "record": { + "TXT": "vc-domain-verify=farooq.is-a.dev,a240a8b43ff88d419864" + } +} diff --git a/domains/_vercel.formuna.json b/domains/_vercel.formuna.json new file mode 100644 index 000000000..e41fbc0e1 --- /dev/null +++ b/domains/_vercel.formuna.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "FormunaGit", + "email": "", + "discord": "754657845563097108" + }, + "record": { + "TXT": "vc-domain-verify=linux.formuna.is-a.dev,5838b861496b1a02cb3c" + } +} diff --git a/domains/_vercel.gizzy.json b/domains/_vercel.gizzy.json new file mode 100644 index 000000000..156a836f7 --- /dev/null +++ b/domains/_vercel.gizzy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "GizzyUwU", + "email": "", + "discord": "669947245776338994" + }, + "record": { + "TXT": "vc-domain-verify=api.gizzy.is-a.dev,34435322ec6f3a031174" + } +} diff --git a/domains/_vercel.hassan.json b/domains/_vercel.hassan.json new file mode 100644 index 000000000..e97a57c0c --- /dev/null +++ b/domains/_vercel.hassan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HassanCodez", + "email": "hassan.atef01100@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=hassan.is-a.dev,e3a8644f36c84599e9d9" + } +} diff --git a/domains/_vercel.id.json b/domains/_vercel.id.json new file mode 100644 index 000000000..96fe36935 --- /dev/null +++ b/domains/_vercel.id.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "its-id", + "email": "", + "discord": "342664542754570250" + }, + "record": { + "TXT": "vc-domain-verify=id.is-a.dev,c2cc3946f3d170914ef2" + } + } \ No newline at end of file diff --git a/domains/_vercel.jonasfroeller.json b/domains/_vercel.jonasfroeller.json new file mode 100644 index 000000000..addf90ec4 --- /dev/null +++ b/domains/_vercel.jonasfroeller.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jonasfroeller", + "discord": "", + "email": "j.froe@gmx.at" + }, + "record": { + "TXT": "vc-domain-verify=jonasfroeller.is-a.dev,5e5ba77b2dbfd27d1094" + } +} diff --git a/domains/_vercel.kachi.json b/domains/_vercel.kachi.json new file mode 100644 index 000000000..fb3c8b9a1 --- /dev/null +++ b/domains/_vercel.kachi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "joshex150", + "email": "joshex150@gmail.com" + }, + "record": { + "TXT": [ + "vc-domain-verify=kachi.is-a.dev,54646f7970a9cf358f0c" + ] + } +} diff --git a/domains/_vercel.khaled-bakhti.json b/domains/_vercel.khaled-bakhti.json new file mode 100644 index 000000000..df28eb426 --- /dev/null +++ b/domains/_vercel.khaled-bakhti.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "OTK-98", + "email": "", + "discord": "bkt26" + }, + "record": { + "TXT": "vc-domain-verify=khaled-bakhti.is-a.dev,3772eae9e765bacee0f5" + } +} \ No newline at end of file diff --git a/domains/_vercel.liaobots.json b/domains/_vercel.liaobots.json new file mode 100644 index 000000000..a49cd4bf7 --- /dev/null +++ b/domains/_vercel.liaobots.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IxKNZgVI5n43WciMzoLIog8fLCn4SGOde7wnXV8YxNdupHigRYf1qPNLM6mf9fFyJE7QYM63I-efJGBeYIGxYCHqIP8wOJqQCO-7LQ96HeEOvr0H1DT5qgmgleU3hyLAiktHJkSJrVxJJt6GED2aMSQNkz0FGlpFvh2ts8yGXJdgxqfGowNfsbK9nMtk_TYA682_jI4nd3G8F0VY8BZ8b5q5mdRFqXb8xSDztui4mW9dHJegNz55-wMC7aT4EF5I5yZ2XWnmBxPZHMAJyJDymkN4e4m0FqfQ1Us0cJwX7ZLFA-L3ScxnR9d-LQnq8hwvXzUSQXTef5Kc__MXyPbkXQ.S_klH5E-coNoQwAL3qtqVA.-AfcX7vCIVK0g_F55nTxlgmefAScdcA3w9EksOSkd9h0heFdtYzqpsRrMJqI0T9YN7fK532nNZXLcPwPCddfXcc4h3GASYGQ_grPhr5QcRInvgD9phM8FPpF8RZzIkcI.XYLRmlV-8SElUpXJbF_FkA" + }, + "record": { + "TXT": [ + "vc-domain-verify=liaobots.is-a.dev,8571d70b82b73973b70d" + ] + } +} diff --git a/domains/_vercel.litmus.json b/domains/_vercel.litmus.json new file mode 100644 index 000000000..3fa44b4ff --- /dev/null +++ b/domains/_vercel.litmus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "litmus-zhang", + "email": "abdulsalamlukmon9@gmail.com" +}, + "record": { + "TXT" : "78ba183f9678f5722897" + } +} diff --git a/domains/_vercel.mantou.json b/domains/_vercel.mantou.json new file mode 100644 index 000000000..555b983b1 --- /dev/null +++ b/domains/_vercel.mantou.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Mantouisyummy", + "email": "", + "discord": "549056425943629825" + }, + "record": { + "TXT": "vc-domain-verify=mantou.is-a.dev,c8a46ea52ff24c67a0a6" + } +} diff --git a/domains/_vercel.mcstatus.json b/domains/_vercel.mcstatus.json new file mode 100644 index 000000000..4b29f6e3e --- /dev/null +++ b/domains/_vercel.mcstatus.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cIYK5Y5_SWXX7gKAiLBmDtHvrjGDi0aVBaferTdh30YqRxym9e3qiRCswWXVOhUtPdgjPk9Essb65dYJmc34_GAdGcwdZWCSAL8_sFsU9nB5YPnum-2c5U_U2fkeQJ75Pq3Gcc_NUcYWiXqyoMRnaqaRe4ShbFVFVhOmUucHB8GvQaiAB-qJwNBuOxPsl6n2QsJ8bctj4PqrU86YFX-NLpqEG_F1uJxIBAbG1hPgIhTMEAnDBhcd_m_sI4_PsBeT1qBrkBRSTiK_pKsrUslmTLuDa2G8pejqSBB17j93XxSKeVPVKIwI1n4zlvudxpDUnefFKiVASknIOwEu8LawAA.IKdlOLsrWCCCfh305StpJw.ordx4etig711lFs9y1udqq-2zvW6fEptKUl3cqHHGgOArR3X5ZzSvlb3LYDtHjKlxqUlxbjJ5ZTj1GksBUFETPNl8EmfzR4bcBQSAGpg6PP913r_yjk5-Tujf7P61Iy8.qZdmfqe_pHg2Q9IVSXNWtg" + }, + + "record": { + "TXT": "vc-domain-verify=in.mcstatus.is-a.dev,b4848ed9d0fbecb86308" + } + } + \ No newline at end of file diff --git a/domains/_vercel.michi.json b/domains/_vercel.michi.json new file mode 100644 index 000000000..337d2a383 --- /dev/null +++ b/domains/_vercel.michi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jonasfroeller", + "email": "j.froe@gmx.at" + }, + "record": { + "TXT": [ + "vc-domain-verify=michi.is-a.dev,d0e5ddd1aa39de41c31a" + ] + } +} diff --git a/domains/_vercel.midnight0s.json b/domains/_vercel.midnight0s.json new file mode 100644 index 000000000..c4d665fe3 --- /dev/null +++ b/domains/_vercel.midnight0s.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "midnight0s", + "email": "", + "discord": "817858871388799026" + }, + "record": { + "TXT": "vc-domain-verify=midnight0s.is-a.dev,333b53956284ddc6d49d" + } +} diff --git a/domains/_vercel.mkeko.json b/domains/_vercel.mkeko.json new file mode 100644 index 000000000..2d477d5e3 --- /dev/null +++ b/domains/_vercel.mkeko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Mkeko", + "email": "", + "discord": "1212043905059790881" + }, + "record": { + "TXT": "vc-domain-verify=mkeko.is-a.dev,060738e86128a300ceee" + } +} diff --git a/domains/_vercel.profile.alora.json b/domains/_vercel.profile.alora.json new file mode 100644 index 000000000..ee7601e82 --- /dev/null +++ b/domains/_vercel.profile.alora.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com", + "discord": "1236292707371057216" + }, + "record": { + "TXT": "vc-domain-verify=profile.alora.is-a.dev,71bd18cc5db61dc75f91" + } +} diff --git a/domains/_vercel.rabug.json b/domains/_vercel.rabug.json new file mode 100644 index 000000000..4479d31ad --- /dev/null +++ b/domains/_vercel.rabug.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "NotRabug50", + "email": "", + "discord": "541194606214250496" + }, + "record": { + "TXT": "vc-domain-verify=rabug.is-a.dev,4ba0ae912b528f63a9a7" + } +} diff --git a/domains/_vercel.raoufbakhti.json b/domains/_vercel.raoufbakhti.json new file mode 100644 index 000000000..b4ec1933a --- /dev/null +++ b/domains/_vercel.raoufbakhti.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Raoufbaa", + "email": "", + "discord": "515230523128414228" + }, + "record": { + "TXT": "vc-domain-verify=raoufbakhti.is-a.dev,6a370dda8552268e5cb6" + } +} diff --git a/domains/_vercel.ravener.json b/domains/_vercel.ravener.json new file mode 100644 index 000000000..a712d2f1b --- /dev/null +++ b/domains/_vercel.ravener.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ravener", + "email": "ravener.anime@gmail.com", + "twitter": "RavenRavener", + "discord": "292690616285134850" + }, + "record": { + "TXT": "vc-domain-verify=ravener.is-a.dev,80897cd5c55c67bd2af7" + } +} diff --git a/domains/_vercel.redaassemghor.json b/domains/_vercel.redaassemghor.json new file mode 100644 index 000000000..ca6c7a7a9 --- /dev/null +++ b/domains/_vercel.redaassemghor.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "redaassemghor", + "email": "", + "discord": "r3dapt" + }, + "record": { + "TXT": "vc-domain-verify=reda.is-a.dev,6d8fb75a7046531955bf" + } +} diff --git a/domains/_vercel.retrouser955.json b/domains/_vercel.retrouser955.json new file mode 100644 index 000000000..cae647104 --- /dev/null +++ b/domains/_vercel.retrouser955.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "retrouser955", + "email": "", + "discord": "691111067807514685" + }, + "record": { + "TXT": "vc-domain-verify=retrouser955.is-a.dev,7846a7cf34232910d04d" + } + } \ No newline at end of file diff --git a/domains/_vercel.rizz.json b/domains/_vercel.rizz.json new file mode 100644 index 000000000..1b47d0dbc --- /dev/null +++ b/domains/_vercel.rizz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bananaking6", + "email": "", + "discord": "skibidibagel" + }, + "record": { + "TXT": "vc-domain-verify=rizz.is-a.dev,cbd2a4123c68d5d0fef0" + } +} diff --git a/domains/_vercel.seiko.json b/domains/_vercel.seiko.json new file mode 100644 index 000000000..702f88aa1 --- /dev/null +++ b/domains/_vercel.seiko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Delta-0mega", + "email": "zxroff@proton.me", + "discord": "1279377552561147964" + }, + "record": { + "TXT": "vc-domain-verify=seiko.is-a.dev,e8e0dd92b8aecad6d7af" + } +} diff --git a/domains/_vercel.shockbs.json b/domains/_vercel.shockbs.json new file mode 100644 index 000000000..6ae32c6e2 --- /dev/null +++ b/domains/_vercel.shockbs.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shockbs", + "email": "", + "discord": "880084860327313459" + }, + "record": { + "TXT": "vc-domain-verify=shockbs.is-a.dev,effffa7584f4e7aa0f82" + } +} diff --git a/domains/_vercel.sono.json b/domains/_vercel.sono.json new file mode 100644 index 000000000..c72e69e40 --- /dev/null +++ b/domains/_vercel.sono.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "getSono", + "email": "", + "discord": "1222250424309121145", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.B0E8HDNESQtYbnqBzGRtbUo8aLtRfD3w-btRsFsnAelPi1iHjMb7C1RSEXvClmiEIlqtyIflfg_twb-RQK30p-oc8THXQ_fnA0m2I2YZhjP5jFIraPP7bOV71YTSPiJ-reWMhErizuqL17nDmsdwhrm2na4pVgqPNRVAPo1CV_h2m7ZXHCGjYNysuXvx48HX7MHC5kVyDsSyonKqxoC-545i4u-oCb-qBBGfEbuH3h7-rFIFjYzeG8qJ22cYpjNz6QY9PkI4LLtyzHTbdyTWVyzPY5zZUqFJz_C3aP5Up0de5xxxUcU-QMvP-xptfRmfs9OlHSaQFYGT22SnTUA3qg.II3jjDcfMUNmUNeiFj7lmg.roR-IKIqPZMcdKSjw5IV1QKYDbr6swbEiYbd1bbsCj3cVHc_04zhCKWy7hL_TH9wntdYjG9K8gGU0jtZ0bO3O9S3-dmooa3QDiLjoA4QQHc.fGW4EK-eAEERdQQBBeUCJg" + }, + + "record": { + "TXT": "vc-domain-verify=sono.is-a.dev,35c69f97808f44838a85" + } + } + \ No newline at end of file diff --git a/domains/_vercel.stevenle.json b/domains/_vercel.stevenle.json new file mode 100644 index 000000000..72e2a4bf4 --- /dev/null +++ b/domains/_vercel.stevenle.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "steeevin88", + "email": "stevenleusa79@yahoo.com", + "discord": "237307564419842050" + }, + "record": { + "TXT": "vc-domain-verify=stevenle.is-a.dev,f3f7af055e99ad957025" + } +} diff --git a/domains/_vercel.tajul.json b/domains/_vercel.tajul.json new file mode 100644 index 000000000..d94619d70 --- /dev/null +++ b/domains/_vercel.tajul.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "arifintajul4", + "email": "", + "discord": "yaelahjul" + }, + "record": { + "TXT": "vc-domain-verify=tajul.is-a.dev,9a85b13fc7e25fb4237d" + } +} diff --git a/domains/_vercel.udhaya.json b/domains/_vercel.udhaya.json new file mode 100644 index 000000000..7472bd312 --- /dev/null +++ b/domains/_vercel.udhaya.json @@ -0,0 +1,12 @@ +{ + "description": "Vercel Txt Verification", + "owner": { + "username": "xAceDuke", + "email": "kinghtth0@gmail.com" + }, + "record": { + "TXT": [ + "vc-domain-verify=udhaya.is-a.dev,accd4809ddad58ac55a4" + ] + } +} diff --git a/domains/_vercel.uralamin.json b/domains/_vercel.uralamin.json new file mode 100644 index 000000000..f299196df --- /dev/null +++ b/domains/_vercel.uralamin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MrAlaminH", + "email": "", + "discord": "440574272856129547" + }, + "record": { + "TXT": "vc-domain-verify=uralamin.is-a.dev,898bea95e45e3ecf00a7" + } +} diff --git a/domains/_vercel.uwu.json b/domains/_vercel.uwu.json new file mode 100644 index 000000000..bec23fd06 --- /dev/null +++ b/domains/_vercel.uwu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "TXT": "vc-domain-verify=vercel.uwu.is-a.dev,61038f548f8542bd1397" + } +} diff --git a/domains/_vercel.vihangayt.json b/domains/_vercel.vihangayt.json new file mode 100644 index 000000000..daad9f08a --- /dev/null +++ b/domains/_vercel.vihangayt.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vihangaashin", + "email": "vihangapubg44@gmail.com", + "discord": "1088099426570092594" + }, + "record": { + "TXT": "vc-domain-verify=vihangayt.is-a.dev,b6c7db40e44efe0c8226" + } +} diff --git a/domains/_vercel.windowsed.json b/domains/_vercel.windowsed.json new file mode 100644 index 000000000..18b9f160b --- /dev/null +++ b/domains/_vercel.windowsed.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "windowsed1225", + "email": "", + "discord": "906415095473655810", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a-9JVOA2JaMUvluRZbdp86QqNgeudFNVjYFoXPMx-Jh9noecZerTZaLxOyUg5ayJy9dyEXhf0B4zNZ1Rzwidmh7j13xCqd1yzbn3kTwnslr2vIi_y9jhzOU88ICnt3fFg-TIInmOoFS4R_qQhbYisc1RBRxSYB-T7h2BulQ8IsDlhMM13riRbprmjP8G-BXFp0LXTUFStwDqdtmbKUrQzGSihKc1G3NeWBsdvWE6VAp7YseD7X9QVd5lK1EF8PPiLqUO_DchocY7lhnEWsMuNbHcI9uayviJD91_hH_IKPV_PAhZCWTl6uQzxCdn3jHiYXh9OMN591x9q-OtkdRh0w.Sco_cW3oKPy6DxN3DvssTA.0xK3c1KZGJ_fzD8AMRyzoMYpatPbc-U4N-Miy3s4LLSKLp0hLN_Yj763HZ12u1t54m8lo2q3ChMGh_7WDiWwiF2nm17cpEYEJQ9MkLshCm5fEyxdNSkkDuLsb_0AzKg5PxxieE9dcW_IHgKIfU9kTg.3kH8224BAKJxuXUASG7OCA" + }, + + "record": { + "TXT": "vc-domain-verify=windowsed.is-a.dev,e5344d1f26e8286585de" + } + } + diff --git a/domains/_vercel.yean.json b/domains/_vercel.yean.json new file mode 100644 index 000000000..cd514ff10 --- /dev/null +++ b/domains/_vercel.yean.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joshex150", + "email": "joshex150@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=yean.is-a.dev,c671dbf711ab7400712a" + } +} diff --git a/domains/_vercel.yuko.json b/domains/_vercel.yuko.json new file mode 100644 index 000000000..bb134b85c --- /dev/null +++ b/domains/_vercel.yuko.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "DreamLikeAmonster", + "email": "", + "discord": "918872621892911164", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FyzirrX9msJ22dfqcMb_F476tQ5rUYYmG681OE-Iel2p4ng72GCkf6U1y2jE3W8y8EpmY4SIZLyCQxnfkChRJB3Sf6SHBg54FaZYrhwZL6c42HNf5qbXPo1G8SMafzENqI4NuVFdpy4ctY-kqet3IUdELwb5Ca062tHi0f4ofxygXCvbPeL5Kwr7pttv87nFdrXyQXbONOyBSIEdkV_svZSqoIeN_pvYFwP6Ui5uPXLu1MK_wrhmDkCfsaq9fW1dhxJG9cg70pqTJLt9DsrhQydcG4CWC335MNjy4xPpSWWgIzraJGyf-tGpME8_gsYCSq0KFt7LDw8sDhfyJ-E_jQ.OErg6Z3UQeu0J_ICaJ2fNQ.BwUoHl2d0Hr1OfmCOg_m-LtJ_wwn_K2hSYsx3hiUvbzYzw5JTTM5c9phF5t_EX1ceBnp_-0cTtPOc7525aB8ThlWuEgqfa5yEd2XRy5GFpU._yB2iJ0EFbGg6MwFxU7p0A" + }, + + "record": { + "TXT": "vc-domain-verify=yuko.is-a.dev,69ddf764dd9d6db9011e" + } + } diff --git a/domains/_vercel.zai.json b/domains/_vercel.zai.json new file mode 100644 index 000000000..301421989 --- /dev/null +++ b/domains/_vercel.zai.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zai-Kun", + "email": "", + "discord": "1100460955390988410", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.m6cKdJTirBBSL5dhwU-39VbjpjyfPP_9mSRhao-tr5TYYAZ2KnkwkYsCWJ9euM2LB4GZyUqNCviMtjOM1AXoxWq_lVH7pHgvC8I3a-HeKX0TNcy819o5nlrINjiM4770f09woEl5GVw3bGajgeJLWTPmj7PTWBvQkQ3Ug9Iuye7HmZ-UAIgh8kEw7LJzhyOKS2UTIgrA4hFF7epgCXSrma27dhHqTOjDPeg30dBO1aF8LNaF9GRnAn_IZE8Lah1ZFB9kqZRta466Zuzz8k5ztk4d-cPZEpuR6s6QIpHnddumx_hIt386nsfyQezQIo6TF5InIMT6fWkXUxDlkTyYqQ.D2xW1pY3dTkoLE7rwujNmw.PAHfsXDfCMvwEnw2-xyEYy1PCsEnfFJrkz9wAUOzUebiQsVvJ8_EjuuRFj9okzrjerIpOt2jVSyc_d9F6JFKR4AD9vbFtsMgQ0ni-6wdH6I.2MpIxeaOipjNwh0uvaaAEw" + }, + "record": { + "TXT": "vc-domain-verify=zai.is-a.dev,d6fe937cdbbdde7c76a4" + } +} diff --git a/domains/a-ditya.json b/domains/a-ditya.json deleted file mode 100644 index 9d9fe4af7..000000000 --- a/domains/a-ditya.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "AdityaOP2008", - "discord": "844843800874582048", - "email": "bw.dev@yahoo.com" - }, - "record": { - "CNAME": "c7106b01-6b1c-4d4f-b0a5-6c82b3e9a4a4.id.repl.co" - } -} diff --git a/domains/a-j.json b/domains/a-j.json new file mode 100644 index 000000000..708026569 --- /dev/null +++ b/domains/a-j.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alijafari-gd", + "email": "ali.jafari.sn@gmail.com" + }, + "record": { + "URL": "https://alijafari.is-a.dev" + } +} diff --git a/domains/a-little-hat.json b/domains/a-little-hat.json new file mode 100644 index 000000000..2e2679abb --- /dev/null +++ b/domains/a-little-hat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "A-Little-Hat", + "email": "soumyasarkar309@gmail.com" + }, + "record": { + "CNAME": "a-little-hat.github.io" + } +} diff --git a/domains/a.json b/domains/a.json new file mode 100644 index 000000000..b3f291c15 --- /dev/null +++ b/domains/a.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "dhruvakalur", + "email": "", + "discord": "794802369216380949", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.n6sY7FH0bwRVpn5paxjZE9b0AS1bS9fiw6WV4sdfPhfnRrO9vR_Mxznkv_LzM5IWuOPUrNzJ8el1rUP1_BEnafofpoSYWV4J326U0TjFnhOysYjmpJ00oNE_TkBdF-gIlwZ3Ps6X2_i5OwLkWysa6oz7-DPHMA2bN27pC7VV7uMwt8gbvLH7BBgnpgZk7vf9eQ7hb8lgHDfjaeaxfG8PoGnO4SBMxcS_Q9hQxW-z7WsfBTTOeKC8jDg3ql5CCtw4epp61hmMGMD8Fk0ETZTDXVHLRVVLsR78uKwgRm-eifgDRVgycfoGfZpRkdZAWFG5fmAYTAxOxCFj6Efa44n-tA.PzULyP0rlpaGmeRh1tX5pA._J47HD2_nZv5f8j_vl5QZZCxbm6K4_nvrZ4LVcTdjH275xenN3SC3fbM-kQFokjiiKtiaSdZMxokzZtBbDBXHORYh2Z9Ve1ENytjWkmOP3U.YDrfLdRHD6-J3Bb9_7iysA" + }, + + "record": { + "A": ["45.90.12.29"] + } + } + \ No newline at end of file diff --git a/domains/a1x5h04.json b/domains/a1x5h04.json new file mode 100644 index 000000000..10d265193 --- /dev/null +++ b/domains/a1x5h04.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "A1X5H04", + "email": "alishbaig2004@gmail.com" + }, + "description": "a1x5h04's Portfolio", + "repo": "https://github.com/a1x5h04/portfolio", + "record": { + "CNAME": "a1x5h04.pages.dev" + } +} diff --git a/domains/aa.json b/domains/aa.json new file mode 100644 index 000000000..64cb3a11a --- /dev/null +++ b/domains/aa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdullah-Albanna", + "email": "albannaa78@gmail.com" + }, + "record": { + "CNAME": "abdullah-albanna.github.io" + } +} diff --git a/domains/aaamineee.json b/domains/aaamineee.json deleted file mode 100644 index a81738691..000000000 --- a/domains/aaamineee.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "aaaminee", - "email": "amineoumellouk@yahoo.com" - }, - "record": { - "URL": "https://aaaminee.github.io" - } - } - \ No newline at end of file diff --git a/domains/aadi.json b/domains/aadi.json new file mode 100644 index 000000000..ce1fd3bd8 --- /dev/null +++ b/domains/aadi.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/ringholder/ringholder.github.io", + "owner": { + "username": "ringholder", + "email": "", + "discord": "ringholder" + }, + "record": { + "CNAME": "ringholder.github.io" + } +} diff --git a/domains/aadirajuthup.json b/domains/aadirajuthup.json new file mode 100644 index 000000000..dd110b351 --- /dev/null +++ b/domains/aadirajuthup.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aadirajuthup", + "email": "aadi.rajuthup@gmail.com" + }, + "record": { + "A": ["150.136.148.164"] + } +} diff --git a/domains/aakanksha.json b/domains/aakanksha.json index b02cd9637..f71b5dc98 100644 --- a/domains/aakanksha.json +++ b/domains/aakanksha.json @@ -1,11 +1,11 @@ { - "description": "Aakanksha's .is-a.dev domain", - "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", - "owner": { - "username": "aakankshabhende", - "email": "aakanksha0407@gmail.com" - }, - "record": { - "CNAME": "aakankshabhende.github.io" - } - } \ No newline at end of file + "description": "Aakanksha's .is-a.dev domain", + "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", + "owner": { + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" + }, + "record": { + "CNAME": "aakankshabhende.github.io" + } +} diff --git a/domains/aakash.json b/domains/aakash.json index 21a9add4f..82f277b04 100644 --- a/domains/aakash.json +++ b/domains/aakash.json @@ -1,4 +1,5 @@ { + "repo": "https://github.com/shinyzenith/website", "owner": { "username": "Shinyzenith", "email": "aakashsensharma@gmail.com" diff --git a/domains/aakashuuuu.json b/domains/aakashuuuu.json new file mode 100644 index 000000000..d94b5b9e9 --- /dev/null +++ b/domains/aakashuuuu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsAakashz", + "email": "gzatrop@gmail.com" + }, + "record": { + "CNAME": "nextjs-aakashuu-portfolio.pages.dev" + } +} diff --git a/domains/aaksa.json b/domains/aaksa.json new file mode 100644 index 000000000..0d323b382 --- /dev/null +++ b/domains/aaksa.json @@ -0,0 +1,11 @@ +{ + "description": "aaksa.is-a.dev", + "repo": "https://github.com/aaksa/aaksan.github.io", + "owner": { + "username": "aaksa", + "email": "andiaksa16@gmail.com" + }, + "record": { + "CNAME": "aaksa.github.io" + } +} diff --git a/domains/aalcantara.json b/domains/aalcantara.json new file mode 100644 index 000000000..d4f2171bb --- /dev/null +++ b/domains/aalcantara.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation for is-a-dev", + "repo": "https://github.com/Aalcantaraxxx/register", + "owner": { + "username": "Aalcantaraxxx", + "email": "angele2705@gmail.com" + }, + "record": { + "CNAME": "aalcantara-is-a-dev.web.app" + } +} diff --git a/domains/aantaripdas.json b/domains/aantaripdas.json deleted file mode 100644 index bd2a07b31..000000000 --- a/domains/aantaripdas.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "A Personal Portfilo", - "repo": "https://portfolio.anime0test.repl.co", - "owner": { - "username": "LittleSoldierGaming", - "email": "aantaripdas@gmail.com", - "twitter": "littlesoldiergaming" - }, - "record": { - "CNAME": "2df92555-30ba-4899-bbb8-2906a8f5c7e0.id.repl.co" - } -} diff --git a/domains/aaryan.json b/domains/aaryan.json index 4423f66a1..56b9728c3 100644 --- a/domains/aaryan.json +++ b/domains/aaryan.json @@ -1,11 +1,20 @@ { - "description": "Aaryan's personal website!", - "repo": "https://github.com/aaryanporwal/My-website", - "owner": { - "username": "aaryanporwal", - "email": "altaaryan@gmail.com" - }, - "record": { - "URL": "https://www.aaryanporwal.me" - } + "owner": { + "username": "Aaryan-N", + "email": "", + "discord": "652433042153144321", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RE4SnzQsF8mU81IgFbFll-aRz00dgrRzHb93gKwvaM03w_ksZTABXtjQBNe91kffdNc9M3JpnZVUlRPWGsXcdcyIUGUctweC7d7HZKNylvAYm12-xVmaX8PYM5B4l1TwTfZfACx2LckVKZUR0dZUkIVvTVHPCMF2xCGb7z8Ic-iSSu2Dp5mywp5XN8qu1dC8ep46fzkqfMeVWtzv8daNB332nz-nwKVDx_22MuYJy3mpeMMQVPRU41oWILQoWYVWYVhsiqpgw1VXKdyd52VmzgfmG6Gj0bYPeoIDzWIX8Tb-zhjxiy67tXaZYqZ7Y6DhT-t8FoZtrAfkWVyH28VOgA.KHOXZEbbSdswKeb51IRQzw.9asWvdPDaCTj6nfgO7jC4juUIdDmstvUHCjd2lb_7LK0EKJyiriVsW8F6yG7L0hCUFvPGYRfWCgn1ffzGJsbCxn-sC7aN4vfildGU5geAHA.4lTkjQOfgK2NOf2Pdf7b9A" + }, + "record": { + "A": [ + "75.2.60.5" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } } diff --git a/domains/aayushbharti.json b/domains/aayushbharti.json new file mode 100644 index 000000000..4d12555a7 --- /dev/null +++ b/domains/aayushbharti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aayushbharti", + "email": "iaayushbharti@gmail.com" + }, + "record": { + "CNAME": "aayushbharti.pages.dev" + } +} diff --git a/domains/aayushsiwa.json b/domains/aayushsiwa.json new file mode 100644 index 000000000..295bb4b0c --- /dev/null +++ b/domains/aayushsiwa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aayushsiwa", + "email": "22052177@kiit.ac.in" + }, + "record": { + "CNAME": "aayushsiwa.pages.dev" + } +} diff --git a/domains/abaan.json b/domains/abaan.json new file mode 100644 index 000000000..86b1091c3 --- /dev/null +++ b/domains/abaan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abaan5467", + "email": "abaan@metfabproducts.com" + }, + "record": { + "CNAME": "abaan5467.github.io" + } +} diff --git a/domains/abc.json b/domains/abc.json new file mode 100644 index 000000000..4747a5b5c --- /dev/null +++ b/domains/abc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "neohe", + "email": "he_neo@163.com" + }, + "record": { + "CNAME": "neohe.github.io" + } +} diff --git a/domains/abdeba.json b/domains/abdeba.json index 50d560f3d..0d9f2d7c9 100644 --- a/domains/abdeba.json +++ b/domains/abdeba.json @@ -1,7 +1,6 @@ - { "owner": { - "username": "Abdelhakim Baraka", + "username": "abde0ba", "email": "abdesoft1@gmail.com" }, "record": { diff --git a/domains/abdelkarim-ain.json b/domains/abdelkarim-ain.json new file mode 100644 index 000000000..64ace5d29 --- /dev/null +++ b/domains/abdelkarim-ain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdelkarimain", + "email": "abdelkarimain0@gmail.com" + }, + "record": { + "CNAME": "abdelkarimain.github.io" + } +} diff --git a/domains/abdelkarimain.json b/domains/abdelkarimain.json new file mode 100644 index 000000000..64ace5d29 --- /dev/null +++ b/domains/abdelkarimain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdelkarimain", + "email": "abdelkarimain0@gmail.com" + }, + "record": { + "CNAME": "abdelkarimain.github.io" + } +} diff --git a/domains/abdessattar.json b/domains/abdessattar.json new file mode 100644 index 000000000..e0fb31e1d --- /dev/null +++ b/domains/abdessattar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdessattar23", + "email": "elyagoubiabdessattar@gmail.com" + }, + "record": { + "CNAME": "abdessattar23.github.io" + } +} diff --git a/domains/abdisa.json b/domains/abdisa.json new file mode 100644 index 000000000..162199d0b --- /dev/null +++ b/domains/abdisa.json @@ -0,0 +1,10 @@ +{ + "description": "I'm a dev.", + "owner": { + "username": "abdisadev", + "email": "abdisadev@gmail.com" + }, + "record": { + "CNAME": "abdisa.me" + } +} diff --git a/domains/abdo.json b/domains/abdo.json new file mode 100644 index 000000000..0aa8537f1 --- /dev/null +++ b/domains/abdo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xAbdoATx", + "email": "xabdoat@gmail.com" + }, + "record": { + "CNAME": "xabdoatx.github.io" + } +} diff --git a/domains/abdul.json b/domains/abdul.json index 6d64abb4f..71b6bf706 100644 --- a/domains/abdul.json +++ b/domains/abdul.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Abdul1810", - "email": "abdulking8010@gmail.com", - "discord": "Abdul ♥#5464" - }, - "record": { - "CNAME": "rahman.works" - } -} + "owner": { + "username": "AhadWeb3", + "email": "ahad4387@gmail.com" + }, + "description": "portofolio website.", + "record": { + "URL": "https://abdul-ahad-portfolio.webflow.io" + } + } \ No newline at end of file diff --git a/domains/abdullah.json b/domains/abdullah.json index 924881c8e..549ce8855 100644 --- a/domains/abdullah.json +++ b/domains/abdullah.json @@ -1,4 +1,3 @@ - { "owner": { "username": "adistar964", diff --git a/domains/abe.json b/domains/abe.json new file mode 100644 index 000000000..7029a15cd --- /dev/null +++ b/domains/abe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "solarcosmic", + "email": "skyrocket180@gmail.com", + "discord": "1201432681913778260" + }, + + "record": { + "CNAME": "profile01.overstand.app" + } +} diff --git a/domains/abegehr.json b/domains/abegehr.json new file mode 100644 index 000000000..78b7f1e39 --- /dev/null +++ b/domains/abegehr.json @@ -0,0 +1,12 @@ +{ + "description": "Personal webpage", + "repo": "https://github.com/abegehr/abegehr.github.io", + "owner": { + "username": "abegehr", + "email": "anton@begehr.me", + "twitter": "antonbegehr" + }, + "record": { + "CNAME": "abegehr.github.io" + } +} diff --git a/domains/abelblue.json b/domains/abelblue.json index fb79c4cc0..49af5c49d 100644 --- a/domains/abelblue.json +++ b/domains/abelblue.json @@ -1,12 +1,11 @@ { - "description": "Abel Mitiku's website", - "repo": "https://github.com/abel-blue/abelblue.dev", - "owner": { - "username": "abel-blue", - "email": "abelmgetnet@gmail.com" - }, - "record": { - "CNAME": "abel-blue.github.io" - } + "description": "Abel Mitiku's website", + "repo": "https://github.com/abel-blue/abelblue.dev", + "owner": { + "username": "abel-blue", + "email": "abelmgetnet@gmail.com" + }, + "record": { + "CNAME": "abel-blue.github.io" } - \ No newline at end of file +} diff --git a/domains/abhay.json b/domains/abhay.json new file mode 100644 index 000000000..96c0c1bf6 --- /dev/null +++ b/domains/abhay.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "uniquepersun", + "email": "abhay.i0am@gmail.com", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WIRf3W3gkAD5c_yyczIieWIABVFKWjmCVV0l_jrxtMMOnT2mWlAELQAVfwDsjz2XEX6NcrWmCEaTEYC0aVCeWEgSjnl_r077RRwQuAOED2ICK-M5WvKDPdUuPlChYVtpbRiByY1nmFWUp5DGn7Z2faQrla_7Ji2e924mSSJppOeBuhcDZ0mZ0Mc3Z8X4DWgQ5xBbKFoREVkyuPSs9Y6Q0-lZsFZijj9khQsQDbDgZT8v3Fv9swLkqAdt-ZMBr7ZdvJSkBbtWj8L038WAZ6dSg-ix3xpkluU97jQt6kLkOyRYY5MKDFoSkxraBumZA9-YDB3pDL_2yAZ23cvHywnPDg.kU_H99RhrpznpQWwrfJ_Aw.yuZV5PvTwNvz5T1JlXOnGw7JjHcUDj_KdD9XGpvQ2rQQ9twNQJESMqj55Jxbgx2jX6mzJsRWmlJDPkE3eSkMQOv3AJuxuWdX4kGpREkxeixFGB8N1oviCe6z0JoYfRuW.GdyFBUkFmKP1fVuGM1CdCA" + }, + + "record": { + "URL": "https://uniquepersun.hackclub.app" + } + } diff --git a/domains/abhi.json b/domains/abhi.json index 7c63414b5..3b9c6b2b6 100644 --- a/domains/abhi.json +++ b/domains/abhi.json @@ -1,4 +1,3 @@ - { "owner": { "username": "actuallyabhi", @@ -8,4 +7,3 @@ "URL": "https://actuallyabhi.netlify.app" } } - \ No newline at end of file diff --git a/domains/abhilash.json b/domains/abhilash.json new file mode 100644 index 000000000..8048cae1d --- /dev/null +++ b/domains/abhilash.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portfolio", + "repo": "https://github.com/ostrichization/ostrichization.github.io", + "owner": { + "username": "Ostrichization", + "email": "abhilashk1@proton.me", + "twitter": "OstrichHimself" + }, + "record": { + "CNAME": "ostrichization.github.io" + } +} diff --git a/domains/abhisekp.json b/domains/abhisekp.json deleted file mode 100644 index 3fab010d3..000000000 --- a/domains/abhisekp.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "owner": { - "username": "abhisekp", - "email": "abhisekp@engineer.com", - "twitter": "abhisek", - "discord": "abhisekp#3680", - "description": "About Abhisek Pattnaik", - "repo": "https://github.com/abhisekp/abhisekp" - }, - "record": { - "URL": "https://abhisekp.com" - } -} diff --git a/domains/abhishek-sharma.json b/domains/abhishek-sharma.json new file mode 100644 index 000000000..82aba4eef --- /dev/null +++ b/domains/abhishek-sharma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AbhiSharma096", + "email": "Abhisheksharma10a@gmail.com" + }, + "record": { + "URL": "https://abhishek-sharma-01.netlify.app/" + } +} diff --git a/domains/abhrajitdas.json b/domains/abhrajitdas.json new file mode 100644 index 000000000..d0c26388f --- /dev/null +++ b/domains/abhrajitdas.json @@ -0,0 +1,12 @@ +{ + "description": "My personal Portfolio Webdite", + "repo": "https://github.com/Abhrajitdas02/Abhrajitdas02.github.io", + "owner": { + "username": "Abhrajitdas02", + "email": "abhrajitdas12245@gmail.com", + "twitter": "abhrajit2002" + }, + "record": { + "CNAME": "abhrajitdas02.github.io" + } +} diff --git a/domains/abid.json b/domains/abid.json new file mode 100644 index 000000000..8c17122ee --- /dev/null +++ b/domains/abid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abidhasannir", + "email": "abidhasannir@omail.edu.pl" + }, + "record": { + "CNAME": "abidhasannir.github.io" + } +} diff --git a/domains/aboutjes.json b/domains/aboutjes.json new file mode 100644 index 000000000..53c17e34b --- /dev/null +++ b/domains/aboutjes.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Bio", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "octyn-yt", + "email": "simplelogin-newsletter.idealize471@simplelogin.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/abysmal.json b/domains/abysmal.json index 0f09f0d66..d51988040 100644 --- a/domains/abysmal.json +++ b/domains/abysmal.json @@ -1,10 +1,10 @@ { - "description": "My personal website", - "owner": { - "username": "abysmal26", - "email": "abysmal@disroot.org" - }, - "record": { - "URL": "https://abysmal.eu.org" - } -} + "description": "My personal website", + "owner": { + "username": "abysmal26", + "email": "abysmal@disroot.org" + }, + "record": { + "URL": "https://abysmal.eu.org" + } +} diff --git a/domains/abyss.json b/domains/abyss.json new file mode 100644 index 000000000..4e050d48c --- /dev/null +++ b/domains/abyss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ultimduck", + "email": "zultimduk@gmail.com" + }, + "record": { + "CNAME": "ultimduck.github.io" + } +} diff --git a/domains/acctuke.json b/domains/acctuke.json new file mode 100644 index 000000000..96f7c2c5d --- /dev/null +++ b/domains/acctuke.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Roing", + "email": "yang4421@outlook.com" + }, + "record": { + "A": ["47.120.72.157"] + } +} diff --git a/domains/ace.json b/domains/ace.json index 933f8cc2f..a372f365b 100644 --- a/domains/ace.json +++ b/domains/ace.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "diamond-gold", + "email": "diamond-gold-ace@outlook.com" + }, - { - "owner": { - "username": "diamond-gold", - "email": "diamond-gold-ace@outlook.com" - }, - - "record": { - "URL": "https://github.com/diamond-gold" - } - } - + "record": { + "URL": "https://github.com/diamond-gold" + } +} diff --git a/domains/acey.json b/domains/acey.json index 43405681e..e3ac2f977 100644 --- a/domains/acey.json +++ b/domains/acey.json @@ -1,15 +1,9 @@ { - "repo": "https://github.com/AceyDoCodes", - "description": "Email ;-;", "owner": { "username": "AceyDoCodes", "email": "aceygoesboom@gmail.com" }, "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "CNAME": "website-5qo.pages.dev" } } diff --git a/domains/acgaming.json b/domains/acgaming.json index 0b54207eb..39856b8e9 100644 --- a/domains/acgaming.json +++ b/domains/acgaming.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "ACGaming1508", - "email": "acgamer861@gmail.com" - }, - "repo": "https://github.com/ACGaming1508/ACGaming1508.github.io", - "record": { - "CNAME": "acgaming1508.github.io" - } + "owner": { + "username": "ACGaming1508", + "email": "acgamer861@gmail.com" + }, + "repo": "https://github.com/ACGaming1508/ACGaming1508.github.io", + "record": { + "CNAME": "acgaming1508.github.io" + } } diff --git a/domains/achintya.json b/domains/achintya.json deleted file mode 100644 index 667339c0b..000000000 --- a/domains/achintya.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ajachintya", - "email": "ajachintyajaiswal@gmail.com" - }, - "record": { - "URL": "https://portfolio-app-production.up.railway.app" - } -} diff --git a/domains/acronical.json b/domains/acronical.json new file mode 100644 index 000000000..b63c4de95 --- /dev/null +++ b/domains/acronical.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "record": { + "CNAME": "acronical.pages.dev" + } +} diff --git a/domains/activities.maskduck.json b/domains/activities.maskduck.json deleted file mode 100644 index 6fb6a6599..000000000 --- a/domains/activities.maskduck.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "docs for my lib, nc-ext-activities", - "repo": "https://github.com/MaskDuck/nextcord-ext-activities", - "owner": { - "username": "MaskDuck", - "twitter": "MaskDuck1", - "email": "" - }, - "record": { - "CNAME": "readthedocs.io" - } -} diff --git a/domains/adais.json b/domains/adais.json new file mode 100644 index 000000000..be4a05f10 --- /dev/null +++ b/domains/adais.json @@ -0,0 +1,11 @@ +{ + "description": "Personal developer website", + "repo": "https://github.com/leixiaoda/openai", + "owner": { + "username": "leixiaoda", + "email": "leixiaoda@gmail.com" + }, + "record": { + "CNAME": "leixiaoda.github.io" + } +} diff --git a/domains/adam.json b/domains/adam.json new file mode 100644 index 000000000..073d89e03 --- /dev/null +++ b/domains/adam.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "adamrexo", + "email": "", + "discord": "898638440592191509", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UQXA3K1mX8Pq_S_dcKeoB7MzL_ON5vOvOGOA_0xPft015rDYunl47BEB_lxW0viGYUMvnecBkv6vBnxUrCtoh9F1f2QNnSfJMpDLRnEoiJt4gwt3wSuW8zlw7Y4gkr0oGoqPqXoVZkZOXtn1-SAB5h_rHksFxolsoxNUGbqfcqTcsHScsjVDhlfRSK7eGn-0iWJCjiQc0nL4HPHm-ziu0p2q4bFXzp6XreLITFZIASffgJzFldC2lmxXe3iR1A_T1zHw93f6rUrgdKgWRAN4qhmxHeSUatmI3uMTc0sd2BS0c99IumRnEYVzQDNkSutfw_zo5wDTjp2aabyb7XqusQ.dj4_olpViy2ITJcHo1Fo6g.IXDL4TFulPcVWPZMZ9SR5yoKVD0dS44Rx1-dHODPZw1ZoOUDliQDqUF5csyOdbLGLXiRAl6bsePXCVLIpYoPGwC25zKxI1z7maAu4uHQ6dI.QvaiUlJyNs4nk2-cV_HgDg" + }, + + "record": { + "A": ["130.162.237.143"] + } + } + \ No newline at end of file diff --git a/domains/adamkarepin.json b/domains/adamkarepin.json index 6a70fd819..b205b71ae 100644 --- a/domains/adamkarepin.json +++ b/domains/adamkarepin.json @@ -1,4 +1,4 @@ -{ +{ "description": "Personal portfolio website", "repo": "https://github.com/K7Adam/my-webfolio-angular", "owner": { diff --git a/domains/adamski.json b/domains/adamski.json new file mode 100644 index 000000000..68c836593 --- /dev/null +++ b/domains/adamski.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "edtimer", + "email": "b4timer@protonamil.com" + }, + "record": { + "CNAME": "adamski.pages.dev" + } +} diff --git a/domains/adarsh.json b/domains/adarsh.json new file mode 100644 index 000000000..2a5ecfbe1 --- /dev/null +++ b/domains/adarsh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "clumzyofficial", + "email": "adarshshukla0344@gmail.com" + }, + "record": { + "CNAME": "clumzyofficial.github.io" + } +} diff --git a/domains/adarshblog.json b/domains/adarshblog.json new file mode 100644 index 000000000..ca079d348 --- /dev/null +++ b/domains/adarshblog.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsmeadarsh2008", + "email": "gourabmahalikadarsh@gmail.com" + }, + "record": { + "URL": "https://broughtbyalgorithm.blogspot.com" + } +} diff --git a/domains/addison.json b/domains/addison.json deleted file mode 100644 index 05b8e84d3..000000000 --- a/domains/addison.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "duckmob", - "email": "coxy.addison@gmail.com" - }, - "record": { - "CNAME": "dcd5055c-f746-4223-a171-5f536111d3c5.id.repl.co" - } -} diff --git a/domains/adeebkhan.json b/domains/adeebkhan.json new file mode 100644 index 000000000..d2abea43e --- /dev/null +++ b/domains/adeebkhan.json @@ -0,0 +1,11 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/akpathan2799/akpathan2799.github.io", + "owner": { + "username": "akpathan2799", + "email": "akpathan2799@gmail.com" + }, + "record": { + "CNAME": "akpathan2799.github.io" + } +} diff --git a/domains/adhi.json b/domains/adhi.json index 784886c28..a32db6a53 100644 --- a/domains/adhi.json +++ b/domains/adhi.json @@ -1,12 +1,11 @@ { - "description": "Adhi", - "repo": "https://github.com/adhithyakrishna/adhithyakrishna.github.io", - "owner": { - "username": "Adhi", - "email": "akrishna.cse21@gmail.com" - }, - "record": { - "CNAME": "adhithyakrishna.github.io" - } + "description": "Adhi", + "repo": "https://github.com/adhithyakrishna/adhithyakrishna.github.io", + "owner": { + "username": "Adhi", + "email": "akrishna.cse21@gmail.com" + }, + "record": { + "CNAME": "adhithyakrishna.github.io" } - \ No newline at end of file +} diff --git a/domains/adhitht.json b/domains/adhitht.json new file mode 100644 index 000000000..14f5ceeff --- /dev/null +++ b/domains/adhitht.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adhitht", + "email": "adhith.tharammal@gmail.com" + }, + "record": { + "URL": "https://adhitht.me" + } +} diff --git a/domains/adib.json b/domains/adib.json deleted file mode 100644 index 679472d0b..000000000 --- a/domains/adib.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Adib23704", - "email": "adib23704@gmail.com" - }, - "record": { - "CNAME": "adib23704.tk" - } - } - diff --git a/domains/adit.json b/domains/adit.json new file mode 100644 index 000000000..e3a663c15 --- /dev/null +++ b/domains/adit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aditya-lika-ardiansyah", + "email": "Adytialikaardiansyah@gmail.com" + }, + "record": { + "CNAME": "aditya-lika-ardiansyah.github.io" + } +} diff --git a/domains/adithya.json b/domains/adithya.json new file mode 100644 index 000000000..928901c94 --- /dev/null +++ b/domains/adithya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adithyakb10", + "email": "adithyakb93@gmail.com" + }, + "record": { + "URL": "https://adithyakb.carrd.co/" + } +} diff --git a/domains/aditya.json b/domains/aditya.json index cb5889409..60cf9857a 100644 --- a/domains/aditya.json +++ b/domains/aditya.json @@ -1,12 +1,13 @@ { - "description": "My Personal Landing Page!", - "repo": "https://github.com/adityaasyadav/aditya", - "owner": { - "username": "adityaasyadav", - "email": "ishqaddy@gmail.com", - "twitter": "adityaasyadav" - }, - "record": { - "CNAME": "adityaasyadav.github.io" - } + "description": "my personal homepage", + "repo": "https://github.com/dedomil", + "owner": { + "username": "dedomil", + "email": "ishqaddy@gmail.com", + "twitter": "aadixl", + "discord": "dedomil" + }, + "record": { + "CNAME": "dedomil.github.io" + } } diff --git a/domains/adityabh.json b/domains/adityabh.json new file mode 100644 index 000000000..19a91c588 --- /dev/null +++ b/domains/adityabh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AdityaBhattacharya1", + "email": "ec6isyf0@anonaddy.me" + }, + "record": { + "CNAME": "adityabhattacharya1.github.io" + } +} diff --git a/domains/adityajyoti.json b/domains/adityajyoti.json new file mode 100644 index 000000000..5ada85f5e --- /dev/null +++ b/domains/adityajyoti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aditya-Jyoti", + "email": "aj.adityajyoti@gmail.com" + }, + "record": { + "URL": "https://aditya-jyoti.github.io" + } +} diff --git a/domains/adityapcgaming.json b/domains/adityapcgaming.json deleted file mode 100644 index 1fa0cceaa..000000000 --- a/domains/adityapcgaming.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Clyders", - "email": "adityapcgaming1@gmail.com" - }, - "record": { - "CNAME": "8a7f7c6e-2287-4f07-a605-5ca7824b3f38.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/adityavag.json b/domains/adityavag.json index 215631251..502e07869 100644 --- a/domains/adityavag.json +++ b/domains/adityavag.json @@ -1,11 +1,11 @@ { - "description": "For Portfolio", - "repo": "https://github.com/adityavag/portfolio", - "owner": { - "username": "adityavag", - "email": "adi247u@gmail.com" - }, - "record": { - "CNAME": "adityavag.github.io" - } -} + "description": "For Portfolio", + "repo": "https://github.com/adityavag/portfolio", + "owner": { + "username": "adityavag", + "email": "adi247u@gmail.com" + }, + "record": { + "CNAME": "adityavag.github.io" + } +} diff --git a/domains/adityavijay.json b/domains/adityavijay.json new file mode 100644 index 000000000..f00652f71 --- /dev/null +++ b/domains/adityavijay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adityavijay21", + "email": "adityavijay2103@gmail.com" + }, + "record": { + "CNAME": "resume-qt2q.onrender.com" + } +} diff --git a/domains/adnan.json b/domains/adnan.json new file mode 100644 index 000000000..ba9825fc8 --- /dev/null +++ b/domains/adnan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Adnan0131", + "email": "sonuadnan6@gmail.com" + }, + + "record": { + "CNAME": "adnan0131.github.io" + } +} diff --git a/domains/adolar0042.json b/domains/adolar0042.json index c3c75d935..f8354e325 100644 --- a/domains/adolar0042.json +++ b/domains/adolar0042.json @@ -1,5 +1,4 @@ - - { +{ "description": "personal website", "repo": "https://github.com/adolar0042/adolar0042.github.io", "owner": { diff --git a/domains/adonisfx.json b/domains/adonisfx.json index 5a26695e8..8213ee39a 100644 --- a/domains/adonisfx.json +++ b/domains/adonisfx.json @@ -1,12 +1,12 @@ { - "description": "This is a domain for my personal website!", - "repo": "https://github.com/Adonisfx/adonisfx.github.io", - "owner": { - "username": "Adonisfx", - "email": "ogulcanozturk72@gmail.com", - "twitter": "ogulcanztrk1" - }, - "record": { - "CNAME": "adonisfx.github.io" - } -} + "description": "This is a domain for my personal website!", + "repo": "https://github.com/Adonisfx/adonisfx.github.io", + "owner": { + "username": "Adonisfx", + "email": "ogulcanozturk72@gmail.com", + "twitter": "ogulcanztrk1" + }, + "record": { + "CNAME": "adonisfx.github.io" + } +} diff --git a/domains/adoqet.json b/domains/adoqet.json new file mode 100644 index 000000000..e85fe6bd4 --- /dev/null +++ b/domains/adoqet.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "AdoQeT", + "email": "adoqet@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.111.153", + "185.199.110.153", + "185.199.109.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/adri.json b/domains/adri.json index 96e1ea032..b6e5c5aea 100644 --- a/domains/adri.json +++ b/domains/adri.json @@ -4,6 +4,6 @@ "email": "adripo@hi2.in" }, "record": { - "URL": "https://adri.ninja" + "URL": "https://github.com/adripo" } } diff --git a/domains/adrien.json b/domains/adrien.json deleted file mode 100644 index 2261e5f11..000000000 --- a/domains/adrien.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Adri11334", - "email": "adrien.vermersch@epitech.eu", - "discord": "Дdяi1#7501" - }, - "record": { - "A": [ - "116.203.127.206" - ] - } -} \ No newline at end of file diff --git a/domains/adriichu.json b/domains/adriichu.json index 2119a1940..7a4cc01f3 100644 --- a/domains/adriichu.json +++ b/domains/adriichu.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "Adriichu", - "email": "adriichu@proton.me", - "twitter": "Adriichuu", - "discord": "Aaron#0069" - }, + "owner": { + "username": "Adriichu", + "email": "adriichu@proton.me", + "twitter": "Adriichuu", + "discord": "Aaron#0069" + }, - "record": { - "CNAME": "aaron-web.pages.dev" - } + "record": { + "CNAME": "aaron-web.pages.dev" } +} diff --git a/domains/advance-bot.json b/domains/advance-bot.json new file mode 100644 index 000000000..3275b6f92 --- /dev/null +++ b/domains/advance-bot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "shygamer123", + "email": "gpratham522@gmail.com", + "discord": "840244590870003762" + }, + + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/advik.json b/domains/advik.json new file mode 100644 index 000000000..b54c5b23f --- /dev/null +++ b/domains/advik.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Advik-B", + "email": "advik.b@gmail.com", + "discord": "765739254164357121" + }, + + "record": { + "CNAME": "advik-b.github.io" + } +} diff --git a/domains/aeon.json b/domains/aeon.json new file mode 100644 index 000000000..284dfcd90 --- /dev/null +++ b/domains/aeon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DaynLalwani", + "email": "Daynlalwani23@gmail.com" + }, + "record": { + "CNAME": "daynlalwani.github.io" + } +} diff --git a/domains/aestra.json b/domains/aestra.json deleted file mode 100644 index b14c6f75c..000000000 --- a/domains/aestra.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Will save it for future for my portfolio site", - "owner": { - "username": "aestra", - "email": "aestradev@gmail.com", - "github": "aestradev" - }, - "record": { - "CNAME": "portfolio-production-7e27.up.railway.app" - } -} diff --git a/domains/aesyncio.json b/domains/aesyncio.json new file mode 100644 index 000000000..113d3a35a --- /dev/null +++ b/domains/aesyncio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aesyncio", + "email": "ssupercow@proton.me", + "discord": "1235901872649539604" + }, + + "record": { + "CNAME": "aesyncio.github.io" + } +} diff --git a/domains/aetinx.json b/domains/aetinx.json deleted file mode 100644 index 775fdff48..000000000 --- a/domains/aetinx.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "owner": { - "username": "aetinx", - "email": "", - "twitter": "aetinx", - "discord": "aetinx#8300", - "note": "amogus" - }, - "description": "Aetinx's domain. https://aetinx.glitch.me", - "record": { - "CNAME": "glitch.edgeapp.net" - } -} diff --git a/domains/affidev.json b/domains/affidev.json new file mode 100644 index 000000000..07c9a0359 --- /dev/null +++ b/domains/affidev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eabdalmufid", + "email": "eabdalmufid@gmail.com" + }, + "record": { + "CNAME": "eabdalmufid.github.io" + } +} diff --git a/domains/afidev.json b/domains/afidev.json new file mode 100644 index 000000000..07c9a0359 --- /dev/null +++ b/domains/afidev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eabdalmufid", + "email": "eabdalmufid@gmail.com" + }, + "record": { + "CNAME": "eabdalmufid.github.io" + } +} diff --git a/domains/afk.json b/domains/afk.json new file mode 100644 index 000000000..a34e49d0c --- /dev/null +++ b/domains/afk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RainWill", + "email": "2782401449@qq.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/afnan.json b/domains/afnan.json deleted file mode 100644 index b1abacf4f..000000000 --- a/domains/afnan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "afnan007a", - "email": "mr.goblin007a@gmail.com" - }, - "record": { - "CNAME": "portfolio-cci.pages.dev" - } -} diff --git a/domains/afp.json b/domains/afp.json new file mode 100644 index 000000000..9a7f0a88b --- /dev/null +++ b/domains/afp.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "AndreasFxPro", + "email": "", + "discord": "423906482904629268" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/afrtite.json b/domains/afrtite.json new file mode 100644 index 000000000..ca405cf8c --- /dev/null +++ b/domains/afrtite.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "5enox", + "email": "animikantan@gmail.com" + }, + "record": { + "CNAME": "my-proto.onrender.com" + } +} diff --git a/domains/afton.json b/domains/afton.json new file mode 100644 index 000000000..b11a4c175 --- /dev/null +++ b/domains/afton.json @@ -0,0 +1,12 @@ +{ + "description": "My webpage, made using LiveTerm by Cveinnt", + "repo": "https://github.com/aftoncodes/aftoncodes.github.io", + "owner": { + "username": "aftoncodes", + "email": "williamafton.codes@gmail.com", + "twitter": "aftoncodes" + }, + "record": { + "URL": "https://aftoncodes.vercel.app" + } +} diff --git a/domains/ag.json b/domains/ag.json index eee6ebcae..d543ffcf8 100644 --- a/domains/ag.json +++ b/domains/ag.json @@ -6,6 +6,6 @@ "email": "software@grafen.info" }, "record": { - "URL": "https://andreas.grafen.info" + "URL": "https://unseen.ninja" } } diff --git a/domains/agamjot-singh.json b/domains/agamjot-singh.json new file mode 100644 index 000000000..629719d9a --- /dev/null +++ b/domains/agamjot-singh.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Portfolio Webapp", + "repo": "https://github.com/agamjotsingh18/agamjotsingh18.github.io", + "owner": { + "username": "agamjotsingh18", + "email": "agamjotsingh1801@gmail.com", + "twitter": "_agamjotsingh" + }, + "record": { + "CNAME": "agamjotsingh18.github.io" + } +} diff --git a/domains/agn.json b/domains/agn.json new file mode 100644 index 000000000..a20a8d69b --- /dev/null +++ b/domains/agn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "agnesmonret", + "email": "agnesmoret@proton.me", + "discord": "694917200720429066" + }, + + "record": { + "CNAME": "agnesmonret.github.io" + } +} diff --git a/domains/agold.json b/domains/agold.json index 6db55c518..b70dfd3e7 100644 --- a/domains/agold.json +++ b/domains/agold.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "aGoldDev", - "discord": "aGold#9596", - "email": "abloggoldwin@gmail.com" - }, - "record": { - "CNAME": "agolddev.github.io" - } + "owner": { + "username": "aGoldDev", + "discord": "aGold#9596", + "email": "abloggoldwin@gmail.com" + }, + "record": { + "CNAME": "agolddev.github.io" + } } diff --git a/domains/aguspedhot.json b/domains/aguspedhot.json index d5c1dba4f..95ef4fc86 100644 --- a/domains/aguspedhot.json +++ b/domains/aguspedhot.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Pedhot-Dev", - "email": "wanzgamerz2@gmail.com" - }, - "record": { - "CNAME": "aguspedhot.000webhostapp.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "Pedhot-Dev", + "email": "wanzgamerz2@gmail.com" + }, + "record": { + "CNAME": "aguspedhot.000webhostapp.com" + } +} diff --git a/domains/ahammednibras.json b/domains/ahammednibras.json new file mode 100644 index 000000000..5b4ca3270 --- /dev/null +++ b/domains/ahammednibras.json @@ -0,0 +1,12 @@ +{ + "description": "I want to use this domain as my personal web portfolio.", + "repo": "https://github.com/ahammednibras8/ahammednibras8.github.io", + "owner": { + "username": "ahammednibras8", + "email": "ahammednibras@hey.com", + "twitter": "ahammednibras8" + }, + "record": { + "CNAME": "ahammednibras8.github.io" + } +} diff --git a/domains/ahku.json b/domains/ahku.json index 08d3353ef..814591fb9 100644 --- a/domains/ahku.json +++ b/domains/ahku.json @@ -1,10 +1,13 @@ { - "owner": { - "username": "pebna7d9", - "email": "pebna7d9@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} \ No newline at end of file + "owner": { + "username": "pebna7d9", + "email": "pebna7d9@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/ahmad-muhajir.json b/domains/ahmad-muhajir.json new file mode 100644 index 000000000..74d39cdac --- /dev/null +++ b/domains/ahmad-muhajir.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/amuhajirs/amuhajirs.github.io", + "owner": { + "username": "amuhajirs", + "email": "jeremyjeferson71@gmail.com" + }, + "record": { + "CNAME": "amuhajirs.github.io" + } +} diff --git a/domains/ahmed.json b/domains/ahmed.json deleted file mode 100644 index 39d15aa75..000000000 --- a/domains/ahmed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ahmed's personal site", - "repo": "https://github.com/Dropheart", - "owner": { - "username": "dropheart", - "email": "ahmed@techfromtheheart.com" - }, - "record": { - "URL": "https://techfromtheheart.com" - } -} diff --git a/domains/ahmedtohamy.json b/domains/ahmedtohamy.json new file mode 100644 index 000000000..44fc48511 --- /dev/null +++ b/domains/ahmedtohamy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahmedtohamy1", + "email": "1ahmed.tohamy@gmail.com" + }, + "record": { + "CNAME": "ahmedtohamy1.github.io" + } +} diff --git a/domains/ahmet.json b/domains/ahmet.json deleted file mode 100644 index ce94bff31..000000000 --- a/domains/ahmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "ahmet's personal website", - "repo": "https://github.com/ahmetesad", - "owner": { - "username": "ahmetesad", - "email": "ahmetesad@pm.me" - }, - "record": { - "CNAME": "f13e0f65-a2c0-4466-b220-29a46ae78562.id.repl.co" - } -} diff --git a/domains/ahsanu.json b/domains/ahsanu.json new file mode 100644 index 000000000..a7d507a27 --- /dev/null +++ b/domains/ahsanu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ahsanu123", + "email": "caasperahsanuamala5@gmail.com" + }, + "record": { + "CNAME": "ahsanu123.github.io" + } +} diff --git a/domains/ahuja-m.json b/domains/ahuja-m.json new file mode 100644 index 000000000..9c030d54f --- /dev/null +++ b/domains/ahuja-m.json @@ -0,0 +1,11 @@ +{ + "description": "This is a user", + "repo": "https://github.com/ahuja-m/ahuja-m.github.io", + "owner": { + "username": "ahuja-m", + "email": "" + }, + "record": { + "CNAME": "ahuja-m.github.io" + } +} diff --git a/domains/ahysa.andgyk.json b/domains/ahysa.andgyk.json index b24425d08..72a0fe1e2 100644 --- a/domains/ahysa.andgyk.json +++ b/domains/ahysa.andgyk.json @@ -1,11 +1,11 @@ { - "description": "Ahysa Discord bot website", - "repo": "https://github.com/andgyk/ahysa", - "owner": { - "username": "andgyk", - "email": "an4g7k@gmail.com" - }, - "record": { - "CNAME": "ahysa.github.io" - } + "description": "Ahysa Discord bot website", + "repo": "https://github.com/andgyk/ahysa", + "owner": { + "username": "andgyk", + "email": "an4g7k@gmail.com" + }, + "record": { + "CNAME": "ahysa.github.io" + } } diff --git a/domains/ai-demo.json b/domains/ai-demo.json new file mode 100644 index 000000000..51914a0f8 --- /dev/null +++ b/domains/ai-demo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "andrewstech", + "email": "andrew@maintainers.is-a.dev", + "discord": "598245488977903688" + }, + + "record": { + "CNAME": "andrewstech.github.io" + } +} diff --git a/domains/ai-y.json b/domains/ai-y.json new file mode 100644 index 000000000..99101fef5 --- /dev/null +++ b/domains/ai-y.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + + "record": { + "CNAME": "ai-y-web.pages.dev" + } +} diff --git a/domains/ai-y.yosuke.json b/domains/ai-y.yosuke.json new file mode 100644 index 000000000..e4b6d6271 --- /dev/null +++ b/domains/ai-y.yosuke.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "ai-y-main.pages.dev" + } +} diff --git a/domains/ai-y.yunexiz.json b/domains/ai-y.yunexiz.json new file mode 100644 index 000000000..1a06bbbaf --- /dev/null +++ b/domains/ai-y.yunexiz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "yunexiz.github.io" + } +} diff --git a/domains/ai.esb.json b/domains/ai.esb.json new file mode 100644 index 000000000..1caa482a4 --- /dev/null +++ b/domains/ai.esb.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "34.120.54.55" + ], + "AAAA": [ + "2600:1901:0:6d85::" + ] + } +} diff --git a/domains/aichat.json b/domains/aichat.json new file mode 100644 index 000000000..ef8dc3532 --- /dev/null +++ b/domains/aichat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TechnoFusionTech", + "email": "technofusiontech@techie.com" + }, + "record": { + "CNAME": "technofusiontech.is-a.dev" + } +} diff --git a/domains/aiden.json b/domains/aiden.json new file mode 100644 index 000000000..a03f0aaf8 --- /dev/null +++ b/domains/aiden.json @@ -0,0 +1,11 @@ +{ + "description": "Redirect for my personal website", + "repo": "https://github.com/ignSKRRRTT/register", + "owner": { + "username": "ignSKRRRTT", + "email": "me@aiden.gg" + }, + "record": { + "URL": "https://aiden.gg" + } +} diff --git a/domains/aidhani.json b/domains/aidhani.json index 16e891ec4..7c919180a 100644 --- a/domains/aidhani.json +++ b/domains/aidhani.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "AidhaniDev", + "email": "aidhanidev@gmail.com" + }, - { - "owner": { - "username": "AidhaniDev", - "email": "aidhanidev@gmail.com" - }, - - "record": { - "URL": "https://sites.google.com/view/aidhanidev/home" - } - } - + "record": { + "URL": "https://sites.google.com/view/aidhanidev/home" + } +} diff --git a/domains/aiko.json b/domains/aiko.json index 76095a0e0..0e5c6d3f4 100644 --- a/domains/aiko.json +++ b/domains/aiko.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "AikoNee", + "email": "shenzie1131@gmail.com" + }, - { - "owner": { - "username": "AikoNee", - "email": "shenzie1131@gmail.com" - }, - - "record": { - "CNAME": "aiko.pages.dev" - } - } - \ No newline at end of file + "record": { + "CNAME": "aiko.pages.dev" + } +} diff --git a/domains/ailakks.json b/domains/ailakks.json deleted file mode 100644 index 776a4aabb..000000000 --- a/domains/ailakks.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "ailakks.is-a.dev.", - "repo": "https://github.com/ailakks", - "owner": { - "username": "ailakks", - "email": "hola@cortmnzz.com" - }, - "record": { - "URL": "https://cortmnzz.com" - } -} diff --git a/domains/ain3abdo.json b/domains/ain3abdo.json new file mode 100644 index 000000000..246306030 --- /dev/null +++ b/domains/ain3abdo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ainabdelkarim", + "email": "abdelkarimain0@gmail.com" + }, + "record": { + "CNAME": "ainabdelkarim.github.io" + } +} diff --git a/domains/air.json b/domains/air.json new file mode 100644 index 000000000..dc7a76be0 --- /dev/null +++ b/domains/air.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Caiden-P", + "email": "iididhejejdj@gmail.com", + "discord": "850820069310201896" + }, + "record": { + "CNAME": "air-busl.onrender.com" + } +} diff --git a/domains/aish.json b/domains/aish.json new file mode 100644 index 000000000..4f1926b86 --- /dev/null +++ b/domains/aish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "code-hunt-in", + "email": "aishwary.pandore@somaiya.edu" + }, + "record": { + "CNAME": "code-hunt-in.github.io" + } +} diff --git a/domains/aixiaoji.json b/domains/aixiaoji.json new file mode 100644 index 000000000..dbeecaec5 --- /dev/null +++ b/domains/aixiaoji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HelloAIXIAOJI", + "email": "aixiaoji2020@163.com" + }, + "record": { + "CNAME": "ip.hk.dhost.devskyr.com" + } +} diff --git a/domains/aizawakiyaworu.json b/domains/aizawakiyaworu.json deleted file mode 100644 index 75ae335b7..000000000 --- a/domains/aizawakiyaworu.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "mhmdysf", - "email": "muhammadyusuf1325@smp.belajar.id" - }, - "record": { - "URL": "https://linktr.ee/aizawakiyaworu" - } - } - diff --git a/domains/aj.json b/domains/aj.json new file mode 100644 index 000000000..5ada85f5e --- /dev/null +++ b/domains/aj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aditya-Jyoti", + "email": "aj.adityajyoti@gmail.com" + }, + "record": { + "URL": "https://aditya-jyoti.github.io" + } +} diff --git a/domains/aj7.json b/domains/aj7.json new file mode 100644 index 000000000..d07fe1565 --- /dev/null +++ b/domains/aj7.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Aj-Seven", + "email": "", + "discord": "1001724019764105307", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PrSBRDaJlKvzZqQ36RQuk7LNoUgHNzidvrUf1soAaR-omfIi3O45AhrScQhU9kLyAzrXUVomzObZ1t9PEmdkIEkRB2ixGfUGNw2QXoLGE_YD7bXSuiQ37FI3wlpQnSbhwEEInlrN1m4k7B4q-NieWDVy6TUUvjwJRHB3PoX_v2sBeyHAq8z0JPgKxtqZa87tRl5HOV-l8-3oUdVWBALzy29V67leds49-JiZUhSlBtI8i9ffL9vsSVJd_ZDBtCivc69jraLmeqcUaeRs6gBCf6PCEKedFL0DFESQJs20Q3NycNBM-lDbTnRAELwIH_qTR-Kp-1mlGRZRi86negfShg.LsD0K6KH_2ix58TY5XVo7A.XVuT8kmSk4-Et5is2YvbWkV2j1BmeJmP_hsXPIro3M1eYZpxSGdD6UEeTkPVA1Y5_jap3XmImFi5cytqLn0v5eWiZqFDdB4_bbsL1eDqzJc.28Rc2WPMDexZtJVxuECDqw" + }, + + "record": { + "CNAME": "ajseven.eu.org" + } + } + \ No newline at end of file diff --git a/domains/ajay.json b/domains/ajay.json new file mode 100644 index 000000000..32b4b1176 --- /dev/null +++ b/domains/ajay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aj-Cdr", + "email": "ajaysathishpreetha2.0@gmail.com" + }, + "record": { + "URL": "https://ajay.framer.ai/" + } +} diff --git a/domains/ajayanto.json b/domains/ajayanto.json new file mode 100644 index 000000000..c64961cbc --- /dev/null +++ b/domains/ajayanto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AjayAntoIsDev", + "email": "ajayantoisdev@gmail.com" + }, + "record": { + "CNAME": "ajayanto.pages.dev" + } +} diff --git a/domains/ajaykrshna.json b/domains/ajaykrshna.json new file mode 100644 index 000000000..aa08adbd6 --- /dev/null +++ b/domains/ajaykrshna.json @@ -0,0 +1,11 @@ +{ + "description": "For personal use", + "repo": "https://github.com/ajaykrshna/ajaykrshna.github.io", + "owner": { + "username": "ajaykrshna", + "email": "ajaykfan@gmail.com" + }, + "record": { + "CNAME": "ajaykrshna.github.io" + } +} diff --git a/domains/ajays.json b/domains/ajays.json new file mode 100644 index 000000000..8fa7f088c --- /dev/null +++ b/domains/ajays.json @@ -0,0 +1,11 @@ +{ + "description": "want to use it for hosting my portfolio site", + "repo": "https://github.com/Dev-Ajay-sahani/Ajay_site", + "owner": { + "username": "Dev-Ajay-sahani", + "email": "ajays.dev.contact@gmail.com" + }, + "record": { + "CNAME": "Dev-Ajay-sahani.github.io" + } +} diff --git a/domains/ajie.json b/domains/ajie.json new file mode 100644 index 000000000..d38a44c72 --- /dev/null +++ b/domains/ajie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AjieDev", + "email": "ajiedev@ajieblogs.eu.org" + }, + "record": { + "CNAME": "ajiedev.pages.dev" + } +} diff --git a/domains/ak-dev.json b/domains/ak-dev.json new file mode 100644 index 000000000..a25661d66 --- /dev/null +++ b/domains/ak-dev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LRxDarkDevil", + "email": "tahaadnanawan@gmail.com" + }, + "record": { + "CNAME": "ak-dev.github.io" + } +} diff --git a/domains/ak47.json b/domains/ak47.json new file mode 100644 index 000000000..53c17e34b --- /dev/null +++ b/domains/ak47.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Bio", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "octyn-yt", + "email": "simplelogin-newsletter.idealize471@simplelogin.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/akai.json b/domains/akai.json new file mode 100644 index 000000000..78b0eb0c2 --- /dev/null +++ b/domains/akai.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AmazingAkai", + "email": "", + "discord": "Akai#8199" + }, + "record": { + "CNAME": "akai.onrender.com" + } +} diff --git a/domains/akas.json b/domains/akas.json deleted file mode 100644 index 52edf781b..000000000 --- a/domains/akas.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Akas Portfolio", - "repo": "https://github.com/akasrai/akasrai.github.io", - "owner": { - "username": "akasrai", - "email": "akasky70@gmail.com" - }, - "record": { - "CNAME": "akasrai.github.io" - } -} diff --git a/domains/akash.json b/domains/akash.json new file mode 100644 index 000000000..d6c799907 --- /dev/null +++ b/domains/akash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CruxCoder7", + "email": "akashrangesh07@gmail.com" + }, + "record": { + "CNAME": "cruxcoder7.github.io" + } +} diff --git a/domains/akashr.json b/domains/akashr.json new file mode 100644 index 000000000..5886e4058 --- /dev/null +++ b/domains/akashr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akash2600707", + "email": "akashramesh2607@gmail.com" + }, + "record": { + "CNAME": "akashr-portfolio.onrender.com" + } +} \ No newline at end of file diff --git a/domains/akatsuki.json b/domains/akatsuki.json new file mode 100644 index 000000000..38307d498 --- /dev/null +++ b/domains/akatsuki.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Miguel-altcell", + "email": "wilsonmigueljalla@gmail.com", + "discord": "1223721772051075193" + }, + + "record": { + "CNAME": "akatsuki-crew.rf.gd" + } +} diff --git a/domains/akbar.json b/domains/akbar.json new file mode 100644 index 000000000..b4c5d32ea --- /dev/null +++ b/domains/akbar.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio of M. Akbar Perdana", + "owner": { + "username": "akbarrdev", + "email": "teamnevolution@gmail.com" + }, + "record": { + "CNAME": "portfolio-7to.pages.dev" + } +} diff --git a/domains/akborana.json b/domains/akborana.json new file mode 100644 index 000000000..0a46fee2c --- /dev/null +++ b/domains/akborana.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "akborana3", + "email": "akayonfire3@gmail.com", + "discord": "1042457884736368721" + }, + + "record": { + "CNAME": "akborana3.github.io" + } +} diff --git a/domains/akcord.json b/domains/akcord.json new file mode 100644 index 000000000..f367e58b2 --- /dev/null +++ b/domains/akcord.json @@ -0,0 +1,14 @@ +{ + "description": "AKCord's Portfolio", + "repo": "https://github.com/AKCord/akcord.github.io", + "owner": { + "username": "AKCord", + "email": "shrestha.aeniv@gmail.com", + "discord": "AKCord" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/akhilesh.json b/domains/akhilesh.json new file mode 100644 index 000000000..fafe817b1 --- /dev/null +++ b/domains/akhilesh.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/ProCoderAkhil/ProCoderAkhil.github.io", + "owner": { + "username": "ProCoderAkhil", + "email": "AkhilRamachandran@gmail.com" + }, + "record": { + "CNAME": "ProCoderAkhil.github.io" + } +} diff --git a/domains/akio.json b/domains/akio.json deleted file mode 100644 index 0e27f9e75..000000000 --- a/domains/akio.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "YoruAkio", - "email": "" - }, - "record": { - "TXT": "vc-domain-verify=akio.is-a.dev,c991805a0f4ecf2a1ded" - } - } - \ No newline at end of file diff --git a/domains/akiraxd.json b/domains/akiraxd.json new file mode 100644 index 000000000..07425efe8 --- /dev/null +++ b/domains/akiraxd.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "akiraxdxd", + "email": "ekereymen451+645675476345635573454309@gmail.com", + "discord": "1241059919377989695" + }, + + "record": { + "CNAME": "akiraxdxd.github.io" + } + } + \ No newline at end of file diff --git a/domains/akki.json b/domains/akki.json new file mode 100644 index 000000000..fcddeed5a --- /dev/null +++ b/domains/akki.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "akshtt-dev", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.197.135.203"] + } +} diff --git a/domains/aknb.json b/domains/aknb.json index 95b8d9504..24ab31650 100644 --- a/domains/aknb.json +++ b/domains/aknb.json @@ -1,9 +1,9 @@ - { - "owner": { - "username": "Abdulazizkhan-K-N-B", - "email": "abdulazizkhan.k.n.b@gmail.com" - }, - "record": { - "CNAME": "abdulazizkhan-k-n-b.github.io" - } - } \ No newline at end of file +{ + "owner": { + "username": "Abdulazizkhan-K-N-B", + "email": "abdulazizkhan.k.n.b@gmail.com" + }, + "record": { + "CNAME": "abdulazizkhan-k-n-b.github.io" + } +} diff --git a/domains/aknbs-vpn.json b/domains/aknbs-vpn.json deleted file mode 100644 index 1b522bbe3..000000000 --- a/domains/aknbs-vpn.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Abdulazizkhan-K-N-B", - "email": "abdulazizkhan.k.n.b@gmail.com" - }, - "record": { - "A": ["47.242.127.210"] - } - } - \ No newline at end of file diff --git a/domains/akorn.json b/domains/akorn.json new file mode 100644 index 000000000..3840ff527 --- /dev/null +++ b/domains/akorn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Akronical", + "email": "" + }, + "record": { + "CNAME": "akronical.github.io" + } +} diff --git a/domains/akpi.json b/domains/akpi.json new file mode 100644 index 000000000..7df15e6ef --- /dev/null +++ b/domains/akpi.json @@ -0,0 +1,22 @@ +{ + "owner": { + "username": "akpi816218", + "email": "", + "discord": "equus_quagga" + }, + "record": { + "A": [ + "185.199.110.153", + "185.199.108.153", + "185.199.111.153", + "185.199.109.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/akrm.json b/domains/akrm.json new file mode 100644 index 000000000..5c6f59489 --- /dev/null +++ b/domains/akrm.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "KemoXtech", + "email": "aljmalrealstate@gmail.com", + "discord": "868339557593137212" + }, + + "record": { + "A": ["64.62.151.106"], + "AAAA": ["2001:470:1:1ee::2009"] + } + } \ No newline at end of file diff --git a/domains/akshat.json b/domains/akshat.json new file mode 100644 index 000000000..3570057b6 --- /dev/null +++ b/domains/akshat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshatgurnani", + "email": "Akshatgurnani@outlook.com" + }, + "record": { + "URL": "https://www.github.com/akshatgurnani" + } +} diff --git a/domains/akshath.json b/domains/akshath.json new file mode 100644 index 000000000..28ea47ef5 --- /dev/null +++ b/domains/akshath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "d7dx", + "email": "d7dx@proton.me" + }, + "record": { + "CNAME": "d7dx.github.io" + } +} diff --git a/domains/akshatjain.json b/domains/akshatjain.json new file mode 100644 index 000000000..3a4ccb3c6 --- /dev/null +++ b/domains/akshatjain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshatjain", + "email": "akshatjain1567@gmail.com" + }, + "record": { + "URL": "https://www.github.com/akshatjaiin" + } +} diff --git a/domains/akshay-n.json b/domains/akshay-n.json index a255c39e3..54a9a6909 100644 --- a/domains/akshay-n.json +++ b/domains/akshay-n.json @@ -7,6 +7,9 @@ }, "record": { "TXT": "v=spf1 include:spf.improvmx.com ~all", - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] } } diff --git a/domains/akshay.json b/domains/akshay.json index e7d3efc58..741acd48d 100644 --- a/domains/akshay.json +++ b/domains/akshay.json @@ -6,6 +6,6 @@ "email": "phenax5@gmail.com" }, "record": { - "URL": "https://phenax.github.io" + "URL": "https://ediblemonad.dev" } } diff --git a/domains/akshayks.json b/domains/akshayks.json new file mode 100644 index 000000000..ac5fabd1c --- /dev/null +++ b/domains/akshayks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshaynox", + "email": "mail.akshayks@gmail.com" + }, + "record": { + "URL": "https://akshayks.vercel.app/" + } +} diff --git a/domains/akshayn.json b/domains/akshayn.json deleted file mode 100644 index d080caa3e..000000000 --- a/domains/akshayn.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "akshaynstack", - "email": "akshay.fivem@gmail.com" - }, - "record": { - "A": ["52.66.193.17"] - } -} diff --git a/domains/akshsingla.json b/domains/akshsingla.json new file mode 100644 index 000000000..7306ad99e --- /dev/null +++ b/domains/akshsingla.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Aktindo", + "email": "akshit.singla.dps@gmail.com" + }, + "description": "Personal website.", + "repo": "https://github.com/Aktindo/personal-website", + "record": { + "URL": "https://akshsingla.vercel.app" + } +} diff --git a/domains/akshtt.json b/domains/akshtt.json new file mode 100644 index 000000000..5ff9fe6e2 --- /dev/null +++ b/domains/akshtt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/akshya.json b/domains/akshya.json new file mode 100644 index 000000000..0a08b60dc --- /dev/null +++ b/domains/akshya.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/LowkeyGUY4444/LowkeyGUY4444.github.io", + "owner": { + "username": "LowkeyGUY4444", + "email": "akshyathapa23@gmail.com" + }, + "record": { + "CNAME": "LowkeyGUY4444.github.io" + } +} diff --git a/domains/akxd.json b/domains/akxd.json new file mode 100644 index 000000000..a5b3b9351 --- /dev/null +++ b/domains/akxd.json @@ -0,0 +1,12 @@ +{ + "description": "Aditya's Portfolio", + "repo": "https://github.com/adityakumarxd", + "owner": { + "username": "adityakumarxd", + "email": "", + "discord": "akxd" + }, + "record": { + "CNAME": "adityakumarxd.github.io" + } +} diff --git a/domains/al-bagra.json b/domains/al-bagra.json new file mode 100644 index 000000000..933410d19 --- /dev/null +++ b/domains/al-bagra.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "UtsaVy", + "email": "utsavk681@gmail.com" + }, + + "record": { + "CNAME": "utsav.github.io" + } +} diff --git a/domains/alain.json b/domains/alain.json new file mode 100644 index 000000000..807b89f2e --- /dev/null +++ b/domains/alain.json @@ -0,0 +1,12 @@ +{ + "repo": "https://github.com/alainsdev/register", + "owner": { + "username": "alainsdev", + "email": "ghghello30@gmail.com", + "discord": "970325505989574656" + }, + + "record": { + "CNAME": "alainsdev.github.io" + } +} diff --git a/domains/albert.json b/domains/albert.json index 3f584c139..5fefa9cb9 100644 --- a/domains/albert.json +++ b/domains/albert.json @@ -2,11 +2,11 @@ "description": "Albert's Portfolio Website", "repo": "https://github.com/albert1033/albert-portfolio", "owner": { - "username": "albert1033", - "email": "vuongdingtuong.an@gmail.com", - "twitter": "albert_26_10" + "username": "albert1033", + "email": "vuongdingtuong.an@gmail.com", + "twitter": "albert_26_10" }, "record": { - "CNAME": "albert1033.github.io" + "CNAME": "albert1033.github.io" } } diff --git a/domains/albin.json b/domains/albin.json index 7243302c7..99aaabdb6 100644 --- a/domains/albin.json +++ b/domains/albin.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "ALBINPRAVEEN", - "email": "albinpraveen135790@gmail.com" - }, - "record": { - "URL": "https://albinpraveen.vercel.app" - } - } - \ No newline at end of file +{ + "owner": { + "username": "ALBINPRAVEEN", + "email": "albinpraveen135790@gmail.com" + }, + "record": { + "URL": "https://albinpraveen.vercel.app" + } +} diff --git a/domains/albinpraveen.json b/domains/albinpraveen.json index a31dd375a..9478e78c4 100644 --- a/domains/albinpraveen.json +++ b/domains/albinpraveen.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "ALBINPRAVEEN", - "email": "albinpraveen135790@gmail.com" - }, - "record": { - "CNAME": "albinpraveen.github.io" - } - } - +{ + "owner": { + "username": "ALBINPRAVEEN", + "email": "albinpraveen135790@gmail.com" + }, + "record": { + "CNAME": "albinpraveen.github.io" + } +} diff --git a/domains/alcantara.json b/domains/alcantara.json new file mode 100644 index 000000000..07a6f1b91 --- /dev/null +++ b/domains/alcantara.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Aalcantaraxxx", + "email": "angele2705@gmail.com", + "discord": "713108034171437066" + }, + + "record": { + "CNAME": "aalcantara-is-a-dev.web.app" + } + } + \ No newline at end of file diff --git a/domains/alden.json b/domains/alden.json new file mode 100644 index 000000000..50aa7cf36 --- /dev/null +++ b/domains/alden.json @@ -0,0 +1,14 @@ +{ + "description": "Websitenya alden si dawg yang sangaddd keren", + "repo": "https://github.com/Schmeichel-web/aldenpbm.github.io", + "owner": { + "username":"Schmeichel-web", + "manager": "cupglassdev", + "email": "", + "discord": "footballfan0891", + "note":"this is my friend's website, because he dosent really understands about these thing, im managing it" + }, + "record": { + "CNAME": "aldenpbm.github.io" + } +} diff --git a/domains/aldenizenmc.json b/domains/aldenizenmc.json deleted file mode 100644 index 94a381720..000000000 --- a/domains/aldenizenmc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "repo": "https://github.com/AldenizenMC/AldenizenMC.github.io", - "owner": { - "username": "AldenizenMC", - "email": "", - "discord": "AldenizenMC#1418", - "twitter": "aldenizenmc", - "note": "I am never online on twitter, message me on Discord instead. In case my discriminator changes, my user id is 529424782438170679" - }, - "record": { - "CNAME": "AldenizenMC.github.io" - } -} diff --git a/domains/aldess.json b/domains/aldess.json new file mode 100644 index 000000000..e88e64276 --- /dev/null +++ b/domains/aldess.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AldessScratch", + "email": "aldess.sc@gmail.com" + }, + "record": { + "CNAME": "aldess.pages.dev" + } +} diff --git a/domains/aldnnnz.json b/domains/aldnnnz.json new file mode 100644 index 000000000..9447f9be8 --- /dev/null +++ b/domains/aldnnnz.json @@ -0,0 +1,12 @@ +{ + "description": "portofolio", + "domain": "aldnnnz.is-a.dev", + "repo": "https://github.com/aldnnnz/aldnnnz.github.io", + "owner": { + "username": "aldnnnz", + "email": "aldynnn@yahoo.com" + }, + "record": { + "CNAME": "aldnnnz.github.io" + } +} diff --git a/domains/alechu.json b/domains/alechu.json new file mode 100644 index 000000000..e69967afd --- /dev/null +++ b/domains/alechu.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website to describe who I am and what I'm currently doing as a developer", + "repo": "https://github.com/Alechuu/alechuu.github.io", + "owner": { + "username": "Alechuu", + "email": "alechu.dev@icloud.com" + }, + "record": { + "CNAME": "alechuu.github.io" + } +} diff --git a/domains/alecks.json b/domains/alecks.json new file mode 100644 index 000000000..e61b812fc --- /dev/null +++ b/domains/alecks.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Alecks20", + "email": "contact@alecks.dev", + "discord": "612522818294251522" + }, + + "record": { + "CNAME": "mmsehn6m.up.railway.app" + } + } + diff --git a/domains/alejosm.json b/domains/alejosm.json new file mode 100644 index 000000000..4297ac80c --- /dev/null +++ b/domains/alejosm.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ralexale", + "email": "ralexale@gmail.com" + }, + + "record": { + "CNAME": "ralexale.github.io" + } +} diff --git a/domains/alephanull.json b/domains/alephanull.json deleted file mode 100644 index 8b18bcd52..000000000 --- a/domains/alephanull.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal website and blog", - "repo": "https://github.com/AlephaNull/AlephaNull.github.io", - "owner": { - "username": "AlephaNull", - "email": "alephanull7@pm.me" - }, - "record": { - "CNAME": "alephanull.github.io" - } -} diff --git a/domains/alephdiallo.json b/domains/alephdiallo.json new file mode 100644 index 000000000..ed82a93d7 --- /dev/null +++ b/domains/alephdiallo.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "alephdfilms", + "email": "alephdiallo@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 427265238404956172" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + + "TXT": "forward-email=alephdiallo@mail.com" + } +} diff --git a/domains/alexander.json b/domains/alexander.json deleted file mode 100644 index ccdf0961b..000000000 --- a/domains/alexander.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Alexander's personal website", - "repo": "https://github.com/amatzen", - "owner": { - "username": "amatzen", - "email": "alexander@alexander.dk" - }, - "record": { - "CNAME": "alexander.dk" - } -} diff --git a/domains/alexanderzhx.json b/domains/alexanderzhx.json new file mode 100644 index 000000000..80ced8a43 --- /dev/null +++ b/domains/alexanderzhx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AZ777xx", + "email": "bugattiforever@gmail.com" + }, + "record": { + "CNAME": "az777xx.github.io" + } +} diff --git a/domains/alexandre.json b/domains/alexandre.json deleted file mode 100644 index 71ee04aab..000000000 --- a/domains/alexandre.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "ARCIKE", - "email": "alexarcike@gmail.com" - }, - "record": { - "URL": "https://portfolio.alexandre-dev.gq" - } - } - diff --git a/domains/alexbartles.json b/domains/alexbartles.json new file mode 100644 index 000000000..e4a561f4d --- /dev/null +++ b/domains/alexbartles.json @@ -0,0 +1,11 @@ +{ + "repo": "https://alexbartles.github.io/", + "owner": { + "username": "AlexBartles", + "email": "alexbartles2012@gmail.com", + "discord": "_alexbartles" + }, + "record": { + "CNAME": "alexbartles.github.io" + } +} diff --git a/domains/alexd.json b/domains/alexd.json new file mode 100644 index 000000000..a7d74ee46 --- /dev/null +++ b/domains/alexd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AlexanderDDevelopment", + "email": "AlexanderDDevelopment@gmail.com", + "discord": "1237578569358639190" + }, + + "record": { + "CNAME": "alexanderd.pages.dev" + } +} diff --git a/domains/alexey.json b/domains/alexey.json index 64300e742..4b011b2c4 100644 --- a/domains/alexey.json +++ b/domains/alexey.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "charmingdisorder", - "email": "" - }, - "record": { - "CNAME": "charmingdisorder.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "charmingdisorder", + "email": "" + }, + "record": { + "CNAME": "charmingdisorder.github.io" + } +} diff --git a/domains/alexidk.json b/domains/alexidk.json deleted file mode 100644 index 05a2b7cf2..000000000 --- a/domains/alexidk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My developer website.", - "repo": "https://github.com/Alex-idk", - "owner": { - "username": "Alex-idk", - "email": "alex@alexidk.dev" - }, - "record": { - "URL": "https://alexidk.dev" - } -} diff --git a/domains/alexis.json b/domains/alexis.json index 3b2172db3..6b0ee7bd0 100644 --- a/domains/alexis.json +++ b/domains/alexis.json @@ -1,12 +1,12 @@ { - "description": "Personnal website of", - "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io", - "owner": { - "username": "alexis-elaxis", - "email": "contact@alexiis.fr", - "twitter": "un_nalexis" - }, - "record": { - "CNAME": "alexis-elaxis.github.io" - } -} + "description": "Personnal website of", + "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io", + "owner": { + "username": "alexis-elaxis", + "email": "contact@alexiis.fr", + "twitter": "un_nalexis" + }, + "record": { + "CNAME": "alexis-elaxis.github.io" + } +} diff --git a/domains/alexismaison.json b/domains/alexismaison.json new file mode 100644 index 000000000..c135d4713 --- /dev/null +++ b/domains/alexismaison.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alexis2m", + "email": "hello@alexismaison.com" + }, + "record": { + "URL": "https://alexismaison.com" + } +} diff --git a/domains/alexmercerind.json b/domains/alexmercerind.json index 58812cc82..176b26537 100644 --- a/domains/alexmercerind.json +++ b/domains/alexmercerind.json @@ -1,13 +1,13 @@ -{ - "description": "A redirect to my actual personal website on GitHub Pages", - "repo": "https://github.com/alexmercerind/alexmercerind.github.io", - "owner": { - "username": "alexmercerind", - "email": "alexmercerind@gmail.com", - "twitter": "alexmercerind", - "discord": "alexmercerind#3898" - }, - "record": { - "CNAME": "alexmercerind.github.io" - } -} +{ + "description": "A redirect to my actual personal website on GitHub Pages", + "repo": "https://github.com/alexmercerind/alexmercerind.github.io", + "owner": { + "username": "alexmercerind", + "email": "alexmercerind@gmail.com", + "twitter": "alexmercerind", + "discord": "alexmercerind#3898" + }, + "record": { + "CNAME": "alexmercerind.github.io" + } +} diff --git a/domains/alfanaan.json b/domains/alfanaan.json new file mode 100644 index 000000000..10a510b3b --- /dev/null +++ b/domains/alfanaan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Alfanaannet", + "email": "hmmm202031520062021@gmail.com", + "discord": "775012312876711936" + }, + "record": { + "URL": "https://timevoice.onrender.com", + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/alfari.json b/domains/alfari.json new file mode 100644 index 000000000..d442f3731 --- /dev/null +++ b/domains/alfari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alfari24", + "email": "ari@alfari.id" + }, + "record": { + "A": ["194.15.36.220"] + } +} diff --git a/domains/alfred.json b/domains/alfred.json index 221c4e5c8..c3bae96d2 100644 --- a/domains/alfred.json +++ b/domains/alfred.json @@ -1,11 +1,11 @@ { - "description": "MkDocs website for alfred-discord-bot", - "repo": "https://github.com/AlfredDiscordBot/AlfredDiscordBot.github.io", - "owner": { - "username": "AlfredDiscordBot", - "email": "alvinallen333@gmail.com" - }, - "record": { - "CNAME": "AlfredDiscordBot.github.io" - } + "description": "MkDocs website for alfred-discord-bot", + "repo": "https://github.com/AlfredDiscordBot/AlfredDiscordBot.github.io", + "owner": { + "username": "AlfredDiscordBot", + "email": "alvinallen333@gmail.com" + }, + "record": { + "CNAME": "AlfredDiscordBot.github.io" + } } diff --git a/domains/alguienrandom.json b/domains/alguienrandom.json deleted file mode 100644 index 910a15d70..000000000 --- a/domains/alguienrandom.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "alguien random web", - "owner": { - "username": "alguien-random", - "email": "alguienrandom.is-a.dev" - }, - "record": { - "CNAME": "8152606b-2e68-4a11-bb81-6799f00d4909.id.repl.co" - } -} diff --git a/domains/ali-abdurrazzak.json b/domains/ali-abdurrazzak.json new file mode 100644 index 000000000..47101becd --- /dev/null +++ b/domains/ali-abdurrazzak.json @@ -0,0 +1,12 @@ +{ + "description": "A subdomain to direct ali's portofolio github pages", + "repo": "https://github.com/aliabdurrazzak/aliabdurrazzak.github.io", + "owner": { + "username": "aliabdurrazzak", + "email": "aliabdurrazzak@gmail.com", + "twitter": "@aliabdurrazzak" + }, + "record": { + "CNAME": "aliabdurrazzak.github.io" + } +} diff --git a/domains/ali.json b/domains/ali.json index 64e6d3d2e..2dd37ffac 100644 --- a/domains/ali.json +++ b/domains/ali.json @@ -1,11 +1,11 @@ { - "description": "Personal Portfolio", - "repo": "https://github.com/hmd-ali/hmd-ali.github.io", - "owner": { - "username": "hmd-ali", - "email": "letsmailali.h@gmail.com" - }, - "record": { - "CNAME": "hmd-ali.github.io" - } -} \ No newline at end of file + "description": "Personal Portfolio", + "repo": "https://github.com/hmd-ali/hmd-ali.github.io", + "owner": { + "username": "hmd-ali", + "email": "letsmailali.h@gmail.com" + }, + "record": { + "CNAME": "hmd-ali.github.io" + } +} diff --git a/domains/alian.json b/domains/alian.json new file mode 100644 index 000000000..d1152607e --- /dev/null +++ b/domains/alian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alianhakim9", + "email": "alianhakim9@gmail.com" + }, + "record": { + "URL": "https://alianhakim9.vercel.app/" + } +} diff --git a/domains/aliezan.json b/domains/aliezan.json new file mode 100644 index 000000000..aa5890989 --- /dev/null +++ b/domains/aliezan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aliezan", + "email": "muhammadalieza4@gmail.com" + }, + "record": { + "CNAME": "aliezan.github.io" + } +} diff --git a/domains/alijafari.json b/domains/alijafari.json new file mode 100644 index 000000000..639d61198 --- /dev/null +++ b/domains/alijafari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alijafari-gd", + "email": "ali.jafari.sn@gmail.com" + }, + "record": { + "URL": "https://alijafari-gd.github.io" + } +} diff --git a/domains/alimd.json b/domains/alimd.json index a8f47d554..2f9288f52 100644 --- a/domains/alimd.json +++ b/domains/alimd.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "AliMD", + "email": "ali@mihandoost.com" + }, - { - "owner": { - "username": "AliMD", - "email": "ali@mihandoost.com" - }, - - "record": { - "CNAME": "alimd.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "alimd.github.io" + } +} diff --git a/domains/alimehdi.json b/domains/alimehdi.json new file mode 100644 index 000000000..703bf6956 --- /dev/null +++ b/domains/alimehdi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DeadMan30", + "email": "its.alimehdi25@gmail.com" + }, + "record": { + "CNAME": "alimehdi.pages.dev" + } +} diff --git a/domains/alireza.json b/domains/alireza.json index 5b9e70bd4..48c89c757 100644 --- a/domains/alireza.json +++ b/domains/alireza.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "faghani", - "email": "", - "twitter": "alireza_faghani" - }, - "record": { - "CNAME": "hashnode.network" - } -} + "owner": { + "username": "faghani", + "email": "", + "twitter": "alireza_faghani" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/alisabry.json b/domains/alisabry.json index 7889c32cf..fce4e8e6d 100644 --- a/domains/alisabry.json +++ b/domains/alisabry.json @@ -1,10 +1,10 @@ - { - "owner": { - "username": "ali-sabry", - "email": "alisabry.official@gmail.com" - }, +{ + "owner": { + "username": "ali-sabry", + "email": "alisabry.official@gmail.com" + }, - "record": { - "URL": "https://alisabry.netlify.app" - } - } + "record": { + "URL": "https://alisabry.netlify.app" + } +} diff --git a/domains/alisher.json b/domains/alisher.json deleted file mode 100644 index 562ee6795..000000000 --- a/domains/alisher.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Alisher's Website!", - "repo": "https://github.com/alisher-usmonov/portfolio-Website", - "owner": { - "username": "alisher-usmonov", - "email": "alisher.null@gmail.com" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } -} diff --git a/domains/alivaliev.json b/domains/alivaliev.json new file mode 100644 index 000000000..0571db837 --- /dev/null +++ b/domains/alivaliev.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ali-valiev", + "email": "", + "discord": "722403528705966080", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JSdx7lWn1j953PUFzYC5SKNlzI-3owSSeRuL8BVKm3P1xwN1Ufuhssfzul-weVp-srPf-YXIN4e1tuB2cUProneSkZUANnd4Cl5oCRd4TG1SRUKdI7pkWauG6ysFEFCHwf1LmANGdjzjI0YDNYbGIU3-0nWSmxF5inVadCE8Y281Y6D2lf9A7ceihxwoRq3MCqGo8yCQuNO9FUWwcxZWHa0F7pGYSPqlE26szjWdhFX6rrNS_ypi5wTqhMAC6FdS36zP5bRRSc8b_9TGpE9vj0FleWb1hqXzAiAxToTCTuIGCuTaVY_pfWvpT43sDLN5d7ouXUCgdDGDnntAGLDs4Q.zgoE3RG741k1s-HFrWT7dA.utROG6r9NR6Awzk5pi-TqsCVuoAKn4zG6IbVSFn5il2EKcXDmXt6nzkQYORhyMUptajbkDd3O98WGRaVqG3qkvJUUQu6h_3H4pwRoZQd0fvYqG6G_ymfSlgynEP1y4EZ.jYbY2Ak8PSXN95hhiA2EXg" + }, + + "record": { + "CNAME": "ali-valiev.github.io" + } + } + \ No newline at end of file diff --git a/domains/aliwoto.json b/domains/aliwoto.json new file mode 100644 index 000000000..edd87667c --- /dev/null +++ b/domains/aliwoto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ALiwoto", + "email": "aminnimaj@gmail.com" + }, + "record": { + "A": ["5.9.188.232"] + } +} diff --git a/domains/allancoding.json b/domains/allancoding.json new file mode 100644 index 000000000..82b0cfda9 --- /dev/null +++ b/domains/allancoding.json @@ -0,0 +1,20 @@ +{ + "description": "My main website", + "repo": "https://github.com/allancoding/allancoding.is-a.dev", + "owner": { + "username": "allancoding", + "email": "allancoding.dev@gmail.com", + "twitter": "allancoding", + "discord": "allancoding" + }, + "record": { + "A": [ + "75.2.60.5" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com include:_spf.google.com ~all" + } +} diff --git a/domains/allen.json b/domains/allen.json index 2d8ed18ad..a48f293d7 100644 --- a/domains/allen.json +++ b/domains/allen.json @@ -2,11 +2,11 @@ "description": "A full-stack developer.", "repo": "https://github.com/xiaofuyesnew", "owner": { - "username": "xiaofuyesnew", - "email": "xiaofuyesnew@qq.com", - "twitter": "xiaofuyesnew" + "username": "xiaofuyesnew", + "email": "xiaofuyesnew@qq.com", + "twitter": "xiaofuyesnew" }, "record": { - "URL": "https://github.com/xiaofuyesnew" + "URL": "https://github.com/xiaofuyesnew" } } diff --git a/domains/allsyed.json b/domains/allsyed.json deleted file mode 100644 index f2ab61183..000000000 --- a/domains/allsyed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Allsyed's personal website", - "repo": "https://github.com/allsyed", - "owner": { - "username": "allsyed", - "email": "allsyed@pm.me" - }, - "record": { - "CNAME": "allsyed.com" - } -} diff --git a/domains/alltawd.json b/domains/alltawd.json new file mode 100644 index 000000000..7184a18c6 --- /dev/null +++ b/domains/alltawd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AlltAWD", + "email": "hanson_2014@hotmail.com" + }, + "record": { + "CNAME": "alltawd.github.io" + } +} diff --git a/domains/almaz.json b/domains/almaz.json new file mode 100644 index 000000000..4a9f6402d --- /dev/null +++ b/domains/almaz.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "AlmaziikDev", + "email": "almazgamer228@gmail.com" + }, + "record": { + "URL": "https://ss.almaz.is-a.dev", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/almightynan.json b/domains/almightynan.json index 7c3c92865..e592fa237 100644 --- a/domains/almightynan.json +++ b/domains/almightynan.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/almightynan", - "owner": { - "username": "almightynan", - "email": "almightynan@gmail.com" - }, - "record": { - "CNAME": "almightynandev-production.up.railway.app" - } + "repo": "https://github.com/almightynan", + "owner": { + "username": "almightynan", + "email": "almightynan@gmail.com" + }, + "record": { + "CNAME": "almightynandev-production.up.railway.app" + } } diff --git a/domains/almuqbel.json b/domains/almuqbel.json new file mode 100644 index 000000000..6b8338a90 --- /dev/null +++ b/domains/almuqbel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AMAZINGMAN2", + "email": "Hashim.almuqbel@gmail.com" + }, + "record": { + "A": ["185.176.43.100"] + } +} diff --git a/domains/alokik.json b/domains/alokik.json index caef09cb4..e0ad97655 100644 --- a/domains/alokik.json +++ b/domains/alokik.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "OpAayush", - "email": "aayushmagrawal@gmail.com" - }, - "record": { - "CNAME": "alokik-here.github.io" - } - } + "owner": { + "username": "OpAayush", + "email": "aayushmagrawal@gmail.com" + }, + "record": { + "CNAME": "alokik-here.github.io" + } +} diff --git a/domains/aloo-bun.json b/domains/aloo-bun.json new file mode 100644 index 000000000..bedc9b1c7 --- /dev/null +++ b/domains/aloo-bun.json @@ -0,0 +1,11 @@ +{ + "description": "Aloo Bun Website", + "repo": "https://github.com/AshC1ty/ashc1ty.github.io", + "owner": { + "username": "AshC1ty", + "email": "ashcity07734@gmail.com" + }, + "record": { + "CNAME": "ashc1ty.github.io" + } +} diff --git a/domains/alora.json b/domains/alora.json new file mode 100644 index 000000000..6ec045543 --- /dev/null +++ b/domains/alora.json @@ -0,0 +1,24 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com", + "discord": "7q8x" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx.zoho.in", + "mx2.zoho.in", + "mx3.zoho.in" + ], + "TXT": [ + "v=spf1 include:zohomail.in ~all", + "google-site-verification=6uglJKM9-BmooIZLCRAqgnGaT2_M48hkicRD1bphXHk" + ] + } +} diff --git a/domains/alperen.json b/domains/alperen.json index 0d11c2ee1..a758fe960 100644 --- a/domains/alperen.json +++ b/domains/alperen.json @@ -3,7 +3,7 @@ "repo": "https://github.com/alperenasln/alperenasln.github.io", "owner": { "username": "alperenasln", - "email": "alperenaslan55@gmail.com" + "email": "alperenaslan55@gmail.com" }, "record": { "CNAME": "alperenasln.github.io" diff --git a/domains/alpha.json b/domains/alpha.json new file mode 100644 index 000000000..bda1d70b5 --- /dev/null +++ b/domains/alpha.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "URL": "https://yfadev.pw", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/alphabet.json b/domains/alphabet.json new file mode 100644 index 000000000..9aec9312a --- /dev/null +++ b/domains/alphabet.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Commandify", + "email": "commandify@gmail.com" + }, + + "record": { + "A": ["68.183.191.223"] + } +} diff --git a/domains/alphatechnolog.json b/domains/alphatechnolog.json new file mode 100644 index 000000000..e27b6aad0 --- /dev/null +++ b/domains/alphatechnolog.json @@ -0,0 +1,11 @@ +{ + "description": "Personal page", + "repo": "https://github.com/alphatechnolog/alphatechnolog.github.io", + "owner": { + "username": "AlphaTechnolog", + "email": "gfranklings@gmail.com" + }, + "record": { + "CNAME": "alphatechnolog.github.io" + } +} diff --git a/domains/altude.json b/domains/altude.json index df417acc7..08e335d1d 100644 --- a/domains/altude.json +++ b/domains/altude.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "altude", - "email": "altude@skiff.com" - }, - "record": { - "CNAME": "altude.pages.dev" - } - } - +{ + "owner": { + "username": "altude", + "email": "altude@skiff.com" + }, + "record": { + "CNAME": "altude.pages.dev" + } +} diff --git a/domains/aluwi.json b/domains/aluwi.json index 27d338445..d4fed6030 100644 --- a/domains/aluwi.json +++ b/domains/aluwi.json @@ -1,12 +1,12 @@ { - "description": "my portfolio", - "repo": "https://github.com/Aluwi21/Aluwi21.github.io", - "owner": { - "username": "Aluwi21", - "email": "21fayyadh@gmail.com", - "twitter": "Aluwi_" - }, - "record": { - "CNAME": "aluwi21.github.io" - } -} + "description": "my portfolio", + "repo": "https://github.com/Aluwi21/Aluwi21.github.io", + "owner": { + "username": "Aluwi21", + "email": "21fayyadh@gmail.com", + "twitter": "Aluwi_" + }, + "record": { + "CNAME": "aluwi21.github.io" + } +} diff --git a/domains/alvin.json b/domains/alvin.json new file mode 100644 index 000000000..7e13bcbcf --- /dev/null +++ b/domains/alvin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alvinsjoy", + "email": "", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/alvito.json b/domains/alvito.json new file mode 100644 index 000000000..94321c71b --- /dev/null +++ b/domains/alvito.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website", + "repo": "https://github.com/alvitodev/alvitodev.github.io", + "owner": { + "username": "alvitodev", + "email": "alvitodev@protonmail.com" + }, + "record": { + "CNAME": "alvitodev.github.io" + } +} diff --git a/domains/am.json b/domains/am.json index 464a354f4..78c20c100 100644 --- a/domains/am.json +++ b/domains/am.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sa-mustafa", - "email": "s.a.mustafa@yandex.com" - }, - "record": { - "CNAME": "dev.imagesmith.io" - } + "owner": { + "username": "sa-mustafa", + "email": "s.a.mustafa@yandex.com" + }, + "record": { + "CNAME": "dev.imagesmith.io" + } } diff --git a/domains/amaankazi.json b/domains/amaankazi.json new file mode 100644 index 000000000..dd2ac3a60 --- /dev/null +++ b/domains/amaankazi.json @@ -0,0 +1,11 @@ +{ + "description": "Amaan Kazi's website containing portfolio, projects, games and more", + "repo": "https://github.com/Amaan-Kazi/website-amaan-kazi", + "owner": { + "username": "Amaan-Kazi", + "email": "amaankazi1793@gmail.com" + }, + "record": { + "CNAME": "amaankazi.pages.dev" + } +} diff --git a/domains/amanthakur.json b/domains/amanthakur.json new file mode 100644 index 000000000..663e3228c --- /dev/null +++ b/domains/amanthakur.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aman7thakurr", + "email": "amant8425@gmail.com", + "discord": "523813766295715851" + }, + + "record": { + "CNAME": "aman7thakurr.github.io" + } +} diff --git a/domains/ambaskaryash.json b/domains/ambaskaryash.json index 2840f433d..366a77e7b 100644 --- a/domains/ambaskaryash.json +++ b/domains/ambaskaryash.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ambaskaryash", - "email": "kimetsu119@gmail.com" - }, - "record": { - "CNAME": "ambaskaryash.github.io" - } + "owner": { + "username": "ambaskaryash", + "email": "kimetsu119@gmail.com" + }, + "record": { + "CNAME": "ambaskaryash.github.io" + } } diff --git a/domains/amerigo.json b/domains/amerigo.json new file mode 100644 index 000000000..090913f5b --- /dev/null +++ b/domains/amerigo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "north-site", + "email": "v.imreadrian@gmail.com" + }, + "record": { + "CNAME": "5c13057597f8.sn.mynetname.net" + } +} diff --git a/domains/amey.json b/domains/amey.json new file mode 100644 index 000000000..1ee19d2cd --- /dev/null +++ b/domains/amey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "panditamey", + "email": "codewithamey@gmail.com" + }, + "record": { + "CNAME": "panditamey.github.io" + } +} diff --git a/domains/amila.json b/domains/amila.json new file mode 100644 index 000000000..15a86c618 --- /dev/null +++ b/domains/amila.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Y-AmilaNirmal", + "email": "yamilanirmal@gmail.com" + }, + + "record": { + "CNAME": "y-amilanirmal.github.io" + } +} diff --git a/domains/amine.json b/domains/amine.json deleted file mode 100644 index d3a4aa723..000000000 --- a/domains/amine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal portfolio", - "repo": "https://github.com/AM-77/am-77.github.io", - "owner": { - "username": "am-77", - "email": "amine.griche77@protonmail.ch" - }, - "record": { - "CNAME": "am-77.github.io" - } -} diff --git a/domains/amiralam.json b/domains/amiralam.json new file mode 100644 index 000000000..1f38ec173 --- /dev/null +++ b/domains/amiralam.json @@ -0,0 +1,12 @@ +{ + "description": "This is my personal portfolio", + "repo": "https://github.com/amiralamf4/amiralamf4.github.io", + "owner": { + "username": "amiralamf4", + "email": "sameer72135@gmail.com", + "twitter": "AmirAlam72135" + }, + "record": { + "CNAME": "amiralamf4.github.io" + } +} diff --git a/domains/amirhossein-esanezhad.json b/domains/amirhossein-esanezhad.json new file mode 100644 index 000000000..868b32dab --- /dev/null +++ b/domains/amirhossein-esanezhad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "esa-zz", + "email": "amirhossein6055@gmail.com" + }, + "record": { + "A": ["51.38.127.41"] + } +} diff --git a/domains/amity.json b/domains/amity.json new file mode 100644 index 000000000..8e38034fe --- /dev/null +++ b/domains/amity.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "winrg", + "email": "alyx@aleteoryx.me" + }, + "record": { + "URL": "https://aleteoryx.me" + } +} diff --git a/domains/ammthecoder.json b/domains/ammthecoder.json new file mode 100644 index 000000000..f9166f589 --- /dev/null +++ b/domains/ammthecoder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aung-myat-min", + "email": "koaungmyatmin0@gmail.com" + }, + "record": { + "URL": "https://ammthercoder.vercel.app/" + } +} diff --git a/domains/amol254542.json b/domains/amol254542.json new file mode 100644 index 000000000..26257a95b --- /dev/null +++ b/domains/amol254542.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amol234545", + "email": "amolmilton@gmail.com" + }, + "record": { + "CNAME": "amol234545.github.io" + } +} diff --git a/domains/amol3.json b/domains/amol3.json new file mode 100644 index 000000000..26257a95b --- /dev/null +++ b/domains/amol3.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amol234545", + "email": "amolmilton@gmail.com" + }, + "record": { + "CNAME": "amol234545.github.io" + } +} diff --git a/domains/amoramicae.json b/domains/amoramicae.json new file mode 100644 index 000000000..a12f139b4 --- /dev/null +++ b/domains/amoramicae.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "amoramicae", + "email": "amoramicae@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/amr.elrefaie.json b/domains/amr.elrefaie.json deleted file mode 100644 index 48f116646..000000000 --- a/domains/amr.elrefaie.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "amour86", - "email": "amour86@gmail.com" - }, - - "record": { - "A": ["35.154.162.29"] - } - } - diff --git a/domains/amy.json b/domains/amy.json index 8d5d0b02e..0ec869526 100644 --- a/domains/amy.json +++ b/domains/amy.json @@ -3,7 +3,7 @@ "repo": "https://github.com/nullishamy/nullishamy.github.io", "owner": { "username": "nullishamy", - "email": "amycodes@null.net" + "email": "contact@amyerskine.me" }, "record": { "CNAME": "nullishamy.github.io" diff --git a/domains/analogsombra.json b/domains/analogsombra.json index d16e9d029..053b4d1e1 100644 --- a/domains/analogsombra.json +++ b/domains/analogsombra.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "analog-sombra", - "email": "analogsombra@gmail.com" - }, - "record": { - "CNAME": "analog-sombra.github.io" - } - } - +{ + "owner": { + "username": "analog-sombra", + "email": "analogsombra@gmail.com" + }, + "record": { + "CNAME": "analog-sombra.github.io" + } +} diff --git a/domains/anamay.json b/domains/anamay.json index 95bc7390a..1fb8f1101 100644 --- a/domains/anamay.json +++ b/domains/anamay.json @@ -1,11 +1,11 @@ { - "description": "Anamay's .is-a.dev domain", - "repo": "https://github.com/anamaykashiv/anamaykashiv.github.io", - "owner": { - "username": "anamaykashiv", - "email": "kashiv.anamay002@gmail.com" - }, - "record": { - "CNAME": "anamaykashiv.github.io" - } + "description": "Anamay's .is-a.dev domain", + "repo": "https://github.com/anamaykashiv/anamaykashiv.github.io", + "owner": { + "username": "anamaykashiv", + "email": "kashiv.anamay002@gmail.com" + }, + "record": { + "CNAME": "anamaykashiv.github.io" } +} diff --git a/domains/anamolsapkota.json b/domains/anamolsapkota.json deleted file mode 100644 index 928ca8186..000000000 --- a/domains/anamolsapkota.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A personal portfolio site for all my projects and commissions.", - "repo": "https://github.com/anamolsapkota/sapkotaanamol.com.np", - "owner": { - "username": "anamolsapkota", - "email": "info@sapkotaanamol.com.np" - }, - "record": { - "URL": "https://sapkotaanamol.com.np" - } -} diff --git a/domains/anand-ramakrishna.json b/domains/anand-ramakrishna.json new file mode 100644 index 000000000..2df09e848 --- /dev/null +++ b/domains/anand-ramakrishna.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/theanandramakrishna/theanandramakrishna.github.io", + "owner": { + "username": "theanandramakrishna", + "email": "theanandramakrishna@gmail.com" + }, + "record": { + "CNAME": "theanandramakrishna.github.io" + } +} diff --git a/domains/ananth.json b/domains/ananth.json new file mode 100644 index 000000000..a95fca724 --- /dev/null +++ b/domains/ananth.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio website", + "repo": "https://github.com/ANANTH-SWAMY/ananth-swamy.github.io", + "owner": { + "username": "ANANTH-SWAMY", + "email": "ananth.nps@gmail.com" + }, + "record": { + "CNAME": "ananth-swamy.github.io" + } +} diff --git a/domains/anay-208.json b/domains/anay-208.json new file mode 100644 index 000000000..068044936 --- /dev/null +++ b/domains/anay-208.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "anay-208", + "email": "admin@anayparaswani.me" + }, + + "record": { + "URL": "https://anayparaswani.me/" + } +} diff --git a/domains/anay.json b/domains/anay.json new file mode 100644 index 000000000..068044936 --- /dev/null +++ b/domains/anay.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "anay-208", + "email": "admin@anayparaswani.me" + }, + + "record": { + "URL": "https://anayparaswani.me/" + } +} diff --git a/domains/anayparaswani.json b/domains/anayparaswani.json new file mode 100644 index 000000000..068044936 --- /dev/null +++ b/domains/anayparaswani.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "anay-208", + "email": "admin@anayparaswani.me" + }, + + "record": { + "URL": "https://anayparaswani.me/" + } +} diff --git a/domains/anbuinfosec.json b/domains/anbuinfosec.json new file mode 100644 index 000000000..40e40a408 --- /dev/null +++ b/domains/anbuinfosec.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio for anbuinfosec..", + "repo": "https://github.com/anbuinfosec/anbuinfosec.github.io", + "owner": { + "username": "anbuinfosec", + "email": "anbuinfosec@gmail.com", + "twitter": "" + }, + "record": { + "CNAME": "anbuinfosec.github.io" + } +} diff --git a/domains/anderson.json b/domains/anderson.json deleted file mode 100644 index 97f70b62a..000000000 --- a/domains/anderson.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A personal portfolio site for show my projects, my social networks, my knowledges...", - "repo": "https://github.com/AndersonPGS/me", - "owner": { - "username": "andersonpgs", - "email": "andersonpgs2001@hotmail.com" - }, - "record": { - "URL": "https://andersonpgs.github.io/me" - } -} diff --git a/domains/andgyk.json b/domains/andgyk.json index 8eb363e5e..7263195f7 100644 --- a/domains/andgyk.json +++ b/domains/andgyk.json @@ -1,11 +1,11 @@ { - "description": "andgyk website", - "repo": "https://github.com/andgyk/andgyk.github.io", - "owner": { - "username": "andgyk", - "email": "an4g7k@gmail.com" - }, - "record": { - "CNAME": "andgyk.github.io" - } + "description": "andgyk website", + "repo": "https://github.com/andgyk/andgyk.github.io", + "owner": { + "username": "andgyk", + "email": "an4g7k@gmail.com" + }, + "record": { + "CNAME": "andgyk.github.io" + } } diff --git a/domains/andrei.json b/domains/andrei.json new file mode 100644 index 000000000..aa80043ae --- /dev/null +++ b/domains/andrei.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CalegariAndrei", + "email": "ekingproject@gmail.com", + "discord": "419584364410699786" + }, + + "record": { + "CNAME": "calegariandrei.github.io" + } +} diff --git a/domains/andreijiroh.json b/domains/andreijiroh.json new file mode 100644 index 000000000..227043a5f --- /dev/null +++ b/domains/andreijiroh.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ajhalili2006", + "email": "", + "discord": "437044173825114113", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYflKk2IBSfS6chUMYUGHREeeZVR18nZA-TlYCa5lgQGaR1P6lixNKJAJcJv72mUkHus2VyrrxSkl5ttCTtBXFdFs8eA4jNFPjtvC_7Qt-i_v0UWs5rxtdZ2y3MsN6jzPeVzHcVq2gQG9RFdIniBHMKuEOfiPCPqXp_CbdjBddCRQRsIzunnAwof917053o4EV3JCMVN9ObW3Jdq9GD9QaB_vPG9HjFqzwlvSA6QFbQYYilvij7UF5I3pcLfNyOw3tascM6GMDlXJxtqL2r6HLo58MSagDKycFCuuxdfsRljnLypuwF0m_3bEV76QRpvMWY_NmW6FaveHLjzd82l0g.ABEBdXC3pvmyqoKfDAw86A.NNKf3gP3_-fzpnvGWIBJaSzsU-d1ZJsDFJSyc52B6pjz1LrYOeK_0-QjF8w1Y1xiaRz475Drvb-27xOCjANJjZlgtCVrG1mgVxWDanb30kmyV8KtNLnlGO3VKMWXqy7r.K9X3W6jos3JsIFCn6LGifA" + }, + + "record": { + "CNAME": "ajhalili2006.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/andremor.json b/domains/andremor.json deleted file mode 100644 index 3bf00c31f..000000000 --- a/domains/andremor.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "AndreMor8", - "email": "me@andremor.dev" - }, - "record": { - "URL": "https://andremor.dev" - } - } - \ No newline at end of file diff --git a/domains/andres.json b/domains/andres.json new file mode 100644 index 000000000..b72e4c382 --- /dev/null +++ b/domains/andres.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eneru2", + "email": "elementaov@gmail.com" + }, + "record": { + "A": ["130.61.184.180"] + } +} diff --git a/domains/andrew.json b/domains/andrew.json deleted file mode 100644 index 861440a57..000000000 --- a/domains/andrew.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Andrew Nguyen's portfolio", - "repo": "https://github.com/andrewnt219/andrewnt219.github.io", - "owner": { - "username": "andrewnt219", - "email": "hey@andrewnt.dev" - }, - "record": { - "CNAME": "andrewnt219.github.io" - } -} diff --git a/domains/andrewdxz.json b/domains/andrewdxz.json new file mode 100644 index 000000000..d6af4ad2f --- /dev/null +++ b/domains/andrewdxz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "alainsdev", + "email": "ghghello30@gmail.com", + "discord": "970325505989574656" + }, + + "record": { + "CNAME": "andrewmack1.github.io" + } +} diff --git a/domains/andrewstech.json b/domains/andrewstech.json deleted file mode 100644 index 70591df6b..000000000 --- a/domains/andrewstech.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Portfolio", - "repo": "https://github.com/andrewstech/andrewstech", - "owner": { - "username": "andrewstech", - "email": "hello@andrewstech.me", - "twitter": "andrewstech1" - }, - "record": { - "CNAME": "andrewstech.github.io" - } -} diff --git a/domains/andriy.json b/domains/andriy.json deleted file mode 100644 index 32c8605f8..000000000 --- a/domains/andriy.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "andriyandriyan", - "email": "andriy.andriyan1@gmail.com" - }, - "record": { - "CNAME": "andriy.pages.dev" - } - } - diff --git a/domains/andronasef.json b/domains/andronasef.json index 5c039220e..25145d5e1 100644 --- a/domains/andronasef.json +++ b/domains/andronasef.json @@ -1,12 +1,12 @@ { - "description": "My Portfolio", - "repo": "https://github.com/andronasef/andronasef.github.io", - "owner": { - "username": "andronasef", - "email": "andronasef@gmail.com", - "twitter": "andronasef" - }, - "record": { - "CNAME": "andronasef.github.io" - } -} + "description": "My Portfolio", + "repo": "https://github.com/andronasef/andronasef.github.io", + "owner": { + "username": "andronasef", + "email": "andronasef@gmail.com", + "twitter": "andronasef" + }, + "record": { + "CNAME": "andronasef.github.io" + } +} diff --git a/domains/andros.json b/domains/andros.json index 0fdf8386b..8bcb4a969 100644 --- a/domains/andros.json +++ b/domains/andros.json @@ -2,7 +2,7 @@ "description": "Andros's personal developer website", "repo": "https://github.com/tanrax", "owner": { - "username": "Andros Fenollosa Hurtado", + "username": "tanrax", "email": "", "twitter": "androsfenollosa" }, diff --git a/domains/angel.json b/domains/angel.json new file mode 100644 index 000000000..2b8a5383d --- /dev/null +++ b/domains/angel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chewieleaf", + "email": "cchirrpy@outlook.com" + }, + "record": { + "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512" + } +} diff --git a/domains/angellopomayay.json b/domains/angellopomayay.json new file mode 100644 index 000000000..8466fe646 --- /dev/null +++ b/domains/angellopomayay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Angello-Pomayay", + "email": "angelopomayay@gmail.com" + }, + "record": { + "CNAME": "angello-pomayay.github.io" + } +} diff --git a/domains/anger.json b/domains/anger.json index 2f5e54211..b7507087d 100644 --- a/domains/anger.json +++ b/domains/anger.json @@ -1,13 +1,12 @@ { - "description": "Will be used to show my page showing stuff about me", - "repo": "https://github.com/angerminecraftyt/aboutme", - "owner": { - "username": "AngerminecraftYT", - "email": "", - "discord": "AngerMinecraftYT#3051" - }, - "record": { - "CNAME": "angerminecraftyt.github.io" - } -} - + "description": "Will be used to show my page showing stuff about me", + "repo": "https://github.com/angerminecraftyt/aboutme", + "owner": { + "username": "AngerminecraftYT", + "email": "", + "discord": "AngerMinecraftYT#3051" + }, + "record": { + "CNAME": "angerminecraftyt.github.io" + } +} diff --git a/domains/anhnguyen.json b/domains/anhnguyen.json new file mode 100644 index 000000000..76157f50a --- /dev/null +++ b/domains/anhnguyen.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "NgTuanAnhDev", + "email": "", + "discord": "828117990746226730", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.dxFeMXIpetS-y-w2HhyPm3jT9qQD7VXlzrjuKr0X2tYaDAsa5e-ZLfdoQ0Vi6ij2hVaULCTbvnhDGodA8Vfo2Bav69FAanB0eQp_-9e8C2O8XTm7Hc1PfQG0-QdASqYXzQLxa2K8Zsyi7i_MnjW9QcXB6OopVDPzuQkIFCD0ZBIMpxfSMYoZIJwWMIODl7qkdlrwOJaHev94VAEU8wjl9jdTJ7qUqwG_K8r2FXnRU4nvA8UUGbqoiTwqXgNWdln4S_dT6gRG1oINXS8MU55sRP_nrUsNYm5QRWiqFsKe9Ti8z00YhSJ3bvZLl353penT2lQfSdj2zEqBVNdp_J4s9Q._wjr6pPUcgjV8Pcqmb5jZw.qP7dPu7h2ZYoxAL8EzCmNuh_96Ak46xR4iMj14zoxcBMRnIKqxWQzPMp31OhvCP-a4j-_Ch3Xx4Qyl0AFKHF1b_itAmAo29o5QuG9Z3meYcHkwIxE7rrHLhnT6YaGXL_.2L3kt8GB7vNmXFwn5NauTA" + }, + "record": { + "A": ["103.97.126.29"], + "TXT": [ + "zoho-verification=zb23469214.zmverify.zoho.com", + "v=spf1 include:zohomail.com ~all" + ], + "MX": [ + "mx.zoho.com", + "mx2.zoho.com", + "mx3.zoho.com" + ] + } +} diff --git a/domains/aniket-thapa.json b/domains/aniket-thapa.json new file mode 100644 index 000000000..fdfac3873 --- /dev/null +++ b/domains/aniket-thapa.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "aniket-thapa", + "email": "aniketthapa04@gmail.com", + "discord": "1249367001961463962" + }, + + "record": { + "CNAME": "aniket-thapa.github.io" + } + } + diff --git a/domains/aniketrajsingh.json b/domains/aniketrajsingh.json new file mode 100644 index 000000000..063829a74 --- /dev/null +++ b/domains/aniketrajsingh.json @@ -0,0 +1,12 @@ +{ + "description": "The Domain is going to be used for my Portfolio", + "repo": "https://github.com/aniketrajsingh/aniketrajsingh.github.io", + "owner": { + "username": "aniketrajsingh", + "email": "aniket@tfug-ghaziabad.tech", + "twitter": "aniketrajsingh_" + }, + "record": { + "CNAME": "aniketrajsingh.github.io" + } +} diff --git a/domains/anil.json b/domains/anil.json deleted file mode 100644 index fb149d396..000000000 --- a/domains/anil.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "AnilSeervi", - "email": "", - "twitter": "linASeervi" - }, - "record": { - "CNAME": "hashnode.network" - } -} diff --git a/domains/anime-oni.json b/domains/anime-oni.json new file mode 100644 index 000000000..9aaf7280e --- /dev/null +++ b/domains/anime-oni.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "anime-oni", + "email": "hiba.aashir@gmail.com", + "discord": "1014232959143907429" + }, + + "record": { + "CNAME": "anime-oni.github.io" + } + } + \ No newline at end of file diff --git a/domains/anime.json b/domains/anime.json new file mode 100644 index 000000000..e2c8dec17 --- /dev/null +++ b/domains/anime.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/animesh.json b/domains/animesh.json new file mode 100644 index 000000000..fb1bad073 --- /dev/null +++ b/domains/animesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "animeshryu", + "email": "animeshryu@gmail.com" + }, + "record": { + "CNAME": "animesh.pages.dev" + } +} diff --git a/domains/anindra.json b/domains/anindra.json new file mode 100644 index 000000000..b3402c5b3 --- /dev/null +++ b/domains/anindra.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/meanindra/meanindra.github.io", + "owner": { + "username": "meanindra", + "email": "anindrakarmakar+pnswp5ix@proton.me", + "twitter": "i_anindra" + }, + "record": { + "CNAME": "meanindra.github.io" + } +} diff --git a/domains/aniruddh.json b/domains/aniruddh.json deleted file mode 100644 index f6ee3c923..000000000 --- a/domains/aniruddh.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "aniruddhnishad", - "email": "mr.aniruddhnishad@gmail.com" - }, - "record": { - "A": [ - "23.94.14.190", - "193.36.237.98" - ] - } -} diff --git a/domains/anishshobithps.json b/domains/anishshobithps.json deleted file mode 100644 index 31b87838a..000000000 --- a/domains/anishshobithps.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Personal Website of Anish Shobith P S", - "repo": "https://github.com/Anish-Shobith/anish-shobith.github.io", - "owner": { - "username": "Anish-Shobith", - "email": "anish.shobith19@gmail.com", - "twitter": "Anish_Shobith", - "discord": "Anish Shobith#4542" - }, - "record": { - "CNAME": "anish-shobith.github.io" - } -} diff --git a/domains/aniwon.json b/domains/aniwon.json new file mode 100644 index 000000000..20069aec0 --- /dev/null +++ b/domains/aniwon.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Panwar0", + "email": "panwarnishchey+02@gmail.com", + "discord": "821976026984611850" + }, + + "record": { + "A": ["185.191.231.137"] + } +} diff --git a/domains/ankit.json b/domains/ankit.json index 4a6c6fe38..d251fed82 100644 --- a/domains/ankit.json +++ b/domains/ankit.json @@ -2,10 +2,10 @@ "description": "Will be using this subdomain for personal portfolio", "repo": "https://github.com/ankitjain-1/ankitjain-1.github.io", "owner": { - "username": "ankitjain-1", - "email": "akjain6067.aj@gmail.com" + "username": "ankitjain-1", + "email": "akjain6067.aj@gmail.com" }, "record": { - "CNAME": "ankitjain-1.github.io" + "CNAME": "ankitjain-1.github.io" } -} \ No newline at end of file +} diff --git a/domains/anlshn.json b/domains/anlshn.json deleted file mode 100644 index 4c05ebb32..000000000 --- a/domains/anlshn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Anil's personal developer website", - "repo": "https://github.com/anilsahindev", - "owner": { - "username": "anilsahindev", - "email": "anilsahindev@gmail.com" - }, - "record": { - "CNAME": "anlshn.com" - } -} diff --git a/domains/anmail.json b/domains/anmail.json new file mode 100644 index 000000000..93d819357 --- /dev/null +++ b/domains/anmail.json @@ -0,0 +1,13 @@ +{ + "description": "Subdomain my own website and email forwarding", + "repo": "https://github.com/ririko5834/register", + "owner": { + "username": "ririko5834", + "email": "wolfo89+anmail@protonmail.com" + }, + "record": { + "A": ["167.235.217.200"], + "MX": ["5d84c429388a8a21.mx2.emailprofi.seznam.cz", "5d84c429388a8a21.mx1.emailprofi.seznam.cz"], + "TXT": ["v=spf1 include:spf.seznam.cz ~all"] + } +} \ No newline at end of file diff --git a/domains/ann.json b/domains/ann.json new file mode 100644 index 000000000..c89a3086d --- /dev/null +++ b/domains/ann.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website to host bio info and other things", + "repo": "https://github.com/true1ann/true1ann.github.io", + "owner": { + "username": "true1ann", + "email": "true1ann@tutamail.com" + }, + "record": { + "CNAME": "true1ann.github.io" + } +} diff --git a/domains/anna.json b/domains/anna.json new file mode 100644 index 000000000..8222c902f --- /dev/null +++ b/domains/anna.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "annanas271", + "email": "iamrvins@gmail.com", + "discord": "1206164385911799850" + }, + + "record": { + "CNAME": "annanas271.github.io" + } +} diff --git a/domains/anon.json b/domains/anon.json index 44ebccde8..9a4eb40da 100644 --- a/domains/anon.json +++ b/domains/anon.json @@ -6,6 +6,11 @@ "email": "contact@anonym-dev.tk" }, "record": { - "CNAME": "anondev.up.railway.app" + "A": ["216.24.57.1"], + "MX": [ + "4e7b2afdee66dc77.mx1.emailprofi.seznam.cz", + "4e7b2afdee66dc77.mx2.emailprofi.seznam.cz" + ], + "TXT": "v=spf1 include:spf.seznam.cz ~all" } } diff --git a/domains/anonfr.json b/domains/anonfr.json new file mode 100644 index 000000000..4cc83aa68 --- /dev/null +++ b/domains/anonfr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anonfr", + "email": "anonfrr@protonmail.com" + }, + "record": { + "CNAME": "anonfr.github.io" + } +} diff --git a/domains/anoop.json b/domains/anoop.json deleted file mode 100644 index 900f947df..000000000 --- a/domains/anoop.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Anoop's blog", - "repo": "https://github.com/anoopmsivadas/portfolio", - "owner": { - "username": "anoopmsivadas", - "email": "anoopms@disroot.org" - }, - "record": { - "CNAME": "anoop.up.railway.app" - } -} diff --git a/domains/ansari-atharnadim.json b/domains/ansari-atharnadim.json new file mode 100644 index 000000000..a133e0ccf --- /dev/null +++ b/domains/ansari-atharnadim.json @@ -0,0 +1,11 @@ +{ + "description": "This is my website", + "repo": "https://github.com/ansari-atharnadim/ansari-atharnadim.github.io", + "owner": { + "username": "ansari-atharnadim", + "email": "" + }, + "record": { + "CNAME": "ansari-atharnadim.github.io" + } +} diff --git a/domains/ansari-saify.json b/domains/ansari-saify.json index 70349f7fd..7fb82d4ff 100644 --- a/domains/ansari-saify.json +++ b/domains/ansari-saify.json @@ -9,4 +9,3 @@ "CNAME": "ansari-saify.github.io" } } - diff --git a/domains/ansh.json b/domains/ansh.json deleted file mode 100644 index 38f873b28..000000000 --- a/domains/ansh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ansh's personal website", - "repo": "https://github.com/anshtyagi0", - "owner": { - "username": "anshtyagi0", - "email": "tyagiansh175@gmail.com" - }, - "record": { - "CNAME": "anshtyagi.me" - } -} diff --git a/domains/anshdadwal.json b/domains/anshdadwal.json new file mode 100644 index 000000000..fb6ea974c --- /dev/null +++ b/domains/anshdadwal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "T-Dynamos", + "email": "anshdadwal298@gmail.com" + }, + "record": { + "CNAME": "t-dynamos.github.io" + } +} diff --git a/domains/anshtyagi.json b/domains/anshtyagi.json new file mode 100644 index 000000000..d67363e53 --- /dev/null +++ b/domains/anshtyagi.json @@ -0,0 +1,11 @@ +{ + "description": "Ansh's personal website", + "repo": "https://github.com/anshtyagi0", + "owner": { + "username": "anshtyagi0", + "email": "tyagiansh175@gmail.com" + }, + "record": { + "CNAME": "anshtyagi0093.github.io" + } +} diff --git a/domains/anticens.json b/domains/anticens.json new file mode 100644 index 000000000..8b530db41 --- /dev/null +++ b/domains/anticens.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "IfVar", + "email": "LZT7@proton.me" + }, + "record": { + "CNAME": "anticens.github.io" + } +} diff --git a/domains/antimanipulationbridgade.json b/domains/antimanipulationbridgade.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/antimanipulationbridgade.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/antlis.json b/domains/antlis.json new file mode 100644 index 000000000..1cc8af6a4 --- /dev/null +++ b/domains/antlis.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "repo": "https://github.com/antlis/antlis.github.io", + "owner": { + "username": "antlis", + "email": "crabs@cock.li" + }, + "record": { + "CNAME": "antlis.github.io" + } +} diff --git a/domains/antogamer.json b/domains/antogamer.json index 273726cc2..0cc101220 100644 --- a/domains/antogamer.json +++ b/domains/antogamer.json @@ -1,9 +1,11 @@ { - "owner": { - "username": "AntogamerYT", - "email": "antonio.antogamer@gmail.com" - }, - "record": { - "A": ["141.148.238.95"] - } + "owner": { + "username": "AntogamerYT", + "email": "antonio.antogamer@gmail.com", + "discord": "thisisanto", + "twitter": "ThisIsAnto_" + }, + "record": { + "A": ["141.144.196.233"] + } } diff --git a/domains/anton.json b/domains/anton.json new file mode 100644 index 000000000..e61a5235a --- /dev/null +++ b/domains/anton.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rorosin", + "email": "rosin886@gmail.com" + }, + "record": { + "CNAME": "ru.ardev.tk" + } +} diff --git a/domains/antton.json b/domains/antton.json index 132df5101..c054120bd 100644 --- a/domains/antton.json +++ b/domains/antton.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "antton-dev", - "email": "antton.chevrier@etik.com" - }, - "record": { - "CNAME": "antton-dev.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "antton-dev", + "email": "antton.chevrier@etik.com" + }, + "record": { + "CNAME": "antton-dev.github.io" + } +} diff --git a/domains/anubhav-pathak.json b/domains/anubhav-pathak.json new file mode 100644 index 000000000..8c81e3e8b --- /dev/null +++ b/domains/anubhav-pathak.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation for is-a-dev", + "repo": "https://github.com/Anubhav-Pathak/Anubhav-Pathak.github.io", + "owner": { + "username": "Anubhav-Pathak", + "email": "anubhavpathak99@gmail.com" + }, + "record": { + "CNAME": "anubhav-pathak.github.io" + } + } diff --git a/domains/anuj.json b/domains/anuj.json index 1a2878887..895e640b6 100644 --- a/domains/anuj.json +++ b/domains/anuj.json @@ -1,4 +1,3 @@ - { "description": "Anuj' Welcome to my portfolio", "repo": "https://anujmutha.github.io/Portfolio", diff --git a/domains/anukarop.json b/domains/anukarop.json new file mode 100644 index 000000000..6bdf8a297 --- /dev/null +++ b/domains/anukarop.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AnukarOP", + "email": "anukarmishra2707@gmail.com", + "discord": "AnukarOP" + }, + "record": { + "CNAME": "AnukarOP.github.io" + } +} diff --git a/domains/anumeya.json b/domains/anumeya.json new file mode 100644 index 000000000..ca7be3aef --- /dev/null +++ b/domains/anumeya.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "KreativeThinker", + "email": "sagely2005eagle@gmail.com" + }, + + "record": { + "CNAME": "kreativethinker.github.io" + } +} diff --git a/domains/anupam.json b/domains/anupam.json deleted file mode 100644 index 7b91b39e8..000000000 --- a/domains/anupam.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Anupam's portfolio website", - "repo": "https://github.com/anupamroy8/portfolio", - "owner": { - "username": "anupamroy8", - "email": "anupamroy8@gmail.com" - }, - "record": { - "CNAME": "anupamroy8.github.io" - } -} diff --git a/domains/anurag.json b/domains/anurag.json new file mode 100644 index 000000000..90a981b07 --- /dev/null +++ b/domains/anurag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "anuragjawalkar", + "email": "anurag24jawalkar@gmail.com" + }, + "record": { + "CNAME": "anuragjawalkar.github.io" + } +} diff --git a/domains/anwar.json b/domains/anwar.json deleted file mode 100644 index 1a9789f52..000000000 --- a/domains/anwar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Anwar's personal website", - "repo": "https://github.com/getanwar", - "owner": { - "username": "getanwar", - "email": "say@anwar.im" - }, - "record": { - "URL": "https://anwar.im" - } -} diff --git a/domains/any.json b/domains/any.json new file mode 100644 index 000000000..de7da893f --- /dev/null +++ b/domains/any.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "IRDMctorl", + "email": "fun64646969@gmail.com" + }, + "record": { + "CNAME": "any-w1a3.onrender.com" + } +} diff --git a/domains/aoba.json b/domains/aoba.json deleted file mode 100644 index 76782c803..000000000 --- a/domains/aoba.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "A cool looking link for my Discord server! (and maybe sort of other stuff in future... If I can think of one...)", - "repo": "https://github.com/Hazuki-san", - "owner": { - "username": "Hazuki-san", - "email": "aoba@outlook.co.th", - "twitter": "AocchiAoba" - }, - "record": { - "URL": "https://discord.gg/nKbATcMqSp" - } -} diff --git a/domains/ap2.json b/domains/ap2.json new file mode 100644 index 000000000..4f1926b86 --- /dev/null +++ b/domains/ap2.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "code-hunt-in", + "email": "aishwary.pandore@somaiya.edu" + }, + "record": { + "CNAME": "code-hunt-in.github.io" + } +} diff --git a/domains/apam.json b/domains/apam.json new file mode 100644 index 000000000..ace8aeeb8 --- /dev/null +++ b/domains/apam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamxani", + "email": "xenpei11@gmail.com" + }, + "record": { + "CNAME": "iamxani.github.io" + } +} diff --git a/domains/apep.json b/domains/apep.json new file mode 100644 index 000000000..c326356b7 --- /dev/null +++ b/domains/apep.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ArasakaID", + "email": "afifeka20@gmail.com", + "discord": "331616752767205378" + }, + + "record": { + "A": ["8.222.249.188"] + } +} diff --git a/domains/apgyorfi.json b/domains/apgyorfi.json new file mode 100644 index 000000000..ded124ff7 --- /dev/null +++ b/domains/apgyorfi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "apgyorfi", + "email": "apgyorfi@protonmail.com" + }, + "record": { + "CNAME": "gfsys.hu" + } +} diff --git a/domains/api-kirito.json b/domains/api-kirito.json index 3bb88291c..f5bafe9cb 100644 --- a/domains/api-kirito.json +++ b/domains/api-kirito.json @@ -5,7 +5,7 @@ "username": "ThisMe124", "email": "anonymous.orgn@gmail.com" }, - "record": { + "record": { "CNAME": "only-devs-production.up.railway.app" } } diff --git a/domains/api-kyouka.json b/domains/api-kyouka.json deleted file mode 100644 index e66f1b0f4..000000000 --- a/domains/api-kyouka.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "APIKEY KYOUKA | SHIORI BOT", - "repo": "https://github.com/Yuri-Neko", - "owner": { - "username": "Yuri-Neko", - "email": "apikeykyouka@gmail.com" - }, - "record": { - "CNAME": "free.api-kyouka.my.id" - } -} diff --git a/domains/api.anshtyagi.json b/domains/api.anshtyagi.json new file mode 100644 index 000000000..e237132d7 --- /dev/null +++ b/domains/api.anshtyagi.json @@ -0,0 +1,11 @@ +{ + "description": "API WEBSITE", + "repo": "https://github.com/anshtyagi0", + "owner": { + "username": "anshtyagi0", + "email": "tyagiansh175@gmail.com" + }, + "record": { + "A": ["20.197.60.252"] + } +} diff --git a/domains/api.arman.json b/domains/api.arman.json deleted file mode 100644 index e77a8819b..000000000 --- a/domains/api.arman.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Arman's Api", - "owner": { - "username": "ItzArman09", - "email": "contact@mail.arman.is-a.dev" - }, - "record": { - "CNAME": "b25320ee-226d-4531-ad1f-db62e88ac1d4.id.repl.co" - } -} diff --git a/domains/api.badboy.json b/domains/api.badboy.json deleted file mode 100644 index 6adb23e2e..000000000 --- a/domains/api.badboy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Semant Api", - "owner": { - "username": "s3mant", - "email": "contact@semant.is-a.dev" - }, - "record": { - "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co" - } -} diff --git a/domains/api.dhyan99.json b/domains/api.dhyan99.json deleted file mode 100644 index 4967803cd..000000000 --- a/domains/api.dhyan99.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/d99-1/dhyan99-portfolio", - "owner": { - "username": "D99-1", - "email": "dhyantanna@gmail.com" - }, - - "record": { - "CNAME": "41c7b59d-7492-40cb-868c-3c1777f7ebff.id.repl.co" - } -} diff --git a/domains/api.esb.json b/domains/api.esb.json new file mode 100644 index 000000000..98e88ad17 --- /dev/null +++ b/domains/api.esb.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G63MWywbVBPCiP1H_VpGdNl0rXbhsluPIGWYrfPCikVJzHYweS34rK8v65QxLVjPOzAIWcOiRcEofvUZQsKYr3PFOzkZ_n-8D7hOU8It8Y8WQim0uW2GfD8JTu_jbqPl74tWysAlVYYg4L0kqiw-YDY0ZWadCqR7WR9BWK_M_qwB2tABlemLi2TKRFKHl8xuuFtPbVzCtBaWYDcb10AhB0zkIp185q5pwlbsafPxyY747GPvdx9JpqZFE36IfZ36N_Nvre0Pmms38pti1WLHyB3p4RdMVODRbY2FdNMezsYS6oNBrCSw0zeKxTNa__mTJfm17HmeHoiQr5whDP-b0A.r0IqaV4PgVHJJxxIBWCQwA.NonWBIudonu8aCNKSI6kvFYD0QZzkDrNHYJ-dZ7Lp0ISat6uC_gPFsBo1qXP0ghLcrPs9NRKZdKJnGry4sqf5YkCYNIdf22fL1cYqzBQ1ts71f-oIGQnz8tZP-PYgidS.bdLlUgRvdZjL3q4Rf827Rg" + }, + + "record": { + "A": ["69.197.135.202"] + } + } + \ No newline at end of file diff --git a/domains/api.gizzy.json b/domains/api.gizzy.json new file mode 100644 index 000000000..a3e65c85d --- /dev/null +++ b/domains/api.gizzy.json @@ -0,0 +1,13 @@ +{ + "description": "api.gizzy.is-a.dev", + "owner": { + "username": "GizzyUwU", + "email": "", + "discord": "gizzyowo" + }, + "record": { + "A": [ + "76.76.21.21" + ] + } +} diff --git a/domains/api.json b/domains/api.json deleted file mode 100644 index 72adff01c..000000000 --- a/domains/api.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "WilliamDavidHarrison", - "email": "william@williamharrison.dev" - }, - - "record": { - "CNAME": "wdhdns.com" - } -} diff --git a/domains/api.juststudio.json b/domains/api.juststudio.json new file mode 100644 index 000000000..ff3f8ca29 --- /dev/null +++ b/domains/api.juststudio.json @@ -0,0 +1,16 @@ +{ + "description": "JustStudio.API", + "owner": { + "username": "JustStudio7", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": [ + "34.120.54.55" + ], + "AAAA": [ + "2600:1901:0:6d85::" + ] + } +} diff --git a/domains/api.namkun.json b/domains/api.namkun.json new file mode 100644 index 000000000..c06d4d968 --- /dev/null +++ b/domains/api.namkun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "beocaca", + "email": "namdev1402@gmail.com" + }, + "record": { + "CNAME": "a.namkun.workers.dev" + } +} diff --git a/domains/api.semant.json b/domains/api.semant.json index c2dcdf97a..7dde925c0 100644 --- a/domains/api.semant.json +++ b/domains/api.semant.json @@ -6,6 +6,6 @@ "discord": "445073800850046977" }, "record": { - "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co" + "A": ["69.197.135.205"] } } diff --git a/domains/api.shockbs.json b/domains/api.shockbs.json new file mode 100644 index 000000000..a4be3930b --- /dev/null +++ b/domains/api.shockbs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/api.sono.json b/domains/api.sono.json new file mode 100644 index 000000000..f0f6e863d --- /dev/null +++ b/domains/api.sono.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "getSono", + "email": "sono.arbeit@gmail.com" + }, + "record": { + "CNAME": "imaginary-wakeful-busby.glitch.me" + } +} diff --git a/domains/api.spotify.stefdp.json b/domains/api.spotify.stefdp.json new file mode 100644 index 000000000..9f2b1dbbb --- /dev/null +++ b/domains/api.spotify.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/api.stefdp.json b/domains/api.stefdp.json new file mode 100644 index 000000000..9f2b1dbbb --- /dev/null +++ b/domains/api.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/api.zeppelin.maskduck.json b/domains/api.zeppelin.maskduck.json deleted file mode 100644 index 4ffcd8ccf..000000000 --- a/domains/api.zeppelin.maskduck.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "description": "Zeppelin selfhost API", - "repo": "https://github.com/maskducks/maskducks.github.io", - "owner": { - "username": "MaskDuck", - "email": "", - "discord": "MaskDuck#1337", - "twitter": "MaskDuck1", - "reddit": "u/maskduck", - "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586." - }, - "record": { - "CNAME": "zeppelin-railway-api.up.railway.app" - } -} diff --git a/domains/api.zoom.json b/domains/api.zoom.json new file mode 100644 index 000000000..3c72d6bbd --- /dev/null +++ b/domains/api.zoom.json @@ -0,0 +1,13 @@ +{ + "description": "A API where I will host all of my images/videos/stuff like it", + "repo": "https://github.com/theoldzoom/theoldzoom.github.io", + "owner": { + "username": "theoldzoom", + "email": "theoldzoom@gmail.com", + "twitter": "theoldzoom", + "discord": "theoldzoom" + }, + "record": { + "CNAME": "theoldzoom.github.io" + } +} diff --git a/domains/apigeon.json b/domains/apigeon.json index 10708a13f..563669d93 100644 --- a/domains/apigeon.json +++ b/domains/apigeon.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "mepuntojr1", - "email": "eepuntojr@gmail.com" - }, - "record": { - "CNAME": "sites.bootstrapstudio.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "mepuntojr1", + "email": "eepuntojr@gmail.com" + }, + "record": { + "CNAME": "sites.bootstrapstudio.io" + } +} diff --git a/domains/apiharam.json b/domains/apiharam.json deleted file mode 100644 index f11434d07..000000000 --- a/domains/apiharam.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "For My Haram API", - "repo": "https://github.com/ThisMe124", - "owner": { - "username": "ThisMe124", - "email": "anonymous.orgn@gmail.com" - }, - "record": { - "CNAME": "haram-api-production.up.railway.app" - } -} diff --git a/domains/apollyon.json b/domains/apollyon.json deleted file mode 100644 index 210b75e7f..000000000 --- a/domains/apollyon.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Develop website", - "owner": { - "username": "apollyon9", - "email": "blzzardst0rm@gmail.com", - "twitter": "sakurai072" - }, - "record": { - "URL": "https://eris9.repl.co" - } -} diff --git a/domains/apostolos.json b/domains/apostolos.json new file mode 100644 index 000000000..029ecae6e --- /dev/null +++ b/domains/apostolos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tolisdev", + "email": "a.katsoudas@yahoo.com" + }, + "record": { + "CNAME": "lux1.apostolosk.eu.org" + } +} diff --git a/domains/app.allancoding.json b/domains/app.allancoding.json new file mode 100644 index 000000000..131809fe4 --- /dev/null +++ b/domains/app.allancoding.json @@ -0,0 +1,15 @@ +{ + "description": "My app website for diffrent services", + "owner": { + "username": "allancoding", + "email": "allancoding.dev@gmail.com", + "twitter": "allancoding", + "discord": "allancoding" + }, + "record": { + "A": [ + "206.188.218.143" + ] + } + } + \ No newline at end of file diff --git a/domains/app.json b/domains/app.json new file mode 100644 index 000000000..4f1926b86 --- /dev/null +++ b/domains/app.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "code-hunt-in", + "email": "aishwary.pandore@somaiya.edu" + }, + "record": { + "CNAME": "code-hunt-in.github.io" + } +} diff --git a/domains/applesfruit.json b/domains/applesfruit.json index 807e8b314..867827717 100644 --- a/domains/applesfruit.json +++ b/domains/applesfruit.json @@ -1,12 +1,12 @@ { - "description": "Personal portfolio page with my recent and past projects, experiences, and more.", - "repo": "https://github.com/applesfruit/applesfruit.github.io", - "owner": { - "username": "applesfruit", - "email": "arya.kshipra@gmail.com", - "discord": "fruits#1845" - }, - "record": { - "CNAME": "applesfruit.github.io" - } + "description": "Personal portfolio page with my recent and past projects, experiences, and more.", + "repo": "https://github.com/applesfruit/applesfruit.github.io", + "owner": { + "username": "applesfruit", + "email": "arya.kshipra@gmail.com", + "discord": "fruits#1845" + }, + "record": { + "CNAME": "applesfruit.github.io" + } } diff --git a/domains/appointer.json b/domains/appointer.json new file mode 100644 index 000000000..c929e29e3 --- /dev/null +++ b/domains/appointer.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "MrDaPoyo", + "email": "wiiuforever25@gmail.com", + "discord": "1147531188148375623" + }, + + "record": { + "CNAME": "appointer-z3jo.onrender.com" + } + } + diff --git a/domains/apurbo.json b/domains/apurbo.json new file mode 100644 index 000000000..006df28e7 --- /dev/null +++ b/domains/apurbo.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "apurboislam", + "email": "", + "discord": "740207602855575565", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.inMY-tFiYyZXUCfpIqjoBHdeJLbSiZFxjMEUBeTHytVAiirU56zAh_JfBQPNkTx_yE_maOaKmEXeP1jOzQCVcw91TaK7fQOQuuGBh9Kk30txzdTftWMxE5c8_RrlczDlweePk2mLmrMjZC8aMRVNJoJIAms7CJLsm7llHVYn5ODXAjQL9wngf6ZEqvvohKZi-9VZVq6JRKd9hPf1EcGWWO_66pKFnx0SerS-057fN_3VtFp6JnSCb_iZFz1LgkR6Yqhce2twR0vdvxIBzgS9p9uF6JuHq7tvJOEq6kxnqATLPB8rLVDIzT1o_NHm7VhRCUboaKRERjrrksC2FGX9Pw.RSnWj6DFoMv81N8Rz3EP9w.7H2S5qSGZykz8Fv7XGOY4uhqiHB79IEOAj4Qat3cLhmpplmI-DtMjY_WqBp0VMtQo8v_o-7Y-822yaQmlJCEjwWMhPmcfM6A51NuPQnxsi7GUsesfzon71ksf1gy33XnrgFjdTC2BpppKdyCvGXq3Q.Gpxu1_DwG-tQbspNfQOWcQ" + }, + + "record": { + "CNAME": "apurboislam.github.io" + } + } + \ No newline at end of file diff --git a/domains/apurboislam.json b/domains/apurboislam.json new file mode 100644 index 000000000..3f5bcffac --- /dev/null +++ b/domains/apurboislam.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "apurboislam", + "email": "", + "discord": "740207602855575565", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Tb7jeRGTM3baPJ66NxXky5UUpue3qxinQq5Fq_qYbhEojPyOjmyTJopWxZGfTIie-42dA5RE5sEGUWU3YTEtXq8jvyQA2Alhv0Mz4fHfbfb7CKClfuoBT-_gJBxhrIRtOzfAXMkBofshbSTk8n8w0fcNaFRNn61YFjpULCdAJ_mf7ZGU6wmUxPvOdejIMskSXYPif0rQSk3DO2WHPxQO17fUPDaU3Q0u52CTTStdyyH3Efrj_DV7_wStGocc0AQQ2lUXxn_bPEJ1f8PzgVUk8AYbc0jQjQeokjtcRda4IIWn01CJ2s23xKJ1VW6ytPTYh91K72RINOHcFrY4miFyfA.EtMgYVQwI8Fkim2yde90bg.opKL6p-2Wkm2NpUIpUZD64bRAaGxY_PujYozpSQd24hSw_tEYcSsWR2LB43u-Whzv3ILzUyQIYAXT-q_W_ZP0dESFauT2szYJ759LjVconDiQPYpb7Y6M7K9ybJRkXDuDTgyx9QPBjG8uqdSRxQ3cQ.NrG09Bz5PZwk5xtQ77MELA" + }, + + "record": { + "CNAME": "apurboislam.github.io" + } + } + \ No newline at end of file diff --git a/domains/aqilhensem.json b/domains/aqilhensem.json new file mode 100644 index 000000000..84c94a4f2 --- /dev/null +++ b/domains/aqilhensem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qing762", + "email": "threatedblade@outlook.com" + }, + "record": { + "CNAME": "qing762.github.io" + } +} diff --git a/domains/aqsakhan.json b/domains/aqsakhan.json index d45248c0e..00a076915 100644 --- a/domains/aqsakhan.json +++ b/domains/aqsakhan.json @@ -1,12 +1,12 @@ { - "description": "personal portfolio", - "repo": "https://github.com/aqsakhan/v1.github.io", - "owner": { - "username": "aqsakhan", - "email": "aqsa250bpl@outlook.com", - "twitter": "aqsa_khan32" - }, - "record": { - "CNAME": "v1-7tp.pages.dev" - } -} + "description": "personal portfolio", + "repo": "https://github.com/aqsakhan/v1.github.io", + "owner": { + "username": "aqsakhan", + "email": "aqsa250bpl@outlook.com", + "twitter": "aqsa_khan32" + }, + "record": { + "CNAME": "v1-7tp.pages.dev" + } +} diff --git a/domains/aqtk.json b/domains/aqtk.json new file mode 100644 index 000000000..80edab138 --- /dev/null +++ b/domains/aqtk.json @@ -0,0 +1,13 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/GoldenStarGamer/aqtk", + "owner": { + "username": "GoldenStarGamer", + "email": "vicentetavareslima@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/aqua.json b/domains/aqua.json index 4bfcd5e60..be31cc932 100644 --- a/domains/aqua.json +++ b/domains/aqua.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "AquaQuokka", + "email": "aquaquokka@outlook.com" + }, - { - "owner": { - "username": "AquaQuokka", - "email": "aquaquokka@outlook.com" - }, - - "record": { - "CNAME": "aquaquokka.github.io" - } - } - + "record": { + "CNAME": "aquaquokka.github.io" + } +} diff --git a/domains/aquatica.json b/domains/aquatica.json new file mode 100644 index 000000000..ed6714922 --- /dev/null +++ b/domains/aquatica.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UntoldGam", + "email": "charlessbird+github@outlook.com" + }, + "record": { + "A": ["130.162.169.213"] + } +} diff --git a/domains/aquestry.json b/domains/aquestry.json new file mode 100644 index 000000000..4d87ab84d --- /dev/null +++ b/domains/aquestry.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "aquestry", + "email": "", + "discord": "704743506677334138", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.V9o5PtaeItmX8xf0iU9FiM1S1b6EqVFJPNxI5VSe0dNDnt0W5LfIoQqL1fvVRQKKUa3eqwyHY2da8homHkcAXxZhN3JVgGlBUsHvVRfFUyvclPqWWciFRhu2kTWTlTK5attxE_y2pLd_6y1XFKs6vZ-8zYEznT4urc2XuGfHQ7hPLvEwLGJrh412k57vNwYHRssofZkGjMJcMXy_kSAc-gGdD9j6_xjcvb8NkHBh7N6mdyicQsfa5nXZErX5Z-ycQhAYAZft8qOSxKQUBMAXQ7d9XwbT5lgqzHVjwNCGqC-wCqNFdQ5W0JrunFh0r8XzQYABJqetb1tzI5a6CDUF3Q.BSQSSXpli0R0BQg_OPAnlA.mi_pUvgr6GlHAn8hpansRpA_1EGVB52-XxoU0j21dqG4bRS0YDQJOPRj_H8U45U701wpU_AAcVQ4_TUpWJaYcp4F3_l3Gf8dEb9FYK7xm68.7nUpAD9IuDbCqCr6QXypuw" + }, + + "record": { + "CNAME": "aquestry.dev" + } + } + \ No newline at end of file diff --git a/domains/araf.json b/domains/araf.json new file mode 100644 index 000000000..800dc4439 --- /dev/null +++ b/domains/araf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yasar-arafath", + "email": "1up6i9jv@duck.com" + }, + "record": { + "CNAME": "yasar-arafath.github.io" + } +} diff --git a/domains/arafat.json b/domains/arafat.json new file mode 100644 index 000000000..800dc4439 --- /dev/null +++ b/domains/arafat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yasar-arafath", + "email": "1up6i9jv@duck.com" + }, + "record": { + "CNAME": "yasar-arafath.github.io" + } +} diff --git a/domains/arafatrahaman.json b/domains/arafatrahaman.json index ba74f1746..c893e9c00 100644 --- a/domains/arafatrahaman.json +++ b/domains/arafatrahaman.json @@ -1,11 +1,11 @@ { - "description": "A personal portfolio website", - "repo": "https://github.com/Hieser21/hieser21.github.io", - "owner": { - "username": "Hieser21", - "email": "rarafat883@gmail.com" - }, - "record": { - "CNAME": "arafatrahaman.up.railway.app" - } + "description": "A personal portfolio website", + "repo": "https://github.com/Hieser21/portfolio", + "owner": { + "username": "Hieser21", + "email": "rarafat883@gmail.com" + }, + "record": { + "CNAME": "portfolio-gh9n.onrender.com" } +} diff --git a/domains/araguaci.json b/domains/araguaci.json new file mode 100644 index 000000000..a33a1b6b8 --- /dev/null +++ b/domains/araguaci.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "araguaci", + "email": "araguaci@gmail.com" + }, + "record": { + "CNAME": "araguaci.github.io" + } +} diff --git a/domains/aravindh.json b/domains/aravindh.json new file mode 100644 index 000000000..d6c8a5cf7 --- /dev/null +++ b/domains/aravindh.json @@ -0,0 +1,11 @@ +{ + "description": "aravindh.is-a.dev", + "repo": "https://github.com/Aravindh-4195/aravindh-4195.github.io", + "owner": { + "username": "Aravindh-4195", + "email": "1mareeduaravindh1@gmail.com" + }, + "record": { + "CNAME": "aravindh-4195.github.io" + } +} diff --git a/domains/aravinnndddd.json b/domains/aravinnndddd.json new file mode 100644 index 000000000..210b4c7b0 --- /dev/null +++ b/domains/aravinnndddd.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Aravinnndddd", + "email": "aromalaravind0@gmail.com", + "discord": "754961569858846770" + }, + + "record": { + "CNAME": "aravinnndddd.github.io" + } + } + \ No newline at end of file diff --git a/domains/arbi-jridi.json b/domains/arbi-jridi.json new file mode 100644 index 000000000..a125bfd64 --- /dev/null +++ b/domains/arbi-jridi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arbi-jridi", + "email": "arbi.jridi@gmail.com" + }, + "record": { + "URL": "https://arbi-jridi.github.io" + } +} diff --git a/domains/arboy.json b/domains/arboy.json index b6155f88e..828bbb2cb 100644 --- a/domains/arboy.json +++ b/domains/arboy.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/ARBoyGo/arboygo.github.io", - "owner": { - "username": "arboygo", - "email": "arboygo@duck.com" - }, - "record": { - "CNAME": "arboygo.github.io" - } -} + "repo": "https://github.com/ARBoyGo/arboygo.github.io", + "owner": { + "username": "ARBoyGo", + "email": "arboygo@duck.com" + }, + "record": { + "CNAME": "arboygo.github.io" + } +} diff --git a/domains/arceus.json b/domains/arceus.json new file mode 100644 index 000000000..535f4cc88 --- /dev/null +++ b/domains/arceus.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "arceusdev", + "email": "", + "discord": "1055478076013817936" + }, + "record": { + "CNAME": "arceus-website-onze-developments-projects.vercel.app" + } +} diff --git a/domains/arch.json b/domains/arch.json index 540695194..791ffd871 100644 --- a/domains/arch.json +++ b/domains/arch.json @@ -1,12 +1,14 @@ - { + "description": "My personal website on arch.is-a.dev (main files in repo/repository).", + "repo": "https://github.com/Arch881010/Arch881010", "owner": { "username": "Arch881010", - "email": "", - "discord": "Arch1010#4338" + "email": "arch@arch1010.dev", + "discord": "arch1010", + "discord-id": "410248634593050627", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kSAiARG7F3TMPQLHtfhtk3dE05kz7As2lA8g_FzeDJHxsc9y68hJe40iZByj83Q-A7wgguTAPkshy34EfXOlnbEW6QGE3nwCdu8BLCDAZFZSDYffesKjYPq7djQpYfIcrwaKQ8BNsPejDVBpfycXULTJKFg6860m6AQeCRBCTKbs1et_J_1LKbD58oCoA2fRjoOcmsfiuv177b0JB5y4YYJvv-ZUxnqfFOYs8z4cYa0sjLz1PHf45ZXI94YaiIGbctnl4-mCWmUyVAEzoZXMMZTpb2yDmkfkXbubaRL8ftl6dXFlsr_s8t5oNNn_qqydjVqHAgoBod7pnX8nnbNB7g.QIJDtBcgQc6abzpqMJEDQQ.yqolPrBs4ixr0g2Sd6FkMHqMg_CXvxV146dDoe4y8yeSmW951Au23QlBGwemyMKQmJv6fNMo7GPctGfxCxgaaL6hXPVbtJ13MdgtO22e5bA.vevEeBUZxq5C7dewSx_YUQ" }, "record": { - "URL": "https://arch881010.github.io/Arch881010" + "CNAME": "arch881010.github.io" } } - \ No newline at end of file diff --git a/domains/archelaus.json b/domains/archelaus.json index 39e9f2e0c..4600a99f5 100644 --- a/domains/archelaus.json +++ b/domains/archelaus.json @@ -1,11 +1,11 @@ { - "description": "Portfolio", - "repo": "https://github.com/archelaus/archelaus.github.io", - "owner": { - "username": "archelaus", - "email": "aa.18cs02@thdcihet.ac.in" - }, - "record": { - "CNAME": "archelaus.github.io" - } -} + "description": "Portfolio", + "repo": "https://github.com/archelaus/archelaus.github.io", + "owner": { + "username": "archelaus", + "email": "archelaus@skiff.com" + }, + "record": { + "CNAME": "archelaus.github.io" + } +} diff --git a/domains/archon.json b/domains/archon.json new file mode 100644 index 000000000..17267d9d8 --- /dev/null +++ b/domains/archon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "29ayaang", + "email": "29ayaang@proton.me" + }, + "record": { + "CNAME": "29ayaang.github.io" + } +} diff --git a/domains/ardaninho.json b/domains/ardaninho.json new file mode 100644 index 000000000..035564227 --- /dev/null +++ b/domains/ardaninho.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Ardaninho", + "email": "", + "discord": "639439553698201626" + }, + + "record": { + "CNAME": "ardaninho.github.io" + } + } + diff --git a/domains/ardistory.json b/domains/ardistory.json new file mode 100644 index 000000000..98b557280 --- /dev/null +++ b/domains/ardistory.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ardistory", + "email": "putraardiansyah530@gmail.com" + }, + "record": { + "A": ["198.91.81.13"] + } +} diff --git a/domains/ardox.json b/domains/ardox.json new file mode 100644 index 000000000..24d080fbb --- /dev/null +++ b/domains/ardox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LeVraiArdox", + "email": "adrian.arjoca18@gmail.com" + }, + "record": { + "CNAME": "levraiardox.github.io" + } +} diff --git a/domains/areen-c.json b/domains/areen-c.json new file mode 100644 index 000000000..4c724ff96 --- /dev/null +++ b/domains/areen-c.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com", + "twitter": "areencx" + }, + "record": { + "CNAME": "areen.pages.dev" + } +} diff --git a/domains/areen.json b/domains/areen.json new file mode 100644 index 000000000..dca1d5024 --- /dev/null +++ b/domains/areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com" + }, + "record": { + "CNAME": "areen-c.pages.dev" + } +} diff --git a/domains/arhan.json b/domains/arhan.json new file mode 100644 index 000000000..a7c83722a --- /dev/null +++ b/domains/arhan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ArhanExploits", + "email": "vortexsperts@gmail.com", + "discord": "1058620249978716191" + }, + + "record": { + "A": ["54.37.19.49"] + } +} diff --git a/domains/ari.json b/domains/ari.json deleted file mode 100644 index dd8e98c8a..000000000 --- a/domains/ari.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "RayhanADev's Website!", - "repo": "https://github.com/rayhanadev/Personal-Website", - "owner": { - "username": "rayhanadev", - "email": "rayhanadev@protonmail.com" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } -} diff --git a/domains/arib21.json b/domains/arib21.json deleted file mode 100644 index 58f742c5e..000000000 --- a/domains/arib21.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "arib21", - "email": "aribmuhtasim22@gmail.com" - }, - "description": "arib21's personal developer website", - "repo": "https://github.com/arib21/arib21.github.io", - "record": { - "CNAME": "arib21.github.io" - } -} diff --git a/domains/ariez.json b/domains/ariez.json deleted file mode 100644 index 43f83461f..000000000 --- a/domains/ariez.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "AriezzYT", - "email": "ttkeaton@outlook.com" - }, - - "record": { - "CNAME": "ariezzyt.github.io" - } - } - diff --git a/domains/ariffhazmi.json b/domains/ariffhazmi.json new file mode 100644 index 000000000..638b5bc14 --- /dev/null +++ b/domains/ariffhazmi.json @@ -0,0 +1,11 @@ +{ + "description": "Ariffhazmi's Website", + "repo": "https://github.com/Areplesapelagi/ariffhazmi.git", + "owner": { + "username": "Areplesapelagi", + "email": "muhdariffhazmi@gmail.com" + }, + "record": { + "CNAME": "Areplesapelagi.github.io" + } +} diff --git a/domains/arijit.json b/domains/arijit.json index 9e230ca1d..deeb0b3f0 100644 --- a/domains/arijit.json +++ b/domains/arijit.json @@ -1,23 +1,17 @@ { - "description": "Site of Arijit", "repo": "https://github.com/ArijitTheDev/arijitthedev.github.io", "owner": { - "username": "ArijitTheDev", "email": "itsarijitdebnath@gmail.com", "twitter": "NotArijit" - }, "record": { - "CNAME": "arijitthedev.github.io" - } - } diff --git a/domains/arin.json b/domains/arin.json deleted file mode 100644 index cb49cef7b..000000000 --- a/domains/arin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "arin's personal website", - "repo": "https://github.com/6Arin9", - "owner": { - "username": "arin", - "email": "karciello.yt@gmail.com" - }, - "record": { - "CNAME": "arindev.tech" - } -} diff --git a/domains/arizerr.json b/domains/arizerr.json new file mode 100644 index 000000000..35713f74c --- /dev/null +++ b/domains/arizerr.json @@ -0,0 +1,11 @@ +{ + "description": "Github Page", + "repo": "https://github.com/Arizerr/Arizerr.github.io", + "owner": { + "username": "Arizerr", + "email": "arisiraj738@gmail.com" + }, + "record": { + "CNAME": "arizerr.github.io" + } +} diff --git a/domains/arjix.json b/domains/arjix.json index 225faab31..b2ba2aa34 100644 --- a/domains/arjix.json +++ b/domains/arjix.json @@ -1,12 +1,12 @@ { - "description": "Most likely a page for my portfolio.", - "repo": "https://github.com/ArjixWasTaken/arjixwastaken.github.io", - "owner": { - "username": "ArjixWasTaken", - "email": "", - "discord": "Hecker#5573" - }, - "record": { - "CNAME": "arjixwastaken.github.io" - } + "description": "Most likely a page for my portfolio.", + "repo": "https://github.com/ArjixWasTaken/arjixwastaken.github.io", + "owner": { + "username": "ArjixWasTaken", + "email": "", + "discord": "Hecker#5573" + }, + "record": { + "CNAME": "arjixwastaken.github.io" + } } diff --git a/domains/arjuncvinod.json b/domains/arjuncvinod.json new file mode 100644 index 000000000..0860da5c8 --- /dev/null +++ b/domains/arjuncvinod.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/arjuncvinod/arjuncvinod.github.io", + "owner": { + "username": "arjuncvinod", + "email": "arjuncvinod007@gmail.com", + "twitter": "arjuncvinod7" + }, + "record": { + "CNAME": "arjuncvinod.github.io" + } +} diff --git a/domains/arman.json b/domains/arman.json index 307beeb12..58404ec4e 100644 --- a/domains/arman.json +++ b/domains/arman.json @@ -1,16 +1,10 @@ { - "description": "Arman's personal website!", - "repo": "https://github.com/ItzArman09/website", + "description": "Personal Portfolio", "owner": { "username": "ItzArman09", - "email": "contact@mail.arman.is-a.dev" + "email": "itz.armxn@outlook.com" }, "record": { - "A": ["89.106.200.1"], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "CNAME": "itzarman09.github.io" } } diff --git a/domains/arnab.json b/domains/arnab.json new file mode 100644 index 000000000..db12d8d3b --- /dev/null +++ b/domains/arnab.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arnabdatta", + "email": "arnabdatta3@gmail.com" + }, + "record": { + "CNAME": "arnabdatta.github.io" + } +} diff --git a/domains/arnav.json b/domains/arnav.json index 7aced6f20..09e1f80d6 100644 --- a/domains/arnav.json +++ b/domains/arnav.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "arnav-kr", + "email": "arnav-kumar@outlook.com" + }, - { - "owner": { - "username": "arnav-kr", - "email": "arnav-kumar@outlook.com" - }, - - "record": { - "CNAME": "arnav-kr.github.io" - } - } - + "record": { + "CNAME": "arnav-kr.github.io" + } +} diff --git a/domains/arpitbatra.json b/domains/arpitbatra.json index a6ce35497..d4ff419f2 100644 --- a/domains/arpitbatra.json +++ b/domains/arpitbatra.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "arpit-batra", - "email": "arpitbatra98@gmail.com" - }, - "record": { - "URL": "https://myportfolio-eb732.web.app" - } + "owner": { + "username": "arpit-batra", + "email": "arpitbatra98@gmail.com" + }, + "record": { + "URL": "https://myportfolio-eb732.web.app" + } } diff --git a/domains/arrtea.json b/domains/arrtea.json new file mode 100644 index 000000000..d8620b4ee --- /dev/null +++ b/domains/arrtea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Arrtea21", + "email": "arte.priv@protonmail.com" + }, + "record": { + "CNAME": "arrtea21.github.io" + } +} diff --git a/domains/arsdorint.json b/domains/arsdorint.json index 23558c744..bd558c89e 100644 --- a/domains/arsdorint.json +++ b/domains/arsdorint.json @@ -1,12 +1,10 @@ - - { - "repo": "https://github.com/arsdorintbp2003/arsdorintbp2003.github.io", - "owner": { - "username": "arsdorintbp2003", - "email": "e0851451@u.nus.edu" - }, - "record": { - "CNAME": "arsdorintbp2003.github.io" - } - } - +{ + "repo": "https://github.com/arsdorintbp2003/arsdorintbp2003.github.io", + "owner": { + "username": "arsdorintbp2003", + "email": "e0851451@u.nus.edu" + }, + "record": { + "CNAME": "arsdorintbp2003.github.io" + } +} diff --git a/domains/artaabedi.json b/domains/artaabedi.json new file mode 100644 index 000000000..d280f4264 --- /dev/null +++ b/domains/artaabedi.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "artaabedi", + "email": "arta@mailfence.com", + "discord": "884500561158869032", + "twitter": "artaabedi" + }, + "record": { + "URL": "https://artaabedi.com", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/artesdosul.json b/domains/artesdosul.json new file mode 100644 index 000000000..a591e0306 --- /dev/null +++ b/domains/artesdosul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "araguaci", + "email": "araguaci@gmail.com" + }, + "record": { + "CNAME": "artesdosul.github.io" + } +} diff --git a/domains/arthur.json b/domains/arthur.json deleted file mode 100644 index 76e713a34..000000000 --- a/domains/arthur.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Arthurdw", - "email": "mail@arthurdw.com" - }, - "repo": "https://github.com/arthurdw", - "record": { - "URL": "https://www.arthurdw.com" - } -} diff --git a/domains/artix.json b/domains/artix.json new file mode 100644 index 000000000..8027a27d0 --- /dev/null +++ b/domains/artix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "alex1028199", + "email": "yu1234u73f.com@gmail.com", + "discord": "834867471885271053" + }, + + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/arungeorgesaji.json b/domains/arungeorgesaji.json new file mode 100644 index 000000000..4d79568ab --- /dev/null +++ b/domains/arungeorgesaji.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/arungeorgesaji/arungeorgesaji.github.io", + "owner": { + "username": "arungeorgesaji", + "email": "arungeorgesaji@gmail.com" + }, + "record": { + "CNAME": "arungeorgesaji.github.io" + } +} diff --git a/domains/arush.json b/domains/arush.json new file mode 100644 index 000000000..4b3751c8d --- /dev/null +++ b/domains/arush.json @@ -0,0 +1,11 @@ +{ + "description": "arush.is-a.dev: website for my portoflio", + "repo": "https://github.com/ArushYadlapati/website", + "owner": { + "username": "ArushYadlapati", + "email": "hello@arush.me" + }, + "record": { + "CNAME": "arushyadlapati.github.io" + } +} diff --git a/domains/arv.json b/domains/arv.json new file mode 100644 index 000000000..fff65d37b --- /dev/null +++ b/domains/arv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aravinds-arv", + "email": "aravinds.arv@pm.me" + }, + "record": { + "CNAME": "aravinds-arv.github.io" + } +} diff --git a/domains/arvik1.json b/domains/arvik1.json new file mode 100644 index 000000000..ea04d9328 --- /dev/null +++ b/domains/arvik1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arvik1", + "email": "singhvikal891@gmail.com" + }, + "record": { + "CNAME": "arvik1.github.io" + } +} diff --git a/domains/arvindt.json b/domains/arvindt.json new file mode 100644 index 000000000..c8d7df23c --- /dev/null +++ b/domains/arvindt.json @@ -0,0 +1,14 @@ +{ + "description": "ARVIN3108's personal blog", + "repo": "https://github.com/ARVIN3108/arvin3108.github.io", + "owner": { + "username": "ARVIN3108", + "email": "", + "discord": "arvin3108.id", + "instagram": "arvin_d.t", + "twitter": "ARVIN3108_ID" + }, + "record": { + "CNAME": "arvin3108.github.io" + } +} diff --git a/domains/arwi.json b/domains/arwi.json new file mode 100644 index 000000000..d0b678441 --- /dev/null +++ b/domains/arwi.json @@ -0,0 +1,11 @@ +{ + "description": "Arwichok", + "repo": "https://github.com/arwichok/arwichok.github.io", + "owner": { + "username": "arwichok", + "email": "arwichok@gmail.com" + }, + "record": { + "CNAME": "arwichok.github.io" + } +} diff --git a/domains/aryadanech.json b/domains/aryadanech.json new file mode 100644 index 000000000..256df4b41 --- /dev/null +++ b/domains/aryadanech.json @@ -0,0 +1,11 @@ +{ + "description": "Hi There! I'm Arya. I am a Full Stack Web Developer from Nashik", + "repo": "https://github.com/aryad14", + "owner": { + "username": "aryad14", + "email": "aryadanech9@gmail.com" + }, + "record": { + "CNAME": "aryadanech.netlify.app" + } +} \ No newline at end of file diff --git a/domains/aryaejoumalai.json b/domains/aryaejoumalai.json new file mode 100644 index 000000000..6bcaad934 --- /dev/null +++ b/domains/aryaejoumalai.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio project", + "repo": "https://github.com/AryaEjoumalai/portfolio", + "owner": { + "username": "AryaEjoumalai", + "email": "aryaejoumalai@gmail.com" + }, + "record": { + "CNAME": "aryaejoumalai.github.io" + } +} diff --git a/domains/aryamaan.json b/domains/aryamaan.json index f88e58678..02f4dce9b 100644 --- a/domains/aryamaan.json +++ b/domains/aryamaan.json @@ -1,20 +1,19 @@ - { - "owner": { - "username": "HalalJadeja", - "email": "9236.stkabirdio@gmail.com" - }, - "record": { - "A": [ - "185.199.110.153", - "185.199.108.153", - "185.199.111.153", - "185.199.109.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } - } - +{ + "owner": { + "username": "HalalJadeja", + "email": "9236.stkabirdio@gmail.com" + }, + "record": { + "A": [ + "185.199.110.153", + "185.199.108.153", + "185.199.111.153", + "185.199.109.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/aryan.json b/domains/aryan.json new file mode 100644 index 000000000..f943f7230 --- /dev/null +++ b/domains/aryan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AryanTheDevloper", + "email": "aryan.p062009@gmail.com" + }, + "record": { + "CNAME": "aryanthedevloper.github.io" + } +} diff --git a/domains/aryxst.json b/domains/aryxst.json new file mode 100644 index 000000000..e5d6750d9 --- /dev/null +++ b/domains/aryxst.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aryxst", + "email": "jessieodeh08@gmail.com" + }, + "record": { + "CNAME": "aryxst.github.io" + } +} diff --git a/domains/as.json b/domains/as.json new file mode 100644 index 000000000..fd745e171 --- /dev/null +++ b/domains/as.json @@ -0,0 +1,10 @@ +{ + "repo": "https://mrakshayas.github.io/me/", + "owner": { + "username": "MrAkshayAS", + "email": "akshau72p@gmail.com" + }, + "record": { + "CNAME": "mrakshayas.github.io" + } +} diff --git a/domains/asciidude.json b/domains/asciidude.json new file mode 100644 index 000000000..590dbc485 --- /dev/null +++ b/domains/asciidude.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "asciidude", + "email": "", + "discord": "801469073535139860", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qwzMx5Lz7NbUvzz6Y_QtpNQ7_SqJrrO8yXP48aKYIAhN6eDnjYzQA_tJEU0CpjyY37OdGN7g1SGCv4lwrXVd0dsEya2dQhMnkw2xOqqJF1f1gTEHNaRQaifNvYE14xiMLZr-yqcRJ-QB1WONpRk5UOjd-sYTjmJ5uai6fufnC8DCsHvZxjCMFROwqxJVa-JnBe-6BhORJg7sgfUCCNRyfKQ3R_CrEV0q6mKpNGKhgB3_sbsWDosP0yU5ArR0UjH4iZzLgfRmKwP6rzbpb7XsGHmV5sn8kj1KTgXdTVAg1ax0JrJOmL0pXVSC4KtFmb3coUNBLbLB8crRP97R7gFQ1Q.9JZd7YdCz4lIo3gLgAFaTg.bXgWxafLtMe0Bs1NFWsc2YIpC5jiRYArHlAD8IxUG3AhmJp8Dhtdn160e1LB3XZKR_WXmSnnkFH4UxomctKjjA4FyX5IgmEO9aPKbjwn3Eo.ib74UPOSzL79K4D4sNLf7w" + }, + + "record": { + "CNAME": "cubic-plateau-9rv902jxrli6u45t5hsafsrd.herokudns.com" + } + } + diff --git a/domains/asgarrrr.json b/domains/asgarrrr.json index bf5d7629a..1fbe31706 100644 --- a/domains/asgarrrr.json +++ b/domains/asgarrrr.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/Asgarrrr", - "owner": { - "username": "Asgarrrr", - "email": "hello@jeremycaruelle.fr" - }, - "record": { - "CNAME": "glitch.edgeapp.net" - } + "repo": "https://github.com/Asgarrrr", + "owner": { + "username": "Asgarrrr", + "email": "hello@jeremycaruelle.fr" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } } diff --git a/domains/ash.json b/domains/ash.json new file mode 100644 index 000000000..9c10aac63 --- /dev/null +++ b/domains/ash.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "BloodLetters", + "email": "", + "discord": "961870785486671872", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ViU_s7aERLW_mNpbpi9hxOs4zrccaqUhyyUAxIZEKbqex3iWjZP9AUM7uoeyQh9qPzVy8fp92ArDGlC-iYQwW7Xw6WHwzMo_zQGZchYGcI7gDJnI-BSKEwTe9oFPqLzkbR8o3guo7_7Qo54bWm7UDjBjca2JCol7iXJgXP0cUJzgrX3QTPxVEigrvnBNsSIr83WlFZZagm9gyCBpl0WTVLjomcSHdTB2IjM6_yMkYCD1cLDOrkXwqH79o1orLZWrHbDf_6Mqfyay7ZoRiacDTAAi7LVMYo-bjo82IwrCRCNXbHsANk3kJKQnVETKX37bB8sPyRT7I_oygAk9tGcu0A.sbMp8UsiUgSWQ2-vTfEvxA.TzjhAHzK6nG9FtsYXnn3rqwGECCQk0m-KRlrz8-t6BDAPX2SWp0-KEp1pdmc4Okgg5iBl_LRTavfdX2xLuuFHp0G5lzit1LmeEsV6QNfrmY.sIKZgtKW8YqtT_ohHyte9Q" + }, + + "record": { + "CNAME": "web-production-six.vercel.app" + } + } + \ No newline at end of file diff --git a/domains/ashan.json b/domains/ashan.json new file mode 100644 index 000000000..dbbde5e8e --- /dev/null +++ b/domains/ashan.json @@ -0,0 +1,12 @@ +{ + "description": "Using For as a Learner,Developer and a youtuber", + "repo": "https://github.com/SealedSlinger/SealedSlinger.github.io", + "owner": { + "username": "SealedSlinger", + "email": "infoxkingyt@gmail.com", + "twitter": "AshanInduranga_" + }, + "record": { + "CNAME": "SealedSlinger.github.io" + } +} diff --git a/domains/ashc1ty.json b/domains/ashc1ty.json new file mode 100644 index 000000000..b887335e3 --- /dev/null +++ b/domains/ashc1ty.json @@ -0,0 +1,11 @@ +{ + "description": "AshC1ty's Website", + "repo": "https://github.com/AshC1ty/ashc1ty.github.io", + "owner": { + "username": "AshC1ty", + "email": "ashcity07734@gmail.com" + }, + "record": { + "CNAME": "ashc1ty.github.io" + } +} diff --git a/domains/asheer.json b/domains/asheer.json new file mode 100644 index 000000000..1e8c43c61 --- /dev/null +++ b/domains/asheer.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "NullyIsHere", + "email": "", + "discord": "itsasheer" + }, + "record": { + "URL": "https://altex.page?from=isadev" + } +} diff --git a/domains/asher.json b/domains/asher.json new file mode 100644 index 000000000..29fd3298d --- /dev/null +++ b/domains/asher.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "The-Asher", + "email": "08.bellaaron@gmail.com" + }, + "record": { + "A": ["198.91.81.11"] + } +} diff --git a/domains/ashesh.json b/domains/ashesh.json new file mode 100644 index 000000000..56570b860 --- /dev/null +++ b/domains/ashesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ashesh3", + "email": "ashesh1708@gmail.com" + }, + "record": { + "CNAME": "ashesh3.github.io" + } +} diff --git a/domains/ashif.json b/domains/ashif.json new file mode 100644 index 000000000..9daef0cc8 --- /dev/null +++ b/domains/ashif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheKingslayer11", + "email": "ashifhussain609@gmail.com" + }, + "record": { + "CNAME": "thekingslayer11.github.io" + } +} diff --git a/domains/ashish-g-gupta.json b/domains/ashish-g-gupta.json new file mode 100644 index 000000000..fbe1ede19 --- /dev/null +++ b/domains/ashish-g-gupta.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/ashish-g-gupta/ashish-g-gupta.github.io", + "owner": { + "username": "ashish-g-gupta", + "email": "" + }, + "record": { + "CNAME": "ashish-g-gupta.github.io" + } +} diff --git a/domains/ashishagarwal.json b/domains/ashishagarwal.json new file mode 100644 index 000000000..5622a088b --- /dev/null +++ b/domains/ashishagarwal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devashish2024", + "email": "code.with.aasheesh@gmail.com" + }, + "record": { + "CNAME": "ashishagarwal.netlify.app" + } +} diff --git a/domains/ashishagr.json b/domains/ashishagr.json new file mode 100644 index 000000000..181618046 --- /dev/null +++ b/domains/ashishagr.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "devashish2024", + "email": "code.with.aasheesh@gmail.com" + }, + "record": { + "A": [ + "185.199.109.153", + "185.199.111.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/ashishbinu.json b/domains/ashishbinu.json new file mode 100644 index 000000000..e5822f217 --- /dev/null +++ b/domains/ashishbinu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ashishbinu", + "email": "ashishbinu90@gmail.com" + }, + + "record": { + "CNAME": "ashishbinu.surge.sh" + } +} diff --git a/domains/ashishji.json b/domains/ashishji.json new file mode 100644 index 000000000..ca92753f0 --- /dev/null +++ b/domains/ashishji.json @@ -0,0 +1,11 @@ +{ + "description": "Ashish Verma Portfolio Website", + "repo": "https://github.com/ashishjii/ashishjii.github.io", + "owner": { + "username": "AshishJii", + "email": "ashishverma208004@gmail.com" + }, + "record": { + "CNAME": "ashishjii.github.io" + } +} diff --git a/domains/ashley.json b/domains/ashley.json new file mode 100644 index 000000000..a173c86f7 --- /dev/null +++ b/domains/ashley.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ashleyyy94", + "email": "ashley_2461994@hotmail.com" + }, + "record": { + "URL": "https://ashleyong.xyz/" + } +} diff --git a/domains/ashuthosh.json b/domains/ashuthosh.json new file mode 100644 index 000000000..5420410a8 --- /dev/null +++ b/domains/ashuthosh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AshDubey8", + "email": "ashuthoshmaheshdubey@gmail.com" + }, + "record": { + "CNAME": "ashdubey8.github.io" + } +} diff --git a/domains/ashutosh-pandey.json b/domains/ashutosh-pandey.json new file mode 100644 index 000000000..602e366ed --- /dev/null +++ b/domains/ashutosh-pandey.json @@ -0,0 +1,12 @@ +{ + "description": "This is my personal portfolio website", + "repo": "https://github.com/DataCrusade1999/datacrusade1999.github.io", + "owner": { + "username": "DataCrusade1999", + "email": "ashutosh.pandeyhlr007@gmail.com", + "twitter": "DataCrusade1999" + }, + "record": { + "CNAME": "datacrusade1999.github.io" + } +} diff --git a/domains/ashutoshkumar.json b/domains/ashutoshkumar.json deleted file mode 100644 index 3d75958e1..000000000 --- a/domains/ashutoshkumar.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Ashutosh Kumar's Portfolio", - "owner": { - "username": "Ashutoshcoder", - "email": "ashutoshkumardbms@gmail.com" - }, - "record": { - "CNAME": "ashutoshkumar.me" - } -} diff --git a/domains/ashwa.json b/domains/ashwa.json index da0927317..6b20c1c3a 100644 --- a/domains/ashwa.json +++ b/domains/ashwa.json @@ -1,13 +1,11 @@ - - { - "description": "A personal website, for ash.", - "repo": "https://github.com/NatBLida68/NatBLida68.github.io", - "owner": { - "username": "NatBLida68", - "email": "aswajith.jithu888@gmail.com" - }, - "record": { - "CNAME": "natblida68.github.io" - } - } - +{ + "description": "A personal website, for ash.", + "repo": "https://github.com/NatBLida68/NatBLida68.github.io", + "owner": { + "username": "NatBLida68", + "email": "aswajith.jithu888@gmail.com" + }, + "record": { + "CNAME": "natblida68.github.io" + } +} diff --git a/domains/ashwin-s-nambiar.json b/domains/ashwin-s-nambiar.json new file mode 100644 index 000000000..1226f946b --- /dev/null +++ b/domains/ashwin-s-nambiar.json @@ -0,0 +1,11 @@ +{ + "description": "For my portfolio", + "owner": { + "username": "ashwin-s-nambiar", + "email": "", + "discord": "ashwin_nambiar" + }, + "record": { + "CNAME": "ashwin-portfolio-alpha.vercel.app" + } +} diff --git a/domains/asicalug.json b/domains/asicalug.json new file mode 100644 index 000000000..f3fded52c --- /dev/null +++ b/domains/asicalug.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Asicalug", + "email": "isaac.poissinger@gmail.com" + }, + "record": { + "CNAME": "asicalug.github.io" + } +} diff --git a/domains/asif.json b/domains/asif.json new file mode 100644 index 000000000..8d5d37857 --- /dev/null +++ b/domains/asif.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Asif404", + "email": "asifmohammed4000@gmail.com" + }, + "record": { + "CNAME": "asif-bq8.pages.dev" + } +} diff --git a/domains/aslipatov.json b/domains/aslipatov.json index 3b9f8104b..346c76bc0 100644 --- a/domains/aslipatov.json +++ b/domains/aslipatov.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "LipatovAlexander", - "email": "lipatov.work@bk.ru" - }, - "record": { - "CNAME": "lipatovalexander.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "LipatovAlexander", + "email": "lipatov.work@bk.ru" + }, + "record": { + "CNAME": "lipatovalexander.github.io" + } +} diff --git a/domains/asnct.json b/domains/asnct.json new file mode 100644 index 000000000..c5d53fced --- /dev/null +++ b/domains/asnct.json @@ -0,0 +1,12 @@ +{ + "description": "Redirect to my telegram channel & mail", + "owner": { + "username": "asnct", + "email": "asnct@proton.me" + }, + "record": { + "URL": "https://asnct_bio.t.me", + "TXT": ["mailru-domain: wDSaV835X4LZyKsP", "v=spf1 redirect=_spf.mail.ru"], + "MX": "emx.mail.ru" + } +} diff --git a/domains/asp.json b/domains/asp.json deleted file mode 100644 index 643ba0d9f..000000000 --- a/domains/asp.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "aspekts", - "email": "marcus.kamuntu@gmail.com" - }, - "record": { - "CNAME": "29e1a02d-9848-4f80-845e-74cb27d553b3.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/aspect.json b/domains/aspect.json index 3d3c53520..bf09ab70a 100644 --- a/domains/aspect.json +++ b/domains/aspect.json @@ -1,12 +1,12 @@ { - "description": "My personal blog", - "repo": "https://github.com/Aspectsides/aspectsides.github.io", - "owner": { - "username": "Aspectsides", - "email": "aspectsidesxyz@gmail.com", - "twitter": "polaris51212" - }, - "record": { - "CNAME": "aspectsides.github.io" - } -} + "description": "My personal blog", + "repo": "https://github.com/Aspectsides/aspectsides.github.io", + "owner": { + "username": "Aspectsides", + "email": "aspectsidesxyz@gmail.com", + "twitter": "polaris51212" + }, + "record": { + "CNAME": "aspectsides.github.io" + } +} diff --git a/domains/aspect404.json b/domains/aspect404.json deleted file mode 100644 index 948864725..000000000 --- a/domains/aspect404.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Aspect404_'s Website", - "owner": { - "username": "Aspect-404", - "email": "newaspectdevelopment@gmail.com", - "discord": "807361766572818484", - "twitter": "Aspect404_" - }, - "record": { - "CNAME": "e070f94f-3589-4c49-ac40-baa97dea6ccd.id.repl.co" - } -} diff --git a/domains/asriel.json b/domains/asriel.json new file mode 100644 index 000000000..8017febbc --- /dev/null +++ b/domains/asriel.json @@ -0,0 +1,12 @@ +{ + "description": "asriel.is-a.dev", + "repo": "https://github.com/asrielthegoat/asrielthegoat.github.io", + "owner": { + "username": "AsrieltheGoat", + "email": "ganyu@segs.eu.org", + "discord": "AsrieltheGoat" + }, + "record": { + "CNAME": "asrielthegoat.github.io" + } +} diff --git a/domains/asteria.json b/domains/asteria.json new file mode 100644 index 000000000..05d23a3b9 --- /dev/null +++ b/domains/asteria.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "spectre-xenon", + "email": "omarzaghlool538@gmail.com" + }, + "record": { + "CNAME": "asteria-9ee.pages.dev" + } +} diff --git a/domains/asterisk.json b/domains/asterisk.json new file mode 100644 index 000000000..74d6a192d --- /dev/null +++ b/domains/asterisk.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ast3risk-ops", + "email": "me@asterisk.lol", + "discord": "789561823863111742" + }, + "record": { + "URL": "https://asterisk.lol" + } +} diff --git a/domains/asthriona.json b/domains/asthriona.json new file mode 100644 index 000000000..4efecb8de --- /dev/null +++ b/domains/asthriona.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Asthriona", + "email": "im@asthriona.com" + }, + "record": { + "CNAME": "asthriona.pages.dev" + } +} diff --git a/domains/astris.api.json b/domains/astris.api.json new file mode 100644 index 000000000..6db90070c --- /dev/null +++ b/domains/astris.api.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "rherlydev", + "email": "142740981+rherlydev@users.noreply.github.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 948965718794330153" + }, + + "record": { + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=rherlydev@proton.me" + } +} diff --git a/domains/astrowin.json b/domains/astrowin.json new file mode 100644 index 000000000..2fa0be1c4 --- /dev/null +++ b/domains/astrowin.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "enderfoxbg", + "email": "enderfoxbg670@gmail.com", + "discord": "970380468090437672" + }, + + "record": { + "CNAME": "astrowin.github.io" + } + } + \ No newline at end of file diff --git a/domains/aswin-vs.json b/domains/aswin-vs.json new file mode 100644 index 000000000..7e5913870 --- /dev/null +++ b/domains/aswin-vs.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio of Aswin V S", + "repo": "https://github.com/aswin-vs/Portfolio", + "owner": { + "username": "aswin-vs", + "email": "aswinvs.nitt@gmail.com" + }, + "record": { + "CNAME": "aswin-vs.github.io" + } +} diff --git a/domains/aswinmahesh.json b/domains/aswinmahesh.json new file mode 100644 index 000000000..de8424968 --- /dev/null +++ b/domains/aswinmahesh.json @@ -0,0 +1,20 @@ +{ + "description": "Aswin Mahesh Website", + "repo": "https://github.com/aswinmahesh", + "owner": { + "username": "aswinmahesh", + "email": "aswinmahesh.com+dns@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ], + + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} \ No newline at end of file diff --git a/domains/aswinmaheshc.json b/domains/aswinmaheshc.json new file mode 100644 index 000000000..bcd1f6452 --- /dev/null +++ b/domains/aswinmaheshc.json @@ -0,0 +1,20 @@ +{ + "description": "Aswin Mahesh C Website", + "repo": "https://github.com/aswinmahesh", + "owner": { + "username": "aswinmahesh", + "email": "aswinmahesh.com+dns@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ], + + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} \ No newline at end of file diff --git a/domains/aswinrout.json b/domains/aswinrout.json new file mode 100644 index 000000000..fda546dc8 --- /dev/null +++ b/domains/aswinrout.json @@ -0,0 +1,11 @@ +{ + "description": "aswinrout.is-a.dev", + "repo": "https://github.com/AswinCreates/aswincreates.github.io", + "owner": { + "username": "AswinCreates", + "email": "aswin94281@gmail.com" + }, + "record": { + "CNAME": "aswincreates.github.io" + } +} diff --git a/domains/asyncedd.json b/domains/asyncedd.json new file mode 100644 index 000000000..80927cee2 --- /dev/null +++ b/domains/asyncedd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asyncedd", + "email": "isynqquwu@proton.me" + }, + "record": { + "CNAME": "asyncedd.pages.dev" + } +} diff --git a/domains/ataim.json b/domains/ataim.json new file mode 100644 index 000000000..16b849a47 --- /dev/null +++ b/domains/ataim.json @@ -0,0 +1,11 @@ +{ + "description": "For my portofolio", + "repo": "https://ataim9999.github.io/mrataim", + "owner": { + "username": "ataim9999", + "email": "daanprive0@gmail.com" + }, + "record": { + "CNAME": "ataim9999.github.io" + } +} diff --git a/domains/athanasopoulos.json b/domains/athanasopoulos.json new file mode 100644 index 000000000..42d3109ce --- /dev/null +++ b/domains/athanasopoulos.json @@ -0,0 +1,11 @@ +{ + "description": "A personal website, for me.", + "repo": "https://github.com/athanasso/athanasso.github.io", + "owner": { + "username": "athanasso", + "email": "manos.athanasopoulos@yahoo.gr" + }, + "record": { + "CNAME": "athanasso.github.io" + } +} diff --git a/domains/atharv.json b/domains/atharv.json index 23357630c..5613a2fd5 100644 --- a/domains/atharv.json +++ b/domains/atharv.json @@ -1,12 +1,12 @@ -{ - "description": "Personal website for Atharv", - "repo": "https://github.com/realatharv/atharv.github.io", - "owner": { - "username": "realatharv", - "email": "atharv.sbiz@gmail.com", - "twitter": "realatharv" - }, - "record": { - "CNAME": "realatharv.github.io" - } -} +{ + "description": "Personal website for Atharv", + "repo": "https://github.com/realatharv/atharv.github.io", + "owner": { + "username": "realatharv", + "email": "atharv.sbiz@gmail.com", + "twitter": "realatharv" + }, + "record": { + "CNAME": "realatharv.github.io" + } +} diff --git a/domains/atharva.json b/domains/atharva.json index 0f3020159..8b1d4b4fc 100644 --- a/domains/atharva.json +++ b/domains/atharva.json @@ -1,11 +1,14 @@ { - "repo": "https://github.com/atharvalt/atharvalt.github.io", + "repo": "https://github.com/atharvaupadhyay/atharvaupadhyay.github.io", "owner": { - "username": "atharvalt", - "email": "atharva.upadhyay1099@gmail.com", - "discord": "シAtharva#5374" + "username": "atharvaupadhyay", + "email": "atharva.upadhyay1099@gmail.com" }, "record": { - "CNAME": "atharvalt.github.io" + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/athifrahmawan.json b/domains/athifrahmawan.json new file mode 100644 index 000000000..9528ae292 --- /dev/null +++ b/domains/athifrahmawan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ProfRiski", + "email": "profriski10@gmail.com", + "discord": "Athif#3017" + }, + "description": "Athif Rahmawan's Portfolio", + "record": { + "CNAME": "profriski.github.io" + } +} diff --git a/domains/attaditya.json b/domains/attaditya.json deleted file mode 100644 index 225192987..000000000 --- a/domains/attaditya.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "I am Aditya, a Game Developer, a Web Developer, a YouTuber and a Student.", - "repo": "https://github.com/Attachment-Studios/AttAditya", - "owner": { - "username": "Attachment-Studios", - "email": "aditya.adigo@gmail.com" - }, - "record": { - "URL": "https://attaditya.deta.dev" - } -} diff --git a/domains/atzu.json b/domains/atzu.json deleted file mode 100644 index cb47a4583..000000000 --- a/domains/atzu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Atzu's Personal Website", - "repo": "https://github.com/z3ro0k", - "owner": { - "username": "Atzu", - "email": "atzu@nextgenteam.tech" - }, - "record": { - "URL": "https://atzu.studio" - } -} diff --git a/domains/au.json b/domains/au.json new file mode 100644 index 000000000..b96b01370 --- /dev/null +++ b/domains/au.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zzph", + "email": "johnbrettc@gmail.com" + }, + "record": { + "CNAME": "zephyr-1.onrender.com" + } +} diff --git a/domains/august.json b/domains/august.json deleted file mode 100644 index f9ca18f5d..000000000 --- a/domains/august.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "some 16 year old who knows how to code", - "repo": "https://github.com/auguwu", - "record": { - "URL": "https://augu.dev" - }, - "owner": { - "username": "auguwu", - "email": "august@augu.dev" - } -} diff --git a/domains/augustin.json b/domains/augustin.json deleted file mode 100644 index 20cbc1c48..000000000 --- a/domains/augustin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Augustin's personal developer website", - "repo": "https://github.com/AugustinJose1221", - "owner": { - "username": "AugustinJose1221", - "email": "augustinjose1221@gmail.com" - }, - "record": { - "CNAME": "www.augustinjose.com" - } -} diff --git a/domains/auq3l.json b/domains/auq3l.json new file mode 100644 index 000000000..7e02ef3b0 --- /dev/null +++ b/domains/auq3l.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "l3qua", + "email": "lequangthanh260211@gmail.com" + }, + "record": { + "CNAME": "l3qua.github.io" + } +} diff --git a/domains/aura.json b/domains/aura.json new file mode 100644 index 000000000..8a6bce784 --- /dev/null +++ b/domains/aura.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "auravoid", + "email": "github@auravoid.dev" + }, + + "record": { + "CNAME": "aura-is-a-dev.pages.dev" + } +} diff --git a/domains/auras.json b/domains/auras.json new file mode 100644 index 000000000..a20a8d69b --- /dev/null +++ b/domains/auras.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "agnesmonret", + "email": "agnesmoret@proton.me", + "discord": "694917200720429066" + }, + + "record": { + "CNAME": "agnesmonret.github.io" + } +} diff --git a/domains/aus.json b/domains/aus.json new file mode 100644 index 000000000..f5c40ead8 --- /dev/null +++ b/domains/aus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrAkshayAS", + "email": "akshau72p@gmail.com" + }, + "record": { + "URL": "https://mrakshayas.github.io/portfolio/" + } +} diff --git a/domains/austin.json b/domains/austin.json deleted file mode 100644 index bb4796dda..000000000 --- a/domains/austin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Austin's personal developer website", - "repo": "https://github.com/austindyoung", - "owner": { - "username": "austindyoung", - "email": "austin@doesweb.dev" - }, - "record": { - "URL": "http://austindyoung.github.io" - } -} diff --git a/domains/austinleath.json b/domains/austinleath.json deleted file mode 100644 index 4017338b4..000000000 --- a/domains/austinleath.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "AustinLeath", - "email": "austinleath18@gmail.com" - }, - - "record": { - "A": ["153.33.92.51"] - } - } - \ No newline at end of file diff --git a/domains/austino.json b/domains/austino.json new file mode 100644 index 000000000..5d24b4b1f --- /dev/null +++ b/domains/austino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AustinGraphics", + "email": "austinxthomas@gmail.com" + }, + "record": { + "CNAME": "austingraphics.github.io" + } +} diff --git a/domains/auth.json b/domains/auth.json deleted file mode 100644 index b89bf8cf7..000000000 --- a/domains/auth.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, - "record": { - "A": ["199.36.158.100"] - } -} diff --git a/domains/authorises.json b/domains/authorises.json deleted file mode 100644 index 3396108d2..000000000 --- a/domains/authorises.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal portfolio", - "repo": "https://github.com/Authorises/authorises.github.io", - "owner": { - "username": "authorises", - "email": "authorises_alt@outlook.com" - }, - "record": { - "CNAME": "authorises.github.io" - } -} diff --git a/domains/autobean.json b/domains/autobean.json new file mode 100644 index 000000000..d1eb25b2e --- /dev/null +++ b/domains/autobean.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AriesPowv", + "email": "apowvalla26@jesuitmail.org" + }, + "record": { + "A": ["34.111.254.92"] + } +} diff --git a/domains/autodiscover.yash.json b/domains/autodiscover.yash.json new file mode 100644 index 000000000..e95a86598 --- /dev/null +++ b/domains/autodiscover.yash.json @@ -0,0 +1,11 @@ +{ + "description": "Link to my portfolio site.", + "repo": "https://github.com/real-yash/website", + "owner": { + "username": "real-yash", + "email": "connect@real-yash.is-a.dev" + }, + "record": { + "CNAME": "autodiscover.outlook.com" + } +} diff --git a/domains/ave.json b/domains/ave.json index c240dd564..456a3e924 100644 --- a/domains/ave.json +++ b/domains/ave.json @@ -1,5 +1,5 @@ { - "description": "Personal site for github@ayvacs", + "description": "Personal website for @ayvacs", "repo": "https://github.com/ayvacs/ayvacs.github.io", "owner": { "username": "ayvacs", @@ -8,4 +8,4 @@ "record": { "CNAME": "ayvacs.github.io" } -} \ No newline at end of file +} diff --git a/domains/avengers-sonarqube.json b/domains/avengers-sonarqube.json new file mode 100644 index 000000000..fc7696611 --- /dev/null +++ b/domains/avengers-sonarqube.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hxhieu", + "email": "hugh.hoang@gmail.com" + }, + "record": { + "CNAME": "sonaqube.jollyocean-513cc86d.australiaeast.azurecontainerapps.io" + } +} diff --git a/domains/averagepce.json b/domains/averagepce.json new file mode 100644 index 000000000..a0714805f --- /dev/null +++ b/domains/averagepce.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "FaultyFaulty-glitch", + "email": "faultywindows@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/averagepcweb.json b/domains/averagepcweb.json new file mode 100644 index 000000000..628504cd6 --- /dev/null +++ b/domains/averagepcweb.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "FaultyFaulty-glitch", + "email": "", + "discord": "1102928631191322675" + }, + + "record": { + "CNAME": "averagepcweb.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/averse.json b/domains/averse.json new file mode 100644 index 000000000..a01b730f1 --- /dev/null +++ b/domains/averse.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site", + "repo": "https://github.com/AverseABFun/my-site", + "owner": { + "username": "AverseABFun", + "email": "averse.abfun@gmail.com" + }, + "record": { + "CNAME": "averseabfun.github.io" + } +} diff --git a/domains/avg.json b/domains/avg.json index 9facc3b20..c04151cc7 100644 --- a/domains/avg.json +++ b/domains/avg.json @@ -1,12 +1,10 @@ { - "description": "An average developer's blog", - "repo": "https://github.com/AverageHelper/AverageHelper.github.io", "owner": { "username": "AverageHelper", - "email": "avghelper.5fh6g@simplelogin.co", - "twitter": "avghelper" + "email": "", + "mastodon": "@avghelper@average.name" }, "record": { - "URL": "https://averagehelper.github.io" + "URL": "https://average.name" } } diff --git a/domains/avi.json b/domains/avi.json new file mode 100644 index 000000000..7b197271f --- /dev/null +++ b/domains/avi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "avipars", + "email": "isdev@aviparshan.com" + }, + "record": { + "CNAME": "avipars.github.io" + }, + "description": "Personal website with useful links", + "repo": "https://github.com/avipars/avipars.github.io" +} diff --git a/domains/avidevs31.json b/domains/avidevs31.json new file mode 100644 index 000000000..c5ba0bfbe --- /dev/null +++ b/domains/avidevs31.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AviDevs31", + "email": "josealbertotaverazz@gmail.com" + }, + "record": { + "CNAME": "avidevs31.github.io" + } +} diff --git a/domains/avon.json b/domains/avon.json deleted file mode 100644 index 1029e8448..000000000 --- a/domains/avon.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "avonryle", - "discord": "avonryle#3155", - "email": "avonryle@cloudteam.me" - }, - "record": { - "CNAME": "b496390d-18ef-4629-990f-a6bb296f35d6.id.repl.co" - } -} diff --git a/domains/avversion.json b/domains/avversion.json new file mode 100644 index 000000000..adbc9dd3c --- /dev/null +++ b/domains/avversion.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AVVERSION", + "email": "79741360+AVVERSION@users.noreply.github.com" + }, + "record": { + "CNAME": "avversion.github.io" + } +} diff --git a/domains/ax.json b/domains/ax.json deleted file mode 100644 index 92fe9a959..000000000 --- a/domains/ax.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ax's Portfolio", - "repo": "https://github.com/ax-a-dev", - "owner": { - "username": "ax-a-dev", - "email": "ax_a_dev#3122" - }, - "record": { - "URL": "https://axdev.vercel.app" - } -} diff --git a/domains/axay.json b/domains/axay.json new file mode 100644 index 000000000..eed8c68bc --- /dev/null +++ b/domains/axay.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MrAkshayAS", + "email": "", + "discord": "mrakshayas" + }, + "record": { + "URL": "https://mrakshayas.github.io/" + } +} diff --git a/domains/axd.json b/domains/axd.json index eb11f6a16..833de0b33 100644 --- a/domains/axd.json +++ b/domains/axd.json @@ -1,9 +1,9 @@ { "owner": { "username": "alexdhg", - "email": "me@alexdhg.com" + "email": "webmaster@webwarp.ro" }, "record": { - "URL": "https://alexdhg.com" + "URL": "https://webwarp.ro" } } diff --git a/domains/axe.json b/domains/axe.json new file mode 100644 index 000000000..490132d0e --- /dev/null +++ b/domains/axe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "axelawh", + "email": "lewisbrown171@gmail.com" + }, + "record": { + "A": ["195.20.254.54"] + } +} diff --git a/domains/axel.json b/domains/axel.json new file mode 100644 index 000000000..6c2b1dd7b --- /dev/null +++ b/domains/axel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "axelilali", + "email": "axel.ilali@yahoo.fr" + }, + + "record": { + "CNAME": "axel-ilali.com" + } +} diff --git a/domains/axeon.json b/domains/axeon.json new file mode 100644 index 000000000..ece880400 --- /dev/null +++ b/domains/axeon.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ReBlast", + "email": "", + "discord": "poxuizm" + }, + "record": { + "CNAME": "axeon.pages.dev" + } +} diff --git a/domains/axewbotx.json b/domains/axewbotx.json index 5aefb7bc8..8bd73229a 100644 --- a/domains/axewbotx.json +++ b/domains/axewbotx.json @@ -1,12 +1,12 @@ { - "description": "I want to create my personal website, like a portfolio website.", - "repo": "https://github.com/AxewBoTX/axewbotx.github.io", - "owner": { - "username": "AxewBoTX", - "email": "lovedeepbrar54155@gmail.com" - }, - "record": { - "CNAME": "axewbotx.github.io" - } -} - + "description": "Personal Website", + "repo": "https://github.com/AxewBoTX/axewbotx.github.io", + "owner": { + "username": "AxewBoTX", + "email": "lovedeepbrar54155@gmail.com", + "twitter": "@AxewBoTX" + }, + "record": { + "CNAME": "axewbotx.github.io" + } +} diff --git a/domains/axrxvm.json b/domains/axrxvm.json new file mode 100644 index 000000000..c019c3058 --- /dev/null +++ b/domains/axrxvm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AaravMehta59", + "email": "poojaaarav321@gmail.com" + }, + "record": { + "URL": "https://aaravm.me/" + } +} diff --git a/domains/axviii3.json b/domains/axviii3.json deleted file mode 100644 index 3bdce2355..000000000 --- a/domains/axviii3.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "AXVIII3", - "email": "anirbanrc2286@gmail.com" - }, - "record": { - "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": ["v=spf1 include:spf.improvmx.com ~all"] - } -} diff --git a/domains/ayaangrover.json b/domains/ayaangrover.json new file mode 100644 index 000000000..76979c0c2 --- /dev/null +++ b/domains/ayaangrover.json @@ -0,0 +1,12 @@ +{ + "description": "A better link for my personal profile", + "repo": "https://github.com/ayaangrover/ayaangrover.github.io", + "owner": { + "username": "ayaangrover", + "email": "ayaangrover@gmail.com", + "twitter": "@grover_ayaan" + }, + "record": { + "CNAME": "ayaangrover.github.io" + } +} diff --git a/domains/ayaanhaider.json b/domains/ayaanhaider.json new file mode 100644 index 000000000..be4bcecb8 --- /dev/null +++ b/domains/ayaanhaider.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ayaanhaider-dev", + "email": "ayaanhaider.dev@gmail.com" + }, + + "record": { + "CNAME": "ayaanhaider-dev.web.app" + } +} diff --git a/domains/ayan.json b/domains/ayan.json new file mode 100644 index 000000000..6a2ddd062 --- /dev/null +++ b/domains/ayan.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Ghost-67-G", + "discordUserame": "ghost_67_g", + "email": "", + "discord": "1257342894172274758", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.InxyqXdwBXr24GsihCzaEqGi84Z0xotOI_vlu-03PGjOvenB2_55Q7lEFvMLRHTK0AbcuE9pPfqGac4MkULKNoSpAxTJD9wy0oqfaLoKIjcqJTC8e3L23l_-xht8e7Kca8Z87rpHVkb0JZe9svt_w1BZq30GLAwevkZilr7JdS7I-LmArbL7cf0IFU5qpB3FdMVtglx5KoBLT6cyLSR0BOIozBTpe-NspSvpu6rvSFMpbCiLuosXHvRP4KAcqEJPQ2QKLvOUEc53yLry-ws_VOrN5KC-wcb6fLAqVcenilKyW89lLW8mdRq1mLLOuUU2NLLMLZv5YCbM7-bFPKKUEQ.Wst_jjbT4uV1S4oLoiZvDQ.5DQCUGh0EVe6AjQcin_IXOC5UY-p_8hpOVExIF9lRV72K_OfykQdahQ5kLQWJLhUSvzPJHHDw4Z3GgD0OpSCLR3kFtdBKVhuR0bPaikj-x-a6IorOmD_plbXA7Doma-W.UkyrHmdJZXkNLfFqiLARYg" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } + } \ No newline at end of file diff --git a/domains/ayanamy.json b/domains/ayanamy.json deleted file mode 100644 index 44fe32ed3..000000000 --- a/domains/ayanamy.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "AyanAmy's About Page", - "repo": "https://github.com/jy1263/jy1263.github.io", - "owner": { - "username": "jy1263", - "email": "", - "twitter": "jy126orjy126" - }, - "record": { - "URL": "https://jy1263.github.io" - } -} diff --git a/domains/ayinaki.json b/domains/ayinaki.json new file mode 100644 index 000000000..3400f69bd --- /dev/null +++ b/domains/ayinaki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ayinaki", + "email": "ayinakidev@gmail.com" + }, + "record": { + "CNAME": "ayinaki.github.io" + } +} diff --git a/domains/aymouwu.json b/domains/aymouwu.json new file mode 100644 index 000000000..9e620ceca --- /dev/null +++ b/domains/aymouwu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotAymo", + "email": "ninecraftoff@outlook.com" + }, + "record": { + "CNAME": "usest1.netro.host" + } +} diff --git a/domains/ayoungmanwithanoldsoul.json b/domains/ayoungmanwithanoldsoul.json new file mode 100644 index 000000000..ff9f8ecfc --- /dev/null +++ b/domains/ayoungmanwithanoldsoul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ayoungmanwithanoldsoul", + "email": "paoloandrewpomar@gmail.com" + }, + "record": { + "CNAME": "ayoungmanwithanoldsoul.github.io" + } +} diff --git a/domains/ayushmansarkar.json b/domains/ayushmansarkar.json new file mode 100644 index 000000000..406f5b71d --- /dev/null +++ b/domains/ayushmansarkar.json @@ -0,0 +1,11 @@ +{ + "description": "To Host my personal website :)", + "repo": "https://github.com/AyushmanSarkar/ayushman-sarkar.github.io", + "owner": { + "username": "AyushmanSarkar", + "email": "aayushmans2008@gmail.com" + }, + "record": { + "CNAME": "ayushmansarkar.github.io" + } +} diff --git a/domains/ayushshivaji.json b/domains/ayushshivaji.json index f3c9a0645..06b071f40 100644 --- a/domains/ayushshivaji.json +++ b/domains/ayushshivaji.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "ayushclashroyale", + "email": "ayushclashroyale@gmail.com" + }, - { - "owner": { - "username": "ayushclashroyale", - "email": "ayushclashroyale@gmail.com" - }, - - "record": { - "CNAME": "ayushclashroyale.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "ayushclashroyale.github.io" + } +} diff --git a/domains/ayushtiwari.json b/domains/ayushtiwari.json new file mode 100644 index 000000000..2ade8b3f8 --- /dev/null +++ b/domains/ayushtiwari.json @@ -0,0 +1,12 @@ +{ + "description": "ayushtiwari.is-a.dev for my portfolio website", + "repo": "https://github.com/aaayushh7/myPortfolio.git", + "owner": { + "username": "aaayushh7", + "email": "", + "discord": "_aaayushh" + }, + "record": { + "URL": "https://ayushtiwari.co" + } +} diff --git a/domains/ayxdacat.json b/domains/ayxdacat.json new file mode 100644 index 000000000..0c9415d87 --- /dev/null +++ b/domains/ayxdacat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ayxkaddd", + "email": "bladeec1ty@protonmail.com" + }, + "record": { + "URL": "https://ayxdacat.lol" + } +} diff --git a/domains/azeem.json b/domains/azeem.json new file mode 100644 index 000000000..4b38bf4b7 --- /dev/null +++ b/domains/azeem.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/azeemidrisi/azeemidrisi.github.io", + "owner": { + "username": "azeemidrisi", + "email": "azeemidrisi@protonmail.com" + }, + "record": { + "CNAME": "azeemidrisi.github.io" + } +} diff --git a/domains/azeez.json b/domains/azeez.json new file mode 100644 index 000000000..d3e6c3f7f --- /dev/null +++ b/domains/azeez.json @@ -0,0 +1,22 @@ +{ + "description": "azeez.is-a.dev", + "repo": "https://github.com/azizbna/azizbna.github.io", + "owner": { + "username": "azizbna", + "email": "", + "discord": "azeezbna" + }, + "record": { + "A": [ + "185.199.109.153", + "185.199.110.153", + "185.199.111.153", + "185.199.108.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/azhammakestrash.json b/domains/azhammakestrash.json new file mode 100644 index 000000000..3880745f5 --- /dev/null +++ b/domains/azhammakestrash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AzhamProdLive", + "email": "websitedomain.regroup588@passinbox.com" + }, + "record": { + "CNAME": "azhammakestrash.pages.dev" + } +} diff --git a/domains/azw.json b/domains/azw.json new file mode 100644 index 000000000..05a6c5f32 --- /dev/null +++ b/domains/azw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AzureZeng", + "email": "weedycn@outlook.com" + }, + "record": { + "CNAME": "azurezeng.com" + } +} diff --git a/domains/b.json b/domains/b.json new file mode 100644 index 000000000..522a54005 --- /dev/null +++ b/domains/b.json @@ -0,0 +1,11 @@ +{ + "description": "vugiabao1337 subdomain", + "repo": "https://github.com/VuGiaBao1337/vugiabao1337.github.io", + "owner": { + "username": "VuGiaBao1337", + "email": "ahihidiscord@gmail.com" + }, + "record": { + "CNAME": "vugiabao1337.github.io" + } +} diff --git a/domains/b0q.json b/domains/b0q.json new file mode 100644 index 000000000..b766ef36d --- /dev/null +++ b/domains/b0q.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "qbebo", + "email": "qqqbeboo@yahoo.com", + "discord": "897238854510211143" + }, + + "record": { + "CNAME": "qbebo.github.io" + } +} diff --git a/domains/b4iterdev.json b/domains/b4iterdev.json new file mode 100644 index 000000000..63ec735c4 --- /dev/null +++ b/domains/b4iterdev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "b4iterdev", + "email": "thaimeo200389@gmail.com", + "discord": "480587458908651530" + }, + + "record": { + "CNAME": "b4iterdev.net.eu.org" + } +} diff --git a/domains/ba9.json b/domains/ba9.json new file mode 100644 index 000000000..81b7330a0 --- /dev/null +++ b/domains/ba9.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "d2a59ce26a", + "email": "d2a59.ce26a.1@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/bacherik.json b/domains/bacherik.json new file mode 100644 index 000000000..77e77142d --- /dev/null +++ b/domains/bacherik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BachErik", + "email": "bacherik.info@gmail.com" + }, + "record": { + "CNAME": "bacherik.eu" + } +} diff --git a/domains/bachwumpus.json b/domains/bachwumpus.json deleted file mode 100644 index 3c831d929..000000000 --- a/domains/bachwumpus.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "BachLe2000", - "email": "tinh200974@gmail.com" - }, - "record": { - "CNAME": "web.frawgnu.tk" - } - } - \ No newline at end of file diff --git a/domains/badboy.json b/domains/badboy.json deleted file mode 100644 index 6cdec5f69..000000000 --- a/domains/badboy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Bad Boy/Semant 's Website", - "owner": { - "username": "s3mant", - "email": "contact@semant.is-a.dev" - }, - "record": { - "CNAME": "2755c31d-6389-4f53-8fd7-b83f99037ffd.id.repl.co" - } -} diff --git a/domains/badend.json b/domains/badend.json new file mode 100644 index 000000000..5dfc220b5 --- /dev/null +++ b/domains/badend.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BadEnd777", + "email": "badend777@proton.me" + }, + "description": "👋 Hello, I'm BadEnd, a passionate Full Stack Developer with a solid background in web development. I specialize in creating efficient web solutions and am always seeking opportunities to deliver high-quality work. Feel free to view my personal website, featured projects, and contact information on GitHub.", + "repo": "https://github.com/BadEnd777/Personal-Website", + "record": { + "CNAME": "badend.pages.dev" + } +} diff --git a/domains/badzlan.json b/domains/badzlan.json new file mode 100644 index 000000000..8cc8a3ed1 --- /dev/null +++ b/domains/badzlan.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/badzlan/badzlan.github.io", + "owner": { + "username": "badzlan", + "email": "badzlandhabith05@gmail.com" + }, + "record": { + "CNAME": "badzlan.github.io" + } +} diff --git a/domains/bae.json b/domains/bae.json deleted file mode 100644 index 106221208..000000000 --- a/domains/bae.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Bae's personal website", - "owner": { - "username": "ba-e", - "email": "bae.nyom@gmail.com" - }, - "record": { - "URL": "https://bae.codes" - } -} diff --git a/domains/baer.json b/domains/baer.json new file mode 100644 index 000000000..63bf6a6c3 --- /dev/null +++ b/domains/baer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BaerLKR", + "email": "root@lovirent.eu" + }, + "record": { + "URL": "https://lovirent.eu" + } +} diff --git a/domains/baijiu.yec.json b/domains/baijiu.yec.json deleted file mode 100644 index 02420e017..000000000 --- a/domains/baijiu.yec.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "baijiu.yec", - "repo": "https://github.com/twentwo/baijiu.yec", - "owner": { - "username": "twentwo", - "email": "joneyee22@qq.com" - }, - "record": { - "URL": "https://twentwo.github.io/baijiu.yec" - } -} diff --git a/domains/baka.json b/domains/baka.json new file mode 100644 index 000000000..ea6ceb63b --- /dev/null +++ b/domains/baka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Baka-OP", + "email": "itsmew2468@gmail.com" + }, + "record": { + "CNAME": "baka-op.github.io" + } +} diff --git a/domains/bako.json b/domains/bako.json new file mode 100644 index 000000000..b7f24f50d --- /dev/null +++ b/domains/bako.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "real-kwellercat", + "email": "lucas.rausch.732@k12.friscoisd.org", + "discord": "950189411759456266" + }, + + "record": { + "CNAME": "real-kwellercat.github.io" + } +} diff --git a/domains/ball.mousemoosz.json b/domains/ball.mousemoosz.json deleted file mode 100644 index 48cbc4a07..000000000 --- a/domains/ball.mousemoosz.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "The documentation website for Ball discord bot.", - "owner": { - "username": "MouseMoosz", - "email": "mousemoosz@protonmail.com" - }, - "record": { - "CNAME": "mousemoosz.github.io" - } -} diff --git a/domains/baltraz.json b/domains/baltraz.json new file mode 100644 index 000000000..61d43b7cd --- /dev/null +++ b/domains/baltraz.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Killermaschine88", + "email": "", + "discord": "570267487393021969", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.X7V9A3bj7uW7izQvYtaNyn684nE_FBaWC6kn2U-QVBSmP7TFLZkGnRLAfiv748szEf8Ps3JA6p2fUsdSKY5a9iS6D44dU9NAMmPWyX-MAy5aTFyretWktY4pmi6qKKekdcbSIqApUOEQjaOQR6ZTYFILkIFgjmJIioZEBpgDP_TXU2zbckIBr1wfRSgn7Cu9MfdcsAn6L68F7oqilLh1ZgkyU8YHsJbNmcUXjGeYAbcf6h1ZMDt-iE8df7vkJwiKUYR398JwvxSjxF-ip2vFLZ9hzMkyD3q19zJ29NefOEhhIVdOgHl4aV1CFYPWBzkGpMyIg1k1Eiky8BOu2Qo2Fw.u2fm6QjYJ54XYKASbzyZFg.T8FGfq4es9Rnc9Wv6qTczCRl-GtH40ujE6mbmoTQegCPeUatFiUzRghM8-JLthty6hqtu9iIhhlpE_0LC6kKrcCrbF0iUhqIkVd_gGUkJtQ.1rtLCkkF5gtQsek8m5RjUQ" + }, + + "record": { + "A": ["49.13.78.155"] + } + } + \ No newline at end of file diff --git a/domains/banik.json b/domains/banik.json new file mode 100644 index 000000000..6d44f9b9b --- /dev/null +++ b/domains/banik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chiradeep-Banik", + "email": "chiradeep13@gmail.com" + }, + "record": { + "CNAME": "chiradeep-banik.github.io" + } +} diff --git a/domains/baobao.json b/domains/baobao.json new file mode 100644 index 000000000..5da428973 --- /dev/null +++ b/domains/baobao.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "BaobeierB", + "email": "", + "discord": "246449974118842368", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.C0wpo8p1EPPr_uNYgH54k37cg0KOgTR4ffh_K80TeQHVno2Ud5j7I_1o48pnN6CelRZ-agJsz9D_664qTMic8JcK4Fe2fmS6q35NuqcdPbFc1w3meEFBqUzDU8mqnYSp6cRtWmUq4lxNqVPAfHsd_PPyoXkgOKyTw53gvxiHgHJixRlHX1KTICl5luy3302Mdlmxt4v7aw9dz5ymFmqxJnx4FNLa0gDUhSeQDJmNxF10JRnJTlwM93WuiJziWRcQzYte-ZHtNvqdhfBFdRjHmgCn1i2jkzQx_V6EZuj5iEMVSgNPppV3qR3IKnX21l0nN8YrstYx-r_b07ZbYuwCSQ.iGePXetL26p2_W8kx4SHZQ._P2kI4i9eF4-Ev8yQFuOt22MtZhv68AVAZSNPc0vlyI8Pfet3Ml8VJznqL3cqC2QSddfyRNT4QFZfQF3pRniw486_etwDdc3WIuu9yc7w-s.bw4347sMgh4xVjcsHE6D-A" + }, + + "record": { + "A": ["103.200.29.116"] + } + } + \ No newline at end of file diff --git a/domains/baptiste.json b/domains/baptiste.json new file mode 100644 index 000000000..e0eb2f3ee --- /dev/null +++ b/domains/baptiste.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BapRx", + "email": "rouxbaptiste@outlook.com" + }, + "record": { + "CNAME": "baprx.github.io" + } +} diff --git a/domains/barab.json b/domains/barab.json new file mode 100644 index 000000000..b768b6ac5 --- /dev/null +++ b/domains/barab.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Baraban511", + "email": "", + "discord": "768517258262741024", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DvRDOCaudmWNnNQWCxTSqN5kKvCfKlL6AqaKDC7SEO9hg1wEGdBS0icx47nECYqqMw5MaaVbF9y8U3wyEe6YG2iOLYqASTzMmNd28ejrr4yV5A-KMsJ3qJc-6NnWugS_yl8Yq3iWLLikvkbjzYspBTtaM7Tfb5WzsRkJnmZpKyChPPO2Z0KRXBd23F_7mZDVisZQiOwQusWfVKDVzXHpbKidGVhoXPh-wz8XEHzjqlMXZXjtjE9bj3dT4Ot6RZ1bV6kKPR2dvO8teL-Y7AF7PM9oTrh2wYHyDmdBWoh407u45anfOGxDMbjvMKoIeyXlkHiWTpj_FA5IyJNRwoH9_Q.LPr9qotY_T6XZ434G38I3Q.-yrbQ3FtpMu9ewLmuO-AoCD9jAvfdYX_yWpNslaBf8goAv8I6q5YvLOVbaLBA3Eye8jTF48z1i2CTuKJbhv751x9bmXDN5ttrfpLfSwgrNw.DZMFfhSPM8swRiYFtwRpNw" + }, + + "record": { + "CNAME": "barab.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/bardia.json b/domains/bardia.json index a435952f6..742c62ef0 100644 --- a/domains/bardia.json +++ b/domains/bardia.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "abardia", - "email": "a.bardia@yahoo.de" - }, - "record": { - "CNAME": "abardia.github.io" - } - } - +{ + "owner": { + "username": "abardia", + "email": "a.bardia@yahoo.de" + }, + "record": { + "CNAME": "abardia.github.io" + } +} diff --git a/domains/bark1n.json b/domains/bark1n.json new file mode 100644 index 000000000..9f3276329 --- /dev/null +++ b/domains/bark1n.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Helixoo", + "email": "mailistenebeklion1@gmail.com" + }, + "record": { + "CNAME": "0crsvdst.up.railway.app" + } +} diff --git a/domains/barnacl437.json b/domains/barnacl437.json new file mode 100644 index 000000000..47200c18f --- /dev/null +++ b/domains/barnacl437.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Barnacl437", + "email": "barnacl437@proton.me" + }, + "record": { + "CNAME": "barnacl437.github.io" + } +} diff --git a/domains/bartoszm77.json b/domains/bartoszm77.json index e42611544..00da3b396 100644 --- a/domains/bartoszm77.json +++ b/domains/bartoszm77.json @@ -8,5 +8,5 @@ }, "record": { "CNAME": "b2rt0szm77.github.io" - } + } } diff --git a/domains/bashou.json b/domains/bashou.json deleted file mode 100644 index 856725961..000000000 --- a/domains/bashou.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "bashoudev", - "email": "bashou@luduma.ga", - "twitter": "bashouuu" - }, - "record": { - "URL": "https://bashoudev.ga" - } -} diff --git a/domains/basi.json b/domains/basi.json new file mode 100644 index 000000000..0b56eee0e --- /dev/null +++ b/domains/basi.json @@ -0,0 +1,12 @@ +{ + "description": "Basi's personal website portfolio", + "owner": { + "username": "Basiiii", + "email": "basigraphics@gmail.com", + "discord": "Basi#1056" + }, + + "record": { + "CNAME": "portfolio-6u1.pages.dev" + } +} diff --git a/domains/bast.json b/domains/bast.json deleted file mode 100644 index 302ae95f6..000000000 --- a/domains/bast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Bast's Programming Blog", - "owner": { - "username": "bast0006", - "email": "bast@bast-development.com" - }, - "record": { - "URL": "https://bast-development.com" - } -} diff --git a/domains/baumistlustig.json b/domains/baumistlustig.json deleted file mode 100644 index 5aa7e3a45..000000000 --- a/domains/baumistlustig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "baumistlustig", - "email": "johannes.hoellwerth@protonmail.com" - }, - - "record": { - "URL": "https://baumistlustig.eu" - } -} diff --git a/domains/bbhc.json b/domains/bbhc.json deleted file mode 100644 index cd037c775..000000000 --- a/domains/bbhc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "thetayloredman", - "email": "", - "telegram": "BadBoyHaloCat" - }, - "description": "Personal website", - "record": { - "A": ["167.172.157.69"] - } -} diff --git a/domains/bcraft.json b/domains/bcraft.json new file mode 100644 index 000000000..e186ce30f --- /dev/null +++ b/domains/bcraft.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xuanhaivptthn", + "email": "xuanhaivptthn@gmail.com", + "discord": "379076400394666004" + }, + + "record": { + "CNAME": "xuanhaivptthn.github.io" + } +} diff --git a/domains/bdays.suki.json b/domains/bdays.suki.json index 6b8612c2f..4ae0c87c0 100644 --- a/domains/bdays.suki.json +++ b/domains/bdays.suki.json @@ -4,6 +4,6 @@ "email": "sukimayoo@outlook.com" }, "record": { - "CNAME": "65f74b16-32c4-4c9b-b6ae-8fd70c262487.id.repl.co" + "A": ["69.197.135.204"] } } diff --git a/domains/bean.json b/domains/bean.json new file mode 100644 index 000000000..6440c9d3a --- /dev/null +++ b/domains/bean.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BeanRob", + "email": "bentr99@gmail.com" + }, + "record": { + "CNAME": "beanrob.com" + } +} diff --git a/domains/bear.json b/domains/bear.json index 9109f56fe..3a0935512 100644 --- a/domains/bear.json +++ b/domains/bear.json @@ -1,10 +1,10 @@ { "description": "Bear's Portfolio Website", "repo": "https://github.com/bearts/bearts.github.io", - "owner": { - "username": "bearts", - "email": "anujparihar@yahoo.com", - "twitter": "anujpflash" + "owner": { + "username": "bearts", + "email": "anujparihar@yahoo.com", + "twitter": "anujpflash" }, "record": { "CNAME": "bearts.github.io" diff --git a/domains/beboq.json b/domains/beboq.json deleted file mode 100644 index 2b5b5482c..000000000 --- a/domains/beboq.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "iibeboQ", - "email": "qqqbeboo@yahoo.com" - }, - - "record": { - "CNAME": "2e0e98d2-b08c-4ced-aa5a-47d06b3a7ef0.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/bedrock16.json b/domains/bedrock16.json deleted file mode 100644 index c60d0b402..000000000 --- a/domains/bedrock16.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my website", - "repo": "https://github.com/Bedrock16", - "owner": { - "username": "atharv", - "email": "youbed61@gmail.com" - }, - "record": { - "A": ["34.120.194.28"] - } -} diff --git a/domains/bee.json b/domains/bee.json deleted file mode 100644 index ce0fa62ed..000000000 --- a/domains/bee.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "padlocks", - "email": "", - "twitter": "WeDoBeeVibing", - "discord": "bee!#0001" - }, - "description": "Commission website and links to my social medias.", - "record": { - "CNAME": "enbee.carrd.co" - } -} diff --git a/domains/beersanp.json b/domains/beersanp.json new file mode 100644 index 000000000..64653cb22 --- /dev/null +++ b/domains/beersanp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "beersanp", + "email": "beersanp@duck.com" + }, + "record": { + "CNAME": "beersanp.pages.dev" + } +} diff --git a/domains/ben.json b/domains/ben.json index c305e3a7f..0376f3c46 100644 --- a/domains/ben.json +++ b/domains/ben.json @@ -1,11 +1,19 @@ { - "description": "Ben's personal developer website", - "repo": "https://github.com/stupergenius", "owner": { - "username": "stupergenius", - "email": "ben@bensnider.com" + "username": "justpiple", + "email": "me@benspace.xyz" }, "record": { - "CNAME": "ben.is-a.dev.s3-website.us-east-2.amazonaws.com" + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/benet.json b/domains/benet.json new file mode 100644 index 000000000..07107c052 --- /dev/null +++ b/domains/benet.json @@ -0,0 +1,19 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/JohnnyMoneJohnny/JohnnyMoneJohnny.github.io", + "owner": { + "username": "JohnnyMoneJohnny", + "email": "okbutwhoaskedlikefr@gmail.com" + }, + "record": { + "A": [ + "185.199.111.153", + "185.199.108.153", + "185.199.110.153", + "185.199.109.153" + ], + "MX": ["mx1.improvmx.com","mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + + } +} diff --git a/domains/benjo.json b/domains/benjo.json index a76f250b0..ae40b2c76 100644 --- a/domains/benjo.json +++ b/domains/benjo.json @@ -5,6 +5,6 @@ "twitter": "BughawBenjo" }, "record": { - "CNAME": "09a88fc1-344d-44cf-8b92-98cc1383dff6.id.repl.co" + "CNAME": "benjo.pages.dev" } } diff --git a/domains/bennett1412.json b/domains/bennett1412.json new file mode 100644 index 000000000..3333e558c --- /dev/null +++ b/domains/bennett1412.json @@ -0,0 +1,12 @@ +{ + "description": "Deploying my portfolio website", + "repo": "https://github.com/bennett1412/portfolio2.0", + "owner": { + "username": "bennett1412", + "email": "bennettmadavana@gmail.com", + "twitter": "@MadavanaB" + }, + "record": { + "CNAME": "bennett1412.github.io" + } +} \ No newline at end of file diff --git a/domains/beno.json b/domains/beno.json deleted file mode 100644 index 9c0ceb3e8..000000000 --- a/domains/beno.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Beno's personal developer website", - "repo": "https://github.com/benosambinu/benosambinu.github.io", - "owner": { - "username": "benosambinu", - "email": "benosbs@gmail.com" - }, - "record": { - "CNAME": "benosambinu.github.io" - } -} diff --git a/domains/bento64.json b/domains/bento64.json index 6a2a57b03..ab1f33d02 100644 --- a/domains/bento64.json +++ b/domains/bento64.json @@ -1,13 +1,11 @@ - - { - "description": "I need a great looking (sub)domain for my website", - "repo": "https://github.com/bento64/bento64.github.io", - "owner": { - "username": "bento64", - "email": "bento64@disroot.org" - }, - "record": { - "CNAME": "bento64.github.io" - } - } - +{ + "description": "I need a great looking (sub)domain for my website", + "repo": "https://github.com/bento64/bento64.github.io", + "owner": { + "username": "bento64", + "email": "bento64@disroot.org" + }, + "record": { + "CNAME": "bento64.github.io" + } +} diff --git a/domains/benz.json b/domains/benz.json new file mode 100644 index 000000000..31ea72a70 --- /dev/null +++ b/domains/benz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MicroBenz", + "email": "microbenz.prob@gmail.com" + }, + "record": { + "CNAME": "microbenz.in.th" + } +} diff --git a/domains/bernalvarela.json b/domains/bernalvarela.json new file mode 100644 index 000000000..045eb30b8 --- /dev/null +++ b/domains/bernalvarela.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bernalvarela", + "email": "bernalvarela@gmail.com" + }, + "record": { + "CNAME": "bernalvarela.github.io" + } +} diff --git a/domains/bernardofoegbu.json b/domains/bernardofoegbu.json new file mode 100644 index 000000000..a3d0e71ac --- /dev/null +++ b/domains/bernardofoegbu.json @@ -0,0 +1,11 @@ +{ + "description": "I want to use it for hosting my portfolio site", + "repo": "https://github.com/O-BERNARDOFOEGBU/my-portfolio", + "owner": { + "username": "O-BERNARDOFOEGBU", + "email": "obinnaofoegbu71@gmail.com" + }, + "record": { + "CNAME": "o-bernardofoegbu.github.io" + } +} diff --git a/domains/berry.json b/domains/berry.json index 40581dbbe..7a824a956 100644 --- a/domains/berry.json +++ b/domains/berry.json @@ -1,11 +1,11 @@ { - "description": "Berry's developer website", - "owner": { - "username": "AhmedBaari", - "email": "ahmed4baari@gmail.com", - "instagram": "berryciouss" - }, - "record": { - "CNAME": "cname.short.io" - } + "description": "Berry's developer website", + "owner": { + "username": "AhmedBaari", + "email": "ahmed4baari@gmail.com", + "instagram": "berryciouss" + }, + "record": { + "CNAME": "cname.short.io" + } } diff --git a/domains/berzcodetechnologies.json b/domains/berzcodetechnologies.json new file mode 100644 index 000000000..cd0f090d3 --- /dev/null +++ b/domains/berzcodetechnologies.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BerzCode", + "email": "saurabhkirve@gmail.com" + }, + "record": { + "A": ["154.41.233.131"] + } +} diff --git a/domains/berzerk.json b/domains/berzerk.json new file mode 100644 index 000000000..cd0f090d3 --- /dev/null +++ b/domains/berzerk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BerzCode", + "email": "saurabhkirve@gmail.com" + }, + "record": { + "A": ["154.41.233.131"] + } +} diff --git a/domains/beta.json b/domains/beta.json deleted file mode 100644 index 8eb6eae64..000000000 --- a/domains/beta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, - "record": { - "URL": "https://register.is-a.dev" - } -} diff --git a/domains/betsthebest.json b/domains/betsthebest.json new file mode 100644 index 000000000..065ae2d9c --- /dev/null +++ b/domains/betsthebest.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Betsthebest", + "email": "bets.hassoun@gmail.com" + }, + "record": { + "CNAME": "betsthebest.github.io" + } +} diff --git a/domains/bhardwaj.json b/domains/bhardwaj.json new file mode 100644 index 000000000..fdb97f8e2 --- /dev/null +++ b/domains/bhardwaj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rohanbhardwaj205", + "email": "71399@cgcjhanjeri.in" + }, + "record": { + "CNAME": "rohanbhardwaj205.github.io" + } +} diff --git a/domains/bhargav.json b/domains/bhargav.json index 27dc03188..e1ae30b2a 100644 --- a/domains/bhargav.json +++ b/domains/bhargav.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "bhargavmehta01", - "email": "bhargav.mehta01@gmail.com" - }, - "record": { - "CNAME": "bhargavmehta01.github.io" - } + "owner": { + "username": "bhargavmehta01", + "email": "bhargav.mehta01@gmail.com" + }, + "record": { + "CNAME": "bhargavmehta01.github.io" + } } diff --git a/domains/bhavesh-acquaintsoft.json b/domains/bhavesh-acquaintsoft.json index de9f54e47..ae0eebc6a 100644 --- a/domains/bhavesh-acquaintsoft.json +++ b/domains/bhavesh-acquaintsoft.json @@ -9,4 +9,3 @@ "CNAME": "bhavesh-acquaintsoft.github.io" } } - diff --git a/domains/bhavesh-p-patel.json b/domains/bhavesh-p-patel.json new file mode 100644 index 000000000..9c440d847 --- /dev/null +++ b/domains/bhavesh-p-patel.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/Bhavesh-p-Patel/Bhavesh-p-Patel.github.io", + "owner": { + "username": "Bhavesh-p-Patel", + "email": "" + }, + "record": { + "CNAME": "Bhavesh-p-Patel.github.io" + } +} diff --git a/domains/bhavishya.json b/domains/bhavishya.json deleted file mode 100644 index 9ddb9f3b1..000000000 --- a/domains/bhavishya.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "BH00TXD", - "email": "ghost25112006@gmail.com" - }, - - "record": { - "A": ["164.132.74.251"] - } - } - \ No newline at end of file diff --git a/domains/bhavitha.json b/domains/bhavitha.json new file mode 100644 index 000000000..ea83c0394 --- /dev/null +++ b/domains/bhavitha.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/nightcoder26/bhavitha", + "owner": { + "username": "nightcoder26", + "email": "", + "twitter": "night_coder26" + }, + "record": { + "CNAME": "nightcoder26.github.io" + } +} diff --git a/domains/bhavyasingh.json b/domains/bhavyasingh.json new file mode 100644 index 000000000..52bbd7c88 --- /dev/null +++ b/domains/bhavyasingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BhavyaSingh2611", + "email": "bhavyasingh2611@outlook.com" + }, + "record": { + "CNAME": "bhavyasingh2611.github.io" + } +} diff --git a/domains/bhushankhopkarr.json b/domains/bhushankhopkarr.json new file mode 100644 index 000000000..b82eb5336 --- /dev/null +++ b/domains/bhushankhopkarr.json @@ -0,0 +1,12 @@ +{ + "description": "This subdomain is a redirection to my personal portfolio", + "repo": "https://github.com/bhushankhopkarr/bhushankhopkarr.github.io", + "owner": { + "username": "bhushankhopkarr", + "email": "bhushankhopkar06@gmail.com", + "twitter": "bhushankhopkrr" + }, + "record": { + "CNAME": "bhushankhopkarr.github.io" + } +} diff --git a/domains/bibhu.json b/domains/bibhu.json new file mode 100644 index 000000000..fa2afbeb4 --- /dev/null +++ b/domains/bibhu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bibs24", + "email": "bibhuprasadsaha4@gmail.com" + }, + "record": { + "CNAME": "bibs24.github.io" + }, + "description": "Personal Portfolio" +} diff --git a/domains/bigtime.json b/domains/bigtime.json new file mode 100644 index 000000000..036a9718a --- /dev/null +++ b/domains/bigtime.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mxl0s", + "email": "contact@milosv.co" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/biko.json b/domains/biko.json new file mode 100644 index 000000000..f30299260 --- /dev/null +++ b/domains/biko.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website that will be used as an introduction to me, how to contact me, my blog posts and more", + "repo": "https://github.com/Bikoil/bikoil.github.io", + "owner": { + "username": "bikoil", + "email": "devbikoilu@gmail.com", + "twitter": "BikoAni" + }, + "record": { + "CNAME": "bikoil.github.io" + } +} diff --git a/domains/bilal.json b/domains/bilal.json index 4a7b17413..cba83104a 100644 --- a/domains/bilal.json +++ b/domains/bilal.json @@ -1,11 +1,11 @@ { - "description": "BilalBsd's developer website", - "repo": "https://github.com/bilalbsd/bilalbsd.github.io", - "owner": { - "username": "Bilalbsd", - "email": "dev.bilalb@gmail.com" - }, - "record": { - "CNAME": "bilalbsd.github.io" - } + "description": "BilalBsd's developer website", + "repo": "https://github.com/bilalbsd/bilalbsd.github.io", + "owner": { + "username": "Bilalbsd", + "email": "dev.bilalb@gmail.com" + }, + "record": { + "CNAME": "bilalbsd.github.io" + } } diff --git a/domains/billy.json b/domains/billy.json new file mode 100644 index 000000000..7c49e1998 --- /dev/null +++ b/domains/billy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tomlin7", + "email": "billydevbusiness@gmail.com" + }, + "record": { + "URL": "https://tomlin7.github.io" + } +} diff --git a/domains/bimarsha.json b/domains/bimarsha.json new file mode 100644 index 000000000..a4195f796 --- /dev/null +++ b/domains/bimarsha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Bimarsha69", + "email": "bimarshathapa2@gmail.com" + }, + "record": { + "CNAME": "bimarsha69.github.io" + } +} diff --git a/domains/bin.sono.json b/domains/bin.sono.json new file mode 100644 index 000000000..7901ef9bd --- /dev/null +++ b/domains/bin.sono.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "getSono", + "email": "julianwolf2013@outlook.de", + "discord": "1222250424309121145" + }, + + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/bing-chilling.json b/domains/bing-chilling.json new file mode 100644 index 000000000..6d44456a6 --- /dev/null +++ b/domains/bing-chilling.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheUnium", + "email": "ooooooooooooothereal@gmail.com" + }, + + "record": { + "CNAME": "theunium.github.io" + } +} diff --git a/domains/bintang1302.json b/domains/bintang1302.json new file mode 100644 index 000000000..75994e8dc --- /dev/null +++ b/domains/bintang1302.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Bintang1302", + "email": "", + "discord": "881796102142185504", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NxNl7iqPLlu2R6PI7WeNjQ3DKnxMPUe4m6yjt9wDu4VQFk-lyi2DlXx8YQNZY0e1yKeYFAbPUv_0hHLMhRK-mPQfUmyr1EGxi90HlfxPj7Z5SiNuQ0JOcCdz7LIbajRsRznaWPDt-fz7nSyQvrR8qTo3TLKPCe_GtGKzOuY4U4zqs35VByrNnJE0_R4mQuW-KqZPie2kzopM7M4dSVlCDuBiI91uC5HKKcOZ4jq9sf8MnnqXOzh0C7vFRYq-k_7vQ4khJtizfOVJsM8Y9-ioodSwwvzeS-0dfrq_DFwZx68OJcg0VVLy6-Bi1Zf199QWlb39NNqHEDw08Yu1Rzgo5A.Ydq1gSOxnSmBTk93ym-ipA.5cwDdmxhwIxRV4237X9z7At-Up-uL1dQgiQzgKHqrcjP9HBzJlTRnmOvDQEiohF3uWtdL3y4VadRGXOgcF6TKVljeBkSsR3XuEKWDMRwvOY.XB1v5WDnEPOfqjr-ZEzloQ" + }, + "record": { + "A": ["89.213.211.250"] + } +} diff --git a/domains/binwonk.json b/domains/binwonk.json new file mode 100644 index 000000000..b8647c14a --- /dev/null +++ b/domains/binwonk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "binwonk", + "email": "finnwok1@gmail.com" + }, + "record": { + "CNAME": "binwonk.github.io" + } +} diff --git a/domains/biplob.json b/domains/biplob.json index 62139944b..f5daffede 100644 --- a/domains/biplob.json +++ b/domains/biplob.json @@ -1,9 +1,7 @@ { - "description": "Biplob's website", - "repo": "https://github.com/revolutionisme/revolutionisme.github.io", "owner": { "username": "revolutionisme", - "email": "revolutionisme+github@gmail.com" + "email": "revolutionisme@gmail.com" }, "record": { "CNAME": "revolutionisme.github.io" diff --git a/domains/birabittoh.json b/domains/birabittoh.json new file mode 100644 index 000000000..0e04cf4df --- /dev/null +++ b/domains/birabittoh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BiRabittoh", + "email": "andronacomarco@gmail.com" + }, + "record": { + "CNAME": "birabittoh.github.io" + } +} diff --git a/domains/bismuth.json b/domains/bismuth.json new file mode 100644 index 000000000..6ef1961e2 --- /dev/null +++ b/domains/bismuth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bismuthnickel", + "email": "warreneverettstevens@gmail.com" + }, + "record": { + "CNAME": "bismuthnickel.github.io" + } +} diff --git a/domains/bk.json b/domains/bk.json new file mode 100644 index 000000000..0ad102550 --- /dev/null +++ b/domains/bk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hbk671104", + "email": "hbk671104@gmail.com" + }, + "record": { + "CNAME": "hbk671104.github.io" + } +} diff --git a/domains/bkmd.json b/domains/bkmd.json new file mode 100644 index 000000000..baef014e4 --- /dev/null +++ b/domains/bkmd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Soldierplayz6867", + "email": "soldierplayz.tw@gmail.com" + }, + "record": { + "CNAME": "da-1.us.hostns.io" + } +} diff --git a/domains/bkms.json b/domains/bkms.json new file mode 100644 index 000000000..03f3f8128 --- /dev/null +++ b/domains/bkms.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bkmsstudio", + "email": "mmini15354424@gmail.com" + }, + "record": { + "CNAME": "www.bkmsdev.in.th" + } +} diff --git a/domains/blackdx.json b/domains/blackdx.json index a521dcc92..47620b711 100644 --- a/domains/blackdx.json +++ b/domains/blackdx.json @@ -1,12 +1,12 @@ { - "description": "Use is for a little portfolio", - "repo": "https://github.com/blackdx/homepage", - "owner": { - "username": "blackdx", - "email": "blackdxnet@gmail.com", - "twitter": "BlackDX10" - }, - "record": { - "CNAME": "blackdx.github.io" - } -} + "description": "Use is for a little portfolio", + "repo": "https://github.com/blackdx/homepage", + "owner": { + "username": "blackdx", + "email": "blackdxnet@gmail.com", + "twitter": "BlackDX10" + }, + "record": { + "CNAME": "blackdx.github.io" + } +} diff --git a/domains/blackneeed.json b/domains/blackneeed.json new file mode 100644 index 000000000..753435815 --- /dev/null +++ b/domains/blackneeed.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Blackneeed", + "email": "kontododatkowe.marcelclay@gmail.com", + "discord": "928360278683443210" + }, + + "record": { + "CNAME": "blackneeed.github.io" + } + } + \ No newline at end of file diff --git a/domains/blake.json b/domains/blake.json index 1366c9473..d30cc31a8 100644 --- a/domains/blake.json +++ b/domains/blake.json @@ -1,12 +1,12 @@ { - "description": "A redirection to my github page", - "repo": "https://github.com/BlakeH2208", - "owner": { - "username": "BlakeH2208", - "email": "contact@blakehurley.com" - }, + "description": "A redirection to my github page", + "repo": "https://github.com/BlakeH2208", + "owner": { + "username": "BlakeH2208", + "email": "contact@blakehurley.com" + }, - "record": { - "A": ["89.41.169.49"] - } + "record": { + "A": ["89.41.169.49"] + } } diff --git a/domains/blankparticle.json b/domains/blankparticle.json new file mode 100644 index 000000000..08d16d919 --- /dev/null +++ b/domains/blankparticle.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BlankParticle", + "email": "hello@blankparticle.in" + }, + "record": { + "URL": "https://blankparticle.in" + } +} diff --git a/domains/blast.json b/domains/blast.json index d83a94be7..7db4f4bc0 100644 --- a/domains/blast.json +++ b/domains/blast.json @@ -2,7 +2,7 @@ "owner": { "username": "ReBlast", "email": "", - "discord": "Blast#9400" + "discord": "poxuizm" }, "description": "Personal website with links to my social medias, will probably add portfolio", "record": { diff --git a/domains/blazedev.json b/domains/blazedev.json new file mode 100644 index 000000000..e7e4dcdb2 --- /dev/null +++ b/domains/blazedev.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "blaze-099", + "email": "", + "discord": "1186691290759434350", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Drbtx3bqrGce1w55T80jyC9uYEhqb_Hea4djEOiUZhqyASA5RnIwlE30dkNIXLr2ARGyMa-IunKjmUWbVWyDu_KuPPXfGzRqstu_TN0ooplUSySXe2lWHP275PpyfMi2ZlmkWH06BCvWUZqeDZimJXGK-EEBMXOyBfJtP91bA9SpXZ8PSdmvK1nEEjO-G3o7NgB-YvT5hydJ6kx_VvRvAmCewn2VDWUxxaRmFHv9RyolKnuUZDT19Nj0HDooaFHvHMUazbrmHKp7u2ymN3-hhwpaLxjvQ_R1BQNVSnC5zHkNHvxqiIrh3fyqRCpn3YQIpI8FH3AjMOopt8D4ehvt-w.XfKXPgZOGrovfShUJYX10w.Q_92JQs0PCCIqSzlIgnqbSGSSkH1BmLZn6x2nYOOMpuD2YYSU1R8utzksWRYsCWoZ4U7ZPYrboTidItRKMHSvZ3nyZl4fDiYfPhsfHJV3TY.JW-lUBRmYsjUqFoCsAH_vA" + }, + + "record": { + "CNAME": "sparkling-faloodeh-1fda87.netlify.app" + } + } + diff --git a/domains/blazyflash.json b/domains/blazyflash.json new file mode 100644 index 000000000..e2c936c81 --- /dev/null +++ b/domains/blazyflash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Thanatoslayer6", + "email": "thanatoslayer6@gmail.com" + }, + "record": { + "URL": "https://ballzy.vercel.app/" + } +} diff --git a/domains/blc.json b/domains/blc.json new file mode 100644 index 000000000..d8aa33beb --- /dev/null +++ b/domains/blc.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BLCXD", + "email": "blctoblc223@gmail.com", + "discord": "723837167499083788" + }, + + "record": { + "CNAME": "blcpage.github.io" + } +} diff --git a/domains/blek.json b/domains/blek.json new file mode 100644 index 000000000..529fead20 --- /dev/null +++ b/domains/blek.json @@ -0,0 +1,13 @@ +{ + "description": "blek is a dev", + "owner": { + "username": "b1ek", + "email": "me@blek.codes" + }, + "record": { + "A": ["185.130.226.115"], + "AAAA": [ + "2a05:b40:0:570:4563:92af:9a56:7fc8" + ] + } +} diff --git a/domains/blema.json b/domains/blema.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/blema.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/blindstudios.json b/domains/blindstudios.json new file mode 100644 index 000000000..bf854552b --- /dev/null +++ b/domains/blindstudios.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "urasdbwd", + "email": "", + "discord": "291889282032074752", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.F299V2wTYMNurO2uHOa8VcSRKYBCoUAdCf7UfkKbP6j1p-eUNWwfACF3-MRC87QJgLQ6oOsup94_Mog8jx1nk--qGdtI_MJCzeg1CxdE-O3c6pQKFRT-f-EpksF3SlOC3ZpiVoYr8xRDOk0Z9YJ5Kp9YgS4nX53e32q_YAHrxIBn982VbfkSMuWgN8XNVtELx4V9k2Mm3FUVxxcUenS7RK8E9bkN9J2yytst3fOKeP3Y1RGqmx-lK9IpIJoOacz8O-O47KCBEo5xHuNowLkrxA4ZKh9_buapeBKLwKMN0L9WgaABYE5gYJ16Hu3nPV9am3QAvJa9UJKtMNPJNg1Ytg.eVZIak0vT5zOE5bRpJ-4Nw.0nvLUiumNwnzS-In3p_LxfltkRH42IFB7ORkWyNlQAPj73PyFksbHfwgah43wCTCH7Nn4M324xg_JiHKBdUXneagncW2cuPzQM-hXt1E0-E.bl3U_qohdjGOIOejzipLJA" + }, + + "record": { + "A": ["193.149.164.209"] + } + } + \ No newline at end of file diff --git a/domains/blitzbrian.json b/domains/blitzbrian.json new file mode 100644 index 000000000..e836d0948 --- /dev/null +++ b/domains/blitzbrian.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "blitzbrian", + "email": "brianvoorbij@gmail.com", + "discord": "814555302178455604" + }, + + "record": { + "CNAME": "blitzbrian.github.io" + } +} diff --git a/domains/blob2763.json b/domains/blob2763.json new file mode 100644 index 000000000..61cd102b9 --- /dev/null +++ b/domains/blob2763.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Blob2763", + "email": "blob2763@gmail.com" + }, + "record": { + "CNAME": "blob2763.github.io" + } +} diff --git a/domains/blog.aditya.json b/domains/blog.aditya.json deleted file mode 100644 index 571526b5f..000000000 --- a/domains/blog.aditya.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "description": "A Subdomain For My Blogs!!", - "repo": "https://github.com/icancodebeauty/blog", - "owner": { - "username": "icancodebeauty", - "email": "ishqaddy@gmail.com", - "twitter": "CodeWithAadi" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] - } -} diff --git a/domains/blog.alora.json b/domains/blog.alora.json new file mode 100644 index 000000000..90785db87 --- /dev/null +++ b/domains/blog.alora.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com", + "discord": "1236292707371057216" + }, + "record": { + "CNAME": "project-graphql-blog-sable.vercel.app" + } +} diff --git a/domains/blog.areen-c.json b/domains/blog.areen-c.json new file mode 100644 index 000000000..558f42f8b --- /dev/null +++ b/domains/blog.areen-c.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com" + }, + "record": { + "CNAME": "blog-areen.pages.dev" + } +} diff --git a/domains/blog.areen.json b/domains/blog.areen.json new file mode 100644 index 000000000..8241cfe7b --- /dev/null +++ b/domains/blog.areen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "areen-c", + "email": "areenelhaq@gmail.com" + }, + "record": { + "CNAME": "areencx.pages.dev" + } +} diff --git a/domains/blog.crazo7924.json b/domains/blog.crazo7924.json new file mode 100644 index 000000000..d0708682e --- /dev/null +++ b/domains/blog.crazo7924.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "crazo7924", + "email": "", + "discord": "466605393309859840", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WnVEogXILKQlj-jvgWzBYV4EQBNJpb4o31g6aGeiNfpBUziSFOH_A_RYdluWZEm4SN6rwsgh4Ca6BD1FLP-pGkalakxUu22u6oFGPHfclABR0FzYUTwT2ePhQbcCQE0kj_scrL_lUCrWTXfqqu9daPVkKsZSGFR_XtT5stUtwcA_eNuRiRgCB5oteS1Clo3gfWrCIB-XfwUONGfHnm8w_XwiatvVxAV4SMGwh2nNH9lYjLT23rGmO2hd9jptO8GHbNJJWSsndM5D_BIhf1bnDtmuIN3DWciaR9ijmZI5g-CfbkGbph0zhOi4N88eBsdL4Bku5Cu4GnR0_zkjK27cfw.lf05n5TGJ5ekai6Qi7gbdQ.FwSEtzo_z9amY4qpwKLzLct9mtbnkKUEWFSrKlnqv01uRRu1lKQV9_YdU8eZ3UtY0H4wL6iZSrECZPcFxGqGaUl6DIQLc1-jgODQHQNyLzp0WTlMbKcWXCRS80eITxXR.ZaVvxYEKWd03U5gQXIofEw" + }, + + "record": { + "CNAME": "hashnode.network" + } + } + diff --git a/domains/blog.crystal.json b/domains/blog.crystal.json deleted file mode 100644 index b1f3d4071..000000000 --- a/domains/blog.crystal.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Blog", - "owner": { - "username": "crystalbajgai", - "email": "crystalbajgai@gmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } -} diff --git a/domains/blog.dhruva.json b/domains/blog.dhruva.json deleted file mode 100644 index 6a513ff40..000000000 --- a/domains/blog.dhruva.json +++ /dev/null @@ -1,11 +0,0 @@ - -{ - "description": "my hashnode blog", - "owner": { - "username": "carrotfarmer", - "email": "dhruvas17068@gmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } -} diff --git a/domains/blog.hafi.json b/domains/blog.hafi.json new file mode 100644 index 000000000..e1e6cf8ea --- /dev/null +++ b/domains/blog.hafi.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "HafiTheCat", + "email": "", + "discord": "hafi_the_cat" + }, + "description": "A personal Blog", + "repo": "https://github.com/HafiTheCat/hafis_code_continuum", + "record": { + "CNAME": "hafis-code-continuum.netlify.app" + } +} diff --git a/domains/blog.joetroll.json b/domains/blog.joetroll.json new file mode 100644 index 000000000..e4c3b635f --- /dev/null +++ b/domains/blog.joetroll.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "trolljoe", + "email": "joetechtok@proton.me", + "discord": "1054945019137630278" + }, + "record": { + "CNAME": "blogjoetroll.pages.dev" + } +} diff --git a/domains/blog.quincetart10.json b/domains/blog.quincetart10.json new file mode 100644 index 000000000..c672e92e3 --- /dev/null +++ b/domains/blog.quincetart10.json @@ -0,0 +1,12 @@ +{ + "description": "Personal blog", + "repo": "https://github.com/QuinceTart10/blog", + "owner": { + "username": "QuinceTart10", + "email": "", + "discord": "862644161156218891" + }, + "record": { + "CNAME": "quincetart10.github.io" + } +} diff --git a/domains/blog.ron.json b/domains/blog.ron.json new file mode 100644 index 000000000..00d554fcb --- /dev/null +++ b/domains/blog.ron.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsrn", + "email": "shalom@itsron.space" + }, + "record": { + "CNAME": "itsrn.github.io" + } +} diff --git a/domains/blog.sanooj.json b/domains/blog.sanooj.json new file mode 100644 index 000000000..aca9695ac --- /dev/null +++ b/domains/blog.sanooj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sanoojes", + "email": "sanoojes6371@gmail.com" + }, + "record": { + "CNAME": "sanoojes.github.io" + } +} diff --git a/domains/blog.shaunfurtado.json b/domains/blog.shaunfurtado.json new file mode 100644 index 000000000..6f2790dcd --- /dev/null +++ b/domains/blog.shaunfurtado.json @@ -0,0 +1,12 @@ +{ + "description": "Blog Website for Shaun Furtado", + "repo": "https://github.com/Shaunfurtado/DevHavok", + "owner": { + "username": "Shaunfurtado", + "email": "shaunf1801@gmail.com" + }, + "record": { + "CNAME": "shaunfurtado.github.io" + } + } + diff --git a/domains/blog.syntaxloopers.json b/domains/blog.syntaxloopers.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/blog.syntaxloopers.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/blog.terra.json b/domains/blog.terra.json deleted file mode 100644 index ca6370219..000000000 --- a/domains/blog.terra.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Blog - a simple blog site/dairy for TerraPlayz! I hope to see you again.", - "repo": "https://github.com/terraplayz/blog-cf", - "owner": { - "username": "terraplayz", - "email": "github@om.is-a.dev", - "twitter": "DaRealOmxpro" - }, - "record": { - "CNAME": "blog-cf-bu7.pages.dev" - } -} diff --git a/domains/blog.uvw.json b/domains/blog.uvw.json new file mode 100644 index 000000000..c7e27f95e --- /dev/null +++ b/domains/blog.uvw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "The-Intruder", + "email": "ruj1nuvp8@mozmail.com" + }, + "record": { + "A": ["192.227.173.73"] + } +} diff --git a/domains/blog.vornexx.json b/domains/blog.vornexx.json new file mode 100644 index 000000000..d73de74da --- /dev/null +++ b/domains/blog.vornexx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vornex-gh", + "email": "ajay.ramnath8812@gmail.com" + }, + "record": { + "CNAME": "blogvornexx.pages.dev" + } +} diff --git a/domains/blog.whine.json b/domains/blog.whine.json deleted file mode 100644 index 372134a0b..000000000 --- a/domains/blog.whine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" - }, - "description": "whi_ne's blog", - "record": { - "CNAME": "blog-production-f684.up.railway.app" - } -} diff --git a/domains/blogs.aakanksha.json b/domains/blogs.aakanksha.json index 9fb453d71..abeac535f 100644 --- a/domains/blogs.aakanksha.json +++ b/domains/blogs.aakanksha.json @@ -1,11 +1,11 @@ { - "description": "Aakanksha's Blog", - "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", - "owner": { - "username": "aakankshabhende", - "email": "aakanksha0407@gmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } - } \ No newline at end of file + "description": "Aakanksha's Blog", + "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", + "owner": { + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/blogs.adityabh.json b/domains/blogs.adityabh.json new file mode 100644 index 000000000..9131029a5 --- /dev/null +++ b/domains/blogs.adityabh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AdityaBhattacharya1", + "email": "ec6isyf0@anonaddy.me" + }, + "record": { + "CNAME": "blogs-b2q.pages.dev" + } +} diff --git a/domains/bloomy.json b/domains/bloomy.json new file mode 100644 index 000000000..0e7f06322 --- /dev/null +++ b/domains/bloomy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BloomyInDev", + "email": "bastien.luben@gmail.com" + }, + "record": { + "URL": "https://www.bloomyindev.me" + } +} diff --git a/domains/blox.json b/domains/blox.json index 19df95c45..7bfad7a0e 100644 --- a/domains/blox.json +++ b/domains/blox.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "soudblox", - "email": "nick8x@gmail.com" - }, - "record": { - "CNAME": "soudblox.github.io" - } -} + "owner": { + "username": "soudblox", + "email": "nick8x@gmail.com" + }, + "record": { + "CNAME": "soudblox.github.io" + } +} diff --git a/domains/blue.json b/domains/blue.json index 58c6e1510..ff330ce92 100644 --- a/domains/blue.json +++ b/domains/blue.json @@ -1,12 +1,12 @@ { - "description": "A newbie Python developer who wants to learn more about web design and Python development.", - "repo": "https://github.com/Jimmy-Blue/jimmy-blue.github.io", + "description": "My personal site, for introducing myself.", + "repo": "https://github.com/b1ue-dev/b1ue-dev.github.io", "owner": { - "username": "Jimmy-Blue", - "email": "ngolong1396@hotmail.com", - "twitter": "JimmyBlue00" + "username": "B1ue-Dev", + "email": "b1uedev@outlook.com", + "twitter": "b1uedev" }, "record": { - "CNAME": "jimmy-blue.github.io" + "CNAME": "b1ue-dev.github.io" } } diff --git a/domains/blueberry.json b/domains/blueberry.json index cbffb1225..057acd8d4 100644 --- a/domains/blueberry.json +++ b/domains/blueberry.json @@ -1,11 +1,11 @@ -{ - "description": "My personal website", - "repo": "https://github.com/NgVGB/NgVGB.github.io", - "owner": { - "username": "NgVGB", - "email": "dangnguyen101191@gmail.com" - }, - "record": { - "CNAME": "NgVGB.github.io" - } -} +{ + "description": "My personal website", + "repo": "https://github.com/NgVGB/NgVGB.github.io", + "owner": { + "username": "NgVGB", + "email": "dangnguyen101191@gmail.com" + }, + "record": { + "CNAME": "NgVGB.github.io" + } +} diff --git a/domains/bluemoon.json b/domains/bluemoon.json new file mode 100644 index 000000000..77b8d8ac3 --- /dev/null +++ b/domains/bluemoon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amitbartfeld", + "email": "amitbartfeld@gmail.com" + }, + "record": { + "CNAME": "amithost.com" + } +} diff --git a/domains/bluesky01st.json b/domains/bluesky01st.json deleted file mode 100644 index 92a139e07..000000000 --- a/domains/bluesky01st.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "BlueSky01st", - "email": "mincraft206127@outlook.com" - }, - "record": { - "CNAME": "blog.bluesky01st.eu.org" - } -} diff --git a/domains/blueysh.json b/domains/blueysh.json index 786440bd6..a01bdd3d1 100644 --- a/domains/blueysh.json +++ b/domains/blueysh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "blueysh", - "email": "jan.santi@icloud.com" - }, - "record": { - "URL": "https://blueysh.me" - } + "owner": { + "username": "blueysh", + "email": "jan.santi@icloud.com" + }, + "record": { + "URL": "https://blueysh.me" + } } diff --git a/domains/bmbs.json b/domains/bmbs.json new file mode 100644 index 000000000..935cf410a --- /dev/null +++ b/domains/bmbs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BaamBuus", + "email": "bitternoah864@gmail.com" + }, + "record": { + "CNAME": "baambuus.github.io" + } +} diff --git a/domains/bmhien.json b/domains/bmhien.json new file mode 100644 index 000000000..287c931e2 --- /dev/null +++ b/domains/bmhien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bm-hien", + "email": "buiminhhien001@gmail.com" + }, + "record": { + "CNAME": "bm-hien.github.io" + } +} diff --git a/domains/bnyro.json b/domains/bnyro.json index c0ea96d4e..685ba0ca3 100644 --- a/domains/bnyro.json +++ b/domains/bnyro.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/Bnyro/bnyro.github.io", - "owner": { - "username": "Bnyro", - "email": "bnyro@tutanota.com" - }, - "record": { - "CNAME": "bnyro.github.io" - } -} + "repo": "https://github.com/Bnyro/bnyro.github.io", + "owner": { + "username": "Bnyro", + "email": "bnyro@tutanota.com" + }, + "record": { + "CNAME": "bnyro.github.io" + } +} diff --git a/domains/bob.json b/domains/bob.json new file mode 100644 index 000000000..496a2b1c4 --- /dev/null +++ b/domains/bob.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website", + "repo": "https://github.com/Rubinskiy/rubinskiy.github.io", + "owner": { + "username": "Rubinskiy", + "email": "", + "discord": "rubinskiy#5258" + }, + "record": { + "CNAME": "rubinskiy.github.io" + } +} diff --git a/domains/bob16077.json b/domains/bob16077.json new file mode 100644 index 000000000..938aa9a82 --- /dev/null +++ b/domains/bob16077.json @@ -0,0 +1,12 @@ +{ + "description": "A personal page that also gives information on my projects", + "repo": "https://github.com/Bob16077/bob16077.github.io", + "owner": { + "username": "bob16077", + "email": "", + "discord": "bob16077777" + }, + "record": { + "CNAME": "bob16077.github.io" + } +} diff --git a/domains/bobbrown.json b/domains/bobbrown.json deleted file mode 100644 index ba0202d5c..000000000 --- a/domains/bobbrown.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My portfolio website!", - "repo": "https://github.com/BobBrown1/BobBrown1.github.io", - "owner": { - "username": "BobBrown1", - "email": "bob.brown.the.dev@gmail.com" - }, - "record": { - "CNAME": "bob-brown.info" - } -} diff --git a/domains/bobert.json b/domains/bobert.json new file mode 100644 index 000000000..0c598842d --- /dev/null +++ b/domains/bobert.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "real-kwellercat", + "email": "lucas.rausch.732@k12.friscoisd.org" + }, + "record": { + "CNAME": "issuelucas.pages.dev" + } +} diff --git a/domains/bombacat.json b/domains/bombacat.json new file mode 100644 index 000000000..585e09437 --- /dev/null +++ b/domains/bombacat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bomba.cat", + "email": "bledion.morina@hotmail.com" + }, + + "record": { + "CNAME": "bomba-cat.github.io" + } +} diff --git a/domains/books.json b/domains/books.json new file mode 100644 index 000000000..09792f56b --- /dev/null +++ b/domains/books.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "showkinglu", + "email": "", + "discord": "1284363590601805845", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JJz6sWHFHJXcBrAhqxCZAA2V4SzMpQ-D6WuX15qcPHombBZ2d1jsT7Tb3j4OX0nrR8XTKdsKlxXdeTZ1yY7YLXw9T_TJ28Zgbuo0M5KyU9Ejqc6IPlm4FvJ6DcNKWyq40cq9BdNdcFhzUuRv_Me6g4aLeFjhjR-LJLOLmHMs4GPDJ2-V-MAekWaVHl-Y8VAdwpFuQ2Ve7DV7cBrdbHd4nX8wVGk-Eq65AR_VyUFo0GeiPKjiIejKCnIwopOQW_1KxPhtE1LTov8uNloaN7ZGv6MAdCdFXOkKjHFEmKuPtPf6YgVsAMDjdaULPlvhRemtFqqmzbGEqiQiexzEf2wWfA.RkvKnVVxmdCpuToki3hgvw.J4tL5aFuCX4oNIIuur76DKAYw1uiWWGfIhV7Bwxjl5EBZUqnwQ42zMOLLZqpvaiICk-siW4pt5MSgdAzGeP_8bEIuMS0kJLkqpXdf-NrSU8.a3kNHAcGn9TjQ4oE11leqw" + }, + + "record": { + "A": ["172.104.67.159"] + } + } + \ No newline at end of file diff --git a/domains/boolean44.json b/domains/boolean44.json index cde6bc82b..fdac8f8cc 100644 --- a/domains/boolean44.json +++ b/domains/boolean44.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/boolean44-repos/boolean44-repos.github.io", - "owner": { - "username": "boolean44-repos", - "email": "serenitypalmer10@gmail.com" - }, - "record": { - "CNAME": "boolean44-repos.github.io" - } - } \ No newline at end of file + "repo": "https://github.com/boolean44-repos/boolean44-repos.github.io", + "owner": { + "username": "boolean44-repos", + "email": "serenitypalmer10@gmail.com" + }, + "record": { + "CNAME": "boolean44-repos.github.io" + } +} diff --git a/domains/borboss.json b/domains/borboss.json new file mode 100644 index 000000000..47bfd26e5 --- /dev/null +++ b/domains/borboss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "borboss", + "email": "bobbarosshasnoemail@gmail.com" + }, + "record": { + "CNAME": "borboss.github.io" + } +} diff --git a/domains/boredcodebyk.json b/domains/boredcodebyk.json index 35083dd51..57a1e176f 100644 --- a/domains/boredcodebyk.json +++ b/domains/boredcodebyk.json @@ -3,7 +3,7 @@ "repo": "https://github.com/boredcodebyk/boredcodebyk.github.io", "owner": { "username": "boredcodebyk", - "email": "" + "email": "khromabyk+dev@gmail.com" }, "record": { "CNAME": "boredcodebyk.github.io" diff --git a/domains/boris1993.json b/domains/boris1993.json index 1df9959bc..c79b3d1c3 100644 --- a/domains/boris1993.json +++ b/domains/boris1993.json @@ -5,6 +5,6 @@ }, "description": "boris1993.is-a.dev", "record": { - "CNAME": "boris1993.github.io" + "URL": "https://www.boris1993.com" } } diff --git a/domains/boseong.json b/domains/boseong.json new file mode 100644 index 000000000..66e10fd24 --- /dev/null +++ b/domains/boseong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "2paperstar", + "email": "lee@paperst.ar" + }, + "record": { + "CNAME": "paperst.ar" + } +} diff --git a/domains/bot.creeperita104.json b/domains/bot.creeperita104.json new file mode 100644 index 000000000..034cc8ed5 --- /dev/null +++ b/domains/bot.creeperita104.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "creeperita09", + "email": "creeper@104.is-a.dev" + }, + "record": { + "CNAME": "icahomesvr2022.freeddns.org" + } +} diff --git a/domains/bot.esb.json b/domains/bot.esb.json new file mode 100644 index 000000000..b410132ce --- /dev/null +++ b/domains/bot.esb.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "149485703+EducatedSuddenBucket@users.noreply.github.com", + "discord": "1167825360151380032" + }, + + "record": { + "A": ["69.197.135.203"] + } + } + diff --git a/domains/bot.riskymh.json b/domains/bot.riskymh.json deleted file mode 100644 index 6608dea8a..000000000 --- a/domains/bot.riskymh.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Discord Bot Website", - "repo": "https://github.com/RiskyMH/RiskyBOT", - "owner": { - "username": "RiskyMH", - "discord": "RiskyMH#0182", - "email": "" - }, - "record": { - "URL": "https://riskymh.github.io/RiskyBOT" - } - } - diff --git a/domains/botlab.json b/domains/botlab.json new file mode 100644 index 000000000..93f4c368d --- /dev/null +++ b/domains/botlab.json @@ -0,0 +1,10 @@ +{ + "description": "DBD(NO CODE)", + "owner": { + "username": "Priyansxu", + "email": "cloudypriyanshu@gmail.com" + }, + "record": { + "A": ["75.2.60.5"] + } +} \ No newline at end of file diff --git a/domains/botolbaba.json b/domains/botolbaba.json index 70b20e6f3..a45cb17e5 100644 --- a/domains/botolbaba.json +++ b/domains/botolbaba.json @@ -1,12 +1,12 @@ { - "description": "Linktr Clone", - "repo": "https://github.com/BotolMehedi/botolmehedi.github.io", - "owner": { - "username": "BotolMehedi", - "email": "thebotolbaba@gmail.com", - "twitter": "botolbaba" - }, - "record": { - "CNAME": "botolmehedi.github.io" - } + "description": "Linktr Clone", + "repo": "https://github.com/BotolMehedi/botolmehedi.github.io", + "owner": { + "username": "BotolMehedi", + "email": "thebotolbaba@gmail.com", + "twitter": "botolbaba" + }, + "record": { + "CNAME": "botolmehedi.github.io" + } } diff --git a/domains/bots.json b/domains/bots.json deleted file mode 100644 index b09ba86af..000000000 --- a/domains/bots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Bots personal developer website", - "repo": "https://github.com/Bicepsfako", - "owner": { - "username": "Bicepsfako", - "email": "bicepsfako@gmail.com" - }, - "record": { - "CNAME": "vascular-barnacle-zfdxk5mcunu4qasmwk8n14na.herokudns.com" - } -} diff --git a/domains/bots.trung.json b/domains/bots.trung.json new file mode 100644 index 000000000..d57ee1ee1 --- /dev/null +++ b/domains/bots.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "CNAME": "bots-website.pages.dev" + } +} diff --git a/domains/botspointer.json b/domains/botspointer.json deleted file mode 100644 index a3a17c9bb..000000000 --- a/domains/botspointer.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "discord service for bots free", - "owner": { - "username": "Ihzy-Dev", - "email": "sksksdev@my.com" - }, - "record": { - "CNAME": "dns.techhost.live" - } -} diff --git a/domains/botstatusdashboard.json b/domains/botstatusdashboard.json new file mode 100644 index 000000000..a1c2744f5 --- /dev/null +++ b/domains/botstatusdashboard.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Hjgaming", + "email": "", + "discord": "811259286977773599", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjFFTTvfvazAbsxqPLPi6mJrNoA9kiqnXlC9IATa7cSwrhxbFfDPZ-fm2AeJ0FM9N6yYOEZ2O0B7hO3d51HqlfxLPqQUK_upLmk1Q7B2JQD7oFtfW635eESdXF9PCbxGFyyQiPxUinQv3xmkQnnd5-4E6YzBJZtjuSVsbEUGm6UUCAjy34srUuBJUivDRiJg5DZncH9S9cAXeTaSqcD9NPUweqfafaoNkS_lbcB_i5D41mMNc2sPXKG0dvNrhp0Af92fZp2SPvQULLTU23HKERHLqq_A-OkumqGxorvIcLGd-IZwcH52wpsKlHblPp-13ZjwwIyRut3avYCiorUYuQ.GNt_fXgKV-pxY7-QLWDgEw.so8siEQ2sk6rBDsVzbOIfaO3WcL-OWHrOkHOxB7AgT0gVAYUVBJS1e-lbFkof6UkCG99gEr-HdbL1KoAiOKZBukcScryIgAZepQbPpqtzWE.8GjXmShSO6eEGoSioLPbgQ" + }, + + "record": { + "CNAME": "bot-dashboard-ho5y.onrender.com" + } + } + \ No newline at end of file diff --git a/domains/box.json b/domains/box.json index 4c4da0edf..28c048bd9 100644 --- a/domains/box.json +++ b/domains/box.json @@ -1,16 +1,14 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/Default-Box/website", + "owner": { + "username": "Default-Box", + "email": "", + "twitter": "DefaultBox_", + "discord": "Default Box#8900" + }, - { - "description": "Personal Website", - "repo": "https://github.com/Default-Box/website", - "owner": { - "username": "Default-Box", - "email": "", - "twitter": "DefaultBox_", - "discord": "Default Box#8900" - }, - - "record": { - "CNAME": "Default-Box.github.io" - } - } - + "record": { + "CNAME": "Default-Box.github.io" + } +} diff --git a/domains/boxey.json b/domains/boxey.json new file mode 100644 index 000000000..aede235a9 --- /dev/null +++ b/domains/boxey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "B0XEY", + "email": "gramcooker@gmail.com" + }, + "record": { + "URL": "https://sites.google.com/view/boxey-dev/home?authuser=0" + } +} diff --git a/domains/bqini.json b/domains/bqini.json deleted file mode 100644 index ad825b641..000000000 --- a/domains/bqini.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "bqini", - "email": "", - "twitter": "bqini" - }, - "description": "bqini lol", - "repo": "bqini", - "record": { - "CNAME": "33c90791-55a6-4f5f-b6b4-b0da920ba8ed.id.repl.co" - } -} diff --git a/domains/bracketproto.json b/domains/bracketproto.json new file mode 100644 index 000000000..6a7ebd04b --- /dev/null +++ b/domains/bracketproto.json @@ -0,0 +1,14 @@ +{ + "owner": { + "email": "not specified, refer to discord.", + "username": "not specified, refer to discord.", + "discord": "oxmc7769" + }, + "record": { + "URL": "https://bracketproto.com" + }, + "generator": { + "name": "is-a-dev Config Generator (unofficial, by oxmc)", + "version": "1.0.0" + } +} diff --git a/domains/bradley.json b/domains/bradley.json deleted file mode 100644 index 29a3966c1..000000000 --- a/domains/bradley.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Bradley's website", - "owner": { - "username": "bholbrook73", - "email": "bradley73@gmail.com" - }, - "record": { - "CNAME": "bradleyholbrook.com" - } -} diff --git a/domains/brainproxy.json b/domains/brainproxy.json new file mode 100644 index 000000000..7156dd298 --- /dev/null +++ b/domains/brainproxy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LtBrain", + "email": "brian.j.guan@outlook.com" + }, + "record": { + "A": ["64.227.120.231"] + } +} diff --git a/domains/brandgrandreal.json b/domains/brandgrandreal.json new file mode 100644 index 000000000..1fa6e8d15 --- /dev/null +++ b/domains/brandgrandreal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BrandgrandRealMe", + "email": "BrandonTheDev@proton.me" + }, + "record": { + "CNAME": "brandgrandrealme.github.io" + } +} diff --git a/domains/brandnewwick.json b/domains/brandnewwick.json new file mode 100644 index 000000000..3181bce5b --- /dev/null +++ b/domains/brandnewwick.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "alephdfilms", + "email": "alephdiallo@mail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/brandon-hoffman.json b/domains/brandon-hoffman.json index c3c71908d..5f260934b 100644 --- a/domains/brandon-hoffman.json +++ b/domains/brandon-hoffman.json @@ -1,12 +1,11 @@ { - "description": "Brandon Hoffman's website", - "owner": { - "username": "branhoff", - "email": "", - "linkedin": "https://www.linkedin.com/in/branhoff" - - }, - "record": { - "CNAME": "branhoff.github.io" - } - } \ No newline at end of file + "description": "Brandon Hoffman's website", + "owner": { + "username": "branhoff", + "email": "", + "linkedin": "https://www.linkedin.com/in/branhoff" + }, + "record": { + "CNAME": "branhoff.github.io" + } +} diff --git a/domains/bravestone.json b/domains/bravestone.json deleted file mode 100644 index 768f99ae5..000000000 --- a/domains/bravestone.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Personal website.", - "repo": "https://github.com/itsbravestone", - "owner": { - "username": "itsbravestone", - "email": "imbravestone@zarena.ga", - "twitter": "imbravestone" - }, - "record": { - "URL": "https://imbravestone.ga" - } -} diff --git a/domains/brentspine.json b/domains/brentspine.json new file mode 100644 index 000000000..7a40c510a --- /dev/null +++ b/domains/brentspine.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio and personal project website by @Brentspine", + "owner": { + "username": "brentspine", + "email": "me@brentspine.de", + "twitter": "brentspine", + "discord": "533779674824966154" + }, + "record": { + "URL": "https://brentspine.de" + } +} diff --git a/domains/brnsystems.json b/domains/brnsystems.json new file mode 100644 index 000000000..582164745 --- /dev/null +++ b/domains/brnsystems.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BRNSystems", + "email": "bruno@brn.systems" + }, + "record": { + "CNAME": "brn.systems" + } +} diff --git a/domains/brocco.json b/domains/brocco.json new file mode 100644 index 000000000..9edf58e28 --- /dev/null +++ b/domains/brocco.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "infibrocco", + "email": "", + "discord": "1170290534762422332", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.INVmem4kixZ__O962u4DG4GVeyIqkYZsKiQjD6jVScscMb1XqdOgp9IhGkyd93Q_Kuu0MpJgOh2imWnp9LN81Xixr0DRpADT1S9orBiDvO5Rkf_a8-OuoZlghwj3r9Q9WdCaGm4X7oGkNRUp-neXR4i7MTNfdp2uuKMw-TQ03dEBaQ0NI9U0CsyHBB39vhye68k9emmchAcsCW0e29S77UbjdNcoDkYgKGZctskLDc9AdezJVJAHExtu6sr7HoeSLjmKqpHAPLvxVaGLFB5BHaiRfLyUAGJSngncO5B7hU6TSIHM9FJ6MhyLgRin2TNsHJc4KiSEWY-5sdDQa0THlg.6IJ2lI116heB75n7x1bWMg.lWio4VpiE6RjmASqjeiBj6y7vO-hvZa6T60FRGUiFw4PH5yS83nqPo5pk3PQUAvujuK3oJPCXf33pJvk6TFKseuLHve4YpQTq-qGJBLWJAY._jvDpMlxmzwDjoRa28yYiQ" + }, + + "record": { + "CNAME": "infibrocco.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/brokiem.json b/domains/brokiem.json index 2c54ca794..8c810eb61 100644 --- a/domains/brokiem.json +++ b/domains/brokiem.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "brokiem", + "email": "milyhqvideo@gmail.com" + }, - { - "owner": { - "username": "brokiem", - "email": "milyhqvideo@gmail.com" - }, - - "record": { - "CNAME": "brokiem.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "brokiem.github.io" + } +} diff --git a/domains/bru.json b/domains/bru.json new file mode 100644 index 000000000..cd16e7f30 --- /dev/null +++ b/domains/bru.json @@ -0,0 +1,11 @@ +{ + "description": "Brunos's personal developer website", + "repo": "https://github.com/BrunoWithoutH/BrunoWithoutH.github.io", + "owner": { + "username": "BrunoWithoutH", + "email": "pinheirobrunoevaristo@gmail.com" + }, + "record": { + "CNAME": "brunowithouth.github.io" + } +} diff --git a/domains/brunoff634cyt.json b/domains/brunoff634cyt.json deleted file mode 100644 index b68fd9409..000000000 --- a/domains/brunoff634cyt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My github website", - "repo": "https://github.com/brunoff634cyt/brunoff634cyt.github.io", - "owner": { - "username": "brunoff634cyt", - "email": "brunoff634cyt@gmail.com" - }, - "record": { - "CNAME": "brunoff634cyt.github.io" - } -} diff --git a/domains/bs.json b/domains/bs.json deleted file mode 100644 index e7daac5a3..000000000 --- a/domains/bs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a website for my api", - "repo": "https://github.com/brawlie/api", - "owner": { - "username": "brawlie", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "7b9fd2b3-d702-4577-bcbf-a1a529ad3f3d.repl.co" - } -} diff --git a/domains/bttm.json b/domains/bttm.json deleted file mode 100644 index 46398b418..000000000 --- a/domains/bttm.json +++ /dev/null @@ -1,11 +0,0 @@ - -{ - "owner": { - "username": "BasToTheMax", - "email": "bas@arnold-linda.nl" - }, - "record": { - "A": ["185.234.69.13"] - } -} - \ No newline at end of file diff --git a/domains/bud.json b/domains/bud.json new file mode 100644 index 000000000..8fe0b0852 --- /dev/null +++ b/domains/bud.json @@ -0,0 +1,11 @@ +{ + "description": "Looks nicer than if it were github.io", + "repo": "https://github.com/bud3699/bud3699.github.io", + "owner": { + "username": "bud3699", + "email": "bud3699@gmail.com" + }, + "record": { + "CNAME": "bud3699.github.io" + } +} diff --git a/domains/buffer.json b/domains/buffer.json new file mode 100644 index 000000000..85f9afb98 --- /dev/null +++ b/domains/buffer.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "bufferwise", + "email": "126371417+bufferwise@users.noreply.github.com", + "discord": "790846560229392444" + }, + + "record": { + "CNAME": "bufferwise.netlify.app" + } + } + \ No newline at end of file diff --git a/domains/buko-dev.json b/domains/buko-dev.json new file mode 100644 index 000000000..c22a3f937 --- /dev/null +++ b/domains/buko-dev.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "BukoDEV", + "email": "", + "discord": "539008740826021900", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YuNXpG0-lTwVQMkxn_FAYLEsDj2ey-_j1nAxH4tGeZJIvCDGyCAIB3PTbOPb9rfmIK718ISh19183EOPVouHX5qGB5yINiTbpwKKVpVkOXodMe9-rfk8BlRPVdLzTHmUYNPCO5lJtnJKXJj0DZ-jKh7ifMzYqdzaDHlOCSkwva9vl09-XX-vNl8PHMVDTO1wQF1ojzmxzaCBjuz_UwE9k_MlOQyz22l2HnBN990OYO63dNiC9hHJVR6V3cBiZTRGq9Xq2SWW2JvXxBeoIZWs0mGV5JHd70YnIl_COowQ2Je3T72VGTUwXK_9eixzBUEOgC8s3wQLFvPh5MJbkS0lPg.cWVq2oSU90LZc8VZSL4IrA.yQ9bwBAobrePb2jcOU5SVKQGuTrx98F1qfhnyu4rhAw2aATjsUBn9lnNavSF-TNcM4FXvS2wASedJlvzVwcCAB2jbWh_MeMteu5j4Ad91MYwMKKxU3J40W7xFce9l3FI.5q01GI-LyojgnwFOo26Tbw" + }, + + "record": { + "A": ["193.111.250.109"] + } + } + \ No newline at end of file diff --git a/domains/bulkypanda.json b/domains/bulkypanda.json new file mode 100644 index 000000000..f189c8110 --- /dev/null +++ b/domains/bulkypanda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bulkypanda", + "email": "arya@gummadi.net" + }, + "record": { + "CNAME": "bulkypanda.github.io" + } +} diff --git a/domains/bur.json b/domains/bur.json new file mode 100644 index 000000000..cab2abf79 --- /dev/null +++ b/domains/bur.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "burandby", + "email": "bur.and.by@gmail.com", + "twitter": "burandby", + "discord": "burandby" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/buyer.json b/domains/buyer.json new file mode 100644 index 000000000..58ff75f17 --- /dev/null +++ b/domains/buyer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Meghdut-Mandal", + "email": "meghdut.windows@gmail.com" + }, + "record": { + "CNAME": "d2qfp4li4hsnxe.cloudfront.net" + } +} diff --git a/domains/bwkam.json b/domains/bwkam.json new file mode 100644 index 000000000..a55cd4d0a --- /dev/null +++ b/domains/bwkam.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "bwkam", + "email": "", + "discord": "891997325499719730", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.HvzRNEADseLE6CXj6lrEWhsz68_vtnxY3KTtnSJBS_bHfeW7gUhKbUrDZ_Gk0yYVx3qXaHqS1_nWSdISvOa5tuIHxtmNUgmyTEHyAFGX54XZG3dQNS8SML4nMpjsRJ2DcCtfS6YKiTJXgmpVkAoaT1ELqR299iCYbow5j_V4zuYl0t6Les81GlP1Yu2jADmVy9hsjBegFORxL_uB9ZSQd81X0SX7mhtwSxSN3Xmuy5Cx7BRaP5lWIhJ6C95TaF0hes68wCR9qx3IXy4FlGuVzDn4pxz53il4dcdB-a1HBTA73PYEKqX4xFe1nxQOTT9ZBClJJHUHgOjsA_rzeqiXNw.h3Xp8Uv02qaNkcfS16pB3Q.jy9JW6JovL0B885zSD7ZOndjm3Ec_LTB4r1r848fEHhcCb61GGZ41jStD7v_yKxIyXomakNWfyWipfBPDOQVyQ31OrubyLEmQLw_98gzsvc.XdfD7kDdAxqEt9Tk7v0KlQ" + }, + "record": { + "CNAME": "bwkam.github.io" + } +} diff --git a/domains/bypassrn.json b/domains/bypassrn.json new file mode 100644 index 000000000..a1c34f5e4 --- /dev/null +++ b/domains/bypassrn.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Gauravisdev", + "email": "", + "discord": "1119494339735867422", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pzBM0Ie4fgb-zJ_0jQc_wvhPQXn1Smlfqby_KW4z3xZOsk3FomBiCHqFCcq6nToxqTYsz_aUkZLXwaJjVZ30Z-vKAN1ttgFCnexwxAGwreKsT9gyST1k1icHg3Uay5KJPUNzGeTvd4kSvJ6z76aYu-aU2YEL-bnUAvfCKlzWVlmFHxoVKJ56AZcr9kY8oCegjPS6FNwewO1pF7ie78SEo1l-fY-Np-PWvkEInGJRCGcprpbhNQxaqBfkGItnGkeQV4jr40L3UokvXjbyPbhYLPJROb-AxMZAWvR8ryVQjaSDhTevdZ1xsWJxGBVMKxum3I7FYH7A5Uz_TPrdbKtvmA.mebJqhTod9St7BqPCw398A.v11ADOcJnwiV8_HbsqhVZcFlvsWUTKJEnDyZb0W7p3ezoF5nMrDSWwFiWAlwDk0xXkWE98HGG7dKVGCt4gidQ10Ad5U2-1hmqsVTKAJAj48.Zr6KvC7GxLy7BJ9LDCQoqA" + }, + + "record": { + "CNAME": "gaurav-sto.onrender.com" + } + } + diff --git a/domains/byte.json b/domains/byte.json new file mode 100644 index 000000000..0a3c1e05c --- /dev/null +++ b/domains/byte.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ishan-school", + "email": "ishan.13406@lahartara.sunbeamschools.com" + }, + + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/c.json b/domains/c.json new file mode 100644 index 000000000..da3053a49 --- /dev/null +++ b/domains/c.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/c00l.json b/domains/c00l.json new file mode 100644 index 000000000..e84ec959f --- /dev/null +++ b/domains/c00l.json @@ -0,0 +1,11 @@ +{ + "description": "Heyayyu' game developer", + "repo": "https://github.com/heyayyu/heyyayu.github.io", + "owner": { + "username": "Heyayyu", + "email": "imrbk123abc@gmail.com" + }, + "record": { + "CNAME": "heyayyu.github.io" + } +} diff --git a/domains/caburum.json b/domains/caburum.json new file mode 100644 index 000000000..81d75fa69 --- /dev/null +++ b/domains/caburum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "caburum", + "email": "24cdingwall@gmail.com" + }, + "record": { + "CNAME": "calum-portfolio.pages.dev" + } +} diff --git a/domains/caesar.json b/domains/caesar.json new file mode 100644 index 000000000..cf5c98ed9 --- /dev/null +++ b/domains/caesar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Illupiter", + "email": "lollelxkfo@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/cagdas.json b/domains/cagdas.json new file mode 100644 index 000000000..48b7503ec --- /dev/null +++ b/domains/cagdas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cagdaskemik", + "email": "cagdaskemik@gmail.com" + }, + "record": { + "URL": "https://cagdas.vercel.app" + } +} diff --git a/domains/caiden.json b/domains/caiden.json new file mode 100644 index 000000000..3f3294a1f --- /dev/null +++ b/domains/caiden.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Caiden-P", + "email": "iididhejejdj@gmail.com", + "discord": "850820069310201896" + }, + "record": { + "CNAME": "caiden.onrender.com" + } +} diff --git a/domains/cal.json b/domains/cal.json index 6c270a0e8..5c78b362a 100644 --- a/domains/cal.json +++ b/domains/cal.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Recal", - "email": "recalibratedgh@gmail.com" - }, - "record": { - "URL": "https://github.com/recal" - } - } - +{ + "owner": { + "username": "Recal", + "email": "recalibratedgh@gmail.com" + }, + "record": { + "URL": "https://github.com/recal" + } +} diff --git a/domains/cala.json b/domains/cala.json new file mode 100644 index 000000000..7cbd431f6 --- /dev/null +++ b/domains/cala.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "calamitywoah", + "email": "krivojta@gmail.com", + "discord": "981555580495867964" + }, + + "record": { + "CNAME": "calamitywoah.github.io" + } +} diff --git a/domains/callum.json b/domains/callum.json deleted file mode 100644 index 82334f4f2..000000000 --- a/domains/callum.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My personal site.", - "repo": "https://github.com/cxllm/website", - "owner": { - "username": "cxllm", - "email": "hello@cxllm.xyz", - "twitter": "CX11M" - }, - "record": { - "URL": "https://cxllm.xyz" - } -} diff --git a/domains/callumjt.json b/domains/callumjt.json index 8d829e84b..d16cc03b6 100644 --- a/domains/callumjt.json +++ b/domains/callumjt.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "callumjt", - "email": "cjblack2009@icloud.com" - }, - "record": { - "CNAME": "callumjt.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "callumjt", + "email": "cjblack2009@icloud.com" + }, + "record": { + "CNAME": "callumjt.github.io" + } +} diff --git a/domains/calum.json b/domains/calum.json new file mode 100644 index 000000000..47d46affe --- /dev/null +++ b/domains/calum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "caburum", + "email": "24cdingwall@gmail.com" + }, + "record": { + "URL": "https://caburum.is-a.dev" + } +} diff --git a/domains/cam.json b/domains/cam.json new file mode 100644 index 000000000..22418c5ba --- /dev/null +++ b/domains/cam.json @@ -0,0 +1,20 @@ +{ + "description": "CAM Website", + "repo": "https://github.com/aswinmahesh", + "owner": { + "username": "aswinmahesh", + "email": "aswinmahesh.com+dns@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ], + + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} \ No newline at end of file diff --git a/domains/canavan.json b/domains/canavan.json new file mode 100644 index 000000000..79074c352 --- /dev/null +++ b/domains/canavan.json @@ -0,0 +1,23 @@ +{ + "description": "My little web profile", + "repo": "https://github.com/Ninja-5000/ninja-5000.github.io", + "owner": { + "username": "Ninja-5000", + "email": "", + "discord": "707170199861854209" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/caodoc.json b/domains/caodoc.json new file mode 100644 index 000000000..96bb8e6fc --- /dev/null +++ b/domains/caodoc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "caodoc", + "email": "caodoc@proton.me" + }, + "record": { + "CNAME": "caodoc.github.io" + } +} diff --git a/domains/capivara.json b/domains/capivara.json new file mode 100644 index 000000000..e484dcef0 --- /dev/null +++ b/domains/capivara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gabrielasants", + "email": "gabrielasantos030@gmail.com" + }, + "record": { + "CNAME": "gabrielasants.github.io" + } +} diff --git a/domains/carince.json b/domains/carince.json new file mode 100644 index 000000000..53b3b7f3e --- /dev/null +++ b/domains/carince.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "carince", + "email": "carince.official@gmail.com", + "discord": "carince#0683" + }, + "repo": "https://github.com/carince/carince.github.io", + "record": { + "CNAME": "carince.github.io" + } +} diff --git a/domains/carlo.json b/domains/carlo.json new file mode 100644 index 000000000..76ed83571 --- /dev/null +++ b/domains/carlo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "z1on3", + "email": "panercarlo99@gmail.com" + }, + "record": { + "CNAME": "z1on3.github.io" + } +} diff --git a/domains/carpodi.json b/domains/carpodi.json new file mode 100644 index 000000000..34aa021f6 --- /dev/null +++ b/domains/carpodi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Carpodi", + "email": "itsjahzielgarcia07@gmail.com" + }, + "record": { + "CNAME": "carpodi.github.io" + } +} diff --git a/domains/cashlycash.json b/domains/cashlycash.json deleted file mode 100644 index 3b7e83c84..000000000 --- a/domains/cashlycash.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Cashly_Cash's personal website", - "repo": "https://replit.com/@SH1FT3R/web#main.py", - "owner": { - "username": "CashlyCash", - "email": "arnav000777gupta@gmail.com" - }, - "record": { - "CNAME": "187964e1-d104-4c57-a319-a0d664215bf8.id.repl.co" - } -} diff --git a/domains/caspar.json b/domains/caspar.json deleted file mode 100644 index b62306754..000000000 --- a/domains/caspar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "casparzzz123, Java, Html And Python Developer", - "repo": "https://github.com/casparzzz123", - "owner": { - "username": "casparzzz123", - "email": "casparzzz123@computer4u.com" - }, - "record": { - "CNAME": "letspoop.ga" - } -} diff --git a/domains/casperong.json b/domains/casperong.json new file mode 100644 index 000000000..6cf26194c --- /dev/null +++ b/domains/casperong.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CasperOng", + "email": "casper10528@gmail.com" + }, + + "record": { + "CNAME": "casperong.github.io" + } +} diff --git a/domains/cassie.json b/domains/cassie.json index 91129c159..ed2183c93 100644 --- a/domains/cassie.json +++ b/domains/cassie.json @@ -1,10 +1,10 @@ { + "description": "Personal website", + "repo": "https://github.com/diordnas/diordnas.github.io", "owner": { "username": "Diordnas", - "email": "alessandroeliot@gmail.com" + "email": "cassthepurple@gmail.com" }, - "description": "Personal site, as well as hosting a few tools", - "repo": "https://github.com/diordnas/diordnas.github.io", "record": { "CNAME": "diordnas.github.io" } diff --git a/domains/cat.json b/domains/cat.json new file mode 100644 index 000000000..1a06bbbaf --- /dev/null +++ b/domains/cat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "yunexiz.github.io" + } +} diff --git a/domains/cat.sx9.json b/domains/cat.sx9.json deleted file mode 100644 index 8146434ae..000000000 --- a/domains/cat.sx9.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "SX's Cat Discord Bot Website", - "repo": "SX-9/sx-discord-bot", - "owner": { - "username": "SX-9", - "twitter": "SX_Discord", - "discord": "SX-Spy-Agent#1377", - "email": "sx-91@outlook.com" - }, - "record": { - "CNAME": "20919506-c6ad-42e9-80a8-a027c160e702.id.repl.co" - } -} diff --git a/domains/catdrout.json b/domains/catdrout.json deleted file mode 100644 index ce01b5c75..000000000 --- a/domains/catdrout.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "xcatdrout", - "email": "xcatdrout@proton.me" - }, - "record": { - "CNAME": "site-bwj.pages.dev" - } - } - \ No newline at end of file diff --git a/domains/catfein.json b/domains/catfein.json new file mode 100644 index 000000000..d442f3731 --- /dev/null +++ b/domains/catfein.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alfari24", + "email": "ari@alfari.id" + }, + "record": { + "A": ["194.15.36.220"] + } +} diff --git a/domains/catr3kd.json b/domains/catr3kd.json deleted file mode 100644 index 22df1722b..000000000 --- a/domains/catr3kd.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "CatR3kd", - "email": "oliverlivesay@gmail.com" - }, - "record": { - "URL": "https://catr3kd.repl.co" - } - } - \ No newline at end of file diff --git a/domains/cats.json b/domains/cats.json new file mode 100644 index 000000000..c0cb32f1d --- /dev/null +++ b/domains/cats.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "cat-images.pages.dev" + } +} diff --git a/domains/catto.json b/domains/catto.json deleted file mode 100644 index d8510f82b..000000000 --- a/domains/catto.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "HF1016", - "email": "harrowfung1016@gmail.com" - }, - "record": { - "A": ["140.238.66.154"] - } - } - diff --git a/domains/catto24.json b/domains/catto24.json new file mode 100644 index 000000000..de988c6c4 --- /dev/null +++ b/domains/catto24.json @@ -0,0 +1,12 @@ +{ + "description": "different domain for pages website", + "repo": "https://github.com/catto24/catto24.github.io", + "owner": { + "username": "catto24", + "email": "catto24@proton.me", + "twitter": "catto24_" + }, + "record": { + "CNAME": "catto24.github.io" + } +} diff --git a/domains/cattopytheweb.json b/domains/cattopytheweb.json new file mode 100644 index 000000000..17bb3c419 --- /dev/null +++ b/domains/cattopytheweb.json @@ -0,0 +1,17 @@ +{ + "description": "My personal website and email forwarding", + "repo": "https://github.com/CattopyTheWeb/cattopytheweb.github.io", + "owner": { + "username": "CattopyTheWeb", + "email": "", + "discord": "cattopytheweb404" + }, + "record": { + "URL": "https://cattopytheweb.github.io", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/caz.json b/domains/caz.json index b5a9a7019..c2d06e995 100644 --- a/domains/caz.json +++ b/domains/caz.json @@ -1,12 +1,12 @@ { - "description": "Just Another One Of Those Portfolios.", - "repo": "https://github.com/crazyaccess/crazyaccess.github.io", - "owner": { - "username": "crazyaccess", - "email": "caz@monke.team", - "discord": "crazyaccess#7707" - }, - "record": { - "CNAME": "crazyaccess.github.io" - } + "description": "Just Another One Of Those Portfolios.", + "repo": "https://github.com/crazyaccess/crazyaccess.github.io", + "owner": { + "username": "crazyaccess", + "email": "caz@monke.team", + "discord": "crazyaccess#7707" + }, + "record": { + "CNAME": "crazyaccess.github.io" + } } diff --git a/domains/cc.json b/domains/cc.json index 532b22dd8..fc1a25262 100644 --- a/domains/cc.json +++ b/domains/cc.json @@ -1,12 +1,12 @@ { - "description": "A subdomain for iamcc.github.io", - "repo": "https://github.com/iamcc/iamcc.github.io", - "owner": { - "username": "iamcc", - "email": "sic.hcq@gmail.com", - "twitter": "arm_cc" - }, - "record": { - "CNAME": "iamcc.github.io" - } -} + "description": "A subdomain for iamcc.github.io", + "repo": "https://github.com/iamcc/iamcc.github.io", + "owner": { + "username": "iamcc", + "email": "sic.hcq@gmail.com", + "twitter": "arm_cc" + }, + "record": { + "CNAME": "iamcc.github.io" + } +} diff --git a/domains/ccnicebruh.json b/domains/ccnicebruh.json deleted file mode 100644 index 905eb844c..000000000 --- a/domains/ccnicebruh.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "CcNicebruh", - "email": "tangkeehee2002@gmail.com" - }, - "record": { - "URL": "https://solo.to/ccnicebruh" - } - } - \ No newline at end of file diff --git a/domains/ccortina.json b/domains/ccortina.json new file mode 100644 index 000000000..79cc5bb72 --- /dev/null +++ b/domains/ccortina.json @@ -0,0 +1,10 @@ +{ + "description": "DevCortina Personal Projects Website", + "owner": { + "username": "DevCortina", + "email": "devcortina@proton.me" + }, + "record": { + "URL": "https://cortinadev.vercel.app" + } +} diff --git a/domains/ccrp.json b/domains/ccrp.json deleted file mode 100644 index 7a6c25d13..000000000 --- a/domains/ccrp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "CCRP FiveM", - "repo": "https://craiccity.ccrp.repl.co", - "owner": { - "username": "PatrickDevelopr", - "email": "patrickdev21@gmail.com" - }, - "record": { - "CNAME": "572ca600-be84-4a76-8cf9-986690eaf03b.id.repl.co" - } -} diff --git a/domains/cd.json b/domains/cd.json new file mode 100644 index 000000000..f6c30f430 --- /dev/null +++ b/domains/cd.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website of Yaksh Bariya", + "repo": "https://github.com/thunder-coding/CodingThunder", + "owner": { + "username": "thunder-coding", + "email": "yakshbari4@gmail.com", + "discord": "codingthunder" + }, + "record": { + "CNAME": "thunder-coding.github.io" + } +} diff --git a/domains/cdn-rehanplayz.json b/domains/cdn-rehanplayz.json deleted file mode 100644 index df7feb1a7..000000000 --- a/domains/cdn-rehanplayz.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "A CDN for my files", - "repo": "https://github.com/RehanPlayz/RehanPlayz.github.io", - "owner": { - "username": "RehanPlayz", - "email": "RehanPlayz321@protonmail.com" - }, - "record": { - "A": ["159.89.255.51"], - "TXT": "6ZzT79WA" - } -} diff --git a/domains/cdn.arman.json b/domains/cdn.arman.json index f40f0de31..b195e1f8c 100644 --- a/domains/cdn.arman.json +++ b/domains/cdn.arman.json @@ -1,10 +1,9 @@ { - "description": "Arman's content delivery network", "owner": { "username": "ItzArman09", - "email": "contact@mail.arman.is-a.dev" + "email": "itz.armxn@outlook.com" }, "record": { - "CNAME": "23f4d8ed-6b28-4e13-a9e9-bd913bbb2040.id.repl.co" + "CNAME": "itzarman09.github.io" } } diff --git a/domains/cdn.artix.json b/domains/cdn.artix.json new file mode 100644 index 000000000..8027a27d0 --- /dev/null +++ b/domains/cdn.artix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "alex1028199", + "email": "yu1234u73f.com@gmail.com", + "discord": "834867471885271053" + }, + + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/cdn.badboy.json b/domains/cdn.badboy.json deleted file mode 100644 index 171a0fcb1..000000000 --- a/domains/cdn.badboy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/Bad-Boy-Codes/cdn", - "description": "My static database", - "owner": { - "username": "bad-boy-codes", - "email": "contact@mail.badboy.is-a.dev" - }, - "record": { - "CNAME": "89b424b5-8e2d-4678-93a9-b793cdf6fceb.id.repl.co" - } -} diff --git a/domains/cdn.esb.json b/domains/cdn.esb.json new file mode 100644 index 000000000..1caa482a4 --- /dev/null +++ b/domains/cdn.esb.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "34.120.54.55" + ], + "AAAA": [ + "2600:1901:0:6d85::" + ] + } +} diff --git a/domains/cdn.json b/domains/cdn.json deleted file mode 100644 index 4036ab7f0..000000000 --- a/domains/cdn.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "LellisV2", - "email": "cloud@lellis.tech", - "discord": "Lellis#9405", - "note": "I dont look that much on my email, Fast Respons on Discord." - }, - "description": "I will use it for my CDN to be able to access the files", - "record": { - "A": ["130.162.183.250"] - } -} diff --git a/domains/cdn.mkeko.json b/domains/cdn.mkeko.json new file mode 100644 index 000000000..73934773f --- /dev/null +++ b/domains/cdn.mkeko.json @@ -0,0 +1,14 @@ +{ + "description": "for my zipline", + "repo": "https://github.com/Mkeko", + "owner": { + "username": "Mkeko", + "email": "", + "twitter": "Mkekomc" + }, + "record": { + "A": [ + "69.30.249.53" + ] + } +} \ No newline at end of file diff --git a/domains/cdn.mohammad87115.json b/domains/cdn.mohammad87115.json new file mode 100644 index 000000000..812623f23 --- /dev/null +++ b/domains/cdn.mohammad87115.json @@ -0,0 +1,11 @@ +{ + "description": "I'm using this subdomain to access the place i upload my files easier", + "owner": { + "username": "mohammad87115", + "email": "mohammad87115@gmail.com", + "twitter": "mohammad87115" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/cdn.nziie.json b/domains/cdn.nziie.json index c8f3a22bc..fa85d784a 100644 --- a/domains/cdn.nziie.json +++ b/domains/cdn.nziie.json @@ -6,8 +6,6 @@ "email": "exeyst@gmail.com" }, "record": { - "A": [ - "104.196.232.237" - ] + "CNAME": "edge.redirect.pizza" } } diff --git a/domains/cdn.parsewar.json b/domains/cdn.parsewar.json new file mode 100644 index 000000000..549590ce7 --- /dev/null +++ b/domains/cdn.parsewar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AtharvParsewar", + "email": "atharvparsewar@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/cdn.semant.json b/domains/cdn.semant.json index 252d330e4..7c7b63c69 100644 --- a/domains/cdn.semant.json +++ b/domains/cdn.semant.json @@ -1,11 +1,10 @@ { - "repo": "https://github.com/SemantCodes/cdn", "description": "My static database", "owner": { - "username" : "s3mant", + "username": "s3mant", "email": "contact@semant.is-a.dev" }, "record": { - "CNAME": "89b424b5-8e2d-4678-93a9-b793cdf6fceb.id.repl.co" + "CNAME": "web-0wfb.onrender.com" } } diff --git a/domains/cdn.serstars.json b/domains/cdn.serstars.json new file mode 100644 index 000000000..3922882b7 --- /dev/null +++ b/domains/cdn.serstars.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/SerStars-2/", + "owner": { + "username": "SerStars", + "email": "", + "twitter": "SerStars_lol" + }, + "record": { + "CNAME": "serstars-2.github.io" + } +} diff --git a/domains/cdn.shymike.json b/domains/cdn.shymike.json new file mode 100644 index 000000000..69fd29cba --- /dev/null +++ b/domains/cdn.shymike.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ImShyMike", + "email": "", + "discord": "582648583635992622" + }, + "record": { + "A": [ + "69.197.135.203" + ] + } +} diff --git a/domains/cdn.trung.json b/domains/cdn.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/cdn.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/cdn.xrap1dx.json b/domains/cdn.xrap1dx.json new file mode 100644 index 000000000..1de1dd0ca --- /dev/null +++ b/domains/cdn.xrap1dx.json @@ -0,0 +1,13 @@ +{ + "description": "making my cdn!!!", + "repo": "https://github.com/xrap1dx?tab=repositories", + "owner": { + "username": "xrap1dx", + "email": "sirrapid155@gmail.com" + }, + "record": { + "A": [ + "69.30.249.53" + ] + } +} diff --git a/domains/cdops.json b/domains/cdops.json new file mode 100644 index 000000000..3881fa7e2 --- /dev/null +++ b/domains/cdops.json @@ -0,0 +1,14 @@ +{ + "description": "This is my blogging website", + "repo": "https://github.com/gtamilvanan17", + "owner": { + "username": "gtamilvanan17", + "email": "", + "discord": "gtamilvanan17" + }, + "record": { + "A": [ + "216.24.57.1" + ] + } +} diff --git a/domains/cec.json b/domains/cec.json deleted file mode 100644 index d83c58dd0..000000000 --- a/domains/cec.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a url redirector", - "repo": "https://github.com/w3cy/w3cy", - "owner": { - "username": "w3cy", - "email": "keyv.cec@outlook.com" - }, - "record": { - "CNAME": "84ca4d88-b9b4-449b-ad1b-62743f1d6192.id.repl.co" - } -} diff --git a/domains/ceed.json b/domains/ceed.json new file mode 100644 index 000000000..72bda0f99 --- /dev/null +++ b/domains/ceed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ItsCEED", + "email": "ceed1337@gmail.com" + }, + "record": { + "URL": "https://github.com/itsceed" + } +} diff --git a/domains/centi.json b/domains/centi.json new file mode 100644 index 000000000..d9fea26dd --- /dev/null +++ b/domains/centi.json @@ -0,0 +1,12 @@ +{ + "description": "My personal portfolio", + "repo": "https://github.com/nCenti/portfolio", + "owner": { + "username": "nCenti", + "email": "contactocenti@gmail.com", + "twitter": "Centifn" + }, + "record": { + "CNAME": "nCenti.github.io" + } +} diff --git a/domains/ceon.json b/domains/ceon.json deleted file mode 100644 index c700b6212..000000000 --- a/domains/ceon.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hey, I am Ceon!", - "repo": "https://github.com/internetmagduru", - "owner": { - "username": "internetmagduru", - "email": "ceon@ceon.tech" - }, -"record": { - "URL": "https://ceon.tech" - } -} diff --git a/domains/certurix.json b/domains/certurix.json index 24d1ae248..79bd0dbaa 100644 --- a/domains/certurix.json +++ b/domains/certurix.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Certurix", - "email": "certurix@outlook.fr" - }, - "record": { - "CNAME": "certurix.github.io" - } + "owner": { + "username": "Certurix", + "email": "certurix@outlook.fr" + }, + "record": { + "CNAME": "certurix.github.io" + } } diff --git a/domains/cesarmr.json b/domains/cesarmr.json new file mode 100644 index 000000000..8448a6cce --- /dev/null +++ b/domains/cesarmr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "cesarmr-github", + "email": "c3s1r@proton.me", + "discord": "740861702215565333" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/cfp.json b/domains/cfp.json index b4947c1a0..c45551172 100644 --- a/domains/cfp.json +++ b/domains/cfp.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "cfpwastaken", - "email": "", - "discord": "cfp#7174" - }, - "record": { - "CNAME": "cfp.gotdns.ch" - } -} \ No newline at end of file + "owner": { + "username": "cfpwastaken", + "email": "", + "discord": "cfp (318394797822050315)" + }, + "record": { + "CNAME": "dyn.picoscratch.de" + } +} diff --git a/domains/cgcristi.json b/domains/cgcristi.json new file mode 100644 index 000000000..cf61a3522 --- /dev/null +++ b/domains/cgcristi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "realcgcristi", + "email": "cgcristi@cgcristi.xyz" + }, + "record": { + "CNAME": "realcgcristi.github.io" + } +} + diff --git a/domains/cggaurav.json b/domains/cggaurav.json new file mode 100644 index 000000000..1888149d3 --- /dev/null +++ b/domains/cggaurav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cggaurav", + "email": "cggaurav@u.nus.edu" + }, + "record": { + "URL": "https://cggaurav.net" + } +} diff --git a/domains/chad.json b/domains/chad.json index 409e5eef0..7b42c962e 100644 --- a/domains/chad.json +++ b/domains/chad.json @@ -1,12 +1,12 @@ { - "description": "Chad's GitHub", - "repo": "https://github.com/djsnipa1/djsnipa1.github.io", - "owner": { - "username": "djsnipa1", - "email": "chadboyce@gmail.com", - "twitter": "djsnipa1" - }, - "record": { - "CNAME": "djsnipa1.github.io" - } + "description": "Chad's GitHub", + "repo": "https://github.com/djsnipa1/djsnipa1.github.io", + "owner": { + "username": "djsnipa1", + "email": "chadboyce@gmail.com", + "twitter": "djsnipa1" + }, + "record": { + "CNAME": "djsnipa1.github.io" + } } diff --git a/domains/chadee.json b/domains/chadee.json new file mode 100644 index 000000000..b6f7cd675 --- /dev/null +++ b/domains/chadee.json @@ -0,0 +1,17 @@ +{ + "description": "Chadee website", + "repo": "https://github.com/chadeeeee/chadee-site", + "owner": { + "username": "chadeeeee", + "telegram": "@chadeeeeeeeeee", + "email": "esurginet2011@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/chaey.json b/domains/chaey.json new file mode 100644 index 000000000..cdb0dca57 --- /dev/null +++ b/domains/chaey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qing762", + "email": "threatedblade@outlook.com" + }, + "record": { + "CNAME": "qing-website.onrender.com" + } +} diff --git a/domains/chaman.json b/domains/chaman.json index 5ee5fb288..ca8f27ec9 100644 --- a/domains/chaman.json +++ b/domains/chaman.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "chamanbravo", - "email": "chamanpro9@gmail.com" - }, - "record": { - "URL": "https://chadman.vercel.app" - } + "owner": { + "username": "chamanbravo", + "email": "chamanpro9@gmail.com" + }, + "record": { + "URL": "https://chadman.vercel.app" + } } diff --git a/domains/chanakan.json b/domains/chanakan.json deleted file mode 100644 index f5ad75026..000000000 --- a/domains/chanakan.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "this a link to my website", - "owner": { - "username": "Chanakan55991", - "email": "chanakan5591@chanakancloud.net" - }, - "record": { - "CNAME": "chanakancloud.net" - } -} diff --git a/domains/chandra.json b/domains/chandra.json index ea69e2af9..b753a075b 100644 --- a/domains/chandra.json +++ b/domains/chandra.json @@ -1,10 +1,7 @@ { - "description": "An Data Analyst Portfolio", - "repo": "https://github.com/sekharmalla/portfolio", "owner": { "username": "sekharmalla", - "email": "chandra.malla@msftcommunity.com", - "twitter": "ChandraSMalla" + "email": "sekharmalla.vfx@gmail.com" }, "record": { "CNAME": "sekharmalla.github.io" diff --git a/domains/chandrasekhar.json b/domains/chandrasekhar.json new file mode 100644 index 000000000..4ffae3433 --- /dev/null +++ b/domains/chandrasekhar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chandra-Sekhar-Bala", + "email": "sekhar.chandra.5832@gmail.com" + }, + "record": { + "URL": "https://chandra-sekhar-bala.github.io" + } +} diff --git a/domains/chandsi.json b/domains/chandsi.json new file mode 100644 index 000000000..326b1b010 --- /dev/null +++ b/domains/chandsi.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "Gauravisdev", + "email": "", + "discord": "1119494339735867422", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QGI-jdpZpGtm5id_KBQnUjBud23siGGUxNcDIZlIJeFrkn5yoJnwzkEgvIeCMVJHfVc0s9-au_Ys2GaF7ho1BV0VMiZRec_CDLlXJloYACrJao6GZpgniHi7nEM_yo_ppea0qoSbHdkB78OVLFbdiMGXuQHAUgl93lyvQxpYncxmuoB45Lt4PHPeNI13oA_b2cl-4KJdWnIdZROHV70oiz0HeQtdT4-rOho4sXy_POgF-5U4cQPIRCv7Sn4vkwR5yues9ALzlmOxd6y2sq4oiGCnzfmoiPV9nOxs1y7GolnNQ-xEkMv_C2eLhmL7Dz2Ku0xfvHgqJ6D7GNpokYqwyQ.jmNMhGE5MROTfsXre5BEOQ.SKe9K2hsOV3DYE-UJQCaH46_tw41m_CXwao0xScbwgHIO0AWGaPsxhfrnON43gUmcCpEy9x5ZGYL27qiXB2YAGSJoQwWjamxtMDeySxCmvE.WEUQ4x98SHvxgv2HeQz0sw" + }, + + "record": { + "A": ["76.76.21.21"], + "TXT": ["zoho-verification=zb40348561.zmverify.zoho.in", + "v=spf1 include:zoho.in ~all"], + "MX": ["mx.zoho.in","mx2.zoho.in","mx3.zoho.in"] + } + } + diff --git a/domains/chang.json b/domains/chang.json index 446500884..b956dcb13 100644 --- a/domains/chang.json +++ b/domains/chang.json @@ -1,12 +1,12 @@ { - "description": "Chang's Personal Website", - "repo": "https://github.com/bobbyliu117/bobbyliu117.github.io", - "owner": { - "username": "bobbyliu117", - "email": "", - "twitter": "changisadev" - }, - "record": { - "CNAME": "bobbyliu117.github.io" - } -} \ No newline at end of file + "description": "Chang's Personal Website", + "repo": "https://github.com/bobbyliu117/bobbyliu117.github.io", + "owner": { + "username": "bobbyliu117", + "email": "", + "twitter": "changisadev" + }, + "record": { + "CNAME": "bobbyliu117.github.io" + } +} diff --git a/domains/chankit.json b/domains/chankit.json new file mode 100644 index 000000000..0b7da99fa --- /dev/null +++ b/domains/chankit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ChankitSaini", + "email": "chankit@outlook.in" + }, + "record": { + "CNAME": "chankit.pages.dev" + } +} diff --git a/domains/chaotic.json b/domains/chaotic.json index 8d9701e13..d39268122 100644 --- a/domains/chaotic.json +++ b/domains/chaotic.json @@ -1,12 +1,10 @@ - - { - "repo": "https://github.com/ChaoticChaosTheGreat/chaoticchaosthegreat.github.io", - "owner": { - "username": "ChaoticChaosTheGreat", - "email": "ryan.ryanabraham@gmail.com" - }, - "record": { - "CNAME": "chaoticchaosthegreat.github.io" - } - } - +{ + "repo": "https://github.com/ChaoticChaosTheGreat/chaoticchaosthegreat.github.io", + "owner": { + "username": "ChaoticChaosTheGreat", + "email": "ryan.ryanabraham@gmail.com" + }, + "record": { + "CNAME": "chaoticchaosthegreat.github.io" + } +} diff --git a/domains/charlesbird.json b/domains/charlesbird.json new file mode 100644 index 000000000..1fe618441 --- /dev/null +++ b/domains/charlesbird.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UntoldGam", + "email": "charlesobird+github@outlook.com" + }, + "record": { + "CNAME": "charlesobird.pages.dev" + } +} diff --git a/domains/charlzyx.json b/domains/charlzyx.json deleted file mode 100644 index 675813b47..000000000 --- a/domains/charlzyx.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "charlzyx", - "email": "charlzyx@qq.com" - }, - - "record": { - "A": ["172.21.32.1"] - } - } - diff --git a/domains/chat-with.sx9.json b/domains/chat-with.sx9.json deleted file mode 100644 index 9fc0ab82d..000000000 --- a/domains/chat-with.sx9.json +++ /dev/null @@ -1,10 +0,0 @@ - { - "owner": { - "username": "SX-9", - "email": "satriakrach@gmail.com" - }, - "record": { - "CNAME": "5b57fe59-8f17-4bdf-9ece-d8dde3f9cab0.id.repl.co" - } - } - diff --git a/domains/chat.suki.json b/domains/chat.suki.json deleted file mode 100644 index c0f7312bd..000000000 --- a/domains/chat.suki.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "SukiPlayz", - "email": "sukimayoo@outlook.com" - }, - "record": { - "CNAME": "f8b64fa6-2a44-4922-81bd-4793b4b9291d.id.repl.co" - } -} diff --git a/domains/chat.sxi.json b/domains/chat.sxi.json new file mode 100644 index 000000000..9cc672c6c --- /dev/null +++ b/domains/chat.sxi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Sxinar", + "email": "oshidev@proton.me", + "discord": "1247896918957490198" + }, + + "record": { + "CNAME": "cname.freeflarum.com" + } +} diff --git a/domains/chat.vamtic.json b/domains/chat.vamtic.json new file mode 100644 index 000000000..72e57dc0f --- /dev/null +++ b/domains/chat.vamtic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vamtic", + "email": "vamtic@yahoo.com" + }, + "record": { + "CNAME": "anon.69.mu" + } +} diff --git a/domains/chathub.json b/domains/chathub.json new file mode 100644 index 000000000..5815fb617 --- /dev/null +++ b/domains/chathub.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bhaskaraa45", + "email": "bhaskarmandal369@gmail.com" + }, + "record": { + "A": ["20.198.8.42"] + } +} diff --git a/domains/chauhan-pradip.json b/domains/chauhan-pradip.json new file mode 100644 index 000000000..ed7b33387 --- /dev/null +++ b/domains/chauhan-pradip.json @@ -0,0 +1,11 @@ +{ + "description": "My website", + "repo": "https://github.com/chauhan-pradip/chauhan-pradip.github.io", + "owner": { + "username": "chauhan-pradip", + "email": "" + }, + "record": { + "CNAME": "chauhan-pradip.github.io" + } +} diff --git a/domains/check.json b/domains/check.json new file mode 100644 index 000000000..b14fc31dc --- /dev/null +++ b/domains/check.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/checkmate-os.sx9.json b/domains/checkmate-os.sx9.json index 0efaa1984..fb3a11032 100644 --- a/domains/checkmate-os.sx9.json +++ b/domains/checkmate-os.sx9.json @@ -1,13 +1,13 @@ -{ - "description": "CheckMateOS", - "repo": "https://sx-9.github.io/sx-web-os", - "owner": { - "username": "SX-9", +{ + "description": "CheckMateOS", + "repo": "https://sx-9.github.io/sx-web-os", + "owner": { + "username": "SX-9", "twitter": "SX_Discord", "discord": "SX-Spy-Agent#1377", "email": "sx-91@outlook.com" }, - "record": { - "CNAME": "sx-9.github.io" + "record": { + "CNAME": "sx-9.github.io" } } diff --git a/domains/cheeriomark1.json b/domains/cheeriomark1.json new file mode 100644 index 000000000..eb3541fae --- /dev/null +++ b/domains/cheeriomark1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Cheerio-mark-1", + "email": "DevilDesk2+new_git_001@hotmail.com" + }, + "record": { + "CNAME": "cheerio-mark-1.github.io" + } +} diff --git a/domains/cheftheo.json b/domains/cheftheo.json new file mode 100644 index 000000000..bff35005a --- /dev/null +++ b/domains/cheftheo.json @@ -0,0 +1,11 @@ +{ + "description": "This website represents a portofolio", + "repo": "https://cheftheo.github.io/", + "owner": { + "username": "cheftheo", + "email": "marascu.theodor@gmail.com" + }, + "record": { + "CNAME": "cheftheo.github.io" + } +} diff --git a/domains/chegedouglas.json b/domains/chegedouglas.json new file mode 100644 index 000000000..d2dc596d9 --- /dev/null +++ b/domains/chegedouglas.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LSAfrika", + "email": "lstudiosafrika@gmail.com", + "discord": "1239524915112181791" + }, + + "record": { + "A": ["13.48.207.48"] + } +} diff --git a/domains/chenpeng.json b/domains/chenpeng.json index 491365cd1..143d666de 100644 --- a/domains/chenpeng.json +++ b/domains/chenpeng.json @@ -1,13 +1,11 @@ { "description": "Patrick Chen's develop site", - "repo": "https://github.com/ChpShy/ChpShy.github.io.git", + "repo": "https://github.com/PatrickChen928/patrickchen928.github.io", "owner": { - "username": "chenpeng", - "email": "cp786156072@gmail.com", - "twitter": "chepy2019", - "discord": "Patrick Chen#9900" + "username": "PatrickChen928", + "email": "cp786156072@gmail.com" }, "record": { - "URL": "https://chpshy.github.io" + "URL": "https://patrickchen928.github.io" } } diff --git a/domains/chepsgames.json b/domains/chepsgames.json new file mode 100644 index 000000000..d9d4aff99 --- /dev/null +++ b/domains/chepsgames.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ChepsGames", + "email": "edu.chepsgames@gmail.com" + }, + "record": { + "CNAME": "chepsgames.github.io" + } +} diff --git a/domains/chess.bob16077.json b/domains/chess.bob16077.json new file mode 100644 index 000000000..af3733f54 --- /dev/null +++ b/domains/chess.bob16077.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bob16077", + "discord": "bob16077777", + "email": "" + }, + "record": { + "CNAME": "bob16077.github.io" + } +} diff --git a/domains/chess.json b/domains/chess.json new file mode 100644 index 000000000..a5a247f9d --- /dev/null +++ b/domains/chess.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KrnZmq6AQ1Fb-hWJ1KW25-1f9hLJOGfJHwhuv6fDfLIV6k8gkNUmsv64B5tOdmFLJVN2zzzur6tAqjG7zcYLRGBHGi0-UDOe5V2UBWx7D4k4kjFvX8DrIRSGEKhqwM_vkPKlorR-xgACJ9LMj4ksJIVO8og4KQjiS6jIG6_6C6L5d9ny23xWh8E2jdZKSNpD3dRwUxe58obflq6OX2s8M9q7aWoHDQ0R7Bj6eSkCyastfV6W1L3cPyGB98Ve8Gw9pf9yjUhJGqo2IzMJP5Kov7LZ4mlnb92NjftFDAF9Yl02ufN-k6WvM93bUIJI0kC3Nydo8P1snyEJQthc7aUBOA.bFv4ltUis5UM4V3W1f6FTg.2BMvIE8X5_E63_Z_HvPLvF0DOMH0DbVn3_OnxcQCdTCW93cmSbvF4o_BcRU1eMZNCpwvVV-_XYW7BBnOOL3Ygj2i-gbW6F_IpqFOq_5D1dbWY4ZxLYrgZd2oeH1X5ec8.okGeeD7rEQvR-ZUbaBaBeA" + }, + "record": { + "A": [ + "216.24.57.1" + ] + } +} diff --git a/domains/chethan.json b/domains/chethan.json new file mode 100644 index 000000000..b8d0cdd78 --- /dev/null +++ b/domains/chethan.json @@ -0,0 +1,13 @@ +{ + "description": "Portfolio of Chethan Yadav", + "repo": "https://github.com/chethanyadav456/chethanyadav456.github.io", + "owner": { + "username": "chethanyadav456", + "email": "chethanyadav456@gmail.com", + "twitter": "DenRaaz77190", + "discord": "raaz6" + }, + "record": { + "CNAME": "chethanyadav456.github.io" + } +} diff --git a/domains/chewieleaf.json b/domains/chewieleaf.json new file mode 100644 index 000000000..e29c496f8 --- /dev/null +++ b/domains/chewieleaf.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "chewieleaf", + "email": "cchirrpy@outlook.com", + "discord": "898255050592366642" + }, + + "record": { + "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512" + } +} diff --git a/domains/chgeo.json b/domains/chgeo.json new file mode 100644 index 000000000..e1f8a997d --- /dev/null +++ b/domains/chgeo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chgeo", + "email": "christian.georgi@sap.com" + }, + "record": { + "URL": "https://github.com/chgeo" + } +} diff --git a/domains/chiko.json b/domains/chiko.json new file mode 100644 index 000000000..601618b48 --- /dev/null +++ b/domains/chiko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chikoiko", + "email": "itsmezark05@gmail.com" + }, + "record": { + "CNAME": "chikoiko.github.io" + } +} diff --git a/domains/chikoiko.json b/domains/chikoiko.json new file mode 100644 index 000000000..3cf6c8c5e --- /dev/null +++ b/domains/chikoiko.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for @chikoiko", + "repo": "https://github.com/chikoiko/chikoiko.github.io", + "owner": { + "username": "chikoiko", + "email": "itsmezark05@gmail.com" + }, + "record": { + "CNAME": "chikoiko.github.io" + } +} diff --git a/domains/chino.json b/domains/chino.json index 7bb0dfd5f..7ac2bff70 100644 --- a/domains/chino.json +++ b/domains/chino.json @@ -1,12 +1,13 @@ { - "description": "My personal page", - "repo": "https://github.com/AutumnVN/autumnvn.github.io", - "owner": { - "username": "AutumnVN", - "email": "htuan03@gmail.com", - "twitter": "dvht0" - }, - "record": { - "CNAME": "chino.pages.dev" - } -} + "description": "My website", + "repo": "https://github.com/AutumnVN/autumnvn.github.io", + "owner": { + "username": "AutumnVN", + "email": "autumnvnchino@gmail.com", + "twitter": "autumnvnchino", + "discord": "autumnvn" + }, + "record": { + "CNAME": "chino.pages.dev" + } +} diff --git a/domains/chip.json b/domains/chip.json deleted file mode 100644 index 17e2a5c1b..000000000 --- a/domains/chip.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Krchip's develop site", - "repo": "https://github.com/Krchip/Krchip.github.io", - "owner": { - "username": "Krchip", - "email": "elite7744@gmail.com" - }, - "record": { - "URL": "https://krchip.github.io" - } -} diff --git a/domains/chirag-parikh.json b/domains/chirag-parikh.json new file mode 100644 index 000000000..6fdb7ee8e --- /dev/null +++ b/domains/chirag-parikh.json @@ -0,0 +1,11 @@ +{ + "description": "This is person site", + "repo": "https://github.com/chirag-parikh/chirag-parikh.github.io", + "owner": { + "username": "chirag-parikh", + "email": "" + }, + "record": { + "CNAME": "chirag-parikh.github.io" + } +} diff --git a/domains/chirag.json b/domains/chirag.json new file mode 100644 index 000000000..cc357d28e --- /dev/null +++ b/domains/chirag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ChiragAgg5k", + "email": "chiragaggarwal5k@gmail.com" + }, + "record": { + "CNAME": "profile-website-5qr.pages.dev" + } +} diff --git a/domains/chiragnahata.json b/domains/chiragnahata.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/chiranth.json b/domains/chiranth.json new file mode 100644 index 000000000..4df04a6e9 --- /dev/null +++ b/domains/chiranth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiranthkothari", + "email": "chiranthkothari96@gmail.com" + }, + "record": { + "URL": "https://github.com/chiranthkothari/chiranthkothari" + } +} diff --git a/domains/chirathtimodh.json b/domains/chirathtimodh.json index fc6b81d5f..f9405f063 100644 --- a/domains/chirathtimodh.json +++ b/domains/chirathtimodh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "duesacrifice69", - "email": "chirathtimodh@gmail.com" - }, - "record": { - "URL": "https://chirath.w3spaces.com" - } + "owner": { + "username": "duesacrifice69", + "email": "chirathtimodh@gmail.com" + }, + "record": { + "CNAME": "duesacrifice69.github.io" + } } diff --git a/domains/chitrashrigond.json b/domains/chitrashrigond.json deleted file mode 100644 index 48822d7d2..000000000 --- a/domains/chitrashrigond.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My portfolio", - "repo": "https://github.com/chitrashrigond/chitrashrigond.github.io", - "owner": { - "username": "chitrashrigond", - "email": "chaitragond@gmail.com" - }, - "record": { - "CNAME": "chitrashrigond.github.io" - } -} diff --git a/domains/choudery.json b/domains/choudery.json new file mode 100644 index 000000000..e071797f1 --- /dev/null +++ b/domains/choudery.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Choudery", + "email": "blreaderdammy@gmail.com" + }, + "record": { + "MX": [ + "john.ns.cloudflare.com", + "sharon.ns.cloudflare.com" + ] + }, + "description": "Choudery coding" +} \ No newline at end of file diff --git a/domains/choukseaaryan.json b/domains/choukseaaryan.json new file mode 100644 index 000000000..1d804b4f0 --- /dev/null +++ b/domains/choukseaaryan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "choukseaaryan", + "email": "aaryan2chouksey@gmail.com" + }, + "record": { + "CNAME": "choukseaaryan.github.io" + } +} diff --git a/domains/chrinsieboy.json b/domains/chrinsieboy.json new file mode 100644 index 000000000..794d2b9fa --- /dev/null +++ b/domains/chrinsieboy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chrinsieboy", + "email": "github@chris.friemann.nl" + }, + "record": { + "CNAME": "chrisfriemann.nl" + } +} diff --git a/domains/chris8889.json b/domains/chris8889.json deleted file mode 100644 index c04586cfa..000000000 --- a/domains/chris8889.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "testing", - "owner": { - "username": "Chris8889", - "email": "chris88892@protonmail.com", - "twitter": "Chris8889" - }, - "record": { - "CNAME": "5d931f3a-d63d-4ccf-b14c-5b566fd0c5f0.id.repl.co" - } -} diff --git a/domains/chrischenny.json b/domains/chrischenny.json new file mode 100644 index 000000000..54b11fabc --- /dev/null +++ b/domains/chrischenny.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chrischenny0", + "email": "chris_chenoweth1@baylor.edu" + }, + "record": { + "CNAME": "alamohouse.duckdns.org" + } +} diff --git a/domains/chriscoding.json b/domains/chriscoding.json new file mode 100644 index 000000000..0e0e85aa7 --- /dev/null +++ b/domains/chriscoding.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BestGithubUser1", + "email": "githubuserlol333@gmail.com", + "discord": "735578614476570726" + }, + + "record": { + "CNAME": "bestgithubuser1.github.io" + } +} diff --git a/domains/chrystom.json b/domains/chrystom.json new file mode 100644 index 000000000..7d3d1273d --- /dev/null +++ b/domains/chrystom.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chrystom", + "email": "chrystomt@gmail.com" + }, + + "record": { + "CNAME": "chrystom.github.io" + } +} diff --git a/domains/chutte.json b/domains/chutte.json new file mode 100644 index 000000000..972871ac6 --- /dev/null +++ b/domains/chutte.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "supunsathsara", + "email": "savindusupunsathsara@gmail.com" + }, + "record": { + "CNAME": "next-supun.pages.dev" + } +} diff --git a/domains/ciaobot.json b/domains/ciaobot.json new file mode 100644 index 000000000..3ea0e921a --- /dev/null +++ b/domains/ciaobot.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "Ciao287", + "email": "", + "discord": "687333016921440317" + }, + "record": { + "A": ["144.91.115.195"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/cibucristi.json b/domains/cibucristi.json new file mode 100644 index 000000000..572a79237 --- /dev/null +++ b/domains/cibucristi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cibucristi", + "email": "cibucristi1@gmail.com", + "discord": "773576280150900749" + }, + + "record": { + "CNAME": "cibucristi-dev.pages.dev" + } +} diff --git a/domains/cindy.json b/domains/cindy.json index 62562d874..2acc6ead5 100644 --- a/domains/cindy.json +++ b/domains/cindy.json @@ -1,12 +1,11 @@ { - "description": "portefolio website", - "repo": "https://github.com/cindynatorella/cindynatorella.github.io", - "owner": { - "username": "cindynatorella", - "email": "cindy.e.roullet@gmail.com" - - }, - "record": { - "CNAME": "cindynatorella.github.io" - } - } \ No newline at end of file + "description": "portefolio website", + "repo": "https://github.com/cindynatorella/cindynatorella.github.io", + "owner": { + "username": "cindynatorella", + "email": "cindy.e.roullet@gmail.com" + }, + "record": { + "CNAME": "cindynatorella.github.io" + } +} diff --git a/domains/circular.json b/domains/circular.json new file mode 100644 index 000000000..2f6f67f03 --- /dev/null +++ b/domains/circular.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "circularsprojects", + "email": "levi97646@gmail.com" + }, + "record": { + "URL": "https://circulars.dev" + } +} diff --git a/domains/cirkutry.json b/domains/cirkutry.json new file mode 100644 index 000000000..205279cdb --- /dev/null +++ b/domains/cirkutry.json @@ -0,0 +1,12 @@ +{ + "description": "Personal site", + "repo": "https://github.com/Cirkutry/site", + "owner": { + "username": "Cirkutry", + "email": "", + "discord": "kre0lidge" + }, + "record": { + "CNAME": "cirkutry.github.io" + } +} diff --git a/domains/cisco.json b/domains/cisco.json deleted file mode 100644 index bca5b7fcd..000000000 --- a/domains/cisco.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "franpessoa", - "email": "frandevacc@gmail.com" - }, - "record": { - "CNAME": "frandevacc.bearblog.dev" - } -} diff --git a/domains/civic.json b/domains/civic.json new file mode 100644 index 000000000..eef27a079 --- /dev/null +++ b/domains/civic.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "civic1007", + "email": "", + "discord":"1258033419443503124" + }, + "record": { + "CNAME": "civic1007.pages.dev" + } +} diff --git a/domains/ckateptb.json b/domains/ckateptb.json deleted file mode 100644 index 0faae3ec3..000000000 --- a/domains/ckateptb.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "CKATEPTb", - "email": "taksis@ex.ua" - }, - - "record": { - "A": ["65.108.238.23"] - } - } - \ No newline at end of file diff --git a/domains/ckn.json b/domains/ckn.json deleted file mode 100644 index f1a860096..000000000 --- a/domains/ckn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "ckn is a dev", - "repo": "https://replit.com/@ch1ck3n/cknis-adev#main.py", - "owner": { - "username": "ch1ck3n-byte", - "email": "chcknch1ck3n@gmail.com" - }, - "record": { - "CNAME": "6716ad2d-2adc-4475-a4bb-ea27259fe702.repl.co" - } -} diff --git a/domains/classlink.json b/domains/classlink.json new file mode 100644 index 000000000..36983c952 --- /dev/null +++ b/domains/classlink.json @@ -0,0 +1,12 @@ +{ + "description": "Classlink hidden games?", + "repo": "https://github.com/MassaHex/massahex.github.io", + "owner": { + "username": "MassaHex", + "email": "tres3mincraft@gmail.com", + "discord": "536351962820640770" + }, + "record": { + "CNAME": "massahex.github.io" + } +} diff --git a/domains/clay.json b/domains/clay.json new file mode 100644 index 000000000..74d6c34ae --- /dev/null +++ b/domains/clay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ClaytonTDM", + "email": "claytontdm@gmail.com" + }, + "record": { + "CNAME": "claytontdm.github.io" + } +} diff --git a/domains/cli.json b/domains/cli.json deleted file mode 100644 index 72adff01c..000000000 --- a/domains/cli.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "WilliamDavidHarrison", - "email": "william@williamharrison.dev" - }, - - "record": { - "CNAME": "wdhdns.com" - } -} diff --git a/domains/clicker.vamtic.json b/domains/clicker.vamtic.json new file mode 100644 index 000000000..e8a928b55 --- /dev/null +++ b/domains/clicker.vamtic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vamtic", + "email": "vamtic@yahoo.com" + }, + "record": { + "CNAME": "clicker-bao.pages.dev" + } +} diff --git a/domains/clicpow.json b/domains/clicpow.json new file mode 100644 index 000000000..253d26a07 --- /dev/null +++ b/domains/clicpow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ClicpoW", + "email": "clicpowytb@gmail.com" + }, + "record": { + "CNAME": "mlkfkqd.pages.dev" + } +} diff --git a/domains/client.nziie.json b/domains/client.nziie.json new file mode 100644 index 000000000..c4d7d12b2 --- /dev/null +++ b/domains/client.nziie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nzii3", + "email": "exeyst@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/cljhs14.json b/domains/cljhs14.json new file mode 100644 index 000000000..76d9105db --- /dev/null +++ b/domains/cljhs14.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yywbadm", + "email": "yyw.981031@gmail.com" + }, + "record": { + "CNAME": "site.namedhosting.com" + } +} diff --git a/domains/cloud.dergraph.json b/domains/cloud.dergraph.json deleted file mode 100644 index 6f7f1963a..000000000 --- a/domains/cloud.dergraph.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "derGraph", - "email": "dergraph@f5.si" - }, - "record": { - "A": [ - "83.215.31.101" - ] - } -} diff --git a/domains/cloud.json b/domains/cloud.json deleted file mode 100644 index e46e0cb7e..000000000 --- a/domains/cloud.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "adarsh-goel", - "email": "adarsh.goel05@gmail.com" - }, - "record": { - "CNAME": "91afb326-7cc2-4a86-bc00-49da7755a6b4.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/cloud9store.json b/domains/cloud9store.json deleted file mode 100644 index 0bacaa7a4..000000000 --- a/domains/cloud9store.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "website", - "repo": "replit.com/@inmostgaming", - "owner": { - "username": "cloud9store", - "email": "sidneybuisnessandshop@gmail.com" - }, - "record": { - "CNAME": "fcfb75bd-9b46-4ba9-b588-ad5ce8ebd80f.repl.co" - } -} diff --git a/domains/cloudirector.json b/domains/cloudirector.json new file mode 100644 index 000000000..ce3c9697e --- /dev/null +++ b/domains/cloudirector.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cloudirector", + "email": "cantcloud@gmail.com" + }, + "record": { + "CNAME": "cloudirector.github.io" + } +} diff --git a/domains/cloudskies.json b/domains/cloudskies.json new file mode 100644 index 000000000..9c219f3c8 --- /dev/null +++ b/domains/cloudskies.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "cloudskies13", + "email": "cloudskies@perso.be" + }, + "record": { + "URL": "https://cloudskies13.carrd.co", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/clynt.json b/domains/clynt.json deleted file mode 100644 index bd893757d..000000000 --- a/domains/clynt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "C-Cloud", - "repo": "https://gitlab.com/Clynt707/SharX", - "owner": { - "username": "Clynt", - "email": "clyntcollin@gmail.com" - }, - "record": { - "A": ["37.114.32.30"] - } -} diff --git a/domains/clyron.json b/domains/clyron.json new file mode 100644 index 000000000..284409427 --- /dev/null +++ b/domains/clyron.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website of Clyron", + "repo": "https://github.com/theclyron/theclyron.github.io", + "owner": { + "username": "theclyron", + "email": "onenonlyclyron@gmail.com" + }, + "record": { + "CNAME": "theclyron.github.io" + } +} diff --git a/domains/cmulay.json b/domains/cmulay.json deleted file mode 100644 index 8b0a18931..000000000 --- a/domains/cmulay.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Chinmay Mulay's Portfolio", - "repo": "https://github.com/cmulay/cmulay.github.io", - "owner": { - "username": "cmulay", - "email": "codewithchin@gmail.com" - }, - "record": { - "CNAME": "cmulay.github.io" - } -} diff --git a/domains/cnvrs.json b/domains/cnvrs.json new file mode 100644 index 000000000..c898ffa5b --- /dev/null +++ b/domains/cnvrs.json @@ -0,0 +1,12 @@ +{ + "description": "project page/ portfolio", + "repo": "https://github.com/2nvrs/cnvrs", + "owner": { + "username": "2nvrs", + "email": "cnvrscnvrscnvrs@gmail.com", + "twitter": "projcnvrs" + }, + "record": { + "CNAME": "2nvrs.github.io" + } +} diff --git a/domains/code.sx9.json b/domains/code.sx9.json deleted file mode 100644 index b4cdb297a..000000000 --- a/domains/code.sx9.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "SX's VS Code On The Web", - "owner": { - "username": "SX-9", - "twitter": "SX_Discord", - "discord": "SX-Spy-Agent#1377", - "email": "sx-91@outlook.com" - }, -"record": { - "CNAME": "code-sx9.up.railway.app" - } -} diff --git a/domains/code.trung.json b/domains/code.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/code.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/codecloak.jigar.json b/domains/codecloak.jigar.json new file mode 100644 index 000000000..1b469453d --- /dev/null +++ b/domains/codecloak.jigar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "drone911", + "email": "jigar1822@gmail.com" + }, + "record": { + "URL": "https://codecloak.onrender.com" + } +} diff --git a/domains/codeminds.json b/domains/codeminds.json new file mode 100644 index 000000000..91a0a8cc3 --- /dev/null +++ b/domains/codeminds.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "clementhart999", + "email": "clementhart999@gmail.com" + }, + "record": { + "CNAME": "clementhart999.github.io" + } +} diff --git a/domains/coder100.json b/domains/coder100.json deleted file mode 100644 index d0faebc5a..000000000 --- a/domains/coder100.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "cursorweb", - "email": "", - "twitter": "Coder1002" - }, - "description": "Personal Home Page and Blog", - "record": { - "CNAME": "coder100-blog-production.up.railway.app" - } -} diff --git a/domains/codeserver.sono.json b/domains/codeserver.sono.json new file mode 100644 index 000000000..7901ef9bd --- /dev/null +++ b/domains/codeserver.sono.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "getSono", + "email": "julianwolf2013@outlook.de", + "discord": "1222250424309121145" + }, + + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/codeshard.json b/domains/codeshard.json deleted file mode 100644 index 164e323ff..000000000 --- a/domains/codeshard.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "In a hole in the ground there lived a hobbit", - "repo": "https://github.com/codeshard/codeshard.github.io", - "owner": { - "username": "codeshard", - "email": "ozkar.garcell@gmail.com" - }, - "record": { - "CNAME": "codeshard.github.io" - } -} diff --git a/domains/codestantin.json b/domains/codestantin.json new file mode 100644 index 000000000..9c945bfbc --- /dev/null +++ b/domains/codestantin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "codestantindev", + "email": "kontakt@codestantin.de" + }, + "record": { + "A": ["85.202.163.42"] + } +} diff --git a/domains/codesuthar.json b/domains/codesuthar.json new file mode 100644 index 000000000..1c010dc13 --- /dev/null +++ b/domains/codesuthar.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "CodeSuthar", + "email": "AdityaSuthar13@outlook.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.111.153", + "185.199.110.153" + ] + } +} diff --git a/domains/codesz.json b/domains/codesz.json new file mode 100644 index 000000000..a0f3fc6ad --- /dev/null +++ b/domains/codesz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "codeszsoft", + "email": "codeszsoftware@gmail.com" + }, + "repo": "https://github.com/codeszsoft/codeszsoft.github.io", + "record": { + "CNAME": "codeszsoft.github.io" + } +} diff --git a/domains/codewhiteweb.json b/domains/codewhiteweb.json deleted file mode 100644 index ace90f3e8..000000000 --- a/domains/codewhiteweb.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CodeWhiteWeb", - "email": "web.codewhite@gmail.com", - "twitter": "CodeWhiteWeb1", - "instagram": "CodeWhiteWeb" - }, - "record": { - "URL": "https://codewhiteweb.cf" - } -} diff --git a/domains/codewithgem.json b/domains/codewithgem.json new file mode 100644 index 000000000..9cdee2dc5 --- /dev/null +++ b/domains/codewithgem.json @@ -0,0 +1,11 @@ +{ + "description": "Gem Rey is an IT student, a freelance software developer and cybersecurity enthusiast.", + "repo": "https://github.com/gemrey13/gemrey13.github.io", + "owner": { + "username": "gemrey13", + "email": "gemreyranola@gmail.com" + }, + "record": { + "CNAME": "gemrey13.github.io" + } +} diff --git a/domains/codixer.json b/domains/codixer.json new file mode 100644 index 000000000..32e5a6356 --- /dev/null +++ b/domains/codixer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Codixer", + "email": "stefano@stefanocoding.me" + }, + "record": { + "CNAME": "stefanocoding.me" + } +} diff --git a/domains/codwizer.json b/domains/codwizer.json new file mode 100644 index 000000000..b509e04f6 --- /dev/null +++ b/domains/codwizer.json @@ -0,0 +1,11 @@ +{ + "description": "Create resume page, and add this link in social", + "repo": "https://github.com/Codwizer/codwizer.github.io", + "owner": { + "username": "codwiz", + "email": "devcodwiz@gmail.com" + }, + "record": { + "CNAME": "codwizer.github.io" + } +} diff --git a/domains/cody.json b/domains/cody.json new file mode 100644 index 000000000..18f0026e1 --- /dev/null +++ b/domains/cody.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "theinfamouscoder5", + "email": "codingamazing224@outlook.com" + }, + "record": { + "URL": "https://about-cody.pages.dev/" + } +} diff --git a/domains/coffee.json b/domains/coffee.json deleted file mode 100644 index fb3b505d8..000000000 --- a/domains/coffee.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Link for Coffee's personal site", - "owner": { - "username": "C0ffeeCode", - "email": "c0ffeecode@outlook.com" - }, - "record": { - "CNAME": "coffeeco.dev" - } -} diff --git a/domains/cohinem.json b/domains/cohinem.json new file mode 100644 index 000000000..28ed8f94a --- /dev/null +++ b/domains/cohinem.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Cohinem", + "email": "amonmonocle@gmail.com" + }, + + "record": { + "A": ["149.81.156.117"] + } +} diff --git a/domains/colix.json b/domains/colix.json new file mode 100644 index 000000000..e9f5291a9 --- /dev/null +++ b/domains/colix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YeahhColix", + "email": "yeahhcolix@gmail.com" + }, + "record": { + "CNAME": "colix.pages.dev" + } +} diff --git a/domains/collin.json b/domains/collin.json new file mode 100644 index 000000000..291c8c08a --- /dev/null +++ b/domains/collin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Hanyaku-Chan", + "email": "collinbuchkamer@gmail.com" + }, + + "record": { + "URL": "https://hanyaku.glitch.me" + } +} diff --git a/domains/comicly.json b/domains/comicly.json new file mode 100644 index 000000000..20c5181b5 --- /dev/null +++ b/domains/comicly.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Comicly69", + "email": "snowyoumc@gmail.com" + }, + + "record": { + "CNAME": "comicly69.github.io" + } +} diff --git a/domains/community.nziie.json b/domains/community.nziie.json deleted file mode 100644 index 5cd1f660f..000000000 --- a/domains/community.nziie.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Nzii3", - "email": "exeyst@gmail.com" - }, - "record": { - "CNAME": "nziiecommunity.freeflarum.com" - } - } - \ No newline at end of file diff --git a/domains/community.syntaxloopers.json b/domains/community.syntaxloopers.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/community.syntaxloopers.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/completesoft.json b/domains/completesoft.json new file mode 100644 index 000000000..68844226e --- /dev/null +++ b/domains/completesoft.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "simersim", + "email": "simer@f1.mk.ua" + }, + "record": { + "A": ["78.46.77.92"], + "MX": ["mx.comp.in.ua"], + "TXT": "v=spf1 mx a:mx.comp.in.ua -all" + } +} diff --git a/domains/computerblade.json b/domains/computerblade.json new file mode 100644 index 000000000..6e01dab71 --- /dev/null +++ b/domains/computerblade.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "computerblade-official", + "email": "ayproductionsteam@gmail.com", + "discord": "1032603689069846549" + }, + + "record": { + "CNAME": "computerblade-official.github.io" + } + } + diff --git a/domains/connie.json b/domains/connie.json new file mode 100644 index 000000000..9a5288789 --- /dev/null +++ b/domains/connie.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "gvalue-04", + "email": "", + "discord": "1229820339840618506", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.i8mk_73yrOluApbS_s2gO9pL_gIoLP-xv6lRw0KVlvP0QFudw8aIMx_xVKJ8RSXfvMZueFD9VQ3Ma_pASHMNKGY0tIEsqVJo_d_Lzi-FD5kslV-AscUDbl7LPDYza5SriCsUWaXkMXgx_LTpjxH_mJa8UT9Tg282EGRW7OdJySGWslUIbftYw0bZrIGH-kIKyG1nCpkgsXZKOsoz2r5jBO2la1_smRGzStXrbiGGAp8anJMI5q9BejlUFoqmlqXpIn6NPacUJSwXQ2pja8SQgwvWWx2KIMcgDUIrrnb1g1c2Hd3S9I4pgLsQmbXOMmn4wu8mVlKCBqx159PomdX6HA.ppTpXGvEiJ1slqJbtbzGww.Jg6LN8wrDnF-nRPDT_rUFSimdAmSWusgoOoMs45xOy-05VD74i6e9mcXzIS7b8YJzagA9WJuPYWVO5wPxKbdITsdZii-5Vqu2jeplRqQlh4.ZK4ZjA8iuHTreCAkWxQNLg" + }, + + "record": { + "A": ["198.91.81.13"] + } + } + \ No newline at end of file diff --git a/domains/contact.trung.json b/domains/contact.trung.json new file mode 100644 index 000000000..5fc7e4495 --- /dev/null +++ b/domains/contact.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "CNAME": "contact-form-9c3.pages.dev" + } +} diff --git a/domains/cooper.json b/domains/cooper.json deleted file mode 100644 index 6f9f30f9f..000000000 --- a/domains/cooper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Domain for my Portfolio Thing", - "repo": "https://github.com/cooper25/portfolio2021", - "owner": { - "username": "cooper25", - "email": "cooper@tsor.is" - }, - "record": { - "URL": "https://cppr.dev" - } -} diff --git a/domains/coopw.json b/domains/coopw.json new file mode 100644 index 000000000..bd7bb1174 --- /dev/null +++ b/domains/coopw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coopw1", + "email": "urchin139@altmail.kr" + }, + "record": { + "CNAME": "coopw.pages.dev" + } +} diff --git a/domains/copysland.json b/domains/copysland.json new file mode 100644 index 000000000..05ee3602f --- /dev/null +++ b/domains/copysland.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hillzacky", + "email": "Hilm4nsyah@gmail.com" + }, + "record": { + "CNAME": "copysland.github.io" + } +} diff --git a/domains/core.json b/domains/core.json new file mode 100644 index 000000000..bd101c967 --- /dev/null +++ b/domains/core.json @@ -0,0 +1,11 @@ +{ + "description": "My information.", + "repo": "https://github.com/Aidenhtg", + "owner": { + "username": "Aidenhtg", + "email": "aidenhiseh.m.l@gmail.com" + }, + "record": { + "CNAME": "b3e47680.corrupted.pages.dev" + } +} diff --git a/domains/corentin-sotoca.json b/domains/corentin-sotoca.json index 96e9e075e..553357484 100644 --- a/domains/corentin-sotoca.json +++ b/domains/corentin-sotoca.json @@ -1,13 +1,10 @@ { - "description": "Curiculum Vitae - Corentin SOTOCA", - "owner": { - "username": "CorentinSotoca", - "email": "corentin.sotoca@gmail.com" - }, - "record": { - "A": [ - "62.171.174.120" - ] - } + "description": "Curiculum Vitae - Corentin SOTOCA", + "owner": { + "username": "CorentinSotoca", + "email": "corentin.sotoca@gmail.com" + }, + "record": { + "A": ["62.171.174.120"] } - \ No newline at end of file +} diff --git a/domains/corentinrenard.com.json b/domains/corentinrenard.com.json new file mode 100644 index 000000000..833b84e13 --- /dev/null +++ b/domains/corentinrenard.com.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Aqu1tain", + "email": "", + "discord": "573841978442383361", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.o8ipRbOi_L_u7u39LI9GujSmXnPercd-1SIbYzc65oe09pY5AFEOWu-C09pwW1QeRrA97Ma-6A8sd0XQCMpdyEbC_0SssuHiDYkmdEbTk9_HZW5qQ0OkaYKFeS0C7sViL6lBIaGODl0XeE-ZCt85_cEzuf3gL6GEOtthsTrHZb-kuo9JwnsjCQVe4_YrAPb-NUulPGtpNEPJS5lo3OTFyjpN_kcCwsz1mKP-nolGKHjSfHONKruw8OBvyzDcRW4hDvuTYY6tTqnGzfSUc4b0Z-VXLtQ9_RsqrkgFGxrladIT4orADav6SIAOuHF-9_NDSQWJP7oD_dy0yCR8Mv8PAQ.9cI2DSXsh5hSYoQT1jXjTw.3m-R9wN3cbZF0ZY2HlwFCBFfmNDWsBjdzIXrgjc0TaAzqRC7nxqpl8Ol6_hIiL7VCwkbKOAl_g6HEVczaFNa3Q8aS6XlLLJIAab0TsMyHxg.bpfs-bKjE86N4mP-Lbgmug" + }, + "record": { + "CNAME": "www.corentinrenard.com" + } +} diff --git a/domains/corey.json b/domains/corey.json new file mode 100644 index 000000000..724e70cc7 --- /dev/null +++ b/domains/corey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cjsewell", + "email": "corey@sewell.net.nz" + }, + "record": { + "CNAME": "sewell.net.nz" + } +} diff --git a/domains/cornix.json b/domains/cornix.json deleted file mode 100644 index 38e86f2f9..000000000 --- a/domains/cornix.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "cornix's website", - "owner": { - "username": "MysteryDev01", - "email": "cornixytofficial@gmail.com" - }, - "record": { - "CNAME": "cornix32122.carrd.co" - } -} diff --git a/domains/corruptedarc.json b/domains/corruptedarc.json new file mode 100644 index 000000000..3cfff09a6 --- /dev/null +++ b/domains/corruptedarc.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Ishaan1313", + "email": "", + "discord": "692993163333337139", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nz3C6PVPANIFqr0_iY3MkvN3ctls-oCC6bwZUWbYQyi-tlj-_XY3bSjnQmJFprlolUd67Xhc8QAQRj-MNtoy78YwftYo9lppMIBK2OQsYL0RASN0cr_AX3QbOEtXlZQqg4H8D_Q6PnAIKDlEzCCbwijDMvaFRAGv6VcQfCHBEGW1Ie88U5UebjkjeCtQM1eX2ynyDmHnE7gjRmf3SwqP4cBEuSpPTkMmVUEPGCfo4k6yyaDITx74UA8dkRJrMwQO_htOdM2RVPx2jrwpgMVF2ImZ9U0KEZ_39WKwb7ViMqMltjJr6odL7IKYjRKSo7O3DrYwq54WR4VeH6bS0MRocg.XYWpDfIUROkY9Oe7e8c0VQ.RUTLljeHNV84W9s1iNRbWlA0AL2gjhQU06VKfbnbztGXF62UVHotnOWmDpBaZmEF-2skAN3IeZOGiB9VfS2UMSDhhQ4MAL1u_k7ZgZn5HNyNkxjIlVrviYM8p3Iz4p8n.PeWN0VyoWuMo5O00qWpeTw" + }, + + "record": { + "CNAME": "corruptedarc.netlify.app" + } + } + diff --git a/domains/cosmic.json b/domains/cosmic.json deleted file mode 100644 index 7bb9f4d2d..000000000 --- a/domains/cosmic.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Cosmic6811", - "email": "jadenweong@gmail.com" - }, - "record": { - "CNAME": "20cd3f94-9e6c-425c-bb20-8a121e88cf78.repl.co" - } -} diff --git a/domains/cosmos.json b/domains/cosmos.json deleted file mode 100644 index 890c4de67..000000000 --- a/domains/cosmos.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "iscosmos", - "email": "iscosmos@outlook.com" - }, - - "record": { - "URL": "https://iscosmos.github.io" - } - } - diff --git a/domains/cr.json b/domains/cr.json deleted file mode 100644 index cb7d60370..000000000 --- a/domains/cr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A Website For My API", - "repo": "https://github.com/joeleeofficial", - "owner": { - "username": "joeleeofficial", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "7b9fd2b3-d702-4577-bcbf-a1a529ad3f3d.repl.co" - } -} diff --git a/domains/cr1ket.json b/domains/cr1ket.json new file mode 100644 index 000000000..0027bc062 --- /dev/null +++ b/domains/cr1ket.json @@ -0,0 +1,12 @@ +{ + "description": "Using for my personal site cr1ket.xyz", + "repo": "https://github.com/NoahMK21100/NoahMK21100.github.io", + "owner": { + "username": "NoahMK21100", + "email": "NoahMK21100@gmail.com", + "twitter": "noahmk17" + }, + "record": { + "CNAME": "NoahMK21100.github.io" + } +} diff --git a/domains/crackz.json b/domains/crackz.json deleted file mode 100644 index db0214003..000000000 --- a/domains/crackz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Redirecting to my socials website.", - "repo": "https://github.com/CRACKz-cyber", - "owner": { - "username": "CRACKz-cyber", - "email": "thomasknekibus@gmail.com" - }, - "record": { - "URL": "http://lassewiedemann.de" - } -} diff --git a/domains/crafty.json b/domains/crafty.json new file mode 100644 index 000000000..483f9f231 --- /dev/null +++ b/domains/crafty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TConnor2003", + "email": "CraftyPlayzmcyt@gmail.com" + }, + "record": { + "URL": "https://www.craftyplayz.com/" + } +} diff --git a/domains/crazo7924.json b/domains/crazo7924.json new file mode 100644 index 000000000..59b251d26 --- /dev/null +++ b/domains/crazo7924.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "crazo7924", + "email": "", + "discord": "466605393309859840", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.EPAp20sGUcuM20K26KYZsDVnufUJ9I-108TJUJVjIM9mb1vi18AHrnxsqlSf9APzx4aJEdPGfnWK2dkBQaS3wBM9FgnBKnVeGQaC-FAjLIWI8eOObReFw8bJIRcOtU10KaftXgSPTHv_6ezYJ61R2BM3DWQc-tOqYlxii7O52UmIgVGg-VFYu-qGtPzPY1KLAfrG3JTfLcP6o-vWcbHe_RAkZpCMS2y2t_qX3B_CpXmxombN81CxtbjNAlHCJI9kurjkH1v03XoAjsG0VhudV1aJcXCnL_jnDZz9J_kHmilivCUGnhi6La46ZEo6RCMD9KGu9jqE60lZYPMWQf3-Xw.R8aRGWxp4ChOZXQ0ZKAqwQ.piH7uRCdmslqxerUYiQjs-k9R9P1lLMeAwLkBfeJh-iCMvHT97basT5Ob6PVrxPaeV-OmnMd4FEvceS3SicofL0LsBOpRfbElmWokDJL6MmfAr-Y3ePhoLImZXKLYaWV.-v_ZfnbqCKYCs5m_EGcHjw" + }, + "record": { + "TXT": [ + "zoho-verification=zb09491787.zmverify.zoho.in", + "v=spf1 include:zoho.in ~all" + ], + "MX": [ + "mx.zoho.in", + "mx2.zoho.in", + "mx3.zoho.in" + ] + } +} diff --git a/domains/crazymax.json b/domains/crazymax.json new file mode 100644 index 000000000..d7219704e --- /dev/null +++ b/domains/crazymax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Crazy-Max-Blog", + "email": "Crazy-Max-2011@yandex.ru" + }, + "record": { + "CNAME": "crazy-max-blog.github.io" + } +} diff --git a/domains/creaperhunter.json b/domains/creaperhunter.json deleted file mode 100644 index fcb2ebfb9..000000000 --- a/domains/creaperhunter.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Creaperhunter", - "email": "creaperhunter531@gmail.com", - "discord": "Creaperhunter#7718" - }, - "record": { - "CNAME": "personal-page-3ps.pages.dev" - } -} diff --git a/domains/create.json b/domains/create.json new file mode 100644 index 000000000..c54d1dfaa --- /dev/null +++ b/domains/create.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VaibhavSys", + "email": "vaibhavsys@protonmail.com" + }, + "record": { + "URL": "https://factory.is-a.dev" + } +} diff --git a/domains/creature.json b/domains/creature.json index 3d4f5fdc2..e4d0cddbf 100644 --- a/domains/creature.json +++ b/domains/creature.json @@ -1,12 +1,12 @@ { - "description": "This subdomain is for personal purpose only!", - "repo": "https://github.com/pranay5464/pranay5463.github.io", - "owner": { - "username": "pranay5463", - "email": "pranay7091@gmail.com", - "twitter": "dark_elite_98" - }, - "record": { - "CNAME": "pranay5463.github.io" - } -} + "description": "This subdomain is for personal purpose only!", + "repo": "https://github.com/pranay5464/pranay5463.github.io", + "owner": { + "username": "pranay5463", + "email": "pranay7091@gmail.com", + "twitter": "dark_elite_98" + }, + "record": { + "CNAME": "pranay5463.github.io" + } +} diff --git a/domains/creed.json b/domains/creed.json new file mode 100644 index 000000000..c2bad7e1b --- /dev/null +++ b/domains/creed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "M-creed", + "email": "marwankalosha005@gmail.com" + }, + "record": { + "CNAME": "m-creed.github.io" + } +} diff --git a/domains/creeperita104.json b/domains/creeperita104.json new file mode 100644 index 000000000..66df526f1 --- /dev/null +++ b/domains/creeperita104.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "creeperita09", + "email": "creeperita.09@gmail.com" + }, + "record": { + "CNAME": "icahomesvr2022.freeddns.org" + } +} diff --git a/domains/creepso.json b/domains/creepso.json index df6f4f1be..7ece98b5d 100644 --- a/domains/creepso.json +++ b/domains/creepso.json @@ -1,11 +1,11 @@ { - "description": "I will use this website to make it a portfolio", - "repo": "https://github.com/creepsooff/creepsooff.github.io", - "owner": { - "username": "creepsooff", - "email": "eternel_universite0s@icloud.com" - }, - "record": { - "CNAME": "creepsooff.github.io" - } -} + "description": "I will use this website to make it a portfolio", + "repo": "https://github.com/creepsooff/creepsooff.github.io", + "owner": { + "username": "creepsooff", + "email": "eternel_universite0s@icloud.com" + }, + "record": { + "CNAME": "creepsooff.github.io" + } +} diff --git a/domains/creve.json b/domains/creve.json deleted file mode 100644 index 9b06405fc..000000000 --- a/domains/creve.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My site ig", - "owner": { - "username": "Creveoolus", - "email": "", - "discord": "Creve#0727" - }, - "record": { - "CNAME": "shielded-turnip-jvcv0g342r3gnbht5wr9tpio.herokudns.com" - } -} diff --git a/domains/crischutu07.json b/domains/crischutu07.json new file mode 100644 index 000000000..fa3ca7ff5 --- /dev/null +++ b/domains/crischutu07.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "crischutu07", + "email": "crischutu07owo@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/crispy.json b/domains/crispy.json deleted file mode 100644 index e18a8c78c..000000000 --- a/domains/crispy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Crispy's Development Website", - "repo": "https://github.com/Crispy-Cream/Crispy", - "owner": { - "username": "Crispy-Cream", - "email": "crispy@vibebot.me" - }, - "record": { - "CNAME": "4453c438-a580-4334-ab7c-56e7844eb705.repl.co" - } -} diff --git a/domains/cristianmihai.json b/domains/cristianmihai.json new file mode 100644 index 000000000..9a858ea31 --- /dev/null +++ b/domains/cristianmihai.json @@ -0,0 +1,11 @@ +{ + "description": "My personal dev website.", + "repo": "https://github.com/CristianEduardMihai/is-a.dev.github.io", + "owner": { + "username": "CristianEduardMihai", + "email": "cristianeduardmihai@gmail.com" + }, + "record": { + "CNAME": "cristianeduardmihai.github.io" + } +} diff --git a/domains/cristofer54.json b/domains/cristofer54.json new file mode 100644 index 000000000..6563f41f8 --- /dev/null +++ b/domains/cristofer54.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Cristofer543", + "email": "cristoferpayamps543a@gmail.com" + }, + "record": { + "CNAME": "cristofer543.github.io" + } +} diff --git a/domains/crm.digidenone.json b/domains/crm.digidenone.json new file mode 100644 index 000000000..f47a8711d --- /dev/null +++ b/domains/crm.digidenone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "digidenone", + "email": "digidenone@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/croissant.json b/domains/croissant.json deleted file mode 100644 index 4fb050956..000000000 --- a/domains/croissant.json +++ /dev/null @@ -1,11 +0,0 @@ - -{ - "owner": { - "username": "arhammusheer", - "email": "arhammusheer@gmail.com" - }, - "record": { - "CNAME": "croissant.one" - } -} - \ No newline at end of file diff --git a/domains/crvt.json b/domains/crvt.json new file mode 100644 index 000000000..fc011b09e --- /dev/null +++ b/domains/crvt.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio / profile page", + "repo": "https://github.com/slovakians/crvts", + "owner": { + "username": "Slovakians", + "email": "siresirol937@gmail.com" + }, + "record": { + "CNAME": "slovakians.github.io" + } +} diff --git a/domains/crypt.json b/domains/crypt.json new file mode 100644 index 000000000..055ffe5d2 --- /dev/null +++ b/domains/crypt.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "cryptixrune", + "email": "lunar.dev@icloud.com" + }, + + "record": { + "CNAME": "cryptixrune.github.io" + } +} diff --git a/domains/crystal.json b/domains/crystal.json index 299075303..dadbdde8e 100644 --- a/domains/crystal.json +++ b/domains/crystal.json @@ -1,12 +1,12 @@ { - "description": "For hosting my portfolio", - "repo": "https://github.com/crystalbajgai/crystalbajgai.github.io", - "owner": { - "username": "crystalbajgai", - "email": "crystalbajgai@gmail.com", - "twitter": "Crissy0__0" - }, - "record": { - "CNAME": "crystalbajgai.github.io" - } -} + "description": "For hosting my portfolio", + "repo": "https://github.com/crystalbajgai/crystalbajgai.github.io", + "owner": { + "username": "crystalbajgai", + "email": "crystalbajgai@gmail.com", + "twitter": "Crissy0__0" + }, + "record": { + "CNAME": "crystalbajgai.github.io" + } +} diff --git a/domains/crystalcoding.json b/domains/crystalcoding.json new file mode 100644 index 000000000..505fb6a6f --- /dev/null +++ b/domains/crystalcoding.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "crystalcoding9999", + "email": "crystalcraft9999@gmail.com", + "discord": "1102272783712522331" + }, + + "record": { + "CNAME": "crystalcoding9999.github.io" + } + } + \ No newline at end of file diff --git a/domains/crystaluptime.json b/domains/crystaluptime.json deleted file mode 100644 index b60624c81..000000000 --- a/domains/crystaluptime.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "CRYSTAL-HQ", - "email": "info.crystal.hq@gmail.com" - }, - "record": { - "URL": "https://uptime-kuma.crystaluptime.repl.co" - } - } - diff --git a/domains/cs.json b/domains/cs.json new file mode 100644 index 000000000..dbbe9d8d0 --- /dev/null +++ b/domains/cs.json @@ -0,0 +1,11 @@ +{ + "description": "ShoreCN Space", + "repo": "https://github.com/ShoreCN/ShoreCN.github.io", + "owner": { + "username": "ShoreCN", + "email": "c.shore.cn@gmail.com" + }, + "record": { + "CNAME": "shorecn.github.io" + } +} diff --git a/domains/ctrlraul.json b/domains/ctrlraul.json new file mode 100644 index 000000000..ec47623e1 --- /dev/null +++ b/domains/ctrlraul.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/ctrlraul/ctrlraul.github.io", + "owner": { + "username": "ctrlraul", + "email": "mailctrlraul@gmail.com", + "twitter": "@CtrlRaul" + }, + "record": { + "CNAME": "ctrlraul.github.io" + } +} diff --git a/domains/cucusise.json b/domains/cucusise.json index 9d55e8185..fde6870e5 100644 --- a/domains/cucusise.json +++ b/domains/cucusise.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Cucusise", - "email": "cucusise@gmail.com" - }, - "record": { - "CNAME": "cucusise.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "Cucusise", + "email": "cucusise@gmail.com" + }, + "record": { + "CNAME": "cucusise.github.io" + } +} diff --git a/domains/cupglass.json b/domains/cupglass.json new file mode 100644 index 000000000..43841c640 --- /dev/null +++ b/domains/cupglass.json @@ -0,0 +1,14 @@ +{ + "description": "My base website. Very epik tbh 💥💥", + "repo": "https://github.com/cupglassdev/cupglassdev.github.io", + "owner": { + "username": "cupglassdev", + "email": "", "twitter":"https://x.com/cupglassdev", +"lahelu":"https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev", + "note":"i dont have much time to see my discord app (because its almost 12 am) to take my user id, but since discord has changed their username to pomelo, that is my discord account" + }, + "record": { + "CNAME": "cupglassdev.github.io" + } +} \ No newline at end of file diff --git a/domains/cupglassdev.json b/domains/cupglassdev.json new file mode 100644 index 000000000..49af785ea --- /dev/null +++ b/domains/cupglassdev.json @@ -0,0 +1,14 @@ +{ + "description": "Redirect to my epik website, omaygottt 😵‍💫", + "repo": "https://github.com/cupglassdev/cupglassdev.github.io", + "owner": { + "username": "cupglassdev", + "email": "", "twitter":"https://x.com/cupglassdev", +"lahelu":"https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev", + "note":"i dont have much time to see my discord app (because its almost 12 am) to take my user id, but since discord has changed their username to pomelo, that is my discord account" + }, + "record": { + "URL": "https://cupglass.is-a.dev" + } +} \ No newline at end of file diff --git a/domains/cupglasspi.json b/domains/cupglasspi.json new file mode 100644 index 000000000..c0e83bf15 --- /dev/null +++ b/domains/cupglasspi.json @@ -0,0 +1,14 @@ +{ + "description": "t a i l s c a l e tunnel for my pi, not always active tho", + "repo": "", + "owner": { + "username": "cupglassdev", + "email": "", + "twitter": "cupglassdev", + "lahelu": "https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev" + }, + "record": { + "CNAME": "pi.neko-velociraptor.ts.net" + } +} diff --git a/domains/cutedog5695.json b/domains/cutedog5695.json new file mode 100644 index 000000000..086a7c053 --- /dev/null +++ b/domains/cutedog5695.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "", + "discord": "716306888492318790", + "twitter": "cutedog5695" + }, + "record": { + "A": ["89.106.200.1"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/cutt37.json b/domains/cutt37.json new file mode 100644 index 000000000..4a0e328c0 --- /dev/null +++ b/domains/cutt37.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "repo": "https://github.com/37cut/37cut.github.io", + "owner": { + "username": "37cut", + "email": "cutt37@outlook.com" + }, + "record": { + "CNAME": "37cut.github.io" + } +} diff --git a/domains/cuxdi.json b/domains/cuxdi.json new file mode 100644 index 000000000..22e532713 --- /dev/null +++ b/domains/cuxdi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cuxdii", + "email": "vihar2408@gmail.com", + "discord": "1156381555875385484" + }, + + "record": { + "CNAME": "cuxdi.pages.dev" + } +} diff --git a/domains/cuzimbisonratte.json b/domains/cuzimbisonratte.json index 618cadb03..331ba3ddc 100644 --- a/domains/cuzimbisonratte.json +++ b/domains/cuzimbisonratte.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "CuzImBisonratte", + "email": "cuzimbisonratte@gmail.com" + }, - { - "owner": { - "username": "CuzImBisonratte", - "email": "cuzimbisonratte@gmail.com" - }, - - "record": { - "CNAME": "cuzimbisonratte.github.io" - } - } - + "record": { + "CNAME": "cuzimbisonratte.github.io" + } +} diff --git a/domains/cyan.json b/domains/cyan.json deleted file mode 100644 index ecc119879..000000000 --- a/domains/cyan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Just a personal website", - "repo": "https://github.com/cyanraze/cyanraze", - "owner": { - "username": "cyanraze", - "email": "239@duck.com" - }, - "record": { - "CNAME": "cyanraze.github.io" - } -} diff --git a/domains/cyanide.json b/domains/cyanide.json index 205e97255..c34e24ef8 100644 --- a/domains/cyanide.json +++ b/domains/cyanide.json @@ -1,12 +1,12 @@ { - "description": "I am a professional developer that loves to code in HTML, CSS, and JavaScript!", - "repo": "https://github.com/cyanide1x/cyanide1x.github.io", - "owner": { - "username": "cyanide1x", - "email": "contact@cyanidedev.mn", - "twitter": "cyanide1x" - }, - "record": { - "CNAME": "cyanide1x.github.io" - } + "description": "I am a professional developer that loves to code in HTML, CSS, and JavaScript!", + "repo": "https://github.com/cyanide1x/cyanide1x.github.io", + "owner": { + "username": "cyanide1x", + "email": "contact@cyanidedev.mn", + "twitter": "cyanide1x" + }, + "record": { + "CNAME": "cyanide1x.github.io" + } } diff --git a/domains/cybersecbyte.json b/domains/cybersecbyte.json new file mode 100644 index 000000000..467e058d6 --- /dev/null +++ b/domains/cybersecbyte.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CyberSecByte", + "email": "cybersecbyte@gmail.com" + }, + "record": { + "CNAME": "cybersecbyte.github.io" + } +} diff --git a/domains/cycloneaddons.json b/domains/cycloneaddons.json new file mode 100644 index 000000000..ce323ebd2 --- /dev/null +++ b/domains/cycloneaddons.json @@ -0,0 +1,12 @@ +{ + "description": "Use for portfolio.", + "repo": "https://github.com/CycloneAddons/cycloneaddons.github.io", + "owner": { + "username": "CycloneAddons", + "email": "cycloneaddon@gmail.com", + "twitter": "cycloneaddons" + }, + "record": { + "CNAME": "cycloneaddons.github.io" + } +} diff --git a/domains/cycno.json b/domains/cycno.json index ff6543c4f..77996a2a0 100644 --- a/domains/cycno.json +++ b/domains/cycno.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "CYCNO", - "email": "daniyalchunna2@gmail.com" - }, - "record": { - "CNAME": "cycno.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "CYCNO", + "email": "daniyalchunna2@gmail.com" + }, + "record": { + "CNAME": "cycno.github.io" + } +} diff --git a/domains/cylis.json b/domains/cylis.json new file mode 100644 index 000000000..69ccdb70a --- /dev/null +++ b/domains/cylis.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Cylis-Dragneel", + "email": "craftingcaptain456@gmail.com", + "discord": "372363585394966528" + }, + + "record": { + "CNAME": "cylis-dragneel.github.io" + } +} diff --git a/domains/cyteon.json b/domains/cyteon.json new file mode 100644 index 000000000..926f578f0 --- /dev/null +++ b/domains/cyteon.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Cyteon", + "email": "", + "discord": "871722786006138960", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q9RhtbUP-u9Q4KAp7lbLAVHYORrtuE70vWDcr_S9DFFixPK3glDOVM9gUHMBsQcv0W0jfXsURDrcN0orvGrTmpn30_CQUBL0XAoBYcL5zC7wBavaXAP6v8YHXQmThdsZknwCfsrlAHK5bjOQR_Hke7H89XUnvjONABGMGozVLrveJsjsRUDrxuxggPlcnMDbaOGwZNNHqz7npcmSPe_Kpd5D2xTUjknMcVn9TlgBf0IjO8EAI0UhJUISLjQdT61Fttes2LP9L_h8cyrkFCHcvrBBrQgc05ijPsp5Yb4DC_drzsoLG1WnWObLNNffOUtf-f_CjAA_edIo-6ZA-4nWkg.v45Ib0akIwdqLrzLUFLWVw.m8Ski3CnEUcpfG3Z_ZE4QeSMzmezHxmIv_fXV23LHHr6NehYWI6W_ei45EsfAS-T9c8feeFxDlFm4NP-JOna1kxiQDFwUkApRgJJm3TR8ZY.pFZ7T7Kzts1Y1wtOzXTpRQ" + }, + + "record": { + "TXT": ["zoho-verification=zb91651102.zmverify.zoho.eu", "v=spf1 include:zohomail.eu ~all"], + "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"] + } + } + diff --git a/domains/czwx.json b/domains/czwx.json new file mode 100644 index 000000000..7f83c9bbb --- /dev/null +++ b/domains/czwx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "czwxx", + "email": "czwx790@gmail.com" + }, + "record": { + "CNAME": "czwxx.github.io" + } +} diff --git a/domains/d.json b/domains/d.json new file mode 100644 index 000000000..5d8a53e7e --- /dev/null +++ b/domains/d.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "AhNode", + "email": "", + "discord": "704173828187619370" + }, + + "record": { + "A": ["69.197.135.202"] + } + } + diff --git a/domains/d1snin.json b/domains/d1snin.json deleted file mode 100644 index f665bb06d..000000000 --- a/domains/d1snin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "d1snin's website", - "repo": "https://github.com/d1snin/website", - "owner": { - "username": "d1snin", - "email": "~@d1s.uno" - }, - "record": { - "CNAME": "35188086.website-8ek.pages.dev" - } -} diff --git a/domains/d3c.json b/domains/d3c.json new file mode 100644 index 000000000..fdb6a3e0b --- /dev/null +++ b/domains/d3c.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "czb8", + "email": "czb8.a1@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/d3nxel.json b/domains/d3nxel.json new file mode 100644 index 000000000..e162da723 --- /dev/null +++ b/domains/d3nxel.json @@ -0,0 +1,11 @@ +{ + "description": "My friends website", + "repo": "https://github.com/ExpediteDC/denzel", + "owner": { + "username": "ExpediteDC", + "email": "vien@courvix.com" + }, + "record": { + "CNAME": "denzel.pages.dev" + } +} diff --git a/domains/d4rkd3n1337.json b/domains/d4rkd3n1337.json new file mode 100644 index 000000000..16ce0771f --- /dev/null +++ b/domains/d4rkd3n1337.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "d4rkd3n1337", + "email": "darkdenrevolt@gmail.com" + }, + "record": { + "A": ["45.85.117.139"] + } +} diff --git a/domains/daamin.json b/domains/daamin.json new file mode 100644 index 000000000..7c331f7df --- /dev/null +++ b/domains/daamin.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/Daamin909/website/", + "owner": { + "username": "Daamin909", + "email": "ashai.daamin@gmail.com" + }, + "record": { + "CNAME": "daamin909.github.io" + } +} diff --git a/domains/daanschenkel.json b/domains/daanschenkel.json index b8368a96e..15497138b 100644 --- a/domains/daanschenkel.json +++ b/domains/daanschenkel.json @@ -1,12 +1,9 @@ - - { - "owner": { - "username": "daanschenkel", - "email": "daan@daanschenkel.nl" - }, - - "record": { - "URL": "https://daanschenkel.nl" - } - } - \ No newline at end of file +{ + "owner": { + "username": "daanschenkel", + "email": "daan@daanschenkel.nl" + }, + "record": { + "URL": "https://daanschenkel.nl" + } +} diff --git a/domains/daboltgod.json b/domains/daboltgod.json index 90fad6b4c..5e26f049f 100644 --- a/domains/daboltgod.json +++ b/domains/daboltgod.json @@ -1,11 +1,11 @@ { - "description": "Portfolio", - "repo": "https://github.com/ItzPhoenixYaKnow/website", - "owner": { - "username": "ItzPhoenixYaknow", - "email": "daboltgod22@outlook.com" - }, - "record": { - "CNAME": "itzphoenixyaknow.github.io" - } -} + "description": "Portfolio", + "repo": "https://github.com/ItzPhoenixYaKnow/website", + "owner": { + "username": "ItzPhoenixYaknow", + "email": "daboltgod22@outlook.com" + }, + "record": { + "CNAME": "itzphoenixyaknow.github.io" + } +} diff --git a/domains/dadaboudi.chiragnahata.json b/domains/dadaboudi.chiragnahata.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/dadaboudi.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/daddy.json b/domains/daddy.json deleted file mode 100644 index d7c019181..000000000 --- a/domains/daddy.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Redirect to daddy mahir's website", - "repo": "https://github.com/mtgsquad", - "owner": { - "username": "mtgsquad", - "email": "mahir@molai.dev", - "twitter": "DevMolai", - "discord": "molai.dev#2674" - }, - "record": { - "URL": "https://molai.dev" - } -} diff --git a/domains/dae.json b/domains/dae.json new file mode 100644 index 000000000..2b98a62f8 --- /dev/null +++ b/domains/dae.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Daeloth", + "email": "alanvcd@frikipedia.es" + }, + "record": { + "URL": "http://www.daeloth.com/home" + } +} diff --git a/domains/dailycat.json b/domains/dailycat.json new file mode 100644 index 000000000..cc89821d0 --- /dev/null +++ b/domains/dailycat.json @@ -0,0 +1,12 @@ +{ + "description": "dailycat.is-a.dev", + "repo": "https://github.com/dailycats/dailycats.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com", + "discord": "romanromannya#0" + }, + "record": { + "CNAME": "dailycats.github.io" + } +} diff --git a/domains/dainfloop.json b/domains/dainfloop.json index 0d83f0b1f..0c39bf00e 100644 --- a/domains/dainfloop.json +++ b/domains/dainfloop.json @@ -3,12 +3,24 @@ "username": "DaInfLoop", "email": "backupharoongames100@gmail.com" }, - + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 ip4:37.27.51.34 ip6:2a01:4f9:3081:399c::/64 include:spf.improvmx.com ~all" } } diff --git a/domains/daiswap.json b/domains/daiswap.json new file mode 100644 index 000000000..f9f62c355 --- /dev/null +++ b/domains/daiswap.json @@ -0,0 +1,14 @@ +{ + "description": "for my personal portfolio , to do networking and get to learn and do more projects", + "repo": "https://github.com/DaiSwap/DaiSwap.github.io", + "owner": { + "username": "DaiSwap", + "email": "19644pranavvenkatesh@gmail.com", + "twitter": "@DaiSwap" + }, + "record": { + "A": [ + "13.251.96.10" + ] + } +} diff --git a/domains/daksh.json b/domains/daksh.json new file mode 100644 index 000000000..bf0b5237c --- /dev/null +++ b/domains/daksh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lonewqlf", + "email": "lonewqlf@proton.me" + }, + "record": { + "CNAME": "lonewqlf.github.io" + } +} diff --git a/domains/damned.json b/domains/damned.json new file mode 100644 index 000000000..286e457ad --- /dev/null +++ b/domains/damned.json @@ -0,0 +1,11 @@ +{ + "description": "damned.is-a.dev", + "repo": "https://github.com/damnedstudios/damnedstudios.github.io", + "owner": { + "username": "damnedstudios", + "email": "arda.efe.gokce.2@gmail.com" + }, + "record": { + "CNAME": "damnedstudios.github.io" + } +} diff --git a/domains/damu.json b/domains/damu.json new file mode 100644 index 000000000..b24a3c75b --- /dev/null +++ b/domains/damu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "damnUUUU", + "email": "damodar.sssihl@gmail.com" + }, + "record": { + "A": ["103.174.70.38"] + } +} diff --git a/domains/dan-habot.json b/domains/dan-habot.json index b69f8a9c7..fe6ba021b 100644 --- a/domains/dan-habot.json +++ b/domains/dan-habot.json @@ -1,5 +1,5 @@ { - "description": "Fullstack web & mobile dev, quality assurance, automation, reverse engineering, and flexible", + "description": "My links", "repo": "https://github.com/danhab99/danhab99.github.io", "owner": { "username": "danhab99", diff --git a/domains/dangxuanthai.json b/domains/dangxuanthai.json new file mode 100644 index 000000000..40896eb68 --- /dev/null +++ b/domains/dangxuanthai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CallMeIAmTDF", + "email": "thai0203966@nuce.edu.vn" + }, + "record": { + "CNAME": "3hxw3aro.up.railway.app" + } +} diff --git a/domains/daniel.json b/domains/daniel.json index b3d4893fe..3674bbe32 100644 --- a/domains/daniel.json +++ b/domains/daniel.json @@ -8,7 +8,10 @@ "record": { "A": ["34.120.194.28"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/daniel4-dev.json b/domains/daniel4-dev.json deleted file mode 100644 index 2ac3e26c2..000000000 --- a/domains/daniel4-dev.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Daniel Barton's games site", - "owner": { - "username": "daniel4-scratch", - "email": "llama552621@gmail.com" - }, - "record": { - "CNAME": "b1a7de73-3e69-432d-91b8-cedb341d848b.id.repl.co" - } -} diff --git a/domains/danielclarke.json b/domains/danielclarke.json deleted file mode 100644 index 3e860a22f..000000000 --- a/domains/danielclarke.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Daniel Clarke's website", - "repo": "https://github.com/DanielWilliamClarke/Cujo", - "owner": { - "username": "DanielWilliamClarke", - "email": "clarkit@gmail.com" - }, - "record": { - "URL": "https://danielclarke.tech" - } -} \ No newline at end of file diff --git a/domains/danilofuchs.json b/domains/danilofuchs.json deleted file mode 100644 index cf2c2aa05..000000000 --- a/domains/danilofuchs.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "danilofuchs's is-a.dev domain", - "repo": "https://github.com/danilofuchs/danilofuchs.github.io", - "owner": { - "username": "danilofuchs", - "email": "danilo_fuchs@hotmail.com" - }, - "record": { - "CNAME": "danilofuchs.github.io" - } -} diff --git a/domains/danilwhale.json b/domains/danilwhale.json new file mode 100644 index 000000000..66ad214c3 --- /dev/null +++ b/domains/danilwhale.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "danilwhale", + "email": "", + "discord": "1191777214467940414", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.TMndiEsl4ECzkNhIvJVzKhARY5P83h9nXwYNjtmb8fy_gr0Xrl6dIgbXdxasHq2R4EFrN8VfElTk5pMEjjAXvIVP0mvXO3pmdunG2hbGNmKqPyyG6ZAB6EwOYnYJS6tKF17MmDwiRRreewgohIKJE7c3oP8oYaXH_mLvo9RI_BxpgRbdblFGZFzkGiTrZL0ju0XjSX5oBrcmFLfX5Rd3P3Lv7ySszZiwvRBLyEoR4v_I1oeS59FhMFJ5nHfdMwwd0X0UP_FUf67C24-vcaGi7Xv3ni4lWEU-skubVXTS2ya1t41VX2T_FD0kEorFAcwC30NcHjRERFMdHYXBMyvGEw.CpiU15hYni_PlE_UWHFCQA.sguibYYksrr1sUw7BqjJXJBmRNA0mOuEhRUaZ4I74H2LD-QC1GdY2wCYLp987GEbRnGiOGiNypsk_hONvHFcH0-0NXYxRL3Nel9gPATShEQ.KWSA5I9S9fXpvGnlkqFs7A" + }, + + "record": { + "CNAME": "danilwhale.github.io" + } + } + \ No newline at end of file diff --git a/domains/danithu.json b/domains/danithu.json new file mode 100644 index 000000000..549079e7f --- /dev/null +++ b/domains/danithu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "danithu123", + "email": "danithuamaranayakanew@gmail.com" + }, + "record": { + "CNAME": "danithu123.github.io" + } +} diff --git a/domains/dannydandan.json b/domains/dannydandan.json index a3160cdee..15497138b 100644 --- a/domains/dannydandan.json +++ b/domains/dannydandan.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "daanschenkel", - "email": "daan@daanschenkel.nl" - }, - "record": { - "URL": "https://daanschenkel.nl" - } - } - +{ + "owner": { + "username": "daanschenkel", + "email": "daan@daanschenkel.nl" + }, + "record": { + "URL": "https://daanschenkel.nl" + } +} diff --git a/domains/danosyrus.json b/domains/danosyrus.json new file mode 100644 index 000000000..cd0ab9272 --- /dev/null +++ b/domains/danosyrus.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Resume", + "repo": "https://github.com/danosyrus/danosyrus.github.io", + "owner": { + "username": "danosyrus", + "email": "danosyrus@tuta.io", + "discord": "danosyrus" + }, + "record": { + "CNAME": "danosyrus.github.io" + } +} diff --git a/domains/dark-pizza.json b/domains/dark-pizza.json new file mode 100644 index 000000000..755ca19fd --- /dev/null +++ b/domains/dark-pizza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DarkPizza", + "email": "arturpizzagames@hotmail.com" + }, + "record": { + "URL": "https://github.com/darkpizza/darkpizza" + } +} diff --git a/domains/dark.json b/domains/dark.json index 6e6b69a43..74fbbdd3d 100644 --- a/domains/dark.json +++ b/domains/dark.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "BruhDark", - "email": "darkpxint@gmail.com" - }, - "record": { - "CNAME": "bruhdarkgithubio-production.up.railway.app" - } - } - +{ + "owner": { + "username": "BruhDark", + "email": "darkpxint@gmail.com" + }, + "record": { + "CNAME": "website-93d6f.web.app" + } +} diff --git a/domains/darkc.json b/domains/darkc.json new file mode 100644 index 000000000..b1a04ec89 --- /dev/null +++ b/domains/darkc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jc-discdev", + "email": "jjsuscc@gmail.com" + }, + "record": { + "URL": "https://darkdev.es" + } +} diff --git a/domains/darkdevil.json b/domains/darkdevil.json index 9faf4830a..43a8b34a8 100644 --- a/domains/darkdevil.json +++ b/domains/darkdevil.json @@ -8,16 +8,15 @@ }, "record": { "A": [ - "185.199.109.153", - "185.199.110.153", - "185.199.111.153", - "185.199.108.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - + "185.199.109.153", + "185.199.110.153", + "185.199.111.153", + "185.199.108.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/darrem.json b/domains/darrem.json new file mode 100644 index 000000000..19e20e38f --- /dev/null +++ b/domains/darrem.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DarremMolko", + "email": "", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XKhYiI2uBnWAXJAQ7333dWkMIXEc7o6WVTYvGCPRaG34iumSQJOUG6DwLYHjaYPlRjYkBSH-9gQw5I9DFxTkcUNTFCQ9hEuZFvm_NvCnEIugZqjg4fEu8TK-33c7M3XfTJjHEAUITBXHJEmjLrFDaLiVRPbsaJNEmaXX0NIn7U40Bgz5dx2bxvD4Ix6Cz1DUvqpgvXTMA2SmT72nBi40k5IKbHouJN1I42iSYyTdsB8LeEpUm97vnpDePHlWYxK4GdKxUh348jeor1Hwz2vZwfM-zLTrKk4awbvpqdy1Afz02wBb1kmcdYng1KCq8LXk1Rz-8u2mgoziGazQt6sLCA.XqztMYGNoZI27xQ5J1NtxQ.fhZFG0EKkijy4hN-pZtt9zO9oa9o6hhPt8t1MqpZxerLYnU94mKe6f4AppFlomOkGvcxFg1nQKwFjStlFDKJAZU4uB7_drXzRCvQba4iL0E.7F6yl-Fde0545UKoqIKlEg" + }, + "record": { + "CNAME": "darrem.alwaysdata.net" + } +} diff --git a/domains/darsh.json b/domains/darsh.json deleted file mode 100644 index f32357fa4..000000000 --- a/domains/darsh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "DarshSood's personal website", - "repo": "https://replit.com/@DarshS/introduction-page", - "owner": { - "username": "DarshSood", - "email": "darshsood1@gmail.com" - }, - "record": { - "CNAME": "5dcb1e8b-787e-43ce-bd1d-217d51ab09e1.id.repl.co" - } -} diff --git a/domains/darshil.json b/domains/darshil.json new file mode 100644 index 000000000..48ac072ab --- /dev/null +++ b/domains/darshil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Darshil-154", + "email": "darshil6675@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/darvin.json b/domains/darvin.json new file mode 100644 index 000000000..e3154c0a4 --- /dev/null +++ b/domains/darvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "darvingaba", + "email": "darvingaba1@gmail.com" + }, + "record": { + "URL": "https://darvingaba.github.io/pfmain/" + } +} diff --git a/domains/darvingaba.json b/domains/darvingaba.json new file mode 100644 index 000000000..e0fadb8a7 --- /dev/null +++ b/domains/darvingaba.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "darvingaba", + "email": "darvingaba1@gmail.com" + }, + "record": { + "URL": "https://pf-o64a.onrender.com/" + } +} diff --git a/domains/dash.stefdp.json b/domains/dash.stefdp.json new file mode 100644 index 000000000..13881f84f --- /dev/null +++ b/domains/dash.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/dashboard.almaz.json b/domains/dashboard.almaz.json new file mode 100644 index 000000000..b73b812a6 --- /dev/null +++ b/domains/dashboard.almaz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AlmaziikDev", + "email": "almazgamer228@gmail.com", + "discord": "718458417232085104", + "github_id": 132609906 + }, + "record": { + "A": ["45.134.39.14"] + } +} diff --git a/domains/dashboard.chiragnahata.json b/domains/dashboard.chiragnahata.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/dashboard.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/dashboard.json b/domains/dashboard.json deleted file mode 100644 index 0f287178e..000000000 --- a/domains/dashboard.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, - - "record": { - "URL": "https://register.is-a.dev" - } -} diff --git a/domains/dashboard.zeppelin.maskduck.json b/domains/dashboard.zeppelin.maskduck.json deleted file mode 100644 index bc90b7c35..000000000 --- a/domains/dashboard.zeppelin.maskduck.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "description": "MaskDuck's personal website!", - "repo": "https://github.com/maskducks/maskducks.github.io", - "owner": { - "username": "MaskDuck", - "email": "", - "discord": "MaskDuck#1337", - "twitter": "MaskDuck1", - "reddit": "u/maskduck", - "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586." - }, - "record": { - "CNAME": "zeppelin-railway-dashboard.up.railway.app" - } -} diff --git a/domains/dasshark.json b/domains/dasshark.json index 8d62ca37b..a4486010e 100644 --- a/domains/dasshark.json +++ b/domains/dasshark.json @@ -1,12 +1,9 @@ - - { - "owner": { - "username": "DasSharkk", - "email": "affenheld@gmx.de" - }, - - "record": { - "URL": "https://dasshark.me" - } - } - +{ + "owner": { + "username": "DasSharkk", + "email": "mail@julius.software" + }, + "record": { + "CNAME": "julius.software" + } +} diff --git a/domains/data.json b/domains/data.json new file mode 100644 index 000000000..888b761d4 --- /dev/null +++ b/domains/data.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "CNAME": "is-a-dev.github.io" + } +} diff --git a/domains/data.om.json b/domains/data.om.json new file mode 100644 index 000000000..a55f3e7e8 --- /dev/null +++ b/domains/data.om.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TerraPlayz", + "email": "omsenjalia+github@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/datamind.json b/domains/datamind.json new file mode 100644 index 000000000..a185d82b9 --- /dev/null +++ b/domains/datamind.json @@ -0,0 +1,12 @@ +{ + "description": "personal site", + "repo": "https://github.com/DatamindDev/DatamindDev.github.io", + "owner": { + "username": "DatamindDev", + "email": "datamindcontact@gmail.com", + "twitter": "i dont use" + }, + "record": { + "CNAME": "dataminddev.github.io" + } +} diff --git a/domains/dave.json b/domains/dave.json new file mode 100644 index 000000000..1eca59856 --- /dev/null +++ b/domains/dave.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "davad00", + "email": "", + "discord": "1201678865093894234" + }, + + "record": { + "CNAME": "dave-lezt.onrender.com" + } + } + diff --git a/domains/dave9123.json b/domains/dave9123.json new file mode 100644 index 000000000..eb8baa4ab --- /dev/null +++ b/domains/dave9123.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dave9123", + "email": "dave.turmawan@outlook.com" + }, + "record": { + "CNAME": "dave9123.github.io" + } +} diff --git a/domains/davekibh.json b/domains/davekibh.json deleted file mode 100644 index dd23d22e2..000000000 --- a/domains/davekibh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Dave Bhandari's Portfolio", - "repo": "https://github.com/Davekibh/Davekibh.github.io", - "owner": { - "username": "Davekibh", - "email": "davestephen2002@gmail.com" - }, - "record": { - "CNAME": "Davekibh.github.io" - } -} diff --git a/domains/david.json b/domains/david.json deleted file mode 100644 index f7c231408..000000000 --- a/domains/david.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Student and developer in the United Kingdom.", - "repo": "https://github.com/davidjcralph", - "record": { - "URL": "https://davidjcralph.co.uk" - }, - "owner": { - "username": "davidjcralph", - "email": "me@davidjcralph.co.uk" - } -} diff --git a/domains/davidadrian8a.json b/domains/davidadrian8a.json new file mode 100644 index 000000000..9c0f7d085 --- /dev/null +++ b/domains/davidadrian8a.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DavidAdrian8ag", + "email": "krezitech@hotmail.com" + }, + "record": { + "URL": "https://davidadrian8ag.netlify.app/" + } +} diff --git a/domains/davidbisky.json b/domains/davidbisky.json new file mode 100644 index 000000000..0b12b7d9a --- /dev/null +++ b/domains/davidbisky.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "VitStudio", + "email": "richardvu12391@gmail.com" + }, + + "record": { + "A": ["198.45.114.194"] + } +} diff --git a/domains/davidheredia.json b/domains/davidheredia.json new file mode 100644 index 000000000..22fecf385 --- /dev/null +++ b/domains/davidheredia.json @@ -0,0 +1,11 @@ +{ + "description": "Portofolio PWA", + "repo": "https://github.com/dherediat97/Portfolio", + "owner": { + "username": "dherediat97", + "email": "dherediat97@gmail.com" + }, + "record": { + "URL": "https://dherediat97.github.io/Portfolio" + } +} diff --git a/domains/davidpuerta.json b/domains/davidpuerta.json index 2d61c3c48..4b53038a1 100644 --- a/domains/davidpuerta.json +++ b/domains/davidpuerta.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "david96182", - "email": "puertadavid96182@gmail.com" - }, - "record": { - "CNAME": "david96182.github.io" - } -} \ No newline at end of file + "owner": { + "username": "david96182", + "email": "puertadavid96182@gmail.com" + }, + "record": { + "CNAME": "david96182.github.io" + } +} diff --git a/domains/davish.json b/domains/davish.json deleted file mode 100644 index 205b45b81..000000000 --- a/domains/davish.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Davish's Wesbite", - "repo": "https://github.com/akchy/akchy.github.io", - "owner": { - "username": "akchy", - "email": "akarshashok12@gmail.com" - }, - "record": { - "CNAME": "akchy.github.io" - } -} diff --git a/domains/dawnbreaker.json b/domains/dawnbreaker.json new file mode 100644 index 000000000..92b0a6e03 --- /dev/null +++ b/domains/dawnbreaker.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DawnBreaker0013", + "email": "dawnbreaker0013@gmail.com" + }, + "record": { + "A": ["34.168.171.130"] + } +} diff --git a/domains/daxnime.json b/domains/daxnime.json deleted file mode 100644 index 94fa3aab5..000000000 --- a/domains/daxnime.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "Covarun", - "email": "covs538@gmail.com" - }, - - "record": { - "CNAME": "95e56ee3-15f3-468a-9715-14e3d4879a09.id.repl.co" - } - } - diff --git a/domains/dayowebevents.json b/domains/dayowebevents.json new file mode 100644 index 000000000..39803e0f4 --- /dev/null +++ b/domains/dayowebevents.json @@ -0,0 +1,11 @@ +{ + "description": "dayowebevents.is-a.dev", + "repo": "https://github.com/dbillion/EventsGatherApp.github.io", + "owner": { + "username": "dbillion", + "email": "dayozoe@gmail.com" + }, + "record": { + "CNAME": "dbillion.github.io" + } +} diff --git a/domains/daysling.json b/domains/daysling.json deleted file mode 100644 index e88467da9..000000000 --- a/domains/daysling.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "NightSling", - "email": "pangenisushant20@gmail.com" - }, - - "record": { - "CNAME": "daysling.xyz" - } - } - \ No newline at end of file diff --git a/domains/db.json b/domains/db.json deleted file mode 100644 index 8bbfd9b49..000000000 --- a/domains/db.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a website for my project datahook", - "repo": "https://github.com/leecheeyong/leecheeyong", - "owner": { - "username": "leecheeyong", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "933632ef-b3af-45a9-8a6c-afe49a9b5625.id.repl.co" - } -} diff --git a/domains/dc.whine.json b/domains/dc.whine.json deleted file mode 100644 index 64e2b4a8f..000000000 --- a/domains/dc.whine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "whi_ne's discord", - "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" - }, - "record": { - "CNAME": "a.redirect.pizza" - } -} \ No newline at end of file diff --git a/domains/de.mcstatus.json b/domains/de.mcstatus.json new file mode 100644 index 000000000..df8119012 --- /dev/null +++ b/domains/de.mcstatus.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Pe5ZJbpCemxi3LNkJueUT8yXsbcvTYMB8kUNIcrEiMQ74S1tK_AKJQNr8z91rdDCgnQrkwm4IXOdg0hVfesD6BNXzdkk0tbCa_XMhMcWXySl4FxpBplksSYowTFn8kt71dC6wziz-bIxHqiV05qq8iQz4no4dRx7y201eFhYjHwohmgsDVuHo-RKwWPZb4DQ3pU9q-Kmj3S9oYzbSyeJwzBTOvNZMfTH3mg62WM-8LX9kCEzSxt0RMZonEWBR4iwDfHW4RTL5_q3cM6YlQZgZhMskM0d2qjfW41Z1Rgkk-LoK_Ocy4FgexKGSSQB1ELvKKiB3HIx8SzAJGOUN5embQ.tVHlDE7ViTBjpMwwBziXWg.sxxbX9aYI6LgcOWeVuPJb3-ElpjibO2jA2oyPETPZxVDbxFv-u2NHToDpur3BlAbrqPxdyoD6Axx_khEsNdkCYAFu7US9cMPo7VQvlXgyQRFJSb2_UzskvshnTNO5j-x.-2VA5T7QSGPdyTxNk00KGQ" + }, + + "record": { + "A": ["216.24.57.1"] + } + } + \ No newline at end of file diff --git a/domains/de.whine.json b/domains/de.whine.json index ea93bb80a..eefdf18b4 100644 --- a/domains/de.whine.json +++ b/domains/de.whine.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" - }, - "description": "whi_ne's deno subdomain", - "record": { - "A": ["34.120.54.55"], - "TXT": "deno-com-validation=572b9c00ebc922b6f8367944" - } -} \ No newline at end of file + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "description": "whi_ne's deno subdomain", + "record": { + "A": ["34.120.54.55"], + "TXT": "deno-com-validation=572b9c00ebc922b6f8367944" + } +} diff --git a/domains/dead.json b/domains/dead.json new file mode 100644 index 000000000..ba1cb3eb3 --- /dev/null +++ b/domains/dead.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "w8dead", + "email": "w8dead@proton.me" + }, + "record": { + "URL": "https://www.instagram.com/w8dead/" + } +} diff --git a/domains/deadcode.json b/domains/deadcode.json new file mode 100644 index 000000000..0de06a26c --- /dev/null +++ b/domains/deadcode.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "RichardKanshen", + "email": "richard@kanshen.click", + "twitter": "@kanskje0", + "discord": "kanshen.uwu", + "bluesky": "kanshen.click", + "telegram": "@richardkanskje" + }, + "record": { + "CNAME": "deadcodegames.github.io" + } +} diff --git a/domains/deadshot.json b/domains/deadshot.json index 9d4670aa4..87b118666 100644 --- a/domains/deadshot.json +++ b/domains/deadshot.json @@ -1,9 +1,9 @@ { - "description": "My Official Website, Made with HTML5", + "description": "Updated Website 2023 Edition Haha", "repo": "https://github.com/deadshotofficial/deadshotofficial.github.io", "owner": { "username": "deadshotofficial", - "email": "raj.deadshot8888@gmail.com", + "email": "deadshot3r@pm.me", "twitter": "deadshot3r" }, "record": { diff --git a/domains/dean.json b/domains/dean.json new file mode 100644 index 000000000..2ca64863b --- /dev/null +++ b/domains/dean.json @@ -0,0 +1,13 @@ +{ + "description": "Personal blog and porfolio", + "repo": "https://github.com/dandepan303/frosti", + "owner": { + "username": "dandepan303", + "email": "dandepan303@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/debajyoti.json b/domains/debajyoti.json deleted file mode 100644 index f45a9e8d4..000000000 --- a/domains/debajyoti.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "Debajyoti1", - "email": "debajyotidutta.50@gmail.com" - }, - - "record": { - "CNAME": "debajyoti.cf" - } - } - diff --git a/domains/debaleena.json b/domains/debaleena.json new file mode 100644 index 000000000..713a03111 --- /dev/null +++ b/domains/debaleena.json @@ -0,0 +1,12 @@ +{ + "description": "host my portfolio.", + "repo": "https://github.com/Debaleena84/personal-portfolio-website", + "owner": { + "username": "Debaleena84", + "email": "des.debaleenabasu@gmail.com" + }, + "record": { + "CNAME": "debaleena84.github.io" + } + +} diff --git a/domains/debarchito.json b/domains/debarchito.json new file mode 100644 index 000000000..c2fc1d9fa --- /dev/null +++ b/domains/debarchito.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "debarchito", + "email": "debarchitonath@gmail.com", + "discord": "739497344780992564" + }, + + "record": { + "CNAME": "debarchito.github.io" + } +} diff --git a/domains/debargha.json b/domains/debargha.json index c6c9af50a..cf78f7f84 100644 --- a/domains/debargha.json +++ b/domains/debargha.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "DebarghaXD", + "email": "somachattaraj77@gmail.com" + }, - { - "owner": { - "username": "DebarghaXD", - "email": "somachattaraj77@gmail.com" - }, - - "record": { - "CNAME": "debargha.pages.dev" - } - } - + "record": { + "CNAME": "debargha.pages.dev" + } +} diff --git a/domains/debasishdutta.json b/domains/debasishdutta.json index e39517521..4720b06b8 100644 --- a/domains/debasishdutta.json +++ b/domains/debasishdutta.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "debasish-dutta", - "email": "ddmasterdon@gmail.com" - }, - "record": { - "CNAME": "debasish-dutta.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "debasish-dutta", + "email": "ddmasterdon@gmail.com" + }, + "record": { + "CNAME": "debasish-dutta.github.io" + } +} diff --git a/domains/debjit-mandal.json b/domains/debjit-mandal.json new file mode 100644 index 000000000..501c3dc44 --- /dev/null +++ b/domains/debjit-mandal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "debjit-mandal", + "email": "debjitmandal8925@gmail.com" + }, + "record": { + "CNAME": "debjit-mandal.github.io" + } +} diff --git a/domains/debtlessflea.json b/domains/debtlessflea.json new file mode 100644 index 000000000..2e963239c --- /dev/null +++ b/domains/debtlessflea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DebtlessFlea", + "email": "citizen.caption020@passfwd.com" + }, + "record": { + "CNAME": "debtlessflea.github.io" + } +} \ No newline at end of file diff --git a/domains/debxd.json b/domains/debxd.json index 8ed30e324..749647026 100644 --- a/domains/debxd.json +++ b/domains/debxd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "DebXD", - "email": "debiprasadxd@protonmail.com" - }, - "record": { - "CNAME": "debxd.github.io" - } + "owner": { + "username": "DebXD", + "email": "debiprasadxd@protonmail.com" + }, + "record": { + "CNAME": "debxd.github.io" + } } diff --git a/domains/decentparadox.json b/domains/decentparadox.json new file mode 100644 index 000000000..9125c32f2 --- /dev/null +++ b/domains/decentparadox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "decentparadox", + "email": "BackendBeast@gmail.com" + }, + "record": { + "CNAME": "personalweb-aiq.pages.dev" + } +} diff --git a/domains/declan.json b/domains/declan.json new file mode 100644 index 000000000..d567bc965 --- /dev/null +++ b/domains/declan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "declanwn", + "email": "declanwnickerson@gmail.com" + }, + "record": { + "A": ["67.246.110.110"] + } +} diff --git a/domains/dedchromebook.json b/domains/dedchromebook.json new file mode 100644 index 000000000..159839a83 --- /dev/null +++ b/domains/dedchromebook.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "codeguy271", + "email": "", + "discord": "1202358603940634688", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gRr1nTTedMATs4ZQU5s4A8Lh3q4LynuuIJHkrxOAOWm3r-j8-NSpt3dt8L4Q3RU3oPVdYNaY3tdyZByDzzxQ4-PecHOLT43Rl-MK_detKgY_EZftBWJYQictpGxxFSIl8a92vK301OBG2oeF-bAAxLBKDAeXvjCWytYlJfMCMsfeEQ9NYF1gj17rr0BEO_KuyiC9rJZkjOELpHJQNSqYt1WEBhmiAjjpTLNGD0JyfNfGSU5JfFo6uyXTjj__qFECYyl_dadHETuRcYrQo5O91H8sJ2svrNZqcizfnWI-YLgiaWaFtK1nxHN1QQUum9D2cN0aKLd_BlYiQ5oooApkcA.vuPJ73qwLyIUcK0rgaSkbA.g9FrLxKMkTkQJl9mRMa7FZrWSRiVwaHSNXzG5SSh1V3nwrkgZWKpYi1vHXoAIMwCeyCf1qMrH1J8SYLRCy_X0FZiS5rxkbvYNuyIH8N4j-g.E69eeuRwY1wwLvL3V1SCZQ" + }, + "record": { + "CNAME": "codeguy271.github.io" + } +} diff --git a/domains/deepak.json b/domains/deepak.json new file mode 100644 index 000000000..2f7d89e18 --- /dev/null +++ b/domains/deepak.json @@ -0,0 +1,11 @@ +{ + "description": "Deepak's Personal Site", + "repo": "https://github.com/marchinghunter/marchinghunter.github.io", + "owner": { + "username": "marchinghunter", + "email": "dm6593120@gmail.com" + }, + "record": { + "CNAME": "marchinghunter.github.io" + } +} diff --git a/domains/deepesh.json b/domains/deepesh.json new file mode 100644 index 000000000..f57c250d9 --- /dev/null +++ b/domains/deepesh.json @@ -0,0 +1,11 @@ +{ + "description": "Use for portfolio.", + "repo": "https://github.com/DeepeshXCodes/deepeshxcodes.github.io", + "owner": { + "username": "DeepeshXCodes", + "email": "deepesh.chakravartii@gmail.com" + }, + "record": { + "CNAME": "deepeshxcodes.github.io" + } +} diff --git a/domains/deepraj.json b/domains/deepraj.json new file mode 100644 index 000000000..62cf1114d --- /dev/null +++ b/domains/deepraj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "deepraj21", + "email": "deepraj21.bera@gmail.com" + }, + "record": { + "CNAME": "deepraj21.github.io" + } +} diff --git a/domains/defective.json b/domains/defective.json new file mode 100644 index 000000000..96d3cf7cd --- /dev/null +++ b/domains/defective.json @@ -0,0 +1,11 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/Defective4/defective4.github.io", + "owner": { + "username": "Defective4", + "email": "def3ctive4@gmail.com" + }, + "record": { + "CNAME": "defective4.github.io" + } +} diff --git a/domains/dehteam3.json b/domains/dehteam3.json index 74931407b..c3f8c268d 100644 --- a/domains/dehteam3.json +++ b/domains/dehteam3.json @@ -1,4 +1,3 @@ - { "description": "Hi, I am Thomas Aka dehteam3, I like coding, playing games", "repo": "https://github.com/dehteam3/dehteam3.github.io", diff --git a/domains/deko.json b/domains/deko.json new file mode 100644 index 000000000..af1b4f1d4 --- /dev/null +++ b/domains/deko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "record": { + "URL": "https://ukriu.github.io" + } +} diff --git a/domains/delasheras.json b/domains/delasheras.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/delasheras.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/delta.json b/domains/delta.json index 62ee70d4d..5be00badd 100644 --- a/domains/delta.json +++ b/domains/delta.json @@ -1,12 +1,12 @@ { - "description": "Delta's personal website using Github Pages", - "repo": "https://github.com/protogendelta/protogendelta.github.io", - "owner": { - "username": "ProtogenDelta", - "email": "", - "twitter": "TheDeltaProto" - }, - "record": { - "CNAME": "protogendelta.github.io" - } -} + "description": "Leo's personal website using Github Pages", + "repo": "https://github.com/leocatsune/leocatsune.github.io", + "owner": { + "username": "LeoCatsune", + "email": "", + "twitter": "LeoCatsune" + }, + "record": { + "CNAME": "leocatsune.github.io" + } +} diff --git a/domains/deltafumble.json b/domains/deltafumble.json new file mode 100644 index 000000000..e92e926be --- /dev/null +++ b/domains/deltafumble.json @@ -0,0 +1,12 @@ +{ + "description": "My blog", + "repo": "https://github.com/deltafumble/deltafumble.github.io", + "owner": { + "username": "deltafumble", + "email": "deltafumblecontact@skiff.com", + "twitter": "deltafumble" + }, + "record": { + "CNAME": "deltafumble.github.io" + } +} diff --git a/domains/deltara.json b/domains/deltara.json new file mode 100644 index 000000000..096c8a75f --- /dev/null +++ b/domains/deltara.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Deltara3", + "email": "boided420@gmail.com" + }, + + "record": { + "CNAME": "deltara3.github.io" + } +} diff --git a/domains/demir.json b/domains/demir.json new file mode 100644 index 000000000..c9e9d39d4 --- /dev/null +++ b/domains/demir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "demirdegerli", + "email": "demirdegerli@protonmail.com" + }, + "record": { + "URL": "https://demirdegerli.com" + } +} diff --git a/domains/demo.mcstatus.json b/domains/demo.mcstatus.json new file mode 100644 index 000000000..6a7b11a15 --- /dev/null +++ b/domains/demo.mcstatus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "CNAME": "bff5bd034c7fbbeafaaf626f505c8cc5.ipv4.tcpshield.com" + } +} diff --git a/domains/demon.json b/domains/demon.json index 08a0af416..1479da917 100644 --- a/domains/demon.json +++ b/domains/demon.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "patilranjit485", - "email": "patilranjit2610@gmail.com" - }, - "record": { - "CNAME": "demon-brother.blogspot.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "patilranjit485", + "email": "patilranjit2610@gmail.com" + }, + "record": { + "CNAME": "demon-brother.blogspot.com" + } +} diff --git a/domains/demonitize.json b/domains/demonitize.json index 4eafedaf9..6f005c4e4 100644 --- a/domains/demonitize.json +++ b/domains/demonitize.json @@ -4,16 +4,16 @@ "email": "", "twitter": "demonitized_boi", "twitch": "demonitized_boi", - "discord": "DEMONITIZED BOI#6969" + "discord": "demonitize" }, "description": "Probably will use this to redirect to GitHub, because custom domain look cool", - "repo": "https://github.com/demonitize", + "repo": "https://github.com/demonitize", "record": { - "URL": "https://github.com/demonitize", - "MX": [ + "URL": "https://github.com/demonitize", + "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "TXT": "dh=09350922b05d5a2bcc4a3b4b16c9ef4c0deecb79 v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/demonium.json b/domains/demonium.json deleted file mode 100644 index bdce8baf7..000000000 --- a/domains/demonium.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Demonium's is-a.dev domain", - "repo": "https://github.com/thedemonium/demonium.github.io", - "owner": { - "username": "thedemonium", - "email": "tbapbing@gmail.com" - }, - "record": { - "CNAME": "komposerv.ru" - } -} diff --git a/domains/den.json b/domains/den.json index 2172ac137..2b0b1cd96 100644 --- a/domains/den.json +++ b/domains/den.json @@ -6,6 +6,6 @@ "email": "" }, "record": { - "CNAME": "hashnode.network" - } + "CNAME": "hashnode.network" + } } diff --git a/domains/denboy0123.json b/domains/denboy0123.json new file mode 100644 index 000000000..46dc74d46 --- /dev/null +++ b/domains/denboy0123.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "denboy0123", + "email": "pochtaproverka01@gmail.com" + }, + "record": { + "URL": "https://t.me/s/denboy0123" + } +} diff --git a/domains/denis.json b/domains/denis.json index 9bca53383..41f9e61b3 100644 --- a/domains/denis.json +++ b/domains/denis.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "DenLes", - "email": "denislessard91@gmail.com" - }, - "record": { - "CNAME": "denles.github.io" - } - } - +{ + "owner": { + "username": "DenLes", + "email": "denislessard91@gmail.com" + }, + "record": { + "CNAME": "denles.github.io" + } +} diff --git a/domains/denix.json b/domains/denix.json index 30fc59357..29ef14b0e 100644 --- a/domains/denix.json +++ b/domains/denix.json @@ -1,11 +1,11 @@ { "owner": { - "username": "denixsucks", - "email": "dnz.odr@gmail.com", - "twitter": "denixsucks", - "discord": "denix#9748" + "username": "denixsucks", + "email": "dnz.odr@gmail.com", + "twitter": "denixsucks", + "discord": "denix#9748" }, "record": { - "CNAME": "denixsucks.github.io" + "CNAME": "denixsucks.github.io" } } diff --git a/domains/deniz.json b/domains/deniz.json index 7833eb574..a5dbba39a 100644 --- a/domains/deniz.json +++ b/domains/deniz.json @@ -1,14 +1,14 @@ { - "description": "This domain is used by Deniz Tunç / creeperkafasi as a personal portfolio", - "repo": "https://github.com/creeperkafasi/creeperkafasi.github.io", - "owner": { - "username": "creeperkafasi", - "email": "", - "twitter": "_creeperkafasi_", - "discord": "creeperkafasipw#1861", - "note": "I don't use twitter that much, you may have a better chance to contact me through discord" - }, - "record": { - "CNAME": "creeperkafasi.github.io" - } + "description": "This domain is used by Deniz Tunç / creeperkafasi as a personal portfolio", + "repo": "https://github.com/creeperkafasi/creeperkafasi.github.io", + "owner": { + "username": "creeperkafasi", + "email": "", + "twitter": "_creeperkafasi_", + "discord": "creeperkafasipw#1861", + "note": "I don't use twitter that much, you may have a better chance to contact me through discord" + }, + "record": { + "CNAME": "creeperkafasi.github.io" + } } diff --git a/domains/denver.json b/domains/denver.json index 115485745..fcabcb9a6 100644 --- a/domains/denver.json +++ b/domains/denver.json @@ -7,6 +7,6 @@ "email": "" }, "record": { - "CNAME": "densite-development-7700.up.railway.app" - } + "CNAME": "densite-development-7700.up.railway.app" + } } diff --git a/domains/derek-briggs.json b/domains/derek-briggs.json deleted file mode 100644 index 26e1cebff..000000000 --- a/domains/derek-briggs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Derek52", - "email": "contact@derekbriggs.xyz" - }, - "record": { - "CNAME": "Derek52.github.io" - } -} diff --git a/domains/dergraph.json b/domains/dergraph.json deleted file mode 100644 index 68a22b590..000000000 --- a/domains/dergraph.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "derGraph", - "email": "dergraph@f5.si" - }, - "record": { - "URL": "https://github.com/derGraph" - } -} diff --git a/domains/dermelnik.json b/domains/dermelnik.json deleted file mode 100644 index 53e36ca74..000000000 --- a/domains/dermelnik.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/derMelnik/derMelnik.github.io", - "owner": { - "username": "derMelnik", - "email": "dermelnik@pm.me" - }, - "record": { - "CNAME": "derMelnik.github.io" - } -} diff --git a/domains/desiredesign.json b/domains/desiredesign.json new file mode 100644 index 000000000..91c68269c --- /dev/null +++ b/domains/desiredesign.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gh053d413x", + "email": "ghostedalex@gmail.com" + }, + "record": { + "URL": "https://sites.google.com/view/desiredesign" + } +} diff --git a/domains/destcom.json b/domains/destcom.json deleted file mode 100644 index 578a9a24a..000000000 --- a/domains/destcom.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "destroycom", - "email": "", - "twitter": "ADSantoine" - }, - "description": "DestCom Portfolio", - "repo": "https://github.com/DestroyCom", - "record": { - "A": ["193.123.34.154"] - } -} diff --git a/domains/dev-dco.json b/domains/dev-dco.json new file mode 100644 index 000000000..e81a86e85 --- /dev/null +++ b/domains/dev-dco.json @@ -0,0 +1,11 @@ +{ + "description": "/dev/ co-op website.", + "repo": "https://dev-dco.github.io", + "owner": { + "username": "dev-dco", + "email": "dev-coop@murena.io" + }, + "record": { + "CNAME": "dev-dco.github.io" + } +} diff --git a/domains/dev.acronical.json b/domains/dev.acronical.json new file mode 100644 index 000000000..160a0a613 --- /dev/null +++ b/domains/dev.acronical.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "record": { + "CNAME": "dev.acronical.pages.dev" + } +} diff --git a/domains/dev.charlesbird.json b/domains/dev.charlesbird.json new file mode 100644 index 000000000..2b232ffcd --- /dev/null +++ b/domains/dev.charlesbird.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UntoldGam", + "email": "charlessbird+github@outlook.com" + }, + "record": { + "CNAME": "dev.charlesobird.pages.dev" + } +} diff --git a/domains/dev.udhaya.json b/domains/dev.udhaya.json new file mode 100644 index 000000000..31dc2651a --- /dev/null +++ b/domains/dev.udhaya.json @@ -0,0 +1,12 @@ +{ + "description": "Dev Portfolio", + "owner": { + "username": "xaceduke", + "email": "kinghtth0@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/dev.wilbur.json b/domains/dev.wilbur.json new file mode 100644 index 000000000..37ccb0959 --- /dev/null +++ b/domains/dev.wilbur.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ThisCatLikesCrypto", + "email": "contact@wilburwilliams.uk" + }, + "record": { + "CNAME": "dev.ww-projects.pages.dev" + } +} diff --git a/domains/dev10us.json b/domains/dev10us.json new file mode 100644 index 000000000..3f45376ae --- /dev/null +++ b/domains/dev10us.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Site", + "repo": "https://dev10us1ty.github.io", + "owner": { + "username": "melonmasteristaken", + "email": "melonmasteristaken@gmail.com" + }, + "record": { + "CNAME": "dev10us1ty.github.io" + } +} diff --git a/domains/deva.json b/domains/deva.json new file mode 100644 index 000000000..0a06c85f4 --- /dev/null +++ b/domains/deva.json @@ -0,0 +1,14 @@ +{ + "description": "my mail forwarder", + "owner": { + "username": "turbomaster95", + "email": "devamidhun.3c.kmbvm@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/devansh.json b/domains/devansh.json new file mode 100644 index 000000000..bf3726268 --- /dev/null +++ b/domains/devansh.json @@ -0,0 +1,12 @@ +{ + "description": "portfolio", + "repo": "https://github.com/devanshyadav2010/register", + "owner": { + "username": "devanshyadav2010", + "email": "dev8adam576@gmail.com", + "twitter": "devanshyadav" + }, + "record": { + "CNAME": "devanshyadav2010.github.io" + } + } diff --git a/domains/devbrainless.json b/domains/devbrainless.json new file mode 100644 index 000000000..5a319d07f --- /dev/null +++ b/domains/devbrainless.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Badless", + "email": "karolczeeek@gmail.com" + }, + "record": { + "CNAME": "badless.github.io" + } +} diff --git a/domains/devbx.json b/domains/devbx.json new file mode 100644 index 000000000..9c921ebc9 --- /dev/null +++ b/domains/devbx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devbx", + "email": "pangys0306@hotmail.com" + }, + "record": { + "CNAME": "devbx.github.io" + } +} diff --git a/domains/devdk.json b/domains/devdk.json index eeac8cc5b..76bbc0e82 100644 --- a/domains/devdk.json +++ b/domains/devdk.json @@ -1,11 +1,11 @@ { - "description": "Personal page of DevDK", - "owner": { - "username": "DeveloperDmitryKolyadin", - "email": "", - "twitter": "_DevDK" - }, - "record": { - "CNAME": "DeveloperDmitryKolyadin.github.io" - } -} \ No newline at end of file + "description": "Personal page of DevDK", + "owner": { + "username": "DeveloperDmitryKolyadin", + "email": "", + "twitter": "_DevDK" + }, + "record": { + "CNAME": "DeveloperDmitryKolyadin.github.io" + } +} diff --git a/domains/devendra.json b/domains/devendra.json new file mode 100644 index 000000000..93c05e163 --- /dev/null +++ b/domains/devendra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devendrakanojiya", + "email": "s_36100@bkbirlacollegekalyan.com" + }, + "record": { + "CNAME": "devendrakanojiya.github.io" + } +} diff --git a/domains/devfate.json b/domains/devfate.json new file mode 100644 index 000000000..3b1a6a4f3 --- /dev/null +++ b/domains/devfate.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "blackpandan", + "email": "", + "twitter": "camzy_l" + }, + "record": { + "CNAME": "blackpandan.github.io" + } +} diff --git a/domains/devhanza.json b/domains/devhanza.json new file mode 100644 index 000000000..e7e14efc3 --- /dev/null +++ b/domains/devhanza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevHanza", + "email": "josephandrew1@logicstreak.com" + }, + "record": { + "URL": "https://hansana.is-a.dev/" + } +} diff --git a/domains/devhavok.json b/domains/devhavok.json new file mode 100644 index 000000000..fdaba2480 --- /dev/null +++ b/domains/devhavok.json @@ -0,0 +1,11 @@ +{ + "description": "My Personal Blog", + "repo": "https://github.com/DevHavok/devhavok.github.io", + "owner": { + "username": "Shaunfurtado", + "email": "shaunf1801@gmail.com" + }, + "record": { + "CNAME": "devhavok.github.io" + } +} diff --git a/domains/devin.json b/domains/devin.json deleted file mode 100644 index 4586c4292..000000000 --- a/domains/devin.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "athuldevin", - "email": "athuldevin@gmail.com" - }, - "record": { - "A": ["140.238.255.16"] - } -} diff --git a/domains/devlori.json b/domains/devlori.json new file mode 100644 index 000000000..6225cf861 --- /dev/null +++ b/domains/devlori.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "evefind", + "email": "fivemgtarp50@gmail.com" + }, + "record": { + "CNAME": "evefind.github.io" + } +} diff --git a/domains/devmirza.json b/domains/devmirza.json new file mode 100644 index 000000000..2bd575190 --- /dev/null +++ b/domains/devmirza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zaid-maker", + "email": "pzhafeez@gmail.com" + }, + "record": { + "CNAME": "zaid-maker.github.io" + } +} diff --git a/domains/devon.json b/domains/devon.json index bd0e8ec3a..3125a1dc1 100644 --- a/domains/devon.json +++ b/domains/devon.json @@ -3,7 +3,7 @@ "repo": "https://github.com/D-Pow/d-pow.github.io", "owner": { "username": "D-Pow", - "email": "dpow9373@gmail.com" + "email": "D-Pow@users.noreply.github.com" }, "record": { "CNAME": "d-pow.github.io" diff --git a/domains/devrealm.json b/domains/devrealm.json deleted file mode 100644 index af30d4d37..000000000 --- a/domains/devrealm.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "devRealm website", - "repo": "https://github.com/devrealm", - "owner": { - "username": "gvagenas", - "email": "", - "twitter": "devrealmorg" - }, - "record": { - "CNAME": "devrealm.org" - } -} diff --git a/domains/devvault.json b/domains/devvault.json new file mode 100644 index 000000000..fd8c87242 --- /dev/null +++ b/domains/devvault.json @@ -0,0 +1,11 @@ +{ + "description": "Link for DevVault personal site on GitHub pages", + "repo": "https://github.com/DevVault/devvault.github.io", + "owner": { + "username": "DevVault", + "email": "admin@devvault.ru" + }, + "record": { + "CNAME": "devvault.github.io" + } +} diff --git a/domains/dex.json b/domains/dex.json deleted file mode 100644 index c7c840fe4..000000000 --- a/domains/dex.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Portfolio", - "repo": "https://github.com/thegeekdex", - "owner": { - "username": "thegeekdex", - "email": "", - "discord": "Dexter#6993" - }, - "record": { - "A": ["43.205.87.144"] - } -} diff --git a/domains/dexo.json b/domains/dexo.json index 026a9312d..a97675642 100644 --- a/domains/dexo.json +++ b/domains/dexo.json @@ -1,15 +1,13 @@ { - "description": "Ce cauti ma aici?", - "owner": { - "username": "DeXoHigh", - "email": "dexocash@gmail.com" - }, - "record": { - "A": ["185.141.25.116"], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "DeXoHigh", + "email": "dexo1337@pm.me" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/dg23w6xwjtee.json b/domains/dg23w6xwjtee.json new file mode 100644 index 000000000..a04a530ae --- /dev/null +++ b/domains/dg23w6xwjtee.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kleeiny", + "email": "kleeinlmao@gmail.com", + "discord": "763581985410121769" + }, + + "record": { + "CNAME": "gv-q6wjma7mpehvc2.dv.googlehosted.com" + } +} diff --git a/domains/dhananjaypatil.json b/domains/dhananjaypatil.json new file mode 100644 index 000000000..9f5692cab --- /dev/null +++ b/domains/dhananjaypatil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dhananjay8", + "email": "dhananjay.pict@gmail.com" + }, + "record": { + "CNAME": "dhananjay8.github.io" + } +} diff --git a/domains/dhaval-kareliya.json b/domains/dhaval-kareliya.json new file mode 100644 index 000000000..e7e0654c5 --- /dev/null +++ b/domains/dhaval-kareliya.json @@ -0,0 +1,11 @@ +{ + "description": "This is a personal website", + "repo": "https://github.com/dhaval-kareliya/dhaval-kareliya.github.io", + "owner": { + "username": "dhaval-kareliya", + "email": "" + }, + "record": { + "CNAME": "dhaval-kareliya.github.io" + } +} diff --git a/domains/dhilipan.json b/domains/dhilipan.json new file mode 100644 index 000000000..07c4ee597 --- /dev/null +++ b/domains/dhilipan.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "MysticalPvE", + "email": "", + "discord": "1229782675678826496", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A" + }, + "record": { + "A": [ + "75.2.60.5" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/dhinesh.json b/domains/dhinesh.json index 1e961e3b6..6741cf285 100644 --- a/domains/dhinesh.json +++ b/domains/dhinesh.json @@ -1,11 +1,11 @@ { - "description": "Dhinesh's portfolio website", - "repo": "https://github.com/mdhinesh/mdhinesh.github.io", - "owner": { - "username": "mdhinesh", - "email": "mdhinesh3103@gmail.com" - }, - "record": { - "CNAME": "mdhinesh.github.io" - } + "description": "Dhinesh's portfolio website", + "repo": "https://github.com/mdhinesh/mdhinesh.github.io", + "owner": { + "username": "mdhinesh", + "email": "mdhinesh3103@gmail.com" + }, + "record": { + "CNAME": "mdhinesh.github.io" } +} diff --git a/domains/dhiraj.json b/domains/dhiraj.json new file mode 100644 index 000000000..4a4a25618 --- /dev/null +++ b/domains/dhiraj.json @@ -0,0 +1,14 @@ +{ + "description": "It's my personal portfolio website.", + "repo": "https://github.com/Dhiraj275/my-portfolio", + "owner": { + "username": "Dhiraj275", + "email": "dhirajprajapati.co@gmail.com", + "twitter": "DhruvInTech" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} \ No newline at end of file diff --git a/domains/dhruv-tara.json b/domains/dhruv-tara.json new file mode 100644 index 000000000..128bb8d18 --- /dev/null +++ b/domains/dhruv-tara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dhruv-tara", + "email": "weebgenix@proton.me" + }, + "record": { + "CNAME": "dhruv-tara.github.io" + } +} diff --git a/domains/dhruv.json b/domains/dhruv.json new file mode 100644 index 000000000..5d7b5ee4c --- /dev/null +++ b/domains/dhruv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LejhandG", + "email": "dhruvbhanushali5621@gmail.com" + }, + "record": { + "CNAME": "lejhandg.github.io" + } +} diff --git a/domains/dhruva.json b/domains/dhruva.json deleted file mode 100644 index aa4f7c960..000000000 --- a/domains/dhruva.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "personal site", - "repo": "https://github.com/carrotfarmer/portfolio-1", - "owner": { - "username": "carrotfarmer", - "email": "dhruvas17068@gmail.com" - }, - "record": { - "URL": "https://dhruvas.vercel.app" - } -} diff --git a/domains/dhruvakalur.json b/domains/dhruvakalur.json new file mode 100644 index 000000000..ab5e622cc --- /dev/null +++ b/domains/dhruvakalur.json @@ -0,0 +1,14 @@ +{ + "description": "My Personal EMAIL", + "owner": { + "username": "dhruvakalur", + "email": "dhruvakalur9@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/dhruvil.json b/domains/dhruvil.json index bf71f8922..19a961690 100644 --- a/domains/dhruvil.json +++ b/domains/dhruvil.json @@ -1,21 +1,21 @@ { - "description": "For portfolio", - "repo": "https://github.com/DhruvilMoradiya/DhruvilMoradiya.github.io", - "owner": { - "username": "DhruvilMoradiya", - "email": "dhruvil1808@gmail.com" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} + "description": "For portfolio", + "repo": "https://github.com/DhruvilMoradiya/DhruvilMoradiya.github.io", + "owner": { + "username": "DhruvilMoradiya", + "email": "dhruvil1808@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/dhruvilprajapati.json b/domains/dhruvilprajapati.json new file mode 100644 index 000000000..ef9f87d7b --- /dev/null +++ b/domains/dhruvilprajapati.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dhruvil2511", + "email": "dhruvilprajapati2003@gmail.com" + }, + "record": { + "URL": "https://github.com/dhruvil2511" + } +} diff --git a/domains/dhyan99.json b/domains/dhyan99.json index e35644c81..0ecf66ae1 100644 --- a/domains/dhyan99.json +++ b/domains/dhyan99.json @@ -1,12 +1,11 @@ +{ + "repo": "https://github.com/d99-1/dhyan99-portfolio", + "owner": { + "username": "D99-1", + "email": "dhyantanna@gmail.com" + }, - { - "repo": "https://github.com/d99-1/dhyan99-portfolio", - "owner": { - "username": "D99-1", - "email": "dhyantanna@gmail.com" - }, - - "record": { - "CNAME": "3464245b-2def-4309-ab2b-9474f03ca3f2.id.repl.co" } - } - + "record": { + "CNAME": "3464245b-2def-4309-ab2b-9474f03ca3f2.id.repl.co" + } +} diff --git a/domains/dhyeypatel.json b/domains/dhyeypatel.json new file mode 100644 index 000000000..a2e975376 --- /dev/null +++ b/domains/dhyeypatel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dh2523", + "email": "dhpatel2523@gmail.com" + }, + "record": { + "CNAME": "dh2523.github.io" + } +} diff --git a/domains/dhyy.json b/domains/dhyy.json new file mode 100644 index 000000000..d9000f92a --- /dev/null +++ b/domains/dhyy.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Dcashter", + "email": "tinggiisky1@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/diamondbroplayz.json b/domains/diamondbroplayz.json new file mode 100644 index 000000000..c1e4b9f55 --- /dev/null +++ b/domains/diamondbroplayz.json @@ -0,0 +1,13 @@ +{ + "description": "My coding blog", + "repo": "https://github.com/wavysblog/wavysblog.github.io", + "owner": { + "username": "DiamondBroPlayz", + "email": "diamondbroplayz@proton.me", + "twitter": "logout", + "discord": "4lett" + }, + "record": { + "CNAME": "wavysblog.github.io" + } +} diff --git a/domains/dib.json b/domains/dib.json deleted file mode 100644 index b6056f768..000000000 --- a/domains/dib.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "URL Shortener for sites.", - "repo": "https://github.com/DIBSTERYT", - "owner": { - "username": "DIBSTERYT", - "email": "contact@dibster.ml", - "twitter": "DEV_DIBSTER" - }, - "record": { - "A": ["192.95.42.66"] - } -} diff --git a/domains/dibster.json b/domains/dibster.json deleted file mode 100644 index c6a285efd..000000000 --- a/domains/dibster.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "description": "ShareX Server/Protfolio Site. Under @DIBSTERYT on GitHub.", - "repo": "https://github.com/DIBSTERYT", - "owner": { - "username": "DIBSTERYT", - "email": "hello@dibster-is-a.engineer", - "twitter": "DEV_DIBSTER" - }, - "record": { - "A": ["192.95.42.66"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/didier.json b/domains/didier.json deleted file mode 100644 index 6fd7421dc..000000000 --- a/domains/didier.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "repo": "https://github.com/didiermunezero/didierm", - "owner": { - "username": "didiermunezero", - "email": "didiermunezer38@gmail.com" - }, - "record": { - "URL": "https://munezero.me" - } -} diff --git a/domains/didimukhtar.json b/domains/didimukhtar.json index 7a8e2711f..0b633ab3b 100644 --- a/domains/didimukhtar.json +++ b/domains/didimukhtar.json @@ -1,13 +1,11 @@ { - "description": "The awesome portfolio site for Al-Mukhtar Jamilat Ladidi" - , - "repo": "https://github.com/didimukhtar/didimukhtar.github.io" - , - "owner": { - "username": "didimukhtar", - "email": "jamilatmukhtar2014@gmail.com" + "description": "The awesome portfolio site for Al-Mukhtar Jamilat Ladidi", + "repo": "https://github.com/didimukhtar/didimukhtar.github.io", + "owner": { + "username": "didimukhtar", + "email": "jamilatmukhtar2014@gmail.com" }, "record": { "CNAME": "didimukhtar.github.io" } -} +} diff --git a/domains/didntpot.json b/domains/didntpot.json index 7b5a516cf..213a71c34 100644 --- a/domains/didntpot.json +++ b/domains/didntpot.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "xDidntPot", - "email": "didntpot@protonmail.com" - }, - "record": { - "URL": "https://github.com/xdidntpot" - } - } - \ No newline at end of file +{ + "owner": { + "username": "xDidntPot", + "email": "didntpot@protonmail.com" + }, + "record": { + "URL": "https://github.com/xdidntpot" + } +} diff --git a/domains/diedyesterday.json b/domains/diedyesterday.json new file mode 100644 index 000000000..62824954e --- /dev/null +++ b/domains/diedyesterday.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "diedyesterdaywashere", + "email": "diedyesterdaywashere@gmail.com" + }, + "record": { + "CNAME": "diedeyestedaywashere.github.io" + } +} diff --git a/domains/digidenone.json b/domains/digidenone.json new file mode 100644 index 000000000..f47a8711d --- /dev/null +++ b/domains/digidenone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "digidenone", + "email": "digidenone@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/dijisx.json b/domains/dijisx.json new file mode 100644 index 000000000..736ccd175 --- /dev/null +++ b/domains/dijisx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sxinar", + "email": "oshidev@proton.me" + }, + "record": { + "CNAME": "sx.digitalpress.blog" + } +} diff --git a/domains/dillonb07.json b/domains/dillonb07.json deleted file mode 100644 index 4c323478d..000000000 --- a/domains/dillonb07.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Portfolio of projects for DillonB07", - "repo": "https://replit.com/@DillonB07/Portfolio", - "owner": { - "username": "DillonB07", - "email": "dillonb07dev@gmail.com" - }, - "record": { - "CNAME": "c935404b-ab88-41be-9736-1c910b14a5ba.id.repl.co" - } -} diff --git a/domains/dilshad.json b/domains/dilshad.json new file mode 100644 index 000000000..8f2d4c8b6 --- /dev/null +++ b/domains/dilshad.json @@ -0,0 +1,12 @@ +{ + "description": "for portfolio website", + "repo": "https://github.com/dilshad0101/portfolio.website", + "owner": { + "username": "dilshad0101", + "email": "dilshadmuhammed0101@gmail.com" + }, + + "record": { + "CNAME": "dilshad0101.github.io" + } +} diff --git a/domains/dimanet.json b/domains/dimanet.json new file mode 100644 index 000000000..2b7d24b00 --- /dev/null +++ b/domains/dimanet.json @@ -0,0 +1,11 @@ +{ + "description": "dimanet.is-a.dev", + "repo": "https://github.com/dimalmfao/dimalmfao.github.io", + "owner": { + "username": "dimanet", + "email": "alreadytakenman0@gmail.com" + }, + "record": { + "CNAME": "dimanet.dimaonline.fr" + } +} diff --git a/domains/dimas.json b/domains/dimas.json deleted file mode 100644 index 5e66dbf2f..000000000 --- a/domains/dimas.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Portfolio", - "repo": "https://github.com/dimasandriano/dimasandriano.github.io", - "owner": { - "username": "dimasandriano", - "email": "dimas.andriano.h@gmail.com", - "twitter": "DimasAndriano_" - }, - "record": { - "CNAME": "dimasandriano.github.io" - } -} diff --git a/domains/dimasandriano.json b/domains/dimasandriano.json new file mode 100644 index 000000000..eea2565b3 --- /dev/null +++ b/domains/dimasandriano.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/dimasandriano/dimasandriano.github.io", + "owner": { + "username": "dimasandriano", + "email": "dimas.andriano.h@gmail.com", + "twitter": "dimasandriano_h" + }, + "record": { + "CNAME": "dimasandriano.github.io" + } +} diff --git a/domains/dimi.json b/domains/dimi.json new file mode 100644 index 000000000..41c9282f0 --- /dev/null +++ b/domains/dimi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dklesev", + "email": "dimitrij.klesev@gmail.com" + }, + "record": { + "CNAME": "audk.at" + } +} diff --git a/domains/dimtsagk.json b/domains/dimtsagk.json new file mode 100644 index 000000000..f75951bd5 --- /dev/null +++ b/domains/dimtsagk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dimtsagk", + "email": "dimtsagk93@gmail.com" + }, + "record": { + "CNAME": "dimtsagk.go.yo.fr" + } +} diff --git a/domains/dinesh-vaghasia.json b/domains/dinesh-vaghasia.json new file mode 100644 index 000000000..f979258b4 --- /dev/null +++ b/domains/dinesh-vaghasia.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/dinesh-vaghasia/dinesh-vaghasia.github.io", + "owner": { + "username": "dinesh-vaghasia", + "email": "" + }, + "record": { + "CNAME": "dinesh-vaghasia.github.io" + } +} diff --git a/domains/dino.json b/domains/dino.json deleted file mode 100644 index 91fe233e4..000000000 --- a/domains/dino.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Vitor Dino is a front-end developer and ui designer", - "repo": "https://github.com/vitordino", - "owner": { - "username": "vitordino", - "email": "me@vitordino.com" - }, - "record": { - "CNAME": "vitordino.com" - } -} diff --git a/domains/dinokhoa.json b/domains/dinokhoa.json new file mode 100644 index 000000000..499836feb --- /dev/null +++ b/domains/dinokhoa.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "n0td1n0kh0a", + "email": "dinokhoa@proton.me", + "discord": "888370186003050526", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qx_BgIxje-NPHNb6QDw9dXHOstJKAnAYRL5AKcfrDCCUDT8tzK06v1fIRIw1KXhnIKl66nHlw4lLQz3ZeZYRnLdCOslkLmq9p1GAXk5566eppX11HJe7I40ERbckiXbs0Nla1xCHqYbEXAmkXgTi8y9uNS-JnVXiT9ECaZu7ay0UTo9NA6JGcmY5Hvc_WU-flnNtmkr_5EFE0SZKZnPkQtv4xOGzvIBFpUm1Xsv4lXeiKLp93qmh_42eG_vU4P405_AmgxgziDirkLU1itg-mif074bCcqf16jmJsMgQ7WBslxrlIRoC1ukHowA_rjaoyR11woueRNjDEJDGJpV_LQ.9KTWGAKMM-I9HwYyaPJZAg.GXEfjxPeCdC1PrJcd1AgHvkk2572vMcggMdsQRgmgs3v2BxQP6zhgQBEVpw5S5E6bvo9rxSwHgE55cqlMDnhj6_i4FlFhBDKC44Xg2L6x0M._7SnVuj-NZ0E8EHM-ZRRig" + }, + + "record": { + "CNAME": "edge.redirect.pizza" + } + } + diff --git a/domains/dinothedev.json b/domains/dinothedev.json deleted file mode 100644 index ed6cccb14..000000000 --- a/domains/dinothedev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Subdomain for DinoTheDev", - "repo": "https://github.com/DinoTheDevOfficial", - "owner": { - "username": "DinoTheDevOfficial", - "email": "dinothedevofficial@gmail.com" - }, - "record": { - "CNAME": "dinothedev.repl.co" - } -} diff --git a/domains/dinuhifi.json b/domains/dinuhifi.json new file mode 100644 index 000000000..d2e7a3270 --- /dev/null +++ b/domains/dinuhifi.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/dinuhifi/dinuhifi.github.io", + "owner": { + "username": "dinuhifi", + "email": "dinesh23110077@snuchennai.edu.in" + }, + "record": { + "CNAME": "dinuhifi.github.io" + } +} diff --git a/domains/dipan.json b/domains/dipan.json deleted file mode 100644 index 1e7956dd9..000000000 --- a/domains/dipan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Personal Portfolio - Dipan Roy", - "repo": "https://github.com/dipan29", - "owner": { - "username": "dipan29", - "email": "dipanroy@mindwebs.org" - }, - "record": { - "A": ["115.187.62.14"] - } -} diff --git a/domains/dipmala-shrimali.json b/domains/dipmala-shrimali.json new file mode 100644 index 000000000..6c6841a66 --- /dev/null +++ b/domains/dipmala-shrimali.json @@ -0,0 +1,11 @@ +{ + "description": "About Fork", + "repo": "https://github.com/dipmala-shrimali/dipmala-shrimali.github.io", + "owner": { + "username": "dipmala-shrimali", + "email": "" + }, + "record": { + "CNAME": "dipmala-shrimali.github.io" + } +} diff --git a/domains/dirgha-ukani.json b/domains/dirgha-ukani.json new file mode 100644 index 000000000..78ca848dd --- /dev/null +++ b/domains/dirgha-ukani.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/dirgha-ukani/dirgha-ukani.github.io", + "owner": { + "username": "dirgha-ukani", + "email": "" + }, + "record": { + "CNAME": "dirgha-ukani.github.io" + } +} diff --git a/domains/discdefender.json b/domains/discdefender.json new file mode 100644 index 000000000..825461c1d --- /dev/null +++ b/domains/discdefender.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GMR828", + "email": "gmr828@null.net" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/discord.json b/domains/discord.json index 35a36caa8..656c64a52 100644 --- a/domains/discord.json +++ b/domains/discord.json @@ -1,11 +1,9 @@ { - "description": "a discord bot website", - "repo": "https://github.com/botstudios", "owner": { - "username": "BotStudios", - "email": "tojoeleeofficial@gmail.com" + "username": "is-a-dev", + "email": "m@is-a.dev" }, "record": { - "CNAME": "botstudios.github.io" + "CNAME": "edge.redirect.pizza" } } diff --git a/domains/discord.maskduck.json b/domains/discord.maskduck.json deleted file mode 100644 index ac1d57731..000000000 --- a/domains/discord.maskduck.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My discord server", - "owner": { - "email": "", - "username": "MaskDuck", - "reddit": "u/maskduck" - }, - "record": { - "URL": "https://discord.gg/weMcPBJV77" - } -} diff --git a/domains/discord.winbo.json b/domains/discord.winbo.json new file mode 100644 index 000000000..b08208572 --- /dev/null +++ b/domains/discord.winbo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "winbo-yml-exe", + "email": "winbo-yml-exe@outlook.com" + }, + "record": { + "CNAME": "winbo-discord.github.io" + } +} diff --git a/domains/discordbots.semant.json b/domains/discordbots.semant.json deleted file mode 100644 index 44903aa15..000000000 --- a/domains/discordbots.semant.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Discord bot dashboard", - "owner": { - "username": "s3mant", - "email": "contact@semant.is-a.dev" - }, - "record": { - "CNAME": "b0f6dfb1-f219-4a6b-8505-eccaa29200ea.id.repl.co" - } -} diff --git a/domains/discusser.json b/domains/discusser.json new file mode 100644 index 000000000..d74b3a325 --- /dev/null +++ b/domains/discusser.json @@ -0,0 +1,11 @@ +{ + "description": "Hosts Discusser's personal website", + "repo": "https://github.com/Discusser/discusser.github.io", + "owner": { + "username": "Discusser", + "email": "noobly321growing@gmail.com" + }, + "record": { + "CNAME": "discusser.github.io" + } +} diff --git a/domains/dishery.json b/domains/dishery.json new file mode 100644 index 000000000..d4f17e492 --- /dev/null +++ b/domains/dishery.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "legofanlovessayori", + "email": "", + "discord": "805708874178625546" + }, + "record": { + "TXT": [ + "protonmail-verification=4673bc02c41c5ac6445e15835074759576e78e3d", + "v=spf1 include:_spf.protonmail.ch ~all", + "v=DMARC1; p=quarantine" + ], + "MX": [ + "mail.protonmail.ch", + "mailsec.protonmail.ch" + ] + } +} diff --git a/domains/divyanshudhruv.json b/domains/divyanshudhruv.json new file mode 100644 index 000000000..ec15dcb29 --- /dev/null +++ b/domains/divyanshudhruv.json @@ -0,0 +1,11 @@ +{ + "description": "Its just my portfolio :)", + "repo": "https://github.com/divyanshudhruv/divyanshudhruv.github.io", + "owner": { + "username": "divyanshudhruv", + "email": "divyanshudhruv24@gmail.com" + }, + "record": { + "CNAME": "divyanshudhruv.github.io" + } +} diff --git a/domains/diyar.json b/domains/diyar.json new file mode 100644 index 000000000..b7a74b54b --- /dev/null +++ b/domains/diyar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DiyarBakir", + "email": "Diyar.Bakir@Hotmail.com" + }, + "record": { + "URL": "https://diyar.io" + } +} diff --git a/domains/django.json b/domains/django.json new file mode 100644 index 000000000..46c5ab61d --- /dev/null +++ b/domains/django.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mediaformat", + "email": "mediaformat.ux@gmail.com" + }, + "record": { + "CNAME": "mediaformat.github.io" + } +} diff --git a/domains/dk.json b/domains/dk.json new file mode 100644 index 000000000..059d8de2c --- /dev/null +++ b/domains/dk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zurlyy", + "email": "d@zurly.me" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/dkim._domainkey.om.json b/domains/dkim._domainkey.om.json new file mode 100644 index 000000000..110d3d905 --- /dev/null +++ b/domains/dkim._domainkey.om.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "omsenjalia", + "email": "", + "OWL":"eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RROLuTVz1Yiu7gYQ78NhdEWblxDBcdAtgXSrSKBX4s-6C15Gbg1gvdalVJRUFfhvt7FQ1HEtB7Wwz0Rdn1Jxk7Eqxp2s116sCmWwviCoh8RfWUEkWt9k4csRDjBtnwijFrfSv5gjf67gAe1dyoryQjg1ZFf9dlmwmaQtiJNKVkjlBsNAYNph9-CsYK8a0-TI-GVXung0rFjd-222TQij66CYBd7qitAvTPEypCBarB2SyBrN30wLTS9NjB-bSpmJZwcZO8CQ2obcYdMfVQ0nZgXBJhkbwjtGWfWTS-3AnCeLF48mT-9DCsVoraLb6DLoJoPB-9g4dim-tSZwC5pQ.OsIglUJ8OXge3R5CTVoEEw.YS-YtdmeJZKK1TEkERBJlH9RKdKcMynvcB5PrUsKXY4FJhgfrPoqF_JOAXO4tyYqwJzWnNM0hfd4WxqLi3KmjXToHxRAzdiFu1f4iiBfX68ABHoycHXkose4AHWe54a8.UazMc8kLEVvxHs2YN0DC3Q" + }, + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApUFgIkG/8KdnGqL3WcvLCQFh/9q6DZ/PNTXErJOvEBbI1wjYLUeR/44tApOzj0pVqCG9sZ9zLariA6858kxKx0nW0YxRZDAbiUy90G5zP6xT7sHX1MyDiQdsc/1KTGnFsQKb7scdpmFWrRgRaU9V3+Apr3n6j9eX6ZytUsoWMCVAgUwCxNHXujy6xCTendN9yJGOPvHsedvnD0PNcYbbsstWKJ1/5mS+33Bqpb8m5x0r+i4cwUmsGkuNHcuvYzTaYXWz+ohdi369zvGkd22ZTcM0x6ygqUzmeO40OMxMa35bO5XWmc1vQDSV+zR71BzdxF38E+/nHEB/VJmNKKtt0QIDAQAB" + } +} diff --git a/domains/dliu.json b/domains/dliu.json new file mode 100644 index 000000000..3bf585668 --- /dev/null +++ b/domains/dliu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DanL2015", + "email": "danielliu@berkeley.edu" + }, + "record": { + "CNAME": "danl2015.github.io" + } +} diff --git a/domains/dmmay.json b/domains/dmmay.json new file mode 100644 index 000000000..5da0dd4d9 --- /dev/null +++ b/domains/dmmay.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "nguoidungkhongdinhdanhh", + "email": "azura22@skiff.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/dmr.json b/domains/dmr.json new file mode 100644 index 000000000..fb13c7959 --- /dev/null +++ b/domains/dmr.json @@ -0,0 +1,10 @@ +{ + "description": "dmr.is-a.dev", + "owner": { + "username": "dmr-93", + "email": "demisrosseti@gmail.com" + }, + "record": { + "URL": "https://040ff340db5c97c3ab74202ea081dd80.serveo.net" + } +} diff --git a/domains/do-gia-huy.json b/domains/do-gia-huy.json new file mode 100644 index 000000000..c1a8d78d0 --- /dev/null +++ b/domains/do-gia-huy.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "dohuygia", + "email": "quyendongho238@Gmail.com" + }, + "record": { + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": [ + "forward-email=quyendongho238@gmail.com" + ] + } +} diff --git a/domains/doc.dergraph.json b/domains/doc.dergraph.json deleted file mode 100644 index 6f7f1963a..000000000 --- a/domains/doc.dergraph.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "derGraph", - "email": "dergraph@f5.si" - }, - "record": { - "A": [ - "83.215.31.101" - ] - } -} diff --git a/domains/dockge.stefdp.json b/domains/dockge.stefdp.json new file mode 100644 index 000000000..9f2b1dbbb --- /dev/null +++ b/domains/dockge.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/docs.6.json b/domains/docs.6.json new file mode 100644 index 000000000..883e0729d --- /dev/null +++ b/domains/docs.6.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "URL": "https://docs.shockbs.is-a.dev/" + } +} diff --git a/domains/docs.json b/domains/docs.json index 219271022..946773150 100644 --- a/domains/docs.json +++ b/domains/docs.json @@ -2,8 +2,8 @@ "description": "Documentation website for is-a.dev", "repo": "https://github.com/is-a-dev/docs", "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" + "username": "is-a-dev", + "email": "" }, "record": { "URL": "https://www.is-a.dev/docs" diff --git a/domains/docs.shockbs.json b/domains/docs.shockbs.json new file mode 100644 index 000000000..874b42c4a --- /dev/null +++ b/domains/docs.shockbs.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "CNAME": "documentationggffddjussdddgghhirrdssh6dd.onrender.com" } +} diff --git a/domains/docs.stefdp.json b/domains/docs.stefdp.json new file mode 100644 index 000000000..13881f84f --- /dev/null +++ b/domains/docs.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/docs.trung.json b/domains/docs.trung.json new file mode 100644 index 000000000..cd80e37cc --- /dev/null +++ b/domains/docs.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "CNAME": "c40e958615-hosting.gitbook.io" + } +} diff --git a/domains/dog.json b/domains/dog.json new file mode 100644 index 000000000..1a06bbbaf --- /dev/null +++ b/domains/dog.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "yunexiz.github.io" + } +} diff --git a/domains/dogesploit.json b/domains/dogesploit.json new file mode 100644 index 000000000..88bfbf2ab --- /dev/null +++ b/domains/dogesploit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zumwaltboi68", + "email": "alexander662022@outlook.com" + }, + "record": { + "URL": "https://velocity-v2.dogesploit.byethost15.com/" + } +} diff --git a/domains/dogs.json b/domains/dogs.json new file mode 100644 index 000000000..42168e22b --- /dev/null +++ b/domains/dogs.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "dog-images.pages.dev" + } +} diff --git a/domains/dohyun.json b/domains/dohyun.json new file mode 100644 index 000000000..69cc5820b --- /dev/null +++ b/domains/dohyun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dohyun-ko", + "email": "dohyun682@gmail.com" + }, + "record": { + "CNAME": "dohyun-ko.github.io" + } +} diff --git a/domains/dolba3b.json b/domains/dolba3b.json new file mode 100644 index 000000000..479b50573 --- /dev/null +++ b/domains/dolba3b.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "D0LBA3B", + "email": "clement.favre@losentse-help.ch" + }, + "record": { + "URL": "https://losentse-help.ch" + } +} diff --git a/domains/dom.json b/domains/dom.json deleted file mode 100644 index a213fd9bc..000000000 --- a/domains/dom.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "DominicFilice", - "email": "dominic@filiceenterprises.com" - }, - "record": { - "URL": "https://dsc.gg/minecraftanarchy" - } - } - diff --git a/domains/domb.json b/domains/domb.json new file mode 100644 index 000000000..2be518ba9 --- /dev/null +++ b/domains/domb.json @@ -0,0 +1,11 @@ +{ + "description": "to be able to use .is-a.dev domain", + "repo": "https://smailiukas.github.io/", + "owner": { + "username": "smailiukas", + "email": "domantas.bulotas@gmail.com" + }, + "record": { + "CNAME": "smailiukas.github.io" + } +} diff --git a/domains/domin.json b/domains/domin.json deleted file mode 100644 index f016895d6..000000000 --- a/domains/domin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Subdomain of is-a.dev for my profile card. I use DBH as hosting if it is necessary to let you know<3", - "owner": { - "username": "Domin-MND", - "email": "dominproject@gmail.com" - }, - "record": { - "A": [ - "164.132.74.251" - ] - } -} diff --git a/domains/dominic.json b/domains/dominic.json index 086a31b3c..d224f566c 100644 --- a/domains/dominic.json +++ b/domains/dominic.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "mrhappyma", - "email": "dominic@userexe.me" - }, - "record": { - "URL": "https://userexe.me" - } - } - \ No newline at end of file +{ + "owner": { + "username": "mrhappyma", + "email": "dominic@userexe.me" + }, + "record": { + "URL": "https://userexe.me" + } +} diff --git a/domains/dominicbrauer.json b/domains/dominicbrauer.json new file mode 100644 index 000000000..0851905e1 --- /dev/null +++ b/domains/dominicbrauer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DominicBrauer", + "email": "dominicbrauer06@gmail.com" + }, + "record": { + "A": ["185.245.61.41"] + } +} diff --git a/domains/dommor.json b/domains/dommor.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/dommor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/donate.gornostay25.json b/domains/donate.gornostay25.json index 2b66adcd3..184f0e4b8 100644 --- a/domains/donate.gornostay25.json +++ b/domains/donate.gornostay25.json @@ -1,14 +1,14 @@ { - "owner": { - "username": "gornostay25", - "email": "me@gornostay25.is-a.dev" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] - } + "owner": { + "username": "gornostay25", + "email": "me@gornostay25.is-a.dev" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } } diff --git a/domains/donkaos.json b/domains/donkaos.json deleted file mode 100644 index b3fabe52f..000000000 --- a/domains/donkaos.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Donkas's personal developer website", - "repo": "https://github.com/donkaos501", - "owner": { - "username": "Donkaos", - "email": "donkaos501@outlook.com" - }, - "record": { - "CNAME": "is-a.dev.donkaos.de" - } -} diff --git a/domains/donno2048.json b/domains/donno2048.json new file mode 100644 index 000000000..33b652945 --- /dev/null +++ b/domains/donno2048.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "donno2048", + "email": "just4now666666@gmail.com" + }, + "record": { + "URL": "https://donno2048.github.io/Portfolio" + } +} diff --git a/domains/donut.json b/domains/donut.json index 80b359a5d..6ea0a4b63 100644 --- a/domains/donut.json +++ b/domains/donut.json @@ -1,12 +1,12 @@ { - "description": "Welcome to donut2008's website!", - "repo": "https://github.com/donut2008/donut2008.github.io", - "owner": { - "username": "donut2008", - "email": "", - "discord": "donut#6852" - }, - "record": { - "CNAME": "donut2008.github.io" - } -} + "description": "Welcome to donut2008's website!", + "repo": "https://github.com/donut2008/donut2008.github.io", + "owner": { + "username": "donut2008", + "email": "", + "discord": "donut#6852" + }, + "record": { + "CNAME": "donut2008.github.io" + } +} diff --git a/domains/dot.json b/domains/dot.json new file mode 100644 index 000000000..08bbe5a3a --- /dev/null +++ b/domains/dot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dott-rus", + "email": "antonamelin8@gmail.com", + "discord": "578276833624195125" + }, + + "record": { + "CNAME": "dott-rus.github.io" + } +} diff --git a/domains/downgit.json b/domains/downgit.json new file mode 100644 index 000000000..bb6f0264a --- /dev/null +++ b/domains/downgit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "InvalidNoah", + "discord": "invalidnoah#0", + "email": "zjustmarcel@gmail.com" + }, + "record": { + "CNAME": "invalidnoah.github.io" + } +} diff --git a/domains/doziaress.json b/domains/doziaress.json new file mode 100644 index 000000000..f92726578 --- /dev/null +++ b/domains/doziaress.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "duquspy", + "email": "", + "discord": "1212766449308012564", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fMfv-Nq00URTWuLfZuLb73oobhqZn0kX2-T5Mc0kBSF7vlVuOUHJ9WIhwbbsCP9JSdF_UxzCE-Q8PHWszytmIWogOWAbsMMEd1zXGd5NP9ANwqUW3Ng92f-0MEDa6y7aBHBUW-zBPn741uqMN-mTRWNdiAGVFNbIS7q_0mjFbTRJwGOhw1D4gzpc2rQVGFtbPn9M9tRMrb9zqnWC1Vg8adv5zgDA3ZCJ0XbBHlTuIW63IVBIPVCUMqRMTe2oZqcKM49WTpJ00nKB9_GMMwwsvlOHgHVIX5V6-fPC5yZ8441ZR_lCAmDmm4pA2Bxh8DXUELflCacdMS2dbKfZB_CGAA.BvvFP8qBLKyWaajgtEKQ3Q.IiY-Wk5_iOmEE78K9qw7EAms0TTd73mG4F2P4xgTdIZX8387zSMSGGN0HHJEypTAqMZb9dA_0tyjdrx2Py3SJaeBfSuavyh5A3NqYGEyXCY.dc8JP_KS-M4jhIt4a0qk4g" + }, + + "record": { + "CNAME": "duquspy.github.io" + } + } + \ No newline at end of file diff --git a/domains/dpi0.json b/domains/dpi0.json new file mode 100644 index 000000000..b04bffbfe --- /dev/null +++ b/domains/dpi0.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dpi0", + "email": "dpi0.dev@proton.me" + }, + "record": { + "URL": "https://blog.dpi0.cloud" + } +} diff --git a/domains/dqmn.json b/domains/dqmn.json new file mode 100644 index 000000000..1121848e0 --- /dev/null +++ b/domains/dqmn.json @@ -0,0 +1,11 @@ +{ + "description": "dqmn.is-a.dev", + "repo": "https://github.com/dqmn/dqmn.github.io", + "owner": { + "username": "dqmn", + "email": "dqmnbackup@gmail.com" + }, + "record": { + "CNAME": "dqmn.github.io" + } +} diff --git a/domains/dr-therapy.json b/domains/dr-therapy.json new file mode 100644 index 000000000..cac54aed8 --- /dev/null +++ b/domains/dr-therapy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "drtherapy2023", + "email": "sitehesap@proton.me", + "discord": "706419336235188264" + }, + + "record": { + "CNAME": "drtherapy2023.github.io" + } +} diff --git a/domains/drago-cuven.json b/domains/drago-cuven.json new file mode 100644 index 000000000..2ada7533a --- /dev/null +++ b/domains/drago-cuven.json @@ -0,0 +1,12 @@ +{ + "description": "a site for Drago Cuven's general content", + "repo": "https://github.com/Drago-Cuven/drago-cuven.github.io", + "owner": { + "username": "Drago-Cuven", + "email": "MartinelplayzYT@gmail.com", + "twitter": "@mbcbgd" + }, + "record": { + "CNAME": "Drago-Cuven.github.io" + } +} diff --git a/domains/dragon.json b/domains/dragon.json deleted file mode 100644 index 577b6c70b..000000000 --- a/domains/dragon.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A custom portfolio website for me", - "repo": "https://replit.com/@DragonRoyale/personalA", - "owner": { - "username": "DragonRoyal", - "email": "aarav.singhania50@gmail.com" - }, - "record": { - "CNAME": "c7054742-05bd-453b-b5fd-d3ed47ee0215.id.repl.co" - } -} diff --git a/domains/drake.json b/domains/drake.json new file mode 100644 index 000000000..72f4a80dd --- /dev/null +++ b/domains/drake.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "drake-dot-o", + "email": "", + "discord": "197905102865039371", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ODrtFxgSeAqIu6AI7SK6Sy6j7f0yg7jucjqWkjqwpJqkK_1AKsD8bck9idsla_3jjG2v_1TdSd7p23Tqodv7dz0jHDDL4OfNZB1XHW_uXGc8-qT6kKDcIOhdcktCf1lK54I4Sdg6RWgjj1ayYfXaoywhQZNGmLc54rRB_9b5JcXaRu75TB9Sp14vlqQ8Dotxo7aIutkzgqk7InvEHq8mA8tLH4a8RkAxv91tpxForl-Th2vjwexma8ySDg0TM_gf9y0Clsdu8X-hYR_upJX6V1bdiQxCLjzcD8xf3WXanoK_zF5YKwfchGX60LIOwjtzy8Ot2bQyIsrbVD3OFB6KEg.RPNQcCXjJymxMn5rHqeGYg.ru7RGuS07PxzcQm3fgdt1bR2L6PdF-aGcKq41dWFyHM3pRtZV2eiO3KUv8MwcrSleNe5TgBH0opHc-DRLLvNoOZLxxbt6nfZqJXmyjgQzrQ.kCHTV4x_MfBEVmAWChvmAA" + }, + + "record": { + "CNAME": "edge.redirect.pizza" + } + } + diff --git a/domains/drakeknight.json b/domains/drakeknight.json new file mode 100644 index 000000000..d03b6d5b4 --- /dev/null +++ b/domains/drakeknight.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Drake-knight", + "email": "jakharvishalv@gmail.com" + }, + "record": { + "CNAME": "lbonb42y.up.railway.app" + } +} diff --git a/domains/dreni.json b/domains/dreni.json new file mode 100644 index 000000000..f69b5dca3 --- /dev/null +++ b/domains/dreni.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "drenxhyliqi", + "email": "drenxhyliqi3@gmail.com" + }, + "record": { + "URL": "https://drenxhyliqi.netlify.app/" + } +} diff --git a/domains/drenxhyliqi.json b/domains/drenxhyliqi.json new file mode 100644 index 000000000..bcec09ba0 --- /dev/null +++ b/domains/drenxhyliqi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "drenxhyliqi", + "email": "drenxhyliqi3@gmail.com" + }, + "record": { + "URL": "https://drenxhyliqi.site/" + } +} diff --git a/domains/dresan.json b/domains/dresan.json new file mode 100644 index 000000000..c67dd494e --- /dev/null +++ b/domains/dresan.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website", + "repo": "https://github.com/dresandev/dresandev.github.io", + "owner": { + "username": "dresandev", + "email": "dresan.dev@gmail.com", + "twitter": "dresandev" + }, + "record": { + "CNAME": "dresandev.github.io" + } +} diff --git a/domains/drian.json b/domains/drian.json new file mode 100644 index 000000000..5d687123a --- /dev/null +++ b/domains/drian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Luiso9", + "email": "muhandreop@gmail.com" + }, + "record": { + "CNAME": "luiso9.github.io" + } +} diff --git a/domains/drive.alora.json b/domains/drive.alora.json new file mode 100644 index 000000000..70ed9b0ad --- /dev/null +++ b/domains/drive.alora.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com", + "discord": "1236292707371057216" + }, + "record": { + "CNAME": "onedrive-vercel-index-flame-xi.vercel.app" + } +} diff --git a/domains/drively.json b/domains/drively.json new file mode 100644 index 000000000..f490f44d1 --- /dev/null +++ b/domains/drively.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gawnul", + "email": "rootnull@outlook.es" + }, + "record": { + "URL": "https://bento.me/drively" + } +} diff --git a/domains/droiders.json b/domains/droiders.json new file mode 100644 index 000000000..eacb594cd --- /dev/null +++ b/domains/droiders.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "droiders-co", + "email": "", + "discord": "1276122512945582163", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Cyxc642tSAILH0TeC5cbQyCXyz-DmT62oaal_62Jy3IHrnGxZHkxyaM0WwNpI6Lsn62ThCSxl9vyp4_Jt-h_Gya43Yjev7qxAxqTWwLy9UTLRpd6J11Hnvm8sk7cKPyBSyTshpaLIXQkeY8f1uDc2u7xG4mcv8EUtGamN-2sx6Od-DKEfcpIwR4736-mtfqQceBffJcmMN8muA9HL-jRTmuz9wszmQ6YgX9OR0d0ZxdH5P6FIMATBeryBYTamKmfRuIkk1a8MRFXtBqLqukf9es-nmxAQgtpOJUJMFvRhj2Tx2q7phb7NLZOpv84ffRMi45YnoMPhTlGuvUuojrNaQ.iXtf6JafCZH7dmFyzI4nFQ.hjpJSdnRVN5UooNon5-ICENTQBWIkgScEtWW6JHXRr7YKXkEX1bDpbzOpmgABmuezHvxUFjTk3xqVgxBBbRlUKH8P6mU2WI1_dTNm2Ter7Y.tu5JiotTyrpzUo78bYti_Q" + }, + + "record": { + "CNAME": "droiders-co.github.io" + } + } + \ No newline at end of file diff --git a/domains/drpleaserespect.json b/domains/drpleaserespect.json new file mode 100644 index 000000000..1d2a9ff28 --- /dev/null +++ b/domains/drpleaserespect.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DrPleaseRespect", + "email": "juliannayr2007@gmail.com", + "discord": "300641942646161409" + }, + + "record": { + "CNAME": "drpleaserespect.pages.dev" + } +} diff --git a/domains/drv123323.json b/domains/drv123323.json new file mode 100644 index 000000000..1993ff015 --- /dev/null +++ b/domains/drv123323.json @@ -0,0 +1,11 @@ +{ + "description": "My personal developer portfolio.", + "repo": "https://github.com/dizzy123323/dizzy123323.github.io", + "owner": { + "username": "dizzy123323", + "email": "Dhruvksuru@gmail.com" + }, + "record": { + "CNAME": "dizzy123323.github.io" + } +} diff --git a/domains/dscbmr.json b/domains/dscbmr.json new file mode 100644 index 000000000..25a2fb441 --- /dev/null +++ b/domains/dscbmr.json @@ -0,0 +1,12 @@ +{ + "description": "Profile card", + "repo": "https://srpvt.github.io/DSCBMR", + "owner": { + "username": "SRPVT", + "email": "syedrayangames@gmail.com", + "Discord": "乃爪尺𓆩♕𓆪" + }, + "record": { + "CNAME": "srpvt.github.io" + } +} diff --git a/domains/duck.json b/domains/duck.json index 7365d0696..38cb2521a 100644 --- a/domains/duck.json +++ b/domains/duck.json @@ -1,9 +1,9 @@ { "owner": { - "username": "Duck Dev", - "email": "craftblurdiscord@gmail.com" + "username": "ServerDeveloper9447", + "email": "serverdeveloper@duck.com" }, "record": { - "CNAME": "glitch.edgeapp.net" + "CNAME": "serverdeveloper9447.github.io" } } diff --git a/domains/duckinc.json b/domains/duckinc.json deleted file mode 100644 index 2c6193504..000000000 --- a/domains/duckinc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "developer website", - "repo": "https://replit.com/@DuckInc/Duckinc-About#index.js", - "owner": { - "username": "duckinc", - "email": "gatewayduck@gmail.com" - }, - "record": { - "CNAME": "b2894241-b4d2-4044-af99-5b8f9bb7a15b.id.repl.co" - } -} diff --git a/domains/ducky.json b/domains/ducky.json deleted file mode 100644 index 29964c0e4..000000000 --- a/domains/ducky.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My website for random stuff", - "repo": "https://github.com/WhoTook7050/WhoTook7050.github.io", - "owner": { - "username": "WhoTook7050", - "email": "tosonana@tuta.io" - }, - "record": { - "CNAME": "WhoTook7050.github.io" - } -} diff --git a/domains/duckysolucky.json b/domains/duckysolucky.json new file mode 100644 index 000000000..b6af47bc4 --- /dev/null +++ b/domains/duckysolucky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DuckySoLucky", + "email": "robertkovac160@gmail.com" + }, + "record": { + "CNAME": "duckysolucky-github-io.pages.dev" + } +} diff --git a/domains/dumo.json b/domains/dumo.json new file mode 100644 index 000000000..d836d8c12 --- /dev/null +++ b/domains/dumo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thepython555", + "email": "k0n52uuu@duck.com" + }, + "record": { + "CNAME": "thepython555.github.io" + } +} diff --git a/domains/dumprr.json b/domains/dumprr.json new file mode 100644 index 000000000..c45723554 --- /dev/null +++ b/domains/dumprr.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/dumprr/dumprr.github.io", + "owner": { + "username": "dumprr", + "email": "duhhhmprr@proton.me" + }, + "record": { + "CNAME": "dumprr.github.io" + } +} diff --git a/domains/durlavkalita.json b/domains/durlavkalita.json new file mode 100644 index 000000000..848d14bef --- /dev/null +++ b/domains/durlavkalita.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio/blog of Durlav Kalita", + "repo": "https://github.com/durlavkalita/durlavkalita.github.io", + "owner": { + "username": "durlavkalita", + "email": "durlavk98@gmail.com" + }, + "record": { + "CNAME": "durlavkalita.github.io" + } +} diff --git a/domains/durov.json b/domains/durov.json new file mode 100644 index 000000000..94290eebc --- /dev/null +++ b/domains/durov.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BobleGun", + "email": "dobroq1954@gmail.com" + }, + "record": { + "CNAME": "a0913910.xsph.ru" + } +} diff --git a/domains/dushmanta.json b/domains/dushmanta.json new file mode 100644 index 000000000..ac23ed6e1 --- /dev/null +++ b/domains/dushmanta.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/dushmanta05/dushmanta05.github.io", + "owner": { + "username": "dushmanta05", + "email": "dushbehera05@gmail.com", + "twitter": "dushmanta05" + }, + "record": { + "CNAME": "dushmanta05.github.io" + } +} diff --git a/domains/dust0n.json b/domains/dust0n.json new file mode 100644 index 000000000..bb1a73181 --- /dev/null +++ b/domains/dust0n.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "itsdust0n", + "email": "contact@dust0n.ru" + }, + + "record": { + "A": ["89.208.104.177"] + } +} diff --git a/domains/duy.json b/domains/duy.json new file mode 100644 index 000000000..ae6fc7891 --- /dev/null +++ b/domains/duy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DuykhanhGaming", + "email": "andickhead124@gmail.com" + }, + "record": { + "CNAME": "dreemurrs.eu.org" + } +} diff --git a/domains/duyhung.json b/domains/duyhung.json new file mode 100644 index 000000000..05736e1f2 --- /dev/null +++ b/domains/duyhung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hungwt", + "email": "hungwt334@gmail.com" + }, + "record": { + "A": ["31.186.83.254"] + } +} diff --git a/domains/duyquang.json b/domains/duyquang.json new file mode 100644 index 000000000..fb833a2f7 --- /dev/null +++ b/domains/duyquang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lequang0911", + "email": "lequang.99@outlook.com" + }, + "record": { + "A": ["103.97.126.23"] + } +} diff --git a/domains/duzo.json b/domains/duzo.json new file mode 100644 index 000000000..ce7022753 --- /dev/null +++ b/domains/duzo.json @@ -0,0 +1,11 @@ +{ + "description": "For Duzo's website", + "repo": "https://github.com/Duzos/duzos.github.io", + "owner": { + "username": "Duzos", + "email": "73184526+Duzos@users.noreply.github.com" + }, + "record": { + "CNAME": "duzos.github.io" + } +} diff --git a/domains/dwigoric.json b/domains/dwigoric.json new file mode 100644 index 000000000..9dc355fcd --- /dev/null +++ b/domains/dwigoric.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Dwigoric", + "email": "", + "discord": "295391820744228867" + }, + "record": { + "CNAME": "dwigoric.pages.dev" + } +} diff --git a/domains/dxler.json b/domains/dxler.json new file mode 100644 index 000000000..3a1105aa3 --- /dev/null +++ b/domains/dxler.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "dxlerYT", + "email": "", + "discord": "dxlerYT#8132" + }, + "record": { + "URL": "https://6a921fc4.dxlerportfolio1.pages.dev" + } +} diff --git a/domains/dylan.json b/domains/dylan.json deleted file mode 100644 index ae756741e..000000000 --- a/domains/dylan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This will soon be a dev portfolio for myself :)", - "repo": "https://github.com/dylanjamesdev", - "owner": { - "username": "dylanjamesdev", - "email": "dylan@tritan.gg" - }, - "record": { - "A": ["209.216.85.142"] - } -} diff --git a/domains/dylanjtholen.json b/domains/dylanjtholen.json new file mode 100644 index 000000000..fbcb63e9f --- /dev/null +++ b/domains/dylanjtholen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dylanjtholen", + "email": "dylanjtholen@gmail.com" + }, + "record": { + "CNAME": "dylanjtholen.github.io" + } +} diff --git a/domains/dylank.json b/domains/dylank.json deleted file mode 100644 index ecdb4086b..000000000 --- a/domains/dylank.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "DylanK46", - "email": "kainth.dylan@gmail.com" - }, - "record": { - "A": ["90.217.214.245"] - } -} diff --git a/domains/dylanmarsili.json b/domains/dylanmarsili.json new file mode 100644 index 000000000..3862e510b --- /dev/null +++ b/domains/dylanmarsili.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dylan-Marsili", + "email": "marsilidylan@gmail.com", + "discord": "721840611174383780" + }, + + "record": { + "CNAME": "dylan-marsili.github.io" + } +} diff --git a/domains/dyno.json b/domains/dyno.json new file mode 100644 index 000000000..a2c23b4da --- /dev/null +++ b/domains/dyno.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DynoW", + "email": "naffets0@gmail.com", + "discord": "455608238335983617" + }, + "record": { + "CNAME": "dynow.pages.dev" + } +} diff --git a/domains/e.json b/domains/e.json new file mode 100644 index 000000000..b4d0bb9c8 --- /dev/null +++ b/domains/e.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Pe5ZJbpCemxi3LNkJueUT8yXsbcvTYMB8kUNIcrEiMQ74S1tK_AKJQNr8z91rdDCgnQrkwm4IXOdg0hVfesD6BNXzdkk0tbCa_XMhMcWXySl4FxpBplksSYowTFn8kt71dC6wziz-bIxHqiV05qq8iQz4no4dRx7y201eFhYjHwohmgsDVuHo-RKwWPZb4DQ3pU9q-Kmj3S9oYzbSyeJwzBTOvNZMfTH3mg62WM-8LX9kCEzSxt0RMZonEWBR4iwDfHW4RTL5_q3cM6YlQZgZhMskM0d2qjfW41Z1Rgkk-LoK_Ocy4FgexKGSSQB1ELvKKiB3HIx8SzAJGOUN5embQ.tVHlDE7ViTBjpMwwBziXWg.sxxbX9aYI6LgcOWeVuPJb3-ElpjibO2jA2oyPETPZxVDbxFv-u2NHToDpur3BlAbrqPxdyoD6Axx_khEsNdkCYAFu7US9cMPo7VQvlXgyQRFJSb2_UzskvshnTNO5j-x.-2VA5T7QSGPdyTxNk00KGQ" + }, + + "record": { + "A": ["216.24.57.1"] + } + } diff --git a/domains/earth.sx9.json b/domains/earth.sx9.json index 6f77a209e..5cdcbf659 100644 --- a/domains/earth.sx9.json +++ b/domains/earth.sx9.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "SX-9", - "email": "hello@mail.sx9.is-a.dev" - }, - "record": { - "CNAME": "sx-9.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "SX-9", + "email": "hello@mail.sx9.is-a.dev" + }, + "record": { + "CNAME": "sx-9.github.io" + } +} diff --git a/domains/earthnuker.json b/domains/earthnuker.json deleted file mode 100644 index 4baecaf5d..000000000 --- a/domains/earthnuker.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "earthnuker", - "email": "earthnuker+isadev@gmail.com" - }, - "record": { - "CNAME": "earthnuker.keybase.pub" - } -} diff --git a/domains/earthrulerr.json b/domains/earthrulerr.json deleted file mode 100644 index da8bf0706..000000000 --- a/domains/earthrulerr.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "EarthRulerr", - "email": "earthrulerr@gmail.com" - }, - "record": { - "CNAME": "4b616032-4803-4d79-a566-b8523b0ef299.id.repl.co" - } -} diff --git a/domains/easynebula.json b/domains/easynebula.json new file mode 100644 index 000000000..1aaf4d9c3 --- /dev/null +++ b/domains/easynebula.json @@ -0,0 +1,12 @@ +{ + "description": "Links to the github page which displays a README file", + "repo": "https://github.com/EasyNebula/EasyNebula", + "owner": { + "username": "EasyNebula", + "email": "geographicalfacts16@gmail.com", + "twitter": "@easynebula" + }, + "record": { + "CNAME": "easynebula.github.io" + } +} diff --git a/domains/eax.json b/domains/eax.json deleted file mode 100644 index b2136ce0c..000000000 --- a/domains/eax.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "is-a.dev website of eaxly", - "repo": "https://codeberg.org/eax/website", - "owner": { - "username": "eaxly", - "email": "extinctaxolotl@protonmail.com" - }, - "record": { - "URL": "https://site.eax.li" - } -} diff --git a/domains/ebaa.json b/domains/ebaa.json index 71302f08b..da44b84d4 100644 --- a/domains/ebaa.json +++ b/domains/ebaa.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "EbaaCode", - "email": "ebaa2002@outlook.com" - }, - "record": { - "URL": "https://ebaa.dev" - } + "owner": { + "username": "EbaaCode", + "email": "ebaa2002@outlook.com" + }, + "record": { + "URL": "https://ebaa.dev" + } } diff --git a/domains/ebonato.json b/domains/ebonato.json new file mode 100644 index 000000000..0b1c188ea --- /dev/null +++ b/domains/ebonato.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ebonato", + "email": "ebonato@gmail.com" + }, + "record": { + "CNAME": "ebonato.github.io" + } +} diff --git a/domains/echo-des-luttes.json b/domains/echo-des-luttes.json new file mode 100644 index 000000000..9ad4f3f22 --- /dev/null +++ b/domains/echo-des-luttes.json @@ -0,0 +1,10 @@ +{ + "description": "Website in development for a non-profit organization", + "owner": { + "username": "gills", + "email": "gigi37300@gmail.com" + }, + "record": { + "CNAME": "echo-des-luttes.qevi7356.odns.fr" + } +} diff --git a/domains/eclipse.json b/domains/eclipse.json index e609282e9..39beac1a1 100644 --- a/domains/eclipse.json +++ b/domains/eclipse.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Just-a-Unity-Dev", - "email": "", - "twitter": "eclips_e69" - }, - "description": "A little portfolio based with a basic account system for learning purposes.", - "record": { - "CNAME": "eclips-espace-production.up.railway.app" - } + "owner": { + "username": "Just-a-Unity-Dev", + "email": "", + "twitter": "eclips_e69" + }, + "description": "A little portfolio based with a basic account system for learning purposes.", + "record": { + "CNAME": "eclips-espace-production.up.railway.app" + } } diff --git a/domains/ecoplayer07.json b/domains/ecoplayer07.json new file mode 100644 index 000000000..58160d6ac --- /dev/null +++ b/domains/ecoplayer07.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ecoplayer07", + "email": "kareemehab910@gmail.com" + }, + "record": { + "CNAME": "ecoplayer07.github.io" + } +} diff --git a/domains/ecstaticsoul.json b/domains/ecstaticsoul.json new file mode 100644 index 000000000..d268d9fa3 --- /dev/null +++ b/domains/ecstaticsoul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ecstaticsoul", + "email": "soulfulkrishna@gmail.com" + }, + "record": { + "CNAME": "ecstaticsoul.github.io" + } +} diff --git a/domains/eddy.json b/domains/eddy.json deleted file mode 100644 index 796d50d5f..000000000 --- a/domains/eddy.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "331leo", - "email": "331leo@kakao.com" - }, - "record": { - "CNAME": "dev.is.eddy.leok.kr" - } -} diff --git a/domains/eddyraz-trfk.json b/domains/eddyraz-trfk.json deleted file mode 100644 index 3cf720a6b..000000000 --- a/domains/eddyraz-trfk.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Traefik Console Demo Subdomain", - "repo": "https://github.com/eddyraz", - "owner": { - "username": "eddyraz", - "email": "eddyraz.fl@gmail.com" - }, - "record": { - "CNAME": "srv231139-206152.vps.etecsa.cu" - } - -} diff --git a/domains/eddyraz.json b/domains/eddyraz.json deleted file mode 100644 index cc90796da..000000000 --- a/domains/eddyraz.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Eddyraz Public is-a.dev domain", - "repo": "https://github.com/eddyraz", - "owner": { - "username": "eddyraz", - "email": "eddyraz.fl@gmail.com" - }, - "record": { - "CNAME": "srv231139-206152.vps.etecsa.cu" - } - -} diff --git a/domains/eden.json b/domains/eden.json new file mode 100644 index 000000000..1e8421183 --- /dev/null +++ b/domains/eden.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/edenqwq/edenqwq.github.io", + "owner": { + "username": "EdenQwQ", + "email": "lsahlm1eden@gmail.com" + }, + "record": { + "CNAME": "edenqwq.github.io" + } +} diff --git a/domains/edjva.json b/domains/edjva.json index 8750d18d6..e6925c7ad 100644 --- a/domains/edjva.json +++ b/domains/edjva.json @@ -1,10 +1,13 @@ { - "owner": { - "username": "skoblkodpt", - "email": "skobl.kodpt.1@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} \ No newline at end of file + "owner": { + "username": "skoblkodpt", + "email": "skobl.kodpt.1@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/edmonddevera.json b/domains/edmonddevera.json new file mode 100644 index 000000000..a64e8aba2 --- /dev/null +++ b/domains/edmonddevera.json @@ -0,0 +1,11 @@ +{ + "description": "To create a portfolio and use in web development ", + "repo": "https://tsuuukiii.github.io/PortfolioWebsite", + "owner": { + "username": "Tsuuukiii", + "email": "deverajan6@gmail.com" + }, + "record": { + "CNAME": "tsuuukiii.github.io" + } +} diff --git a/domains/eduardkotov.json b/domains/eduardkotov.json deleted file mode 100644 index 290b33b89..000000000 --- a/domains/eduardkotov.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "insertsmc228", - "email": "miron720@ukr.net" - }, - "record": { - "A": ["35.158.255.221"] - } - } - \ No newline at end of file diff --git a/domains/educatedsuddenbucket.json b/domains/educatedsuddenbucket.json new file mode 100644 index 000000000..200cf4653 --- /dev/null +++ b/domains/educatedsuddenbucket.json @@ -0,0 +1,22 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "TXT": [ + "google-site-verification=hS8B2hSz-rNk6gLRnwaZjxuJE9rCLU_25X65JsLEczE", + "v=spf1 include:spf.improvmx.com ~all" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } +} diff --git a/domains/edward.json b/domains/edward.json index 3412f1872..a903696c3 100644 --- a/domains/edward.json +++ b/domains/edward.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "EdwardTheLegend", + "email": "edward@edwardtlowe.com" + }, - { - "owner": { - "username": "EdwardTheLegend", - "email": "edward@edwardtlowe.com" - }, - - "record": { - "CNAME": "edwardthelegend.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "edwardthelegend.github.io" + } +} diff --git a/domains/edwardsnowden.json b/domains/edwardsnowden.json new file mode 100644 index 000000000..2f8c2cd17 --- /dev/null +++ b/domains/edwardsnowden.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "satoshi-prefers-monero", + "email": "satoshinakamoto@tuta.com" + }, + "record": { + "URL": "https://stephencastelphoto.com" + } +} diff --git a/domains/edwin-lh.json b/domains/edwin-lh.json new file mode 100644 index 000000000..322c8a940 --- /dev/null +++ b/domains/edwin-lh.json @@ -0,0 +1,12 @@ +{ + "description": "Custom github pages domain", + "repo": "https://github.com/ezerinz/ezerinz.github.io", + "owner": { + "username": "ezerinz", + "email": "edwinnnzx@gmail.com", + "twitter": "@Ezerinz" + }, + "record": { + "CNAME": "ezerinz.github.io" + } +} diff --git a/domains/eesa.json b/domains/eesa.json index 446fad849..12351fd1f 100644 --- a/domains/eesa.json +++ b/domains/eesa.json @@ -1,11 +1,11 @@ { - "description": "Making a .is-a.dev domain as an alt url for my site.", - "repo": "https://github.com/eesazahed/eesa.zahed.ca", - "owner": { - "username": "eesazahed", - "email": "eszhd1@gmail.com" - }, - "record": { - "CNAME": "eesa.zahed.ca" - } -} + "description": "Making a .is-a.dev domain as an alt url for my site.", + "repo": "https://github.com/eesazahed/eesa.zahed.ca", + "owner": { + "username": "eesazahed", + "email": "eszhd1@gmail.com" + }, + "record": { + "CNAME": "eesa.zahed.ca" + } +} diff --git a/domains/eeshwar.json b/domains/eeshwar.json new file mode 100644 index 000000000..b5a9565c5 --- /dev/null +++ b/domains/eeshwar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "darkboi3301", + "email": "darkboi3301@gmail.com", + "discord": "790788825550028820" + }, + + "record": { + "CNAME": "eeshwar.pages.dev" + } +} diff --git a/domains/eevee.json b/domains/eevee.json new file mode 100644 index 000000000..62fe81b5f --- /dev/null +++ b/domains/eevee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Eevee-Gaming", + "email": "nonothug59@gmail.com" + }, + "record": { + "URL": "https://eeveegaming.cf" + } +} diff --git a/domains/efe-esxi.json b/domains/efe-esxi.json new file mode 100644 index 000000000..5b6f4e1e5 --- /dev/null +++ b/domains/efe-esxi.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Efebey2903", + "email": "", + "discord": "1036244397026705498", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.p80sFWEHwAx-piEPnJxcNPKFf2ybMxNbvJEw_6IYUxLq4jgGjBOO9et5GcBy8xqjV8ltsyiQVBiD4-rI2chW4CekjfrmbtztSEuDFgO_-YonHXnY97NdGXa3vwkBmBcokVlvYDn3hOMROBexby_5imYQ1kbWG17q4430-Adj5l2g8aX1TtEJaDQMZE7cDx48WjRzmpDxWn5bQGrFDLzUXyISzSw6t4Yn3ajD0s4EHoRMW8kTn4Iz2LnHT9c92SCwRzsFzRd7WpeLQ7D0d5allFFAbUWLzar96QHzpex2pMJM3UbZI11RaCTmQJP6js8xGW5huq1O9KzsS4BzUlKesA.cIb7UseFOBaIpZ84z8b_Ng.xTLtMCbl_XRJvrIRcTCD6_z4LfG5x4Udf8Nsrtp51Q8eRdvkEaSaBzdc2TDAAZkGz0H3VUiodCL2fDCF-UI2a7T0rb6cq7T7PEUt66BJ57c.xmrV6jXfP79yzpM-6hCDDQ" + }, + + "record": { + "A": ["115.239.230.106"] + } + } + \ No newline at end of file diff --git a/domains/effex.json b/domains/effex.json new file mode 100644 index 000000000..74098082d --- /dev/null +++ b/domains/effex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "noteffex", + "email": "effex.wtf@gmail.com" + }, + "record": { + "URL": "https://github.com/noteffex" + } +} diff --git a/domains/egirl.json b/domains/egirl.json new file mode 100644 index 000000000..d288f2271 --- /dev/null +++ b/domains/egirl.json @@ -0,0 +1,13 @@ +{ "owner": { "username":"mAskDucK", + + + + + "email": "", + "discord": "maskduck" + +}, + +"record": { + "CNAME": "maskduck.pages.dev" + }} diff --git a/domains/egyxo.json b/domains/egyxo.json new file mode 100644 index 000000000..97ca09e3f --- /dev/null +++ b/domains/egyxo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "7oda-mo", + "email": "esl2my@gmail.com", + "discord": "1016128744819265618" + }, + + "record": { + "CNAME": "7oda-mo.github.io" + } +} diff --git a/domains/ehab.json b/domains/ehab.json new file mode 100644 index 000000000..64c1a4764 --- /dev/null +++ b/domains/ehab.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ehabmansour1", + "email": "mansehab990@gmail.com" + }, + "record": { + "A": ["128.204.223.115"], + "TXT": "v=spf1 mx a include:mail9.serv00.com -all", + "MX": "mail9.serv00.com" + } +} diff --git a/domains/ehmad.json b/domains/ehmad.json new file mode 100644 index 000000000..5057b013a --- /dev/null +++ b/domains/ehmad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrxehmad", + "email": "mrxehmad@naver.com" + }, + "record": { + "CNAME": "mrxehmad.github.io" + } +} diff --git a/domains/ehsan.json b/domains/ehsan.json new file mode 100644 index 000000000..333087917 --- /dev/null +++ b/domains/ehsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eCodeVoyager", + "email": "mu23172@gmail.com" + }, + "record": { + "A": ["8.219.148.143"] + } +} diff --git a/domains/ejaz.json b/domains/ejaz.json index a6664dc9b..7fc215445 100644 --- a/domains/ejaz.json +++ b/domains/ejaz.json @@ -1,10 +1,7 @@ { - "description": "My personal portfolio site.", - "repo": "https://github.com/ejaz/ejaz4.github.io", "owner": { "username": "ejaz4", - "email": "ejaz@ceccun.com", - "twitter": "ejazaIi" + "email": "ejazali4@protonmail.ch" }, "record": { "CNAME": "ejaz4.github.io" diff --git a/domains/ekansh.json b/domains/ekansh.json deleted file mode 100644 index 8e7bcb61d..000000000 --- a/domains/ekansh.json +++ /dev/null @@ -1,11 +0,0 @@ - -{ - "owner": { - "username": "Inevitable-Design", - "email": "s.ekansh2712@gmail.com" - }, - "record": { - "CNAME": "my-portfolio-production-301e.up.railway.app" - } -} - diff --git a/domains/ekinvarli.json b/domains/ekinvarli.json index 9099f8213..9d81fc002 100644 --- a/domains/ekinvarli.json +++ b/domains/ekinvarli.json @@ -1,12 +1,12 @@ { - "description": "ekinvarli.is-a.dev", - "repo": "https://github.com/eknvarli/eknvarli.github.io", - "owner": { - "username": "eknvarli", - "email": "ekinnos@tutanota.com", - "twitter": "eknvarli" - }, - "record": { - "CNAME": "eknvarli.github.io" - } -} + "description": "ekinvarli.is-a.dev", + "repo": "https://github.com/eknvarli/eknvarli.github.io", + "owner": { + "username": "eknvarli", + "email": "ekinnos@tutanota.com", + "twitter": "eknvarli" + }, + "record": { + "CNAME": "eknvarli.github.io" + } +} diff --git a/domains/el2zay.json b/domains/el2zay.json deleted file mode 100644 index 5c642e8fa..000000000 --- a/domains/el2zay.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Bienvenue sur le site de el2zay ici vous pourrez trouver des informations sur moi ainsi que mes projets.", - "repo": "https://github.com/el2zay/el2zay.github.io", - "owner": { - "username": "el2zay", - "email": "el2zay.contact@gmail.com", - "twitter": "el2zay", - "discord": "el2zay#1234" - }, - "record": { - "CNAME": "el2zay.github.io" - } -} diff --git a/domains/elaruu.jamied132.json b/domains/elaruu.jamied132.json new file mode 100644 index 000000000..7427f9012 --- /dev/null +++ b/domains/elaruu.jamied132.json @@ -0,0 +1,11 @@ +{ + "description": "A wiki designed so people never forget about elaruu", + "repo": "https://github.com/elaruu/elaruu.github.io", + "owner": { + "username": "jamied132 and elaruu", + "email": "jamied132.email@gmail.com" + }, + "record": { + "CNAME": "elaruu.github.io" + } +} diff --git a/domains/elbenja.json b/domains/elbenja.json new file mode 100644 index 000000000..3b59b53bd --- /dev/null +++ b/domains/elbenja.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "iakzs", + "email": "iakzs@protonmail.com", + "discord": "622795838032314388" + }, + + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/elbernaoui.json b/domains/elbernaoui.json new file mode 100644 index 000000000..9ff49cda8 --- /dev/null +++ b/domains/elbernaoui.json @@ -0,0 +1,12 @@ +{ + "description": "this is for my personal website", + "repo": "https://github.com/EL-Bernaoui/elbernaoui", + "owner": { + "username": "EL-Bernaoui", + "email": "", + "twitter": "ELBRN_Achraf" + }, + "record": { + "CNAME": "el-bernaoui.github.io" + } +} diff --git a/domains/elbkr.json b/domains/elbkr.json index 21bd783d0..45b997493 100644 --- a/domains/elbkr.json +++ b/domains/elbkr.json @@ -1,11 +1,10 @@ - - { - "owner": { - "username": "elbkr", - "email": "zaakoukiayman@gmail.com", - "twitter": "elbkrrr" - }, - "record": { - "CNAME": "elbkr.github.io" - } - } +{ + "owner": { + "username": "elbkr", + "email": "zaakoukiayman@gmail.com", + "twitter": "elbkrrr" + }, + "record": { + "CNAME": "elbkr.github.io" + } +} diff --git a/domains/eldin.json b/domains/eldin.json index 103b1f89d..2f94e4d77 100644 --- a/domains/eldin.json +++ b/domains/eldin.json @@ -1,10 +1,10 @@ - { - "repo": "https://github.com/ahmed-eldin/ahmed-eldin.github.io", - "description": "Ahmed's Website", - "owner": { - "username": "ahmed-eldin", - "email": "ahmedeldin98@gmail.com" - }, +{ + "repo": "https://github.com/ahmed-eldin/ahmed-eldin.github.io", + "description": "Ahmed's Website", + "owner": { + "username": "ahmed-eldin", + "email": "ahmedeldin98@gmail.com" + }, "record": { "CNAME": "ahmed-eldin.github.io" } diff --git a/domains/eldzey.json b/domains/eldzey.json new file mode 100644 index 000000000..28916e817 --- /dev/null +++ b/domains/eldzey.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "elefantapan", + "email": "alxalien@proton.me", + "discord": "697408753288478742" + }, + + "record": { + "CNAME": "elefantapan.github.io" + } + } + diff --git a/domains/eletrixtalk.json b/domains/eletrixtalk.json deleted file mode 100644 index 16b8e897b..000000000 --- a/domains/eletrixtalk.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Chat with login system", - "repo": "https://github.com/boomerangBS/Chat-alpha", - "owner": { - "username": "BoomerangBS", - "email": "", - "discord": "boomerangBS#4708" - }, - "record": { - "CNAME": "a1fc013d-7b16-4f1c-8baa-96357e70b6fd.id.repl.co" - } -} diff --git a/domains/eletrixtalkapp.json b/domains/eletrixtalkapp.json deleted file mode 100644 index a1c27e13e..000000000 --- a/domains/eletrixtalkapp.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "boomerangBS", - "email": "boomerang1803@gmail.com" - }, - "record": { - "CNAME": "8de1bbe8-ffbb-4e58-a688-bb332d498d06.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/eletrixtime.json b/domains/eletrixtime.json new file mode 100644 index 000000000..39bb05d91 --- /dev/null +++ b/domains/eletrixtime.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EletrixtimeYT", + "email": "lisandro.b@outlook.com" + }, + "record": { + "CNAME": "eletrixtimeyt.github.io" + } +} diff --git a/domains/elfanaan.json b/domains/elfanaan.json new file mode 100644 index 000000000..ad7c24287 --- /dev/null +++ b/domains/elfanaan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Alfanaannet", + "email": "hmmm202031520062021@gmail.com", + "discord": "775012312876711936" + }, + "record": { + "URL": "http://elfanaan.giize.com", + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/elian.json b/domains/elian.json deleted file mode 100644 index c23548617..000000000 --- a/domains/elian.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "hoangdev09", - "email": "tranconghoang18@gmail.com" - }, - "record": { - "URL": "https://hoangdev09.github.io/infomation" - } -} diff --git a/domains/elijah629.json b/domains/elijah629.json new file mode 100644 index 000000000..f06ec45a4 --- /dev/null +++ b/domains/elijah629.json @@ -0,0 +1,12 @@ +{ + "description": "Redirect to https://elijah629.vercel.app", + "repo": "https://github.com/Elijah629/portfolio", + "owner": { + "username": "Elijah629", + "email": "", + "discord": "Elijah629#6199" + }, + "record": { + "URL": "https://elijah629.vercel.app" + } +} diff --git a/domains/elixss.json b/domains/elixss.json new file mode 100644 index 000000000..2e9590c5c --- /dev/null +++ b/domains/elixss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "elixss", + "email": "elias.jaeger2004@gmail.com" + }, + "record": { + "A": ["45.81.232.16"] + } +} diff --git a/domains/elliott.json b/domains/elliott.json new file mode 100644 index 000000000..21753472d --- /dev/null +++ b/domains/elliott.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "elliott-leow", + "email": "leow1879@mydusd.org" + }, + "record": { + "CNAME": "elliottleow.me" + } +} diff --git a/domains/eloisa.json b/domains/eloisa.json new file mode 100644 index 000000000..7b6c62008 --- /dev/null +++ b/domains/eloisa.json @@ -0,0 +1,10 @@ +{ + "description": "eloooysa14's developer portfolio website cloudflare server", + "owner": { + "username": "eloooysa14", + "email": "anoseloisa@gmail.com" + }, + "record": { + "CNAME": "porfolio-cvp.pages.dev" + } +} diff --git a/domains/elrefaie.json b/domains/elrefaie.json deleted file mode 100644 index 6354aa03c..000000000 --- a/domains/elrefaie.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "amour86", - "email": "amour86@gmail.com" - }, - - "record": { - "A": ["35.154.162.29"] - } - } - \ No newline at end of file diff --git a/domains/elvis.json b/domains/elvis.json index df123e2ca..6b36bcf9a 100644 --- a/domains/elvis.json +++ b/domains/elvis.json @@ -1,11 +1,10 @@ { - "description": "Elvis's website", - "owner": { - "username": "ElvisUpUp", - "email": "elvis4study@gmail.com" - }, - "record": { - "URL": "https://github.com/ElvisUpUp" - } + "description": "Elvis's website", + "owner": { + "username": "ElvisUpUp", + "email": "elvis4study@gmail.com" + }, + "record": { + "URL": "https://github.com/ElvisUpUp" } - \ No newline at end of file +} diff --git a/domains/elyagoubi.json b/domains/elyagoubi.json new file mode 100644 index 000000000..26be91208 --- /dev/null +++ b/domains/elyagoubi.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "abdessattar23", + "email": "elyagoubiabdessattar@gmail.com" + }, + "record": { + "A": ["185.199.111.153", "185.199.108.153", "185.199.109.153", "185.199.110.153"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/em550384.vinceale7082.json b/domains/em550384.vinceale7082.json new file mode 100644 index 000000000..54c73cee8 --- /dev/null +++ b/domains/em550384.vinceale7082.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "VinceAle7082", + "email": "vinceale7082@gmail.com", + "discord": "1078447459900063816", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + }, + + "record": { + "CNAME": "return.smtp2go.net" + } + } + diff --git a/domains/email.nota.json b/domains/email.nota.json new file mode 100644 index 000000000..e360b5591 --- /dev/null +++ b/domains/email.nota.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "dewiscool", + "email": "zerolikecyber.2005@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 878821057748926534" + }, + + "record": { + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=zerolikecyber.2005@gmail.com" + } +} diff --git a/domains/email.zeaxey.json b/domains/email.zeaxey.json new file mode 100644 index 000000000..3eec4e7af --- /dev/null +++ b/domains/email.zeaxey.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Pixel556", + "email": "therealzeaxey123@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/email.zerow.json b/domains/email.zerow.json new file mode 100644 index 000000000..11648fc8d --- /dev/null +++ b/domains/email.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "MX": ["mail.zerow.is-a.dev"] + } +} diff --git a/domains/emanuelcarvalho.json b/domains/emanuelcarvalho.json new file mode 100644 index 000000000..2507772db --- /dev/null +++ b/domains/emanuelcarvalho.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Ziuell", + "email": "", + "discord": "388674889755787264", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.iJvMy6tGm875eD-9lsB5IfcWskqnsXIbsSnlviJdv5iae7QpvRAy83NoBpiIepERUF9vJoCqAAHrfHET6ks6AmABxW0YXJCUmOgAOTDFnUxNhF93js5FQZungz7HFTiggxPqodkJm-zsFhGEws0J_-KIr4y0jjHJfA5au8vTiBFVjm-9uClXLjpY9P1m7qPpRVSvluh6_uiqvruyKAm8bP9DWPbzoZA8rnIStRj-t1v0QXQleGCJfPwy3aHmmt7jLu3NnMoZVQXPmNwHjC852mh_d763vg2mZKzFVv1vNXaJ5cLghZ42fCoobCKWx7K5PjiN8cqGBK4_wYle2ayLaQ.lz7KqOUsFro4hi0uW68C5A.YRQmUayW5lH918VkPsfS8KjGy7hEEM3yt36Nn4XlIM_cMDF_dMWsw9owA4alGx9gV2jhK7K6SBk4Dgnk9sOlJ8_B3-c4WiRn4_TgdSqjlv-elshxP12afmtyBvqDCjbA.tcxorp9fN4m48aKE0HdBnQ" + }, + + "record": { + "CNAME": "ziuell.github.io" + } + } + \ No newline at end of file diff --git a/domains/emeneekw.json b/domains/emeneekw.json new file mode 100644 index 000000000..e4f5f56bd --- /dev/null +++ b/domains/emeneekw.json @@ -0,0 +1,11 @@ +{ + "description": "Emenee's design portfolio", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "emeneekw", + "email": "mne-zone@hotmail.com" + }, + "record": { + "URL": "https://emenee-ht4vnrn.gamma.site/" + } +} diff --git a/domains/emmy.json b/domains/emmy.json new file mode 100644 index 000000000..1dbb78294 --- /dev/null +++ b/domains/emmy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "8FrMc", + "email": "pijuskaminskas1@gmail.com" + }, + "record": { + "URL": "https://sk1dhub.xyz" + } +} diff --git a/domains/emoji.json b/domains/emoji.json new file mode 100644 index 000000000..0d6a3e53d --- /dev/null +++ b/domains/emoji.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ItzEmoji", + "email": "cyril.dettling@gmail.com", + "discord": "1123260870991020083" + }, + + "record": { + "CNAME": "itzemojiwebsite.pages.dev" + } +} diff --git a/domains/emojiplayer.json b/domains/emojiplayer.json new file mode 100644 index 000000000..294a5253a --- /dev/null +++ b/domains/emojiplayer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ItzEmoji", + "email": "cyril.dettling@gmail.com" + }, + "record": { + "CNAME": "itzemojiwebsite.pages.dev" + } +} diff --git a/domains/emtyfay.json b/domains/emtyfay.json index ae67d1a1a..333b183d4 100644 --- a/domains/emtyfay.json +++ b/domains/emtyfay.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Emtyffx", - "email": "emtyfay4433@gmail.com" - }, - "record": { - "CNAME": "myblog-production.up.railway.app" - } - } - +{ + "owner": { + "username": "Emtyffx", + "email": "emtyfay4433@gmail.com" + }, + "record": { + "CNAME": "myblog-production.up.railway.app" + } +} diff --git a/domains/endeade.json b/domains/endeade.json new file mode 100644 index 000000000..be543bd7d --- /dev/null +++ b/domains/endeade.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Endeade", + "email": "endeade80@gmail.com", + "discord": "1117869855538942032" + }, + + "record": { + "CNAME": "endeade.github.io" + } + } + \ No newline at end of file diff --git a/domains/enderdevcom.json b/domains/enderdevcom.json new file mode 100644 index 000000000..fdfe19ae0 --- /dev/null +++ b/domains/enderdevcom.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "enderfoxbg", + "email": "enderfoxbg670@gmail.com", + "discord": "970380468090437672" + }, + + "record": { + "CNAME": "enderfoxbg.github.io" + } + } + \ No newline at end of file diff --git a/domains/enderpoint.json b/domains/enderpoint.json new file mode 100644 index 000000000..e02cbad16 --- /dev/null +++ b/domains/enderpoint.json @@ -0,0 +1,13 @@ +{ + "description": "EnderPoint's dev site", + "repo": "https://github.com/EnderPoint07/EnderPoint07.github.io", + "owner": { + "username": "EnderPoint07", + "email": "", + "discord": "DotM38#5497", + "instagram": "enderpoint07" + }, + "record": { + "CNAME": "enderpoint07.github.io" + } +} diff --git a/domains/endouven.json b/domains/endouven.json new file mode 100644 index 000000000..307eef4dc --- /dev/null +++ b/domains/endouven.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "endouven", + "email": "brunophm@gmail.com" + }, + "record": { + "CNAME": "endouven.github.io" + } +} diff --git a/domains/endxrmxn.json b/domains/endxrmxn.json new file mode 100644 index 000000000..55c490344 --- /dev/null +++ b/domains/endxrmxn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "endxrmxn", + "email": "endxrmxn@yahoo.com" + }, + "record": { + "CNAME": "endxrmxn.pages.dev" + } +} diff --git a/domains/enoughsdv.json b/domains/enoughsdv.json new file mode 100644 index 000000000..60cff046e --- /dev/null +++ b/domains/enoughsdv.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Enoughsdv/Enoughsdv.github.io", + "owner": { + "username": "Enoughsdv", + "email": "enoughsdv@gmail.com" + }, + "record": { + "CNAME": "enoughsdv.github.io" + } +} diff --git a/domains/entenico.json b/domains/entenico.json new file mode 100644 index 000000000..cf7f062d5 --- /dev/null +++ b/domains/entenico.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "EnteNico", + "email": "herrtruthahn.ls19@gmail.com" + }, + + "record": { + "URL": "https://github.com/entenico" + } +} diff --git a/domains/enzo.json b/domains/enzo.json deleted file mode 100644 index 129a2d6fb..000000000 --- a/domains/enzo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Enzo's portfolio", - "repo": "https://github.com/enzonaute", - "owner": { - "username": "enzonaute", - "email": "hello@enzonaute.me" - }, - "record": { - "CNAME": "enzonaute.me" - } -} diff --git a/domains/erc.json b/domains/erc.json deleted file mode 100644 index 44e4c4b7b..000000000 --- a/domains/erc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hashnode Site", - "repo": "https://github.com/eric48906", - "owner": { - "username": "eric48906", - "email": "eric48906@gmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } -} diff --git a/domains/erdem.json b/domains/erdem.json new file mode 100644 index 000000000..d38314264 --- /dev/null +++ b/domains/erdem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "erdem85", + "email": "erdm@disroot.org" + }, + "record": { + "URL": "https://erdem.lol" + } +} diff --git a/domains/erdogan.json b/domains/erdogan.json new file mode 100644 index 000000000..5120b3239 --- /dev/null +++ b/domains/erdogan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "erdogansad", + "email": "erdogan.sad@windowslive.com" + }, + "record": { + "A": ["194.87.246.134"] + } +} diff --git a/domains/eren.json b/domains/eren.json new file mode 100644 index 000000000..5b59b8a2e --- /dev/null +++ b/domains/eren.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KeIrNeGn", + "email": "terminatorx5e@gmail.com", + "discord": "499592235772280842" + }, + + "record": { + "URL": "https://keirnegn.dev" + } +} diff --git a/domains/erik.json b/domains/erik.json index 2422f9cb7..a8c435604 100644 --- a/domains/erik.json +++ b/domains/erik.json @@ -1,11 +1,11 @@ { - "description": "Erik Personal Website", - "repo": "https://github.com/Erik3010", - "owner": { - "username": "erik3010", - "email": "erikhau3010@gmail.com" - }, - "record": { - "CNAME": "erik3010.github.io" - } -} \ No newline at end of file + "description": "Erik Personal Website", + "repo": "https://github.com/Erik3010", + "owner": { + "username": "erik3010", + "email": "erikhau3010@gmail.com" + }, + "record": { + "CNAME": "erik3010.github.io" + } +} diff --git a/domains/ermal.json b/domains/ermal.json index 4dfe7daac..ed348b7d1 100644 --- a/domains/ermal.json +++ b/domains/ermal.json @@ -1,21 +1,21 @@ { - "description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.", - "repo": "https://github.com/ErmalHasani/ErmalHasani.github.io", - "owner": { - "username": "ErmalHasani", - "email": "ermalhasani15@gmail.com" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "Applying for an is-a.dev domain on behalf of my friend so he can use one.", + "repo": "https://github.com/ErmalHasani/ErmalHasani.github.io", + "owner": { + "username": "ErmalHasani", + "email": "ermalhasani15@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/ermia-codev.json b/domains/ermia-codev.json new file mode 100644 index 000000000..ed3f8d78b --- /dev/null +++ b/domains/ermia-codev.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ErmiaCodev", + "email": "", + "discord": "747162043676622929", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZpgdxEZaR7SBvy5pxg2zeYuWKww2hNHjfB1R1YpH3qIwyxSFBsRPnPtkz7niLCchP12aqHmjs97hw5yLJqdily7ZVwTzdmya0SrVwnGmM5bU6kaXKap6Kfdk6dqM7UEy8BkL0Od9jl3q-O1ke7OTKXxbhwttmbk0py44d654U6baaz4K9ZOLT20K6j-QhYiWxlzVpKxb3f-WnzZG_szIBh5ro_zY0ujBDK_h8nhzwnzmwwxGTEwQkxUSSiwUiJgeGV6AatCT25QAyPHXoFKHKzNghsSG6YoYb3uAFnvOKuT8T3jEsJytx6gKwd-rf1VIMMVfi1YqdxKLG6ZY1UJUpA.pRrVa2ttYcRejUB_k8vwAw.eS6zQISeLpWijmMm4SUfCAy2CobVfHxTX-AZUrfjgRGtQXybjiXr5jKlnillhXuaJ2-UcSHarisZUudx4ueEwmluXHYldcXaD8sZxPBrQYs.2ZfJwJLLE75yjHOH7eDQvA" + }, + + "record": { + "CNAME": "ermiacodev.github.io" + } + } + diff --git a/domains/ernande.json b/domains/ernande.json new file mode 100644 index 000000000..66950ae87 --- /dev/null +++ b/domains/ernande.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ernande-f", + "email": "ernandefacco@outlook.com" + }, + "record": { + "CNAME": "ernande-f.github.io" + } +} diff --git a/domains/eryquicc.json b/domains/eryquicc.json new file mode 100644 index 000000000..70bbf297e --- /dev/null +++ b/domains/eryquicc.json @@ -0,0 +1,21 @@ +{ + "description": "Personal use", + "repo": "https://github.com/eryquicc/eryquicc.github.io", + "owner": { + "username": "Eryquicc", + "email": "fathirzaidanmaulana@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/esb.json b/domains/esb.json new file mode 100644 index 000000000..0eb39b0e6 --- /dev/null +++ b/domains/esb.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "EducatedsuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "89.106.200.1" + ], + "TXT": [ + "zoho-verification=zb54408053.zmverify.zoho.in", + "v=spf1 include:zohomail.in ~all" + ], + "MX": [ + "mx.zoho.in", + "mx2.zoho.in", + "mx3.zoho.in" + ] + } +} diff --git a/domains/escfrpls.json b/domains/escfrpls.json new file mode 100644 index 000000000..6111e27e9 --- /dev/null +++ b/domains/escfrpls.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DrochiczynPoleski", + "email": "licwin1410@gmail.com" + }, + "record": { + "URL": "https://drochiczynpoleski.github.io/escfrpls.github.io/" + } +} diff --git a/domains/esp.json b/domains/esp.json new file mode 100644 index 000000000..9a9a935e3 --- /dev/null +++ b/domains/esp.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio", + "owner": { + "username": "fakeesp", + "email": "esp.python.dev@gmail.com", + "telegram": "fakeesp" + }, + "record": { + "A": ["158.178.196.15"] + } +} diff --git a/domains/essawy.json b/domains/essawy.json new file mode 100644 index 000000000..6ec7356f3 --- /dev/null +++ b/domains/essawy.json @@ -0,0 +1,11 @@ +{ + "description": "Abdelrahman Essawy - Full Stack Software Engineer", + "repo": "https://github.com/abdelrahman-essawy/abdelrahman-essawy.github.io", + "owner": { + "username": "abdelrahman-essawy", + "email": "abdelrahman.mo.essawy@gmail.com" + }, + "record": { + "CNAME": "abdelrahman-essawy.github.io" + } +} diff --git a/domains/esteban.json b/domains/esteban.json new file mode 100644 index 000000000..6ecc6381c --- /dev/null +++ b/domains/esteban.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "esteban389", + "email": "estebandres@proton.me" + }, + "record": { + "CNAME": "esteban389.github.io" + } +} diff --git a/domains/eternal-network.json b/domains/eternal-network.json new file mode 100644 index 000000000..d44876de1 --- /dev/null +++ b/domains/eternal-network.json @@ -0,0 +1,11 @@ +{ + "description": "eternal-network.is-a.dev", + "repo": "https://github.com/Eternal-Network/eternal-network.github.io", + "owner": { + "username": "Eternal-Network", + "email": "neealdon2@proton.me" + }, + "record": { + "CNAME": "eternal-network.github.io" + } +} diff --git a/domains/eternalluxury.json b/domains/eternalluxury.json new file mode 100644 index 000000000..21c9cbf78 --- /dev/null +++ b/domains/eternalluxury.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EternalLuxury", + "email": "luxurydevv@gmail.com" + }, + "record": { + "URL": "https://shiny-marzipan-37b154.netlify.app" + } +} diff --git a/domains/ethan.json b/domains/ethan.json deleted file mode 100644 index 19a466bd1..000000000 --- a/domains/ethan.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Darkcoder402", - "email": "ethanrodrigues25@gmail.com", - "twitter": "EthanRo97737635" - }, - "record": { - "CNAME": "ethan-is-a-dev.tk" - } -} diff --git a/domains/ethyl.json b/domains/ethyl.json new file mode 100644 index 000000000..9fdb98cbf --- /dev/null +++ b/domains/ethyl.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ethylenediaminetetraacetates", + "email": "digin2t@gmail.com", + "discord": "1066211072798883840" + }, + + "record": { + "CNAME": "ethylenediaminetetraacetates.github.io" + } +} diff --git a/domains/eva.json b/domains/eva.json index 891998bd5..b4286ac3b 100644 --- a/domains/eva.json +++ b/domains/eva.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "mowatermelon", - "email": "neefoxmo@gmail.com" - }, - "record": { - "URL": "https://t.iiwhy.cn" - } - } \ No newline at end of file + "owner": { + "username": "mowatermelon", + "email": "neefoxmo@gmail.com" + }, + "record": { + "URL": "https://t.iiwhy.cn" + } +} diff --git a/domains/eval.json b/domains/eval.json deleted file mode 100644 index f95fa5056..000000000 --- a/domains/eval.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a website to run javascript codes", - "repo": "https://github.com/leecheeyong/leecheeyong", - "owner": { - "username": "leecheeyong", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "466c0750-ca47-4994-a60c-37ffb99b18e6.id.repl.co" - } -} diff --git a/domains/evaldas.json b/domains/evaldas.json deleted file mode 100644 index 994ca46cd..000000000 --- a/domains/evaldas.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "evaldas", - "email": "evabur@icloud.com" - }, - "record": { - "CNAME": "burlingis.com" - } -} diff --git a/domains/evalk.json b/domains/evalk.json new file mode 100644 index 000000000..d925f660a --- /dev/null +++ b/domains/evalk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Siyu1017", + "email": "adibao1111@gmail.com", + "discord": "895251736250437653" + }, + + "record": { + "A": ["60.249.193.112"] + } +} diff --git a/domains/evelio.json b/domains/evelio.json new file mode 100644 index 000000000..50b2a1246 --- /dev/null +++ b/domains/evelio.json @@ -0,0 +1,16 @@ +{ + "description": "Will be used for my portfolio", + "owner": { + "username": "SrEvelio", + "email": "alphaevelio@gmail.com", + "discord": "srevelio" + }, + "record": { + "A": ["216.24.57.1"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/everyone.json b/domains/everyone.json deleted file mode 100644 index 1e5b58386..000000000 --- a/domains/everyone.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Image / Video host.", - "repo": "https://github.com/tootie112", - "owner": { - "username": "tootie112", - "email": "", - "discord": "Io.Netty#3118" - }, - "record": { - "CNAME": "api.has-cool.pics" - } -} diff --git a/domains/evie.json b/domains/evie.json new file mode 100644 index 000000000..d132df6eb --- /dev/null +++ b/domains/evie.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "Socketlike", + "discordId": "285329659023851520", + "discord": "encyclopedic", + "email": "" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=NGYyZmU5YzE0YTJlZjk5MC0zYjM3YTRiNTM1N2MyNzliNTUyMDdlM2ZiZjBiMDAwZmFlOGI0MjM3NjM0NDUyNjRhYzc2ZWM5MmMxMmI5Yzg4" + } +} diff --git a/domains/evils.json b/domains/evils.json index c58083374..93eb8fed4 100644 --- a/domains/evils.json +++ b/domains/evils.json @@ -1,11 +1,11 @@ { - "description": "Portofolio", - "repo": "https://github.com/evils7/evils7.github.io", - "owner": { - "username": "evils7", - "email": "info@evils.gay" - }, - "record": { - "CNAME": "evilssite.glitch.me" - } -} + "description": "Portofolio", + "repo": "https://github.com/evils7/evils7.github.io", + "owner": { + "username": "evils7", + "email": "info@evils.gay" + }, + "record": { + "CNAME": "evilssite.glitch.me" + } +} diff --git a/domains/eviternal.json b/domains/eviternal.json deleted file mode 100644 index 5ccaa4144..000000000 --- a/domains/eviternal.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "EviternalOfficial", - "email": "", - "discord": "Vaibhav Kashyap#5747" - }, - "record": { - "A": ["35.186.245.55"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/ewan.json b/domains/ewan.json new file mode 100644 index 000000000..0348b08d0 --- /dev/null +++ b/domains/ewan.json @@ -0,0 +1,11 @@ +{ + "description": "personal portfolio for dev", + "repo": "https://github.com/Ewan-Dev/ewan-dev.github.io", + "owner": { + "username": "Ewan-Dev", + "email": "lyricizer2@gmail.com" + }, + "record": { + "CNAME": "ewan-dev.github.io" + } +} diff --git a/domains/exhq.json b/domains/exhq.json new file mode 100644 index 000000000..cda07d0e8 --- /dev/null +++ b/domains/exhq.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "exhq", + "email": "infidelLOLer@gmail.com", + "discord": "712639419785412668" + }, + + "record": { + "A": ["91.107.164.89"] + } +} diff --git a/domains/exophs.json b/domains/exophs.json new file mode 100644 index 000000000..11e59a124 --- /dev/null +++ b/domains/exophs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exophs", + "email": "bezeski@email.com" + }, + "record": { + "CNAME": "exophs.github.io" + } +} diff --git a/domains/extensions.trung.json b/domains/extensions.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/extensions.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/exx.json b/domains/exx.json new file mode 100644 index 000000000..977561c23 --- /dev/null +++ b/domains/exx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xqxyzl", + "email": "exemailhelp+3@gmail.com" + }, + "record": { + "TXT": "_discord.exx.is-a.dev" + } +} diff --git a/domains/eyescary.json b/domains/eyescary.json new file mode 100644 index 000000000..48ecd9048 --- /dev/null +++ b/domains/eyescary.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EyeScary-Development", + "email": "peteromg43@gmail.com" + }, + "record": { + "CNAME": "eyescary.pages.dev" + } +} diff --git a/domains/ezzoubair.json b/domains/ezzoubair.json new file mode 100644 index 000000000..e2c8dec17 --- /dev/null +++ b/domains/ezzoubair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/f.json b/domains/f.json new file mode 100644 index 000000000..8f3f6f141 --- /dev/null +++ b/domains/f.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "iHategithub9000", + "email": "", + "discord": "836012649959522384", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.X5ydqojosseoZvJ5KWgT9xOHlThoEA_SUhcCqiMU_8PdrYbjy7Nw_45skTB9WM_-I5-jytdNY42ZMFO8jKGKzZeU8k6v-prPPEpFI3-frlVTFodnZb03puDilPvWV08Ms-3Gook9SJVHaibuFO3huscmzHR8LqgQWAdOOTlyIML-sxissxTom_3dXjHQEmtjkQrAOuTeBw6oZK7_V9uue3tpNyq3-FNCCKLLc--OskvgwVZB8CmqJUADUpgaxXz2IIvEezOiZyP_f0hII8MWR6VttQqtGiRoQKj5SvtoQsBHfhRfocNRY_RUOu1a6l30mx3TB04OLC-QSN-HfvOIQg.kmjyio3vkycaU6hX0FYzpg.PzGJ-TiHcN-8DiG6UvmqXxmXuPe0rVbIg6ykm5nXp5_jUsNVCHDKslCfUQp3D0Jlc8jY_ez7hvxsgtfOinJYu2oaI3qWs6nxQg-i8KJS-hI.tAjmi5HHDLJcfGDBSUEong" + }, + + "record": { + "CNAME": "edge.redirect.pizza" + } + } + diff --git a/domains/f2cqjkp4gwog.json b/domains/f2cqjkp4gwog.json deleted file mode 100644 index 15d30a33b..000000000 --- a/domains/f2cqjkp4gwog.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "thispsj", - "email": "thispsj.mail@gmail.com" - }, - "record": { - "CNAME": "gv-5tmrgilyy2ar3j.dv.googlehosted.com" - } -} diff --git a/domains/f5.json b/domains/f5.json new file mode 100644 index 000000000..795562fb6 --- /dev/null +++ b/domains/f5.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fae5de", + "email": "louis.m.ortner@icloud.com" + }, + "record": { + "CNAME": "website-6es.pages.dev" + } +} diff --git a/domains/fa-fifi.json b/domains/fa-fifi.json new file mode 100644 index 000000000..5870bbcc3 --- /dev/null +++ b/domains/fa-fifi.json @@ -0,0 +1,16 @@ +{ + "description": "Personal portfolio website", + "owner": { + "username": "fa-fifi", + "email": "fafifi1997@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "TXT": "google-site-verification=AYbL6PIbwUv4qzq9KxmrjAM9vfCQ0IUNRBX_AeXPfVE" + } +} diff --git a/domains/fab1andev.json b/domains/fab1andev.json new file mode 100644 index 000000000..e645d0569 --- /dev/null +++ b/domains/fab1andev.json @@ -0,0 +1,12 @@ +{ + "description": "Fab1anDev subdomain for fab1andev.github.io", + "repo": "https://github.com/Fab1anDev/fab1andev.github.io", + "owner": { + "username": "Fab1anDev", + "email": "fab1andev@proton.me", + "twitter": "Fab1anDev" + }, + "record": { + "CNAME": "fab1andev.github.io" + } +} diff --git a/domains/face-recognition.shockbs.json b/domains/face-recognition.shockbs.json new file mode 100644 index 000000000..6000dc098 --- /dev/null +++ b/domains/face-recognition.shockbs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "CNAME": "na-west1.surge.sh" + } +} diff --git a/domains/factory.json b/domains/factory.json new file mode 100644 index 000000000..ac0f1c0ce --- /dev/null +++ b/domains/factory.json @@ -0,0 +1,11 @@ +{ + "description": "Factory for manufacturing is-a-dev domains", + "repo": "https://github.com/VaibhavSys/DomainFactory", + "owner": { + "username": "VaibhavSys", + "email": "vaibhavsys@protonmail.com" + }, + "record": { + "CNAME": "domainfactory.pages.dev" + } +} diff --git a/domains/fae5.json b/domains/fae5.json new file mode 100644 index 000000000..795562fb6 --- /dev/null +++ b/domains/fae5.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fae5de", + "email": "louis.m.ortner@icloud.com" + }, + "record": { + "CNAME": "website-6es.pages.dev" + } +} diff --git a/domains/fael.json b/domains/fael.json new file mode 100644 index 000000000..e42ff2f96 --- /dev/null +++ b/domains/fael.json @@ -0,0 +1,10 @@ +{ + "description": "nice domain for my sink.cool link shortener", + "owner": { + "username": "burnblazter", + "email": "hello@fael.my.id" + }, + "record": { + "CNAME": "sink-1pr.pages.dev" + } +} diff --git a/domains/faelixyz.json b/domains/faelixyz.json new file mode 100644 index 000000000..98ce7285d --- /dev/null +++ b/domains/faelixyz.json @@ -0,0 +1,12 @@ +{ + "description": "Faelixyz's API and redirects", + "repo": "", + "owner": { + "username": "faelixyz", + "email": "private@fae5.studio", + "twitter": "faelixyz" + }, + "record": { + "CNAME": "isagooddev.pages.dev" + } +} diff --git a/domains/fahri.json b/domains/fahri.json new file mode 100644 index 000000000..b5bfa7bde --- /dev/null +++ b/domains/fahri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FahriDevZ", + "email": "fakhri.5567@gmail.com" + }, + "record": { + "CNAME": "fahri.dev" + } +} diff --git a/domains/faizm.json b/domains/faizm.json new file mode 100644 index 000000000..b57c62d13 --- /dev/null +++ b/domains/faizm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dev28k", + "email": "faizkhan.dev@gmail.com" + }, + "record": { + "URL": "https://resort-app-vercel-frontend.vercel.app/" + } +} diff --git a/domains/fajox.json b/domains/fajox.json new file mode 100644 index 000000000..1fa1414f7 --- /dev/null +++ b/domains/fajox.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "FajoX1", + "email": "pybytee@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/fake.json b/domains/fake.json index 161498b2f..f9f4f5077 100644 --- a/domains/fake.json +++ b/domains/fake.json @@ -1,12 +1,12 @@ { - "description": "Fake_Name131's Website", - "repo": "https://github.com/YEEETT", + "description": "site", + "repo": "https://github.com/fakename131", "owner": { - "username": "Fake_Name131", + "username": "fakename131", "email": "fake@fake.is-a.dev" }, "record": { - "A": ["185.199.108.153"], + "A": ["75.2.60.5"], "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" diff --git a/domains/falguni-prajapati.json b/domains/falguni-prajapati.json new file mode 100644 index 000000000..faea36c15 --- /dev/null +++ b/domains/falguni-prajapati.json @@ -0,0 +1,11 @@ +{ + "description": "This is falguni prajapati", + "repo": "https://github.com/falguni-prajapati/falguni-prajapati.github.io", + "owner": { + "username": "falguni-prajapati", + "email": "" + }, + "record": { + "CNAME": "falguni-prajapati.github.io" + } +} diff --git a/domains/fallen.json b/domains/fallen.json deleted file mode 100644 index 2c5b978fd..000000000 --- a/domains/fallen.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Website Redirect", - "repo": "https://github.com/ThingsOfFallen/Website", - "owner": { - "username": "TheFallenSpirit", - "email": "thefallenspirit@outlook.com", - "twitter": "FallenCodes" - }, - "record": { - "URL": "https://fallenspirit.dev" - } -} diff --git a/domains/farhan.json b/domains/farhan.json new file mode 100644 index 000000000..8990677fd --- /dev/null +++ b/domains/farhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rose-uwu", + "email": "rose.pog.com@gmail.com" + }, + "record": { + "CNAME": "rose-uwu.github.io" + } +} diff --git a/domains/faris.json b/domains/faris.json deleted file mode 100644 index 6bc346566..000000000 --- a/domains/faris.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "repo": "https://github.com/farisjalal", - "owner": { - "username": "farisjalal", - "email": "", - "twitter": "faris__jalal" - }, - "record": { - "A": [ - "168.138.104.44" - ] - } -} diff --git a/domains/farish.json b/domains/farish.json index 7629059a5..c36566126 100644 --- a/domains/farish.json +++ b/domains/farish.json @@ -1,13 +1,16 @@ { - "description": "Email", - "owner": { - "username": "fxrysh", - "discord": "Fxrysh#5947", - "twitter": "fxryshdev", - "email": "hello@farish.is-a.dev" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "Email", + "owner": { + "username": "fxrysh", + "discord": "Fxrysh#5947", + "twitter": "fxryshdev", + "email": "hello@farish.is-a.dev" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/farjanul.json b/domains/farjanul.json index 30eb42403..f95424662 100644 --- a/domains/farjanul.json +++ b/domains/farjanul.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "farjanul", + "email": "farjanul10@gmail.com" + }, - { - "owner": { - "username": "farjanul", - "email": "farjanul10@gmail.com" - }, - - "record": { - "CNAME": "farjanul.github.io" - } - } - + "record": { + "CNAME": "farjanul.github.io" + } +} diff --git a/domains/farman.json b/domains/farman.json new file mode 100644 index 000000000..b31219642 --- /dev/null +++ b/domains/farman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MUHAMMAD-FARMAN", + "email": "muhammadfarman7654@gmail.com" + }, + "record": { + "A": ["66.29.153.55"] + } +} diff --git a/domains/farooq.json b/domains/farooq.json new file mode 100644 index 000000000..a80b47ebe --- /dev/null +++ b/domains/farooq.json @@ -0,0 +1,10 @@ +{ + "description": "Will be used for my portfolio", + "owner": { + "username": "fexxix", + "email": "fexxix@gmail.com" + }, + "record": { + "CNAME": "portfolio-one-jet-50.vercel.app" + } +} diff --git a/domains/fartplayer69.json b/domains/fartplayer69.json deleted file mode 100644 index fe3fc4ccb..000000000 --- a/domains/fartplayer69.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "diyar2137237243", - "email": "diyarpc6@gmail.com" - }, - "record": { - "CNAME": "diyar2137237243.github.io" - } -} diff --git a/domains/fassion.json b/domains/fassion.json new file mode 100644 index 000000000..962e70ad5 --- /dev/null +++ b/domains/fassion.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lolipopguy", + "email": "ngauthier818@gmail.com" + }, + "record": { + "A": ["79.94.184.109"] + } +} diff --git a/domains/fatgrizzly.json b/domains/fatgrizzly.json deleted file mode 100644 index 723eacbce..000000000 --- a/domains/fatgrizzly.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "personal website ", - "repo": "https://github.com/fatgrizzly", - "owner": { - "username": "fatgrizzly", - "email": "soundar@secret.fyi" - }, - "record": { - "A": ["89.163.215.190", "89.163.215.211"] - } -} diff --git a/domains/fathulfahmy.json b/domains/fathulfahmy.json new file mode 100644 index 000000000..1911af476 --- /dev/null +++ b/domains/fathulfahmy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fathulfahmy", + "email": "mfathulfahmy@gmail.com" + }, + "record": { + "URL": "https://fathulfahmy.pages.dev" + } +} diff --git a/domains/fatlum.json b/domains/fatlum.json new file mode 100644 index 000000000..5ae89600a --- /dev/null +++ b/domains/fatlum.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "itsFatlum", + "email": "", + "discord": "563697359423406082", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.eMf4IlWexPe6hFp4hgcIjsQF7LlJVjZCor8HknXn87-_2J7ttauRifc5MzAdue3I7V8PgfBjusMWI63By5ZVL_QhWMwXdFpw8vOR3KB46SIwJ1VBZ_0fzme4_yK9Rn0WHYMkPgFTdQm7bKhiM_euYvD7xkVDCGcO46mghx69NYYMlz6WsuYV5gfDih0LKl_mxkQtpgL0NnBoTuy0_cGmLn2atwZmagQRrduf91LmkA0SMOc9OXlKJG6-aIAxz0J2jn3BsG9fV-fuBhn_ToMTzNkuqRB8Ikxwn4HbtrCLHbBt2XcSBLGXzvPwmCO_RBhghvT9jGF7D8RCJQvLrtfIWg.VZI0dxxVJpzoA988Se1djw.2plxMGn9juRIF9E9wn235jyEw7ykma_ifBnpiiWJLOTp36IIr0lYcb70zBc4kFEORDI5Phedd94c2XIXCnlnM-Z86Xa-pB-kV8iXv4oGMuJkXSNDwZlpCFnSKxZZnPYK.41WLVG_yeCWpPBlaSV_DIw" + }, + "record": { + "CNAME": "itsfatlum.github.io" + } +} diff --git a/domains/faultysden.json b/domains/faultysden.json new file mode 100644 index 000000000..111af1065 --- /dev/null +++ b/domains/faultysden.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "FaultyFaulty-glitch", + "email": "faultywindows+github@gmail.com", + "discord": "1041028534690386051" + }, + + "record": { + "TXT": "google-site-verification=ix1jczu2q87igryc4eaexvdv1vrzjxolu14sjfpsnko" + } + } + \ No newline at end of file diff --git a/domains/faultywindows.json b/domains/faultywindows.json new file mode 100644 index 000000000..39b15454c --- /dev/null +++ b/domains/faultywindows.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FaultyWindows", + "email": "faultywindows@gmail.com", + "discord": "1041028534690386051" + }, + + "record": { + "A": ["185.199.108.153"] + } +} diff --git a/domains/fauzannnnh.json b/domains/fauzannnnh.json deleted file mode 100644 index 4cc88a96b..000000000 --- a/domains/fauzannnnh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My portfolio website", - "repo": "https://github.com/Fauzannnnh/website", - "owner": { - "username": "Fauzannnnh", - "email": "fauzan@eenthlh.xyz" - }, - "record": { - "URL": "https://eenthlh.xyz" - } -} diff --git a/domains/fauzi.json b/domains/fauzi.json new file mode 100644 index 000000000..ff08329f0 --- /dev/null +++ b/domains/fauzi.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio web", + "repo": "https://github.com/FauziFerdiansyah/fauziferdiansyah.github.io", + "owner": { + "username": "FauziFerdiansyah", + "email": "fetruzie2@gmail.com" + }, + "record": { + "CNAME": "FauziFerdiansyah.github.io" + } +} diff --git a/domains/fayyadh.json b/domains/fayyadh.json deleted file mode 100644 index 8d5e7635c..000000000 --- a/domains/fayyadh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Personal Website", - "repo": "https://github.com/Abdurrahman075/fayyadh-my-id", - "owner": { - "username": "Fayyadh", - "email": "fayyadh.abdurrahman007@gmail.com" - }, - "record": { - "URL": "https://fayyadh.my.id" - } -} diff --git a/domains/fd-gods-clan.json b/domains/fd-gods-clan.json new file mode 100644 index 000000000..3f83d19c1 --- /dev/null +++ b/domains/fd-gods-clan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ShadowPlayzYT22", + "email": "peterwyneg@gmail.com", + "discord": "1038747272701292584" + }, + + "record": { + "CNAME": "shadowplayzyt22.github.io" + } +} diff --git a/domains/fdkgenie.json b/domains/fdkgenie.json new file mode 100644 index 000000000..5288879ce --- /dev/null +++ b/domains/fdkgenie.json @@ -0,0 +1,11 @@ +{ + "description": "Register fdkgenie.is-a.dev domain", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "fdkgenie", + "email": "fdkgenie@gmail.com" + }, + "record": { + "URL": "https://cuongphd.wordpress.com/" + } +} diff --git a/domains/fear.json b/domains/fear.json index 83aa63540..033f08ecc 100644 --- a/domains/fear.json +++ b/domains/fear.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "FearMyShotz", - "email": "supremeplayzbs@gmail.com" - }, - "record": { - "CNAME": "fearmyshotz.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "FearMyShotz", + "email": "supremeplayzbs@gmail.com" + }, + "record": { + "CNAME": "fearmyshotz.github.io" + } +} diff --git a/domains/fel1x0u.json b/domains/fel1x0u.json index 9bcaaca82..3955131fd 100644 --- a/domains/fel1x0u.json +++ b/domains/fel1x0u.json @@ -1,12 +1,12 @@ { - "description": "Add some description", - "repo": "https://github.com/fel1x0u/fel1x0u.github.io", - "owner": { - "username": "fel1x0u", - "email": "felixcou@pm.me", - "twitter": "fel1x0u1" - }, - "record": { - "CNAME": "fel1x0u.github.io" - } - } \ No newline at end of file + "description": "Add some description", + "repo": "https://github.com/fel1x0u/fel1x0u.github.io", + "owner": { + "username": "fel1x0u", + "email": "felixcou@pm.me", + "twitter": "fel1x0u1" + }, + "record": { + "CNAME": "fel1x0u.github.io" + } +} diff --git a/domains/felga.json b/domains/felga.json deleted file mode 100644 index fc90b54b7..000000000 --- a/domains/felga.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Felga7453", - "email": "wojciech.faruga@outlook.com" - }, - "record": { - "CNAME": "felga.ddns.net" - } -} diff --git a/domains/felixalguzman.json b/domains/felixalguzman.json index 081da55bc..6da758c84 100644 --- a/domains/felixalguzman.json +++ b/domains/felixalguzman.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "felixalguzman", + "email": "code@felixalguzman.msk.do" + }, - { - "owner": { - "username": "felixalguzman", - "email": "code@felixalguzman.msk.do" - }, - - "record": { - "URL": "https://github.com/felixalguzman" - } - } - \ No newline at end of file + "record": { + "URL": "https://github.com/felixalguzman" + } +} diff --git a/domains/femboy.json b/domains/femboy.json new file mode 100644 index 000000000..16ce0771f --- /dev/null +++ b/domains/femboy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "d4rkd3n1337", + "email": "darkdenrevolt@gmail.com" + }, + "record": { + "A": ["45.85.117.139"] + } +} diff --git a/domains/fengkch.json b/domains/fengkch.json index 5304c5a2d..626ed6330 100644 --- a/domains/fengkch.json +++ b/domains/fengkch.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "sohokay", + "email": "kaichangfeng@gmail.com" + }, - { - "owner": { - "username": "sohokay", - "email": "kaichangfeng@gmail.com" - }, - - "record": { - "URL": "https://github.com/sohokay" - } - } - + "record": { + "URL": "https://github.com/sohokay" + } +} diff --git a/domains/ffj20.json b/domains/ffj20.json index a1208369d..80fc660bb 100644 --- a/domains/ffj20.json +++ b/domains/ffj20.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "FFJ-20", - "email": "", - "discord": "FFJ 2.0#6693" - }, - "record": { - "CNAME": "ffj-20.github.io" - } + "owner": { + "username": "FFJ-20", + "email": "", + "discord": "FFJ 2.0#6693" + }, + "record": { + "CNAME": "ffj-20.github.io" + } } diff --git a/domains/fh.sx9.json b/domains/fh.sx9.json deleted file mode 100644 index 15a15a512..000000000 --- a/domains/fh.sx9.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "SX-9", - "email": "hello@mail.sx9.is-a.dev" - }, - "record": { - "CNAME": "wdhdns.com" - } - } - diff --git a/domains/fietu.json b/domains/fietu.json deleted file mode 100644 index ba2520d3b..000000000 --- a/domains/fietu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Fietu Website", - "repo": "https://github.com/elfietulais", - "owner": { - "username": "El Fietulais", - "email": "pancongusanos@gmail.com" - }, - "record": { - "CNAME": "host.servers.andremor.dev" - } - } diff --git a/domains/files.allancoding.json b/domains/files.allancoding.json new file mode 100644 index 000000000..23114485e --- /dev/null +++ b/domains/files.allancoding.json @@ -0,0 +1,15 @@ +{ + "description": "My files website", + "repo": "https://github.com/allancoding/files.allancoding.is-a.dev", + "owner": { + "username": "allancoding", + "email": "allancoding.dev@gmail.com", + "twitter": "allancoding", + "discord": "allancoding" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/files.dqmn.json b/domains/files.dqmn.json new file mode 100644 index 000000000..cd09f820c --- /dev/null +++ b/domains/files.dqmn.json @@ -0,0 +1,10 @@ +{ + "description": "files.dqmn.is-a.dev - this will be my 'cloud' for files", + "owner": { + "username": "dqmn", + "email": "dqmnbackup@gmail.com" + }, + "record": { + "CNAME": "dqmnfiles.000webhostapp.com" + } +} diff --git a/domains/files.ravener.json b/domains/files.ravener.json new file mode 100644 index 000000000..829548d3a --- /dev/null +++ b/domains/files.ravener.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ravener", + "email": "ravener.anime@gmail.com", + "twitter": "RavenRavener", + "discord": "292690616285134850" + }, + "record": { + "A": ["132.145.196.17"] + } +} diff --git a/domains/files.vornexx.json b/domains/files.vornexx.json new file mode 100644 index 000000000..979ff89a4 --- /dev/null +++ b/domains/files.vornexx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vornex-gh", + "email": "", + "discord": "1149438819834269856", + "twitter": "vornexx_" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/filip769.json b/domains/filip769.json deleted file mode 100644 index a87d5f6bc..000000000 --- a/domains/filip769.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My personal website", - "repo": "https://github.com/filip-769", - "owner": { - "username": "filip-769", - "email": "filipdev769@gmail.com" - }, - "record": { - "CNAME": "web-1.hostnow.cz" - } -} diff --git a/domains/filmflu.json b/domains/filmflu.json new file mode 100644 index 000000000..f2bd0c6d6 --- /dev/null +++ b/domains/filmflu.json @@ -0,0 +1,11 @@ +{ + "description": "Film Flu Web Platform", + "repo": "https://github.com/dherediat97/FilmFlu", + "owner": { + "username": "dherediat97", + "email": "dherediat97@gmail.com" + }, + "record": { + "URL": "https://dherediat97.github.io/FilmFlu" + } +} diff --git a/domains/films.json b/domains/films.json new file mode 100644 index 000000000..359277b0f --- /dev/null +++ b/domains/films.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "wsmdn", + "email": "", + "discord": "1049856856467722242", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AM1kF-aodU7n0_bBI28MO7vlg-WccpJAhnV5ltySu602lhBR1Dx3UOD1TskSKmpdBpDXhSOQJ2bQZQ5ouum5txo7kJ42jLOsEr-OhXNREU3pqIE2kfJidObs05iDu2nOFIylFjZGNuYbmJQMPCf0F0KEIbNlgEWKqgPXBuiDOfv8yhi649LbPaj18TCIe04t6pkb77-1lNZiI3ebex4HAbWydF0IKSbijif7FoJbmi_LN6rqYXG-BYRzmdvvCg8FFrDWnTM4KJmc-4dU546kVFtB_GUgMYWl8xSTXKLk9PBHm0Prp3tONhqSMXRIR5Cg-6iVYbkw-Ln0YjYsnrnayQ.u_JCdGcxfWhrAT_7Hh_s2w.uRv4MGy00eRLbLsaHia2fP9FSpuDyGHrb1jF-EWjJ6fjd5XeYw73Up3tiulfQvROZ1li_p5Xfx7RbxaIlEYlA_584ldAutc_AT1YNcg78ck.9dcSw-Ut3ZbG_iO7Vx3-3A" + }, + + "record": { + "CNAME": "nomdn.github.io" + } + } + \ No newline at end of file diff --git a/domains/finn.json b/domains/finn.json deleted file mode 100644 index ee8e089ed..000000000 --- a/domains/finn.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "repo": "https://github.com/F1nnM", - "owner": { - "username": "F1nnM", - "email": "isadev_github@mfinn.de" - }, - "record": { - "A": ["94.176.233.129"] - } -} diff --git a/domains/finsniper.json b/domains/finsniper.json new file mode 100644 index 000000000..140f70bf2 --- /dev/null +++ b/domains/finsniper.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "chocovannii", + "email": "eldar.fire.tv@gmail.com" + }, + "record": { + "MX": [ + "feedback-smtp.us-east-1.amazonses.com" + ] + } +} diff --git a/domains/fire.json b/domains/fire.json index 9716d384e..040318d62 100644 --- a/domains/fire.json +++ b/domains/fire.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "fire-9999", - "email": "liamcarolan@gmail.com" - }, - "record": { - "URL": "https://fire-9999.github.io/fire-9999" - } + "owner": { + "username": "fire-9999", + "email": "liamcarolan@gmail.com" + }, + "record": { + "URL": "https://fire-9999.github.io/fire-9999" + } } diff --git a/domains/firedemon.json b/domains/firedemon.json new file mode 100644 index 000000000..3f83d19c1 --- /dev/null +++ b/domains/firedemon.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ShadowPlayzYT22", + "email": "peterwyneg@gmail.com", + "discord": "1038747272701292584" + }, + + "record": { + "CNAME": "shadowplayzyt22.github.io" + } +} diff --git a/domains/fireredz.json b/domains/fireredz.json deleted file mode 100644 index 6f9f4e627..000000000 --- a/domains/fireredz.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "rosenishere", - "email": "", - "twitter": "rosenishere" - }, - "record": { - "URL": "https://rosenishere.github.io/fireredzsite" - } -} diff --git a/domains/firework.json b/domains/firework.json index 9bc1f9941..5d797fad1 100644 --- a/domains/firework.json +++ b/domains/firework.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Firewoork", - "email": "iaintflxzra122@gmail.com" - }, - "record": { - "CNAME": "firewoork.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "Firewoork", + "email": "iaintflxzra122@gmail.com" + }, + "record": { + "CNAME": "firewoork.github.io" + } +} diff --git a/domains/fitrahmunir.json b/domains/fitrahmunir.json new file mode 100644 index 000000000..dc4117aa5 --- /dev/null +++ b/domains/fitrahmunir.json @@ -0,0 +1,11 @@ +{ + "description": "FitrahFM's .is-a.dev domain", + "repo": "https://github.com/fitrahfm", + "owner": { + "username": "fitrahfm", + "email": "fitrhmnr+is-a-dev@gmail.com" + }, + "record": { + "CNAME": "fitrahmunir.pages.dev" + } +} diff --git a/domains/fjuro.json b/domains/fjuro.json new file mode 100644 index 000000000..443f80251 --- /dev/null +++ b/domains/fjuro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Fjuro", + "email": "ifjuro@proton.me" + }, + "record": { + "CNAME": "fjuro.github.io" + } +} diff --git a/domains/flamexode.json b/domains/flamexode.json new file mode 100644 index 000000000..10b52c19e --- /dev/null +++ b/domains/flamexode.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WovenCoast", + "email": "wovencoast14782@techie.com" + }, + + "record": { + "CNAME": "wovencoast.github.io" + } +} diff --git a/domains/flash.json b/domains/flash.json new file mode 100644 index 000000000..60735b2c7 --- /dev/null +++ b/domains/flash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "w8flash", + "email": "flashhrdc@gmail.com" + }, + "record": { + "URL": "https://www.instagram.com/w8flash/" + } +} diff --git a/domains/flazepe.json b/domains/flazepe.json new file mode 100644 index 000000000..a51351960 --- /dev/null +++ b/domains/flazepe.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "flazepe", + "email": "", + "discord": "flazepe" + }, + "record": { + "CNAME": "flazepe.github.io" + } +} diff --git a/domains/fleem.json b/domains/fleem.json new file mode 100644 index 000000000..779772472 --- /dev/null +++ b/domains/fleem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adityavijay21", + "email": "adityavijay2103@gmail.com" + }, + "record": { + "CNAME": "fleemwebsite.onrender.com" + } +} diff --git a/domains/flexico.json b/domains/flexico.json deleted file mode 100644 index 271aa1af2..000000000 --- a/domains/flexico.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Flexicos website", - "repo": "https://github.com/7xh/7xh.github.io", - "owner": { - "username": "7xh", - "email": "noterme@protonmail.com" - }, - "record": { - "CNAME": "7xh.github.io" - } -} diff --git a/domains/flexis.json b/domains/flexis.json new file mode 100644 index 000000000..929620012 --- /dev/null +++ b/domains/flexis.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "realflexis", + "email": "", + "discord": "1236579599119548426", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YoALVOz_5u0oVgrxg3RQaVcoYA_P4JHnOZlPuPWFWU8ESueyCNjpbJ0b2c6JOlB9h1V3n2WuwXWkGwvhKYwdNV0WxWWQpQwjJE76SmxnWglTpL1FiAzdPDh5ophB9n1AK-Y-Y2Bn7n8ybi-uPZhZ50VT3LuLVLmirYMv7_f-Z879zUsP5y6fBypUPNHwQsw6T7G9uiURIZfnSKI2_mlPALcG8grEgO1B9H3yGrDkf3y8lFYngDKbYg8QSLPR1fKCV1cpv0zfVaztTRJqffvcVdTHh0r7nBB0Nz-1FqmegaGTPaOSn8rUIwgdp2GLq8NJx2_P4QGmoM8PmrrUgcKmUQ.pW-okmStc_7nPw-L96exPg.AmtSUs-AHjGWzy-cXaqcK4OzTfvrsk623pJixyzzXl0MZYn_1krPQ8Haom9KG-zsb0Kj4CHZqFHn6Wo6G25pwh_-LZlg9a5jrU22XsPKTI4.HkRnKv1TWr8AGJSZBn8d9Q" + }, + + "record": { + "CNAME": "realflexis.github.io" + } + } + \ No newline at end of file diff --git a/domains/fliberd.json b/domains/fliberd.json new file mode 100644 index 000000000..068d4660b --- /dev/null +++ b/domains/fliberd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fliberd", + "email": "dankashkarev@gmail.com" + }, + "record": { + "A": ["80.87.111.147"] + } +} diff --git a/domains/floppa.json b/domains/floppa.json deleted file mode 100644 index 30d1ed7d0..000000000 --- a/domains/floppa.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Luxxy-GF", - "email": "floppa@luxxy.xyz" - }, - "record": { - "CNAME": "sophie-is-sexy.co.uk" - } -} diff --git a/domains/florian.json b/domains/florian.json deleted file mode 100644 index 0f8d3ab37..000000000 --- a/domains/florian.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Hey! I'm Florian", - "repo": "https://github.com/florianheysen/heysen.fr", - "owner": { - "username": "florianheysen", - "email": "florian.heysen@gmail.com", - "twitter": "florianheysen" - }, - "record": { - "CNAME": "heysen.fr" - } -} diff --git a/domains/florin.json b/domains/florin.json index 34849b871..387f41bad 100644 --- a/domains/florin.json +++ b/domains/florin.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "flc995", - "email": "flc995@gmail.com" - }, - "record": { - "CNAME": "flc995.github.io" - } - } - +{ + "owner": { + "username": "flc995", + "email": "flc995@gmail.com" + }, + "record": { + "CNAME": "flc995.github.io" + } +} diff --git a/domains/flower.json b/domains/flower.json new file mode 100644 index 000000000..328ecfcfd --- /dev/null +++ b/domains/flower.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "messedupflowerpot", + "email": "messedupflowerpot@gmail.com" + }, + "record": { + "URL": "https://messedupflowerpot.carrd.co", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/fluor.json b/domains/fluor.json new file mode 100644 index 000000000..0c4b4c485 --- /dev/null +++ b/domains/fluor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PlowDev", + "email": "clicpowytb@gmail.com" + }, + "record": { + "CNAME": "fluor.pages.dev" + } +} diff --git a/domains/fluoresced.json b/domains/fluoresced.json new file mode 100644 index 000000000..5d65b647d --- /dev/null +++ b/domains/fluoresced.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "8FrMc", + "email": "pijuskaminskas1@gmail.com" + }, + "record": { + "URL": "https://guns.lol/ecq" + } +} diff --git a/domains/fluted.json b/domains/fluted.json deleted file mode 100644 index 46a82b68e..000000000 --- a/domains/fluted.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "fluted.is-a-dev", - "repo": "https://github.com/fluteds/fluteds.github.io", - "owner": { - "username": "fluteds", - "email": "", - "twitter": "fluted_" - }, - "record": { - "CNAME": "fluted.xyz" - } -} diff --git a/domains/flyingcheese41.json b/domains/flyingcheese41.json deleted file mode 100644 index 5f74e441d..000000000 --- a/domains/flyingcheese41.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "FlyingCheese41", - "email": "FlyingCheese43@gmail.com" - }, - "record": { - "CNAME": "FlyingCheese41.github.io" - } - } diff --git a/domains/flymeth.json b/domains/flymeth.json new file mode 100644 index 000000000..f155dc218 --- /dev/null +++ b/domains/flymeth.json @@ -0,0 +1,12 @@ +{ + "record": { + "CNAME": "flyweb-v2.netlify.app" + }, + "owner": { + "username": "Flymeth", + "email": "flymeth.yt@gmail.com", + "twitter": "flymeth" + }, + "repo": "https://github.com/Flymeth", + "description": "I'm a dev and I love to be that" +} diff --git a/domains/fma.json b/domains/fma.json new file mode 100644 index 000000000..d5ba3ec8f --- /dev/null +++ b/domains/fma.json @@ -0,0 +1,14 @@ +{ + "description": "FMA's main domain", + "owner": { + "username": "FMA", + "email": "eggnogh@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/fong.json b/domains/fong.json new file mode 100644 index 000000000..ccf6310e4 --- /dev/null +++ b/domains/fong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cnu4", + "email": "fangxw1004@qq.com" + }, + "record": { + "CNAME": "fangxw.me" + } +} diff --git a/domains/fordevs.json b/domains/fordevs.json new file mode 100644 index 000000000..ab8069858 --- /dev/null +++ b/domains/fordevs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "neopromic", + "email": "cusaowesley1@gmail.com" + }, + "record": { + "URL": "https://for-devs.vercel.app" + } +} diff --git a/domains/formalite.json b/domains/formalite.json new file mode 100644 index 000000000..592eca48f --- /dev/null +++ b/domains/formalite.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "formalite", + "email": "kkandemir947@gmail.com", + "discord": "kandemir#1000" + }, + "record": { + "CNAME": "formalite.github.io" + } +} diff --git a/domains/formuna.json b/domains/formuna.json new file mode 100644 index 000000000..853c02e3c --- /dev/null +++ b/domains/formuna.json @@ -0,0 +1,12 @@ +{ + "description": "My website for my projects", + "repo": "https://github.com/FormunaGit/FormunaGit.github.io", + "owner": { + "username": "FormunaGit", + "email": "", + "discord": "754657845563097108" + }, + "record": { + "CNAME": "formunagit.github.io" + } +} diff --git a/domains/forum.cupglass.json b/domains/forum.cupglass.json new file mode 100644 index 000000000..cf5459ea5 --- /dev/null +++ b/domains/forum.cupglass.json @@ -0,0 +1,14 @@ +{ + "description": "Forummmm for my mini-projectss💥💥", + "repo": "https://github.com/cupglassdev/cupglassdev.github.io", + "owner": { + "username": "cupglassdev", + "email": "", + "twitter": "https://x.com/cupglassdev", + "lahelu": "https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev" + }, + "record": { + "CNAME": "cname.freeflarum.com" + } +} diff --git a/domains/founderfie.json b/domains/founderfie.json new file mode 100644 index 000000000..819ae85ae --- /dev/null +++ b/domains/founderfie.json @@ -0,0 +1,10 @@ +{ + "description": "Main Website Of Our Company", + "owner": { + "username": "Founderfie", + "email": "director@founderfie.in" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/fox.json b/domains/fox.json index 9baec1bde..201342436 100644 --- a/domains/fox.json +++ b/domains/fox.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "fox-tech0", + "email": "red@team-ruben.tk" + }, - { - "owner": { - "username": "fox-tech0", - "email": "red@team-ruben.tk" - }, - - "record": { - "CNAME": "fox-tech0.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "fox-tech0.github.io" + } +} diff --git a/domains/foxdev.json b/domains/foxdev.json new file mode 100644 index 000000000..cb164e06e --- /dev/null +++ b/domains/foxdev.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "GermanFoxDev", + "email": "", + "discord": "1073620716152434830", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UbebN16UHO72TKA2YD4x_u4SI0XWphOGenqOawSBEd1FBNohHDWfoJMPcipQ9E-MFGYgvC5gVue7h2sKEoRb6dd4G6v46leW1Tc7_WJAhn55u3b0Rj-fJqjvqcwaNo05W1Zq0O9WfTGQdzXyqVBcSnq1V6GnEeI0UzTCyI_HNqnXzaI1qMmo8CtQgyTKnfBcR1opNCO7QeSG_T4EGg4DLWsrgr0AJO-HVXYvM_h5rCeyQXTfrNAMa9ICAT-TwJGiM-cu-wFBMB_1HQpBFaQaHhH5UAFKIfF9WQQpH-VHf_LhI8FpLRB-6CnCWE5JzPHFVlbpTkVSn20i_oPUrTV4Dg.RyWu6R3v0aMxyponKSI1gg.JEE8XkoGn7xz6tCqENxVjilgS1edQFIWTb38odWEZsF9dwQP_W7-N8nQhyx1oPt5yPxx8Iye9fwgYpeVV_9_bL6ECqHfH-GyPbXSOkygJbk.mDRr1pnHgCfZuEb9BZYs8g" + }, + + "record": { + "URL": "https://germanfoxdev.is-a.dev" + } + } + \ No newline at end of file diff --git a/domains/foxie.arman.json b/domains/foxie.arman.json index 727b37a31..14174d5d3 100644 --- a/domains/foxie.arman.json +++ b/domains/foxie.arman.json @@ -1,16 +1,9 @@ { - "description": "Foxie's Homepage by arman", - "repo": "https://github.com/ItzArman09/foxie.js", "owner": { "username": "ItzArman09", - "email": "contact@mail.arman.is-a.dev" + "email": "itz.armxn@outlook.com" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] + "A": ["45.140.142.112"] } } diff --git a/domains/foxsden.json b/domains/foxsden.json new file mode 100644 index 000000000..73a68705c --- /dev/null +++ b/domains/foxsden.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "FoxsDenYT", + "email": "foxsdenyt+isadev@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.forwardemail.net"], + "TXT": "forward-email=foxsdenyt@gmail.com" + } +} diff --git a/domains/fptbb.json b/domains/fptbb.json new file mode 100644 index 000000000..367d6c24b --- /dev/null +++ b/domains/fptbb.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Fptbb", + "email": "lucas@fptbb.com" + }, + "record": { + "URL": "https://fptbb.com", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/fran.json b/domains/fran.json new file mode 100644 index 000000000..e2b4ec8f3 --- /dev/null +++ b/domains/fran.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "xzonix", + "discord": "xzon1x", + "email": "" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.110.153", + "185.199.109.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/francescogerardi.json b/domains/francescogerardi.json new file mode 100644 index 000000000..6afeab139 --- /dev/null +++ b/domains/francescogerardi.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "flick9000", + "email": "", + "discord": "362568231149633548", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.c3zZelrnWeEuqiMpG-GcRSNLzfODaHNYHVo1NfrkV0wv7mieN9UgiB1Zb_4B7EFPG9NkpwxiUEdW7fNoi7ULdS0sRph_3LykmcnP2QEf_cB8wEewUrzRmlWTtauxo-VKkAuRYa-Ii0mEHQB1ih7hSE77aSix33PLvAItb9NcYemmA8szZO4qCJmNVb44opt-d74x9FlknLxpqDFsKIiyITiKHHUhaOH_NePuZ_arsP4k0bGImUU9d6OymNj_IVXmOdM3Ly_Y3Wju_UFA3Y9t5FXPVNsJq_s5HV4aatJUUBfV47vXruzOeuTFEEVu6VkQpYIspp7mmfgeJPUdAp6yew.wLK8eQGZ8_vbMQEM8sq12A.xTmbHTMvpvXvV2nMnvnGrmp9S4WDAuArMOh4S1XmReBtt7bDUxkoZCgSNWOygDzGnoNOt4TyHXNlEaq_rX-yOBhKlpNI_qHqJncH5imtAdc.y0ElsabDzZ7GmbB_F2zGyQ" + }, + + "record": { + "A": ["172.66.47.45", "172.66.44.211"], + "TXT": "google-site-verification=iL7h3vJPXKZPDsPAMhlOlX6Rz9fa4-oTNmCh-tn3isU" + } +} diff --git a/domains/frank.json b/domains/frank.json new file mode 100644 index 000000000..16feeed4c --- /dev/null +++ b/domains/frank.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kageurufu", + "email": "franklyn@tackitt.net" + }, + "record": { + "CNAME": "is-a-dev.frank.af" + } +} diff --git a/domains/frazix.json b/domains/frazix.json index 1add9d6f9..95fd45d84 100644 --- a/domains/frazix.json +++ b/domains/frazix.json @@ -5,7 +5,7 @@ "username": "Frazix12", "email": "frazixgaming22@gmail.com" }, - "record": { + "record": { "CNAME": "frazix12.github.io" } } diff --git a/domains/frd.json b/domains/frd.json index 4bc729000..936420763 100644 --- a/domains/frd.json +++ b/domains/frd.json @@ -6,7 +6,6 @@ "email": "fikrizhanking@gmail.com" }, "record": { - "TXT": "vc-domain-verify=frd.is-a.dev,e04ccfeb28b2ba8ec702", "URL": "https://fikri.vercel.app" } } diff --git a/domains/free.json b/domains/free.json new file mode 100644 index 000000000..df4e9ada4 --- /dev/null +++ b/domains/free.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "216.24.57.1" + ] + } +} diff --git a/domains/freefor.json b/domains/freefor.json new file mode 100644 index 000000000..df4e9ada4 --- /dev/null +++ b/domains/freefor.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "216.24.57.1" + ] + } +} diff --git a/domains/freefordevs.json b/domains/freefordevs.json new file mode 100644 index 000000000..df4e9ada4 --- /dev/null +++ b/domains/freefordevs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "216.24.57.1" + ] + } +} diff --git a/domains/freitaseric.json b/domains/freitaseric.json index b1fdb5bae..86e202516 100644 --- a/domains/freitaseric.json +++ b/domains/freitaseric.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "uEriic", - "email": "ueriic0@gmail.com" - }, - "record": { - "CNAME": "ueriic.github.io" - } + "owner": { + "username": "uEriic", + "email": "ueriic0@gmail.com" + }, + "record": { + "CNAME": "ueriic.github.io" + } } diff --git a/domains/frenzy.json b/domains/frenzy.json new file mode 100644 index 000000000..f1883ba05 --- /dev/null +++ b/domains/frenzy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "frenzy602", + "email": "GK267281@GMAIL.COM" + }, + + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/friday.json b/domains/friday.json new file mode 100644 index 000000000..8db69922d --- /dev/null +++ b/domains/friday.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itmefriday", + "email": "chauhan20292827@gmail.com" + }, + "record": { + "A": ["109.71.252.37"] + } +} diff --git a/domains/frissyn.json b/domains/frissyn.json deleted file mode 100644 index c998e71c3..000000000 --- a/domains/frissyn.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Personal website and portfolio.", - "repo": "https://replit.com/@frissyn/frissyn", - "owner": { - "username": "frissyn", - "email": "", - "twitter": "frissyn_", - "discord": "frissyn#0376" - }, - "record": { - "CNAME": "d464aec0-5048-4724-9ac8-b797ee2bf2a7.id.repl.co" - } -} diff --git a/domains/frog.json b/domains/frog.json deleted file mode 100644 index de9e121a4..000000000 --- a/domains/frog.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "The Frog's Website", - "repo": "https://github.com/FrogIsADev", - "owner": { - "username": "MrNover", - "email": "alfie@nytern.com" - }, - "record": { - "CNAME": "51780377-151b-4095-b4d5-113b2a9d12e0.id.repl.co" - } -} diff --git a/domains/frogiee1real.json b/domains/frogiee1real.json new file mode 100644 index 000000000..89a1a2107 --- /dev/null +++ b/domains/frogiee1real.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrogiesArcade", + "email": "frogiesarcade@gmail.com" + }, + "record": { + "CNAME": "extramathequations.web.app" + } +} diff --git a/domains/froniz.json b/domains/froniz.json new file mode 100644 index 000000000..5228c271b --- /dev/null +++ b/domains/froniz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Froniz", + "email": "discordmarc1912@gmail.com", + "discord": "1002293564782411787" + }, + + "record": { + "A": ["144.91.116.153"] + } +} diff --git a/domains/frostzzone.json b/domains/frostzzone.json deleted file mode 100644 index 90c1ef3b9..000000000 --- a/domains/frostzzone.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "frostzzone", - "email": "frostzzone@gmail.com" - }, - "record": { - "CNAME": "57f1a47f-f450-481b-a776-5286b5cbc3e5.id.repl.co" - } -} diff --git a/domains/ftn.json b/domains/ftn.json new file mode 100644 index 000000000..8a81c4317 --- /dev/null +++ b/domains/ftn.json @@ -0,0 +1,11 @@ +{ + "description": "frthr's personal site", + "repo": "https://github.com/furthir/furthir.github.io", + "owner": { + "username": "furthir", + "email": "furthir@pm.me" + }, + "record": { + "CNAME": "furthir.github.io" + } +} diff --git a/domains/fucabot.json b/domains/fucabot.json new file mode 100644 index 000000000..56a8f07fb --- /dev/null +++ b/domains/fucabot.json @@ -0,0 +1,11 @@ +{ + "description": "Fuca Bot website", + "repo": "https://github.com/anshtyagi0", + "owner": { + "username": "anshtyagi0", + "email": "tyagiansh175@gmail.com" + }, + "record": { + "A": ["65.109.168.46"] + } +} diff --git a/domains/fuccsoc.json b/domains/fuccsoc.json index 450629f09..7245312bb 100644 --- a/domains/fuccsoc.json +++ b/domains/fuccsoc.json @@ -1,12 +1,16 @@ - - { - "owner": { - "username": "fuccsoc", - "email": "me@fuccsoc.com" - }, - - "record": { - "URL": "https://fuccsoc.com" - } - } - +{ + "owner": { + "username": "fuccsoc", + "email": "me@fuccsoc.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ], + "URL": "https://fuccsoc.github.io" + } +} diff --git a/domains/fuds.json b/domains/fuds.json new file mode 100644 index 000000000..a4b4d4eed --- /dev/null +++ b/domains/fuds.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GeekSupport", + "email": "geek@laguaz.eu.org" + }, + "record": { + "CNAME": "fuds.pages.dev" + } +} diff --git a/domains/fumi.json b/domains/fumi.json new file mode 100644 index 000000000..cbb571bb6 --- /dev/null +++ b/domains/fumi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrTakedi", + "email": "tristankirbehbuller@gmail.com" + }, + "record": { + "URL": "https://social.vivaldi.net/@kirbeh" + } +} diff --git a/domains/funasitien.json b/domains/funasitien.json new file mode 100644 index 000000000..a7d931a02 --- /dev/null +++ b/domains/funasitien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Funasitien", + "email": "bwha.bwha.splash@gmail.com" + }, + "record": { + "CNAME": "funasitien.github.io" + } +} diff --git a/domains/fundid.json b/domains/fundid.json new file mode 100644 index 000000000..63dd73d84 --- /dev/null +++ b/domains/fundid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fundid", + "email": "fundidennis@protonmail.com" + }, + "record": { + "CNAME": "fundid.github.io" + } +} diff --git a/domains/funn.json b/domains/funn.json new file mode 100644 index 000000000..dc25bcf3e --- /dev/null +++ b/domains/funn.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "funnsam", + "email": "funnsam8@gmail.com", + "discord": "684733024612646953", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZMW5PjPtfPT7C8JjTRmHq8lQPCfuuqYjzrJDWht6SAT7w7Uf1pocR9OhIsl4fvx3Jw1bcOYsa2KfWbZ_PXLDD6YlRHM86nszS4TPFlo8_DsqJC0IMlXdBtlgqPg0gntNzuZMNg9HLpkRWiXzkXMEMdQ5OJJgVoKtBCpc9Z68aoFw_d8WNKebA1mC04DayucBOulPu1bY2HhZleTvjAlW7_wA-soRF-O9ByL59DtNfUGaJaX7SqvthGz2FSyPqlaw1UOe3fpQdutYG_A97tv_toQOJZy93o2iCcrxSWS3tPFZnu_LVyL-JRmkfaMvzxFakgA3etAOx-ReUnD8TmM3tw.ZqPbIAF9lrCM39_U9KgzHA.PdOPxoSDOoMU9saO4KtrXor5ZIStqTjA8AMrCFatJDiB3iHln7gPkzkhmS-l6w8hwu7T3VLxDe8kfVmxmbenKksumyR6pDicLaw45zb5vfY.srUkRHoxqz9QXW1pzbTo2w" + }, + + "record": { + "CNAME": "funnsam.github.io" + } +} + diff --git a/domains/funny-noip.json b/domains/funny-noip.json new file mode 100644 index 000000000..ff59822f5 --- /dev/null +++ b/domains/funny-noip.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "DaoLmao", + "email": "", + "discord": "854380469147140106", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RHFDQ-t8_30YGZqdxnq81q5n9x4c7fKSVN6Xb_PnHI_7fT1K7bh-h7hn-Ow_ysHPiF9EzTuhFpSdIOmFHITWx5pxuJXYONFir9gsxGEHCWhHbBOWgq6uRUeE003cbVHAJ4PyAApParkPEiFPd4O7wlM4sHN-db_Pb9mj6DjRMehKZi8e62imM_uL13BE9WzF14Ra1ELHbobVTjF4KHm7a1U9FUG-M1CWGyUs47AxDzcwFrT-q2-yBmlGHJzWS_aCXdZvWtP19TZzoGh-iqpKOMfLTnFq3OAJEVWcW0LZDApOdVjj3p_aBBN1AGWFPCo9DO7s3lFwyK13Yem21D4v3g.duBRGNUSAmp52pA6gSDHtA.3BT1jFA4yKBKMk5JSZqP9JZWwZ3va0zxXVlnK5dGpcONBwrD-gjs3ezJQcwHBSRneDHjQFsBqpjYUypaUGumgL4PEWg2aNmWhM9SpKNMHlk.UX96Z_OBbZ1F5FTSJ3YEHg" + }, + + "record": { + "CNAME": "zintaro.github.io" + } + } + \ No newline at end of file diff --git a/domains/furkancetinkaya.json b/domains/furkancetinkaya.json index c0acfb817..138c2b1a0 100644 --- a/domains/furkancetinkaya.json +++ b/domains/furkancetinkaya.json @@ -1,12 +1,12 @@ { - "description": "my portfolio site", - "repo": "https://github.com/honeybadger4768/furkancetinkaya", - "owner": { - "username": "honeybadger4768", - "email": "furkancetinkaya0746@gmail.com", - "twitter": "honeybutdev" - }, - "record": { - "CNAME": "furkancetinkaya-me.pages.dev" - } -} + "description": "my portfolio site", + "repo": "https://github.com/honeybadger4768/furkancetinkaya", + "owner": { + "username": "honeybadger4768", + "email": "furkancetinkaya0746@gmail.com", + "twitter": "honeybutdev" + }, + "record": { + "CNAME": "furkancetinkaya-me.pages.dev" + } +} diff --git a/domains/furqan.json b/domains/furqan.json new file mode 100644 index 000000000..4391efa0b --- /dev/null +++ b/domains/furqan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rediffurqan", + "email": "frqnlove8765@gmail.com" + }, + "record": { + "CNAME": "phonesme.onrender.com" + } +} diff --git a/domains/furret.json b/domains/furret.json new file mode 100644 index 000000000..36d9a5a74 --- /dev/null +++ b/domains/furret.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "furretra1n", + "email": "furret@transistorcafe.net" + }, + "record": { + "CNAME": "walccdev.github.io" + } +} diff --git a/domains/furry.json b/domains/furry.json new file mode 100644 index 000000000..e9e4413dc --- /dev/null +++ b/domains/furry.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "furyashnyy", + "email": "faradey.iskra@mail.ru", + "discord": "754721080383373373" + }, + + "record": { + "A": ["31.31.196.104"] + } +} diff --git a/domains/furti.json b/domains/furti.json index e30b31622..b0ab23ef9 100644 --- a/domains/furti.json +++ b/domains/furti.json @@ -1,12 +1,12 @@ { - "description": "furti's personal website", - "repo": "https://github.com/furtidev/furtidev.github.io", - "owner": { - "username": "furtidev", - "email": "furtidev@proton.me", - "twitter": "furtidev" - }, - "record": { - "CNAME": "furtidev.github.io" - } -} + "description": "furti's personal website", + "repo": "https://github.com/furtidev/furtidev.github.io", + "owner": { + "username": "furtidev", + "email": "furtidev@proton.me", + "twitter": "furtidev" + }, + "record": { + "CNAME": "furtidev.github.io" + } +} diff --git a/domains/furycraft.json b/domains/furycraft.json index 613343c05..f1bb6919e 100644 --- a/domains/furycraft.json +++ b/domains/furycraft.json @@ -1,6 +1,6 @@ { "description": "Used as portfolio and to promote my work", - "repo": "https://github.com/FuryCraft/furycraft.github.io", + "repo": "https://github.com/FuryCraft/furycraft.github.io", "owner": { "username": "FuryCraft", "email": "pro.furycraft@outlook.fr", diff --git a/domains/fxrysh.json b/domains/fxrysh.json index 6ae337754..5da977b18 100644 --- a/domains/fxrysh.json +++ b/domains/fxrysh.json @@ -1,13 +1,13 @@ { - "description": "Personal portfolio written in VueJS", - "repo": "https://github.com/fxrysh/portfolio", - "owner": { - "username": "fxrysh", - "discord": "Fxrysh#5947", - "twitter": "fxryshdev", - "email": "hello@farish.is-a.dev" - }, - "record": { - "CNAME": "86872205c14179c98afa1392.cname.deno.dev" - } + "description": "Personal portfolio written in VueJS", + "repo": "https://github.com/fxrysh/portfolio", + "owner": { + "username": "fxrysh", + "discord": "Fxrysh#5947", + "twitter": "fxryshdev", + "email": "hello@farish.is-a.dev" + }, + "record": { + "CNAME": "86872205c14179c98afa1392.cname.deno.dev" + } } diff --git a/domains/fy.json b/domains/fy.json new file mode 100644 index 000000000..d8485c6a8 --- /dev/null +++ b/domains/fy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bestzwei", + "email": "post@zwei.de.eu.org" + }, + "record": { + "CNAME": "libretranslator.pages.dev" + } +} diff --git a/domains/fyz.json b/domains/fyz.json new file mode 100644 index 000000000..7ba39f60a --- /dev/null +++ b/domains/fyz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "w8fyz", + "email": "fyzdesignyt@gmail.com" + }, + "record": { + "CNAME": "fyz.sh" + } +} diff --git a/domains/g-pratik.json b/domains/g-pratik.json new file mode 100644 index 000000000..dc793000b --- /dev/null +++ b/domains/g-pratik.json @@ -0,0 +1,11 @@ +{ + "description": "This is my website", + "repo": "https://github.com/g-pratik/g-pratik.github.io", + "owner": { + "username": "g-pratik", + "email": "" + }, + "record": { + "CNAME": "g-pratik.github.io" + } +} diff --git a/domains/g.6.json b/domains/g.6.json new file mode 100644 index 000000000..ff9db082d --- /dev/null +++ b/domains/g.6.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "URL": "https://gg.shockbs.is-a.dev/" + } +} diff --git a/domains/g.json b/domains/g.json new file mode 100644 index 000000000..334b3759f --- /dev/null +++ b/domains/g.json @@ -0,0 +1,11 @@ +{ + "description": "g.is-a.dev", + "owner": { + "username": "GizzyUwU", + "email": "nerop455@gmail.com", + "discord": "gizzyowo" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/g.shockbs.json b/domains/g.shockbs.json new file mode 100644 index 000000000..6d2da5cca --- /dev/null +++ b/domains/g.shockbs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "CNAME": "ziplineshockbs.onrender.com" + } +} diff --git a/domains/gab.json b/domains/gab.json new file mode 100644 index 000000000..4583612bd --- /dev/null +++ b/domains/gab.json @@ -0,0 +1,10 @@ +{ + "description": "Hase0278's developer portfolio website cloudflare server", + "owner": { + "username": "hase0278", + "email": "betterhalf278@gmail.com" + }, + "record": { + "CNAME": "developer-portfolio-2qp.pages.dev" + } +} diff --git a/domains/gabek.json b/domains/gabek.json new file mode 100644 index 000000000..d9fd6b982 --- /dev/null +++ b/domains/gabek.json @@ -0,0 +1,13 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/gabekgfx/gabekgfx.github.io", + "owner": { + "username": "gabekgfx", + "email": "bussines.gabrys@gmail.com", + "twitter": "gabek_gfx" + }, + + "record": { + "CNAME": "gabekgfx.github.io" + } +} diff --git a/domains/gabimaciel.json b/domains/gabimaciel.json deleted file mode 100644 index 3d80ee451..000000000 --- a/domains/gabimaciel.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "description": "Gabi's webpage", - "repo": "https://github.com/gabriel-maciel", - "owner": { - "username": "gabriel-maciel", - "email": "gabrielmaciel@duck.com" - }, - "record": { - "A": [ - "147.182.139.182" - ], - "MX": [ - "ns1.digitalocean.com", - "ns2.digitalocean.com", - "ns3.digitalocean.com" - ] - } - } diff --git a/domains/gabolemus.json b/domains/gabolemus.json new file mode 100644 index 000000000..e03a56de4 --- /dev/null +++ b/domains/gabolemus.json @@ -0,0 +1,11 @@ +{ + "description": "gabolemus personal website", + "repo": "https://github.com/gabolemus/gabolemus.github.io", + "owner": { + "username": "gabolemus", + "email": "glemus.stuart@gmail.com" + }, + "record": { + "CNAME": "gabolemus.github.io" + } +} diff --git a/domains/gabriela.json b/domains/gabriela.json new file mode 100644 index 000000000..ec755f4d5 --- /dev/null +++ b/domains/gabriela.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gabriela4152", + "email": "gabriela4152@gmail.com" + }, + "record": { + "CNAME": "gabriela4152.github.io" + } +} diff --git a/domains/gabrigode.json b/domains/gabrigode.json new file mode 100644 index 000000000..a4c52697d --- /dev/null +++ b/domains/gabrigode.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "gabrigode", + "email": "", + "discord": "368920323808034816", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.rlXCntE-RbS7-N1gSETyncs-hRDIJnsaS_BkbzFjW7qS94B4wt34p7EwUyiaeemwbW3EnQVD-z-PXQoxKI2dLZQhJR2LLbuK1aWG1sQZREOT5J_DcjuY1HXpcsnD_zu_s0uZ7Pfs_b5OMrrqTyUB0hEmR72J7Qg4XNFsy5-ges6EboFzHeXYxolBo-g7nsdPgvcw6EVJdoaCvl0OvNMoIfxyOf1GkeEBAXxAfutsWLLYp4U7HN1a6AkOSPLVkgIwHgi8lGIHWJjYqgjfZd8nRTIe_4d9pOJJVlKVfPp9i8fsl1oysFEVefiU_Xx6AlfXSm2UZcbmMwRq3ItzMxqviA.Zpx8XSXQNPjcWVDZNJuH2Q.LrGHXkueDq4PQp_ptTfE7-2dnJUJ5P86ny7dQkSu4qApFr-X32Sxm5wAG7zbOH_bVakgYvL-Va-5sKS5UHIbU0Ne5rK4CvJ0HxEzLDG8fpA.ilZ6z0z2oCEI7yP2cHdVOQ" + }, + + "record": { + "URL": "https://github.com/gabrigode" + } + } + diff --git a/domains/gachugu.json b/domains/gachugu.json new file mode 100644 index 000000000..e6d9b89ec --- /dev/null +++ b/domains/gachugu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BryanGachugu", + "email": "gachugusville@gmail.com" + }, + "record": { + "CNAME": "bryangachugu.github.io" + } +} diff --git a/domains/gala.json b/domains/gala.json index fd13bed73..c581f6f1a 100644 --- a/domains/gala.json +++ b/domains/gala.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "p0lygun", + "email": "solankivibhakar82@gmail.com" + }, - { - "owner": { - "username": "p0lygun", - "email": "solankivibhakar82@gmail.com" - }, - - "record": { - "URL": "https://stilllearning.tech" - } - } - + "record": { + "URL": "https://stilllearning.tech" + } +} diff --git a/domains/galacyber.json b/domains/galacyber.json index 2f969f27b..57a18bc03 100644 --- a/domains/galacyber.json +++ b/domains/galacyber.json @@ -1,12 +1,12 @@ -{ - "description": "My personal portofolio", - "repo": "https://github.com/MGalaCyber/mgalacyber.github.io", - "owner": { - "username": "MGalaCyber", - "email": "", - "discord": "GalaXd#9165" - }, - "record": { - "CNAME": "mgalacyber.github.io" - } -} +{ + "description": "My personal portofolio", + "repo": "https://github.com/MGalaCyber/mgalacyber.github.io", + "owner": { + "username": "MGalaCyber", + "email": "", + "discord": "GalaXd#9165" + }, + "record": { + "CNAME": "mgalacyber.github.io" + } +} diff --git a/domains/galihrhgnwn.json b/domains/galihrhgnwn.json new file mode 100644 index 000000000..ab78f3be5 --- /dev/null +++ b/domains/galihrhgnwn.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "pluzels", + "email": "", + "discord": "1140780096085573734", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.NsIGpomjuC_O3qhqmYjKNy-71OclB57zxOROYzSgvAgHRk_WNpPE7JQ2xD4ZKof8bsgwP-6-EMkusnjLAl7PToEz7rjwPwSid3ieNY4GOxV14N6NSGEeGMSTzJdWeYUImb5ZMQJHhkWzWNpg6VS1_c9_MaCAKNEQckbMx-iHpFl9fL3WRFUx_Gj76l3jo5u5iKFAOOdd6Ml3TLI16b2vJGUe8BOZDMv4_kizCEoT8EnIRHs-ssP3m5ek87Sig8LtrsKjnRuovwAVjBWv1OJFXGILrMlW_9amFOYzteseOcQU2eY0Ct8P3_Kh2R3lBnJlOLfwuYL0bX4VU2AILhLiOQ.XRllPfaz3ooYGle8DOtrQA.LzYHqyM1tCL0rn-6XpbJ77ER57elr2XpjjLyFFRLdkLO2d8Jh5T4iv7mHEQEZI5L3syxdQT6TpJXu3cNrR-3O1B3cmJpL9BjfOVTnbMgv2Y.9Y1ZB9k4eS5nCaeiui5TpQ" + }, + + "record": { + "CNAME": "cname.vercel-dns.com" + } + } + \ No newline at end of file diff --git a/domains/galvanized-square-steel-with-aluminium-frame.json b/domains/galvanized-square-steel-with-aluminium-frame.json new file mode 100644 index 000000000..5c856434f --- /dev/null +++ b/domains/galvanized-square-steel-with-aluminium-frame.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "galvanized-square-steel-with-aluminium-frame.pages.dev" + } +} diff --git a/domains/games.bob16077.json b/domains/games.bob16077.json new file mode 100644 index 000000000..af3733f54 --- /dev/null +++ b/domains/games.bob16077.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bob16077", + "discord": "bob16077777", + "email": "" + }, + "record": { + "CNAME": "bob16077.github.io" + } +} diff --git a/domains/gameserver.ardaninho.json b/domains/gameserver.ardaninho.json new file mode 100644 index 000000000..a57c2383b --- /dev/null +++ b/domains/gameserver.ardaninho.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Ardaninho", + "email": "", + "discord": "639439553698201626" + }, + + "record": { + "A": ["23.88.73.88"] + } + } + \ No newline at end of file diff --git a/domains/gamew.json b/domains/gamew.json deleted file mode 100644 index f49242527..000000000 --- a/domains/gamew.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "Faris0520", - "email": "faris.6dsdiaf@gmail.com" - }, - - "record": { - "CNAME": "9cd7facc-4323-4816-a7df-1e254a393fb7.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/gamingboots.json b/domains/gamingboots.json index 9e892ff7b..7cefa2149 100644 --- a/domains/gamingboots.json +++ b/domains/gamingboots.json @@ -1,11 +1,11 @@ -{ - "description": "A description", - "repo": "https://github.com/gamingboots/gamingboots.github.io", - "owner": { - "username": "gamingboots", - "email": "gamngboots19@gmail.com" - }, - "record": { - "CNAME": "gamingboots.github.io" - } - } \ No newline at end of file +{ + "description": "A description", + "repo": "https://github.com/gamingboots/gamingboots.github.io", + "owner": { + "username": "gamingboots", + "email": "gamngboots19@gmail.com" + }, + "record": { + "CNAME": "gamingboots.github.io" + } +} diff --git a/domains/ganyu.json b/domains/ganyu.json new file mode 100644 index 000000000..f731f2f90 --- /dev/null +++ b/domains/ganyu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "emikohoshi", + "email": "hoangyencb1303@gmail.com" + }, + "record": { + "CNAME": "emikohoshi.github.io" + } +} diff --git a/domains/garden.json b/domains/garden.json deleted file mode 100644 index b7efda5aa..000000000 --- a/domains/garden.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my personal website", - "repo": "https://github.com/nocekek", - "owner": { - "username": "nocekek", - "email": "nocekek.heytherebuddy@gmail.com" - }, - "record": { - "CNAME": "b8642d5b-1564-4bcd-aa54-03228a9b8d96.id.repl.co" - } -} diff --git a/domains/garlic-os.json b/domains/garlic-os.json deleted file mode 100644 index b8ad22f5d..000000000 --- a/domains/garlic-os.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "garlicOS®'s is-a.dev domain", - "repo": "https://github.com/garlic-os/garlic-os.github.io", - "owner": { - "username": "garlic-os", - "email": "sisdfk@gmail.com" - }, - "record": { - "CNAME": "garlic-os.github.io" - } -} diff --git a/domains/gassayping.json b/domains/gassayping.json new file mode 100644 index 000000000..f83e483bd --- /dev/null +++ b/domains/gassayping.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gassayping", + "email": "Dev_Gassayping@proton.me" + }, + "record": { + "CNAME": "gassayping.github.io" + } +} diff --git a/domains/gattinhosbot.json b/domains/gattinhosbot.json new file mode 100644 index 000000000..585daafbd --- /dev/null +++ b/domains/gattinhosbot.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "A": ["194.60.201.37"], + "MX": ["mail.stefdp.lol"], + "TXT": ["v=spf1 mx ~all"] + } +} diff --git a/domains/gauravgupta.json b/domains/gauravgupta.json new file mode 100644 index 000000000..571c2edf5 --- /dev/null +++ b/domains/gauravgupta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gauravgupta256", + "email": "gauravgupta8652@gmail.com" + }, + "record": { + "CNAME": "gauravgupta.is-a.dev" + } +} diff --git a/domains/gauravguptaa.json b/domains/gauravguptaa.json new file mode 100644 index 000000000..2bf6ebe5f --- /dev/null +++ b/domains/gauravguptaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gauravgupta256", + "email": "gauravgupta8652@gmail.com" + }, + "record": { + "CNAME": "portfolio-gaurav.onrender.com" + } +} diff --git a/domains/gauravkulkarni.json b/domains/gauravkulkarni.json index 8f9de0d37..69e78b785 100644 --- a/domains/gauravkulkarni.json +++ b/domains/gauravkulkarni.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "gkulk007", + "email": "gaurav.kulkarni@mescoeorg.onmicrosoft.com" + }, - { - "owner": { - "username": "gkulk007", - "email": "gaurav.kulkarni@mescoeorg.onmicrosoft.com" - }, - - "record": { - "CNAME": "gkulk007.github.io" - } - } - + "record": { + "CNAME": "gkulk007.github.io" + } +} diff --git a/domains/gautam.json b/domains/gautam.json deleted file mode 100644 index 45204e0e0..000000000 --- a/domains/gautam.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "GautamMKGarg", - "email": "", - "twitter": "GautamMKGarg" - }, - "record": { - "URL": "https://www.fiverr.com/gautammkgarg" - } -} diff --git a/domains/gautham.json b/domains/gautham.json new file mode 100644 index 000000000..c92fc406a --- /dev/null +++ b/domains/gautham.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "inkilu", + "email": "gauthamgkm@gmail.com" + }, + "record": { + "CNAME": "inkilu.is-a.dev" + } +} diff --git a/domains/gavingogaming.json b/domains/gavingogaming.json new file mode 100644 index 000000000..f83cb478c --- /dev/null +++ b/domains/gavingogaming.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "GavinGoGaming", + "email": "gavingogaming@gmail.com" + }, + + "record": { + "CNAME": "gavingogaming.github.io" + } +} diff --git a/domains/gavinw.json b/domains/gavinw.json deleted file mode 100644 index 11207fc14..000000000 --- a/domains/gavinw.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "repo": "https://github.com/gavinwhite314/gavinwhite.net", - "owner": { - "username": "gavinwhite314", - "email": "gavinwhite314@gmail.com" - }, - "record": { - "URL": "https://www.gavinwhite.net" - } -} diff --git a/domains/gbot.json b/domains/gbot.json new file mode 100644 index 000000000..30f429663 --- /dev/null +++ b/domains/gbot.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/gdbotlist.json b/domains/gdbotlist.json index aae9e4df4..d0ca499b2 100644 --- a/domains/gdbotlist.json +++ b/domains/gdbotlist.json @@ -1,9 +1,9 @@ -{ - "owner": { - "username": "coolsausage45", - "email": "hakekr27@gmail.com" - }, - "record": { - "CNAME": "coolsausage45.github.io" - } -} +{ + "owner": { + "username": "coolsausage45", + "email": "hakekr27@gmail.com" + }, + "record": { + "CNAME": "coolsausage45.github.io" + } +} diff --git a/domains/gee.json b/domains/gee.json new file mode 100644 index 000000000..cc38849dd --- /dev/null +++ b/domains/gee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "geedoes", + "email": "captg1@gmail.com" + }, + "record": { + "A": ["207.211.187.18"] + } +} diff --git a/domains/geenzo.json b/domains/geenzo.json new file mode 100644 index 000000000..b873b54ff --- /dev/null +++ b/domains/geenzo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "geenzo69", + "email": "geenzogamer164@gmail.com" + }, + "record": { + "CNAME": "server.geenzo.eu.org" + } +} diff --git a/domains/gen1x.json b/domains/gen1x.json new file mode 100644 index 000000000..44a6243f4 --- /dev/null +++ b/domains/gen1x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gen1x-ALT", + "email": "theg1nx@hotmail.com" + }, + "record": { + "CNAME": "gen1x-alt.github.io" + } +} diff --git a/domains/georgee.json b/domains/georgee.json deleted file mode 100644 index 56d01beae..000000000 --- a/domains/georgee.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Georgee1337", - - "email": "contact@georgexv.ru" - }, - "record": { - "URL": "https://georgexv.ru" - } -} \ No newline at end of file diff --git a/domains/geostatic.json b/domains/geostatic.json new file mode 100644 index 000000000..b680eb1e7 --- /dev/null +++ b/domains/geostatic.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Jkingwalagam", + "email": "", + "discord": "1100459863592685640" + }, + + "record": { + "CNAME": "geostatic-github-io.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/gerick.json b/domains/gerick.json new file mode 100644 index 000000000..b49b49645 --- /dev/null +++ b/domains/gerick.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gerickpogi17", + "email": "gymatibag17@gmail.com" + }, + "record": { + "CNAME": "portfolio-3a9.pages.dev" + } +} diff --git a/domains/germanfoxdev.json b/domains/germanfoxdev.json new file mode 100644 index 000000000..1da947c10 --- /dev/null +++ b/domains/germanfoxdev.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "GermanFoxDev", + "email": "", + "discord": "1073620716152434830", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.GsPN4QZJZ53Om9rp-MBka8t2OeY-ev1xFBEei9DSRGEJDSVKR23x6xYuT4a1nfAhV0dgUi_WFIm-vGwF-oHkKEcGZo8nr-zH_hwR2HxnmfmBs6qUEKhpIeTQYx34Ws0B3n36aNk6odCO2Tz0LgtIr6bwq8WgAa985WD0_secI4WHCodhXMfAMZttW_kZT109B8iBq-3rjhjMWG1Xcix9mvUkbUREF17oIK0G70QlmEFvLOxp5rSg1SfHWZ251oOnIqfqrZ90_OHk9FVNDKex4OwCt7klesABNi0v8V7wWVhKlHgtojhdHY-oz87_YCz7orLcMpCxwmuCFJtLFEmlZw.IVb7t0DdLgHkH_YFU0vnyg.r9q1gsR3Uw33QGFExZZad6NNiyuO8YFEXPvX-OmhHw8TTVZkT9F0wUAJrSK7pGM3jf0-GnBlV6LTOcC-M20bdaOjTJK2ytnxRYG4Uk3pYOg.U6vvLC1-IjAWWDFFIKKAVA" + }, + + "record": { + "CNAME": "germanfoxdev.github.io" + } + } + \ No newline at end of file diff --git a/domains/gg.6.json b/domains/gg.6.json new file mode 100644 index 000000000..ff9db082d --- /dev/null +++ b/domains/gg.6.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "URL": "https://gg.shockbs.is-a.dev/" + } +} diff --git a/domains/gg.shockbs.json b/domains/gg.shockbs.json new file mode 100644 index 000000000..6d2da5cca --- /dev/null +++ b/domains/gg.shockbs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "CNAME": "ziplineshockbs.onrender.com" + } +} diff --git a/domains/gggedr.json b/domains/gggedr.json deleted file mode 100644 index 72318ef10..000000000 --- a/domains/gggedr.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Vladimir-Urik", - "email": "gggedr@protonmail.com" - }, - "record": { - "URL": "https://gggedr.lol" - } - } - \ No newline at end of file diff --git a/domains/ghost.json b/domains/ghost.json index d931c1561..b8a0d56b8 100644 --- a/domains/ghost.json +++ b/domains/ghost.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "ghostdevv", - "email": "ghostdevbusiness@gmail.com", - "twitter": "onlyspaceghost" - }, - "repo": "https://github.com/ghostdevv/website", - "record": { - "URL": "https://ghostdev.xyz" - } - } \ No newline at end of file + "owner": { + "username": "ghostdevv", + "email": "ghostdevbusiness@gmail.com", + "twitter": "onlyspaceghost" + }, + "repo": "https://github.com/ghostdevv/website", + "record": { + "URL": "https://ghostdev.xyz" + } +} diff --git a/domains/ghostyt.json b/domains/ghostyt.json deleted file mode 100644 index f7e3df026..000000000 --- a/domains/ghostyt.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "GhostYT's dev project", - "repo": "https://github.com/GhostYTOP/register", - "owner": { - "username": "ghostyt", - "email": "contact@ghostyt.ml" - }, - "record": { - "CNAME": "231ec778-e250-4867-a82d-be63c233196e.repl.co" - } -} diff --git a/domains/giahuy.json b/domains/giahuy.json new file mode 100644 index 000000000..433c7d5c2 --- /dev/null +++ b/domains/giahuy.json @@ -0,0 +1,13 @@ +{ + "description": "I Make the Worst Discord Bot on Earth", + "repo": "https://github.com/mtheintrude23/register", + "owner": { + "username": "mtheintrude23", + "email": "hostbotfree@gmail.com", + "discord": "1219514896778133594" +}, + + "record": { + "CNAME": "mtheintrude23.github.io" + } +} diff --git a/domains/gicorada.json b/domains/gicorada.json new file mode 100644 index 000000000..b4fa19a54 --- /dev/null +++ b/domains/gicorada.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "gicorada", + "email": "51818710+gicorada@users.noreply.github.com", + "discord": "607903753831448626" + }, + + "record": { + "CNAME": "gicorada.netlify.app" + } + } + diff --git a/domains/gilad.json b/domains/gilad.json deleted file mode 100644 index 74943c518..000000000 --- a/domains/gilad.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Gilad's personal developer website", - "owner": { - "username": "gilade", - "email": "gilad@eventov.com" - }, - "record": { - "CNAME": "gilad.ninja" - } -} diff --git a/domains/gingdev.json b/domains/gingdev.json deleted file mode 100644 index 8131f54e5..000000000 --- a/domains/gingdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Gingdev personal developer website", - "repo": "https://github.com/ging-dev", - "owner": { - "username": "ging-dev", - "email": "gingdz11012001@gmail.com" - }, - "record": { - "A": ["192.243.108.102"] - } -} diff --git a/domains/gioco.json b/domains/gioco.json new file mode 100644 index 000000000..4aa120c8c --- /dev/null +++ b/domains/gioco.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "giocoliere", + "email": "simcrigjeki@gmail.com" + }, + "record": { + "CNAME": "giocoliere.github.io" + } +} diff --git a/domains/giovanni.json b/domains/giovanni.json index 619598703..e86dabacc 100644 --- a/domains/giovanni.json +++ b/domains/giovanni.json @@ -1,13 +1,13 @@ { - "owner": { - "username": "ItachiSan", - "email": "giovannisantini93@yahoo.it", - "twitter": "santini__gio", - "discord": "ItachiSan#2408" - }, - "description": "is-a.dev subdomain for my personal blog", - "repo": "https://github.com/ItachiSan/itachisan.github.io", - "record": { - "CNAME": "itachisan.github.io" - } + "owner": { + "username": "ItachiSan", + "email": "giovannisantini93@yahoo.it", + "twitter": "santini__gio", + "discord": "ItachiSan#2408" + }, + "description": "is-a.dev subdomain for my personal blog", + "repo": "https://github.com/ItachiSan/itachisan.github.io", + "record": { + "CNAME": "itachisan.github.io" + } } diff --git a/domains/giovstechs.json b/domains/giovstechs.json new file mode 100644 index 000000000..cbfae4fe9 --- /dev/null +++ b/domains/giovstechs.json @@ -0,0 +1,11 @@ +{ + "description": "GiovsTechs' Website", + "repo": "https://github.com/GiovsTech/Website", + "owner": { + "username": "giovstechs", + "email": "me@gianstech.it" + }, + "record": { + "URL": "https://links.gianstech.it" + } +} diff --git a/domains/git.maskduck.json b/domains/git.maskduck.json deleted file mode 100644 index f93d4f10e..000000000 --- a/domains/git.maskduck.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my git repos", - "owner": { - "username": "MaskDuck", - "email": "maskduckuwu@gmail.com", - "discord": "MaskDuck#7325" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } -} diff --git a/domains/gitcat3.json b/domains/gitcat3.json index 719566969..7de93032d 100644 --- a/domains/gitcat3.json +++ b/domains/gitcat3.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "GitCat3", - "email": "hulkbuster119@gmail.com" - }, - "record": { - "CNAME": "gitcat3.github.io" - } - } - +{ + "owner": { + "username": "GitCat3", + "email": "hulkbuster119@gmail.com" + }, + "record": { + "CNAME": "gitcat3.github.io" + } +} diff --git a/domains/gitea.vinceale7082.json b/domains/gitea.vinceale7082.json new file mode 100644 index 000000000..64ad9a8f8 --- /dev/null +++ b/domains/gitea.vinceale7082.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "VinceAle7082", + "email": "vinceale7082@gmail.com", + "discord": "1078447459900063816", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + }, + + "record": { + "A": ["37.183.129.150"] + } +} diff --git a/domains/github.json b/domains/github.json new file mode 100644 index 000000000..e2c8dec17 --- /dev/null +++ b/domains/github.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/gitninja.json b/domains/gitninja.json new file mode 100644 index 000000000..787ed3d21 --- /dev/null +++ b/domains/gitninja.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + "record": { + "CNAME": "roktim32.github.io" + } +} diff --git a/domains/givinghawk.json b/domains/givinghawk.json index 26b632d07..cee5d6e30 100644 --- a/domains/givinghawk.json +++ b/domains/givinghawk.json @@ -1,11 +1,9 @@ { - "description": "My is-a.dev cname record", - "repo": "https://github.com/givinghawk", "owner": { "username": "givinghawk", - "email": "gh@givinghawk.xyz" + "email": "contact@givinghawk.dev" }, "record": { - "URL": "https://givinghawk.xyz" + "URL": "https://givinghawk.dev/" } } diff --git a/domains/gizmora2.json b/domains/gizmora2.json index 49b5f88b2..4af138881 100644 --- a/domains/gizmora2.json +++ b/domains/gizmora2.json @@ -1,12 +1,12 @@ -{ - "description": "Personal developer profile/blog", - "repo": "https://github.com/GizmoRA2/me", - "owner": { - "username": "GizmoRA2", - "email": "gizmora2@gmail.com" - }, - "record": { - "A": ["125.236.202.192"], - "MX": ["mx.nwh.nz"] - } -} +{ + "description": "Personal developer profile/blog", + "repo": "https://github.com/GizmoRA2/me", + "owner": { + "username": "GizmoRA2", + "email": "gizmora2@gmail.com" + }, + "record": { + "A": ["125.236.202.192"], + "MX": ["mx.nwh.nz"] + } +} diff --git a/domains/gizzy.json b/domains/gizzy.json index d38ee02f2..1f7e4844d 100644 --- a/domains/gizzy.json +++ b/domains/gizzy.json @@ -1,12 +1,27 @@ - - { - "owner": { - "username": "NeroGizmoUwU", - "email": "minecraftcoolglibchannel@gmail.com" - }, - - "record": { - "CNAME": "nero-pi.duckdns.org" - } - } - \ No newline at end of file +{ + "description": "gizzy.is-a.dev", + "owner": { + "username": "GizzyUwU", + "email": "nerop455@gmail.com", + "discord": "gizzyowo" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=nerop455@gmail.com" + } +} diff --git a/domains/gizzygizmo.json b/domains/gizzygizmo.json deleted file mode 100644 index 124bc1894..000000000 --- a/domains/gizzygizmo.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "NeroGizmoUwU", - "email": "minecraftcoolglibchannel@gmail.com" - }, - "record": { - "CNAME": "nero-pi.duckdns.org" - } - } - diff --git a/domains/glitchblog.mrdev88.json b/domains/glitchblog.mrdev88.json new file mode 100644 index 000000000..e5e88e486 --- /dev/null +++ b/domains/glitchblog.mrdev88.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mrdev88", + "email": "RuizMahdi@gmx.com" + }, + "record": { + "CNAME": "1nw25jjg5f4id14j87.fastly-validations.com" + } +} diff --git a/domains/glncy.json b/domains/glncy.json index 967068076..0f28f6f3a 100644 --- a/domains/glncy.json +++ b/domains/glncy.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "glncy", + "email": "glency.a.tirao@gmail.com" + }, - { - "owner": { - "username": "glncy", - "email": "glency.a.tirao@gmail.com" - }, - - "record": { - "CNAME": "glncy.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "glncy.github.io" + } +} diff --git a/domains/glomdom.json b/domains/glomdom.json new file mode 100644 index 000000000..d723af08f --- /dev/null +++ b/domains/glomdom.json @@ -0,0 +1,11 @@ +{ + "description": "projects", + "repo": "https://github.com/glomdom/glomdom.github.io", + "owner": { + "username": "glomdom", + "email": "22115@uktc-bg.com" + }, + "record": { + "CNAME": "glomdom.github.io" + } +} diff --git a/domains/go.avasthi.json b/domains/go.avasthi.json deleted file mode 100644 index 89158a2ce..000000000 --- a/domains/go.avasthi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "avasthi-git", - "email": "", - "telegram": "avasthie" - }, - - "record": { - "CNAME": "cname.short.io" - } -} diff --git a/domains/go.fran.json b/domains/go.fran.json new file mode 100644 index 000000000..f7eb1fe3c --- /dev/null +++ b/domains/go.fran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xzonix", + "email": "imahalojigi@gmail.com" + }, + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/god.json b/domains/god.json deleted file mode 100644 index 072d75ada..000000000 --- a/domains/god.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Austin's personal developer website", - "repo": "https://github.com/austindyoung", - "owner": { - "username": "austindyoung", - "email": "austin@doesweb.dev" - }, - "record": { - "URL": "https://austindyoung.github.io" - } -} diff --git a/domains/godwhitelight.json b/domains/godwhitelight.json index d5d97b1ee..4bdf142a7 100644 --- a/domains/godwhitelight.json +++ b/domains/godwhitelight.json @@ -1,10 +1,13 @@ { - "owner": { - "username": "Godwhitelight", - "email": "godwhitelight1@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "Godwhitelight", + "email": "godwhitelight1@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/godwin.json b/domains/godwin.json deleted file mode 100644 index abf90fd6b..000000000 --- a/domains/godwin.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "gpproton", - "email": "me@godwin.dev" - }, - - "record": { - "CNAME": "godwin.dev" - } - } - \ No newline at end of file diff --git a/domains/goel.json b/domains/goel.json new file mode 100644 index 000000000..52be8f609 --- /dev/null +++ b/domains/goel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "radhesh1", + "email": "radhesh036916@gmail.com", + "discord": "datpep" + }, + "description": "I'll probably put some project pages on goel.is-a.dev.", + "record": { + "CNAME": "radhesh.eu.org" + } +} diff --git a/domains/goguardian.json b/domains/goguardian.json new file mode 100644 index 000000000..d3b46a0d5 --- /dev/null +++ b/domains/goguardian.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mg0the0goat0", + "email": "golden_mooooooon@outlook.com", + "discord": "1160256967504318576" + }, + + "record": { + "CNAME": "loooooooooooooooool.onrender.com" + } +} diff --git a/domains/gokcin.json b/domains/gokcin.json new file mode 100644 index 000000000..70f914718 --- /dev/null +++ b/domains/gokcin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gokcinosman", + "email": "osmangokcinn@gmail.com" + }, + "record": { + "CNAME": "gokcinosman.github.io" + } +} diff --git a/domains/gokulbarath.json b/domains/gokulbarath.json new file mode 100644 index 000000000..d132d6686 --- /dev/null +++ b/domains/gokulbarath.json @@ -0,0 +1,12 @@ +{ + "description": "my personal website ", + "repo": "https://github.com/gokul6350/gokul6350.github.io", + "owner": { + "username": "gokul6350", + "email": "gokul00060@gmail.com", + "twitter": "gokul00060" + }, + "record": { + "CNAME": "gokul6350.github.io" + } +} diff --git a/domains/golden.json b/domains/golden.json new file mode 100644 index 000000000..738160392 --- /dev/null +++ b/domains/golden.json @@ -0,0 +1,13 @@ +{ + "description": "Golden's Public Site", + "repo": "https://github.com/goldenboys2011/goldenboys2011.github.io", + "owner": { + "username": "goldenboys2011", + "email": "ody.chryssos@gmail.com", + "discord": "936320442594103307" + }, + + "record": { + "CNAME": "goldenboys2011.github.io" + } +} diff --git a/domains/gonpvp.json b/domains/gonpvp.json new file mode 100644 index 000000000..88da900d0 --- /dev/null +++ b/domains/gonpvp.json @@ -0,0 +1,10 @@ +{ + "description": "Gonpvp page website", + "owner": { + "username": "iammehdib", + "email": "iammehdib@protonmail.com" + }, + "record": { + "URL": "https://perpetual-fire-672.notion.site/Universal-Doc-GonPvP-eea1f497b07d4758a7daa4c044325378" + } +} diff --git a/domains/goobsoder.json b/domains/goobsoder.json new file mode 100644 index 000000000..91c1726e1 --- /dev/null +++ b/domains/goobsoder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BreadGhoti", + "email": "breadghoti@gmail.com" + }, + "record": { + "A": ["134.56.183.128"] + } +} diff --git a/domains/goon.json b/domains/goon.json deleted file mode 100644 index c38d7fca5..000000000 --- a/domains/goon.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "realGoonDev", - "email": "goondev@clia.tk", - "discord": "realGoon#5656" - }, - "record": { - "A": ["38.242.146.64"] - } -} diff --git a/domains/gooplancton.json b/domains/gooplancton.json new file mode 100644 index 000000000..51a939c92 --- /dev/null +++ b/domains/gooplancton.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gooplancton", + "email": "gooplancton@outlook.com" + }, + "record": { + "A": ["93.93.117.164"] + } +} diff --git a/domains/gopal.json b/domains/gopal.json new file mode 100644 index 000000000..a36908583 --- /dev/null +++ b/domains/gopal.json @@ -0,0 +1,11 @@ +{ + "description": "Gopal's Portfolio website", + "repo": "https://github.com/Gopal0Gupta/gopal0gupta.github.io", + "owner": { + "username": "gopal0gupta", + "email": "k7523337@gmail.com" + }, + "record": { + "CNAME": "gopal0gupta.github.io" + } +} diff --git a/domains/gornostay25.json b/domains/gornostay25.json deleted file mode 100644 index 844338a40..000000000 --- a/domains/gornostay25.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "owner": { - "username": "gornostay25", - "email": "me@gornostay25.is-a.dev" - }, - "record": { - "A":[ - "172.66.46.227", - "172.66.45.29" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all", - "MX":[ - "mx1.improvmx.com", - "mx2.improvmx.com" - ] - } -} diff --git a/domains/gourav.json b/domains/gourav.json new file mode 100644 index 000000000..bd817ca37 --- /dev/null +++ b/domains/gourav.json @@ -0,0 +1,12 @@ +{ + "description": "Domain for my potfolio website", + "repo": "https://github.com/darkdevil3610/portfolio", + "owner": { + "username": "darkdevil3610", + "email": "herokugourav@gmail.com", + "twitter": "gourav3609" + }, + "record": { + "CNAME": "darkdevil3610.github.io" + } +} diff --git a/domains/gouthamkrishnakv.json b/domains/gouthamkrishnakv.json new file mode 100644 index 000000000..c4dc620df --- /dev/null +++ b/domains/gouthamkrishnakv.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "gouthamkrishnakv", + "email": "gauthamkrishna9991@live.com" + }, + + "record": { + "URL": "https://gouthamkrishnakv.pages.dev" + } +} diff --git a/domains/goyal.json b/domains/goyal.json new file mode 100644 index 000000000..5d64d8d7f --- /dev/null +++ b/domains/goyal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dgbkn", + "email": "anandrambkn@gmail.com", + "discord": "somegumtank" + }, + "description": "I'll probably put some project pages on goyal.is-a.dev.", + "record": { + "CNAME": "portfolio-4wd.pages.dev" + } +} diff --git a/domains/grafaffel.json b/domains/grafaffel.json new file mode 100644 index 000000000..bc5332c78 --- /dev/null +++ b/domains/grafaffel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Grafaffel", + "email": "jannis107@icloud.com" + }, + "record": { + "CNAME": "grafaffel.github.io" + } +} diff --git a/domains/grantcards.json b/domains/grantcards.json new file mode 100644 index 000000000..a38c663e5 --- /dev/null +++ b/domains/grantcards.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "calvgrant", + "email": "alvinnobeltungga@gmail.com" + }, + "record": { + "CNAME": "calvgrant.github.io" + } +} diff --git a/domains/grapeapplefruit.json b/domains/grapeapplefruit.json index 6a4ce5fbb..db8e0dd64 100644 --- a/domains/grapeapplefruit.json +++ b/domains/grapeapplefruit.json @@ -8,4 +8,4 @@ "record": { "CNAME": "grapeapplefruit.github.io" } -} \ No newline at end of file +} diff --git a/domains/graphica.json b/domains/graphica.json new file mode 100644 index 000000000..db249ca4d --- /dev/null +++ b/domains/graphica.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "booktastic1", + "email": "booktastic-library@outlook.com" + }, + "record": { + "URL": "https://btastic.wixsite.com/graphica" + } +} diff --git a/domains/graphicanow.json b/domains/graphicanow.json new file mode 100644 index 000000000..db249ca4d --- /dev/null +++ b/domains/graphicanow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "booktastic1", + "email": "booktastic-library@outlook.com" + }, + "record": { + "URL": "https://btastic.wixsite.com/graphica" + } +} diff --git a/domains/grif.json b/domains/grif.json index 902587b56..09b7cfdee 100644 --- a/domains/grif.json +++ b/domains/grif.json @@ -2,11 +2,10 @@ "description": "My own hub for everything that I do!", "repo": "https://github.com/GrifTheDev/grifthedev.github.io", "owner": { - "username": "Grif (GrifTheDev on GitHub)", + "username": "GrifTheDev", "email": "tmjeteo3@gmail.com" }, "record": { "CNAME": "grifthedev.github.io" } } - diff --git a/domains/grusio.json b/domains/grusio.json new file mode 100644 index 000000000..c141bf374 --- /dev/null +++ b/domains/grusio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mattiagrusio", + "email": "mattiagrusio@gmail.com" + }, + "record": { + "A": ["2.231.198.113"] + } +} diff --git a/domains/gs.json b/domains/gs.json deleted file mode 100644 index 2a6d68fa1..000000000 --- a/domains/gs.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Gokul's Personal Site", - "repo": "https://github.com/JavaCafe01/javacafe01.github.io", - "owner": { - "username": "JavaCafe01", - "email": "", - "twitter": "javacafe01" - }, - "record": { - "CNAME": "javacafe01.github.io" - } -} diff --git a/domains/gstudiosx.json b/domains/gstudiosx.json index 41898195c..5a4f65eb0 100644 --- a/domains/gstudiosx.json +++ b/domains/gstudiosx.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "GStudiosX2", - "email": "ramazanogutlu0@gmail.com" - }, - "record": { - "URL": "https://discord.gg/dV2M2HsH3F" - } - } - +{ + "owner": { + "username": "GStudiosX2", + "email": "ramazanogutlu0@gmail.com" + }, + "record": { + "URL": "https://discord.gg/dV2M2HsH3F" + } +} diff --git a/domains/gta.json b/domains/gta.json new file mode 100644 index 000000000..ac81cd4b3 --- /dev/null +++ b/domains/gta.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "wweziza", + "email": "wweziza@icloud.com", + "discord": "363373226207739904" + }, + + "record": { + "CNAME": "clubroleplay.com" + } +} diff --git a/domains/gtvolk.json b/domains/gtvolk.json new file mode 100644 index 000000000..15e761097 --- /dev/null +++ b/domains/gtvolk.json @@ -0,0 +1,11 @@ +{ + "description": "Link for GTVolk personal site on GitHub pages", + "repo": "https://github.com/GTVolk/gtvolk.github.io", + "owner": { + "username": "GTVolk", + "email": "gtvolk31@gmail.com" + }, + "record": { + "CNAME": "gtvolk.github.io" + } +} diff --git a/domains/gudorlltti.json b/domains/gudorlltti.json new file mode 100644 index 000000000..ac77f69da --- /dev/null +++ b/domains/gudorlltti.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "gudorlltti", + "email": "", + "discord": "849610030431993916" + }, + "record": { + "URL": "https://github.com/gudorlltti/" + } +} diff --git a/domains/guess-who.json b/domains/guess-who.json new file mode 100644 index 000000000..fe125c21b --- /dev/null +++ b/domains/guess-who.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "rayrsn@proton.me" + }, + "record": { + "URL": "https://rayrsn.me/" + } +} diff --git a/domains/guilherme.json b/domains/guilherme.json deleted file mode 100644 index 63e53b548..000000000 --- a/domains/guilherme.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "iiMaxxi", - "email": "iimaxxiguilham@gmail.com" - }, - - "record": { - "URL": "https://eu.dzxdev.repl.co" - } - } - \ No newline at end of file diff --git a/domains/gulu.json b/domains/gulu.json new file mode 100644 index 000000000..c34e5ee0b --- /dev/null +++ b/domains/gulu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "flowiceeos", + "email": "netqian@126.com", + "discord": "899289192729817159" + }, + + "record": { + "A": ["35.212.239.31"] + } +} diff --git a/domains/gunethra.json b/domains/gunethra.json new file mode 100644 index 000000000..aa7904eab --- /dev/null +++ b/domains/gunethra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gunethra", + "email": "gunethrarp1@gmail.com" + }, + "record": { + "URL": "https://gunethra.github.io/" + } +} diff --git a/domains/gunman.json b/domains/gunman.json new file mode 100644 index 000000000..5fb4c3e12 --- /dev/null +++ b/domains/gunman.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MukuJhansi", + "email": "mukundagrawal800@gmail.com", + "discord": "1115658967012626542" + }, + + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/guptagaurav.json b/domains/guptagaurav.json new file mode 100644 index 000000000..2bf6ebe5f --- /dev/null +++ b/domains/guptagaurav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gauravgupta256", + "email": "gauravgupta8652@gmail.com" + }, + "record": { + "CNAME": "portfolio-gaurav.onrender.com" + } +} diff --git a/domains/guptasiddhant.json b/domains/guptasiddhant.json deleted file mode 100644 index 1e55532ec..000000000 --- a/domains/guptasiddhant.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Is Dev domain for Siddhant GUPTA", - "repo": "https://github.com/guptasiddhant/guptasiddhant", - "owner": { - "username": "GuptaSiddhant", - "email": "me@guptasiddhant.com" - }, - "record": { - "URL": "http://guptasiddhant.com" - } -} diff --git a/domains/guru.json b/domains/guru.json new file mode 100644 index 000000000..48356a928 --- /dev/null +++ b/domains/guru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Guru322", + "email": "sahoogurucharan00@gmail.com" + }, + "record": { + "CNAME": "guru322.github.io" + } +} diff --git a/domains/gvl610.json b/domains/gvl610.json new file mode 100644 index 000000000..2f6b2715f --- /dev/null +++ b/domains/gvl610.json @@ -0,0 +1,12 @@ +{ + "description": "Host my Github pages. I don't want giangvinhloc610 but instead just gvl610", + "repo": "https://github.com/giangvinhloc610/giangvinhloc610.github.io", + "owner": { + "username": "gvl610", + "email": "giangvinhloc610@gmail.com", + "twitter": "gvl610" + }, + "record": { + "CNAME": "giangvinhloc610.github.io" + } +} diff --git a/domains/gwada.json b/domains/gwada.json new file mode 100644 index 000000000..1a4a0cf7f --- /dev/null +++ b/domains/gwada.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gwada", + "email": "gwadagwada22@gmail.com" + }, + "record": { + "URL": "https://gwada.netlify.app" + } +} diff --git a/domains/gwilym.json b/domains/gwilym.json new file mode 100644 index 000000000..6b8c5ab77 --- /dev/null +++ b/domains/gwilym.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gwilymm", + "email": "marin.davies@gmail.com" + }, + "record": { + "A": ["31.207.36.249"] + } +} diff --git a/domains/gxlpes.json b/domains/gxlpes.json index bdd53a9e8..a7821d2bf 100644 --- a/domains/gxlpes.json +++ b/domains/gxlpes.json @@ -1,12 +1,11 @@ { - "description": "Website portfolio", - "repo": "https://github.com/gxlpes/gxlpes.github.io", - "owner": { - "username": "gxlpes", - "email": "guilhermxlopes@gmail.com" - - }, - "record": { - "CNAME": "gxlpes.github.io" - } -} + "description": "Website portfolio", + "repo": "https://github.com/gxlpes/gxlpes.github.io", + "owner": { + "username": "gxlpes", + "email": "guilhermxlopes@gmail.com" + }, + "record": { + "CNAME": "gxlpes.github.io" + } +} diff --git a/domains/h1roune.json b/domains/h1roune.json new file mode 100644 index 000000000..407a2a91f --- /dev/null +++ b/domains/h1roune.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqi.is-a.dev" + } +} diff --git a/domains/h3ja.json b/domains/h3ja.json new file mode 100644 index 000000000..67594ca7e --- /dev/null +++ b/domains/h3ja.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hejagithub", + "email": "tyjtyjyhjklt@gmail.com", + "discord": "540167556443406338" + }, + + "record": { + "CNAME": "hejagithub.github.io" + } +} diff --git a/domains/h3l.json b/domains/h3l.json new file mode 100644 index 000000000..f131f3af8 --- /dev/null +++ b/domains/h3l.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "gvalue-04", + "email": "vaporvault04@gmail.com", + "discord": "1229820339840618506" + }, + + "record": { + "A": ["69.197.135.202"] + } + } + \ No newline at end of file diff --git a/domains/habeel.json b/domains/habeel.json new file mode 100644 index 000000000..e1cbb3688 --- /dev/null +++ b/domains/habeel.json @@ -0,0 +1,12 @@ +{ + "description": "For my personal website", + "repo": "https://github.com/Habeel06/Habeel06.github.io", + "owner": { + "username": "Habeel06", + "email": "mirhabeelahmad06@gmail.com", + "twitter": "habeel_06" + }, + "record": { + "CNAME": "Habeel06.github.io" + } +} diff --git a/domains/habib.json b/domains/habib.json new file mode 100644 index 000000000..407fb6678 --- /dev/null +++ b/domains/habib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HabibMollah", + "email": "habib.prodev@gmail.com" + }, + "record": { + "URL": "https://mollah.vercel.app" + } +} diff --git a/domains/hachi.json b/domains/hachi.json deleted file mode 100644 index dc63fe90f..000000000 --- a/domains/hachi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A programming language website", - "repo": "https://github.com/HACHILANG/Hachi", - "owner": { - "username": "HACHILANG", - "email": "shlokmadhekar88@gmail.com" - }, - "record": { - "CNAME": "b949abf7-5e07-4890-a7db-1206fad92121.repl.co" - } -} diff --git a/domains/hachiro.json b/domains/hachiro.json new file mode 100644 index 000000000..d08401bd2 --- /dev/null +++ b/domains/hachiro.json @@ -0,0 +1,12 @@ +{ + "description": "Redirects to my freind's roblox pfp (temp)", + "repo": "https://github.com/bananalolok/register", + "owner": { + "username": "bananalolok", + "discord": "banana_lol_7678", + "email": "" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/hackerhawks.json b/domains/hackerhawks.json new file mode 100644 index 000000000..5b51f3b2d --- /dev/null +++ b/domains/hackerhawks.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "HackerHawks", + "email": "robohawks.dev@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/hackerman.json b/domains/hackerman.json new file mode 100644 index 000000000..c5ba0bfbe --- /dev/null +++ b/domains/hackerman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AviDevs31", + "email": "josealbertotaverazz@gmail.com" + }, + "record": { + "CNAME": "avidevs31.github.io" + } +} diff --git a/domains/hackqd.json b/domains/hackqd.json new file mode 100644 index 000000000..6bc511def --- /dev/null +++ b/domains/hackqd.json @@ -0,0 +1,12 @@ +{ + "description": "personal website", + "repo": "https://github.com/hackqd/hackqd.github.io", + "owner": { + "username": "hackqd", + "email": "hackqdftw@gmail.com", + "twitter": "" + }, + "record": { + "CNAME": "hackqd.github.io" + } +} diff --git a/domains/haco.json b/domains/haco.json new file mode 100644 index 000000000..34d6b4116 --- /dev/null +++ b/domains/haco.json @@ -0,0 +1,12 @@ +{ + "description": "haco.is-a.dev", + "repo": "https://github.com/MRHACO/Haco-Main-Website", + "owner": { + "username": "MRHACO", + "email": "jasonytonlinecomeandsee@gmail.com", + "discord": "ACO#8888" + }, + "record": { + "URL": "https://www.haco.tw" + } +} diff --git a/domains/hadi.json b/domains/hadi.json deleted file mode 100644 index eaad5f94d..000000000 --- a/domains/hadi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Nystrex's Personal Website", - "repo": "https://github.com/Nystrex", - "owner": { - "username": "Nystrex", - "email": "hadi@nystrex.com" - }, - "record": { - "CNAME": "nystrex.com" - } -} diff --git a/domains/hafi.json b/domains/hafi.json new file mode 100644 index 000000000..01d83a4c1 --- /dev/null +++ b/domains/hafi.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "HafiTheCat", + "email": "", + "discord": "hafi_the_cat" + }, + "description": "Website about about me", + "repo": "https://github.com/HafiTheCat/hafi_the_cat.github.io", + "record": { + "CNAME": "hafithecat.github.io" + } +} diff --git a/domains/hafidu.json b/domains/hafidu.json index ffd37649d..3524d958e 100644 --- a/domains/hafidu.json +++ b/domains/hafidu.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "hafidu", + "email": "mochammad.hafidu@gmail.com" + }, - { - "owner": { - "username": "hafidu", - "email": "mochammad.hafidu@gmail.com" - }, - - "record": { - "CNAME": "hafidu.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "hafidu.github.io" + } +} diff --git a/domains/haizad.json b/domains/haizad.json new file mode 100644 index 000000000..da4de8962 --- /dev/null +++ b/domains/haizad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "haizad", + "email": "haizadannuar@gmail.com" + }, + "record": { + "CNAME": "haizad.github.io" + } +} diff --git a/domains/halil.json b/domains/halil.json new file mode 100644 index 000000000..edded22c0 --- /dev/null +++ b/domains/halil.json @@ -0,0 +1,13 @@ +{ + "description": "portfolio", + "repo": "https://github.com/halil-dll/halil-dll.github.io", + "owner": { + "username": "halil-dll", + "email": "halil@pissmail.com" + }, + "record": { + "A": [ + "173.249.45.163" + ] + } +} diff --git a/domains/hamza.json b/domains/hamza.json index 930529215..39f8e98d8 100644 --- a/domains/hamza.json +++ b/domains/hamza.json @@ -1,11 +1,10 @@ { - "description": "Hamza's website", + "description": "Hamza's website", "owner": { "username": "hamza8bit", "email": "hamzabyte@gmail.com" }, "record": { "CNAME": "hamza8bit.github.io" - } } diff --git a/domains/hanchow.json b/domains/hanchow.json new file mode 100644 index 000000000..d569d6099 --- /dev/null +++ b/domains/hanchow.json @@ -0,0 +1,12 @@ +{ + "description": "This subdomain is used for my personal tech writing blog.", + "repo": "https://github.com/zhhlmr/zhhlmr.github.io", + "owner": { + "username": "zhhlmr", + "email": "zhouhan199132@gmail.com", + "twitter": "zhhlmr" + }, + "record": { + "CNAME": "zhhlmr.github.io" + } +} diff --git a/domains/hans0805.json b/domains/hans0805.json new file mode 100644 index 000000000..fceee36db --- /dev/null +++ b/domains/hans0805.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HansHans135", + "email": "ccoccc14@gmail.com" + }, + "record": { + "CNAME": "hans0805.me" + } +} diff --git a/domains/hansana.json b/domains/hansana.json new file mode 100644 index 000000000..40d9f9eb5 --- /dev/null +++ b/domains/hansana.json @@ -0,0 +1,30 @@ +{ + "description": "Hansana's Portfolio", + "repo": "https://github.com/DevHanza/hansana.is-a.dev", + "owner": { + "username": "DevHanza", + "email": "josephandrew1@logicstreak.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all", + "google-site-verification=lZt0feu9wVw9QCyB_j0ylLB2JcMaW33ZMQ6T-rEaV_k" + ] + } +} diff --git a/domains/hardik-chandan.json b/domains/hardik-chandan.json index a74b2cc5e..9bb4163eb 100644 --- a/domains/hardik-chandan.json +++ b/domains/hardik-chandan.json @@ -1,11 +1,11 @@ -{ - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/hardik-chandan/hardik-chandan.github.io", - "owner": { - "username": "hardik-chandan", - "email": "hardikchandan4231@gmail.com" - }, - "record": { - "CNAME": "hardik-chandan.github.io" - } -} +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/hardik-chandan/hardik-chandan.github.io", + "owner": { + "username": "hardik-chandan", + "email": "hardikchandan4231@gmail.com" + }, + "record": { + "CNAME": "hardik-chandan.github.io" + } +} diff --git a/domains/hardik.json b/domains/hardik.json new file mode 100644 index 000000000..315d5dcae --- /dev/null +++ b/domains/hardik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hardikanand1st", + "email": "Hardikanand1st@outlook.com" + }, + "record": { + "A": ["162.254.35.62"] + } +} diff --git a/domains/hari.json b/domains/hari.json index 734c27d29..68ae0f3ec 100644 --- a/domains/hari.json +++ b/domains/hari.json @@ -1,11 +1,11 @@ { "description": "Hari's portfolio", - "repo": "https://github.com/Haritronic909/Haritronic909.github.io", + "repo": "https://github.com/harishnkr/harishnkr.github.io", "owner": { - "username": "Haritronic909", + "username": "harishnkr", "email": "hari2menon1234@gmail.com" }, "record": { - "CNAME": "haritronic909.github.io" + "CNAME": "harishnkr.github.io" } } diff --git a/domains/haridarshan.json b/domains/haridarshan.json new file mode 100644 index 000000000..fc78904ad --- /dev/null +++ b/domains/haridarshan.json @@ -0,0 +1,11 @@ +{ + "description": "haridarshan.is-a.dev, for my portfolio", + "repo": "https://github.com/hdck007/me", + "owner": { + "username": "hdck007", + "email": "" + }, + "record": { + "URL": "https://haridarshan.vercel.app" + } +} diff --git a/domains/haris.json b/domains/haris.json deleted file mode 100644 index 02fcfc195..000000000 --- a/domains/haris.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "HarisETH", - "email": "hariskumar.eth@gmail.com" - }, - "record": { - "URL": "https://haris.one" - } -} diff --git a/domains/harish.json b/domains/harish.json deleted file mode 100644 index b26ab72f9..000000000 --- a/domains/harish.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "email": "harishbb168@gmail.com", - "username": "harish" - }, - "description": "My portfolio website", - "repo": "https://github.com/HarishB167/hs-app", - "record": { - "CNAME": "hsapp.onrender.com" - } -} diff --git a/domains/harjakrepp.json b/domains/harjakrepp.json index eeb92ddaf..a8928a67f 100644 --- a/domains/harjakrepp.json +++ b/domains/harjakrepp.json @@ -1,13 +1,13 @@ { - "description": "My personal portofolio", - "repo": "https://github.com/harjakrepp/harjakrepp.github.io", - "owner": { - "username": "Harjakrepp", - "email": "", - "discord": "harjacraft#2385", - "twitter": "harjakrepp" - }, - "record": { - "CNAME": "harjakrepp.github.io" - } + "description": "My personal portofolio", + "repo": "https://github.com/harjakrepp/harjakrepp.github.io", + "owner": { + "username": "Harjakrepp", + "email": "", + "discord": "harjacraft#2385", + "twitter": "harjakrepp" + }, + "record": { + "CNAME": "harjakrepp.github.io" + } } diff --git a/domains/harsh-mehta.json b/domains/harsh-mehta.json new file mode 100644 index 000000000..422db4b56 --- /dev/null +++ b/domains/harsh-mehta.json @@ -0,0 +1,11 @@ +{ + "description": "harsh-mehta.is-a.dev", + "repo": "https://harsh05dev.github.io/My_Portfolio_2023", + "owner": { + "username": "Harsh05dev", + "email": "harshmehta1505@gmail.com" + }, + "record": { + "CNAME": "harsh05dev.github.io" + } +} diff --git a/domains/harsh.json b/domains/harsh.json new file mode 100644 index 000000000..bf20be117 --- /dev/null +++ b/domains/harsh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Riotly", + "email": "harshskb73@gmail.com" + }, + "record": { + "CNAME": "portfolio-production.onrender.com" + } +} diff --git a/domains/harshad-patoliya.json b/domains/harshad-patoliya.json new file mode 100644 index 000000000..fdbd48e2b --- /dev/null +++ b/domains/harshad-patoliya.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio site.", + "repo": "https://github.com/harshad-patoliya/harshad-patoliya.github.io", + "owner": { + "username": "harshad-patoliya", + "email": "" + }, + "record": { + "CNAME": "harshad-patoliya.github.io" + } +} diff --git a/domains/harshk.json b/domains/harshk.json new file mode 100644 index 000000000..7795dbb6f --- /dev/null +++ b/domains/harshk.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/harshk04/Portfolio_Harsh", + "owner": { + "username": "harshk04", + "email": "kumawatharsh2004@gmail.com" + }, + "record": { + "CNAME": "harshk04.github.io" + } +} diff --git a/domains/harshnj.json b/domains/harshnj.json new file mode 100644 index 000000000..339032802 --- /dev/null +++ b/domains/harshnj.json @@ -0,0 +1,30 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/HarshNarayanJha", + "owner": { + "username": "HarshNarayanJha", + "email": "harshnj@proton.me" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": [ + "forward-email=harshnj@proton.me", + "google-site-verification=Eu4i8iW1vck-KlTEnzPMfyc2WI1sgbYrNeATHJiyds0" + ] + } +} diff --git a/domains/haru.json b/domains/haru.json index e33bd097e..9cd0c21b8 100644 --- a/domains/haru.json +++ b/domains/haru.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "harudev21", - "email": "mizuto.discord@gmail.com" - }, - "record": { - "URL": "https://harudev.vercel.app" - } - } - \ No newline at end of file +{ + "owner": { + "username": "harudev21", + "email": "mizuto.discord@gmail.com" + }, + "record": { + "URL": "https://harudev.vercel.app" + } +} diff --git a/domains/haruki.json b/domains/haruki.json new file mode 100644 index 000000000..bf048f09c --- /dev/null +++ b/domains/haruki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShreyaPrincess", + "email": "shreyasonbusiness@gmail.com" + }, + "record": { + "CNAME": "shreyaprincess.github.io" + } +} diff --git a/domains/harvey.json b/domains/harvey.json new file mode 100644 index 000000000..dcada943b --- /dev/null +++ b/domains/harvey.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "hrv3y", + "email": "", + "discord": "969129892614660096", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.N_k2nKXX-b53o9aozW1ziDfVlbQt-Ja7nDBHnvFk-tNX-yaVmtnzLQOc540D_NWVEj9eac6rZ52VZUp3hQ3I8A9rnsp-zku18sZn1CRgnbIHty4yfWJxen4hHaS3vz0rLsXX_v73kYlG246cBUyvTc-Ps8TRVS-RzLUmQ-M1fT1Gf0lEDeqTHX8z7tsm_mbfCvyOcUrnp5nNLNchkdnflj5FHy_aZWvk_KETNAvfgCkTyl1EQ6u0jQ2UMsokEZ5tS6ze9fUk2X6Tc_ALE_tGEM_zBXLNS3YNngitA8NoNVcs2JZwXzZaf-zNTlN2JLYbYxEgxDbMpbkj7Y8vNmNC3Q.UcFQvuGHFScC6MVnGil7WQ.BOlRX-2b7-aiPOrh7VB8FvydjIlw9KwOiEd4NAuD_xo1GYU4fLcpTWQ3df2MkNa2vt0l85m-va9FgVVjuLQloQ.hvVVPUmPcKh_H4GRlVMO0g" + }, + + "record": { + "CNAME": "hosted.omg.lol" + } + } + \ No newline at end of file diff --git a/domains/hase0278.json b/domains/hase0278.json deleted file mode 100644 index 0bab97c19..000000000 --- a/domains/hase0278.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "hase0278's personal developer website", - "owner": { - "username": "hase0278", - "email": "betterhalf278@gmail.com" - }, - "record": { - "CNAME": "hase0278.epizy.com" - } -} \ No newline at end of file diff --git a/domains/haseeb.json b/domains/haseeb.json new file mode 100644 index 000000000..9c92bf74f --- /dev/null +++ b/domains/haseeb.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Haseebprivate", + "email": "", + "discord": "1207534121052672090", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Jjpio28H9G5rvkKey2fD-IXl4SumfoSVx6WTtNvpcf7_2bKhJzO9AVtcOdhkpdc4p4O9SbdY2CJXY5LjSB5MRO1hVpu1E3XXUiTZOP7bxV9RqGBdNNV8tt3uYsdt4_6KP0_rhDo7OYCxZiz7_WoJRYbPgsE5O47zwCPDzS-DZ68v9te9iLNBRE4Hr2uT8Ua_FTbb0n6pUZBo3r_5jankjxg395JxAH41tHa62cBynSzkqnwkHYKhdHy6Jk1CQOoo6YFZFd03Csy56zGBTNIcBgurJDeYZQQ-gDWmlnlXP7xHc0WUIqEYHpIJRMmrgLNC1ni6epq3IMNnTACh9hSIug.mdWCmghtCxtNzePvYhzEqw.W9RA0Zw7bQvReJMYUTGvaoOgzo3Zzq-nCjn_6Zfa_5xXTNsmEtyoog6Y6wdxO6OGWRFP1JtMFMJx5jwYZQaEgKkVx-2RHkeDfLK_0X5F_LE.2glTRyMKwrCag9w34BrJAA" + }, + + "record": { + "CNAME": "haseeb-khalid.netlify.app" + } + } + \ No newline at end of file diff --git a/domains/hashir.json b/domains/hashir.json new file mode 100644 index 000000000..cfaf4261a --- /dev/null +++ b/domains/hashir.json @@ -0,0 +1,11 @@ +{ + "owner": { + "email": "harishbb168@gmail.com", + "username": "harish" + }, + "description": "My portfolio website", + "repo": "https://github.com/HarishB167/hs-app", + "record": { + "URL": "https://hmser.netlify.app" + } +} diff --git a/domains/hasnain.json b/domains/hasnain.json new file mode 100644 index 000000000..f1ce11330 --- /dev/null +++ b/domains/hasnain.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HasnainSZN", + "email": "officialhasnain100@gmail.com" + }, + + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/hassan.json b/domains/hassan.json new file mode 100644 index 000000000..9b03f3081 --- /dev/null +++ b/domains/hassan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HassanCodez", + "email": "hassan.atef01100@gmail.com" + }, + "record": { + "CNAME": "portfolio-seven-pi-39.vercel.app" + } +} diff --git a/domains/hassbomb.json b/domains/hassbomb.json new file mode 100644 index 000000000..a3f0b91d5 --- /dev/null +++ b/domains/hassbomb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Th3ABombs", + "email": "andreabombelli@gmail.com" + }, + "record": { + "A": ["144.24.243.47"] + } +} diff --git a/domains/hassenmajor.json b/domains/hassenmajor.json new file mode 100644 index 000000000..3ca02cfdf --- /dev/null +++ b/domains/hassenmajor.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hassenmajor", + "email": "hassenmajor@gmail.com" + }, + "description": "This is my personal portfolio.", + "record": { + "CNAME": "hassenmajor.github.io" + } +} diff --git a/domains/hastebin.json b/domains/hastebin.json new file mode 100644 index 000000000..1e16486d9 --- /dev/null +++ b/domains/hastebin.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "149485703+EducatedSuddenBucket@users.noreply.github.com", + "discord": "1167825360151380032" + }, + + "record": { + "A": ["69.197.135.203"] + } + } + \ No newline at end of file diff --git a/domains/hatkid.json b/domains/hatkid.json index efec6086c..00b8c78cf 100644 --- a/domains/hatkid.json +++ b/domains/hatkid.json @@ -1,9 +1,10 @@ { - "description": "Hat Kid's domain! (hat_kid)", + "description": "hat_kid's domain!", "repo": "https://github.com/thehatkid/thehatkid.github.io", "owner": { "username": "thehatkid", - "email": "saha22023@gmail.com" + "email": "saha22023@gmail.com", + "discord": "hat_kid" }, "record": { "CNAME": "thehatkid.github.io" diff --git a/domains/haubaka.json b/domains/haubaka.json new file mode 100644 index 000000000..06cbdc3fe --- /dev/null +++ b/domains/haubaka.json @@ -0,0 +1,11 @@ +{ + "description": "Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu Hậu", + "repo": "https://github.com/HauBaka/haubaka.github.io", + "owner": { + "username": "HauBaka", + "email": "hauvong@proton.me" + }, + "record": { + "CNAME": "haubaka.github.io" + } +} diff --git a/domains/havoc.json b/domains/havoc.json new file mode 100644 index 000000000..28ea47ef5 --- /dev/null +++ b/domains/havoc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "d7dx", + "email": "d7dx@proton.me" + }, + "record": { + "CNAME": "d7dx.github.io" + } +} diff --git a/domains/hay.json b/domains/hay.json deleted file mode 100644 index 472aaa77d..000000000 --- a/domains/hay.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "RayhanADev's Website!", - "repo": "https://github.com/rayhanadev/Personal-Website-v3", - "owner": { - "username": "rayhanadev", - "email": "rayhanadev@protonmail.com" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } -} diff --git a/domains/haykaody.json b/domains/haykaody.json index 060a77b5a..81f72ebb8 100644 --- a/domains/haykaody.json +++ b/domains/haykaody.json @@ -1,12 +1,11 @@ - { - "description": "Haykaody Portfolio Website", - "repo": "https://github.com/neoryans/haykaody", - "owner": { - "username": "neoryans", - "email": "ryansneo@gmail.com" - }, - "record": { - "CNAME": "neoryans.github.io" - } + "description": "Haykaody Portfolio Website", + "repo": "https://github.com/neoryans/haykaody", + "owner": { + "username": "neoryans", + "email": "ryansneo@gmail.com" + }, + "record": { + "CNAME": "neoryans.github.io" + } } diff --git a/domains/hazel.json b/domains/hazel.json new file mode 100644 index 000000000..29a4c9851 --- /dev/null +++ b/domains/hazel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hablethedev", + "email": "xendyex@tutanota.com", + "discord": "1113284520737771621" + }, + + "record": { + "CNAME": "hablethedev.github.io" + } +} diff --git a/domains/hazelnut.json b/domains/hazelnut.json new file mode 100644 index 000000000..d1cad5df7 --- /dev/null +++ b/domains/hazelnut.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HazelNutHoney", + "email": "hazelnutzhoney@gmail.com" + }, + "record": { + "CNAME": "hazelnuthoney.github.io" + } +} diff --git a/domains/hazy.json b/domains/hazy.json new file mode 100644 index 000000000..c9955700f --- /dev/null +++ b/domains/hazy.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "flouciel", + "email": "", + "discord": "967623271703007292", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.iXmlAAozpgqmWKMn4Uy8R2r51IF1iTfE7jG7GBwYET0EIWytyyyyOVPFLLzGfsf9qmPIaBX5V9JzXLV3h1rnK7fwJlhlQLnb1bOYAajqFoxxAwAa54PnCfo9aU8h7RJYoJAGgvzTjR5tAlzHtbEVPLr0aY93VTMv9Wgi6Vonatiakpx41apY8ggbTipSDR3y7IA14Qumi-wcUrLsECIGKYJNEXL409Lb0W-Sm7YDe8u8MzEr70MsZ-8ElJNbQ6Mmqb4jAtRqwQOW-rFsVYVIw6ngONgr3RHMXwXcdwXEhURaWObaect-XQ5KnQYtw4BXyaLpzfX5N_-b4CjnMkotyA.Jm-AREKkVLyzps9lTttUtw.MUvZm7aJ9zAJboAT4EMuhvZOsMtx88a3fz0yuJoXKicTIWEJmtrbv-Wj6RedoHN9G20RvX63GdfxBySHaPHS_eeeSNeGkLQCp9drhtQ5V6gxJVhJ7hjo_MwRpW62Cy0_.RIOZXukvXvUZQBdXeURZ1Q" + }, + + "record": { + "CNAME": "flouciel.github.io" + } + } + \ No newline at end of file diff --git a/domains/hchs-bot.json b/domains/hchs-bot.json new file mode 100644 index 000000000..3b63097a1 --- /dev/null +++ b/domains/hchs-bot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jimmy20180130", + "email": "jimmy20180130@gmail.com", + "twitter": "jimmyyo45639462", + "discord": "xiaoxi_tw#0" + }, + "record": { + "CNAME": "tw-node2.thisalesa.eu.org" + } +} diff --git a/domains/hcr5.json b/domains/hcr5.json new file mode 100644 index 000000000..1a8685a3e --- /dev/null +++ b/domains/hcr5.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for testing and having fun", + "owner": { + "username": "hcr5", + "email": "hcr5.hcr@gmail.com" + }, + "record": { + "URL": "https://hcr5.github.io" + } +} diff --git a/domains/hcs.json b/domains/hcs.json new file mode 100644 index 000000000..1c4cd3f1c --- /dev/null +++ b/domains/hcs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hcs1219", + "email": "hcskaiask@gmail.com" + }, + "record": { + "CNAME": "hcs1219.github.io" + } +} diff --git a/domains/he.json b/domains/he.json index e86eea464..6e9cb67f3 100644 --- a/domains/he.json +++ b/domains/he.json @@ -1,10 +1,10 @@ { "owner": { - "username": "lucidwave", - "email": "", - "twitter": "Pumao3" + "username": "Yunexiz", + "discord": "1040303561847881729", + "email": "" }, "record": { - "URL": "https://x3.lol" + "CNAME": "yunexiz.pages.dev" } } diff --git a/domains/hecker.json b/domains/hecker.json new file mode 100644 index 000000000..df7c9323c --- /dev/null +++ b/domains/hecker.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "1tbfree", + "email": "", + "discord": "1256183302516248680", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Gulo_VzH36GNYsK77_AoaBJa0a51eOIcMMQv6eB8Q5Z3ENUhJ-r_XZ61uICYK7OMJChFbwIBCgBbeoOZ63hePBZ92PGIEpoQB01CGPiEy6f9sqgjObPseHDEqPUYo8wu-VYLa7fdvNAYh3_sJyaEv-6V5b12FuuiBhA69LhWDNhmI35AICifGZmpyiDl-6eGZkMYoo63tW5PmxOkSJNnd_sSo-bbwhX4TDsgVBFH5dSga9UFBm3LD2OHtHGldirFlEVdmK_OdrZsco97W2fYci0HSbAGwUZ9nduMhBhiWujCL79_hVSLcSdMjT_yVOAN1515sNDxwVBboZ4qbY8nHw.nA4IYJPRg_VC-H3JSUQCMw.fHdFrlnHqAF8q1usb4mVryVD1UzDIoXaw4QwsJqsA29DGevggNwoKFjsGwsDZLl-2n7VwqkPBdHEI1CFYeZM1g.yCHHbjElG3qrdQbn8rt8zA" + }, + + "record": { + "CNAME": "heckersoft.serv00.net" + } + } + \ No newline at end of file diff --git a/domains/hecterbonha.json b/domains/hecterbonha.json deleted file mode 100644 index 4430df0be..000000000 --- a/domains/hecterbonha.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "hecterbonha", - "email": "untungsoandryanto@gmail.com" - }, - - "record": { - "CNAME": "hecterbonha.github.io" - } - } - \ No newline at end of file diff --git a/domains/heet.json b/domains/heet.json index 8cb1e5de9..d97215fe5 100644 --- a/domains/heet.json +++ b/domains/heet.json @@ -1,12 +1,12 @@ { - "description": "Terminal Style Portfolio", - "repo": "https://github.com/heetjpande/terminal", - "owner": { - "username": "heetjpande", - "email": "heetjpande@gmail.com", - "twitter": "pandeheet" - }, - "record": { - "URL": "https://bejewelled-gnome-25199e.netlify.app" - } -} + "description": "Terminal Style Portfolio", + "repo": "https://github.com/heetjpande/terminal", + "owner": { + "username": "heetjpande", + "email": "heetjpande@gmail.com", + "twitter": "pandeheet" + }, + "record": { + "URL": "https://bejewelled-gnome-25199e.netlify.app" + } +} diff --git a/domains/hein.json b/domains/hein.json new file mode 100644 index 000000000..b7070cd29 --- /dev/null +++ b/domains/hein.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HeinKhantZaw", + "email": "heinkhantzaw1@gmail.com" + }, + "record": { + "CNAME": "heinkhantzaw.github.io" + } +} diff --git a/domains/helge.json b/domains/helge.json deleted file mode 100644 index b5fa7d5f0..000000000 --- a/domains/helge.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "personal website at some point, now pointing to a VPS I own", - "repo": "https://github.com/iohansson/kldcs", - "owner": { - "username": "iohansson", - "email": "root@helge8.one" - }, - "record": { - "CNAME": "helge8.cc" - } -} diff --git a/domains/hellaz.json b/domains/hellaz.json new file mode 100644 index 000000000..fc54add0c --- /dev/null +++ b/domains/hellaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hellaz", + "email": "hellaz.team@gmail.com" + }, + "record": { + "URL": "https://hellaz.net" + } +} diff --git a/domains/hello.json b/domains/hello.json deleted file mode 100644 index 548931a00..000000000 --- a/domains/hello.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "personal website", - "repo": "https://github.com/kldcs/kldcs", - "owner": { - "username": "kldcs", - "email": "kldcsces@outlook.com" - }, - "record": { - "CNAME": "7d4f526a-194d-4047-bb0e-93af7aa4a16d.id.repl.co" - } -} diff --git a/domains/hemang.json b/domains/hemang.json new file mode 100644 index 000000000..b53aee1a2 --- /dev/null +++ b/domains/hemang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zemerik", + "email": "zemerikY@gmail.com" + }, + "record": { + "URL": "https://zemerik.is-a.dev" + } +} diff --git a/domains/hemangyadav.json b/domains/hemangyadav.json new file mode 100644 index 000000000..b53aee1a2 --- /dev/null +++ b/domains/hemangyadav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zemerik", + "email": "zemerikY@gmail.com" + }, + "record": { + "URL": "https://zemerik.is-a.dev" + } +} diff --git a/domains/henrymartin.json b/domains/henrymartin.json deleted file mode 100644 index c2f439d01..000000000 --- a/domains/henrymartin.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "HENRYMARTIN5", - "email": "henrysjmartinthesecond@gmail.com" - }, - "record": { - "CNAME": "833145ac-c162-4931-b063-b77d351c829f.id.repl.co" - } -} diff --git a/domains/herbert.json b/domains/herbert.json index b505315db..c815def75 100644 --- a/domains/herbert.json +++ b/domains/herbert.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Cartyoo", - "email": "cartyoogaming@gmail.com" - }, - "record": { - "URL": "https://cartyoo.org" - } + "owner": { + "username": "Cartyoo", + "email": "cartyoogaming@gmail.com" + }, + "record": { + "URL": "https://cartyoo.org" + } } diff --git a/domains/herckun.json b/domains/herckun.json deleted file mode 100644 index 2ecdecf32..000000000 --- a/domains/herckun.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "herckun", - "email": "", - "twitter": "herckun", - "discord": "herckun#2055" - }, - "description" : "Personal portfolio website", - "record": { - "URL": "https://herckun.xyz" - } -} diff --git a/domains/herkura.json b/domains/herkura.json index fb8d42fc7..36a30eb34 100644 --- a/domains/herkura.json +++ b/domains/herkura.json @@ -3,7 +3,7 @@ "repo": "https://github.com/herkura/.me", "owner": { "username": "herkura", - "email": "hershilpiplani16@gmail.com" + "email": "hershilpiplani16@gmail.com" }, "record": { "CNAME": "herkura.github.io" diff --git a/domains/heroprotagonist.json b/domains/heroprotagonist.json new file mode 100644 index 000000000..8afe86c34 --- /dev/null +++ b/domains/heroprotagonist.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "carafelix", + "email": "heroprotagonist32@gmail.com" + }, + "record": { + "CNAME": "carafelix.github.io" + } +} diff --git a/domains/hexaa.json b/domains/hexaa.json new file mode 100644 index 000000000..e7bc07598 --- /dev/null +++ b/domains/hexaa.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "hexaaagon", + "email": "me@hexagonn.my.id", + "discord": "scoooolzs", + "twitter": "Scoooolzs" + }, + + "record": { + "URL": "https://www.hexagonn.my.id" + } +} diff --git a/domains/hexviewer.json b/domains/hexviewer.json new file mode 100644 index 000000000..b14fc31dc --- /dev/null +++ b/domains/hexviewer.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/heytr.json b/domains/heytr.json new file mode 100644 index 000000000..30636c28c --- /dev/null +++ b/domains/heytr.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "heyturkiye204", + "email": "", + "discord": "718374283642011728", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AB-D0JAyoJsP1EWVbSBUxoDhCUdkyawehq02QQRDkCQ1Urcu4eUGKRmikFnmKMikokPPKHY73ebFVcXEuGhUkyETyP203GMFbUTgy9wykGPZE8Ba1iGxuEevHfGoHltjTkzEi_dcJ0sst_utOehLZp2lSNRXsf4QfQdp_bGVVpVbG5RP2YXjXozZIfqR5xw7vvZwSvJXSDzKvIeXgp_diinMDb3yRkFPSLO1CSDsgDocxJEnbV8m_4toQ4JiEwyACsY6wML8pvSljD_FErxrrUJwb3l1emke86CkFPvmlRAY7TFHftiFOQ74xNEF6_ZSBGhlFEnphZxHnFQabSbOlQ.cHfvuuNnY3biCSHpwKH2UQ.GCXZ93G0HxGsxtwe7kHpKlKjCO4767xt74ScKh4kpH_e4ETwDr9SlryVYTZkED_RMUZVoZ3B5xZu6ss2R9fgLnivI3HVQH7BSjTqv9vach10NrGzj6ib6QEtnq9JUoN4UQkWV4Kxjy3VnpLuHBtQow.I2tYq-7bgErLQqVDyxAH5Q" + }, + + "record": { + "CNAME": "heyturkiye204.netlify.app" + } + } + \ No newline at end of file diff --git a/domains/hi-lrmn.json b/domains/hi-lrmn.json new file mode 100644 index 000000000..61af16911 --- /dev/null +++ b/domains/hi-lrmn.json @@ -0,0 +1,12 @@ +{ + "description": "hi-lrmn.is-a.dev", + "repo": "https://github.com/hi-lrmn/hi-lrmn.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com", + "discord": "romanromannya#0" + }, + "record": { + "CNAME": "hi-lrmn.github.io" + } +} diff --git a/domains/hieudmg.json b/domains/hieudmg.json deleted file mode 100644 index 179bf7469..000000000 --- a/domains/hieudmg.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "hieudmg", - "email": "hieudmg@gmail.com" - }, - "record": { - "CNAME": "hieudmg.pages.dev" - } -} - \ No newline at end of file diff --git a/domains/hifzur.json b/domains/hifzur.json new file mode 100644 index 000000000..f94d12572 --- /dev/null +++ b/domains/hifzur.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hifzurmax", + "email": "hifzur.syl@gmail.com" + }, + "record": { + "CNAME": "hifzurmax.github.io" + } +} diff --git a/domains/higherror.json b/domains/higherror.json deleted file mode 100644 index c24104cd4..000000000 --- a/domains/higherror.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "HighError Portfolio", - "repo": "https://github.com/higherror/higherror.github.io", - "owner": { - "username": "higherror", - "email": "hierrorua@gmail.com", - "twitter": "higherrorua" - }, - "record": { - "CNAME": "higherror.github.io" - } -} diff --git a/domains/hikamoru.json b/domains/hikamoru.json new file mode 100644 index 000000000..c59ecd26b --- /dev/null +++ b/domains/hikamoru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AmoreForever", + "email": "me.thefarkhodov@gmail.com" + }, + "record": { + "CNAME": "hikamoru.pages.dev" + } +} diff --git a/domains/hikaru.json b/domains/hikaru.json deleted file mode 100644 index 232cadd01..000000000 --- a/domains/hikaru.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/hikaruisasleep/hikaruisasleep.github.io", - "owner": { - "username": "hikaruisasleep", - "email": "benayaj.2004@gmail.com", - "discord": "hikaruisasleep#0240" - }, - "record": { - "CNAME": "hikaruisasleep.github.io" - } -} diff --git a/domains/hilight3r.json b/domains/hilight3r.json new file mode 100644 index 000000000..963dbaf2d --- /dev/null +++ b/domains/hilight3r.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HIlight3R", + "email": "", + "discord": "632272741000544259", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lEEbmOZavCkur0apEhD0MigNx6rzV3Kqhd9_Lw4Wxt7U7b0rcV779rEFB1Fm4LdwKAVJJ8_MeDm1jf0y14lGqQotXsvYzRKOCBk5t7vLtS_541WkodNwOPbAUV_g2KBaq6MynjnwX5786OLkuRJE-QnxwflxQRQHtL76xYJV3d7UVmZk0ppSUxyCw5SdSXUp7zgoJiTE2JIshtR5dFULQCyH9QK7gVpNFJBwaoTJeoRsCOy_oYoXVhYysYhX94tubtwKzE4xSDmQW4UbOo8yLRNTIo-PkyuY6cBD4yYvueRcTAd_UChS12Y27QSFhQq78I7WLaE7u4cV060Th1fEmA.9kQc0tIg1PyfXJtKgbiBSQ.uFTPklnOgLBqnu-dg7ZsCEZ_QrMiuyiHY60IgI1X3CdE1kSQckWTdApOQF8AXTC0inYYfmSpfvzP02Rcgo3Z9vyrckWG_ZSJbmfKR2SOpeN_Cq94jwKAZQXW0U45LxB1.cYkl_VljmQbyvurLc7hF6Q" + }, + "record": { + "CNAME": "hilight3r.github.io" + } +} diff --git a/domains/hilmansyah.json b/domains/hilmansyah.json new file mode 100644 index 000000000..9135f4116 --- /dev/null +++ b/domains/hilmansyah.json @@ -0,0 +1,13 @@ +{ + "description": "Hillzacky is Hilmansyah", + "repo": "https://github.com/Hillzacky/hillzacky.github.io", + "owner": { + "username": "Hillzacky", + "email": "hilmansyah@xhr.my.id", + "twitter": "hillzacky", + "discord": "830349326785314846" + }, + "record": { + "CNAME": "hillzacky.github.io" + } +} diff --git a/domains/himanshu.json b/domains/himanshu.json new file mode 100644 index 000000000..868a6e3e5 --- /dev/null +++ b/domains/himanshu.json @@ -0,0 +1,12 @@ +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "github.com/HIMU-2001/portfolio", + "owner": { + "username": "HIMU-2001", + "email": "himanshuuu.2001@gmail.com", + "twitter": "himanshuuu_2001" + }, + "record": { + "CNAME": "himu-2001.github.io" + } +} diff --git a/domains/himanshusri.json b/domains/himanshusri.json new file mode 100644 index 000000000..ef7294b16 --- /dev/null +++ b/domains/himanshusri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "himanshuSri24", + "email": "himanshu20032002@gmail.com" + }, + "record": { + "CNAME": "himanshusri24.github.io" + } +} diff --git a/domains/himashu.json b/domains/himashu.json index 793918cf6..bd8feee3a 100644 --- a/domains/himashu.json +++ b/domains/himashu.json @@ -1,13 +1,13 @@ { - "description": "About Himanshu Chhatwal", - "repo": "https://github.com/himanshu1221", - "owner": { - "username": "himanshu1221", - "email": "himanshuchhatwal9295@gmail.com", - "twitter": "himanshuchhatw2", - "discord": "Himanshu2314#1751" - }, - "record": { - "URL": "https://himanshuchhatwal.netlify.app" - } + "description": "About Himanshu Chhatwal", + "repo": "https://github.com/himanshu1221", + "owner": { + "username": "himanshu1221", + "email": "himanshuchhatwal9295@gmail.com", + "twitter": "himanshuchhatw2", + "discord": "Himanshu2314#1751" + }, + "record": { + "URL": "https://himanshuchhatwal.netlify.app" } +} diff --git a/domains/hinal-sanghvi.json b/domains/hinal-sanghvi.json new file mode 100644 index 000000000..fcc489f4e --- /dev/null +++ b/domains/hinal-sanghvi.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for now", + "repo": "https://github.com/hinal-sanghvi/hinal-sanghvi.github.io", + "owner": { + "username": "hinal-sanghvi", + "email": "" + }, + "record": { + "CNAME": "hinal-sanghvi.github.io" + } +} diff --git a/domains/hipo.json b/domains/hipo.json new file mode 100644 index 000000000..f8c44cc99 --- /dev/null +++ b/domains/hipo.json @@ -0,0 +1,11 @@ +{ + "description": "badowhp blog page", + "repo": "https://github.com/badowhp/badowhp.github.io", + "owner": { + "username": "badowhp", + "email": "badowhp@gmail.com" + }, + "record": { + "CNAME": "badowhp.github.io" + } +} diff --git a/domains/hirako.json b/domains/hirako.json new file mode 100644 index 000000000..52e036b69 --- /dev/null +++ b/domains/hirako.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "hirakoisdead", + "email": "", + "discord": "hirako.", + "twitter": "hirakoisdead", + "reddit": "u/hirakotm" + }, + "record": { + "CNAME": "website-5xr.pages.dev" + } +} diff --git a/domains/hiro.json b/domains/hiro.json deleted file mode 100644 index 812231019..000000000 --- a/domains/hiro.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal website for now", - "repo": "https://github.com/XxHiroTTVxX", - "owner": { - "username": "XxHiroTTVxX", - "email": "xxhirottvxx@gmail.com" - }, - "record": { - "CNAME": "incognito-20-production-9fe2.up.railway.app" - } -} diff --git a/domains/hironichu.json b/domains/hironichu.json index 622c6bf6c..b5593db33 100644 --- a/domains/hironichu.json +++ b/domains/hironichu.json @@ -6,11 +6,7 @@ "email": "hironichu@gmail.com" }, "record": { - "A": [ - "34.120.54.55" - ], - "TXT": [ - "deno-com-validation=f1b7200ba5f97a80db0aaa12" - ] + "A": ["34.120.54.55"], + "TXT": "deno-com-validation=f1b7200ba5f97a80db0aaa12" } } diff --git a/domains/hitesh-makodiya.json b/domains/hitesh-makodiya.json new file mode 100644 index 000000000..1c5b1d292 --- /dev/null +++ b/domains/hitesh-makodiya.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/hitesh-makodiya/hitesh-makodiya.github.io", + "owner": { + "username": "hitesh-makodiya", + "email": "" + }, + "record": { + "CNAME": "hitesh-makodiya.github.io" + } +} diff --git a/domains/hitesh.json b/domains/hitesh.json new file mode 100644 index 000000000..cf2577453 --- /dev/null +++ b/domains/hitesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hitesh-can-code", + "email": "hiteshofficalyt@gmail.com" + }, + "record": { + "CNAME": "hvlxh.pages.dev" + } +} diff --git a/domains/hiwind.json b/domains/hiwind.json new file mode 100644 index 000000000..5648809c8 --- /dev/null +++ b/domains/hiwind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jaydoublay", + "email": "jeremy@jaydoublay.com" + }, + "record": { + "URL": "https://www.hiwind.me" + } +} diff --git a/domains/hjd.json b/domains/hjd.json new file mode 100644 index 000000000..6c4976c3b --- /dev/null +++ b/domains/hjd.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "jindongh", + "email": "", + "discord": "747475555133292566", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.GGA50arXlBZ2DyYbEXwSfiEvfUAhdXqPx3JxwSQ593x4RLc9a3yUHdyKtb8fbWuW-w74kJopmHnadfzF0W4IrKnzHXw6Q82xuRlpiB529QbcUc2YaNtAAwpqUAqkiHRVJN93biYkGweQNlnBfyi0_eGX8JUnKZkGbKhEN4Vcq0L0r_ONdY7tUfQfVK_4XBiPW89CwJHujzX676VxsbbtxaQDUkkDCF9eH6V-gW8G64pNIW_rOExrs0l5WGLjOjiKo5KlZyxzwBHX9w6Fvnx69YyxamYa1UXTUoAoe9Hi4Yi0Gy2GnnGMh56Da2ah5SUtN62b2qWX2q14JS99ellIjg.R77sNRkxywjiJHEUfRcL0g.u9W2J8SSl-il0cZ3x9f4ID3KqIHOS80fXuBtiqJZOBgTbqUY4HM0t-eQXMO1sCl6UWwCSIszlW9Q8mR96ijBVFrjQ4qJtD6Wzn0ia2updu4.Ucf2hDLtL9KbH6XFTYmiaA" + }, + + "record": { + "A": ["73.202.31.143"] + } + } + \ No newline at end of file diff --git a/domains/hk.json b/domains/hk.json new file mode 100644 index 000000000..7659d6bbb --- /dev/null +++ b/domains/hk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ericsia", + "email": "medlexopm@gmail.com" + }, + "record": { + "CNAME": "sga.domcloud.co" + } +} diff --git a/domains/hkamran.json b/domains/hkamran.json new file mode 100644 index 000000000..338df9874 --- /dev/null +++ b/domains/hkamran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hkamran80", + "email": "hkamran@hkamran.com" + }, + "record": { + "URL": "https://hkamran.com/?ref=isadev" + } +} diff --git a/domains/hkdkfih.json b/domains/hkdkfih.json new file mode 100644 index 000000000..317605238 --- /dev/null +++ b/domains/hkdkfih.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cherryservice", + "email": "admin@cherry.work.gd", + "discord": "1201107428608049164" + }, + + "record": { + "CNAME": "cherryservice.github.io" + } +} diff --git a/domains/hmon.json b/domains/hmon.json deleted file mode 100644 index 802f8d906..000000000 --- a/domains/hmon.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "hackermondev", - "email": "daniel@daniel.is-a.dev" - }, - "record": { - "CNAME": "Ultraviolet-Node-3.hackermondev.repl.co" - } -} diff --git a/domains/hoang3409.json b/domains/hoang3409.json new file mode 100644 index 000000000..378f9f821 --- /dev/null +++ b/domains/hoang3409.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio redirect for Hoang3409", + "owner": { + "username": "hoang3409", + "email": "nvh.02021995@gmail.com" + }, + "record": { + "CNAME": "hoang3402.github.io" + } +} diff --git a/domains/hod.json b/domains/hod.json deleted file mode 100644 index 49a244d56..000000000 --- a/domains/hod.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "hod's primary website.", - "repo": "https://github.com/hodss/hodssxyz", - "owner": { - "username": "hodss", - "email": "hod@hodss.xyz", - "twitter": "hodss_", - "discord": "hod#2311" - }, - "record": { - "URL": "https://hodss.xyz/?refer=is-a-dev" - } -} diff --git a/domains/hokkqi.json b/domains/hokkqi.json deleted file mode 100644 index 11345972a..000000000 --- a/domains/hokkqi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Portfolio redirect for Hokkqi", - "repo": "https://werewolf.codes", - "owner": { - "username": "hokkqi", - "email": "lio@werewolf.design" - }, - "record": { - "URL": "https://werewolf.design" - } -} diff --git a/domains/homelander.json b/domains/homelander.json new file mode 100644 index 000000000..d0b2c8ea4 --- /dev/null +++ b/domains/homelander.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GokuPlay609", + "email": "GokuPlay609@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/hoogdorp.json b/domains/hoogdorp.json new file mode 100644 index 000000000..194bfd216 --- /dev/null +++ b/domains/hoogdorp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Gunterke", + "email": "gunterke@zoho.eu" + }, + "record": { + "CNAME": "gratis-4925113.jouwweb.site" + } +} diff --git a/domains/hooman.json b/domains/hooman.json new file mode 100644 index 000000000..0a2d2226d --- /dev/null +++ b/domains/hooman.json @@ -0,0 +1,12 @@ +{ + "description": "my personal site", + "repo": "https://github.com/ThisIsALegitUsername/thisisalegitusername.github.io", + "owner": { + "username": "hooman23", + "discord": "hooman23", + "email": "" + }, + "record": { + "CNAME": "thisisalegitusername.github.io" + } +} diff --git a/domains/horizon-server.json b/domains/horizon-server.json new file mode 100644 index 000000000..1ab1e64e4 --- /dev/null +++ b/domains/horizon-server.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HorizonFiles", + "email": "getbomb@bk.ru", + "discord": "1223721772051075193" + }, + + "record": { + "CNAME": "horizonfiles.github.io" + } +} diff --git a/domains/horizon.json b/domains/horizon.json new file mode 100644 index 000000000..3caf9bcc8 --- /dev/null +++ b/domains/horizon.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Horizon1010", + "email": "", + "discord": "877848431983493132" + }, + + "record": { + "CNAME": "lunar-hangout.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/horn7x.json b/domains/horn7x.json new file mode 100644 index 000000000..77e806d77 --- /dev/null +++ b/domains/horn7x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "horn7x", + "email": "horn7x@gmail.com" + }, + "record": { + "CNAME": "horn7x.github.io" + } +} diff --git a/domains/horu.json b/domains/horu.json new file mode 100644 index 000000000..45f1c8e08 --- /dev/null +++ b/domains/horu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HigherOrderLogic", + "email": "73709188+HigherOrderLogic@users.noreply.github.com" + }, + "record": { + "CNAME": "HigherOrderLogic.github.io" + } +} diff --git a/domains/host-image.json b/domains/host-image.json new file mode 100644 index 000000000..57d30f8c5 --- /dev/null +++ b/domains/host-image.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge650@silomails.com" + }, + "record": { + "CNAME": "host-image.pages.dev" + } +} diff --git a/domains/hot-dev.json b/domains/hot-dev.json deleted file mode 100644 index 278c86764..000000000 --- a/domains/hot-dev.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Just a website for me", - "repo": "https://github.com/gamerz420/gamerz420.github.io", - "owner": { - "username": "gamerz420", - "email": "imakbss@gmail.com", - "discord":"gamerz420#6200" - }, - "record": { - "CNAME": "gamerz420.github.io" - } -} diff --git a/domains/hotspot.json b/domains/hotspot.json new file mode 100644 index 000000000..2f925f0d7 --- /dev/null +++ b/domains/hotspot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "wansie1", + "email": "msc2tvdn@duck.com", + "discord": "962788530336178236" + }, + + "record": { + "A": ["213.238.183.171"] + } +} diff --git a/domains/houlton.json b/domains/houlton.json new file mode 100644 index 000000000..d30abda61 --- /dev/null +++ b/domains/houlton.json @@ -0,0 +1,11 @@ +{ + "description": "houlton.is-a.dev -> solo.to/houlton redirect.", + "repo": "https://github.com/ahoulton/register", + "owner": { + "username": "ahoulton", + "email": "ignhoulton@gmail.com" + }, + "record": { + "URL": "https://solo.to/houlton" + } +} diff --git a/domains/hozzywozzy.json b/domains/hozzywozzy.json new file mode 100644 index 000000000..4d3a30839 --- /dev/null +++ b/domains/hozzywozzy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hozzywozzy", + "email": "hozzywozzy@terrorist.lol" + }, + "description": "domain for testing purposes", + "repo": "https://github.com/hozzywozzy/hozzywozzy", + "record": { + "CNAME": "hozzywozzy.github.io" + } +} diff --git a/domains/hridimay.json b/domains/hridimay.json new file mode 100644 index 000000000..3ac435491 --- /dev/null +++ b/domains/hridimay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hridimay", + "email": "hridimay@gmail.com" + }, + "record": { + "CNAME": "hridimay.github.io" + } +} diff --git a/domains/hrushal.json b/domains/hrushal.json deleted file mode 100644 index e5c0c4c88..000000000 --- a/domains/hrushal.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Hrushal's Portfolio Website", - "repo": "https://github.com/Hrushal-Nikhare/HrushalNikhare-v2", - "owner": { - "username": "Hrushal-Nikhare", - "email": "Hrushalnikhare@gmail.com", - "discord": "Another_Random_Eevee#7237" - }, - "record": { - "CNAME": "hrushal.ml" - } -} diff --git a/domains/hsgamer.json b/domains/hsgamer.json deleted file mode 100644 index 5a749b8d2..000000000 --- a/domains/hsgamer.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "HSGamer", - "email": "huynhqtienvtag@gmail.com" - }, - - "record": { - "CNAME": "hsgamer.github.io" - } - } - \ No newline at end of file diff --git a/domains/huby.json b/domains/huby.json deleted file mode 100644 index 7d2d0bd03..000000000 --- a/domains/huby.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "OpAayush", - "email": "aayushmagrawal@gmail.com", - "discord": "Aayu5h#1737" - }, - "record": { - "CNAME": "7cfe5323-1a5d-4086-9226-3475a4e3cf5a.id.repl.co" - } -} diff --git a/domains/hudson.json b/domains/hudson.json new file mode 100644 index 000000000..45b654e9a --- /dev/null +++ b/domains/hudson.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Hudson-Liu", + "email": "", + "discord": "879464844103934014", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IOrkBDTOL8e5YwmSg1zQx2TOp0s6X984MjKxTc5Mwh9FajQFzQ6PkA_BfRn4LVFwuuVsURcPR-7J5Y4ZR0I35Ug1j1JCxjUHcgRyxMyiiiNnrQCGe2bdTDFKBaPbyIOKhUT94mv8YOh8pqQJVPPcEzQ9oXonSRsAMGGqE-4kAr41UIusklBWaA9F8Z8cRLEtIB1si9bMA6R3iLlTxEVYtXl7OgrRxF0Bt1gb9_fnF3oKTWT3w5S19XQYqfMD1RCwl3AKJEBpDq7Vcr0sgYlOYG-W_hWWMyxf7NNrIG-9Vz2UyXeM531eqP40tp1lIp7EWwE0TqdYcrRCaAafFS1D3g.TMk5oUDQEorIXe7kJK1gvA.N43xlqEWY9K4lmLeHC-5Z2C4BxkzdwLBKcO_p770ZdSWJbagO8mBzwZsFfvrSTJZNO0sJqFtrS3Rdk_aSBQNONXCYSOafIqCtjz1b4mZ4vA._Fj9x0E13gOT07yIeuhemw" + }, + + "record": { + "CNAME": "hudson-liu.github.io" + } + } + \ No newline at end of file diff --git a/domains/hugovidafe.json b/domains/hugovidafe.json index b0ef69294..268a804f7 100644 --- a/domains/hugovidafe.json +++ b/domains/hugovidafe.json @@ -1,10 +1,7 @@ { - "description": "Hugovidafe's website", - "repo": "https://github.com/Hugovidafe-OSS", "owner": { - "username": "Hugovidafe", - "email": "hugo@hugovidafe.dev", - "twitter": "Hugovidafe" + "username": "0x1026", + "email": "me@hugovidafe.dev" }, "record": { "URL": "https://hugovidafe.dev" diff --git a/domains/hunai.json b/domains/hunai.json deleted file mode 100644 index aca426cfb..000000000 --- a/domains/hunai.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Hunter2809", - "email": "auser929129@gmail.com" - }, - "record": { - "A": [ - "75.2.69.226" - ] - } -} \ No newline at end of file diff --git a/domains/hung-contact.json b/domains/hung-contact.json index 92d29c6bc..2affe180f 100644 --- a/domains/hung-contact.json +++ b/domains/hung-contact.json @@ -1,9 +1,9 @@ { "owner": { - "username": "hunghg255", - "email": "giahunghust@gmail.com" + "username": "hunghg255", + "email": "giahunghust@gmail.com" }, "record": { - "URL": "https://hunghg-contact.vercel.app" + "URL": "https://hunghg-contact.vercel.app" } } diff --git a/domains/hung.json b/domains/hung.json index e13984984..f456c4570 100644 --- a/domains/hung.json +++ b/domains/hung.json @@ -1,9 +1,9 @@ { "owner": { - "username": "hunghg255", - "email": "giahunghust@gmail.com" + "username": "hunghg255", + "email": "giahunghust@gmail.com" }, "record": { - "URL": "https://hunghg-portfolio.vercel.app" + "URL": "https://hunghg-portfolio.vercel.app" } } diff --git a/domains/hunter.json b/domains/hunter.json deleted file mode 100644 index bc3207138..000000000 --- a/domains/hunter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hunter Website", - "repo": "https://github.com/itshunterr", - "owner": { - "username": "Itshunterr", - "email": "itshunterr@protonmail.com" - }, - "record": { - "A": ["185.199.108.153"] - } - } diff --git a/domains/huntroid.json b/domains/huntroid.json index 8cda8412c..a8726b01f 100644 --- a/domains/huntroid.json +++ b/domains/huntroid.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "hunterz-killer", - "email": "srimath8@gmail.com" - }, - "record": { - "A": ["185.199.108.153"] - } - } - \ No newline at end of file +{ + "owner": { + "username": "hunterz-killer", + "email": "srimath8@gmail.com" + }, + "record": { + "A": ["185.199.108.153"] + } +} diff --git a/domains/husain.json b/domains/husain.json deleted file mode 100644 index c64e68338..000000000 --- a/domains/husain.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "H-Killer", - "email": "hadiabode34@gmail.com" - }, - "record": { - "A": ["184.94.215.77"] - } - } - \ No newline at end of file diff --git a/domains/huyen.json b/domains/huyen.json index 470b117cd..4cfd15cdc 100644 --- a/domains/huyen.json +++ b/domains/huyen.json @@ -1,12 +1,12 @@ { - "description": "Huyền's website", - "repo": "https://github.com/huyenit200x/huyenit200x.github.io", - "owner": { - "username": "huyenit200x", - "email": "huyenit200x@gmail.com", - "twitter": "huyenit200x" - }, - "record": { - "CNAME": "huyenit200x.github.io" - } -} + "description": "Huyền's website", + "repo": "https://github.com/huyenit200x/huyenit200x.github.io", + "owner": { + "username": "huyenit200x", + "email": "huyenit200x@gmail.com", + "twitter": "huyenit200x" + }, + "record": { + "CNAME": "huyenit200x.github.io" + } +} diff --git a/domains/huygd.json b/domains/huygd.json new file mode 100644 index 000000000..07116369e --- /dev/null +++ b/domains/huygd.json @@ -0,0 +1,13 @@ +{ + "description": "My first domain to learn", + "repo": "https://github.com/huygmdvn/register", + "owner": { + "username": "huygmdvn", + "email": "huynhquochuytkna@gmail.com" + }, + "record": { + "A": [ + "103.77.240.59" + ] + } +} diff --git a/domains/huygmd-is-a-dev.json b/domains/huygmd-is-a-dev.json new file mode 100644 index 000000000..9f895e5c3 --- /dev/null +++ b/domains/huygmd-is-a-dev.json @@ -0,0 +1,13 @@ +{ + "description": "My second domain, should be used to feature my project in the future", + "repo": "https://github.com/huygmdvn/register", + "owner": { + "username": "huygmdvn", + "email": "huynhquochuytkna@gmail.com" + }, + "record": { + "A": [ + "103.77.240.59" + ] + } +} diff --git a/domains/huz.json b/domains/huz.json new file mode 100644 index 000000000..547fd3d73 --- /dev/null +++ b/domains/huz.json @@ -0,0 +1,12 @@ +{ + "description": "Huz Personal Portfolio", + "repo": "https://github.com/Nooby69/Huz", + "owner": { + "username": "Nooby69", + "email": "farighinsaan123@gmail.com", + "discord": "excalibur._.dev" + }, + "record": { + "CNAME": "nooby69.github.io" + } +} diff --git a/domains/hvlxh.json b/domains/hvlxh.json new file mode 100644 index 000000000..a5d6b2159 --- /dev/null +++ b/domains/hvlxh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hvlxh", + "email": "monsta22019@gmail.com", + "discord": "hvlxh#0001" + }, + + "record": { + "URL": "https://hvlxh.vercel.app" + } +} diff --git a/domains/hvn-network.json b/domains/hvn-network.json new file mode 100644 index 000000000..82903e6b2 --- /dev/null +++ b/domains/hvn-network.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "DaoLmao", + "email": "", + "discord": "854380469147140106", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YYiTtfWSDHwSXb9MT6WVA8YGngFs8Na5NWWp15dLNgSOSkCDhyusojmz9so8D__NVF_MVbJ4dJ4mKUsoF1PQL_dRh-ZTINAFVnzjD4zGyFMW9nH7Q6wDk98tIGh5ZNfOUrqKgPUvslXMdDxtvkQ0ozsZB7XcIM6W35jHzHzjNYIJl58mTWlYg3qHXNcCZHXlDU-b4Qpq_yX4knBFpBBraJM-u8-j7MAkQgsX1x3kE_3LrR2W6d3AS_SofP_V7fSO-NU01glhbYPmp0TLXK0CxCGnhu8ZMzQPGD82TjN8pRtVUpQsbtMhcrCEwEmqkOXQ-D_Z4tKa_B-Qk_2g5c_gTw.HSLX0hOyRsELsyTL-Mk2tQ.WiNb7GNeSUyuaLRx6c-d00Eiv4ZC9OZM1h7_mKjjkC6AK5pdRSSvIOVpUy1c0ZRQ26SwekgDLz-rWm9GP2g5e4noskG9_2IiaH7BTg5lXb4.rxXv1bVYwiMt0sVdZz2rZg" + }, + + "record": { + "CNAME": "28dc2ff8b0c75ec76975e404306d189e.ipv4.tcpshield.com" + } + } + \ No newline at end of file diff --git a/domains/hycord.json b/domains/hycord.json index e694b105e..482ca4839 100644 --- a/domains/hycord.json +++ b/domains/hycord.json @@ -1,12 +1,13 @@ { - "description": "Hi! I'm Hycord!", - "repo": "https://github.com/hycord/hycord.github.io", + "description": "Development Portfolio for Hycord", + "url": "https://github.com/hycord/monorepo", "owner": { "username": "hycord", - "email": "hycord@duck.com", - "twitter": "IGNHycord" + "email": "hycord@hycordia.com", + "twitter": "IGNHycord", + "discord": "322144499734151169" }, "record": { - "CNAME": "hycord.github.io" + "URL": "https://masen.dev/" } } diff --git a/domains/hyperhacker.json b/domains/hyperhacker.json deleted file mode 100644 index 72953d538..000000000 --- a/domains/hyperhacker.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Portfolio website for HyperGithubForm", - "repo": "https://replit.com/@HyperHacker/HyperHacker", - "owner": { - "username": "HyperGithubForm", - "email": "", - "discord": "HyperHacker#3433" - }, - "record": { - "CNAME": "988a5d1f-c278-44ca-9b99-34f9995ed9ba.id.repl.co" - } -} diff --git a/domains/hypnomacka.json b/domains/hypnomacka.json new file mode 100644 index 000000000..9be9bd9ed --- /dev/null +++ b/domains/hypnomacka.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hypnomacka", + "email": "hypnomacka@gmail.com" + }, + + "record": { + "CNAME": "hypnomacka.github.io" + } +} diff --git a/domains/hzmi.json b/domains/hzmi.json deleted file mode 100644 index ba5242613..000000000 --- a/domains/hzmi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal Website", - "repo": "https://github.com/Hazmi35", - "owner": { - "username": "Hazmi35", - "email": "contact@hzmi.xyz" - }, - "record": { - "URL": "https://hzmi.xyz" - } -} diff --git a/domains/hzyusuf.json b/domains/hzyusuf.json index 7a44577bf..3cf01ddaa 100644 --- a/domains/hzyusuf.json +++ b/domains/hzyusuf.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "yufuss", + "email": "yusufgocer40@hotmail.com" + }, - { - "owner": { - "username": "yufuss", - "email": "yusufgocer40@hotmail.com" - }, - - "record": { - "CNAME": "glitch.edgeapp.net" - } - } - \ No newline at end of file + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/i-am.json b/domains/i-am.json new file mode 100644 index 000000000..5b296d642 --- /dev/null +++ b/domains/i-am.json @@ -0,0 +1,10 @@ +{ + "description": "i-am.is-a.dev", + "owner": { + "username": "i-am-is-a-dev", + "email": "lx737456@gmail.com" + }, + "record": { + "A": ["89.106.200.1"] + } +} diff --git a/domains/i.esb.json b/domains/i.esb.json new file mode 100644 index 000000000..ffcf230cf --- /dev/null +++ b/domains/i.esb.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/i10.json b/domains/i10.json deleted file mode 100644 index a33e7d507..000000000 --- a/domains/i10.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "JavaScythe", - "email": "slashmod6@gmail.com" - }, - "record": { - "A": ["34.110.138.177"] - } - } - \ No newline at end of file diff --git a/domains/i2rys.json b/domains/i2rys.json new file mode 100644 index 000000000..f55c87fdb --- /dev/null +++ b/domains/i2rys.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "I2rys", + "email": "i2rys@protonmail.com" + }, + "record": { + "URL": "https://i2rys.vercel.app" + } +} diff --git a/domains/i3.esb.json b/domains/i3.esb.json new file mode 100644 index 000000000..364b03edf --- /dev/null +++ b/domains/i3.esb.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com", + "discord": "1167825360151380032" + }, + + "record": { + "A": ["69.197.135.205"] + } + } + \ No newline at end of file diff --git a/domains/iagobruno.json b/domains/iagobruno.json new file mode 100644 index 000000000..c7e5e802b --- /dev/null +++ b/domains/iagobruno.json @@ -0,0 +1,12 @@ +{ + "description": "My portfolio website", + "repo": "https://github.com/iagobruno/iagobruno.github.io", + "owner": { + "username": "iagobruno", + "email": "iagobruno.dev@gmail.com", + "twitter": "iagotico" + }, + "record": { + "CNAME": "iagobruno.github.io" + } +} diff --git a/domains/iakzs.json b/domains/iakzs.json new file mode 100644 index 000000000..588ed84fd --- /dev/null +++ b/domains/iakzs.json @@ -0,0 +1,21 @@ +{ + "description": "iakzs.is-a.dev", + "repo": "https://github.com/iakzs/iakzs.github.io", + "owner": { + "username": "iakzs", + "email": "iakzs@protonmail.com" + }, + "record": { + "A": [ + "185.199.109.153", + "185.199.110.153", + "185.199.111.153", + "185.199.108.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~allCOPY" + } +} diff --git a/domains/ialkoa.json b/domains/ialkoa.json new file mode 100644 index 000000000..0a8f0bb84 --- /dev/null +++ b/domains/ialkoa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CallMePudding", + "email": "CallMePudding@zohomail.eu" + }, + "record": { + "URL": "https://callmepudding.github.io/ialkoastuff/" + } +} diff --git a/domains/iam.json b/domains/iam.json new file mode 100644 index 000000000..fa65df012 --- /dev/null +++ b/domains/iam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Utsav14s", + "email": "utsavk740@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/iamai.json b/domains/iamai.json new file mode 100644 index 000000000..383d7b618 --- /dev/null +++ b/domains/iamai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HsiangNianian", + "email": "i@jyunko.cn" + }, + "record": { + "CNAME": "readthedocs.io" + } +} diff --git a/domains/iamchoiiril.json b/domains/iamchoiiril.json new file mode 100644 index 000000000..9bcaffddd --- /dev/null +++ b/domains/iamchoiiril.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Cfhoiril", + "email": "iamchoirilfk@gmail.com" + }, + "record": { + "CNAME": "cfhoiril.github.io" + } +} diff --git a/domains/iamlazylll.json b/domains/iamlazylll.json new file mode 100644 index 000000000..8f172e32f --- /dev/null +++ b/domains/iamlazylll.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamlazylll", + "email": "eason4666@gmail.com" + }, + "record": { + "CNAME": "iamlazylll.github.io" + } +} diff --git a/domains/iammithani.json b/domains/iammithani.json new file mode 100644 index 000000000..930caba3d --- /dev/null +++ b/domains/iammithani.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MuhammadUsmanMithani", + "email": "muhammadusmanmithani@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 632157019960377349" + }, + + "record": { + "CNAME": "iammithani-portfolio.pages.dev" + } +} diff --git a/domains/iamthedefender.json b/domains/iamthedefender.json new file mode 100644 index 000000000..240db6e56 --- /dev/null +++ b/domains/iamthedefender.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "IamTheDefender", + "discord": "iamthedefender", + "email": "" + }, + "record": { + "URL": "https://portfolio-one-ecru-11.vercel.app" + } +} diff --git a/domains/ian.json b/domains/ian.json index 18772e6d8..1c713214f 100644 --- a/domains/ian.json +++ b/domains/ian.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "forsyth47", - "email": "joshuasuresh2006@gmail.com" - }, - "record": { - "CNAME": "forsyth47.github.io" - } + "owner": { + "username": "forsyth47", + "email": "joshuasuresh2006@gmail.com" + }, + "record": { + "CNAME": "forsyth47.github.io" + } } diff --git a/domains/iancheung.json b/domains/iancheung.json new file mode 100644 index 000000000..c24306e0d --- /dev/null +++ b/domains/iancheung.json @@ -0,0 +1,10 @@ +{ + "description": "Link to my portfolio site.", + "owner": { + "username": "iancheung0202", + "email": "support@ianbrawlstars.com" + }, + "record": { + "URL": "https://ianbrawlstars.com" + } +} diff --git a/domains/ians.json b/domains/ians.json new file mode 100644 index 000000000..af327bdad --- /dev/null +++ b/domains/ians.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ianskids", + "email": "theians@yahoo.com" + }, + "record": { + "CNAME": "dev.ians.my.id" + } +} diff --git a/domains/iansalazar.json b/domains/iansalazar.json deleted file mode 100644 index 3ba25c281..000000000 --- a/domains/iansalazar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ian Salazar's portfolio website", - "repo": "https://github.com/dertrockx/freelance-frontend-app", - "owner": { - "username": "iisalazar", - "email": "iansalazar67@gmail.com" - }, - "record": { - "CNAME": "freelance-frontend-app-production.up.railway.app" - } -} diff --git a/domains/ibrahimai.json b/domains/ibrahimai.json new file mode 100644 index 000000000..0388a32cd --- /dev/null +++ b/domains/ibrahimai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ibrahimaitech", + "email": "ibrahimaik045@gmail.com" + }, + "record": { + "URL": "https://telegra.ph/file/9101ffa9637ca85a5cae1.jpg" + } +} diff --git a/domains/ibrahimtech.json b/domains/ibrahimtech.json new file mode 100644 index 000000000..11e7d7576 --- /dev/null +++ b/domains/ibrahimtech.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ibrahimaitech", + "email": "ibrahimaik045@gmail.com" + }, + "record": { + "URL": "https://telegra.ph/file/13685b7a1d9131dd7ca27.jpg" + } +} diff --git a/domains/ice-head.json b/domains/ice-head.json new file mode 100644 index 000000000..6fe056ae3 --- /dev/null +++ b/domains/ice-head.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "Ice-Head", + "email": "heads.ice@protonmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 744472773715427368" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + + "TXT": "forward-email=heads.ice@protonmail.com" + } +} diff --git a/domains/icehead.json b/domains/icehead.json deleted file mode 100644 index d68635ea9..000000000 --- a/domains/icehead.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Domain for my Github Page.", - "repo": "https://github.com/Ice-Head/ice-head.github.io", - "owner": { - "username": "Ice-Head", - "email": "heads.ice@protonmail.com" - }, - "record": { - "CNAME": "ice-head.github.io" - } -} diff --git a/domains/icm.json b/domains/icm.json index 323ffb176..fb8145038 100644 --- a/domains/icm.json +++ b/domains/icm.json @@ -4,7 +4,7 @@ "owner": { "username": "ICM185", "email": "ironcladmonster185@gmail.com" -}, + }, "record": { "CNAME": "icm185.github.io" } diff --git a/domains/ico-bc.json b/domains/ico-bc.json new file mode 100644 index 000000000..d9258815a --- /dev/null +++ b/domains/ico-bc.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ChiliDain1010", + "email": "", + "discord": "1109163497750802462", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gUF9X8XLXk8fV1nD3vgJPKAV4fsYWamF7-F91O8zRN8SqFwSJXkrR8C9FXdear7XLnvprgNxJRM0tNi5uVtQUQHbgfekS1N_4TJzZt-lPpRpxDOS9wbDWyOs0MBJWSmty4eTNHo8HyrTBByPCa5G15TDkhXBRliKMGD2g2aW-qqPPOODIhZ5WCscwdKbn2mX8o8dDP6G0GUVsrgQEHspMyPwp34C8oJKVwzfj0OIatq5Cc_h7eGzQEKubJtDAmuJP7NnrJg-U1qui3K_iNGbeO_d-Hwv5_eHi5oelQfrbbKWfsrU9Ivb3wy-BWRSMk78gY4NskCuNXh8K6e3JYyRwg.yMnIahir7C9grLkf0WWMuw.FTH5aP1WdPaBiU6df-QWwfe6kx3fbHB1PnbIEAcr_WwRovDDUJMMZ6LYjIdPWg0xzLOty0dLkPM97scpH8CdDOqKG44A13IpvtzKSwh3Vgg.nLBgLSpeEYUNmrmEGSePLg" + }, + + "record": { + "A": ["59.93.130.149"] + } + } + \ No newline at end of file diff --git a/domains/icy.json b/domains/icy.json new file mode 100644 index 000000000..c4be32a18 --- /dev/null +++ b/domains/icy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "IcyonGit", + "email": "Jazzyvela2009@outlook.com" + }, + "record": { + "CNAME": "icyongit.github.io" + } +} diff --git a/domains/id.json b/domains/id.json new file mode 100644 index 000000000..d38041008 --- /dev/null +++ b/domains/id.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "its-id", + "email": "", + "discord": "342664542754570250" + }, + "record": { + "CNAME": "portfolio-main-q8dxiuiap-indrakantdanas-projects.vercel.app" + } + } + \ No newline at end of file diff --git a/domains/id.youfoundalpha.json b/domains/id.youfoundalpha.json new file mode 100644 index 000000000..fcc7369ef --- /dev/null +++ b/domains/id.youfoundalpha.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "URL": "https://keyoxide.org/8A6CD6545839F1276C7E5E3A92E7DB3078954562" + } +} diff --git a/domains/ide.json b/domains/ide.json new file mode 100644 index 000000000..3425d95c7 --- /dev/null +++ b/domains/ide.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "URL": "https://rustroid.is-a.dev" + } +} diff --git a/domains/idot.json b/domains/idot.json index 89778d352..de492b554 100644 --- a/domains/idot.json +++ b/domains/idot.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "LackingCats", - "email": "jackson.marsden6@gmail.com" - }, + "owner": { + "username": "LackingCats", + "email": "jackson.marsden6@gmail.com" + }, - "record": { - "CNAME": "idot.hopto.org" - } + "record": { + "CNAME": "idot.hopto.org" + } } diff --git a/domains/ignasius.json b/domains/ignasius.json new file mode 100644 index 000000000..79fcef4cd --- /dev/null +++ b/domains/ignasius.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ace3", + "email": "ace3xx@gmail.com" + }, + "record": { + "A": ["138.2.84.251"] + } +} diff --git a/domains/igor.json b/domains/igor.json new file mode 100644 index 000000000..03ed9fa44 --- /dev/null +++ b/domains/igor.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "igorwastaken", + "email": "figueiredoigor325@gmail.com" + }, + + "record": { + "CNAME": "new-portfolio-84v.pages.dev" + } +} diff --git a/domains/ihsan.json b/domains/ihsan.json deleted file mode 100644 index 4b1807936..000000000 --- a/domains/ihsan.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "XzFrosT", - "email": "mschodeihsan@gmail.com" - }, - "record": { - "CNAME": "ihsanhardiansah.me" - } - } - \ No newline at end of file diff --git a/domains/ihzan.json b/domains/ihzan.json deleted file mode 100644 index da1744837..000000000 --- a/domains/ihzan.json +++ /dev/null @@ -1,11 +0,0 @@ - -{ - "owner": { - "username": "Ihsan-N", - "email": "abuihsan341@gmail.com" - }, - "record": { - "CNAME": "4a08a93f-e142-4ae8-93f3-6cd7dc6304b7.id.repl.co" - } -} - \ No newline at end of file diff --git a/domains/ikdan.json b/domains/ikdan.json new file mode 100644 index 000000000..44355691e --- /dev/null +++ b/domains/ikdan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kirill2255", + "email": "ailcenko019@gmail.com" + }, + "record": { + "A": ["95.163.215.114"] + } +} diff --git a/domains/ikhlashmulya.json b/domains/ikhlashmulya.json new file mode 100644 index 000000000..5ec9df23e --- /dev/null +++ b/domains/ikhlashmulya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ikhlashmulya", + "email": "nurahmanmulya@gmail.com" + }, + "record": { + "CNAME": "ikhlashmulya.github.io" + } +} diff --git a/domains/ikjun.json b/domains/ikjun.json new file mode 100644 index 000000000..903662e11 --- /dev/null +++ b/domains/ikjun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "no-ikjun", + "email": "choiikjun1101@gmail.com" + }, + "record": { + "CNAME": "ikjun.com" + } +} diff --git a/domains/ikraiyan.json b/domains/ikraiyan.json new file mode 100644 index 000000000..ef9e5eb18 --- /dev/null +++ b/domains/ikraiyan.json @@ -0,0 +1,12 @@ +{ + "description": "For my Portfolio", + "repo": "https://github.com/IKRAIYAN/ikraiyan.github.io", + "owner": { + "username": "IKRAIYAN", + "email": "ihkraiyan@gmail.com", + "discord": "I_K_RAIYAN#7946" + }, + "record": { + "CNAME": "ikraiyan.github.io" + } +} diff --git a/domains/ilawy.json b/domains/ilawy.json new file mode 100644 index 000000000..4527b33b3 --- /dev/null +++ b/domains/ilawy.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "repo": "https://github.com/ilawy/ilawy", + "owner": { + "username": "ilawy", + "email": "ilawy@proton.me" + }, + "record": { + "CNAME": "ilawy.pages.dev" + } +} diff --git a/domains/illy.json b/domains/illy.json new file mode 100644 index 000000000..2f8bd197e --- /dev/null +++ b/domains/illy.json @@ -0,0 +1,11 @@ +{ + "description": "Personal about me and Projects website", + "repo": "https://github.com/illy-dev/illy-dev.github.io", + "owner": { + "username": "illy-dev", + "email": "illythehase@gmail.com" + }, + "record": { + "CNAME": "illy-dev.github.io" + } +} diff --git a/domains/ilovechickennuggets.json b/domains/ilovechickennuggets.json new file mode 100644 index 000000000..df20ea7fc --- /dev/null +++ b/domains/ilovechickennuggets.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "getSono", + "email": "", + "discord": "1222250424309121145", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gAkGYSIGLwn_jm-_gUHR_Yl0sAylIkL4McCk_gZ_nXyibqjeQ_DobeuRsJfT9cRy2ddnIcQC6JwrZp9daFsrxdly1ZznSBGCporx8KIuIEYvgrP4HH6eWSORAsqE1Toph2WGdS-yk4qKwhJWgmKrZWtvjMEbUvaD0GwqvphY5MwnIIMov9_rn_ymUrnUg2rrAsy2BCUarvUT4Vf5UOmyUhSTcSp9Vemh7AM9SMytSSVTQfSb9w-G5rFMDbETYlyyVrvUEGn3fAqaxZTWd_IdqGW9X-xOJxGbNiJw6KQUcEsFwpb24mekOJD_Iz4OpRAa4P0zirQiDsFbqJBqduoReQ.moQSqRWIl7klP2yb37raLw.jNZ0pE7tDOltrj235y-bai83aUEkeOsQcA5K-g1zFKv1U6KEV7pXxE4M8ymTLcaVsPVEoUxzlwo44RCDjOxLb106X3NMGV5-hLHxMu23Ees.rtL6ctgRQu60iQYiFGxsCQ" + }, + + "record": { + "CNAME": "getsono.github.io" + } + } + \ No newline at end of file diff --git a/domains/imad.json b/domains/imad.json index a6f00d379..7eec7155d 100644 --- a/domains/imad.json +++ b/domains/imad.json @@ -6,8 +6,6 @@ "email": "imad.kh@outlook.com" }, "record": { - "A": [ - "20.101.44.225" - ] + "A": ["20.101.44.225"] } } diff --git a/domains/images.civic.json b/domains/images.civic.json new file mode 100644 index 000000000..1da09d2c7 --- /dev/null +++ b/domains/images.civic.json @@ -0,0 +1,12 @@ +{ + "description": "image server", + "repo": "https://github.com/civic1007/image-service", + "owner": { + "username": "civic1007", + "email": "", + "discord": "civic1007" + }, + "record": { + "CNAME": "civics-api.pages.dev" + } +} diff --git a/domains/imat.json b/domains/imat.json new file mode 100644 index 000000000..f5ae19578 --- /dev/null +++ b/domains/imat.json @@ -0,0 +1,11 @@ +{ + "description": "Developer portfolio", + "repo": "https://github.com/imatx/imatx.github.io", + "owner": { + "username": "imatx", + "email": "adam.essakhi16+github@gmail.com" + }, + "record": { + "CNAME": "sites.bootstrapstudio.io" + } +} diff --git a/domains/imd.json b/domains/imd.json index a6f00d379..7eec7155d 100644 --- a/domains/imd.json +++ b/domains/imd.json @@ -6,8 +6,6 @@ "email": "imad.kh@outlook.com" }, "record": { - "A": [ - "20.101.44.225" - ] + "A": ["20.101.44.225"] } } diff --git a/domains/imekachi.json b/domains/imekachi.json deleted file mode 100644 index 9935a546c..000000000 --- a/domains/imekachi.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "imekachi", - "email": "imekachi@gmail.com" - }, - - "record": { - "CNAME": "hashnode.network" - } - } - \ No newline at end of file diff --git a/domains/img.cala.json b/domains/img.cala.json new file mode 100644 index 000000000..7cbd431f6 --- /dev/null +++ b/domains/img.cala.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "calamitywoah", + "email": "krivojta@gmail.com", + "discord": "981555580495867964" + }, + + "record": { + "CNAME": "calamitywoah.github.io" + } +} diff --git a/domains/img.json b/domains/img.json deleted file mode 100644 index a64e7d895..000000000 --- a/domains/img.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a website to save some images", - "repo": "https://github.com/leecheeyong/leecheeyong", - "owner": { - "username": "leecheeyong", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "dd04023a-b6e9-4158-858e-bad08e56f201.id.repl.co" - } -} diff --git a/domains/img.juststudio.json b/domains/img.juststudio.json new file mode 100644 index 000000000..62374a88f --- /dev/null +++ b/domains/img.juststudio.json @@ -0,0 +1,17 @@ +{ + "description": "JustStudio.", + "repo": "https://github.com/JustStudio7/images", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/img.kenny.json b/domains/img.kenny.json new file mode 100644 index 000000000..1f3d6287f --- /dev/null +++ b/domains/img.kenny.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KennySB-dev", + "email": "kennybugeja@gmail.com" + }, + "record": { + "CNAME": "ikenny.only-fans.club" + } +} diff --git a/domains/img.suki.json b/domains/img.suki.json index 98bc7bc88..4ae0c87c0 100644 --- a/domains/img.suki.json +++ b/domains/img.suki.json @@ -4,6 +4,6 @@ "email": "sukimayoo@outlook.com" }, "record": { - "CNAME": "cb594ad8-2514-45d4-94a7-538476039dec.id.repl.co" + "A": ["69.197.135.204"] } } diff --git a/domains/imide.json b/domains/imide.json new file mode 100644 index 000000000..9bc78a0e2 --- /dev/null +++ b/domains/imide.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "imide", + "email": "", + "discord": "555915168932954112" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/imlasiyah.json b/domains/imlasiyah.json index 33cf98779..531779648 100644 --- a/domains/imlasiyah.json +++ b/domains/imlasiyah.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "ImLasiya", + "email": "senash@darktsysl.onmicrosoft.com" + }, - { - "owner": { - "username": "ImLasiya", - "email": "senash@darktsysl.onmicrosoft.com" - }, - - "record": { - "CNAME": "imlasiya.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "imlasiya.github.io" + } +} diff --git a/domains/imlauera.json b/domains/imlauera.json new file mode 100644 index 000000000..494048efe --- /dev/null +++ b/domains/imlauera.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imlauera", + "email": "suurrend3r@gmail.com" + }, + "record": { + "CNAME": "imlauera.github.io" + } +} diff --git a/domains/imm0nv1nhtv.json b/domains/imm0nv1nhtv.json new file mode 100644 index 000000000..4aff3bd16 --- /dev/null +++ b/domains/imm0nv1nhtv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imm0nv1nhtv", + "email": "windows10phamvinh+github@gmail.com" + }, + "record": { + "CNAME": "imm0nv1nhtv.pages.dev" + } +} diff --git a/domains/immails.json b/domains/immails.json deleted file mode 100644 index 5e70eecc5..000000000 --- a/domains/immails.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ImMAils", - "email": "anton140315@gmail.com", - "discord": "I'mMAils#1238" - }, - "description": "Why? To share my projects and other stuff. Like discord bot, node.js modules or even games!", - "record": { - "CNAME": "f0476060.xsph.ru" - } -} diff --git a/domains/impsycho.json b/domains/impsycho.json deleted file mode 100644 index f07f6339a..000000000 --- a/domains/impsycho.json +++ /dev/null @@ -1,9 +0,0 @@ - { - "owner": { - "username": "OpAayush", - "email": "aayushmagrawal@gmail.com" - }, - "record": { - "CNAME": "27b81edb-5fc7-4c0c-82c5-2f96e325f113.id.repl.co" - } - } diff --git a/domains/imran.json b/domains/imran.json new file mode 100644 index 000000000..834373c01 --- /dev/null +++ b/domains/imran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imranmollajoy", + "email": "imranmollajoy@gmail.com" + }, + "record": { + "CNAME": "imranmollajoy.github.io" + } +} diff --git a/domains/imskanand.json b/domains/imskanand.json new file mode 100644 index 000000000..7e5e25962 --- /dev/null +++ b/domains/imskanand.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShubhamkumarAnand", + "email": "the.anand3099@gmail.com" + }, + "record": { + "URL": "https://imskanand.vercel.app" + } +} diff --git a/domains/imsoumyaneel.json b/domains/imsoumyaneel.json new file mode 100644 index 000000000..2e2679abb --- /dev/null +++ b/domains/imsoumyaneel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "A-Little-Hat", + "email": "soumyasarkar309@gmail.com" + }, + "record": { + "CNAME": "a-little-hat.github.io" + } +} diff --git a/domains/imsudip.json b/domains/imsudip.json deleted file mode 100644 index acfb3019f..000000000 --- a/domains/imsudip.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A personal portfolio site for all my projects", - "repo": "https://github.com/imsudip/portfolio", - "owner": { - "username": "imsudip", - "email": "sudipghosh9333@gmail.com" - }, - "record": { - "URL": "https://portfolio.imsudip.ml" - } -} diff --git a/domains/imy.json b/domains/imy.json new file mode 100644 index 000000000..1c09d2596 --- /dev/null +++ b/domains/imy.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio", + "repo": "https://github.com/IMYdev/IMYdev.github.io", + "owner": { + "username": "IMYdev", + "email": "omranmansour096@gmail.com" + }, + "record": { + "CNAME": "IMYdev.github.io" + } +} diff --git a/domains/imzihad21.json b/domains/imzihad21.json deleted file mode 100644 index ef6ebd1da..000000000 --- a/domains/imzihad21.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "IMZihad21", - "email": "mofajjalrasul@gmail.com" - }, - "record": { - "CNAME": "ec2-18-141-8-212.ap-southeast-1.compute.amazonaws.com" - } -} diff --git a/domains/imzulkar.json b/domains/imzulkar.json index ac53bb49c..2ea7af4f0 100644 --- a/domains/imzulkar.json +++ b/domains/imzulkar.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "imzulkar", - "email": "gmzulkar@gmail.com" - }, - "record": { - "CNAME": "imzulkar.github.io" - } + "owner": { + "username": "imzulkar", + "email": "gmzulkar@gmail.com" + }, + "record": { + "CNAME": "imzulkar.github.io" } +} diff --git a/domains/in.mcstatus.json b/domains/in.mcstatus.json new file mode 100644 index 000000000..6bc57f038 --- /dev/null +++ b/domains/in.mcstatus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/incbom.json b/domains/incbom.json index 969dfd365..d169f2673 100644 --- a/domains/incbom.json +++ b/domains/incbom.json @@ -1,12 +1,12 @@ { - "description": "Incbom's Portfolo", - "repo": "https://github.com/incbomdev/incbomdev.github.io", - "owner": { - "username": "IncbomDev", - "email": "incbomyt@gmail.com", - "twitter": "IncbomYT" - }, - "record": { - "CNAME": "incbomdev.github.io" - } -} + "description": "Incbom's Portfolo", + "repo": "https://github.com/incbomdev/incbomdev.github.io", + "owner": { + "username": "IncbomDev", + "email": "incbomyt@gmail.com", + "twitter": "IncbomYT" + }, + "record": { + "CNAME": "incbomdev.github.io" + } +} diff --git a/domains/indidee.json b/domains/indidee.json new file mode 100644 index 000000000..7c283d282 --- /dev/null +++ b/domains/indidee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "indideee", + "email": "amberisamab@gmail.com" + }, + "record": { + "CNAME": "indideee.github.io" + } +} diff --git a/domains/indodev.json b/domains/indodev.json new file mode 100644 index 000000000..aeee97318 --- /dev/null +++ b/domains/indodev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Khuirul-Huda", + "email": "hudah2102@gmail.com", + "discord": "694850450410700831" + }, + + "record": { + "A": ["178.128.211.205"] + } +} diff --git a/domains/indra87g.json b/domains/indra87g.json new file mode 100644 index 000000000..063ea2303 --- /dev/null +++ b/domains/indra87g.json @@ -0,0 +1,11 @@ +{ + "description": "Indra Sah Noeldy", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "indra87g", + "email": "twinightwheel50@gmail.com" + }, + "record": { + "CNAME": "indra87g.surge.sh" + } +} diff --git a/domains/indreshp135.json b/domains/indreshp135.json new file mode 100644 index 000000000..ac54b5d18 --- /dev/null +++ b/domains/indreshp135.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "indreshp135", + "email": "indreshp135@gmail.com" + }, + + "record": { + "A": ["144.24.138.210"] + } +} diff --git a/domains/inf.json b/domains/inf.json new file mode 100644 index 000000000..15707b541 --- /dev/null +++ b/domains/inf.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "InfinityDevTech", + "email": "", + "discord": "inf5" + }, + "record": { + "URL": "https://infdev.netlify.app" + } +} diff --git a/domains/infernum.json b/domains/infernum.json index 224e00ae5..127f7edd4 100644 --- a/domains/infernum.json +++ b/domains/infernum.json @@ -1,11 +1,11 @@ { - "description": "Portfolio site for me.", - "repo": "https://github.com/Infernum1/Infernum1.github.io", - "owner": { - "username": "Infernum1", - "email": "infernum1212@gmail.com" - }, - "record": { - "CNAME": "Infernum1.github.io" - } -} + "description": "Portfolio site for me.", + "repo": "https://github.com/Infernum1/Infernum1.github.io", + "owner": { + "username": "Infernum1", + "email": "infernum1212@gmail.com" + }, + "record": { + "CNAME": "Infernum1.github.io" + } +} diff --git a/domains/infinitecode.json b/domains/infinitecode.json deleted file mode 100644 index d93c007d8..000000000 --- a/domains/infinitecode.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Infinite's personal portfolio!", - "owner": { - "username": "InfiniteCode", - "email": "infinitecode@infiniteco.de" - }, - "record": { - "URL": "https://infiniteco.de" - } -} diff --git a/domains/infiniteloop.json b/domains/infiniteloop.json new file mode 100644 index 000000000..787ed3d21 --- /dev/null +++ b/domains/infiniteloop.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + "record": { + "CNAME": "roktim32.github.io" + } +} diff --git a/domains/infinity.json b/domains/infinity.json deleted file mode 100644 index 382c28774..000000000 --- a/domains/infinity.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Infinitybeond1", - "email": "Infinitybeond1@protonmail.com" - }, - "record": { - "CNAME": "1de2d007-3905-40b1-b64f-d166b367a43d.id.repl.co" - } - } - diff --git a/domains/infinityloop.json b/domains/infinityloop.json new file mode 100644 index 000000000..3a57b4392 --- /dev/null +++ b/domains/infinityloop.json @@ -0,0 +1,12 @@ +{ + "description": "Short link for sharing", + "repo": "https://github.com/InfinityLoop1/InfinityLoop", + "owner": { + "username": "InfinityLoop", + "email": "", + "discord": "infinityloopdev" + }, + "record": { + "URL": "https://infinityloop1.netlify.app" + } +} diff --git a/domains/infinotiver.json b/domains/infinotiver.json new file mode 100644 index 000000000..eb05bf447 --- /dev/null +++ b/domains/infinotiver.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "infinotiver", + "email": "prakarsh.3482@gmail.com" + }, + "record": { + "CNAME": "infinotiver.github.io" + } +} diff --git a/domains/info.vamtic.json b/domains/info.vamtic.json new file mode 100644 index 000000000..7e6366b80 --- /dev/null +++ b/domains/info.vamtic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vamtic", + "email": "vamtic@yahoo.com" + }, + "record": { + "CNAME": "info-86z.pages.dev" + } +} diff --git a/domains/inj3c7i0n.json b/domains/inj3c7i0n.json new file mode 100644 index 000000000..1309b7055 --- /dev/null +++ b/domains/inj3c7i0n.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Inj3c7i0n", + "email": "Inj3c7ed@gmail.com" + }, + + "record": { + "CNAME": "inj3c7i0n.github.io" + } +} diff --git a/domains/ink.json b/domains/ink.json deleted file mode 100644 index dbea2d1a9..000000000 --- a/domains/ink.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "project docs", - "repo": "https://github.com/leecheeyong/leecheeyong", - "owner": { - "username": "leecheeyong", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "eb916d53-6d53-4d03-98b4-06b9dd7352e7.id.repl.co" - } -} diff --git a/domains/inkilu.json b/domains/inkilu.json index d7a45e2c1..aeaf74889 100644 --- a/domains/inkilu.json +++ b/domains/inkilu.json @@ -1,12 +1,12 @@ { - "description": "Personal Page", - "repo": "https://github.com/inkilu/Personal-web", - "owner": { - "username": "inkilu", - "email": "", - "discord": "ink#6343" - }, - "record": { - "CNAME": "inkilu.github.io" - } -} + "description": "Personal Page", + "repo": "https://github.com/inkilu/Personal-web", + "owner": { + "username": "inkilu", + "email": "", + "discord": "ink#6343" + }, + "record": { + "CNAME": "inkilu.github.io" + } +} diff --git a/domains/insencel.json b/domains/insencel.json new file mode 100644 index 000000000..cc5adf59d --- /dev/null +++ b/domains/insencel.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Insencel", + "email": "devsencel@gmail.com" + }, + "description": "A domain for hosting a typo3 account to test things with and build test-websites", + "record": { + "A": [ + "164.68.124.156" + ] + } +} diff --git a/domains/instantnoodles.json b/domains/instantnoodles.json deleted file mode 100644 index bd9b9c820..000000000 --- a/domains/instantnoodles.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "info@instantnoodles.is-a.dev", - "repo": "https://github.com/NoodlesDev1/InstantNoodles-portfolio", - "owner": { - "username": "NoodlesDev1", - "email": "info@InstantNoodles.is-a.dev" - }, - "record": { - "A": ["172.66.47.94", "172.66.44.162"], - "MX": ["mx1.improvmx.com","mx2.improvmx.com"] - } -} diff --git a/domains/instapi.aditya.json b/domains/instapi.aditya.json deleted file mode 100644 index c7acbfab5..000000000 --- a/domains/instapi.aditya.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "owner": { - "username": "pythonmcpi", - "email": "user3456@insomnia247.nl", - "irc": "user3456@irc.insomnia247.nl/#shells", - "discord": "Little Furret#7901", - "note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc." - }, - "description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯", - "record": { - "A": ["76.223.55.44"] - } -} diff --git a/domains/integr.json b/domains/integr.json new file mode 100644 index 000000000..b343f5964 --- /dev/null +++ b/domains/integr.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Page", + "repo": "https://github.com/Integr-0/integr-0.github.io", + "owner": { + "username": "Integr-0", + "email": "erik.reitbauer@outlook.de", + "discord": "integr_" + }, + "record": { + "CNAME": "integr-0.github.io" + } +} diff --git a/domains/integra.json b/domains/integra.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/integra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/intergrav.json b/domains/intergrav.json index a89da8115..79d5a57d7 100644 --- a/domains/intergrav.json +++ b/domains/intergrav.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "intergrav", + "email": "devinkid1@gmail.com" + }, - { - "owner": { - "username": "intergrav", - "email": "devinkid1@gmail.com" - }, - - "record": { - "CNAME": "intergrav.github.io" - } - } - + "record": { + "CNAME": "intergrav.github.io" + } +} diff --git a/domains/interstellaros.json b/domains/interstellaros.json new file mode 100644 index 000000000..cf559db57 --- /dev/null +++ b/domains/interstellaros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jacksoncraft859", + "email": "pollardjackson@outlook.com" + }, + "record": { + "TXT": "replit-verify=ac38945f-f53b-4b1b-980d-e2a1d64175c6" + } +} diff --git a/domains/invalidnoah.json b/domains/invalidnoah.json new file mode 100644 index 000000000..51e5ef603 --- /dev/null +++ b/domains/invalidnoah.json @@ -0,0 +1,12 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/InvalidNoah/InvalidNoah.github.io", + "owner": { + "username": "InvalidNoah", + "email": "me@noahist.live", + "twitter": "noahlikespmmp" + }, + "record": { + "CNAME": "invalidnoah.github.io" + } +} diff --git a/domains/ionetty.json b/domains/ionetty.json deleted file mode 100644 index 9f42fac17..000000000 --- a/domains/ionetty.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Minecraft server n such.", - "repo": "https://github.com/tootie112", - "owner": { - "username": "tootie112", - "email": "", - "discord": "Io.Netty#3118" - }, - "record": { - "A": ["65.21.160.210"] - } -} diff --git a/domains/iosviet.json b/domains/iosviet.json new file mode 100644 index 000000000..a5bb861d8 --- /dev/null +++ b/domains/iosviet.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "huutanphp", + "email": "", + "discord": "595368972594184235", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UUB3u8JnQhweiOtS8ICf09sYk-WZL0haW_S50x1JgijmaiIBNCcX8hzE5xJVR2QXtiR_DfbseMXMtHVq5p_9SHf-qyiD8LKd22TKgorKH30PxP2Ej6Qw9LhbQKdI7EuAlBBGKyKm9gLWd8HYVeQlXMuya5X6AEKQS4WoH_GuX3itLnFUKf1hFZpEb5lJrdRKrvbTQgTXkLHsXggUi4Crcdfav4lmsA7DidmmfqpwXVy90TXdluqExc70JrtIY_9q0NDXwBe5boFOFOEYh7GW9MG0QHhor2Xibnd0pi5P5jAt9fUCGhUMMHKWTLBMjLumgswe8XEW4JXQGwmBBVMt_A.KpU_DlcxDclPoZwMO0H7rA.igZyUYSqQEyzpCfjGYAQivF9Jk8A6TzvA6sf2Ju7c4jP617xNtd7ZtTz2Wy9eYeSyF0ZDeEXn5RSWphywrSaIB6jhvzuEQ4xERnRW8ozdN0.xLh6AUpP7bDHQ7P8DwaZNw" + }, + + "record": { + "A": ["3.106.238.127"] + } + } + \ No newline at end of file diff --git a/domains/ipamod.json b/domains/ipamod.json new file mode 100644 index 000000000..e12e9fe15 --- /dev/null +++ b/domains/ipamod.json @@ -0,0 +1,10 @@ +{ + "description": "ipamod Website", + "owner": { + "username": "huutanphp", + "email": "huutan.dev@gmail.com" + }, + "record": { + "A": ["3.106.238.127"] + } +} \ No newline at end of file diff --git a/domains/ipsum.json b/domains/ipsum.json new file mode 100644 index 000000000..0089d3bca --- /dev/null +++ b/domains/ipsum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ashlynmay", + "email": "may.ashlyn0723@gmail.com" + }, + "record": { + "CNAME": "ashlynmay-github-io.onrender.com" + } +} diff --git a/domains/ipuppyyt.json b/domains/ipuppyyt.json new file mode 100644 index 000000000..7ea3812f8 --- /dev/null +++ b/domains/ipuppyyt.json @@ -0,0 +1,22 @@ +{ + "description": "My own website", + "owner": { + "username": "ipuppyyt", + "email": "dhanush6102002@gmail.com", + "twitter": "ipuppyyt", + "discord": "iPuppyYT#3684" + }, + "record": { + "A": [ + "185.199.110.153", + "185.199.108.153", + "185.199.111.153", + "185.199.109.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/iqat.json b/domains/iqat.json new file mode 100644 index 000000000..43152397d --- /dev/null +++ b/domains/iqat.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio for Muhammad Taqi (Iqat)", + "repo": "https://github.com/Iqat476/Iqat476.github.io", + "owner": { + "username": "Iqat476", + "email": "iqat476@gmail.com" + }, + "record": { + "CNAME": "Iqat476.github.io" + } +} diff --git a/domains/isa.json b/domains/isa.json new file mode 100644 index 000000000..c0c7fd45a --- /dev/null +++ b/domains/isa.json @@ -0,0 +1,12 @@ +{ + "description": "This is for nottisa cool stuff", + "repo": "https://github.com/nottisa/nottisa.github.io", + "owner": { + "username": "nottisa", + "email": "theonewhohasthisemail@gmail.com", + "twitter": "_bob90368" + }, + "record": { + "CNAME": "nottisa.github.io" + } +} diff --git a/domains/isaac.json b/domains/isaac.json new file mode 100644 index 000000000..74126117b --- /dev/null +++ b/domains/isaac.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "IsaacTouhami", + "email": "isaaco7274@gmail.com" + }, + + "record": { + "CNAME": "isaactouhami.github.io" + } +} diff --git a/domains/isabella.json b/domains/isabella.json new file mode 100644 index 000000000..d0e038a61 --- /dev/null +++ b/domains/isabella.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MullerIsabella", + "email": "AlpineDreamer92@protonmail.com" + }, + "record": { + "CNAME": "mullerisabella.onrender.com" + } +} diff --git a/domains/isabelrosillo.json b/domains/isabelrosillo.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/isabelrosillo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/isaiahday.json b/domains/isaiahday.json index f56aa699d..c4e8135bb 100644 --- a/domains/isaiahday.json +++ b/domains/isaiahday.json @@ -1,12 +1,12 @@ { - "description": "Isaiah08-D's personal website.", - "repo": "https://github.com/Isaiah08-D/isaiah08-d.github.io", - "owner": { - "username": "Isaiah08-D", - "email": "isaiahgrisha@gmail.com", - "discord": "isaiah08#6008" - }, - "record": { - "CNAME": "isaiah08-d.github.io" - } -} + "description": "Isaiah08-D's personal website.", + "repo": "https://github.com/Isaiah08-D/isaiah08-d.github.io", + "owner": { + "username": "Isaiah08-D", + "email": "isaiahgrisha@gmail.com", + "discord": "isaiah08#6008" + }, + "record": { + "CNAME": "isaiah08-d.github.io" + } +} diff --git a/domains/ish.json b/domains/ish.json deleted file mode 100644 index e5e2d0ff1..000000000 --- a/domains/ish.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "iamblueish", - "email": "hey@blueish.gq" - }, - "record": { - "CNAME": "dev.blueish.gq" - } -} diff --git a/domains/ishan-chawla.json b/domains/ishan-chawla.json new file mode 100644 index 000000000..8e8803394 --- /dev/null +++ b/domains/ishan-chawla.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KooShnoo", + "email": "ishan.kpv@gmail.com" + }, + "record": { + "CNAME": "portfolio-se0.pages.dev" + } +} diff --git a/domains/ishan.json b/domains/ishan.json deleted file mode 100644 index d6ca843aa..000000000 --- a/domains/ishan.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Ishan Goel's personal website (quackduck@github)", - "repo": "https://github.com/quackduck/quackduck.github.io", - "owner": { - "username": "quackduck", - "email": "igoel.mail@gmail.com", - "name": "Ishan Goel" - }, - "record": { - "CNAME": "quackduck.github.io" - } -} diff --git a/domains/ishh.json b/domains/ishh.json index 91fa6accb..d4ef01652 100644 --- a/domains/ishh.json +++ b/domains/ishh.json @@ -1,10 +1,11 @@ { + "description": "ishh.is-a.dev", + "repo": "https://github.com/ishh-xd/ishh-xd.github.io", "owner": { - "username": "AdityaOP2008", - "discord": "844843800874582048", - "email": "bw.dev@yahoo.com" + "username": "ishh-xd", + "email": "ishh-xd@proton.me" }, "record": { - "CNAME": "570860f7-84fb-4ecd-8aee-015227be243d.id.repl.co" + "CNAME": "ishh-xd.github.io" } } diff --git a/domains/isrmicha.json b/domains/isrmicha.json index 07e19500c..d2f29a017 100644 --- a/domains/isrmicha.json +++ b/domains/isrmicha.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "isrmicha", - "email": "israel.micha@mercadolivre.com" - }, - "record": { - "URL": "https://github.com/isrmicha" - } - } - \ No newline at end of file +{ + "owner": { + "username": "isrmicha", + "email": "israel.micha@mercadolivre.com" + }, + "record": { + "URL": "https://github.com/isrmicha" + } +} diff --git a/domains/issai.json b/domains/issai.json deleted file mode 100644 index 823c1a5e7..000000000 --- a/domains/issai.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "TheLimifiedLime", - "email": "", - "twitter": "TheLimifiedLime" - }, - "description": "I will use this to redirect to my main domain", - "repo": "https://github.com/TheLimifiedLime/issai.club", - "record": { - "URL": "https://issai.club" - } -} diff --git a/domains/itq.json b/domains/itq.json new file mode 100644 index 000000000..0640de655 --- /dev/null +++ b/domains/itq.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devitq", + "email": "itq.dev@ya.ru" + }, + "record": { + "URL": "https://github.com/devitq" + } +} diff --git a/domains/itsdemongamez.json b/domains/itsdemongamez.json new file mode 100644 index 000000000..e8710fb38 --- /dev/null +++ b/domains/itsdemongamez.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DemonGamez", + "email": "peterwyneg@gmail.com", + "discord": "1038747272701292584" + }, + + "record": { + "CNAME": "DemonGamez.github.io" + } +} diff --git a/domains/itskorn.json b/domains/itskorn.json new file mode 100644 index 000000000..213e91ded --- /dev/null +++ b/domains/itskorn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DemonGamez", + "email": "peterwyneg@gmail.com" + }, + "record": { + "CNAME": "itskorn.github.io" + } +} diff --git a/domains/itsmealdo.json b/domains/itsmealdo.json new file mode 100644 index 000000000..c707e146c --- /dev/null +++ b/domains/itsmealdo.json @@ -0,0 +1,11 @@ +{ + "description": "itsmealdo Webs", + "repo": "https://github.com/itsmealdo/itsmealdo.github.io", + "owner": { + "username": "itsmealdo", + "email": "aldosaputra@gmail.com" + }, + "record": { + "CNAME": "itsmealdo.github.io" + } +} diff --git a/domains/itsneufox.json b/domains/itsneufox.json new file mode 100644 index 000000000..96a3068df --- /dev/null +++ b/domains/itsneufox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsneufox", + "email": "ajuda@tntsamp.com" + }, + "record": { + "CNAME": "itsneufox.github.io" + } +} diff --git a/domains/itsnicecraft.json b/domains/itsnicecraft.json index e7ef48594..d379a7d90 100644 --- a/domains/itsnicecraft.json +++ b/domains/itsnicecraft.json @@ -1,12 +1,12 @@ -{ - "description": "Personal website", - "repo": "https://github.com/itsnicecraft/itsnicecraft.github.io", - "owner": { - "username": "itsnicecraft", - "email": "", - "twitter": "itsnicecraft" - }, - "record": { - "CNAME": "itsnicecraft.github.io" - } -} \ No newline at end of file +{ + "description": "Personal website", + "repo": "https://github.com/itsnicecraft/itsnicecraft.github.io", + "owner": { + "username": "itsnicecraft", + "email": "", + "twitter": "itsnicecraft" + }, + "record": { + "CNAME": "itsnicecraft.github.io" + } +} diff --git a/domains/itsomsarraf.json b/domains/itsomsarraf.json new file mode 100644 index 000000000..d8c84715b --- /dev/null +++ b/domains/itsomsarraf.json @@ -0,0 +1,11 @@ +{ + "description": "My personal Website", + "repo": "https://github.com/itsomsarraf/itsomsarraf.github.io", + "owner": { + "username": "itsOmSarraf", + "email": "itsomsarraf@gmail.com" + }, + "record": { + "CNAME": "itsomsarraf.github.io" + } +} diff --git a/domains/itsreimau.json b/domains/itsreimau.json new file mode 100644 index 000000000..7304cefd0 --- /dev/null +++ b/domains/itsreimau.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsreimau", + "email": "private.iblmln@gmail.com" + }, + "record": { + "CNAME": "itsreimau.github.io" + } +} diff --git a/domains/itsvick.json b/domains/itsvick.json index 19d93aef5..7fc284a99 100644 --- a/domains/itsvick.json +++ b/domains/itsvick.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "itsvick", + "email": "vivek_kasture@techjoomla.com" + }, - { - "owner": { - "username": "itsvick", - "email": "vivek_kasture@techjoomla.com" - }, - - "record": { - "CNAME": "itsvick.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "itsvick.github.io" + } +} diff --git a/domains/ittranducloc.json b/domains/ittranducloc.json new file mode 100644 index 000000000..db77b9d81 --- /dev/null +++ b/domains/ittranducloc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ittranducloc", + "email": "it.tranducloc@gmail.com" + }, + "record": { + "URL": "https://github.com/ittranducloc" + } +} diff --git a/domains/itzhenry.json b/domains/itzhenry.json new file mode 100644 index 000000000..13197cb25 --- /dev/null +++ b/domains/itzhenry.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/ItzHenry1/itzhenry1.github.io", + "owner": { + "username": "ItzHenry1", + "email": "trscrus@gmail.com" + }, + "record": { + "CNAME": "itzhenry1.github.io" + } +} diff --git a/domains/itzliam.json b/domains/itzliam.json index e0a48e650..6abc895b7 100644 --- a/domains/itzliam.json +++ b/domains/itzliam.json @@ -1,9 +1,9 @@ { -"owner": { -"username": "liamgaming23", -"email": "liamstickman123@gmail.com" -}, -"record": { -"CNAME": "liamgaming23.github.io" -} + "owner": { + "username": "liamgaming23", + "email": "liamstickman123@gmail.com" + }, + "record": { + "CNAME": "liamgaming23.github.io" + } } diff --git a/domains/itzporium.json b/domains/itzporium.json new file mode 100644 index 000000000..ce80161e4 --- /dev/null +++ b/domains/itzporium.json @@ -0,0 +1,13 @@ +{ + "description": "This subdomain is used for my personal website, just for a portfolio.", + "repo": "https://github.com/codernocook/codernocook.github.io", + "owner": { + "username": "codernocook", + "email": "poriumbox@fbi.ac", + "twitter": false, + "discord": "Itzporium#9655" + }, + "record": { + "CNAME": "codernocook.github.io" + } +} diff --git a/domains/ivan.json b/domains/ivan.json index db731c0e7..70675bc3b 100644 --- a/domains/ivan.json +++ b/domains/ivan.json @@ -6,4 +6,4 @@ "record": { "CNAME": "alexandrov.online" } -} \ No newline at end of file +} diff --git a/domains/ivolimasilva.json b/domains/ivolimasilva.json deleted file mode 100644 index 3852fd027..000000000 --- a/domains/ivolimasilva.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ivo Lima Silva's personal website", - "repo": "https://github.com/ivolimasilva/ivolimasilva.github.io", - "owner": { - "username": "ivolimasilva", - "email": "ivolimasilva@outlook.com" - }, - "record": { - "CNAME": "ivolimasilva.xyz" - } -} diff --git a/domains/ixdoggo.json b/domains/ixdoggo.json new file mode 100644 index 000000000..7d1d87550 --- /dev/null +++ b/domains/ixdoggo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xellion-dev", + "email": "xelxtct@gmail.com" + }, + "record": { + "CNAME": "ixdoggo.pages.dev" + } +} diff --git a/domains/iystreem.json b/domains/iystreem.json new file mode 100644 index 000000000..648cd5ecd --- /dev/null +++ b/domains/iystreem.json @@ -0,0 +1,11 @@ +{ + "description": "its for my portfolio", + "repo": "https://github.com/IYSTREEM/iystreem.github.io", + "owner": { + "username": "IYSTREEM", + "email": "iystreem186@gmail.com" + }, + "record": { + "CNAME": "iystreem.github.io" + } +} diff --git a/domains/j.json b/domains/j.json new file mode 100644 index 000000000..8207723f2 --- /dev/null +++ b/domains/j.json @@ -0,0 +1,11 @@ +{ + "description": "Short link to juststudio.is-a.dev", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": ["89.106.200.1"] + } +} diff --git a/domains/j1shnu.json b/domains/j1shnu.json deleted file mode 100644 index dcfbc47de..000000000 --- a/domains/j1shnu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Jishnu's site for is-a.dev", - "repo": "https://github.com/j1shnu/j1shnu.github.io", - "owner": { - "username": "j1shnu", - "email": "pjishnu44@gmail.com" - }, - "record": { - "CNAME": "www.j1shnu.ml" - } -} \ No newline at end of file diff --git a/domains/ja.json b/domains/ja.json new file mode 100644 index 000000000..5690830d8 --- /dev/null +++ b/domains/ja.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jsJack", + "email": "hello@jackperry.co" + }, + "record": { + "URL": "https://jackperry.co" + } +} diff --git a/domains/jabin.json b/domains/jabin.json new file mode 100644 index 000000000..c3528d919 --- /dev/null +++ b/domains/jabin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jabinstech", + "email": "jabinstech.net@gmail.com" + }, + "record": { + "CNAME": "jabinstech.github.io" + } +} diff --git a/domains/jack.json b/domains/jack.json index 7ce4bc9f5..cc66ce2e9 100644 --- a/domains/jack.json +++ b/domains/jack.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "crepppy", - "email": "chapmanjack0777@gmail.com", - "discord": "crepppy#2758" - }, - "record": { - "URL": "https://jackchap.com" - } + "owner": { + "username": "crepppy", + "email": "chapmanjack0777@gmail.com", + "discord": "crepppy#2758" + }, + "record": { + "URL": "https://jackchap.com" + } } diff --git a/domains/jackfrost.json b/domains/jackfrost.json new file mode 100644 index 000000000..c38592604 --- /dev/null +++ b/domains/jackfrost.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JackFrost003", + "email": "jackfro03@gmail.com" + }, + "record": { + "URL": "https://shortner-yo72.onrender.com" + } +} diff --git a/domains/jacksonmalone.json b/domains/jacksonmalone.json new file mode 100644 index 000000000..5832f0353 --- /dev/null +++ b/domains/jacksonmalone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jacksonmalone", + "email": "jrm9918@gmail.com" + }, + "record": { + "CNAME": "jacksonmalone.github.io" + } +} diff --git a/domains/jacobtm.json b/domains/jacobtm.json deleted file mode 100644 index 8cc0f7880..000000000 --- a/domains/jacobtm.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "About me.", - "repo": "https://github.com/Jacob1Tm", - "owner": { - "username": "Jacob1Tm", - "email": "", - "twitter": "Jacob1_Tm" - }, - "record": { - "URL": "https://jacobtm.tk" - } -} diff --git a/domains/jadebetty.json b/domains/jadebetty.json new file mode 100644 index 000000000..8ac63a732 --- /dev/null +++ b/domains/jadebetty.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "JadeBetty", + "email": "", + "discord": "758617912566087681" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/jagi.json b/domains/jagi.json new file mode 100644 index 000000000..dc72e6d1d --- /dev/null +++ b/domains/jagi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "javhaa07", + "email": "jjagi02@gmail.com" + }, + "record": { + "CNAME": "jagi-is-a-dev.pages.dev" + } +} diff --git a/domains/jagruti-metaliya.json b/domains/jagruti-metaliya.json new file mode 100644 index 000000000..b3ea324b6 --- /dev/null +++ b/domains/jagruti-metaliya.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/jagruti-metaliya/jagruti-metaliya.github.io", + "owner": { + "username": "jagruti-metaliya", + "email": "jagruti.metaliya@truestaz.com" + }, + "record": { + "URL": "https://jagruti-metaliya.github.io" + } +} diff --git a/domains/jainam.json b/domains/jainam.json new file mode 100644 index 000000000..469fc0ecd --- /dev/null +++ b/domains/jainam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jainamoswal", + "email": "me@jainam.me" + }, + "record": { + "URL": "http://jainam.me" + } +} diff --git a/domains/jairomorales.json b/domains/jairomorales.json new file mode 100644 index 000000000..6d4fd0400 --- /dev/null +++ b/domains/jairomorales.json @@ -0,0 +1,12 @@ +{ + "description": "jairomorales.is-a.dev", + "repo": "https://github.com/Icky17/icky17.github.io", + "owner": { + "username": "Icky17", + "email": "jairomoralesperez0@gmail.com", + "discord": "icky17" + }, + "record": { + "CNAME": "icky17.github.io" + } +} diff --git a/domains/jake.json b/domains/jake.json new file mode 100644 index 000000000..091329342 --- /dev/null +++ b/domains/jake.json @@ -0,0 +1,11 @@ +{ + "description": "Jake's personal website and blog.", + "repo": "https://github.com/j-eo/j-eo.github.io", + "owner": { + "username": "j-eo", + "email": "website-contact.nem2h@silomails.com" + }, + "record": { + "CNAME": "jakeanto.pages.dev" + } +} diff --git a/domains/jalaj.json b/domains/jalaj.json index 64ad19746..ddd079e29 100644 --- a/domains/jalaj.json +++ b/domains/jalaj.json @@ -1,23 +1,17 @@ { - "description": "Jalaj's Portfolio", "repo": "https://github.com/jalajcodes/jalaj", "owner": { - "username": "jalajcodes", "email": "", - - "twitter": "jalajcodes" + "twitter": "jalajcodes" }, "record": { - "CNAME": "jalaj.up.railway.app" - } - } diff --git a/domains/james.json b/domains/james.json deleted file mode 100644 index 4783b0f60..000000000 --- a/domains/james.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "jmbdevs repo", - "repo": "https://github.com/jmbdevs/jmbdevs.github.io", - "owner": { - "username": "jmbdevs", - "email": "james@jmbdev.net", - "twitter": "jmbdevs" - }, - "record": { - "CNAME": "jmbdevs.github.io" - } -} diff --git a/domains/jamespi.json b/domains/jamespi.json new file mode 100644 index 000000000..7c332d79a --- /dev/null +++ b/domains/jamespi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sussy-OS", + "email": "SussyS0S-Operating-Systems@protonmail.com" + }, + "record": { + "URL": "https://cooperbrosssp.top" + } +} diff --git a/domains/jamestheflash22.json b/domains/jamestheflash22.json new file mode 100644 index 000000000..2d2fdf99c --- /dev/null +++ b/domains/jamestheflash22.json @@ -0,0 +1,18 @@ +{ + "description": "Use for zoho mail", + "repo": "https://github.com/JamesTheFlash22/JamesTheFlash22.github.io", + "owner": { + "username": "JamesTheFlash22", + "email": "davidebu43@gmail.com" + }, + "record": { + "TXT": [ + "zoho-verification=zb32026957.zmverify.zoho.eu" + ], + "MX": [ + "mx3.zoho.eu", + "mx2.zoho.eu", + "mx.zoho.eu" + ] + } +} diff --git a/domains/jamied132.json b/domains/jamied132.json new file mode 100644 index 000000000..40db7b1c4 --- /dev/null +++ b/domains/jamied132.json @@ -0,0 +1,11 @@ +{ + "description": "A personal portfolio about me, along with some other stuff (the repository is currently empty but I will add some stuff)", + "repo": "https://github.com/jamied132", + "owner": { + "username": "jamied132", + "email": "jamied132.email@gmail.com" + }, + "record": { + "CNAME": "jamied132.github.io" + } +} diff --git a/domains/jamieisgeek.json b/domains/jamieisgeek.json deleted file mode 100644 index a1c042d57..000000000 --- a/domains/jamieisgeek.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "jamieisgeek.is-a.dev.", - "repo": "https://github.com/jamieisgeek", - "owner": { - "username": "jamieisgeek", - "email": "jamieisgeek@gmail.com" - }, - "record": { - "URL": "https://jamieisgeek.jamiecodes.repl.co" - } -} diff --git a/domains/janco.json b/domains/janco.json new file mode 100644 index 000000000..3ed28457e --- /dev/null +++ b/domains/janco.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "JancoNel", + "email": "", + "discord": "1264555376918134796", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LXD6kezr5CJaRBhFUVB3WcB2IKWzrw1zn6yuWQNmDlGbppbOw7W1GqJWiqePOPHEA_7EVj2f-pvK1WnkFaW4i1g0zpqAPeyNQfyVtlpttW7cyWFJGe_gRoTznaXXvntNw84qOEIIuPqFFloq03Lqdj5Iox736TOefBr5uTSieAj1oJ-qcQS424nnBrremLgjE3mEXY9ORhaTYD3XPdbvX6iYKrDl8ooM_nmkorcZzmoNjCKHDe3p6TML2vuPey_YTX1R0hJGJ1A99VYdBCVhvfEeeEO9Aaxo9Nu-4Um78wMHqtp7oryLHpwOcUzp7a3rAIkjtQaNmiL4jHLoWJFgtw.GWB9aQvdXYxUHmvAYGxK0A.IfxHtkIYUorJIxI7RvkstIB_pGZ-baszSq-IpLE_9arsm3tPTctQbz_Urii0J1-nBvjUaKdkQiWQDa_YBawyT7qber-j-zZlunX-bILrcT4.L4Sb6DK6xcrjwkUsYRmLXw" + }, + + "record": { + "CNAME": "janconel.github.io" + } + } + \ No newline at end of file diff --git a/domains/janeberru.json b/domains/janeberru.json deleted file mode 100644 index 3751cf607..000000000 --- a/domains/janeberru.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "nicholasyoannou", - "email": "", - "discord": "janeberru#4594", - "note": "You can contact me by email or discord, really don't mind :)" - }, - "description": "I'll probably be testing code and such on janeberru.is-a.dev. ¯\\_(ツ)_/¯", - "record": { - "CNAME": "testing-12.nicholas.dev" - } -} diff --git a/domains/janeq.json b/domains/janeq.json new file mode 100644 index 000000000..2ae4a57a1 --- /dev/null +++ b/domains/janeq.json @@ -0,0 +1,11 @@ +{ + "description": "I wanna use this website as a database of brawl stars assets", + "repo": "https://github.com/notjaneq/bs", + "owner": { + "username": "notjaneq", + "email": "a2012989z@gmail.com" + }, + "record": { + "CNAME": "notjaneq.github.io" + } +} diff --git a/domains/janleigh.json b/domains/janleigh.json index 827796e2e..60a1c72e3 100644 --- a/domains/janleigh.json +++ b/domains/janleigh.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "janleigh", - "email": "janleigh@proton.me" - }, - "record": { - "CNAME": "janleigh.github.io" - } - } - +{ + "owner": { + "username": "janleigh", + "email": "janleigh@proton.me" + }, + "record": { + "CNAME": "janleigh.github.io" + } +} diff --git a/domains/janmb.json b/domains/janmb.json new file mode 100644 index 000000000..2f925f0d7 --- /dev/null +++ b/domains/janmb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "wansie1", + "email": "msc2tvdn@duck.com", + "discord": "962788530336178236" + }, + + "record": { + "A": ["213.238.183.171"] + } +} diff --git a/domains/janmikowa.json b/domains/janmikowa.json new file mode 100644 index 000000000..da4adcfb5 --- /dev/null +++ b/domains/janmikowa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Maritsu", + "email": "maritsuqnn@gmail.com" + }, + "record": { + "CNAME": "maritsu.github.io" + } +} diff --git a/domains/januantara.json b/domains/januantara.json new file mode 100644 index 000000000..9aa55d685 --- /dev/null +++ b/domains/januantara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coderzhaxor", + "email": "ajanuantara@gmail.com" + }, + "record": { + "CNAME": "coderzhaxor.github.io" + } +} diff --git a/domains/jariullah.json b/domains/jariullah.json new file mode 100644 index 000000000..131aa51d6 --- /dev/null +++ b/domains/jariullah.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/Mohdjariullah/portfolio1", + "owner": { + "username": "mohdjariullah", + "email": "mohdjariullah@gmail.com" + }, + "record": { + "CNAME": "mohdjariullah.github.io" + } +} diff --git a/domains/jarmos.json b/domains/jarmos.json deleted file mode 100644 index 608589827..000000000 --- a/domains/jarmos.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "A personal blog which is hosted on Medium temporarily.", - "repo": "https://github.com/Jarmos-san/blog", - "owner": { - "username": "Jarmos-san", - "email": "", - "twitter": "Jarmosan" - }, - "record": { - "CNAME": "jarmos.medium.com" - } -} diff --git a/domains/jasmeetsingh.json b/domains/jasmeetsingh.json new file mode 100644 index 000000000..071541f4e --- /dev/null +++ b/domains/jasmeetsingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jasmeetsinghbhatia", + "email": "jasmeetsinghbhatia@gmail.com" + }, + "record": { + "URL": "https://jasmeetsinghbhatia.github.io/resume/" + } +} diff --git a/domains/jatin.json b/domains/jatin.json new file mode 100644 index 000000000..7736cc99e --- /dev/null +++ b/domains/jatin.json @@ -0,0 +1,11 @@ +{ + "description": "A personal site for all my cool stuff", + "repo": "https://github.com/Jateeeen/Jateeeen.github.io", + "owner": { + "username": "Jateeeen", + "email": "jatin@linkxtr.app" + }, + "record": { + "CNAME": "jateeeen.github.io" + } +} diff --git a/domains/jatinkr.json b/domains/jatinkr.json new file mode 100644 index 000000000..2da55b6ae --- /dev/null +++ b/domains/jatinkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jatinkumarg", + "email": "jatinkr@duck.com" + }, + "record": { + "CNAME": "jatinkumarg.github.io" + } +} diff --git a/domains/javier.json b/domains/javier.json new file mode 100644 index 000000000..4383b3052 --- /dev/null +++ b/domains/javier.json @@ -0,0 +1,12 @@ +{ + "description": "Javier Zaleta's personal website", + "repo": "https://github.com/jzaleta/jzaleta", + "owner": { + "username": "jzaleta", + "email": "", + "twitter": "j_cordz" + }, + "record": { + "CNAME": "jzaleta.github.io" + } +} diff --git a/domains/jay-d-dave.json b/domains/jay-d-dave.json new file mode 100644 index 000000000..f9c916535 --- /dev/null +++ b/domains/jay-d-dave.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/Jay-d-dave/Jay-d-dave.github.io", + "owner": { + "username": "jay-d-dave", + "email": "jay.dave@truestaz.com" + }, + "record": { + "CNAME": "jay-d-dave.github.io" + } +} diff --git a/domains/jay.json b/domains/jay.json index 0988f28ee..a5e352183 100644 --- a/domains/jay.json +++ b/domains/jay.json @@ -1,9 +1,9 @@ { "owner": { - "username": "jaygmx", - "email": "j.jay@gmx.us" + "username": "jiacea", + "email": "jayjayconsuelo@gmail.com" }, "record": { - "CNAME": "jay.readthedocs.io" + "CNAME": "jai.pages.dev" } } diff --git a/domains/jayesh.json b/domains/jayesh.json deleted file mode 100644 index ed0fcd542..000000000 --- a/domains/jayesh.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "jayeshsomala", - "email": "jayeshsomala@gmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } - } \ No newline at end of file diff --git a/domains/jayg.json b/domains/jayg.json index 0ab89412f..b281dabd2 100644 --- a/domains/jayg.json +++ b/domains/jayg.json @@ -1,12 +1,17 @@ { - "description": "My personal website :)", - "repo": "https://github.com/JayGgit/JayGgit.github.io", - "owner": { - "username": "JayGgit", - "email": "jyaptkd2126@gmail.com", - "twitter": "JayGhain" - }, - "record": { - "CNAME": "jayggit.github.io" - } -} + "description": "Used to be a URL I used for my personal website, now redirects to new URL", + "repo": "https://github.com/JayGgit/JayGgit.github.io", + "owner": { + "username": "JayGgit", + "email": "jyaptkd2126@gmail.com", + "twitter": "JayGTypes" + }, + "record": { + "URL": "https://jayg.top", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/jayraj.json b/domains/jayraj.json new file mode 100644 index 000000000..f354aff38 --- /dev/null +++ b/domains/jayraj.json @@ -0,0 +1,12 @@ +{ + "description": "personal website", + "repo": "https://github.com/kyoichishido/personal_website", + "owner": { + "username": "kyoichishido", + "email": "jayrajcodes@gmail.com", + "twitter": "wanna_relive" + }, + "record": { + "CNAME": "kyoichishido.github.io" + } +} diff --git a/domains/jb.json b/domains/jb.json new file mode 100644 index 000000000..6b3454fee --- /dev/null +++ b/domains/jb.json @@ -0,0 +1,11 @@ +{ + "description": "jbcarreon123's personal website", + "repo": "https://github.com/jbcarreon123/jbs-website/", + "owner": { + "username": "jbcarreon123", + "email": "jbcarreon212@gmail.com" + }, + "record": { + "A": ["35.223.92.119"] + } +} diff --git a/domains/jbyt27.json b/domains/jbyt27.json deleted file mode 100644 index f571c0125..000000000 --- a/domains/jbyt27.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "JBYT27", - "email": "beol0127@gmail.com" - }, - "record": { - "URL": "https://jbyt27.jbloves27.repl.co" - } -} diff --git a/domains/jc-wu.json b/domains/jc-wu.json new file mode 100644 index 000000000..50f200222 --- /dev/null +++ b/domains/jc-wu.json @@ -0,0 +1,11 @@ +{ + "description": "To create a personal portfolio website", + "repo": "https://github.com/jc-wu1/jc-wu1.github.io", + "owner": { + "username": "jc-wu1", + "email": "testingpurposeonlyemail@gmail.com" + }, + "record": { + "CNAME": "jc-wu1.github.io" + } +} diff --git a/domains/jcarpenter.json b/domains/jcarpenter.json new file mode 100644 index 000000000..e87833361 --- /dev/null +++ b/domains/jcarpenter.json @@ -0,0 +1,11 @@ +{ + "description": "jcarpenter's personal site", + "repo": "https://github.com/jcarpenter48/jcarpenter48.github.io", + "owner": { + "username": "jcarpenter48", + "email": "jcarpenter48@mail.com" + }, + "record": { + "CNAME": "jcarpenter48.github.io" + } +} diff --git a/domains/jckli.json b/domains/jckli.json new file mode 100644 index 000000000..a79a5ebbb --- /dev/null +++ b/domains/jckli.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jckli", + "email": "notjackhli@gmail.com" + }, + "record": { + "URL": "https://github.com/jckli" + } +} diff --git a/domains/jcquieta.json b/domains/jcquieta.json index 9b1098dc5..f52616721 100644 --- a/domains/jcquieta.json +++ b/domains/jcquieta.json @@ -1,11 +1,11 @@ { - "description": "Personal Portfolio", - "repo": "https://github.com/jcgaming-official/jcgaming-official.github.io", - "owner": { - "username": "jcgaming-official", - "email": "dev.jcquieta@gmail.com" - }, - "record": { - "CNAME": "jcgaming-official.github.io" - } -} + "description": "Personal Portfolio", + "repo": "https://github.com/jcgaming-official/jcgaming-official.github.io", + "owner": { + "username": "jcgaming-official", + "email": "dev.jcquieta@gmail.com" + }, + "record": { + "CNAME": "jcgaming-official.github.io" + } +} diff --git a/domains/jcs.json b/domains/jcs.json new file mode 100644 index 000000000..143458672 --- /dev/null +++ b/domains/jcs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bi0hazarDD", + "email": "jonathan-8@hotmail.co.uk" + }, + "record": { + "CNAME": "bi0hazardd.github.io" + } +} diff --git a/domains/jd.json b/domains/jd.json new file mode 100644 index 000000000..fef85ac0d --- /dev/null +++ b/domains/jd.json @@ -0,0 +1,11 @@ +{ + "description": "Short link to justdeveloper.is-a.dev", + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": ["89.106.200.1"] + } +} diff --git a/domains/jdev082.json b/domains/jdev082.json new file mode 100644 index 000000000..fa5b332ab --- /dev/null +++ b/domains/jdev082.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jdev082", + "email": "willsjayden2@gmail.com" + }, + + "record": { + "CNAME": "jdev082.pages.dev" + } +} diff --git a/domains/jean-arthur.json b/domains/jean-arthur.json new file mode 100644 index 000000000..981943a8a --- /dev/null +++ b/domains/jean-arthur.json @@ -0,0 +1,11 @@ +{ + "description": "Part of my portfolio website", + "repo": "https://github.com/8n9ght/univers", + "owner": { + "username": "8n9ght", + "email": "8n9ght@gmail.com" + }, + "record": { + "CNAME": "8n9ght.github.io" + } +} diff --git a/domains/jefferson.json b/domains/jefferson.json new file mode 100644 index 000000000..bee37b1e7 --- /dev/null +++ b/domains/jefferson.json @@ -0,0 +1,11 @@ +{ + "description": "Jefferson Michael Profile", + "repo": "https://github.com/jeffersonjpr/jeffersonjpr", + "owner": { + "username": "jeffersonjpr", + "email": "jeffersonjpr@gmail.com" + }, + "record": { + "URL": "https://github.com/jeffersonjpr" + } +} diff --git a/domains/jegatchalian.json b/domains/jegatchalian.json index 25813b5c9..d027305c0 100644 --- a/domains/jegatchalian.json +++ b/domains/jegatchalian.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "trowsjerwin", + "email": "johnerwingatchalian@gmail.com" + }, - { - "owner": { - "username": "trowsjerwin", - "email": "johnerwingatchalian@gmail.com" - }, - - "record": { - "A": ["192.232.223.67"] - } - } - \ No newline at end of file + "record": { + "A": ["192.232.223.67"] + } +} diff --git a/domains/jellobow.json b/domains/jellobow.json index ace21ed18..853c004a0 100644 --- a/domains/jellobow.json +++ b/domains/jellobow.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "homelyseven250", - "email": "", - "discord": "JelloBow#6734" - }, - "record": { - "CNAME": "mysite-production-556a.up.railway.app" - } + "owner": { + "username": "homelyseven250", + "email": "", + "discord": "JelloBow#6734" + }, + "record": { + "CNAME": "mysite-production-556a.up.railway.app" + } } diff --git a/domains/jellyfin.chiragnahata.json b/domains/jellyfin.chiragnahata.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/jellyfin.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/jellyfin.creeperita104.json b/domains/jellyfin.creeperita104.json new file mode 100644 index 000000000..66df526f1 --- /dev/null +++ b/domains/jellyfin.creeperita104.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "creeperita09", + "email": "creeperita.09@gmail.com" + }, + "record": { + "CNAME": "icahomesvr2022.freeddns.org" + } +} diff --git a/domains/jemex.json b/domains/jemex.json new file mode 100644 index 000000000..bbd638082 --- /dev/null +++ b/domains/jemex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mhmmd95", + "email": "mohammadalabras77@gmail.com" + }, + "record": { + "A": ["51.89.109.155"] + } +} diff --git a/domains/jenina.json b/domains/jenina.json deleted file mode 100644 index 8795540ec..000000000 --- a/domains/jenina.json +++ /dev/null @@ -1,19 +0,0 @@ - - { - "repo": "https://github.com/SukiPlayz/hello-world", - "owner": { - "username": "SukiPlayz", - "email": "sukinotsus@outlook.com" - }, - "record": { - "A": [ - "135.148.226.33" - ], - "MX": [ - "ns1.crystalcloud.xyz", - "ns2.crystalcloud.xyz" - ], - "TXT": "v=spf1 a mx ip4:135.148.226.33 ~all" - } - } - diff --git a/domains/jer.json b/domains/jer.json new file mode 100644 index 000000000..b1646e945 --- /dev/null +++ b/domains/jer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JerBlox", + "email": "chen.fuyuan07@gmail.com" + }, + "record": { + "CNAME": "i-jer.github.io" + } +} diff --git a/domains/jeremie.json b/domains/jeremie.json index c9078ff8a..93153388d 100644 --- a/domains/jeremie.json +++ b/domains/jeremie.json @@ -1,12 +1,12 @@ { - "description": "Jeremie (w01f) is a dev !", - "repo": "https://github.com/0xw01f/isadev.github.io", - "owner": { - "username": "0xw01f", - "email": "one_w01f@protonmail.ch", - "twitter": "w01f_src" - }, - "record": { - "CNAME": "0xw01f.github.io" - } -} + "description": "Jeremie (w01f) is a dev !", + "repo": "https://github.com/0xw01f/isadev.github.io", + "owner": { + "username": "0xw01f", + "email": "one_w01f@protonmail.ch", + "twitter": "w01f_src" + }, + "record": { + "CNAME": "0xw01f.github.io" + } +} diff --git a/domains/jeremy.json b/domains/jeremy.json index 883a88877..85a4a8395 100644 --- a/domains/jeremy.json +++ b/domains/jeremy.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "jeremyssocial", + "email": "nearberlin@gmail.com" + }, - { - "owner": { - "username": "MyNameJeremy", - "email": "original.jeremy.grotjahn@gmail.com" - }, - - "record": { - "URL": "http://dev.jeremys.social" - } - } - + "record": { + "URL": "http://dev.jeremys.social" + } +} diff --git a/domains/jeremydavid.json b/domains/jeremydavid.json new file mode 100644 index 000000000..c02c1df37 --- /dev/null +++ b/domains/jeremydavid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jedidavid", + "email": "jeremydb.david@gmail.com" + }, + "record": { + "CNAME": "jeremydavidv2.pages.dev" + } +} diff --git a/domains/jerikchan.json b/domains/jerikchan.json new file mode 100644 index 000000000..9dbe3fa4b --- /dev/null +++ b/domains/jerikchan.json @@ -0,0 +1,11 @@ +{ + "description": "jerikchan.is-a.dev", + "repo": "https://github.com/jerikchan/jerikchan.github.io", + "owner": { + "username": "jerikchan", + "email": "jerikchan@gmail.com" + }, + "record": { + "CNAME": "jerikchan.github.io" + } +} diff --git a/domains/jermaine.json b/domains/jermaine.json new file mode 100644 index 000000000..6de20d1cc --- /dev/null +++ b/domains/jermaine.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Codemaine", + "email": "jermaineantwi22@gmail.com" + }, + "record": { + "CNAME": "codemaine.github.io" + } +} diff --git a/domains/jeros.json b/domains/jeros.json index b1ba7e6df..fc832fd9b 100644 --- a/domains/jeros.json +++ b/domains/jeros.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "Ascript89", + "email": "smartlinkwfs@gmail.com" + }, - { - "owner": { - "username": "Ascript89", - "email": "smartlinkwfs@gmail.com" - }, - - "record": { - "CNAME": "ascript89.github.io" - } - } - + "record": { + "CNAME": "ascript89.github.io" + } +} diff --git a/domains/jes.json b/domains/jes.json new file mode 100644 index 000000000..e95bf90d6 --- /dev/null +++ b/domains/jes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jesgran", + "email": "calzdani20@libero.it" + }, + "record": { + "CNAME": "jes.github.io" + } +} diff --git a/domains/jesgran.json b/domains/jesgran.json index 941ab8536..609c9c0b4 100644 --- a/domains/jesgran.json +++ b/domains/jesgran.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "Jesgran", + "email": "calzdani20@libero.it" + }, - { - "owner": { - "username": "Jesgran", - "email": "calzdani20@libero.it" - }, - - "record": { - "CNAME": "jesgran.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "jesgran.github.io" + } +} diff --git a/domains/jesseallan.json b/domains/jesseallan.json new file mode 100644 index 000000000..bb5e55010 --- /dev/null +++ b/domains/jesseallan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JesseAllan", + "email": "jesseba20+github2@gmail.com" + }, + "record": { + "CNAME": "jesseallan.github.io" + } +} diff --git a/domains/jessehoekema.json b/domains/jessehoekema.json new file mode 100644 index 000000000..ae9fa914d --- /dev/null +++ b/domains/jessehoekema.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "JesseHoekema", + "email": "jessehoekema@icloud.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/jetta.json b/domains/jetta.json new file mode 100644 index 000000000..b8f8c17b5 --- /dev/null +++ b/domains/jetta.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "gloxyz", + "email": "arfeasotuzbir@gmail.com", + "discord": "1208335087523864598" + }, + + "record": { + "CNAME": "lively-first-bolt.glitch.me" + } + } + \ No newline at end of file diff --git a/domains/jewishlewish.json b/domains/jewishlewish.json index 1c3019101..365e4b2e0 100644 --- a/domains/jewishlewish.json +++ b/domains/jewishlewish.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "JewishLewish", - "email": "lanbrokhman@gmail.com" - }, - "record": { - "URL": "https://github.com/jewishlewish" - } - } - +{ + "owner": { + "username": "JewishLewish", + "email": "lanbrokhman@gmail.com" + }, + "record": { + "URL": "https://github.com/jewishlewish" + } +} diff --git a/domains/jeydin.json b/domains/jeydin.json index e315911da..38aeaf458 100644 --- a/domains/jeydin.json +++ b/domains/jeydin.json @@ -1,10 +1,9 @@ { - "description": "I play a game called Genshin Impact", - "repo": "https://github.com/Jeydin21/jeydin.github.io", + "description": "I like code, but code does not like me", + "repo": "https://github.com/Jeydin/jeydin.github.io", "owner": { - "username": "Jeydin21", - "email": "JeyPham21@gmail.com", - "twitter": "Jeydin21" + "username": "Jeydin", + "email": "JeyPham21@gmail.com" }, "record": { "CNAME": "jeydin.github.io" diff --git a/domains/jeymen.json b/domains/jeymen.json new file mode 100644 index 000000000..90015ff87 --- /dev/null +++ b/domains/jeymen.json @@ -0,0 +1,22 @@ +{ + "owner": { + "username": "Jeymen", + "email": "jeymen11@proton.me" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": [ + "mx.zoho.eu", + "mx2.zoho.eu", + "mx3.zoho.eu" + ], + + "TXT": "v=spf1 include:zoho.eu ~all" + } +} diff --git a/domains/jhedmendoza.json b/domains/jhedmendoza.json new file mode 100644 index 000000000..e77a30f37 --- /dev/null +++ b/domains/jhedmendoza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jhedmendoza", + "email": "jhed.mendoza@hotmail.com" + }, + "record": { + "CNAME": "jhedmendoza.github.io" + } +} diff --git a/domains/jhonneg.json b/domains/jhonneg.json new file mode 100644 index 000000000..f53174ff1 --- /dev/null +++ b/domains/jhonneg.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/Jhonneg/jhonneg", + "owner": { + "username": "Jhonneg", + "email": "jonee4339@hotmail.com", + "twitter": "Jonee1155" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/jhonpaco.json b/domains/jhonpaco.json new file mode 100644 index 000000000..d0e0388fd --- /dev/null +++ b/domains/jhonpaco.json @@ -0,0 +1,10 @@ +{ + "description": "jhonpaco.is-a.dev", + "owner": { + "username": "pacodan", + "email": "pacodan@jhonpaco.dev" + }, + "record": { + "URL": "https://pacoDan.github.io" + } +} diff --git a/domains/jhos.json b/domains/jhos.json new file mode 100644 index 000000000..ae9fa914d --- /dev/null +++ b/domains/jhos.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "JesseHoekema", + "email": "jessehoekema@icloud.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/jigar.json b/domains/jigar.json new file mode 100644 index 000000000..7e4ed2745 --- /dev/null +++ b/domains/jigar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "drone911", + "email": "jigar1822@gmail.com" + }, + "record": { + "URL": "https://www.github.com/drone911" + } +} diff --git a/domains/jimscope.json b/domains/jimscope.json deleted file mode 100644 index 80d7432b5..000000000 --- a/domains/jimscope.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "/home/jimscope", - "repo": "https://github.com/jimscope/jimscope.github.io", - "owner": { - "username": "jimscope", - "email": "jimscope@protonmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } -} diff --git a/domains/jinso.json b/domains/jinso.json index 29fe88efb..1aa37e760 100644 --- a/domains/jinso.json +++ b/domains/jinso.json @@ -1,12 +1,12 @@ { - "description": "Jinso Raj", - "repo": "https://github.com/jinsoraj", - "owner": { - "username": "jinsoraj", - "email": "jinsoraj2000@gmail.com", - "twitter": "jinsoraj" - }, - "record": { - "URL": "https://jinsoraj.eu.org" - } + "description": "Jinso Raj", + "repo": "https://github.com/jinsoraj", + "owner": { + "username": "jinsoraj", + "email": "jinsoraj2000@gmail.com", + "twitter": "jinsoraj" + }, + "record": { + "URL": "https://jinsoraj.eu.org" } +} diff --git a/domains/jithumon.json b/domains/jithumon.json index 80ace01d0..2b8c82719 100644 --- a/domains/jithumon.json +++ b/domains/jithumon.json @@ -1,12 +1,12 @@ { - "description": "Jithumon's Personal Website", - "repo": "https://github.com/jithumon/jithumon.github.com", - "owner": { - "username": "jithumon", - "email": "jithumondev@gmail.com", - "twitter": "Jithumatt" - }, - "record": { - "CNAME": "jithumon.github.io" - } + "description": "Jithumon's Personal Website", + "repo": "https://github.com/jithumon/jithumon.github.com", + "owner": { + "username": "jithumon", + "email": "jithumondev@gmail.com", + "twitter": "Jithumatt" + }, + "record": { + "CNAME": "jithumon.github.io" + } } diff --git a/domains/jj.json b/domains/jj.json index 56f65b367..c7a808c74 100644 --- a/domains/jj.json +++ b/domains/jj.json @@ -6,8 +6,16 @@ "email": "TheBotlyNoob@gmail.com" }, "record": { - "A": ["185.199.108.153", "185.199.109.153", "185.199.111.153", "185.199.110.153"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.111.153", + "185.199.110.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/joao-silva.json b/domains/joao-silva.json new file mode 100644 index 000000000..de975239e --- /dev/null +++ b/domains/joao-silva.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "imjoaosilva", + "email": "z4kreyyt@gmail.com", + "discord": "498426798833664012" + }, + + "record": { + "A": ["51.75.68.140"] + } +} diff --git a/domains/joaopaulo.json b/domains/joaopaulo.json new file mode 100644 index 000000000..6c5fdc18c --- /dev/null +++ b/domains/joaopaulo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joaopaulodotbs", + "email": "joaopaulodotbs@outlook.com" + }, + "record": { + "CNAME": "joaopaulo.pages.dev" + } +} diff --git a/domains/joaovitorzv.json b/domains/joaovitorzv.json index 779e03599..cdfe820e6 100644 --- a/domains/joaovitorzv.json +++ b/domains/joaovitorzv.json @@ -1,5 +1,5 @@ { - "description": "@joaovitorzv blog", + "description": "joaovitorzv blog", "repo": "https://github.com/joaovitorzv/joaovitorzv.github.io", "owner": { "username": "joaovitorzv", diff --git a/domains/joaoz.json b/domains/joaoz.json new file mode 100644 index 000000000..390f30cd9 --- /dev/null +++ b/domains/joaoz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joao-zanutto", + "email": "jpberno@gmail.com" + }, + "record": { + "CNAME": "joao-zanutto-github-com.pages.dev" + } +} diff --git a/domains/jobcmax.json b/domains/jobcmax.json index d28436cfb..d35e94526 100644 --- a/domains/jobcmax.json +++ b/domains/jobcmax.json @@ -1,11 +1,11 @@ { - "description": "jobcmax web", - "repo": "https://github.com/jobcmax/jobcmax.github.io", - "owner": { - "username": "jobcmax", - "email": "blueboo265@gmail.com" - }, - "record": { - "CNAME": "jobcmax.github.io" - } -} \ No newline at end of file + "description": "jobcmax web", + "repo": "https://github.com/jobcmax/jobcmax.github.io", + "owner": { + "username": "jobcmax", + "email": "blueboo265@gmail.com" + }, + "record": { + "CNAME": "jobcmax.github.io" + } +} diff --git a/domains/joe50097.json b/domains/joe50097.json new file mode 100644 index 000000000..93f5d50bb --- /dev/null +++ b/domains/joe50097.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "Joe50097", + "email": "zcell9500@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all", + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/joel.json b/domains/joel.json index ab0b03843..993666259 100644 --- a/domains/joel.json +++ b/domains/joel.json @@ -9,4 +9,4 @@ "record": { "CNAME": "9oelm.github.io" } -} \ No newline at end of file +} diff --git a/domains/joelbobanoffline.json b/domains/joelbobanoffline.json index d2c2db96b..9f4707594 100644 --- a/domains/joelbobanoffline.json +++ b/domains/joelbobanoffline.json @@ -1,11 +1,11 @@ { - "description": "For Portfolio", - "repo": "https://github.com/JoelBobanOffline/JoelBobanOffline.github.io", - "owner": { - "username": "JoelBobanOffline", - "email": "joelboban2007@gmail.com" - }, - "record": { - "CNAME": "joelbobanoffline.github.io" - } -} + "description": "For Portfolio", + "repo": "https://github.com/JoelBobanOffline/JoelBobanOffline.github.io", + "owner": { + "username": "JoelBobanOffline", + "email": "joelboban2007@gmail.com" + }, + "record": { + "CNAME": "joelbobanoffline.github.io" + } +} diff --git a/domains/joesepp.json b/domains/joesepp.json new file mode 100644 index 000000000..78fa4dae2 --- /dev/null +++ b/domains/joesepp.json @@ -0,0 +1,12 @@ +{ + "description": "My portfolio website showcasing my work and skills", + "repo": "https://github.com//joesepph.github.io", + "owner": { + "username": "joesepph", + "email": "markwer.dev@proton.me", + "twitter": "devSeppski" + }, + "record": { + "CNAME": "joesepph.github.io" + } +} diff --git a/domains/joesjourney.json b/domains/joesjourney.json index 505400040..1cf4eac78 100644 --- a/domains/joesjourney.json +++ b/domains/joesjourney.json @@ -1,24 +1,17 @@ +{ + "owner": { + "username": "Joe-is-Coding", + "email": "stickeman715@gmail.com" + }, - { - "owner": { - "username": "Joe-is-Coding", - "email": "stickeman715@gmail.com" - }, - - "record": { - "A": [ - - "185.199.108.153", - - "185.199.109.153", - - "185.199.110.153", - - "185.199.111.153" - - ], - "MX": ["mx.mailtie.com"], - "TXT": "mailtie=joesjourney500@gmail.com" - } - } - + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx.mailtie.com"], + "TXT": "mailtie=joesjourney500@gmail.com" + } +} diff --git a/domains/joetroll.json b/domains/joetroll.json new file mode 100644 index 000000000..e66f5ad9d --- /dev/null +++ b/domains/joetroll.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "trolljoe", + "email": "joetechtok@proton.me", + "discord": "1054945019137630278" + }, + "record": { + "CNAME": "joetroll.pages.dev" + } +} diff --git a/domains/johan-stickman.json b/domains/johan-stickman.json deleted file mode 100644 index cec230186..000000000 --- a/domains/johan-stickman.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My personal website", - "owner": { - "username": "johan-perso", - "email": "johan_stickman@proton.me", - "twitter": "Johan_Stickman", - "discord": "Johan#8021" - }, - "record": { - "URL": "https://johanstick.me" - } -} diff --git a/domains/johna.json b/domains/johna.json new file mode 100644 index 000000000..5dd801b06 --- /dev/null +++ b/domains/johna.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website", + "repo": "https://github.com/Johna-123/Johna-123.github.io", + "owner": { + "username": "Johna-123", + "email": "j-verstraaten@hotmail.com" + }, + "record": { + "CNAME": "johna.pages.dev" + } +} diff --git a/domains/johndoe.json b/domains/johndoe.json new file mode 100644 index 000000000..cd996b2e5 --- /dev/null +++ b/domains/johndoe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KingLuc12", + "email": "lucian.g.king+github@gmail.com" + }, + "record": { + "CNAME": "jhondoeisadev.pages.dev" + } +} diff --git a/domains/johndoegg.json b/domains/johndoegg.json new file mode 100644 index 000000000..c3a7d919a --- /dev/null +++ b/domains/johndoegg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kuroigg", + "email": "mrlangdon197@gmail.com" + }, + "record": { + "URL": "https://kuroigg.github.io/" + } +} diff --git a/domains/johnny.json b/domains/johnny.json index ef3f86971..171e9f08c 100644 --- a/domains/johnny.json +++ b/domains/johnny.json @@ -1,10 +1,10 @@ - { - "owner": { - "username": "john-champagne", - "email": "johnchampagne97@gmail.com" - }, +{ + "owner": { + "username": "john-champagne", + "email": "johnchampagne97@gmail.com" + }, - "record": { - "CNAME": "john-champagne.github.io" - } - } + "record": { + "CNAME": "john-champagne.github.io" + } +} diff --git a/domains/johnny1337.json b/domains/johnny1337.json new file mode 100644 index 000000000..0fc6fb7ae --- /dev/null +++ b/domains/johnny1337.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ProxyJohnny", + "email": "johnnydx7@gmail.com" + }, + "record": { + "CNAME": "johnny1337.pages.dev" + } +} diff --git a/domains/johnythomas.json b/domains/johnythomas.json new file mode 100644 index 000000000..aeeadde1f --- /dev/null +++ b/domains/johnythomas.json @@ -0,0 +1,11 @@ +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/johnythomas2002/johnythomas2002.github.io", + "owner": { + "username": "johnythomas2002", + "email": "johnypani111@gmail.com" + }, + "record": { + "CNAME": "johnythomas2002.github.io" + } +} diff --git a/domains/joinsachinarya.json b/domains/joinsachinarya.json new file mode 100644 index 000000000..bec22cef1 --- /dev/null +++ b/domains/joinsachinarya.json @@ -0,0 +1,14 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/joinsachinarya/joinsachinarya.is-a.dev.git", + "owner": { + "username": "joinsachinarya", + "email": "joinsachinarya@gmail.com", + "twitter": "joinsachinarya" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/joko.json b/domains/joko.json new file mode 100644 index 000000000..c94c250e0 --- /dev/null +++ b/domains/joko.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "AhNode", + "email": "", + "discord": "704173828187619370" + }, + + "record": { + "A": ["69.197.135.202"] + } + } + \ No newline at end of file diff --git a/domains/jokostorage.json b/domains/jokostorage.json new file mode 100644 index 000000000..01eea57da --- /dev/null +++ b/domains/jokostorage.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "AhNode", + "email": "jakijapanese@gmail.com", + "discord": "704173828187619370" + }, + + "record": { + "A": ["69.197.135.202"] + } + } + diff --git a/domains/jokotwib.json b/domains/jokotwib.json new file mode 100644 index 000000000..90b0f2b20 --- /dev/null +++ b/domains/jokotwib.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "AhNode", + "email": "jakijapanese@gmail.com", + "discord": "704173828187619370" + }, + + "record": { + "A": ["69.197.135.202"] + } + } + \ No newline at end of file diff --git a/domains/joltz.json b/domains/joltz.json new file mode 100644 index 000000000..952e436d4 --- /dev/null +++ b/domains/joltz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "joltz1234", + "email": "joltzx123@gmail.com", + "discord": "837162825373188106" + }, + + "record": { + "URL": "https://guns.lol/joltz" + } +} diff --git a/domains/joltz1234.json b/domains/joltz1234.json new file mode 100644 index 000000000..3f7340ebb --- /dev/null +++ b/domains/joltz1234.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "joltz1234", + "email": "joltzx123@gmail.com", + "discord": "837162825373188106" + }, + + "record": { + "CNAME": "joltz1234.github.io" + } +} diff --git a/domains/jonasfroeller.json b/domains/jonasfroeller.json new file mode 100644 index 000000000..389a0f34c --- /dev/null +++ b/domains/jonasfroeller.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website.", + "repo": "https://github.com/jonasfroeller/jonasfroeller", + "owner": { + "username": "jonasfroeller", + "email": "j.froe@gmx.at" + }, + "record": { + "CNAME": "jonasfroeller.vercel.app" + } +} diff --git a/domains/jonathan.json b/domains/jonathan.json deleted file mode 100644 index 03eb61bde..000000000 --- a/domains/jonathan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "jonOriginal", - "email": "jonathan-knox@outlook.com", - "discord": "12340#0567" - }, - "record": { - "CNAME": "webknox.ddns.net" - }, - "repo": "https://github.com/jonOriginal" -} diff --git a/domains/jonathancarrillo.json b/domains/jonathancarrillo.json new file mode 100644 index 000000000..143458672 --- /dev/null +++ b/domains/jonathancarrillo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bi0hazarDD", + "email": "jonathan-8@hotmail.co.uk" + }, + "record": { + "CNAME": "bi0hazardd.github.io" + } +} diff --git a/domains/joordih.json b/domains/joordih.json new file mode 100644 index 000000000..632ed81ba --- /dev/null +++ b/domains/joordih.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HarpyLMAO", + "email": "harpymclol@gmail.com" + }, + "record": { + "URL": "https://joordih.lol" + } +} diff --git a/domains/jorge.json b/domains/jorge.json new file mode 100644 index 000000000..186106951 --- /dev/null +++ b/domains/jorge.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jfelix9", + "email": "jfelixdev@icloud.com" + }, + "record": { + "URL": "https://jorge-felix.com" + } +} diff --git a/domains/joseph.json b/domains/joseph.json new file mode 100644 index 000000000..06d74b060 --- /dev/null +++ b/domains/joseph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Friedman10", + "email": "yfriedman@gmail.com" + }, + "record": { + "MX": ["smtp.google.com"] + } +} diff --git a/domains/josh.json b/domains/josh.json deleted file mode 100644 index e2a955d99..000000000 --- a/domains/josh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Josh's personal developer website", - "repo": "https://github.com/miltzi", - "owner": { - "username": "miltzi", - "email": "josh@miltz.co.za" - }, - "record": { - "CNAME": "joshisadev.miltz.co.za" - } -} diff --git a/domains/joshatticus.json b/domains/joshatticus.json index 0e28692ee..2bdcc9584 100644 --- a/domains/joshatticus.json +++ b/domains/joshatticus.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "JoshAtticus", - "email": "osmanicteam@gmail.com" - }, - "record": { - "CNAME": "joshatticus.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "JoshAtticus", + "email": "osmanicteam@gmail.com" + }, + "record": { + "CNAME": "joshatticus.github.io" + } +} diff --git a/domains/joshua.json b/domains/joshua.json index 027919e4b..2df21630b 100644 --- a/domains/joshua.json +++ b/domains/joshua.json @@ -1,11 +1,11 @@ { - "description": "Joshua's Website", - "repo": "https://github.com/joshua-noakes1", "owner": { - "username": "joshua-noakes1", - "email": "joshua.noakes1@icloud.com" + "username": "Dwigoric", + "email": "", + "discord": "295391820744228867" }, + "record": { - "CNAME": "prx1.oci.cocogoat.xyz" + "CNAME": "dwigoric.pages.dev" } } diff --git a/domains/josjonkeren.json b/domains/josjonkeren.json deleted file mode 100644 index e3d1dfa2c..000000000 --- a/domains/josjonkeren.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "jonkeren", - "email": "josjonkeren@gmail.com" - }, - "record": { - "CNAME": "jonkeren.nl" - } - } - \ No newline at end of file diff --git a/domains/josval.json b/domains/josval.json new file mode 100644 index 000000000..c111ed7b8 --- /dev/null +++ b/domains/josval.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "heyy-josval", + "email": "josvalmtrz@gmail.com" + }, + "record": { + "URL": "https://josval.vercel.app" + } +} diff --git a/domains/jovan.json b/domains/jovan.json new file mode 100644 index 000000000..5ffe16037 --- /dev/null +++ b/domains/jovan.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio jovaneah", + "repo": "https://github.com/jovaneah/jovaneah", + "owner": { + "username": "jovaneah", + "email": "jovaneah@gmail.com" + }, + "record": { + "CNAME": "jovaneah.github.io" + } +} diff --git a/domains/joyal-jijo.json b/domains/joyal-jijo.json new file mode 100644 index 000000000..55c4a44a5 --- /dev/null +++ b/domains/joyal-jijo.json @@ -0,0 +1,14 @@ +{ + "description": "joyal portfolio", + "repo": "https://github.com/joyal-jij0/portfolio", + "owner": { + "username": "joyal-jij0", + "email": "", + "discord": "joyal_jij0" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} \ No newline at end of file diff --git a/domains/jpedro.json b/domains/jpedro.json new file mode 100644 index 000000000..3f9cbb138 --- /dev/null +++ b/domains/jpedro.json @@ -0,0 +1,11 @@ +{ + "description": "Personal blog", + "repo": "https://github.com/jpedro/jpedro.github.io", + "owner": { + "username": "jpedro", + "email": "github@jpedro.dev" + }, + "record": { + "CNAME": "jpedro.github.io" + } +} diff --git a/domains/jrdrwn.json b/domains/jrdrwn.json index 9ec5ac297..f4f2eb136 100644 --- a/domains/jrdrwn.json +++ b/domains/jrdrwn.json @@ -1,12 +1,12 @@ { - "description": "For a personal website", - "repo": "https://github.com/jrdrwn/jrdrwn.github.io", - "owner": { - "username": "jrdrwn", - "email": "jordirwn@gmail.com", - "twitter": "_jrdrwan" - }, - "record": { - "CNAME": "jrdrwn.github.io" - } -} + "description": "For a personal website", + "repo": "https://github.com/jrdrwn/jrdrwn.github.io", + "owner": { + "username": "jrdrwn", + "email": "jordirwn@gmail.com", + "twitter": "_jrdrwan" + }, + "record": { + "CNAME": "jrdrwn.github.io" + } +} diff --git a/domains/jshlyzxl.json b/domains/jshlyzxl.json new file mode 100644 index 000000000..a7270feb8 --- /dev/null +++ b/domains/jshlyzxl.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "cbbnbbc", + "email": "", + "discord": "1038746610076762112", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Ab2hd4po08soMX0a0bMY_OYRwwnzSzOfytWFgSfqRcpamAeZfJ1ME2Eco_1EQgAkrgt2cnTcdIbyS17lAaFw5btEdLQKHBZaDoQdp74curgiEj1eYWRgYKQjMPS93QZdHXhgUUqLyldjggWF0Xu5fdJStxuL69MyJem9WmdXyruSOkPm01eEFZIimgd00gXs0BzPsfX4CMuakoYlOXijZlPhbJkJv-kRaJ4aFh9TUJKd8bqNRvyi6nv7JoL85yaEaIRB-d3i58G78qA-8vINoO7gAFb-ozavxkE5VY7P3F0jUJotRuXhik4BfYy40DcklPaB207S7EvUP22iijUGag.lqHb96P3LwB1bY9f7DLfLw.oHHZiB_3-GfVpTBN26unT0iDyVmA8uvOzhJ_tn2ePNKrLelQ_g--6240eFDC_vZGEgfpzEfNbWfAiZFSch1E3LV9rnmfDPVPmZJJV6hjnNk.VqaT4nVX8nGXpwSzkmsKaA" + }, + + "record": { + "CNAME": "hcchat.911748.workers.dev" + } + } + diff --git a/domains/jsjack.json b/domains/jsjack.json new file mode 100644 index 000000000..5690830d8 --- /dev/null +++ b/domains/jsjack.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jsJack", + "email": "hello@jackperry.co" + }, + "record": { + "URL": "https://jackperry.co" + } +} diff --git a/domains/json-generator.json b/domains/json-generator.json new file mode 100644 index 000000000..3f5e81b9c --- /dev/null +++ b/domains/json-generator.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "oyepriyansh", + "email": "hi@priyansh.app", + "discord": "Priyansh#5220" + }, + "record": { + "CNAME": "oyepriyansh.github.io" + } +} diff --git a/domains/jsongenerator.json b/domains/jsongenerator.json new file mode 100644 index 000000000..b14fc31dc --- /dev/null +++ b/domains/jsongenerator.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/jstn.json b/domains/jstn.json new file mode 100644 index 000000000..e8190d4e7 --- /dev/null +++ b/domains/jstn.json @@ -0,0 +1,12 @@ +{ + "description": "Justin's personal website", + "repo": "https://github.com/justinbalaguer/justinbalaguer.github.io", + "owner": { + "username": "justinbalaguer", + "email": "justinbalaguer@pm.me", + "twitter": "ojintoji" + }, + "record": { + "CNAME": "justinbalaguer.github.io" + } +} diff --git a/domains/jsworld.json b/domains/jsworld.json index a5a94eb69..9efb6007a 100644 --- a/domains/jsworld.json +++ b/domains/jsworld.json @@ -1,12 +1,12 @@ { - "description": "Hello I Made project JS World - A magical world where u can learn Java Script. I dont want to use js.org subdomain.", - "repo": "https://js.fireurl.ga", - "owner": { - "username": "pythoniaweb", - "email": "gamerciter2@gmail.com", - "twitter": "dont have" - }, - "record": { - "CNAME": "pythoniaweb.github.io" - } -} + "description": "Hello I Made project JS World - A magical world where u can learn Java Script. I dont want to use js.org subdomain.", + "repo": "https://js.fireurl.ga", + "owner": { + "username": "pythoniaweb", + "email": "gamerciter2@gmail.com", + "twitter": "dont have" + }, + "record": { + "CNAME": "pythoniaweb.github.io" + } +} diff --git a/domains/juan.json b/domains/juan.json new file mode 100644 index 000000000..75185ef29 --- /dev/null +++ b/domains/juan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "juan7180", + "email": "miavictorianash@gmail.com", + "discord": "779882046067179531" + }, + + "record": { + "A": ["185.27.133.19"] + } +} diff --git a/domains/juikulkarni.json b/domains/juikulkarni.json index de2f812b4..7590d5dcc 100644 --- a/domains/juikulkarni.json +++ b/domains/juikulkarni.json @@ -1,12 +1,11 @@ { - "description": "Personal Website", - "repo": "https://github.com/jkulkarni01/jkulkarni01.github.io", - "owner": { - "username": "jkulkarni01", - "email": "jui01kulkarni@gmail.com" - - }, - "record": { - "CNAME": "jkulkarni01.github.io" - } -} + "description": "Personal Website", + "repo": "https://github.com/jkulkarni01/jkulkarni01.github.io", + "owner": { + "username": "jkulkarni01", + "email": "jui01kulkarni@gmail.com" + }, + "record": { + "CNAME": "jkulkarni01.github.io" + } +} diff --git a/domains/juin.json b/domains/juin.json new file mode 100644 index 000000000..c78a8794c --- /dev/null +++ b/domains/juin.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio", + "repo": "https://github.com/Juin28/Juin28.github.io", + "owner": { + "username": "Juin28", + "email": "tanjuinlong@gmail.com" + }, + "record": { + "CNAME": "juin28.github.io" + } +} diff --git a/domains/julian.json b/domains/julian.json new file mode 100644 index 000000000..0d429b763 --- /dev/null +++ b/domains/julian.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "getSono", + "email": "sono.arbeit@gmail.com" + }, + "record": { + "A": [ + "185.199.110.153", + "185.199.108.153", + "185.199.109.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } +} diff --git a/domains/julio.json b/domains/julio.json new file mode 100644 index 000000000..b8118e0de --- /dev/null +++ b/domains/julio.json @@ -0,0 +1,11 @@ +{ + "description": "My work portfolio", + "repo": "https://github.com/thatsquite", + "owner": { + "username": "thatsquite", + "email": "juliocesar.santos@making.com" + }, + "record": { + "CNAME": "thatsquite.github.io" + } +} diff --git a/domains/jumanji.json b/domains/jumanji.json new file mode 100644 index 000000000..d368f88de --- /dev/null +++ b/domains/jumanji.json @@ -0,0 +1,17 @@ +{ + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge650@silomails.com" + }, + "record": { + "A": [ + "172.66.47.44", + "172.66.44.212" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/jun-wei.json b/domains/jun-wei.json new file mode 100644 index 000000000..18f55ddf5 --- /dev/null +++ b/domains/jun-wei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "junwei0676", + "email": "junwei0676@gmail.com" + }, + "record": { + "URL": "https://jun-wei-dev.netlify.app/" + } +} diff --git a/domains/juniper.orangc.json b/domains/juniper.orangc.json new file mode 100644 index 000000000..0c3b75689 --- /dev/null +++ b/domains/juniper.orangc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "A": ["66.59.209.229"] + } +} diff --git a/domains/junwei.json b/domains/junwei.json new file mode 100644 index 000000000..18f55ddf5 --- /dev/null +++ b/domains/junwei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "junwei0676", + "email": "junwei0676@gmail.com" + }, + "record": { + "URL": "https://jun-wei-dev.netlify.app/" + } +} diff --git a/domains/juqwtf.json b/domains/juqwtf.json new file mode 100644 index 000000000..396af90f7 --- /dev/null +++ b/domains/juqwtf.json @@ -0,0 +1,11 @@ +{ + "description": "juqwtf site", + "repo": "https://github.com/denboy0123/juq.github.io", + "owner": { + "username": "denboy0123", + "email": "pochtaproverka01@gmail.com" + }, + "record": { + "CNAME": "denboy0123.github.io" + } +} diff --git a/domains/jurgen.json b/domains/jurgen.json new file mode 100644 index 000000000..855ee18f9 --- /dev/null +++ b/domains/jurgen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "def0e0", + "email": "def0e0@yandex.ru" + }, + "record": { + "A": ["45.148.120.75"] + } +} diff --git a/domains/just-muzz.json b/domains/just-muzz.json new file mode 100644 index 000000000..32e99e070 --- /dev/null +++ b/domains/just-muzz.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio site", + "repo": "https://github.com/just-muzz/just-muzz.github.io", + "owner": { + "username": "just-Muzz", + "email": "idrisking759@gmail.com", + "twitter": "just_Muzz" + }, + "record": { + "CNAME": "just-muzz.github.io" + } +} diff --git a/domains/just.json b/domains/just.json new file mode 100644 index 000000000..8207723f2 --- /dev/null +++ b/domains/just.json @@ -0,0 +1,11 @@ +{ + "description": "Short link to juststudio.is-a.dev", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": ["89.106.200.1"] + } +} diff --git a/domains/justdev.json b/domains/justdev.json new file mode 100644 index 000000000..c6539887a --- /dev/null +++ b/domains/justdev.json @@ -0,0 +1,10 @@ +{ + "description": "Short link to justdeveloer.is-a.dev", + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev" + }, + "record": { + "A": ["89.106.200.1"] + } +} diff --git a/domains/justdeveloper.json b/domains/justdeveloper.json new file mode 100644 index 000000000..468029b98 --- /dev/null +++ b/domains/justdeveloper.json @@ -0,0 +1,21 @@ +{ + "description": "JustDeveloper", + "repo": "https://github.com/JustDeveloper1/justdeveloper1.github.io", + "owner": { + "username": "JustDeveloper1", + "email": "justdeveloper@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "TXT": [ + "google-site-verification=qBaFslC7xe6gcHiolYEJ32HjpJVk-ZOMbRpu_1zkm_s", + "yandex-verification: 10cec93159ddc69f" + ] + } +} diff --git a/domains/juststudio.json b/domains/juststudio.json new file mode 100644 index 000000000..251d0872b --- /dev/null +++ b/domains/juststudio.json @@ -0,0 +1,27 @@ +{ + "description": "JustStudio.", + "repo": "https://github.com/JustStudio7/juststudio7.github.io", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx.zoho.eu", + "mx2.zoho.eu", + "mx3.zoho.eu" + ], + "TXT": [ + "v=spf1 include:zohomail.eu ~all", + "google-site-verification=qUvCromdvfxnS6LXzcxcha5rEsHUzBxl9nZH6sT3Dk4", + "yandex-verification: aac5928d8d57ade9" + ] + } +} diff --git a/domains/justtobbi.json b/domains/justtobbi.json index 6dea4cd00..98b8b8081 100644 --- a/domains/justtobbi.json +++ b/domains/justtobbi.json @@ -1,11 +1,11 @@ { - "description": "Personal Website and Portfolio", - "repo": "https://github.com/justTOBBI/justtobbi.github.io", - "owner": { - "username": "justTOBBI", - "email": "justtobbi@gmail.com" - }, - "record": { - "CNAME": "justtobbi.github.io" - } -} \ No newline at end of file + "description": "Personal Website and Portfolio", + "repo": "https://github.com/justTOBBI/justtobbi.github.io", + "owner": { + "username": "justTOBBI", + "email": "justtobbi@gmail.com" + }, + "record": { + "CNAME": "justtobbi.github.io" + } +} diff --git a/domains/justus.json b/domains/justus.json deleted file mode 100644 index 0a9f2bc11..000000000 --- a/domains/justus.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Justus-D", - "email": "justus.is-a.dev@herrblauzahn.de" - }, - "record": { - "CNAME": "is-a-dev.justus-d.de" - } -} diff --git a/domains/jvdesign.json b/domains/jvdesign.json new file mode 100644 index 000000000..6d031425a --- /dev/null +++ b/domains/jvdesign.json @@ -0,0 +1,12 @@ +{ + "description": "Domain for projects page", + "repo": "https://github.com/JVDesignBavaria/jvdesignbavaria.github.io", + "owner": { + "username": "JVDesignBavaria", + "email": "", + "twitter": "JVDesignBavaria" + }, + "record": { + "CNAME": "jvdesignbavaria.github.io" + } +} diff --git a/domains/jvideo.json b/domains/jvideo.json new file mode 100644 index 000000000..9fa9b8fb9 --- /dev/null +++ b/domains/jvideo.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "jvideo-sk", + "email": "davedrives7@gmail.com", + "discord": "1030204181207859260" + }, + + "record": { + "CNAME": "jvideo-sk.github.io" + } + } + \ No newline at end of file diff --git a/domains/jwaxy.json b/domains/jwaxy.json index 66a04f19f..f441505b4 100644 --- a/domains/jwaxy.json +++ b/domains/jwaxy.json @@ -1,11 +1,11 @@ { - "description": "I want to use this for my personal website.", - "repo": "https://github.com/jwaxy/jwaxy.github.io", - "owner": { - "username": "jwaxy", - "email": "me@yxawj.aleeas.com" - }, - "record": { - "CNAME": "jwaxy.github.io" - } -} + "description": "I want to use this for my personal website.", + "repo": "https://github.com/jwaxy/jwaxy.github.io", + "owner": { + "username": "jwaxy", + "email": "me@yxawj.aleeas.com" + }, + "record": { + "CNAME": "jwaxy.github.io" + } +} diff --git a/domains/jzitnik.json b/domains/jzitnik.json index 74104007d..58e385e73 100644 --- a/domains/jzitnik.json +++ b/domains/jzitnik.json @@ -5,6 +5,9 @@ "discord": "KLIND#1906" }, "record": { - "CNAME": "jzitnik.onrender.com" + "MX": [ + "a257fec0e9137cd3.mx2.emailprofi.seznam.cz", + "a257fec0e9137cd3.mx1.emailprofi.seznam.cz" + ] } } diff --git a/domains/k.json b/domains/k.json new file mode 100644 index 000000000..3e82368d9 --- /dev/null +++ b/domains/k.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MaskDuck", + "email": "", + "discord": "716134528409665586" + }, + "record": { + "CNAME": "maskduck.pages.dev" + } +} diff --git a/domains/k4i0d.json b/domains/k4i0d.json deleted file mode 100644 index 5177be014..000000000 --- a/domains/k4i0d.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "kaiodcosta", - "email": "kaiod@riseup.net" - }, - "record": { - "URL": "https://kaiod.icu" - } - } - \ No newline at end of file diff --git a/domains/kachi.json b/domains/kachi.json new file mode 100644 index 000000000..cd2e69a82 --- /dev/null +++ b/domains/kachi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joshex150", + "email": "joshex150@gmail.com" + }, + "record": { + "CNAME": "josh-folio.web.app" + } +} diff --git a/domains/kaish.json b/domains/kaish.json new file mode 100644 index 000000000..168dbd859 --- /dev/null +++ b/domains/kaish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mark18cosmic", + "email": "kaish018@gmail.com" + }, + "record": { + "URL": "https://mark18cosmic.github.io" + } +} diff --git a/domains/kaivalya.json b/domains/kaivalya.json index 67b4342c2..4e85a6b6b 100644 --- a/domains/kaivalya.json +++ b/domains/kaivalya.json @@ -1,11 +1,11 @@ { - "description": "For my Personal Portfolio website", - "repo": "https://github.com/Kaivalya4/Kaivalya4.github.io", - "owner": { - "username": "Kaivalya4", - "email": "kt6819@yahoo.com" - }, - "record": { - "CNAME": "Kaivalya4.github.io" - } -} + "description": "For my Personal Portfolio website", + "repo": "https://github.com/Kaivalya4/Kaivalya4.github.io", + "owner": { + "username": "Kaivalya4", + "email": "kt6819@yahoo.com" + }, + "record": { + "CNAME": "Kaivalya4.github.io" + } +} diff --git a/domains/kaizenji2024.json b/domains/kaizenji2024.json new file mode 100644 index 000000000..7e5186cef --- /dev/null +++ b/domains/kaizenji2024.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kaizenji", + "email": "baratumal6788@gmail.com" + }, + "record": { + "CNAME": "jayceeqti-web.pages.dev" + } + } diff --git a/domains/kakarot.json b/domains/kakarot.json new file mode 100644 index 000000000..f09639c32 --- /dev/null +++ b/domains/kakarot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "anshuayan", + "email": "kakarotp@proton.me" + }, + + "record": { + "CNAME": "anshuayan.github.io" + } +} diff --git a/domains/kaktus.json b/domains/kaktus.json new file mode 100644 index 000000000..37f03af38 --- /dev/null +++ b/domains/kaktus.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kaktus-1", + "email": "", + "discord":"kaktus___" + }, + "record": { + "CNAME": "is-a-dev-3hg.pages.dev" + } +} diff --git a/domains/kalanathilake.json b/domains/kalanathilake.json new file mode 100644 index 000000000..653dff925 --- /dev/null +++ b/domains/kalanathilake.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kalana-Thilakarathna", + "email": "kalana2100@gmail.com" + }, + "record": { + "URL": "https://kalanathilake.netlify.app" + } +} diff --git a/domains/kamlendras.json b/domains/kamlendras.json new file mode 100644 index 000000000..17e1e7e3a --- /dev/null +++ b/domains/kamlendras.json @@ -0,0 +1,11 @@ +{ + "description": "my personal web page", + "repo": "https://github.com/kamlendras/kamlendras.github.io", + "owner": { + "username": "kamlendras", + "email": "kamlendras@proton.me" + }, + "record": { + "CNAME": "kamlendras.github.io" + } +} diff --git a/domains/kamolgks.json b/domains/kamolgks.json new file mode 100644 index 000000000..ced082bc1 --- /dev/null +++ b/domains/kamolgks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kamolgks", + "email": "kamoliddintuhtaboev2@gmail.com" + }, + "record": { + "CNAME": "kamolgks.github.io" + } +} diff --git a/domains/kamy0403.json b/domains/kamy0403.json deleted file mode 100644 index 9f616080d..000000000 --- a/domains/kamy0403.json +++ /dev/null @@ -1,13 +0,0 @@ - - { - "owner": { - "username": "thanhcong2k7", - "email": "nhocpeacock@gmail.com", - "twitter": "NTKam007", - "discord": "KamyzZ#3790" - }, - "record": { - "CNAME": "kmdev.carrd.co" - } - } - diff --git a/domains/kamyzz.json b/domains/kamyzz.json deleted file mode 100644 index 765a1688b..000000000 --- a/domains/kamyzz.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "thanhcong2k7", - "email": "nhocpeacock@gmail.com" - }, - "record": { - "CNAME": "kamyzz.carrd.co" - } - } - diff --git a/domains/kanti-tkm.json b/domains/kanti-tkm.json new file mode 100644 index 000000000..d4180df5a --- /dev/null +++ b/domains/kanti-tkm.json @@ -0,0 +1,11 @@ +{ + "description": "Toyota Fan Website", + "repo": "https://ashc1ty.github.io/test-toyo/", + "owner": { + "username": "AshC1ty", + "email": "ashcity07734@gmail.com" + }, + "record": { + "CNAME": "ashc1ty.github.io" + } +} diff --git a/domains/kapoor.json b/domains/kapoor.json new file mode 100644 index 000000000..a88ae472c --- /dev/null +++ b/domains/kapoor.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kapoorsaumitra", + "email": "saumitrakapoor24@gmail.com", + "twitter": "0xKapoor" + }, + + "record": { + "URL": "https://kapoorportfolio.vercel.app" + } +} diff --git a/domains/kappucino.json b/domains/kappucino.json new file mode 100644 index 000000000..aef4c217d --- /dev/null +++ b/domains/kappucino.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kappucin", + "email": "132572179+kappucin@users.noreply.github.com", + "discord": "853170099392479253" + }, + + "record": { + "CNAME": "kappucin.github.io" + } +} diff --git a/domains/kappurumedia.json b/domains/kappurumedia.json new file mode 100644 index 000000000..cee9e2034 --- /dev/null +++ b/domains/kappurumedia.json @@ -0,0 +1,11 @@ +{ + "description": "I'm a developer", + "repo": "https://github.com/CyrusCore/cyruscore.github.io", + "owner": { + "username": "CyrusCore", + "email": "abramsatria7@gmail.com" + }, + "record": { + "CNAME": "cyruscore.github.io" + } +} diff --git a/domains/kappy.json b/domains/kappy.json new file mode 100644 index 000000000..09896ea72 --- /dev/null +++ b/domains/kappy.json @@ -0,0 +1,12 @@ +{ + "description": "KAPPY`s website, made by @JustDeveloper1", + "repo": "https://github.com/KAPPYSQUAD/kappysquad.github.io", + "owner": { + "username": "KAPPYSQUAD", + "email": "justdeveloper@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "CNAME": "kappysquad.github.io" + } +} diff --git a/domains/karacsony.vamtic.json b/domains/karacsony.vamtic.json new file mode 100644 index 000000000..a0c9ee304 --- /dev/null +++ b/domains/karacsony.vamtic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vamtic", + "email": "vamtic@yahoo.com" + }, + "record": { + "CNAME": "karacsony.pages.dev" + } +} diff --git a/domains/kars.json b/domains/kars.json new file mode 100644 index 000000000..34990b408 --- /dev/null +++ b/domains/kars.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website.", + "repo": "https://github.com/lean-cc/lean-cc.github.io", + "owner": { + "username": "lean-cc", + "email": "leancc3020@gmail.com" + }, + "record": { + "CNAME": "lean-cc.github.io" + } +} diff --git a/domains/karthikr.json b/domains/karthikr.json new file mode 100644 index 000000000..ceb68c8df --- /dev/null +++ b/domains/karthikr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ghxst0x1", + "email": "karthikrofficial7@gmail.com" + }, + "record": { + "CNAME": "ghxst0x1.pages.dev" + } +} diff --git a/domains/karttikeya.json b/domains/karttikeya.json new file mode 100644 index 000000000..6cce8a1d5 --- /dev/null +++ b/domains/karttikeya.json @@ -0,0 +1,11 @@ +{ + "description": "Karttikeya's portfolio website", + "repo": "https://github.com/KartKernel/KartKernel.github.io", + "owner": { + "username": "Karttikeya", + "email": "karttikeyashahi@gmail.com" + }, + "record": { + "CNAME": "KartKernel.github.io" + } +} diff --git a/domains/kashif-kadri.json b/domains/kashif-kadri.json new file mode 100644 index 000000000..2e92c4aea --- /dev/null +++ b/domains/kashif-kadri.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/kashif-kadri/kashif-kadri.github.io", + "owner": { + "username": "kashif-kadri", + "email": "" + }, + "record": { + "URL": "https://kashif-kadri.github.io" + } +} diff --git a/domains/kashif.json b/domains/kashif.json deleted file mode 100644 index 1054262c0..000000000 --- a/domains/kashif.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "appsdevpk", - "email": "kashid1@gmail.com" - }, - - "record": { - "A": ["129.146.191.167"] - } - } - \ No newline at end of file diff --git a/domains/kasun.json b/domains/kasun.json new file mode 100644 index 000000000..e8b1021a6 --- /dev/null +++ b/domains/kasun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ka0un", + "email": "givemelognotes@gmail.com" + }, + "record": { + "URL": "https://ka0un.github.io" + } +} diff --git a/domains/katolik163.json b/domains/katolik163.json new file mode 100644 index 000000000..a3a4a93a5 --- /dev/null +++ b/domains/katolik163.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "katolik163", + "email": "klimenko.tolik2004@gmail.com", + "discord": "376320810631299084" + }, + + "record": { + "CNAME": "katolik163.github.io" + } + } + \ No newline at end of file diff --git a/domains/katz.json b/domains/katz.json new file mode 100644 index 000000000..9ea7902c3 --- /dev/null +++ b/domains/katz.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "Bananalolok", + "discord": "banana_lol_7678", + "email": "" + }, + "record": { + "A": [ + "34.120.54.55" + ], + "AAAA": [ + "2600:1901:0:6d85::" + ] + } +} diff --git a/domains/kaushalbuccha.json b/domains/kaushalbuccha.json new file mode 100644 index 000000000..4ccd0ef0a --- /dev/null +++ b/domains/kaushalbuccha.json @@ -0,0 +1,14 @@ +{ + "description": "Devloper Portfolio", + "repo": "https://github.com/kaushalbuccha/Portfolio", + "owner": { + "username": "kaushalbuccha", + "email": "kaushaljain741@gmail.com", + "twitter": "kaushalbuccha" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/kaustubh.json b/domains/kaustubh.json new file mode 100644 index 000000000..422bbd5e7 --- /dev/null +++ b/domains/kaustubh.json @@ -0,0 +1,12 @@ +{ + "description": "For my portfolio website made by using HTML + CSS and JS", + "repo": "https://github.com/kaustubhkharvi/kaustubhkharvi.github.io", + "owner": { + "username": "kaustubhkharvi", + "email": "kaustubh_2008@outlook.com", + "twitter": "Kaustubhkharvi" + }, + "record": { + "CNAME": "kaustubhkharvi.github.io" + } +} diff --git a/domains/kavin.json b/domains/kavin.json new file mode 100644 index 000000000..f31da9aec --- /dev/null +++ b/domains/kavin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kavin81", + "email": "kavin6462@gmail.com" + }, + "record": { + "CNAME": "kavin81.pages.dev" + } +} diff --git a/domains/kaweendra.json b/domains/kaweendra.json index 254ebe9bc..06fd96007 100644 --- a/domains/kaweendra.json +++ b/domains/kaweendra.json @@ -1,11 +1,10 @@ +{ + "owner": { + "username": "kaweendras", + "email": "salitha.wijerathna@gmail.com" + }, - { - "owner": { - "username": "kaweendras", - "email": "salitha.wijerathna@gmail.com" - }, - - "record": { - "CNAME": "kaweendras.github.io" - } - } + "record": { + "CNAME": "kaweendras.github.io" + } +} diff --git a/domains/kawet.json b/domains/kawet.json new file mode 100644 index 000000000..674b3f21a --- /dev/null +++ b/domains/kawet.json @@ -0,0 +1,11 @@ +{ + "description": "My portofolio", + "repo": "https://github.com/Kawet00", + "owner": { + "username": "kawet", + "email": "kawet00@proton.me" + }, + "record": { + "CNAME": "ee4b2375-cc40-4c9d-b34a-9fa2047b8ebf.id.repl.co" + } +} diff --git a/domains/kaybee.json b/domains/kaybee.json new file mode 100644 index 000000000..d268d9fa3 --- /dev/null +++ b/domains/kaybee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ecstaticsoul", + "email": "soulfulkrishna@gmail.com" + }, + "record": { + "CNAME": "ecstaticsoul.github.io" + } +} diff --git a/domains/kayden.json b/domains/kayden.json new file mode 100644 index 000000000..a70fdcd17 --- /dev/null +++ b/domains/kayden.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "leekayden", + "email": "kaydenleefale@gmail.com" + }, + + "record": { + "A": ["103.7.8.238"] + } +} diff --git a/domains/kayla.json b/domains/kayla.json new file mode 100644 index 000000000..b2d7cbb34 --- /dev/null +++ b/domains/kayla.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CyberGen49", + "email": "kayla@cybah.me" + }, + "description": "For now I just want to secure this subdomain and have it redirect to my main site. I may do more with it later.", + "record": { + "URL": "https://cybah.me" + } +} diff --git a/domains/kazuoyk.json b/domains/kazuoyk.json new file mode 100644 index 000000000..08ccad1ca --- /dev/null +++ b/domains/kazuoyk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KazuoYK", + "email": "d4rknewbie@gmail.com" + }, + "record": { + "URL": "https://github.com/kazuoyk/dev" + } +} diff --git a/domains/kd.json b/domains/kd.json index 12bdab5a5..572be3e22 100644 --- a/domains/kd.json +++ b/domains/kd.json @@ -1,11 +1,11 @@ -{ - "description": "Personal Developer Website", - "repo": "https://github.com/KejdiKoci/kejdikoci.github.io", - "owner": { - "username": "KejdiKoci", - "email": "kejdikoci.mail@gmail.com" - }, - "record": { - "CNAME": "kejdikoci.github.io" - } -} +{ + "description": "Personal Developer Website", + "repo": "https://github.com/KejdiKoci/kejdikoci.github.io", + "owner": { + "username": "KejdiKoci", + "email": "kejdikoci.mail@gmail.com" + }, + "record": { + "CNAME": "kejdikoci.github.io" + } +} diff --git a/domains/kefir.json b/domains/kefir.json index 745cd1e36..010923243 100644 --- a/domains/kefir.json +++ b/domains/kefir.json @@ -1,4 +1,3 @@ - { "owner": { "username": "kefir2115", @@ -8,4 +7,3 @@ "CNAME": "kefir2115.github.io" } } - diff --git a/domains/keiran.json b/domains/keiran.json new file mode 100644 index 000000000..75c5ce723 --- /dev/null +++ b/domains/keiran.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Bio", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "keiranscript", + "email": "keiran0@proton.me" + }, + "record": { + "URL": "https://e-z.bio/kc" + } +} diff --git a/domains/keirnegn.json b/domains/keirnegn.json new file mode 100644 index 000000000..5b59b8a2e --- /dev/null +++ b/domains/keirnegn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KeIrNeGn", + "email": "terminatorx5e@gmail.com", + "discord": "499592235772280842" + }, + + "record": { + "URL": "https://keirnegn.dev" + } +} diff --git a/domains/keithkhaotic.json b/domains/keithkhaotic.json index 1c6ac0e73..82aca5419 100644 --- a/domains/keithkhaotic.json +++ b/domains/keithkhaotic.json @@ -1,12 +1,12 @@ { - "description": "Keith Khaotic's personal website link", - "repo": "https://github.com/KeithKhaotic/KeithKhaotic.github.io", - "owner": { - "username": "KeithKhaotic", - "email": "keithbussyness@gmail.com", - "twitter": "redrocker133" - }, - "record": { - "CNAME": "keithkhaotic.github.io" - } -} + "description": "Keith Khaotic's personal website link", + "repo": "https://github.com/KeithKhaotic/KeithKhaotic.github.io", + "owner": { + "username": "KeithKhaotic", + "email": "keithbussyness@gmail.com", + "twitter": "redrocker133" + }, + "record": { + "CNAME": "keithkhaotic.github.io" + } +} diff --git a/domains/kem.json b/domains/kem.json new file mode 100644 index 000000000..abd8048bf --- /dev/null +++ b/domains/kem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kemsadboiz", + "email": "kemdev.contact@gmail.com" + }, + "record": { + "A": ["103.169.35.190"] + } +} diff --git a/domains/ken.json b/domains/ken.json index 3052e8455..44de3f8f8 100644 --- a/domains/ken.json +++ b/domains/ken.json @@ -1,6 +1,6 @@ { "owner": { - "username": "Ken Pemberton", + "username": "kenpem", "email": "kenpem@gmail.com" }, "record": { diff --git a/domains/kenny.json b/domains/kenny.json new file mode 100644 index 000000000..a8954a4c9 --- /dev/null +++ b/domains/kenny.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "KennySB-dev", + "email": "kennybugeja@gmail.com", + "discord": "kenny.sb" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/kenwu.json b/domains/kenwu.json index 83dcbaf90..d1c0fd098 100644 --- a/domains/kenwu.json +++ b/domains/kenwu.json @@ -1,12 +1,12 @@ { - "description": "This is Ken Wu's personal portfolio website.", - "repo": "https://github.com/kenwuqianghao/kenwuqianghao.github.io", - "owner": { - "username": "KenWuqianghao", - "email": "wooqianghao@gmail.com", - "twitter": "KenWuqianghao" - }, - "record": { - "CNAME": "kenwuqianghao.github.io" - } - } \ No newline at end of file + "description": "This is Ken Wu's personal portfolio website.", + "repo": "https://github.com/kenwuqianghao/kenwuqianghao.github.io", + "owner": { + "username": "KenWuqianghao", + "email": "wooqianghao@gmail.com", + "twitter": "KenWuqianghao" + }, + "record": { + "CNAME": "kenwuqianghao.github.io" + } +} diff --git a/domains/kerlos.json b/domains/kerlos.json new file mode 100644 index 000000000..dcab70ca6 --- /dev/null +++ b/domains/kerlos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kerlos", + "email": "ker.los@hotmail.com" + }, + "record": { + "URL": "https://github.com/kerlos" + } +} diff --git a/domains/kermicidal.json b/domains/kermicidal.json new file mode 100644 index 000000000..7c2a85ab2 --- /dev/null +++ b/domains/kermicidal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kermitsgonnakermicide", + "email": "kermicidal@gmail.com" + }, + "record": { + "CNAME": "kermitsgonnakermicide.github.io" + } +} diff --git a/domains/kernel32dll.json b/domains/kernel32dll.json new file mode 100644 index 000000000..239add0e0 --- /dev/null +++ b/domains/kernel32dll.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "kernal32dll", + "email": "expertzack2+g1thub@gmail.com", + "discord": "1118894556801413240" + }, + + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/kershan.json b/domains/kershan.json new file mode 100644 index 000000000..c6923e3ed --- /dev/null +++ b/domains/kershan.json @@ -0,0 +1,10 @@ +{ + "description": "Kershan is a dev site, points to personal site", + "owner": { + "username": "kershan", + "email": "n.kershan+isadev@gmail.com" + }, + "record": { + "URL": "http://platformer.online/" + } +} diff --git a/domains/kevin-xavier.json b/domains/kevin-xavier.json new file mode 100644 index 000000000..6641311e7 --- /dev/null +++ b/domains/kevin-xavier.json @@ -0,0 +1,11 @@ +{ + "description": "This subdomain points to my Netlify site", + "repo": "https://github.com/keviiixaviiii/My-Portfolio", + "owner": { + "username": "keviiixaviiii", + "email": "iamkevinxavi@gmail.com" + }, + "record": { + "CNAME": "myreactandcssportfolio.netlify.app" + } +} diff --git a/domains/kevin.json b/domains/kevin.json deleted file mode 100644 index ecb38f866..000000000 --- a/domains/kevin.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "KevinBrogan", - "email": "kevin@brogan.ca" - }, - "record": { - "CNAME": "brogan.ca" - } -} diff --git a/domains/kewanb.json b/domains/kewanb.json new file mode 100644 index 000000000..858313696 --- /dev/null +++ b/domains/kewanb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kewanfr", + "email": "mail@kewan.fr" + }, + "record": { + "URL": "https://blog.kewan.fr" + } +} diff --git a/domains/keyaan.json b/domains/keyaan.json new file mode 100644 index 000000000..d3e7f8b76 --- /dev/null +++ b/domains/keyaan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "keyhacker786", + "email": "keyhacker786@gmail.com", + "discord": "693533573105451089" + }, + + "record": { + "URL": "http://ka4ma.unaux.com" + } +} diff --git a/domains/kha.json b/domains/kha.json index ed3984f21..7df945481 100644 --- a/domains/kha.json +++ b/domains/kha.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "bkit9x", + "email": "bkit9x@gmail.com" + }, - { - "owner": { - "username": "bkit9x", - "email": "bkit9x@gmail.com" - }, - - "record": { - "CNAME": "bkit9x.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "bkit9x.github.io" + } +} diff --git a/domains/khag.json b/domains/khag.json new file mode 100644 index 000000000..d33eeef0d --- /dev/null +++ b/domains/khag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khagdev", + "email": "nguyendaikhang2000@gmail.com" + }, + "record": { + "A": ["103.97.126.26"] + } +} diff --git a/domains/khaidev.json b/domains/khaidev.json new file mode 100644 index 000000000..c14b383e4 --- /dev/null +++ b/domains/khaidev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TruongDuyKhai", + "email": "truongduykhai1012@gmail.com", + "discord": "871329074046435338" + }, + + "record": { + "CNAME": "truongduykhai.github.io" + } +} diff --git a/domains/khaled-bakhti.json b/domains/khaled-bakhti.json new file mode 100644 index 000000000..93dd887c6 --- /dev/null +++ b/domains/khaled-bakhti.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "OTK-98", + "email": "", + "discord": "613789376325091329", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QxPdpax0NnXuYc2y0Kd1afVg5WCm9q-4Pg4dfOhlJD_nEl57XXLzRTqSs19REvTOzrUU1BvxFEBF3Qe3yGaCx8y_vBcRZhh8Voqu637kk4rxatFV9G8wWtle6OatoqYjJ9bXeS-pzvPk4b0hqVwH3INnlzhwMERleRh0e3EbMjolSLEEREWAkNWr0PtEErFd1JL8OqyHxXqG2qNvXqYMtVu4TyVGbBvpiqe8lgToa0amu798f6rEDWKQbKArdbRfCgYYeMsgO4Y3GIjCSx08NJB7IljDhiucILegmOcv_xvQTWizW7KARlVzoxhQz89Yd_-kfOwYA8vmgeW2LOLDuQ.gIx5z6cUtBW0cF1-dI57LA._a_x8UO3Sry1F6tTwpHhdfmfkrfLnTurDfqcT740SwPA0G7DWGY6uli2t1_cV6JzoPry3rboDzwqaLM3fk3YIwhhLYSPpT01hBQO_LVeTmoMeGssyMSseU8ztu15Y_ht.4vtubaVaW9uVN217s62Aag" + }, + + "record": { + "CNAME": "khaled-bakhti.vercel.app" + } + } + \ No newline at end of file diff --git a/domains/khaled.json b/domains/khaled.json index 979cdd57b..c78b268db 100644 --- a/domains/khaled.json +++ b/domains/khaled.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "khaled-0", - "email": "spkhalad@gmail.com" - }, - "record": { - "CNAME": "khaled-0.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "khaled-0", + "email": "spkhalad@gmail.com" + }, + "record": { + "CNAME": "khaled-0.github.io" + } +} diff --git a/domains/khc.json b/domains/khc.json new file mode 100644 index 000000000..51ef889c7 --- /dev/null +++ b/domains/khc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "URL": "https://mohammedkhc.is-a.dev" + } +} diff --git a/domains/khongtontien.json b/domains/khongtontien.json new file mode 100644 index 000000000..f07879c91 --- /dev/null +++ b/domains/khongtontien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thanhnguyen2075", + "email": "abc.bingboong@yahoo.com.vn" + }, + "record": { + "A": ["103.75.187.18"] + } +} diff --git a/domains/khuathuykien.json b/domains/khuathuykien.json new file mode 100644 index 000000000..f9acb10c2 --- /dev/null +++ b/domains/khuathuykien.json @@ -0,0 +1,11 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/kiensamson0000/kiensamson0000.github.io", + "owner": { + "username": "kiensamson0000", + "email": "kienkh99@gmail.com" + }, + "record": { + "CNAME": "kiensamson0000.github.io" + } +} diff --git a/domains/kicrops.json b/domains/kicrops.json index 314199a08..7662c5a13 100644 --- a/domains/kicrops.json +++ b/domains/kicrops.json @@ -1,11 +1,9 @@ { - "description": "A personal website for me and my organization", - "repo": "https://github.com/Kicrops/website", "owner": { "username": "Kicrops", - "email": "kicropsdevelopment@gmail.com" + "email": "spiccininizeida@gmail.com" }, "record": { - "CNAME": "d3aeb170-58da-460e-aad2-29a40a7a0d80.id.repl.co" + "CNAME": "kicrops.github.io" } } diff --git a/domains/kikig4mer.json b/domains/kikig4mer.json new file mode 100644 index 000000000..b8206a97c --- /dev/null +++ b/domains/kikig4mer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KikiG4mer", + "email": "kikig4mer@gmail.com" + }, + "record": { + "CNAME": "kikig4mer.pages.dev" + } +} diff --git a/domains/killerf.json b/domains/killerf.json new file mode 100644 index 000000000..ce44e629e --- /dev/null +++ b/domains/killerf.json @@ -0,0 +1,11 @@ +{ + "description": "The Person Who Hacked QLASH RP And got away with it with nothing to lose, An Exploiter to say the least; Welcome to the other side", + "repo": "https://guns.lol/killerf", + "owner": { + "username": "MohamexDR", + "email": "loliehentaixd@gmail.com" + }, + "record": { + "URL": "https://guns.lol/killerf" + } +} diff --git a/domains/killuazoldyck.json b/domains/killuazoldyck.json new file mode 100644 index 000000000..fefcb1948 --- /dev/null +++ b/domains/killuazoldyck.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "killuazoldyckreal", + "email": "bk1030798@gmail.com" + }, + "record": { + "CNAME": "killuazoldyckreal.github.io" + } +} diff --git a/domains/king.json b/domains/king.json new file mode 100644 index 000000000..736473518 --- /dev/null +++ b/domains/king.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "treehousekingcomic", + "email": "TreeHouseKingComic@gmail.com" + }, + "record": { + "CNAME": "thkc.space" + } +} diff --git a/domains/kingluc.json b/domains/kingluc.json new file mode 100644 index 000000000..6a548c428 --- /dev/null +++ b/domains/kingluc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KingLuc12", + "email": "lucian.g.king+github@gmail.com" + }, + "record": { + "URL": "https://kingluc.my.id" + } +} diff --git a/domains/kingofnetflix.json b/domains/kingofnetflix.json new file mode 100644 index 000000000..94a621fb9 --- /dev/null +++ b/domains/kingofnetflix.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "kingofnetflix", + "email": "kingofnetflix@waifu.club" + }, + "description": "personal development work (websites, reverse proxying, etc)", + "record": { + "A": [ + "161.35.97.251" + ] + } +} diff --git a/domains/kingq23.json b/domains/kingq23.json deleted file mode 100644 index d358668e3..000000000 --- a/domains/kingq23.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Kingq23", - "email": "qadams2008@gmail.com" - }, - "record": { - "URL": "https://kingq23-is-a-dev.kingq23.repl.co" - } -} diff --git a/domains/kirann.json b/domains/kirann.json deleted file mode 100644 index 755bbe11c..000000000 --- a/domains/kirann.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Kiran's personal developer website", - "repo": "https://github.com/sudopower", - "owner": { - "username": "sudopower", - "email": "nkirandroid@gmail.com" - }, - "record": { - "URL": "http://sudopower.com" - } -} diff --git a/domains/kirbeh.json b/domains/kirbeh.json new file mode 100644 index 000000000..cbb571bb6 --- /dev/null +++ b/domains/kirbeh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrTakedi", + "email": "tristankirbehbuller@gmail.com" + }, + "record": { + "URL": "https://social.vivaldi.net/@kirbeh" + } +} diff --git a/domains/kirill-adamuk.json b/domains/kirill-adamuk.json new file mode 100644 index 000000000..3be528e1f --- /dev/null +++ b/domains/kirill-adamuk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "superhorsy", + "email": "adamuk.kirill@gmail.com" + }, + "record": { + "CNAME": "superhorsy.github.io" + } +} diff --git a/domains/kishan-bagiya.json b/domains/kishan-bagiya.json new file mode 100644 index 000000000..38e671ee9 --- /dev/null +++ b/domains/kishan-bagiya.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/kishan-bagiya/kishan-bagiya.github.io", + "owner": { + "username": "kishan-bagiya", + "email": "" + }, + "record": { + "CNAME": "kishan-bagiya.github.io" + } +} diff --git a/domains/kisi.json b/domains/kisi.json new file mode 100644 index 000000000..058367869 --- /dev/null +++ b/domains/kisi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kisi-dev", + "email": "bagasdwianggoro535@gmail.com" + }, + "record": { + "CNAME": "kisi-dev.github.io" + } +} diff --git a/domains/kislay.json b/domains/kislay.json new file mode 100644 index 000000000..56e64db63 --- /dev/null +++ b/domains/kislay.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Crevils", + "email": "", + "discord": "716851813328093224", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.HIhUkETdeQJWFw4CAk5JOh2F2Y3gMOiQDrc0Lzu2QttwCbN9wcWJ9BLV4lH-O3T1MgC2snwX0K_-Jw35xI2MQhlW71e7fi_IOms4nTVvghkSHXDse5bQs_mPqLOMTDAXMdctjJX-AS2Xk9cWt53GY-MbIJHkkXz4I1vmjaj2-JhoJ1zKIxWnwqt4Q7ogCeNMx0fZkzZxBUlSAL7fnNTIn4CcDjAPyqN0iHwRhzvK2OFvIDVfFhywiSaaz2z_duIt-yJCavWuNyo1sKyvrmNTqlVdlc-RzdC3PQCtAxACi0ze011WMJittazwJVfXdfOZsOCj6EHgl4G1167YdKmnRQ.JKlkF98YVzYifIoXoUGH7Q.2bBLVW9QmgwifdRF32sx_5vgRnN9H6y59biU-zJu6Ay7Hb6wrwwVqZRHhD5cFFGajSIwtKk7dCxJtXMd6VdPUPXCRY-s9DZ_-OoxXiDefnrXRM_o2AIGgqnuPBOp3zad.t2l_a3UIBjnoY-tEElUuiQ" + }, + + "record": { + "CNAME": "kislay-dev.web.app" + } + } + \ No newline at end of file diff --git a/domains/kito.json b/domains/kito.json new file mode 100644 index 000000000..0bd1ba082 --- /dev/null +++ b/domains/kito.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "KitoMCVN", + "email": "", + "discord": "915876843884777472", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.bWNBxXSrLT81uzEvuFDyDzQ6MUq8Aq3mkVGE9xrhoZ3emFszHFj1sr4hGsNg-X2IJWAYJHNAFuN6ihvsdWNW1fuJIyUpYUfxnwG272uIjq1441itpD61r9GEjhVI9-f9eiA0DCM3mZxf7JABbSZEAAQSjkQNBZy7btbWqAC_fcvaHlh8tTkmn8tiCF6PmYUaU_-OVcVfpLqfE1NG4jWhqDdh6PHy-YJdNSRMggPKW1tgOkAzzPkFDFJbZLGxbRRhPFzsVi64Q4arfkQgTcsJpEGD5RwQvbb3j_lHGtErQvCndbnhcKAOltYpc-DL3Iv8A0iTeUsrpQ8lu-FKPOuVhg.eEabdg4lkJkWzZ9LhlnMAw.BxE4h5-4aIfPNc5C1Fc13n243OxCAOj0p6aWN6sClxRz9osKsmy_ASiLJ-S0thDvWu4-IDNdEvpt2pmjkQe2a4nCDDIZ8Lh9RHzVOZi_hQs.OTiy1ZwmVAWUfoEqGkqCEg" + }, + + "record": { + "CNAME": "kitomc.site" + } + } + \ No newline at end of file diff --git a/domains/kitsune.json b/domains/kitsune.json new file mode 100644 index 000000000..327618679 --- /dev/null +++ b/domains/kitsune.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KitsuneDev", + "email": "kitsune@akitsune.dev" + }, + "record": { + "URL": "https://akitsune.dev" + } +} diff --git a/domains/kitty.json b/domains/kitty.json deleted file mode 100644 index d7f091347..000000000 --- a/domains/kitty.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "Stardustxxx", - "email": "kitty@kittysmh.tech" - }, - - "record": { - "A": ["192.95.42.66"] - } - } - \ No newline at end of file diff --git a/domains/kittyneverdies.json b/domains/kittyneverdies.json new file mode 100644 index 000000000..2f98b1943 --- /dev/null +++ b/domains/kittyneverdies.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kittyneverdies", + "email": "Catofeyevich@proton.me" + }, + "record": { + "CNAME": "kittyneverdies.github.io" + } +} diff --git a/domains/kiwi.json b/domains/kiwi.json new file mode 100644 index 000000000..af7ef00c0 --- /dev/null +++ b/domains/kiwi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imdakiki", + "email": "skullkid73@outlook.com" + }, + "record": { + "CNAME": "kikisdevelopment.github.io" + } +} diff --git a/domains/kiwozen.json b/domains/kiwozen.json index 744355c9c..24e88cab9 100644 --- a/domains/kiwozen.json +++ b/domains/kiwozen.json @@ -1,10 +1,10 @@ { - "description": "clean af", - "owner": { - "username": "kiwozen", - "email": "goat@kiwozen.de" - }, - "record": { - "URL": "https://kiwozen.de" - } -} + "description": "clean af", + "owner": { + "username": "kiwozen", + "email": "goat@kiwozen.de" + }, + "record": { + "URL": "https://kiwozen.de" + } +} diff --git a/domains/kiyora.json b/domains/kiyora.json index 96b5a39bb..dfed83a7a 100644 --- a/domains/kiyora.json +++ b/domains/kiyora.json @@ -1,12 +1,11 @@ { - "description": "using for personal projects", - "repo": "https://github.com/ItsMyEyes", - "owner": { - "username": "ItsMyEyes", - "email": "dev@sipaling.top" - }, - "record": { - "CNAME": "itsmyeyes.github.io" - } + "description": "using for personal projects", + "repo": "https://github.com/ItsMyEyes", + "owner": { + "username": "ItsMyEyes", + "email": "dev@sipaling.top" + }, + "record": { + "CNAME": "itsmyeyes.github.io" } - \ No newline at end of file +} diff --git a/domains/kkdesigns.json b/domains/kkdesigns.json deleted file mode 100644 index 4c561b711..000000000 --- a/domains/kkdesigns.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "All of K.K Designs Fitbit® applications", - "repo": "https://github.com/KK-Designs/K.K-Designs-Website", - "owner": { - "username": "KK-Designs", - "email": "kkart2007@gmail.com" - }, - "record": { - "CNAME": "kk-designs.github.io" - } -} diff --git a/domains/kleb.json b/domains/kleb.json new file mode 100644 index 000000000..f8d1961e3 --- /dev/null +++ b/domains/kleb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KrazyKleb", + "email": "krazykleb@outlook.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/klent.json b/domains/klent.json new file mode 100644 index 000000000..8b1002d85 --- /dev/null +++ b/domains/klent.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kleeiny", + "email": "kleeinlmao@gmail.com", + "discord": "763581985410121769" + }, + + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/klindos.jzitnik.json b/domains/klindos.jzitnik.json deleted file mode 100644 index 5fd90cf60..000000000 --- a/domains/klindos.jzitnik.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "JZITNIK-github", - "email": "klindkubak@zohomail.eu", - "discord": "KLIND#1906" - }, - "record": { - "CNAME": "klind-os.onrender.com" - } -} diff --git a/domains/klone.json b/domains/klone.json new file mode 100644 index 000000000..fba8f2709 --- /dev/null +++ b/domains/klone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Vai3soh", + "email": "work.rwx.seven@gmail.com" + }, + "record": { + "A": ["45.153.69.189"] + } +} diff --git a/domains/kmrvarun.json b/domains/kmrvarun.json index 10bcf224e..f3bace905 100644 --- a/domains/kmrvarun.json +++ b/domains/kmrvarun.json @@ -1,11 +1,10 @@ +{ + "owner": { + "username": "kmr-varun", + "email": "kmr11varun@gmail.com" + }, - { - "owner": { - "username": "kmr-varun", - "email": "kmr11varun@gmail.com" - }, - - "record": { - "CNAME": "kmr-varun.github.io" - } - } + "record": { + "CNAME": "kmr-varun.github.io" + } +} diff --git a/domains/kns.json b/domains/kns.json deleted file mode 100644 index 5c753a9df..000000000 --- a/domains/kns.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "ItzCrazyKns", - "email": "", - "discord": "ItzCrazyKns#1337" - }, - "record": { - "A": [ - "129.153.126.170" - ] - } -} diff --git a/domains/kobeff.json b/domains/kobeff.json deleted file mode 100644 index 8dd2b077d..000000000 --- a/domains/kobeff.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "KobeFF's Portfolio", - "repo": "please get the code from https://its.kobeff.repl.co", - "owner": { - "username": "Kobe523", - "email": "kfni@madison.k12.wi.us" - }, - "record": { - "URL": "https://its.kobeff.repl.co" - } -} diff --git a/domains/kociak.json b/domains/kociak.json new file mode 100644 index 000000000..eecd6f689 --- /dev/null +++ b/domains/kociak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "piotrkociakx", + "email": "piotrekstypczynski@gmail.com" + }, + "record": { + "A": ["137.74.3.247"] + } +} diff --git a/domains/kokoapi.json b/domains/kokoapi.json new file mode 100644 index 000000000..0aae2b79b --- /dev/null +++ b/domains/kokoapi.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "kokofixcomputers", + "email": "", + "discord": "1096839213313446019", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OVsezriezhfXmczekw7NKD6j1jiTDnkJZaV8hmKUT6jVau-fAM4xsfKuSd55u-ayIYDJTJmqUhOdDcRNGn9qJMQU1swUYKM2IjqV5F39j62OBWCEuvGahVIlvk3qPBrL6BsTnE6U5V6AcL7fk07JR7VQncG_gLo_CsF2D3NkMlvjeJweQKk-PjP5f64lFJxpGo4X6lfRgvYI9IAfyDFCBuXVz1bziA_ZLHMLSGSm6OxJSBBPV42TqlHNYGzRYaEq5gBDnANsuNDVN27pHgDEQjhCxP07U3V5dAL7JcESSlR7QQSng47lwmetAtfMlW2HSeOkBLLpkI82XNDCjwnsXA.Qpc8I5_rOVUFEGrJgh4mnw.aZ_gT11nH1hgU_JXz5a01NBB6CDgcy4i9cgBeqo2j50HuQ00uDzzBDS6M941D0WsCOLnzaQ1XvjXLcFiHKcBuINVPaVNDu0X0Nm2ruoPpfLyS6mRa_efDkm9rwXR3bghgOKkE1wcXTR6LyOkDEhyYg.jmEV6MAXMmLltboCG3yE6w" + }, + + "record": { + "A": ["37.114.46.39"] + } + } diff --git a/domains/kokoauth.json b/domains/kokoauth.json new file mode 100644 index 000000000..2f6ffbed2 --- /dev/null +++ b/domains/kokoauth.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "kokofixcomputers", + "email": "", + "discord": "1096839213313446019", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.siGn-NNc3J0a5tP-qPXfUiXXiLIVsc0rU0Xd0LJ2zn1pvgeLu42wC5CVbz2mPW9PvsxmeOF2FdX4W1ki8dkzxI5tZO3CljQWLsKq26TpVGTApDCXDUEFk80WpmvQK_uBajVrL-0Jaq_teH1coNYFPbH5dp9WmOV3ckgCkqwqP7alY4klkZ9A6GsdkcJ51gbQ1qHp1qZIX7jwBNcOXE0WR5KTNXKeeOGSvHbAGEWhLc96y6TzokyZsC71pkTF0UjrLfB4uylcD0UfEONiwDKc8jjXR3Jz3GnfzgaSqPjRNYqMjXQ5XxPXwjv8t4iCP3cBRNEMM70pFXneFWt3defrMQ.6dpv7unaFwIz_IkI7VerwA.P9NXfPTD2LDNEdOFa-roPC1NDB1WvFiX8Giai3cjpNFYcYHJyH7_7lOV6o4zUoN83Ttt1VaukQKLsMk2kaVedZUPPryAhzVLMJiG7-GiJlW22PgcTkjB67jRjqEdoSo_zS70y1C7KeiLv7ZyY_koGg.2NwhAegHA2i-6E9hhzlXfQ" + }, + + "record": { + "A": ["45.90.12.32"] + } + } + \ No newline at end of file diff --git a/domains/kokofixcomputers.json b/domains/kokofixcomputers.json new file mode 100644 index 000000000..7ee797a39 --- /dev/null +++ b/domains/kokofixcomputers.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kokofixcomputers", + "email": "113046561+kokofixcomputers@users.noreply.github.com", + "discord": "1096839213313446019" + }, + + "record": { + "MX": ["mail0.serv00.com"] + } +} diff --git a/domains/koolwiza.json b/domains/koolwiza.json deleted file mode 100644 index 57cd570dd..000000000 --- a/domains/koolwiza.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Koolwiza", - "email": "koolwiza@gmail.com" - }, - "description": "Just a cool subdomain to have :)", - "repo": "https://www.github.com/Koolwiza", - "record": { - "CNAME": "koolwiza.github.io" - } -} diff --git a/domains/korabase.json b/domains/korabase.json new file mode 100644 index 000000000..64e3a7fdb --- /dev/null +++ b/domains/korabase.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WhyuMC", + "email": "r12350042@gmail.com" + }, + "record": { + "CNAME": "site.namedhosting.com" + } +} diff --git a/domains/korbinvanette.json b/domains/korbinvanette.json deleted file mode 100644 index 0839a5913..000000000 --- a/domains/korbinvanette.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "KorbinVanetteDev", - "email": "korbinvanettedev@gmail.com" - }, - - "record": { - "CNAME": "35ad5fb7-4c98-46e4-891b-67815124df03.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/korigamik.json b/domains/korigamik.json new file mode 100644 index 000000000..a81e82805 --- /dev/null +++ b/domains/korigamik.json @@ -0,0 +1,12 @@ +{ + "description": "The Portfolio of KorigamiK", + "repo": "https://github.com/KorigamiK/korigamik.github.io", + "owner": { + "username": "KorigamiK", + "email": "korigamik@gmail.com", + "twitter": "https://twitter.com/iamkorigamik" + }, + "record": { + "CNAME": "korigamik.github.io" + } +} diff --git a/domains/koriumm.json b/domains/koriumm.json new file mode 100644 index 000000000..9a11101bf --- /dev/null +++ b/domains/koriumm.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Koriumm", + "email": "KoriummLive@gmail.com", + "discord": "hong.kong" + }, + "record": { + "CNAME": "koriumm.github.io" + } +} diff --git a/domains/korrykatti.json b/domains/korrykatti.json new file mode 100644 index 000000000..8fd67b270 --- /dev/null +++ b/domains/korrykatti.json @@ -0,0 +1,12 @@ +{ + "description": "Domain for my personal website", + "repo": "https://github.com/KorryKatti/korrykatti.github.io", + "owner": { + "username": "KorryKatti", + "email": "8nctvx7gi@mozmail.com", + "twitter": "korrykatti" + }, + "record": { + "CNAME": "korrykatti.github.io" + } +} diff --git a/domains/koshikkumar17.json b/domains/koshikkumar17.json index 94277b5ea..ae0639486 100644 --- a/domains/koshikkumar17.json +++ b/domains/koshikkumar17.json @@ -1,11 +1,11 @@ { - "description": "My Portfolio", - "repo": "https://github.com/KoshikKumar17/KoshikKumar17.github.io", - "owner": { - "username": "koshikkumar17", - "email": "cw4rriors17@gmail.com" - }, - "record": { - "CNAME": "koshikkumar17.github.io" - } + "description": "My Portfolio", + "repo": "https://github.com/KoshikKumar17/KoshikKumar17.github.io", + "owner": { + "username": "koshikkumar17", + "email": "cw4rriors17@gmail.com" + }, + "record": { + "CNAME": "koshikkumar17.github.io" + } } diff --git a/domains/koslz.json b/domains/koslz.json new file mode 100644 index 000000000..92417b361 --- /dev/null +++ b/domains/koslz.json @@ -0,0 +1,11 @@ +{ + "description": "koslz.is-a.dev", + "repo": "https://github.com/koslz-studios/koslz-studios.github.io", + "owner": { + "username": "iakzs", + "email": "iakzs@protonmail.com" + }, + "record": { + "CNAME": "koslz-studios.github.io" + } +} diff --git a/domains/kota.json b/domains/kota.json new file mode 100644 index 000000000..b499f848b --- /dev/null +++ b/domains/kota.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sharkota", + "email": "nappythebappy@gmail.com" + }, + "record": { + "CNAME": "sharkota.github.io" + } +} diff --git a/domains/kotikov.json b/domains/kotikov.json index c170c860f..fcfa81cc9 100644 --- a/domains/kotikov.json +++ b/domains/kotikov.json @@ -1,16 +1,16 @@ { - "description": "Portfolio.", - "repo": "https://github.com/kotru21/kotikov", - "owner": { - "username": "kotru21", - "email": "kotikovv@proton.me" - }, - "record": { - "URL": "https://kotikov.pages.dev", - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} + "description": "Portfolio.", + "repo": "https://github.com/kotru21/kotikov", + "owner": { + "username": "kotru21", + "email": "kotikovv@proton.me" + }, + "record": { + "URL": "https://kotikov.pages.dev", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/koton-bads.json b/domains/koton-bads.json index 6c6f80cca..77fa40270 100644 --- a/domains/koton-bads.json +++ b/domains/koton-bads.json @@ -1,10 +1,10 @@ { - "description": "Personal Site", - "owner": { - "username": "KotonBads", - "email": "kotonbads@duck.com" - }, - "record" : { - "CNAME": "kotonbads.github.io" - } + "description": "Personal Site", + "owner": { + "username": "KotonBads", + "email": "kotonbads@duck.com" + }, + "record": { + "CNAME": "kotonbads.github.io" + } } diff --git a/domains/kpopiui.json b/domains/kpopiui.json deleted file mode 100644 index 92ef2be26..000000000 --- a/domains/kpopiui.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Zeor154", - "email": "driop12bu@gmail.com" - }, - "record": { - "A": ["45.140.141.88"] - } - } - \ No newline at end of file diff --git a/domains/kr.json b/domains/kr.json new file mode 100644 index 000000000..fbe679633 --- /dev/null +++ b/domains/kr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "me-nkr", + "email": "thenaveenkr7@gmail.com" + }, + "record": { + "URL": "https://dev.menkr.in" + } +} diff --git a/domains/kreativethinker.json b/domains/kreativethinker.json new file mode 100644 index 000000000..ca7be3aef --- /dev/null +++ b/domains/kreativethinker.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "KreativeThinker", + "email": "sagely2005eagle@gmail.com" + }, + + "record": { + "CNAME": "kreativethinker.github.io" + } +} diff --git a/domains/kriloud.json b/domains/kriloud.json new file mode 100644 index 000000000..bba698974 --- /dev/null +++ b/domains/kriloud.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "finderfail", + "email": "ilyalvov2007@gmail.com", + "discord": "354246208828735489" + }, + + "record": { + "A": ["142.93.34.245"] + } + } + \ No newline at end of file diff --git a/domains/krinzal.json b/domains/krinzal.json new file mode 100644 index 000000000..9596acebb --- /dev/null +++ b/domains/krinzal.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "krinzal", + "email": "krinzal54@gmail.com" + }, + + "record": { + "URL": "https://krinzal.vercel.app" + } +} diff --git a/domains/krish.json b/domains/krish.json new file mode 100644 index 000000000..f6c80b1af --- /dev/null +++ b/domains/krish.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "krish858", + "email": "unknowmortal57@gmail.com", + "discord": "789102469345968131" + }, + + "record": { + "CNAME": "krish858.github.io" + } + } + diff --git a/domains/krishanu.json b/domains/krishanu.json new file mode 100644 index 000000000..ee1e0e74b --- /dev/null +++ b/domains/krishanu.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "krishanunaskar", + "email": "", + "discord": "977802250716078210", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qGTBpEFfITIu63a63XbYmqGoJDIOlEN4ISz3uij_lTD_OvLRriPZqb86NtySYA_f0g1DyQ77BzrWfcKYaB_Z7qoZkZA6mdaLR6631PlsG-Sgmaxe8TuBO2nCGtR8aqKHZy1v7_zTxp2il4D9tnOBkVQZD292aZvzHRp1rQuXWD0938IP7sHJ7iWc8ZWCslMZ1JZr2ovn6dlrJRSZwKDz9EXxhml_Vh1uMCSX4j6SVlY4Igar7uynfnQXFdfTXtNL6PmFLZzbmrT-2v1IWX37sIxdImOlu2luXFJqWyUyU3l2EdxEcrsGVxjYkVi6BYwEwuMvk1bzBdSWUSuDtbsTXg.wvk0XAFUlCXQaRY3zBwCJw.MpTbqLhGorHkqyksytW5i_3xlG4siQOw70f1hCsOuwYArFbD0T0R1Cgw_Ms-ym8yf4ksFXR6HlmS5tf3ZfnRuUu60LTBKbDC0wKY8dWsUig.g_ceL7m8Sdnyp4PCmweWgQ" + }, + + "record": { + "CNAME": "krishanu.odoo.com" + } + } + \ No newline at end of file diff --git a/domains/krishanuop.json b/domains/krishanuop.json new file mode 100644 index 000000000..b21a7f6c5 --- /dev/null +++ b/domains/krishanuop.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "krishanunaskar", + "email": "", + "discord": "977802250716078210", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OszIokiYPY7t3Ds6Ht-imaGPObxAklMvCUMae8XWaQ7viZjgRMMtjX9YfSXws6xbHJFckk1Y40MhMYPCHVi0WUHywQeqZsW-6aSTatDKKSn-2Wd2a3VxtZQabmGAtsNDdp9MFZnOTgs-XAKABpTDdsg4l0akeb-X1XkflwVdS018GsnkIzCxhsLG_SssCnyx3de7ZvGvGHmUzPxMeU6s4SgBvV-fZ1V7dFgyutDZzT01uF29-oIm8Xtaq-JVfJAVgnUpPZNapJFD9c_RItCQ80ukB3-r3D81bj-rTpydIipcRZdnz9WxhFgijxjCyoegO-LsEF5bx0-Jhtq0Y92Cvg.e513GaD0mKvES-jC1IjD2w.Rs3pmM_TESrJJIneD2cMrpon252r1EHu43bKC0628WlYzvt9QKMpR28oLfMcEtNoh2ND90ua77XzKXMJ_oClI_MKCZ0-_L-mLV4O5y-qhAg.oCo-xWtH8UfH_DmSlBghqg" + }, + + "record": { + "CNAME": "krishanu.odoo.com" + } + } + \ No newline at end of file diff --git a/domains/krishna.json b/domains/krishna.json index 0321e472c..3bdb6ad77 100644 --- a/domains/krishna.json +++ b/domains/krishna.json @@ -1,12 +1,11 @@ +{ + "owner": { + "username": "Krishnabohra", + "email": "Krishnabohra2013@gmail.com", + "discord": "328135638358687746" + }, - { - "owner": { - "username": "be-krishna", - "email": "bkshgnj@gmail.com" - }, - - "record": { - "TXT": "google-site-verification=_hTlyUTWdbFv6l_L1Rizntdh7nSqvPP5DdvcLD1vuck" - } - } - \ No newline at end of file + "record": { + "CNAME": "krishnabohra.github.io" + } +} diff --git a/domains/krishnan.json b/domains/krishnan.json new file mode 100644 index 000000000..2837b4fa5 --- /dev/null +++ b/domains/krishnan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "krishnans2006", + "email": "krishnans2006@gmail.com" + }, + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/krix.json b/domains/krix.json index 7316af4db..07ca64bdf 100644 --- a/domains/krix.json +++ b/domains/krix.json @@ -1,10 +1,10 @@ { - "description": "Krix's portfolio", - "owner": { - "username": "Krix12", - "email": "kristjan.kocevar89@gmail.com" - }, - "record": { - "CNAME": "krix12-github-io.pages.dev" - } + "description": "Krix's portfolio", + "owner": { + "username": "Krix12", + "email": "kristjan.kocevar89@gmail.com" + }, + "record": { + "CNAME": "krix12-github-io.pages.dev" + } } diff --git a/domains/kriz.json b/domains/kriz.json new file mode 100644 index 000000000..24cc65800 --- /dev/null +++ b/domains/kriz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "altkriz", + "email": "k.raza1932000@gmail.com" + }, + "record": { + "CNAME": "altkriz.github.io" + } +} diff --git a/domains/kronifer.json b/domains/kronifer.json new file mode 100644 index 000000000..54638a316 --- /dev/null +++ b/domains/kronifer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kronifer", + "email": "dillonr5@live.wsd1.org" + }, + "record": { + "A": ["159.203.35.162"] + } +} diff --git a/domains/krunch.json b/domains/krunch.json new file mode 100644 index 000000000..6a37f059f --- /dev/null +++ b/domains/krunch.json @@ -0,0 +1,12 @@ +{ + "description": "Profile Page", + "repo": "https://github.com/RadioactivePotato/krunch-is-a-dev", + "owner": { + "username": "RadioactivePotato", + "email": "", + "discord": "krunchiekrunch._." + }, + "record": { + "CNAME": "krunch.pages.dev" + } +} diff --git a/domains/krvishal.json b/domains/krvishal.json deleted file mode 100644 index 1b5614ba5..000000000 --- a/domains/krvishal.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Portfolio", - "repo": "https://github.com/thegeekdex", - "owner": { - "username": "thegeekdex", - "email": "", - "discord": "Vishal S.#6993" - }, - "record": { - "A": ["43.205.87.144"] - } -} diff --git a/domains/kryptorian.json b/domains/kryptorian.json new file mode 100644 index 000000000..b5c88bebb --- /dev/null +++ b/domains/kryptorian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kryptorian", + "email": "kryptoria@protonmail.com" + }, + "record": { + "A": ["130.61.159.247"] + } +} diff --git a/domains/kryptx.json b/domains/kryptx.json new file mode 100644 index 000000000..eacaea2cf --- /dev/null +++ b/domains/kryptx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0kryptx", + "email": "k3px@proton.me" + }, + "record": { + "CNAME": "0kryptx.github.io" + } +} diff --git a/domains/krystian.json b/domains/krystian.json new file mode 100644 index 000000000..687ce5471 --- /dev/null +++ b/domains/krystian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Krystian15x", + "email": "krystiankoral@gmail.com" + }, + "record": { + "A": ["138.2.132.47"] + } +} diff --git a/domains/ks.json b/domains/ks.json new file mode 100644 index 000000000..b62fcf252 --- /dev/null +++ b/domains/ks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "k2s09", + "email": "soodkavin@gmail.com" + }, + "record": { + "CNAME": "kavinsood.com" + } +} diff --git a/domains/kshitij.json b/domains/kshitij.json deleted file mode 100644 index 132e479af..000000000 --- a/domains/kshitij.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Kshitij Subedi", - "owner": { - "username": "Kshitij Subedi", - "email": "2subedikshitij@gmail.com" - }, - "record": { - "CNAME": "kshitijsubedi.com.np" - } - } - \ No newline at end of file diff --git a/domains/kubov.json b/domains/kubov.json index 7e04c55b3..c3ddd1ebd 100644 --- a/domains/kubov.json +++ b/domains/kubov.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "Kubov24", + "email": "jakubcaly93@gmail.com" + }, - { - "owner": { - "username": "Kubov24", - "email": "jakubcaly93@gmail.com" - }, - - "record": { - "A": ["37.187.156.46"] - } - } - \ No newline at end of file + "record": { + "A": ["37.187.156.46"] + } +} diff --git a/domains/kucharskov.json b/domains/kucharskov.json new file mode 100644 index 000000000..6aa4b6495 --- /dev/null +++ b/domains/kucharskov.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Kucharskov", + "email": "", + "discord": "271314313984212992", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.B4bLEFARNAdE_BpPAqvnVufPoWEFTizcv4TOGjyRp4RXYC2M5KDV9FYxsJGHw1FSL349cL58sYIEj9rGNhYxAPWf9TzEXKgnCCHPcjbnOFr4q4Vo1z29HuvY2DyYjKHpWuGDoIgaYNsnXz2vYjgLeHG8gc6tB6v53Urf9jj4tF_vE3DmxgdsuXNcNlh9Lmw9Xi1DA2dId5YGklN9MVJLL78LEWkADBidKsSeQkEQ3h98pPw6MQuZ1WcDCBiFs6SaL0Hp9Mjsn3XESdwUeSF8oFbuIyRqQOsr26-SSn8t4noKeI_yvzI36sItkJVkfho9QtYUcdfjcxerXNDSpJ-6ow.fmZCDBax-e6Fvc2CpmcvUQ.TYO6CzoUcOp_GxVs9ACfSWNB4tawICrusIk8V1ccw4_4LrT5Sg8TSqX6Hv9AkSzHa1uJjqnq8Fpe5kLW7jp5neM1eC8YpeWKkpr_bxyggGA.OR3Hp4ja27cqEwLpfgmFag" + }, + + "record": { + "URL": "https://kucharskov.pl" + } + } + diff --git a/domains/kukikop.json b/domains/kukikop.json deleted file mode 100644 index bc57f3884..000000000 --- a/domains/kukikop.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Zeor154", - "email": "driop12bu@gmail.com" - }, - "record": { - "A": ["45.130.141.88"] - } - } - \ No newline at end of file diff --git a/domains/kuldeep.json b/domains/kuldeep.json new file mode 100644 index 000000000..a772ebcaf --- /dev/null +++ b/domains/kuldeep.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "sukanayaprajapati124", + "email": "", + "discord": "1268262461576839222", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.SCcJ58_aMwgeQkYGvU9rzBgJa_EBHQl4TCr1dHPJyL_9r7gO7job3EH6jpv_wPxmUjlUmuMymShEOCl2tyCoEpGwOzTdKC1u7sBddNBKGA3OrhLuTYJDmb0DyyK9pndVT2XFbTvQ3muQEu37avW4emC-J8y0f_4XPaVluz-HCy1nmx4nG5YT1vYy3lFKoblexCkoPIni8gnX99GKakb1DU4i5Zrw__Uw6FH9BNqMDZ7u7rrn5iiAtopP2wNgNnMx83I1UEJ0eomY966kEkYzl3yf43UmorvAv_BKyKSomd-BfmoRG4GMICXjBgynuju0NFO_75LDJ-6fR_6OvgHMhw.xPf25fZWwHxMLxYzTwoUnA.ifY6RnwkNbTRpE-3pV7fC2kxC9GzBgjP9HmzXLcINbYNlKK_MEAUUXUU0JXhRL_vY99SXaYy4W7To13c_7YjSbx8vORYAcvXmt15B1nknKE.NoVRB7Wo-9sX3-BxKN4iYg" + }, + + "record": { + "A": ["185.199.108.153","185.199.109.153","185.199.110.153","185.199.110.153"] + } + } + diff --git a/domains/kumkashree.json b/domains/kumkashree.json deleted file mode 100644 index 3b1780516..000000000 --- a/domains/kumkashree.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "kumkashree.is-a.dev", - "owner": { - "username": "kumkashree", - "email": "", - "discord": "KumKaShree#3777" - }, - "record": { - "A": ["43.205.87.144"] - } -} diff --git a/domains/kumoneo.json b/domains/kumoneo.json new file mode 100644 index 000000000..7507a5628 --- /dev/null +++ b/domains/kumoneo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xcopycat", + "email": "theamazingbrothers28@gmail.com", + "discord": "961401804795547708" + }, + + "record": { + "CNAME": "dns.nekoweb.org" + } +} diff --git a/domains/kunsh13.json b/domains/kunsh13.json new file mode 100644 index 000000000..4e79e94a0 --- /dev/null +++ b/domains/kunsh13.json @@ -0,0 +1,11 @@ +{ + "description": "kunsh13.is-a.dev", + "repo": "https://github.com/kunsh13/iptv", + "owner": { + "username": "kunsh13", + "email": "kunshmaurya@gmail.com" + }, + "record": { + "CNAME": "kunsh13.github.io" + } +} diff --git a/domains/kuroigg.json b/domains/kuroigg.json new file mode 100644 index 000000000..658aeafb9 --- /dev/null +++ b/domains/kuroigg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kuroigg", + "email": "mrlangdon197@gmail.com" + }, + "record": { + "CNAME": "kuroigg.github.io" + } +} diff --git a/domains/kushal.json b/domains/kushal.json new file mode 100644 index 000000000..49a0d7c66 --- /dev/null +++ b/domains/kushal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kushalshah0", + "email": "code@kushalshah.com.np" + }, + "record": { + "CNAME": "kushalshah0.github.io" + } +} diff --git a/domains/kushdhingra.json b/domains/kushdhingra.json new file mode 100644 index 000000000..e82c0ac9f --- /dev/null +++ b/domains/kushdhingra.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Kush-Dhingra", + "email": "", + "discord": "1035869217796403220", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJTReSXxF-8BxDH8rn6i_DIx0XuVrc4yYnOEN1Awfp7mZcYPIgcPt4mvsScPbJYhZLN5XtDlxl0DcdU8Za12GCk-aIWegJ9-_32bdjw3agBzaJ-ltaslRoVpNJ3zfLaQ9V-BrhwVMEJhpz5-0eYeEiikL4tHAoPzzKMlYIf8f5l7IL6aMfhBZvIFf0B3upGg2FeOpFCXAsttU5QiKkjUt4BjetuYb29UJoNzDco1ZExLdudlKd_fz6IcaAsw2K1u6MMDDs2khsic9M42AE3pRFCP_hacdllY5Z66ATlmKhYAxFryJYWrgbfpGX2PxSrQalAao_IP1TIGgiq7ugiBDw.Lg-WIZSH_nzEfnLZct78Cg.soPtqjy32EA2Ew63dHQ8P8-dt4ZihvZpipBVkHyX_rlnv-y5YpS5v2-2d3O5hGHRfCKnfxQsvewDfcPSGa4_Oq8BN01Kzhbet8AXRCK6uOM.ouoa2YqHKAeX9lKWZoFaog" + }, + + "record": { + "CNAME": "kush-dhingra.github.io" + } + } + diff --git a/domains/kuyacarlos.json b/domains/kuyacarlos.json new file mode 100644 index 000000000..bdaf6eee1 --- /dev/null +++ b/domains/kuyacarlos.json @@ -0,0 +1,10 @@ +{ + "description": "A personal portfolio to showcase my skills", + "owner": { + "username": "CarlosNatanauan", + "email": "carlosbenedictn@gmail.com" + }, + "record": { + "CNAME": "CarlosNatanauan.github.io" + } +} diff --git a/domains/kuyo.json b/domains/kuyo.json new file mode 100644 index 000000000..5322d07d0 --- /dev/null +++ b/domains/kuyo.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "KaisenyiKuyo", + "email": "", + "discord": "1033580960882626630", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.iCF2wnxRDm-lOVzW7mpR5Hzk8w0r7tvzbOoRd-wI4WMccbkYPvoBBF3jMimR2AV71yxjeZVUdketFKEwxzzAblMmFcy2fqWrluc_--glvdT86HYZtshVKPrS8TCB018KNBApx5Vz1kj0vZ9DNCBBGGJyLseM_8JwlURJ8NDiYtR0wCtYUvFTs_h-LEsP7gqPy_41G2W92bb3D9SS6UZaShhB6tFs899A47E6u7JrgfmTcMhu_VjxwTqlq5jFdhDnjvEcwXW4SlJtwHvS_MKZzB0DGB_BzoPMmQExZzd4yXGnMZtMuboOp8M1nVCuuimdypDWVGVKFvOzFuh2fhKRXA.A8ru7HpNNyy9qpioaAFM5Q.wz2htUrwO5tiXD_uTot1C4OaPrh-HzchUNjDBFVHdWYL2u8TxnwiA-Vb1d8jBCmJ75ykdnahP4aSZkK32wEH4YxFDccgnYnli-EHoDp5iDQ.xPvh5urKu7BtaEODrareYA" + }, + + "record": { + "CNAME": "kaisenyikuyo.github.io" + } + } + \ No newline at end of file diff --git a/domains/kwan.json b/domains/kwan.json new file mode 100644 index 000000000..1d1a6c8cc --- /dev/null +++ b/domains/kwan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kwansing14", + "email": "kwansing@hotmail.sg" + }, + "record": { + "CNAME": "kwan-is-a-dev.pages.dev" + } +} diff --git a/domains/kxtz.json b/domains/kxtz.json new file mode 100644 index 000000000..3981338bc --- /dev/null +++ b/domains/kxtz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kxtzownsu", + "email": "kxtzownsu@gmail.com" + }, + "record": { + "CNAME": "kxtz.dev" + } +} diff --git a/domains/kyhros.json b/domains/kyhros.json index c58d733b5..d5cbbb85e 100644 --- a/domains/kyhros.json +++ b/domains/kyhros.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Klorycs", - "email": "abmongus@gmail.com" - }, - "record": { - "URL": "https://kyhros.netlify.app" - } - } - \ No newline at end of file +{ + "owner": { + "username": "Klorycs", + "email": "abmongus@gmail.com" + }, + "record": { + "URL": "https://kyhros.netlify.app" + } +} diff --git a/domains/kyle.json b/domains/kyle.json deleted file mode 100644 index a43324890..000000000 --- a/domains/kyle.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "My CDN", - "owner": { - "username": "JavaScriptpy", - "email": "zerotwo.on.discord@gmail.com" - }, - "record": { - "CNAME": "4610390a-31b4-45f7-9a4a-4c75e28ecfbd.repl.co" - } -} diff --git a/domains/kylewebdev.json b/domains/kylewebdev.json new file mode 100644 index 000000000..979e13adc --- /dev/null +++ b/domains/kylewebdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kylewebdev", + "email": "kylewebdev@gmail.com" + }, + "record": { + "CNAME": "kylewebdev.com" + } +} diff --git a/domains/kyogrq.json b/domains/kyogrq.json new file mode 100644 index 000000000..e3b687aaa --- /dev/null +++ b/domains/kyogrq.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kyogrq", + "email": "benetbenson815@gmail.com" + }, + "record": { + "CNAME": "kyogrq.github.io" + } +} diff --git a/domains/kyoki.json b/domains/kyoki.json deleted file mode 100644 index 26be7a590..000000000 --- a/domains/kyoki.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "kyokiii", - "discord": "kyoki#0162", - "email": "kyokisunn@gmail.com" - }, - "record": { - "CNAME": "d7dc33e6-0a6b-49ab-bad4-4b006a476a02.id.repl.co" - } -} diff --git a/domains/kyotox.json b/domains/kyotox.json index 072fbbb5e..caf042765 100644 --- a/domains/kyotox.json +++ b/domains/kyotox.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "kyotox-dev", - "email": "kyotox.dev@gmail.com" - }, - "record": { - "URL": "https://ajiteshrawat.wixsite.com/portfolio" - } - } - \ No newline at end of file +{ + "owner": { + "username": "kyotox-dev", + "email": "kyotox.dev@gmail.com" + }, + "record": { + "URL": "https://ajiteshrawat.wixsite.com/portfolio" + } +} diff --git a/domains/kz.json b/domains/kz.json new file mode 100644 index 000000000..a41039fba --- /dev/null +++ b/domains/kz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "iakzs", + "email": "iakzs@protonmail.com", + "discord": "622795838032314388" + }, + + "record": { + "MX": ["mx1.improvmx.com"] + } +} diff --git a/domains/l.json b/domains/l.json new file mode 100644 index 000000000..c45a313f9 --- /dev/null +++ b/domains/l.json @@ -0,0 +1,11 @@ +{ + "description": "redirect domain", + "repo": "https://github.com/xkcdnerd/xkcdnerd.github.io", + "owner": { + "username": "xkcdnerd", + "email": "evanwang330@gmail.com" + }, + "record": { + "URL": "https://nerd.is-a.dev" + } +} diff --git a/domains/l6174.json b/domains/l6174.json index e8444b7a1..6071d4aa9 100644 --- a/domains/l6174.json +++ b/domains/l6174.json @@ -1,11 +1,23 @@ { - "description": "My Profile Website", - "repo": "https://github.com/l6174/l6174.github.io", - "owner": { - "username": "l6174", - "email": "l.lawliet6174@gmail.com" - }, - "record": { - "CNAME": "l6174.github.io" - } -} + "description": "My Profile Website", + "repo": "https://github.com/l6174/l6174.github.io", + "owner": { + "username": "l6174", + "email": "l6174@proton.me" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/l7neg.json b/domains/l7neg.json new file mode 100644 index 000000000..62b2f4ef3 --- /dev/null +++ b/domains/l7neg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "l7neg", + "email": "l7negdev@gmail.com", + "discord": "669453086418534400" + }, + "record": { + "CNAME": "l7neg.pages.dev" + } +} diff --git a/domains/lachsfilet.json b/domains/lachsfilet.json new file mode 100644 index 000000000..9debd9e14 --- /dev/null +++ b/domains/lachsfilet.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Lachsfilet", + "email": "fberger10@gmx.de" + }, + + "record": { + "CNAME": "lachsfilet.github.io" + } +} diff --git a/domains/lacky.json b/domains/lacky.json new file mode 100644 index 000000000..036d6933a --- /dev/null +++ b/domains/lacky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LackyPal", + "email": "dev.lackypal@gmail.com" + }, + "record": { + "CNAME": "lackypal.github.io" + } +} diff --git a/domains/laker.json b/domains/laker.json deleted file mode 100644 index 17cc7d4bd..000000000 --- a/domains/laker.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "lxjv", - "email": "hey@laker.tech" - }, - "record": { - "CNAME": "laker.omg.lol" - } - } - \ No newline at end of file diff --git a/domains/lakhindar.json b/domains/lakhindar.json new file mode 100644 index 000000000..0ba66e3a0 --- /dev/null +++ b/domains/lakhindar.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "LakhindarPal", + "email": "dev.lakhindarpal@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=dev.lakhindarpal@gmail.com" + } +} diff --git a/domains/lakis.json b/domains/lakis.json new file mode 100644 index 000000000..373a93e5d --- /dev/null +++ b/domains/lakis.json @@ -0,0 +1,10 @@ +{ + "description": "Lakis with axolotls", + "owner": { + "username": "Lakiś", + "email": "support@axolotlmc.pl" + }, + "record": { + "URL": "https://e-z.bio/lakis" + } +} diff --git a/domains/lalit.json b/domains/lalit.json new file mode 100644 index 000000000..adefe66e7 --- /dev/null +++ b/domains/lalit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lalitm1004", + "email": "lalitm1004@gmail.com" + }, + "record": { + "CNAME": "lalit-is-a-dev.pages.dev" + } +} diff --git a/domains/lalmanthakur.json b/domains/lalmanthakur.json index 9fa90dd07..432cbd53e 100644 --- a/domains/lalmanthakur.json +++ b/domains/lalmanthakur.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Lalman888", - "email": "chauhanlakshay074@gmail.com" - }, - "record": { - "URL": "https://lalmanthakur.vercel.app" - } + "owner": { + "username": "Lalman888", + "email": "chauhanlakshay074@gmail.com" + }, + "record": { + "URL": "https://lalmanthakur.vercel.app" + } } diff --git a/domains/lam.json b/domains/lam.json new file mode 100644 index 000000000..812afc77b --- /dev/null +++ b/domains/lam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Syxaaa", + "email": "nguyenlamyou@gmail.com" + }, + "record": { + "CNAME": "thelastprofilecard.pages.dev" + } +} diff --git a/domains/lamps-dev.json b/domains/lamps-dev.json new file mode 100644 index 000000000..3c3f69a21 --- /dev/null +++ b/domains/lamps-dev.json @@ -0,0 +1,12 @@ +{ + "description": "For my projects.", + "repo": "https://github.com/lamps-dev/lamps-dev.github.io", + "owner": { + "username": "lamps-dev", + "email": "ilovelampadaire@gmail.com", + "twitter": "lampytofficial" + }, + "record": { + "CNAME": "lamps-dev.github.io" + } +} diff --git a/domains/land.json b/domains/land.json new file mode 100644 index 000000000..918494fe6 --- /dev/null +++ b/domains/land.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LandWarderer2772", + "email": "navaneethbinoy@gmail.com" + }, + "record": { + "CNAME": "website-zfm.pages.dev" + } +} diff --git a/domains/laqie.json b/domains/laqie.json new file mode 100644 index 000000000..dfc87f2e8 --- /dev/null +++ b/domains/laqie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "laqie", + "email": "ave.lucky@gmail.com" + }, + "record": { + "A": ["34.120.54.55"] + } +} diff --git a/domains/larei.json b/domains/larei.json deleted file mode 100644 index 5b5ede737..000000000 --- a/domains/larei.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "larei's personal website.", - "repo": "https://github.com/lareithen/lareithen.github.io", - "owner": { - "username": "lareithen", - "email": "lareithen@gmail.com" - }, - "record": { - "CNAME": "lareithen.github.io" - } -} diff --git a/domains/larp.json b/domains/larp.json new file mode 100644 index 000000000..4cc731c98 --- /dev/null +++ b/domains/larp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lhwe", + "email": "arieslovespiggies@gmail.com" + }, + "record": { + "A": ["64.23.128.177"] + } +} diff --git a/domains/larrystudios.json b/domains/larrystudios.json index 2a8ec91d4..91ec9d834 100644 --- a/domains/larrystudios.json +++ b/domains/larrystudios.json @@ -8,4 +8,3 @@ "CNAME": "larrystudios.github.io" } } - \ No newline at end of file diff --git a/domains/lasty.json b/domains/lasty.json new file mode 100644 index 000000000..1674cd4e0 --- /dev/null +++ b/domains/lasty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "me0w-0", + "email": "lasty@outlook.in" + }, + "record": { + "CNAME": "lasty.pages.dev" + } +} diff --git a/domains/latealways.json b/domains/latealways.json index abe722665..b2f8e02d1 100644 --- a/domains/latealways.json +++ b/domains/latealways.json @@ -1,9 +1,9 @@ { "owner": { - "username": "Sky-FoxGAMING", - "email": "jparedesmoure@awakenclient.com" + "username": "LateAlways", + "email": "latealways.official@gmail.com" }, "record": { - "CNAME": "Sky-FoxGAMING.github.io" + "CNAME": "latealways.github.io" } } diff --git a/domains/laufey.json b/domains/laufey.json index f86d723a1..890b24d8c 100644 --- a/domains/laufey.json +++ b/domains/laufey.json @@ -1,12 +1,12 @@ { - "description": "Configuring a .is-a.dev domain for my friend, laufey.", - "repo": "https://github.com/idlidev/laufey-web", - "owner": { - "username": "idlidev", - "email": "idliyout@gmail.com", - "twitter": "" - }, - "record": { - "CNAME": "idlidev.github.io" - } + "description": "Configuring a .is-a.dev domain for my friend, laufey.", + "repo": "https://github.com/idlidev/laufey-web", + "owner": { + "username": "idlidev", + "email": "idliyout@gmail.com", + "twitter": "" + }, + "record": { + "CNAME": "idlidev.github.io" + } } diff --git a/domains/lavafroth.json b/domains/lavafroth.json new file mode 100644 index 000000000..5fdb88000 --- /dev/null +++ b/domains/lavafroth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lavafroth", + "email": "lavafroth@protonmail.com" + }, + "record": { + "CNAME": "lavafroth.github.io" + } +} diff --git a/domains/lavalink.akshtt.json b/domains/lavalink.akshtt.json new file mode 100644 index 000000000..5ff9fe6e2 --- /dev/null +++ b/domains/lavalink.akshtt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/laxminag.json b/domains/laxminag.json deleted file mode 100644 index 04ec58d4b..000000000 --- a/domains/laxminag.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "nagln's personal website", - "repo": "https://github.com/laxminagln/laxminagln.github.io", - "owner": { - "username": "laxminagln", - "email": "laxminagln@gmail.com" - }, - "record": { - "CNAME": "www.laxminagln.me" - } -} diff --git a/domains/laymoth.json b/domains/laymoth.json index f93a23ef3..f7a2ebeda 100644 --- a/domains/laymoth.json +++ b/domains/laymoth.json @@ -1,10 +1,10 @@ { - "description": "Laymoth's Website", - "owner": { - "username": "laymoth", - "email": "pm@laymoth.dev" - }, - "record": { - "CNAME": "laymoth.pages.dev" - } -} + "description": "Laymoth's Website", + "owner": { + "username": "laymoth", + "email": "pm@laymoth.dev" + }, + "record": { + "CNAME": "laymoth.pages.dev" + } +} diff --git a/domains/layor.json b/domains/layor.json deleted file mode 100644 index d6d8066b4..000000000 --- a/domains/layor.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "6346563751", - "email": "b0bb1e@protonmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } -} diff --git a/domains/lazizbek.json b/domains/lazizbek.json new file mode 100644 index 000000000..ebfeb3e2a --- /dev/null +++ b/domains/lazizbek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LazizbekGamer", + "email": "lazizbekgameryt@gmail.com" + }, + "record": { + "CNAME": "www.gpitify-ai.uz" + } +} diff --git a/domains/lazycoder.json b/domains/lazycoder.json deleted file mode 100644 index 1890a61b2..000000000 --- a/domains/lazycoder.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Saiful Personal Website", - "repo": "https://github.com/saifulppro/lazycoder", - "owner": { - "username": "saifulppro", - "email": "saifulp4200@gmail.com" - }, - "record": { - "CNAME": "lazycoder.pages.dev" - } -} diff --git a/domains/lbplbp.json b/domains/lbplbp.json new file mode 100644 index 000000000..a55ffeaa5 --- /dev/null +++ b/domains/lbplbp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sjzsbgwb", + "email": "3022605585@qq.com" + }, + "record": { + "CNAME": "wiki.jejsjsjja.workers.dev" + } +} diff --git a/domains/leandrogameplays.json b/domains/leandrogameplays.json new file mode 100644 index 000000000..bcea816a7 --- /dev/null +++ b/domains/leandrogameplays.json @@ -0,0 +1,17 @@ +{ + "owner": { + "username": "LeandroGameplaysBR", + "email": "leandrogameplays74@outlook.com", + "discord": "351853993443590145", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.bZj78GsosfV-njUz8U1rJxGiVcdUic3W0HrirEAP8066paJbeal5aYkKOyyeTO7hmyatEJgdXr2DGGPexl079J4oawcsXiQYrewOwsc4XeLkpiWmAkMAJlflEy0Lwu_zPIcS6FHbLscjFltjYB0I_VaWH7d1yL-dDdB_9f79LqePpEDVWeSm_tE_K9AvOZWTxjlW-MLgtsF_dZkMCn5ez7gfQxya4KHFY2l9bEREmRe_hr_ZZp12WvNrlF29qW5MFbFQsbrYsDrI-iOxjsY041RJVT7G1abtTkF1bLuFN-5dkHXmcobAgsA9i_Z217_NLhVEfzfhxiEVvhh8bsxt-g.0gki4o65YPpemExFGVKWGQ.5filVxsyk_BErBgcU2nFuEHMtIuNQI1lUXV5oQtFB3Dr3eZCishTmAzyicrT_fu3I_BG1lstU2B3HXIDkza2bwRgOV1QTc0YmXT1jnY17tteTxICfcLkjgwqXYcoakfu.-rWHQPsibUCgYKaPMnP7vQ" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/learn-to-code-now.json b/domains/learn-to-code-now.json new file mode 100644 index 000000000..c145b07ef --- /dev/null +++ b/domains/learn-to-code-now.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qloakongithub", + "email": "7469931481@stu.gcsnc.com" + }, + "record": { + "CNAME": "qloakongithub.github.io" + } +} diff --git a/domains/ledraa.json b/domains/ledraa.json new file mode 100644 index 000000000..7c4ec5023 --- /dev/null +++ b/domains/ledraa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "elhadede", + "email": "jling0139@gmail.com" + }, + "record": { + "MX": [ + "feedback-smtp.us-east-1.amazonses.com" + ] + } +} diff --git a/domains/legendsayantan.json b/domains/legendsayantan.json index f3fb749f3..716c487eb 100644 --- a/domains/legendsayantan.json +++ b/domains/legendsayantan.json @@ -1,12 +1,12 @@ { - "description": "LegendSayantan's Project Wiki Page", - "repo": "https://github.com/legendsayantan/legendsayantan.github.io", - "owner": { - "username": "legendsayantan", - "email": "legendsayantanpaul@gmail.com", - "twitter": "legendsayantan" - }, - "record": { - "CNAME": "legendsayantan.github.io" - } -} + "description": "LegendSayantan's Project Wiki Page", + "repo": "https://github.com/legendsayantan/legendsayantan.github.io", + "owner": { + "username": "legendsayantan", + "email": "legendsayantanpaul@gmail.com", + "twitter": "legendsayantan" + }, + "record": { + "CNAME": "legendsayantan.github.io" + } +} diff --git a/domains/leha.json b/domains/leha.json index c553c7f8f..93f5aed49 100644 --- a/domains/leha.json +++ b/domains/leha.json @@ -4,7 +4,7 @@ "owner": { "username": "leha-code", "email": "pezleha@duck.com", - "twitter" : "pezleha2" + "twitter": "pezleha2" }, "record": { "CNAME": "leha-code.github.io" diff --git a/domains/lellis.json b/domains/lellis.json deleted file mode 100644 index 669e1d59b..000000000 --- a/domains/lellis.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a cool subdomain", - "repo": "https://github.com/LellisV2/register", - "owner": { - "username": "LellisV2", - "email": "cloud@lellis.tech" - }, - "record": { - "A": ["150.230.126.219"] - } -} diff --git a/domains/lemon.json b/domains/lemon.json new file mode 100644 index 000000000..8cdfa5ef6 --- /dev/null +++ b/domains/lemon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PassiveLemon", + "email": "lemonl3mn@protonmail.com" + }, + "record": { + "CNAME": "passivelemon.github.io" + } +} diff --git a/domains/lengyandong.json b/domains/lengyandong.json new file mode 100644 index 000000000..a637193aa --- /dev/null +++ b/domains/lengyandong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lengyandong", + "email": "3052868271@qq.com" + }, + "record": { + "CNAME": "me.lengyandong.eu.org" + } +} diff --git a/domains/lenicyl.json b/domains/lenicyl.json index c56736f56..d28d70dd9 100644 --- a/domains/lenicyl.json +++ b/domains/lenicyl.json @@ -4,7 +4,7 @@ "discord": "HUT#5940", "email": "" }, - "record": { - "CNAME": "lenicyl.github.io" + "record": { + "CNAME": "lenicyl.github.io" } } diff --git a/domains/leon.json b/domains/leon.json deleted file mode 100644 index b3c4088bf..000000000 --- a/domains/leon.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "repo": "https://github.com/LeonskiDev/leonskidev", - "owner": { - "username": "LeonskiDev", - "email": "bodged@pm.me" - }, - "record": { - "CNAME": "leonskidev.github.io" - } -} diff --git a/domains/leon3321.json b/domains/leon3321.json new file mode 100644 index 000000000..10c188581 --- /dev/null +++ b/domains/leon3321.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leon332157", + "email": "leon332157@gmail.com" + }, + "record": { + "CNAME": "leon332157.is-a.dev" + } +} diff --git a/domains/leon332157.json b/domains/leon332157.json new file mode 100644 index 000000000..25f13ae98 --- /dev/null +++ b/domains/leon332157.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leon332157", + "email": "leon332157@gmail.com" + }, + "record": { + "CNAME": "leon3321.pages.dev" + } +} diff --git a/domains/leska.json b/domains/leska.json new file mode 100644 index 000000000..f46f42f06 --- /dev/null +++ b/domains/leska.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JustLeska", + "email": "leskalouis@hotmail.com" + }, + "record": { + "URL": "https://guns.lol/leska" + } +} diff --git a/domains/letters.json b/domains/letters.json new file mode 100644 index 000000000..cdb57547d --- /dev/null +++ b/domains/letters.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "keli5", + "email": "keli5.letters@gmail.com" + }, + "record": { + "CNAME": "keli5.duckdns.org" + } +} diff --git a/domains/letum.json b/domains/letum.json new file mode 100644 index 000000000..524092915 --- /dev/null +++ b/domains/letum.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "amoramicae", + "discord": "1252631745514180790", + "email": "" + }, + "record": { + "CNAME": "letum.pages.dev" + } +} diff --git a/domains/lev.json b/domains/lev.json new file mode 100644 index 000000000..dcd9481c7 --- /dev/null +++ b/domains/lev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "skyallaround", + "email": "jr1264464@gmail.com" + }, + "record": { + "CNAME": "basicscript.glitch.me" + } +} diff --git a/domains/levisurely.json b/domains/levisurely.json new file mode 100644 index 000000000..dcd9481c7 --- /dev/null +++ b/domains/levisurely.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "skyallaround", + "email": "jr1264464@gmail.com" + }, + "record": { + "CNAME": "basicscript.glitch.me" + } +} diff --git a/domains/levprograming.json b/domains/levprograming.json deleted file mode 100644 index e50f2a734..000000000 --- a/domains/levprograming.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "LevPrograming", - "repo": "https://github.com/double-square", - "owner": { - "username": "double-square", - "email": "doublesquare@protonmail.com " - }, - "record": { - "CNAME": "levprograming.pages.dev" - } -} diff --git a/domains/levraiardox.json b/domains/levraiardox.json new file mode 100644 index 000000000..24d080fbb --- /dev/null +++ b/domains/levraiardox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LeVraiArdox", + "email": "adrian.arjoca18@gmail.com" + }, + "record": { + "CNAME": "levraiardox.github.io" + } +} diff --git a/domains/lewdhutao.json b/domains/lewdhutao.json new file mode 100644 index 000000000..a7f4fb43b --- /dev/null +++ b/domains/lewdhutao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LewdHuTao", + "email": "lewdhutao@shittybot.xyz" + }, + "record": { + "CNAME": "lewdhutao.pages.dev" + } +} diff --git a/domains/lewe.json b/domains/lewe.json index 36c128c5e..1761c237f 100644 --- a/domains/lewe.json +++ b/domains/lewe.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "lewe2k6", - "email": "lewe2k6@gmail.com" - }, - "record": { - "URL": "https://xn--a-0ym.vn" - } - } - \ No newline at end of file +{ + "owner": { + "username": "lewe2k6", + "email": "lewe2k6@gmail.com" + }, + "record": { + "URL": "https://xn--a-0ym.vn" + } +} diff --git a/domains/lewis.json b/domains/lewis.json new file mode 100644 index 000000000..059c13d49 --- /dev/null +++ b/domains/lewis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jsJack", + "email": "hello@jackperry.co" + }, + "record": { + "URL": "https://raybould.co" + } +} diff --git a/domains/lexufybot.json b/domains/lexufybot.json new file mode 100644 index 000000000..2f35b82ba --- /dev/null +++ b/domains/lexufybot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alidexter001", + "email": "dexter.ali001@gmail.com" + }, + "record": { + "A": ["45.11.229.211"] + } +} diff --git a/domains/lf.json b/domains/lf.json new file mode 100644 index 000000000..14a58e8e2 --- /dev/null +++ b/domains/lf.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lfom", + "email": "", + "matrix": "@lfdev:envs.net" + }, + "record": { + "URL": "https://lfdev.envs.net" + } +} diff --git a/domains/lhjhminecraft.json b/domains/lhjhminecraft.json new file mode 100644 index 000000000..e25b2fbb2 --- /dev/null +++ b/domains/lhjhminecraft.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "watergotspilled", + "email": "sc467209@g.risd.org" + }, + "record": { + "URL": "https://size-origin.gl.joinmc.link" + } +} diff --git a/domains/li.whine.json b/domains/li.whine.json deleted file mode 100644 index 603257aef..000000000 --- a/domains/li.whine.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "whi_ne's redirects", - "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" - }, - "record": { - "CNAME": "a.redirect.pizza" - } -} \ No newline at end of file diff --git a/domains/liamgenjs.json b/domains/liamgenjs.json new file mode 100644 index 000000000..e79c4eb07 --- /dev/null +++ b/domains/liamgenjs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "liam-gen", + "email": "liamgen.js@proton.me" + }, + "record": { + "CNAME": "liamgenjs.pages.dev" + } +} diff --git a/domains/liaobots.json b/domains/liaobots.json new file mode 100644 index 000000000..3b40a06ed --- /dev/null +++ b/domains/liaobots.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "76.76.21.21" + ] + } +} diff --git a/domains/life.qtitpc.json b/domains/life.qtitpc.json new file mode 100644 index 000000000..307fc309b --- /dev/null +++ b/domains/life.qtitpc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qtungnui07", + "email": "qtung.07.dt@gmail.com" + }, + "record": { + "URL": "https://qtitpc.notion.site/qtung-s-works-a55a20d0d4604f0b95c5ffeaefee695a" + } +} diff --git a/domains/lightsys32.json b/domains/lightsys32.json new file mode 100644 index 000000000..f0a46ad09 --- /dev/null +++ b/domains/lightsys32.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "not-amplify", + "email": "not.amplify.x@gmail.com", + "discord": "1202067094360035353" + }, + + "record": { + "A": ["104.243.45.193"] + } + } + \ No newline at end of file diff --git a/domains/lighty.json b/domains/lighty.json new file mode 100644 index 000000000..175e5140d --- /dev/null +++ b/domains/lighty.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "ssynical", + "email": "trapizoids543@gmail.com", + "discord": "1108616541739700284" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/ligmatv.json b/domains/ligmatv.json new file mode 100644 index 000000000..12be4ab97 --- /dev/null +++ b/domains/ligmatv.json @@ -0,0 +1,11 @@ +{ + "description": "This subdomain will i use for my LIGMATV's blog website.", + "repo": "https://github.com/LIGMATV/LIGMATV.github.io", + "owner": { + "username": "LIGMATV", + "email": "ligmatv.id@gmail.com" + }, + "record": { + "CNAME": "ligmatv.github.io" + } +} diff --git a/domains/lihua.json b/domains/lihua.json new file mode 100644 index 000000000..8e51c6f8d --- /dev/null +++ b/domains/lihua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wanglihuaya", + "email": "me@lihua.dev" + }, + "record": { + "CNAME": "lihua.dev" + } +} diff --git a/domains/lihun.json b/domains/lihun.json new file mode 100644 index 000000000..699523341 --- /dev/null +++ b/domains/lihun.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mushlihun", + "email": "muslihun@untan.ac.id" + }, + + "record": { + "CNAME": "mushlihun.github.io" + } +} diff --git a/domains/lilith.json b/domains/lilith.json new file mode 100644 index 000000000..0bcee95d3 --- /dev/null +++ b/domains/lilith.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LilithLovesYou", + "email": "dev.cutestloli@gmail.com" + }, + "record": { + "CNAME": "lilithlovesyou.github.io" + } +} diff --git a/domains/lime360.json b/domains/lime360.json new file mode 100644 index 000000000..dee22033f --- /dev/null +++ b/domains/lime360.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lime360", + "email": "emeraldlime@protonmail.com" + }, + "record": { + "CNAME": "lime360.github.io" + } +} diff --git a/domains/linbuxiao.json b/domains/linbuxiao.json index f81d95155..dbcceb8f3 100644 --- a/domains/linbuxiao.json +++ b/domains/linbuxiao.json @@ -8,4 +8,4 @@ "record": { "CNAME": "linbuxiao.github.io" } -} \ No newline at end of file +} diff --git a/domains/link.json b/domains/link.json deleted file mode 100644 index 0f0b13ca1..000000000 --- a/domains/link.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "( A redirect link ) Url's Overview", - "repo": "https://github.com/leecheeyong/leecheeyong", - "owner": { - "username": "leecheeyong", - "email": "tribejoe.gg@gmail.com" - }, - "record": { - "URL": "https://links.is-a.dev" - } -} diff --git a/domains/link.krunch.json b/domains/link.krunch.json new file mode 100644 index 000000000..e8a8d5dc3 --- /dev/null +++ b/domains/link.krunch.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RadioactivePotato", + "email": "", + "discord": "krunchiekrunch._." + }, + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/link.vamtic.json b/domains/link.vamtic.json new file mode 100644 index 000000000..c1ffc9e53 --- /dev/null +++ b/domains/link.vamtic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vamtic", + "email": "vamtic@yahoo.com" + }, + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/link.vinceale7082.json b/domains/link.vinceale7082.json new file mode 100644 index 000000000..b7a885133 --- /dev/null +++ b/domains/link.vinceale7082.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "VinceAle7082", + "email": "vinceale7082@gmail.com", + "discord": "1078447459900063816", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + }, + + "record": { + "CNAME": "track.smtp2go.net" + } + } diff --git a/domains/linkme.noma.json b/domains/linkme.noma.json deleted file mode 100644 index 4c8cdad70..000000000 --- a/domains/linkme.noma.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "A website for my bit.ly clone LinkMe", - "owner": { - "username": "Noma4321", - "email": "noma4321business@gmail.com" - }, - "record": { - "CNAME": "d6bddc39-8514-4494-9b17-d80409cfcbee.id.repl.co" - } -} diff --git a/domains/linkr.json b/domains/linkr.json new file mode 100644 index 000000000..12cc5d437 --- /dev/null +++ b/domains/linkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devlinkr", + "email": "magicgamerdiscord@gmail.com" + }, + "record": { + "URL": "https://sites.google.com/view/linkrdiscord" + } +} diff --git a/domains/links.aditya.json b/domains/links.aditya.json deleted file mode 100644 index 9e4866a91..000000000 --- a/domains/links.aditya.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "A Subdomain For My Links Redirection!!", - "repo": "https://github.com/icancodebeauty/links", - "owner": { - "username": "icancodebeauty", - "email": "ishqaddy@gmail.com", - "twitter": "CodeWithAadi" - }, - "record": { - "CNAME": "a.redirect.pizza" - } -} diff --git a/domains/links.json b/domains/links.json deleted file mode 100644 index 7dd55ac4e..000000000 --- a/domains/links.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Url's Overview", - "repo": "https://github.com/leecheeyong/leecheeyong", - "owner": { - "username": "leecheeyong", - "email": "tribejoe.gg@gmail.com" - }, - "record": { - "CNAME": "3393f496-d1a6-4633-a49d-b46cb0229417.repl.co" - } -} diff --git a/domains/links.trung.json b/domains/links.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/links.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/linksrayan.json b/domains/linksrayan.json new file mode 100644 index 000000000..ca710c52f --- /dev/null +++ b/domains/linksrayan.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio website", + "repo": "https://linkssyedrayan.github.io/portfolio", + "owner": { + "username": "linkssyedrayan", + "email": "kgold3796@gmail.com" + }, + "record": { + "CNAME": "linkssyedrayan.github.io" + } +} diff --git a/domains/linkup.json b/domains/linkup.json new file mode 100644 index 000000000..859000847 --- /dev/null +++ b/domains/linkup.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Novampr", + "email": "LimeDEV8756@gmail.com" + }, + "record": { + "A": ["86.27.73.108"] + } +} diff --git a/domains/linky.json b/domains/linky.json new file mode 100644 index 000000000..a3b5338ed --- /dev/null +++ b/domains/linky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Grafaffel", + "email": "jannis170@icloud.com" + }, + "record": { + "CNAME": "linky.jannisfischer170.workers.dev" + } +} diff --git a/domains/lintahtorrents.json b/domains/lintahtorrents.json deleted file mode 100644 index 89d0345a3..000000000 --- a/domains/lintahtorrents.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "meritocrazy", - "email": "lunatic@tuta.io" - }, - "record": { - "CNAME": "drives.labor.workers.dev" - } - } - \ No newline at end of file diff --git a/domains/linusx.json b/domains/linusx.json index 1481a711e..41d2f010e 100644 --- a/domains/linusx.json +++ b/domains/linusx.json @@ -1,11 +1,11 @@ { - "description": "Just my personal website, static on github pages. Generated with hugo", - "repo": "https://github.com/linuzzx/linuzzx.github.io", - "owner": { - "username": "linuzzx", - "email": "galaxylinus@gmail.com" - }, - "record": { - "CNAME": "linuzzx.github.io" - } -} + "description": "Just my personal website, static on github pages. Generated with hugo", + "repo": "https://github.com/linuzzx/linuzzx.github.io", + "owner": { + "username": "linuzzx", + "email": "galaxylinus@gmail.com" + }, + "record": { + "CNAME": "linuzzx.github.io" + } +} diff --git a/domains/linux.formuna.json b/domains/linux.formuna.json new file mode 100644 index 000000000..aacfbb1fa --- /dev/null +++ b/domains/linux.formuna.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "FormunaGit", + "email": "", + "discord": "754657845563097108" + }, + "record": { + "CNAME": "rimwiki.vercel.app" + } +} diff --git a/domains/linux.json b/domains/linux.json new file mode 100644 index 000000000..ebf6a86ee --- /dev/null +++ b/domains/linux.json @@ -0,0 +1,11 @@ +{ + "description": "Linux For All", + "repo": "https://github.com/linuxforall3/linuxforall3.github.io", + "owner": { + "username": "linux", + "email": "linuxforall32@proton.me" + }, + "record": { + "CNAME": "linuxforall3.github.io" + } +} diff --git a/domains/linuxlover.json b/domains/linuxlover.json new file mode 100644 index 000000000..e74372302 --- /dev/null +++ b/domains/linuxlover.json @@ -0,0 +1,12 @@ +{ + "description": "A website for my program", + "repo": "https://github.com/winvistalover/winvistalover.github.io", + "owner": { + "username": "winvistalover", + "email": "", + "discord": "952930824351780904" + }, + "record": { + "CNAME": "winvistalover.github.io" + } +} diff --git a/domains/lipi.json b/domains/lipi.json new file mode 100644 index 000000000..320f75c9d --- /dev/null +++ b/domains/lipi.json @@ -0,0 +1,11 @@ +{ + "description": "Lipi's .is-a.dev reg", + "repo": "https://github.com/ReticentFacade/reticentfacade.github.io/", + "owner": { + "username": "ReticentFacade", + "email": "lipisharma2911@gmail.com" + }, + "record": { + "CNAME": "reticentfacade.github.io" + } +} diff --git a/domains/liq.json b/domains/liq.json index bedc5a108..17595f9e5 100644 --- a/domains/liq.json +++ b/domains/liq.json @@ -1,11 +1,11 @@ { - "description": "Learning something new everyday", - "repo": "https://github.com/DevLiQ", - "owner": { - "username": "DevLiQ", - "email": "21136062+devliq@users.noreply.github.com" - }, - "record": { - "CNAME": "devliq.github.io" - } + "description": "Learning something new everyday", + "repo": "https://github.com/DevLiQ", + "owner": { + "username": "DevLiQ", + "email": "21136062+devliq@users.noreply.github.com" + }, + "record": { + "CNAME": "devliq.github.io" + } } diff --git a/domains/liquid.json b/domains/liquid.json deleted file mode 100644 index df51570cf..000000000 --- a/domains/liquid.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ThinLiquid", - "email": "ayomideilesanmi10@gmail.com" - }, - "record": { - "CNAME": "glitch.edgeapp.net" - } -} diff --git a/domains/litmus.json b/domains/litmus.json new file mode 100644 index 000000000..057428418 --- /dev/null +++ b/domains/litmus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "litmus-zhang", + "email": "abdulsalamlukmon9@gmail.com" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/littletw.json b/domains/littletw.json new file mode 100644 index 000000000..98f620791 --- /dev/null +++ b/domains/littletw.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "littletheworld", + "email": "littlehaofficial@gmail.com" + }, + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/live.json b/domains/live.json new file mode 100644 index 000000000..d374d32ab --- /dev/null +++ b/domains/live.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tomgxz", + "email": "tomgxz138@gmail.com" + }, + "record": { + "CNAME": "oyqkpa3p.up.railway.app" + } +} diff --git a/domains/live.preview.beta.json b/domains/live.preview.beta.json deleted file mode 100644 index 9dc8fc069..000000000 --- a/domains/live.preview.beta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, - "record": { - "A": ["140.238.66.199"] - } -} diff --git a/domains/lizhenghao.json b/domains/lizhenghao.json index dcd0edb17..8a638e72a 100644 --- a/domains/lizhenghao.json +++ b/domains/lizhenghao.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "squareful", - "email": "litiantian@ustc.edu" - }, - "record": { - "CNAME": "blog.maikebuke.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "squareful", + "email": "litiantian@ustc.edu" + }, + "record": { + "CNAME": "blog.maikebuke.com" + } +} diff --git a/domains/lkmw.json b/domains/lkmw.json new file mode 100644 index 000000000..38bd18d90 --- /dev/null +++ b/domains/lkmw.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "leowilkin", + "email": "leo.wilkin10@gmail.com", + "discord": "712341552537796629" + }, + + "record": { + "CNAME": "wilkin.xyz" + } + } + \ No newline at end of file diff --git a/domains/lknows.json b/domains/lknows.json index 2e122a26c..2f2f3da62 100644 --- a/domains/lknows.json +++ b/domains/lknows.json @@ -1,15 +1,13 @@ +{ + "description": "Link for lknow's personal site on GitHub pages", + "repo": "https://github.com/lknows/lknows.github.io", + "owner": { + "username": "lknows", + "email": "easyg53@gmail.com", + "discord": "Ne bije al' ubija u pojam#2020" + }, - { - "description": "Link for lknow's personal site on GitHub pages", - "repo": "https://github.com/lknows/lknows.github.io", - "owner": { - "username": "lknows", - "email": "easyg53@gmail.com", - "discord": "Ne bije al' ubija u pojam#2020" - }, - - "record": { - "CNAME": "lknows.github.io" - } - } - + "record": { + "CNAME": "lknows.github.io" + } +} diff --git a/domains/lndr2501.json b/domains/lndr2501.json new file mode 100644 index 000000000..1158094a3 --- /dev/null +++ b/domains/lndr2501.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Lndr2501", + "email": "" + }, + "repo": "https://github.com/Lndr2501/Lndr2501", + "record": { + "CNAME": "lndr2501.github.io" + } +} diff --git a/domains/lnk.json b/domains/lnk.json new file mode 100644 index 000000000..7f37f7849 --- /dev/null +++ b/domains/lnk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "littletheworld", + "email": "littlehaofficial@gmail.com", + "discord": "810846876592242719" + }, + + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/lnminh1411.json b/domains/lnminh1411.json new file mode 100644 index 000000000..8615d05e7 --- /dev/null +++ b/domains/lnminh1411.json @@ -0,0 +1,21 @@ +{ + "repo": "https://github.com/lnminh1411/lnminh1411.github.io", + "owner": { + "username": "lnminh1411", + "email": "nhatminh.forwarding@gmail.com", + "discord": "cvn2484" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=nhatminh.forwarding@gmail.com" + } +} diff --git a/domains/local.jj.json b/domains/local.jj.json deleted file mode 100644 index 4f4a6b048..000000000 --- a/domains/local.jj.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "my playit.gg ip", - "owner": { - "username": "TheBotlyNoob", - "email": "jj@jj.is-a.dev" - }, - "record": { - "A": ["147.185.221.193"] - } -} diff --git a/domains/logan.json b/domains/logan.json index f2451dffc..9461a4911 100644 --- a/domains/logan.json +++ b/domains/logan.json @@ -1,12 +1,12 @@ { - "description": "LoganTheDudeRox's custom development website.", - "repo": "https://github.com/LoganLikesToCode/LoganLikesToCode.github.io", - "owner": { - "username": "LoganLikesToCode", - "email": "logantheduderox@gmail.com", - "twitter": "LoganTheDudeRox" - }, - "record": { - "CNAME": "LoganLikesToCode.github.io" - } -} + "description": "LoganTheDudeRox's custom development website.", + "repo": "https://github.com/LoganLikesToCode/LoganLikesToCode.github.io", + "owner": { + "username": "LoganLikesToCode", + "email": "logantheduderox@gmail.com", + "twitter": "LoganTheDudeRox" + }, + "record": { + "CNAME": "LoganLikesToCode.github.io" + } +} diff --git a/domains/login-brawley.json b/domains/login-brawley.json deleted file mode 100644 index dd25aed39..000000000 --- a/domains/login-brawley.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "login page for my discord bot", - "repo": "https://github.com/teamjoelee/me", - "owner": { - "username": "brawlie", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "69cfaa0c-dc64-4aae-8038-3d5e8bd27073.repl.co" - } -} diff --git a/domains/loisvelasco.json b/domains/loisvelasco.json index 54ce1083f..8aa472f11 100644 --- a/domains/loisvelasco.json +++ b/domains/loisvelasco.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "loiSvelasco", - "email": "loisuperficialvelasco@gmail.com" - }, - "description": "Blog && Portfolio", - "repo": "https://github.com/loiSvelasco/loisvelasco.github.io", - "record": { - "CNAME": "loisvelasco.github.io" - } + "owner": { + "username": "loiSvelasco", + "email": "loisuperficialvelasco@gmail.com" + }, + "description": "Blog && Portfolio", + "repo": "https://github.com/loiSvelasco/loisvelasco.github.io", + "record": { + "CNAME": "loisvelasco.github.io" + } } diff --git a/domains/lokito.json b/domains/lokito.json new file mode 100644 index 000000000..955fd9a33 --- /dev/null +++ b/domains/lokito.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Pedrito2010", + "email": "pegomsan@gmail.com" + }, + "record": { + "A": ["37.60.230.249"], + "AAAA": ["2a02:c206:2162:9324::1"] + } +} diff --git a/domains/loky.json b/domains/loky.json deleted file mode 100644 index 9232c388d..000000000 --- a/domains/loky.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "lukasdoering", - "email": "", - "discord": "LoKy#1337" - }, - "record": { - "CNAME": "caa9fa0e-3b2f-44ea-a308-fd1fcbbe78b2.id.repl.co" - } -} diff --git a/domains/lol.json b/domains/lol.json deleted file mode 100644 index 6cdd768d5..000000000 --- a/domains/lol.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "lol is a dev", - "repo": "https://github.com/codingjlu/codingjlu.github.io", - "owner": { - "username": "codingjlu", - "email": "20472547@fhda.edu" - }, - "record": { - "CNAME": "codingjlu.github.io" - } -} diff --git a/domains/lonelil.json b/domains/lonelil.json index 84bfec106..eeb702326 100644 --- a/domains/lonelil.json +++ b/domains/lonelil.json @@ -1,12 +1,12 @@ { - "description": "This will be used for my portfolio.", - "repo": "https://github.com/lonelil/lonelil.github.io", - "owner": { - "username": "lonelil", - "discord": "lonelil#0001", - "email": "" - }, - "record": { - "CNAME": "lonelil.github.io" - } -} + "description": "This will be used for my portfolio.", + "repo": "https://github.com/lonelil/lonelil.github.io", + "owner": { + "username": "lonelil", + "discord": "lonelil#0001", + "email": "" + }, + "record": { + "CNAME": "lonelil.github.io" + } +} diff --git a/domains/loneorangeball.json b/domains/loneorangeball.json deleted file mode 100644 index 40a75436d..000000000 --- a/domains/loneorangeball.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "loneorangeball's website", - "owner": { - "username": "loneorangeball", - "email": "", - "twitter": "LoneOrangeBall", - "discord": "orangeBall#6183" - }, - "record": { - "CNAME": "b29ec742-99b6-4ff2-990d-58f9aa910bd1.id.repl.co" - } -} diff --git a/domains/looker.json b/domains/looker.json new file mode 100644 index 000000000..965f70935 --- /dev/null +++ b/domains/looker.json @@ -0,0 +1,12 @@ +{ + "description": "LooKeR's Portfolio", + "repo": "https://github.com/Iamlooker/iamlooker.github.io", + "owner": { + "username": "Iamlooker", + "email": "mohit2002ss@gmail.com", + "twitter": "Iam_looker" + }, + "record": { + "CNAME": "iamlooker.github.io" + } +} diff --git a/domains/loser.json b/domains/loser.json new file mode 100644 index 000000000..38284fffd --- /dev/null +++ b/domains/loser.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "madhead341", + "email": "gus.creten@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 1106868081843777537" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + + "TXT": "forward-email=gus.creten@gmail.com" + } +} diff --git a/domains/losr.json b/domains/losr.json new file mode 100644 index 000000000..38284fffd --- /dev/null +++ b/domains/losr.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "madhead341", + "email": "gus.creten@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 1106868081843777537" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + + "TXT": "forward-email=gus.creten@gmail.com" + } +} diff --git a/domains/lostdir69.json b/domains/lostdir69.json index 3ffc7936a..9d4e91aa7 100644 --- a/domains/lostdir69.json +++ b/domains/lostdir69.json @@ -1,11 +1,11 @@ { - "description": "My info Website", - "repo": "https://github.com/lostdir69/Lostdir69.github.io", - "owner": { - "username": "lostdir69", - "email": "lostdirx69@gmail.com" - }, - "record": { - "CNAME": "lostdir69.github.io" - } -} + "description": "My info Website", + "repo": "https://github.com/lostdir69/Lostdir69.github.io", + "owner": { + "username": "lostdir69", + "email": "lostdirx69@gmail.com" + }, + "record": { + "CNAME": "lostdir69.github.io" + } +} diff --git a/domains/loud.json b/domains/loud.json deleted file mode 100644 index be01860dc..000000000 --- a/domains/loud.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "LinkerScript", - "email": "min@effobe.com" - }, - "record": { - "CNAME": "6498c941-9031-4e57-9fc0-12716fa187f4.repl.co" - } -} diff --git a/domains/louis.json b/domains/louis.json new file mode 100644 index 000000000..c33277693 --- /dev/null +++ b/domains/louis.json @@ -0,0 +1,11 @@ +{ + "description": "A portofolio", + "repo": "https://github.com/louloudev59/portofolio", + "owner": { + "username": "louloudev59", + "email": "louis.vasseur5@gmail.com" + }, + "record": { + "CNAME": "louloudev59.github.io" + } +} diff --git a/domains/lousybot.vulpine.json b/domains/lousybot.vulpine.json new file mode 100644 index 000000000..be7ec6141 --- /dev/null +++ b/domains/lousybot.vulpine.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "VulpineFriend87", + "email": "", + "discord": "911268706112397392", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.r6syW7tNxlBa5qDUur4fffj5IZ_eJk-iOjUdEY0ltdKkaQb4_duvgZdvfL5vEgus1-X6ITfovRqqRdBe0QrCUz0cGZJApqG1mNatuxfLpIvsUs6NJXgUlvtlZNgEIs4quS9nTYkwaf2GN00Dw9HIWiI1kK9Xeka9pF5mawoiEBvUgkIkXIsIsN5o8_UP-RFCA1SPqRm9G5hsgGm4xH5XW8ujrZV-rO3DOq7Y1-3jg9Wu7pchKNWGB1gxwcNtYsJdwPt1rVVHUIRrwRTB0RO5iA-lOKD0uTb0YTqljQRraTm76ED6w5xOy5cF2-dAb93NOIh_BKK-kacf1PW5AzU_WA.0uyS8PftuzxGzQXJ0Ku2ZQ.AkMecMaSNp3FPFR-cVg6ZylxV9UUwjF1P0NIIZaiHyVtr-Xzl4qnbWebKMlZ3rMT8VusovJslRt5wAL8QaPuXBlznTy2drUJUuy6rZ-3l94.WUo41eNKnKL5vZMgoweWPw" + }, + + "record": { + "A": ["69.197.135.205"] + } + } + diff --git a/domains/lovis.json b/domains/lovis.json new file mode 100644 index 000000000..dfb88d4d2 --- /dev/null +++ b/domains/lovis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LoviRent", + "email": "root@lovirent.eu" + }, + "record": { + "URL": "https://lovirent.eu" + } +} diff --git a/domains/lovishprabhakar.json b/domains/lovishprabhakar.json index c861630ca..99fb5a2ba 100644 --- a/domains/lovishprabhakar.json +++ b/domains/lovishprabhakar.json @@ -1,11 +1,11 @@ { -"description": "This website is a link to my personal developer portfoilio.", -"repo": "https://github.com/lovishprabhakar/lovishprabhakar.github.io", -"owner": { - "username": "lovishprabhakar", - "email": "2020010006574@gndu.ac.in" -}, -"record": { - "CNAME": "lovishprabhakar.github.io" -} + "description": "This website is a link to my personal developer portfoilio.", + "repo": "https://github.com/lovishprabhakar/lovishprabhakar.github.io", + "owner": { + "username": "lovishprabhakar", + "email": "2020010006574@gndu.ac.in" + }, + "record": { + "CNAME": "lovishprabhakar.github.io" + } } diff --git a/domains/lowrp.site.json b/domains/lowrp.site.json new file mode 100644 index 000000000..4018785c4 --- /dev/null +++ b/domains/lowrp.site.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Grinti1", + "email": "mlody6869@gmail.com" + }, + "record": { + "CNAME": "lowrp.site" + } +} diff --git a/domains/lowsummer.json b/domains/lowsummer.json new file mode 100644 index 000000000..5afdb91bd --- /dev/null +++ b/domains/lowsummer.json @@ -0,0 +1,12 @@ +{ + "description": "Low Summer, simple apps with beautiful ui", + "repo": "https://github.com/LowSummer/lowsummer.github.io", + "owner": { + "username": "LowSummer", + "email": "bressynickolas2007@gmail.com", + "twitter": "agelofmor" + }, + "record": { + "CNAME": "lowsummer.github.io" + } +} diff --git a/domains/lpkeates.json b/domains/lpkeates.json index 258571dad..6e9b8c667 100644 --- a/domains/lpkeates.json +++ b/domains/lpkeates.json @@ -1,12 +1,9 @@ { - "description": "This is to show my projects; current, in progress etc.", - "repo": "https://github.com/lpkeates/lpkeates.github.io", - "owner": { - "username": "lpkeates", - "email": "", - "discord": "MrDragonBoi#7894" - }, - "record": { - "CNAME": "lpkeates.github.io" - } + "owner": { + "username": "lpkeates", + "email": "realuprising2005@gmail.com" + }, + "record": { + "CNAME": "lpkeates.github.io" + } } diff --git a/domains/lrmn.json b/domains/lrmn.json new file mode 100644 index 000000000..7ea536d18 --- /dev/null +++ b/domains/lrmn.json @@ -0,0 +1,11 @@ +{ + "description": "lrmn.is-a.dev", + "repo": "https://github.com/lrmn7/lrmn7.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmnid@gmail.com" + }, + "record": { + "CNAME": "lrmn7.github.io" + } +} diff --git a/domains/lrxrn.json b/domains/lrxrn.json index ea0f8e741..e8dfd851c 100644 --- a/domains/lrxrn.json +++ b/domains/lrxrn.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "lrxrn", - "email": "meesum632@gmail.com" - }, - "record": { - "CNAME": "lrxrn.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "lrxrn", + "email": "meesum632@gmail.com" + }, + "record": { + "CNAME": "lrxrn.github.io" + } +} diff --git a/domains/lsantana.json b/domains/lsantana.json deleted file mode 100644 index dae9ef8f0..000000000 --- a/domains/lsantana.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "lsantana486", - "email": "lsantana.486@gmail.com" - }, - "description": "Personal domain for portofolio with my name Luis Santana", - "repo": "https://github.com/lsantana486/lsantana486", - "record": { - "CNAME": "lsantana.dev" - } -} diff --git a/domains/ltln.json b/domains/ltln.json index fe3ad216f..5e9e77ead 100644 --- a/domains/ltln.json +++ b/domains/ltln.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "ltln", + "email": "uguest17@gmail.com" + }, - { - "owner": { - "username": "ltln", - "email": "uguest17@gmail.com" - }, - - "record": { - "URL": "https://github.com/ltln" - } - } - \ No newline at end of file + "record": { + "URL": "https://github.com/ltln" + } +} diff --git a/domains/lua.json b/domains/lua.json new file mode 100644 index 000000000..7fde7627e --- /dev/null +++ b/domains/lua.json @@ -0,0 +1,12 @@ +{ + "description": "Just a website for detailing the game development projects of Lua", + "owner": { + "username": "notxlua", + "email": "notxlua@gmail.com", + "discord": "778436572835086366" + }, + + "record": { + "A": ["75.119.201.51"] + } +} diff --git a/domains/luca.json b/domains/luca.json deleted file mode 100644 index 20c856e4a..000000000 --- a/domains/luca.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Redirection service (URL shortener)", - "repo": "https://github.com/lucatolton", - "owner": { - "username": "lucatolton", - "email": "hi@lucatolton.me" - }, - "record": { - "A": ["168.119.228.144"], - "MX": ["mail.lucatolton.me"], - "TXT": "v=spf1 +a +mx +a:optimistic-wiles.168-119-228-144.plesk.page -all" - } -} diff --git a/domains/lucasp.json b/domains/lucasp.json new file mode 100644 index 000000000..850086954 --- /dev/null +++ b/domains/lucasp.json @@ -0,0 +1,11 @@ +{ + "description": "lucasp.is-a.dev", + "repo": "https://github.com/lucaspuntillo/lucaspuntillo.github.io/", + "owner": { + "username": "lucaspuntillo", + "email": "puntillol@linuxmail.org" + }, + "record": { + "CNAME": "lucaspuntillo.github.io" + } +} diff --git a/domains/lucaszick.json b/domains/lucaszick.json index f754a6bfd..4be67fc05 100644 --- a/domains/lucaszick.json +++ b/domains/lucaszick.json @@ -1,11 +1,11 @@ { - "description": "Lucas Zick's website", - "repo": "https://github.com/LucasZick/lucaszick.github.io", - "owner": { - "username": "lucaszick", - "email": "lucasalexandrezick@gmail.com" - }, - "record": { - "CNAME": "lucaszick.github.io" - } + "description": "Lucas Zick's website", + "repo": "https://github.com/LucasZick/lucaszick.github.io", + "owner": { + "username": "lucaszick", + "email": "lucasalexandrezick@gmail.com" + }, + "record": { + "CNAME": "lucaszick.github.io" } +} diff --git a/domains/lucen.json b/domains/lucen.json new file mode 100644 index 000000000..85aba1788 --- /dev/null +++ b/domains/lucen.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lucenstuff", + "email": "lucentiniagustin@hotmail.com", + "discord": "202467820225822720" + }, + + "record": { + "CNAME": "lucendev.onrender.com" + } +} diff --git a/domains/lucky.json b/domains/lucky.json new file mode 100644 index 000000000..8fb3118c4 --- /dev/null +++ b/domains/lucky.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "luckycdev", + "email": "lucky@luckyc.site", + "discord": "275273443329441792" + }, + + "record": { + "CNAME": "luckyc.site" + } +} diff --git a/domains/lucy.json b/domains/lucy.json new file mode 100644 index 000000000..b0edfa561 --- /dev/null +++ b/domains/lucy.json @@ -0,0 +1,12 @@ +{ + "description": "Lucy.is-a.dev", + "repo": "https://github.com/Hai-Lucy/Hai-Lucy.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com", + "discord": "romanromannya" + }, + "record": { + "CNAME": "Hai-Lucy.github.io" + } +} diff --git a/domains/lucyjs.json b/domains/lucyjs.json deleted file mode 100644 index 4048f6b92..000000000 --- a/domains/lucyjs.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "LucyJS-Dev", - "email": "pumimail9@gmail.com" - }, - - "record": { - "URL": "http://lucyjs.de" - } - } - diff --git a/domains/ludwig.json b/domains/ludwig.json new file mode 100644 index 000000000..dffa572c1 --- /dev/null +++ b/domains/ludwig.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ludwig7685", + "email": "ludwig@courvix.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/luisandre.json b/domains/luisandre.json new file mode 100644 index 000000000..4f0f46556 --- /dev/null +++ b/domains/luisandre.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "luis073094", + "email": "luis073094@gmail.com" + }, + "record": { + "URL": "https://portafolioluisandre.azurewebsites.net", + "A": [ + "20.206.176.7" + ] + } +} diff --git a/domains/luislemus.json b/domains/luislemus.json new file mode 100644 index 000000000..8955c57dc --- /dev/null +++ b/domains/luislemus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lemux-one", + "email": "lemux.one@gmail.com" + }, + "record": { + "CNAME": "lemux-one.github.io" + } +} diff --git a/domains/lukas.json b/domains/lukas.json index baa79b077..c4732b429 100644 --- a/domains/lukas.json +++ b/domains/lukas.json @@ -1,12 +1,12 @@ { - "description": "Lukas' Developer Page!", - "repo": "https://github.com/lukpopp0/lukpopp0.github.io", - "owner": { - "username": "LukPopp0", - "email": "luk.popp0@gmail.com", - "twitter": "LukPopp0" - }, - "record": { - "CNAME": "lukpopp.com" - } + "description": "Lukas' Developer Page!", + "repo": "https://github.com/lukpopp0/lukpopp0.github.io", + "owner": { + "username": "LukPopp0", + "email": "luk.popp0@gmail.com", + "twitter": "LukPopp0" + }, + "record": { + "CNAME": "lukpopp.com" + } } diff --git a/domains/lukass.json b/domains/lukass.json new file mode 100644 index 000000000..59a7eef8f --- /dev/null +++ b/domains/lukass.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fraimerdelacruz", + "email": "fraimerdelacruzjaziel@gmail.com" + }, + "record": { + "CNAME": "0abf0073-04e2-485c-9752-042bae7c1074.id.repl.co" + } +} diff --git a/domains/luki.json b/domains/luki.json new file mode 100644 index 000000000..853f0ea19 --- /dev/null +++ b/domains/luki.json @@ -0,0 +1,11 @@ +{ + "description": "Used for blogging", + "repo": "https://github.com/lzif/lzif.github.io", + "owner": { + "username": "lzif", + "email": "lukyfriendly@gmail.com" + }, + "record": { + "CNAME": "lzif.github.io" + } +} diff --git a/domains/lumi.json b/domains/lumi.json new file mode 100644 index 000000000..5f5496a5b --- /dev/null +++ b/domains/lumi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "itsFatlum", + "email": "", + "discord": "563697359423406082", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.rYJfVY9ddcNfUcpiA_o2o6afOGU-_sax-Oa1vg0zHVqWukEa9JJAEa-CF6Z6zpQTsrzS1fHeu17ddrDN2fvYf9d4K6-JpqrPBKX8RuPRhusLm4sdrrsDgyBcPQINzvVBdYya68DmkLQxf6lKAncjmRbLKkvkku32sakJlnSUbYJgstWMEBLtXe0hyroNt6_TkuNv9QiRECuhnmlo2_lC2P2EIh5ZtfvdNjfuS1N3uZc2nZpTmWclSQd3NVVe7IrZ7XfRocJFBKP19MIV9_qPxL6IKUH3gacnEqiFeTK2jirFv9dqvw6U_svwWqLeIv4Wc-p_I_GgIPUetDbOP4x0dQ.JRHm9e3Qt7KlgJhhL2pcng.s69nUmVqp_xNW7Bqr8g8ok3LPknauV7vy60oagYQgOEdZIdySA8znFtCp9YH7U7z2Bqr6n_suwYNkbgfgnniCPOo3b5P63Hxh9UQJe5wwkJpqqn2bAmS1rR1yAj4jnkv.89_IC0fL8YWZck7DqeF6zA" + }, + "record": { + "CNAME": "lumidevelopment.github.io" + } +} diff --git a/domains/luminance.json b/domains/luminance.json new file mode 100644 index 000000000..20c0cf0f1 --- /dev/null +++ b/domains/luminance.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "cssean11", + "email": "", + "discord": "635828542894112789", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JT-OnctK0mhWXNuKCDoYEGParEBfGqf4T0umEUN_IHM9eE1xsKKri85e8Wndo5UNKLqBPolVBDlS5rc7Ja76vxhXfS8nPmOP-zQAQ6n5w0LvcAYd_Qcsgw-Q2I6AqqTVCGFwknmNo_ZyQcCdLVBfZAii2zrJc_xVBlaqfWL1_Lsb8ZfN1fhnpwMNokreKFz0DgZJHu8bDSo92_0ApTAUKlbspsITB_tJ_l0qRsDcWT7nxiitJZnE915vRW26O1NBJHeGertnhcgqpauhmRnvB9c4gHE6LTByZi2S5E-LqYrQ3ahbaZlVsJFVV_Sw76_0uKazn8O4-NzMsNkELa1xow.1Nhod2QcxcgQOQoTzkV7Ew.1kPNG5us6ZohtiL8RjOtsCn1bJ9J2WyfNH_qBYNTaCAtBaUM6uUkZIsKfuX3R436pIIkKzkkV46YO8SkoCp9TJ9T78J89rG2jYGKOjyO3Jg._Nho4PqrHloNlT5R_WUqdQ" + }, + + "record": { + "CNAME": "9fcca875.luminance-1cu.pages.dev" + } + } + diff --git a/domains/luminaos.json b/domains/luminaos.json new file mode 100644 index 000000000..f40a1bb76 --- /dev/null +++ b/domains/luminaos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luminaOS-win", + "email": "winbo-yml-exe@outlook.com" + }, + "record": { + "CNAME": "luminaos-win.github.io" + } +} diff --git a/domains/lumix.json b/domains/lumix.json new file mode 100644 index 000000000..7ab1e24b0 --- /dev/null +++ b/domains/lumix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "o-lumix", + "email": "bylumixxx@gmail.com", + "discord": "828313756827516949" + }, + + "record": { + "CNAME": "lumix-cmq.pages.dev" + } +} diff --git a/domains/luna.json b/domains/luna.json index 9c2f665b5..327618679 100644 --- a/domains/luna.json +++ b/domains/luna.json @@ -1,11 +1,9 @@ { - "description": "Luna Seemann's personal website", - "repo": "https://github.com/Luna-devv/luna-site", "owner": { - "username": "Luna-devv", - "email": "luna@waya.one" + "username": "KitsuneDev", + "email": "kitsune@akitsune.dev" }, "record": { - "A": ["51.161.24.80"] + "URL": "https://akitsune.dev" } } diff --git a/domains/lunah.json b/domains/lunah.json index 43375a892..e31aafb2f 100644 --- a/domains/lunah.json +++ b/domains/lunah.json @@ -8,7 +8,10 @@ }, "record": { "A": ["62.171.160.186"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/lunarleaf.json b/domains/lunarleaf.json new file mode 100644 index 000000000..9768bda74 --- /dev/null +++ b/domains/lunarleaf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LunarLeaf", + "email": "laptopaleksa45@gmail.com" + }, + "record": { + "CNAME": "lunarleaf.github.io" + } +} diff --git a/domains/luni.json b/domains/luni.json index 016c8620e..8a6f70893 100644 --- a/domains/luni.json +++ b/domains/luni.json @@ -1,11 +1,9 @@ - { "owner": { "username": "Lukas-Batema", "email": "lukasbatema@mg.batemadevelopment.com" }, "record": { - "URL": "https://en.pronouns.page/@luni_batema" + "URL": "https://en.pronouns.page/@luni_moon" } } - \ No newline at end of file diff --git a/domains/luoxh.json b/domains/luoxh.json new file mode 100644 index 000000000..0bc232954 --- /dev/null +++ b/domains/luoxh.json @@ -0,0 +1,12 @@ +{ + "description": "🌸 This is nicer with it's own site of discord app named Luo Xiaohei", + "repo": "https://github.com/lxhapp/lxhapp.github.io", + "owner": { + "username": "Melishy", + "email": "nazariktymkiv67@gmail.com", + "twitter": "themelishy" + }, + "record": { + "CNAME": "lxhapp.github.io" + } +} diff --git a/domains/lutherantz.json b/domains/lutherantz.json new file mode 100644 index 000000000..e3f45bbed --- /dev/null +++ b/domains/lutherantz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lutherantz", + "email": "akamecanic@gmail.com" + }, + "record": { + "CNAME": "lutherantz.github.io" + } +} diff --git a/domains/luxxy.json b/domains/luxxy.json new file mode 100644 index 000000000..285d76955 --- /dev/null +++ b/domains/luxxy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Luxxy-GF", + "email": "deniedaddicted@gmail.com" + }, + + "record": { + "A": ["178.33.110.212"] + } +} diff --git a/domains/luyende.json b/domains/luyende.json new file mode 100644 index 000000000..64e11c218 --- /dev/null +++ b/domains/luyende.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coangsang", + "email": "sangtkx2@gmail.com" + }, + "record": { + "CNAME": "gv-dc5d3bwhw7btmc.dv.googlehosted.com" + } +} diff --git a/domains/lxz.json b/domains/lxz.json new file mode 100644 index 000000000..4d1884575 --- /dev/null +++ b/domains/lxz.json @@ -0,0 +1,12 @@ +{ + "description": "justforlxz personal website", + "repo": "https://github.com/lxz/justforlxz.github.io", + "owner": { + "username": "justforlxz", + "email": "", + "twitter": "justforlxz" + }, + "record": { + "CNAME": "justforlxz.github.io" + } +} diff --git a/domains/lyertia.json b/domains/lyertia.json deleted file mode 100644 index 076036b64..000000000 --- a/domains/lyertia.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my website uwu", - "repo": "https://github.com/lyertia", - "owner": { - "username": "lyertia", - "email": "camahmut7@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=lyertia.is-a.dev,f457c36e042417f3ab7f" - } -} diff --git a/domains/lyessa.json b/domains/lyessa.json deleted file mode 100644 index 6e7f6347b..000000000 --- a/domains/lyessa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "lyessa website uwu", - "repo": "https://github.com/lyessa-web", - "owner": { - "username": "lyertia", - "email": "camahmut7@gmail.com" - }, - "record": { - "URL": "https://lyessa.live" - } -} diff --git a/domains/lyke.json b/domains/lyke.json new file mode 100644 index 000000000..03acd4114 --- /dev/null +++ b/domains/lyke.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LykeTheBest", + "email": "lykethebest@outlook.com" + }, + "record": { + "URL": "https://lyke.glitch.me/" + } +} diff --git a/domains/lylythechosenone.json b/domains/lylythechosenone.json new file mode 100644 index 000000000..1e3f19dbf --- /dev/null +++ b/domains/lylythechosenone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lylythechosenone", + "email": "Lysander.mealy@gmail.com" + }, + "record": { + "CNAME": "lylythechosenone.github.io" + } +} diff --git a/domains/lyn.json b/domains/lyn.json new file mode 100644 index 000000000..fbd713d77 --- /dev/null +++ b/domains/lyn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cosmosc0des", + "email": "lyncodes@proton.me" + }, + "record": { + "URL": "https://lyncodes.neocities.org" + } +} diff --git a/domains/m.a.s.k.d.u.c.k.json b/domains/m.a.s.k.d.u.c.k.json new file mode 100644 index 000000000..57c2a7f63 --- /dev/null +++ b/domains/m.a.s.k.d.u.c.k.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "MaskDuck", + "email": "", + "discord": "716134528409665586", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FCODcvMVh-iHQ04kj7Eff1SC1Gh-ycagZxRqb-Y0X8tJwM8YnSqscZVkyRbW36X8X_EycjD5DLhkuW1dlk_wNaRGXrROY2_sdUxL71rW6cjc6OUqYdGaBrkqHfQ_R-a0vUWHyNQTDd266RV2RfYTdT71siAeMMFVgC1S7K7bEVlo5n2yYZLJg0-BkSevG4tDLyndsB4rPzeJTm-8EKIk62A-9Xfla0zbxQpY8x7gAc9ukpCH5fkITPcbGAMSitGXEtd7bMzErBdP-97X-c9hFF_B2ot2U8J-W_Rp9z8xk-vCKrGGEG76rqXyY1tSN68iUyL8at5p0-vGliTuALLNsA.zQD4sI7edMLRBD_ii-KXDA.Y689CjD1NbsRoyYnoiO9Arg5sHrlQ1SxpXExtf8Gn1VRmK86FuKRYTBvwSc_qIz7LqL90lEuEcNwUAWQHXx6aKIw90X_WYDLagM8nsugxBo.dO8s5XxLzH0gsfWJtnKNmg" + }, + + "record": { + "CNAME": "maskduck.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/m.json b/domains/m.json new file mode 100644 index 000000000..ce1ab1851 --- /dev/null +++ b/domains/m.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + "record": { + "MX": ["mail.hrsn.net"], + "TXT": "v=spf1 include:_spf.hrsn.net ~all" + } +} diff --git a/domains/m1.json b/domains/m1.json new file mode 100644 index 000000000..5aacd4348 --- /dev/null +++ b/domains/m1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "m1-dev", + "email": "notm1dev@skiff.com" + }, + "record": { + "URL": "https://m1-dev.vercel.app" + } +} diff --git a/domains/m1cro.json b/domains/m1cro.json new file mode 100644 index 000000000..161397d65 --- /dev/null +++ b/domains/m1cro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "m1cro-cat", + "email": "m1cro_cat@outlook.com" + }, + "record": { + "A": ["65.19.141.67"] + } +} diff --git a/domains/m1dnight.json b/domains/m1dnight.json deleted file mode 100644 index c82aba32d..000000000 --- a/domains/m1dnight.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "M1dnight's Coding/Digital Art Portfolio", - "repo": "https://portfolio.m1dnightdev.repl.co", - "owner": { - "username": "M1dnight-ofcl", - "email": "m1dnightgmrofficial@gmail.com" - }, - "record": { - "CNAME": "3076868f-0b1c-470a-b31d-f9fbb0ec9030.id.repl.co" - } -} diff --git a/domains/m1raclemax.json b/domains/m1raclemax.json new file mode 100644 index 000000000..db019fbdf --- /dev/null +++ b/domains/m1raclemax.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "nerdwithcomputers", + "email": "hpscigeek@gmail.com", + "discord": "862452372987314216" + }, + + "record": { + "CNAME": "nerdwithcomputers.github.io" + } + } + \ No newline at end of file diff --git a/domains/mac-lozano.json b/domains/mac-lozano.json new file mode 100644 index 000000000..182ca0b71 --- /dev/null +++ b/domains/mac-lozano.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "lumakk", + "email": "", + "discord": "1239578679156408360", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Jrzl8nfaTQEYGBNdVvRDpd8W-oa_yT9SG8MRVvGG2NSiRtLmdNM09F_raK0zdFpqLGnLfqtLm36jjnGkBM2kN5DPmYnEvGuaA4cnap6GZR0yvW-iRfWDV418OjayiSRjtxDO527J1UDaQbRddCjzqfrCeuDFYQJoN10rfL_Y4weeehUTuoks7LZZe6OPY95wsVuUS04tDX-kjE-wX0NXcfwiMUkEGKBrTrB0xI_QTQLkKk78QwyFNYDzoHVSjZoohi5Nw8LG54vNPIa5yyGcgPBGO8PsM7tw06X8i6TdvCraUjJNcJeMA9lLF0SbtIugcH7QjTKtdzZvCrKKjAX23A.xkU2HEHOn80V3NQAbpHXUA.1FJRfVizr8D2YhGUcmy-dpqR8tL2T8ay8tbm5TN0oSGpThb55drnvVuc_fiCIMWKmLodMxPlCWNn4LDhoLB61HwnbaVqyMl35xCV1pdWkXs.WQuV_4ksN39VO9RiFrTnpA" + }, + + "record": { + "CNAME": "lumakk.github.io" + } + } + \ No newline at end of file diff --git a/domains/mac.json b/domains/mac.json new file mode 100644 index 000000000..c99b72071 --- /dev/null +++ b/domains/mac.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "itsmaclol", + "email": "itsmaclol69@gmail.com" + }, + + "record": { + "CNAME": "macsite.pages.dev" + } +} diff --git a/domains/mackarroll.json b/domains/mackarroll.json new file mode 100644 index 000000000..21376169d --- /dev/null +++ b/domains/mackarroll.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "mackarroll-cc", + "email": "", + "discord": "158350765474316289", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.oY2ib88Xr7UtQT3vhdUsVy1tVTiU1K4n5ppy82sAy3vpuc_i6auFQJzajJxDN_a2cJZqegj4P15gWtoZo8i6vpVxu_mtXzDH-Q4AU05ZMjdivSH4f3N0_eJ8Y4gSSWwrKoKfSmp5yfthcwEknIRSts5g9P9PsxpLfybgkITMnPebZtlFmP7mlWQTfHUs_9qsQ9bhn2WITCrPYyjZOQQeAKAIsWiC0wR1rVTS7_8b60sdUEzBroKIIv1CIr_ysHAFpkakz1O3277kdus7O7MKgEriOyDUfnuJ9R2GZ06USQ6FluOW4JY3jRmdHaXw9KC9IoLlqPy7pNm4YF5khejoPQ.9EMGeUHPbC7Refhoylu_BQ.sPIXpepXrH3vCY9bHxA2WC5j0gSTVZ5Uel7cyBJxnRACl7iIZUfhbw9WfqIpBgdM_IRd2gwMXP1kz9vXQxOXGB7DU-FlHNJlP-sc5Msiav8.dF38jQNV8_gE1uCmkzTTPA" + }, + + "record": { + "URL": "https://mackarroll.cc" + } + } + diff --git a/domains/maddy.json b/domains/maddy.json index 39386af2d..eaa4ee5b8 100644 --- a/domains/maddy.json +++ b/domains/maddy.json @@ -1,12 +1,11 @@ { - "description": "Maddy Rocks :)", - "repo": "https://github.com/madhav-madhusoodanan/madhav-madhusoodanan.github.io", - "owner": { - "username": "madhav-madhusoodanan", - "email": "f20200049@pilani.bits-pilani.ac.in" - }, - "record": { - "CNAME": "madhav-madhusoodanan.github.io" - } + "description": "Maddy Rocks :)", + "repo": "https://github.com/madhav-madhusoodanan/madhav-madhusoodanan.github.io", + "owner": { + "username": "madhav-madhusoodanan", + "email": "f20200049@pilani.bits-pilani.ac.in" + }, + "record": { + "CNAME": "madhav-madhusoodanan.github.io" + } } - \ No newline at end of file diff --git a/domains/madebytragic.json b/domains/madebytragic.json new file mode 100644 index 000000000..1767be151 --- /dev/null +++ b/domains/madebytragic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lrmn7", + "email": "lrmnid@gmail.com" + }, + "record": { + "CNAME": "madebytragic.github.io" + } +} diff --git a/domains/madhavgupta.json b/domains/madhavgupta.json new file mode 100644 index 000000000..cb72f0085 --- /dev/null +++ b/domains/madhavgupta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "M4dhav", + "email": "madhav.gupta7674@gmail.com" + }, + "record": { + "URL": "https://madhavgupta.vercel.app" + } +} diff --git a/domains/madhavjhawar.json b/domains/madhavjhawar.json new file mode 100644 index 000000000..81d886ce3 --- /dev/null +++ b/domains/madhavjhawar.json @@ -0,0 +1,11 @@ +{ + "description": "personal webste", + "repo": "https://github.com/madhav32x/madhav32x.github.io", + "owner": { + "username": "madhav32x", + "email": "madhavjhawar@gmail.com" + }, + "record": { + "CNAME": "madhav32x.github.io" + } +} diff --git a/domains/madhead341.json b/domains/madhead341.json new file mode 100644 index 000000000..38284fffd --- /dev/null +++ b/domains/madhead341.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "madhead341", + "email": "gus.creten@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 1106868081843777537" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + + "TXT": "forward-email=gus.creten@gmail.com" + } +} diff --git a/domains/madhurya.json b/domains/madhurya.json index bc629c205..f72d68d8a 100644 --- a/domains/madhurya.json +++ b/domains/madhurya.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "madhuryadutta", - "email": "www.madhuryadutta2016@gmail.com" - }, - "record": { - "CNAME": "madhuryadutta.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "madhuryadutta", + "email": "www.madhuryadutta2016@gmail.com" + }, + "record": { + "CNAME": "madhuryadutta.github.io" + } +} diff --git a/domains/madkarma.json b/domains/madkarma.json new file mode 100644 index 000000000..d5b53d204 --- /dev/null +++ b/domains/madkarma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "madkarmaa", + "email": "madkarma99@gmail.com" + }, + "record": { + "CNAME": "madkarmaa.github.io" + } +} diff --git a/domains/madmusician.json b/domains/madmusician.json deleted file mode 100644 index 6873650e2..000000000 --- a/domains/madmusician.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "TRIPLE1RRT", - "email": "mitazaneem101@gmail.com", - "discord": "Dev.Sahil#9999" - }, - "record": { - "CNAME": "f84e6331-30e1-49a4-91aa-0c3bc6fc1139.id.repl.co" - } -} diff --git a/domains/maestro194.json b/domains/maestro194.json new file mode 100644 index 000000000..1ab156047 --- /dev/null +++ b/domains/maestro194.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maestro194", + "email": "dongboy1904@gmail.com" + }, + "record": { + "CNAME": "maestro194.github.io" + } +} diff --git a/domains/magdi.json b/domains/magdi.json new file mode 100644 index 000000000..2ba8f630c --- /dev/null +++ b/domains/magdi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coeur85", + "email": "ahmed.magdi@msn.com" + }, + "record": { + "MX": ["mx01.mail.icloud.com"] + } +} diff --git a/domains/mage.json b/domains/mage.json new file mode 100644 index 000000000..586abbfd0 --- /dev/null +++ b/domains/mage.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mageclienttt", + "email": "mageclienttt@gmail.com" + }, + "record": { + "MX": ["mx01.mail.icloud.com"] + } +} diff --git a/domains/magenta.json b/domains/magenta.json new file mode 100644 index 000000000..13a1cc7ab --- /dev/null +++ b/domains/magenta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EddieCherian", + "email": "eddiecherianj@gmail.com" + }, + "record": { + "URL": "https://magenta.com" + } +} diff --git a/domains/magic.json b/domains/magic.json new file mode 100644 index 000000000..d413f2da7 --- /dev/null +++ b/domains/magic.json @@ -0,0 +1,11 @@ +{ + "description": "Website for skyallaround", + "repo": "https://github.com/skyallaround/skyallaround.github.io", + "owner": { + "username": "skyallaround", + "email": "jr1264464@gmail.com" + }, + "record": { + "CNAME": "skyallaround.github.io" + } +} diff --git a/domains/magitian.json b/domains/magitian.json new file mode 100644 index 000000000..a0411e9dd --- /dev/null +++ b/domains/magitian.json @@ -0,0 +1,11 @@ +{ + "description": "Home for my blogs", + "repo": "https://github.com/themagitian/themagitian.github.io", + "owner": { + "username": "magitian", + "email": "magitian@duck.com" + }, + "record": { + "CNAME": "themagitian.github.io" + } +} diff --git a/domains/magniquick.json b/domains/magniquick.json index e7e8892ba..ff29b9735 100644 --- a/domains/magniquick.json +++ b/domains/magniquick.json @@ -1,22 +1,12 @@ { - "description": "magniquick's personal site", - "repo": "https://github.com/Magniquick/magniquick.github.io", - "owner": { - "username": "magniquick", - "email": "", - "discord": "Magniquick#5003" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "magniquick's personal site", + "repo": "https://github.com/Magniquick/magniquick.github.io", + "owner": { + "username": "magniquick", + "email": "", + "discord": "Magniquick#5003" + }, + "record": { + "CNAME": "magniquick.github.io" + } } diff --git a/domains/mahaviraenterprises.json b/domains/mahaviraenterprises.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/mahaviraenterprises.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/mahdiruiz.json b/domains/mahdiruiz.json new file mode 100644 index 000000000..6bf975996 --- /dev/null +++ b/domains/mahdiruiz.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Mrdev88", + "email": "", + "discord": "1182049473673830435", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ePsSqFOGNkSh4H1BcdgVTr7Ie66h4JZ2t3AQPLM9OBgfOZcSTDU6VYAxTy2sHEMZkOPVGC97DpDVmngpyKQgkJD8B3nxecnzpboapW1lY6tlNp0drwcIeGfHH9oHdAw8ylY9BarqkAzxKeHtiqf6NPWCBc2xmgszDzk9CN4fKY6RelA9Yhdu_HUFnKHVUdSvm2MVfZYUzaChN2hOZoMmm_TUQI3s__CeXKlOPlywcP3L21zQk7uFdO3_pyavpesO2BB4f5gTerRYQE1CodhJvtkPTfxHEM0bWgzQ8g3gBJptcWR8937-yU2V7rFrvPCbyKpICP9TnpE5Pi5ncG4WLQ.ivq5ahY4SO1IXoJyhTghVw.3ma2bVTFuG7H6kaPUrzFl39vDPtx_0rHRftLlUD2eslqmlXm1tH2TAIZvZcQvuNTNLnX6gF_JBoPvqIr9TtRxg.9aIDcwUbsqrjtsqT9LOAsQ" + }, + + "record": { + "CNAME": "mrdev88.github.io" + } + } + \ No newline at end of file diff --git a/domains/maheta-bhavik.json b/domains/maheta-bhavik.json new file mode 100644 index 000000000..dec45dc47 --- /dev/null +++ b/domains/maheta-bhavik.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/maheta-bhavik/maheta-bhavik.github.io", + "owner": { + "username": "maheta-bhavik", + "email": "" + }, + "record": { + "CNAME": "maheta-bhavik.github.io" + } +} diff --git a/domains/mahevish-husseni.json b/domains/mahevish-husseni.json new file mode 100644 index 000000000..5213f462e --- /dev/null +++ b/domains/mahevish-husseni.json @@ -0,0 +1,11 @@ +{ + "description": "Mahevish Husseni", + "repo": "https://github.com/mahevish-husseni/mahevish-husseni.github.io", + "owner": { + "username": "mahevish-husseni", + "email": "" + }, + "record": { + "CNAME": "mahevish-husseni.github.io" + } +} diff --git a/domains/mahir.json b/domains/mahir.json new file mode 100644 index 000000000..bd1a902ee --- /dev/null +++ b/domains/mahir.json @@ -0,0 +1,13 @@ +{ + "description": "Mahir's Website", + "repo": "https://github.com/mtgsquad", + "owner": { + "username": "mtgsquad", + "email": "mahir@molai.dev", + "twitter": "DevMolai", + "discord": "molai777" + }, + "record": { + "URL": "https://molai.dev" + } +} diff --git a/domains/mahmoud.json b/domains/mahmoud.json new file mode 100644 index 000000000..6e2a08eca --- /dev/null +++ b/domains/mahmoud.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "oMvhmoud", + "email": "contact@mahmoud.is-a.dev", + "discord": "927876264826650684" + }, + "repo": "https://github.com/oMvhmoud/oMvhmoud.github.io", + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mahmud.json b/domains/mahmud.json index fd5fabec7..4c5e3849b 100644 --- a/domains/mahmud.json +++ b/domains/mahmud.json @@ -1,12 +1,12 @@ { - "description": "mahmud's portfolio website", - "repo": "https://github.com/JBAxB8h7/JBAxB8h7.github.io", - "owner": { - "username": "JBAxB8h7", - "email": "kanieloutis758@gmail.com", - "twitter": "mahmudislam47" - }, - "record": { - "CNAME": "JBAxB8h7.github.io" - } -} + "description": "mahmud's portfolio website", + "repo": "https://github.com/JBAxB8h7/JBAxB8h7.github.io", + "owner": { + "username": "JBAxB8h7", + "email": "kanieloutis758@gmail.com", + "twitter": "mahmudislam47" + }, + "record": { + "CNAME": "JBAxB8h7.github.io" + } +} diff --git a/domains/mai.json b/domains/mai.json deleted file mode 100644 index 31fe3e938..000000000 --- a/domains/mai.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Mai's personal developer website", - "owner": { - "username": "Mai1ii", - "email": "mail@apexure.cf" - }, - "record": { - "CNAME": "mai1ii.github.io" - } -} diff --git a/domains/mail-noma.json b/domains/mail-noma.json index 3d35217dd..0afa43a78 100644 --- a/domains/mail-noma.json +++ b/domains/mail-noma.json @@ -1,14 +1,14 @@ { - "description": "A Subdomain For Mails!!", - "owner": { - "username": "Noma4321", - "email": "Noma4321business@gmail.com" - }, - "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "A Subdomain For Mails!!", + "owner": { + "username": "Noma4321", + "email": "Noma4321business@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/mail.aayushsiwa.json b/domains/mail.aayushsiwa.json new file mode 100644 index 000000000..83400b3e6 --- /dev/null +++ b/domains/mail.aayushsiwa.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "aayushsiwa", + "email": "22052177@kiit.ac.in" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/mail.aditya.json b/domains/mail.aditya.json deleted file mode 100644 index a367c686c..000000000 --- a/domains/mail.aditya.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "description": "A Subdomain For Mails!!", - "repo": "https://github.com/icancodebeauty/mail", - "owner": { - "username": "icancodebeauty", - "email": "ishqaddy@gmail.com", - "twitter": "CodeWithAadi" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/mail.amaankazi.json b/domains/mail.amaankazi.json new file mode 100644 index 000000000..edf5434c8 --- /dev/null +++ b/domains/mail.amaankazi.json @@ -0,0 +1,11 @@ +{ + "description": "Amaan Kazi's subdomain for mails", + "owner": { + "username": "Amaan-Kazi", + "email": "amaankazi1793@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.animesh.json b/domains/mail.animesh.json new file mode 100644 index 000000000..3d775a2d8 --- /dev/null +++ b/domains/mail.animesh.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "animeshryu", + "email": "animeshryu@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.arman.json b/domains/mail.arman.json index 3c4a641a5..7c9ff7ff2 100644 --- a/domains/mail.arman.json +++ b/domains/mail.arman.json @@ -1,21 +1,15 @@ { -"owner": { -"username": "arman", -"github": "ItzArman09", -"email": "contact@mail.arman.is-a.dev" -}, -"repo": "https://github.com/ItzArman09/mail.git", -"record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "description": "Mail For My Website", + "owner": { + "username": "ItzArman09", + "email": "itz.armxn@outlook.com" + }, + "record": { "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/mail.badboy.json b/domains/mail.badboy.json deleted file mode 100644 index 0ebc9b55a..000000000 --- a/domains/mail.badboy.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "repo": "https://github.com/Bad-Boy-Codes/contact", - "description": "My email forwarder", - "owner": { - "username": "bad-boy-codes", - "email": "sonupanda078@gmail.com", - "discord": "Bad Boy Plays#9608", - "note": "My Discord ID is 445073800850046977." - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all", - "URL": "https://badboy.is-a.dev/contact" - } -} diff --git a/domains/mail.boolean44.json b/domains/mail.boolean44.json index 2a1b53d1d..5f5ddcb2a 100644 --- a/domains/mail.boolean44.json +++ b/domains/mail.boolean44.json @@ -1,12 +1,15 @@ - { "owner": { "username": "boolean44-repos", "email": "serenitypalmer10@gmail.com" }, "record": { - "MX": ["mx1.improvmx.com.", "mx2.improvmx.com."], - "A": ["10.0.0.1"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": [ + "forward-email=palmerowen100@gmail.com" + ] } } diff --git a/domains/mail.boolean442.json b/domains/mail.boolean442.json new file mode 100644 index 000000000..5f5ddcb2a --- /dev/null +++ b/domains/mail.boolean442.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "boolean44-repos", + "email": "serenitypalmer10@gmail.com" + }, + "record": { + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": [ + "forward-email=palmerowen100@gmail.com" + ] + } +} diff --git a/domains/mail.clyron.json b/domains/mail.clyron.json new file mode 100644 index 000000000..ff25f398f --- /dev/null +++ b/domains/mail.clyron.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "theclyron", + "email": "onenonlyclyron@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.deadcode.json b/domains/mail.deadcode.json new file mode 100644 index 000000000..35e942c81 --- /dev/null +++ b/domains/mail.deadcode.json @@ -0,0 +1,17 @@ +{ + "owner": { + "username": "RichardKanshen", + "email": "richard@kanshen.click", + "twitter": "@kanskje0", + "discord": "kanshen.uwu", + "bluesky": "kanshen.click", + "telegram": "@richardkanskje" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.devansh.json b/domains/mail.devansh.json new file mode 100644 index 000000000..18461c2d1 --- /dev/null +++ b/domains/mail.devansh.json @@ -0,0 +1,15 @@ +{ + "description": "mail forwarding", + "repo": "https://github.com/devanshyadav2010/register", + "owner": { + "username": "devanshyadav2010", + "email": "dev8adam576@gmail.com", + "twitter": "devanshyadav" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } + } diff --git a/domains/mail.fran.json b/domains/mail.fran.json new file mode 100644 index 000000000..ab44e26e7 --- /dev/null +++ b/domains/mail.fran.json @@ -0,0 +1,16 @@ +{ + "description": "Fran's email", + "repo": "https://fran.is-a.dev", + "owner": { + "discord": "xzonix", + "email": "xz1@dr.com", + "username": "xzonix" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.hvn-network.json b/domains/mail.hvn-network.json new file mode 100644 index 000000000..e3b745419 --- /dev/null +++ b/domains/mail.hvn-network.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "DaoLmao", + "email": "", + "discord": "854380469147140106", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YYiTtfWSDHwSXb9MT6WVA8YGngFs8Na5NWWp15dLNgSOSkCDhyusojmz9so8D__NVF_MVbJ4dJ4mKUsoF1PQL_dRh-ZTINAFVnzjD4zGyFMW9nH7Q6wDk98tIGh5ZNfOUrqKgPUvslXMdDxtvkQ0ozsZB7XcIM6W35jHzHzjNYIJl58mTWlYg3qHXNcCZHXlDU-b4Qpq_yX4knBFpBBraJM-u8-j7MAkQgsX1x3kE_3LrR2W6d3AS_SofP_V7fSO-NU01glhbYPmp0TLXK0CxCGnhu8ZMzQPGD82TjN8pRtVUpQsbtMhcrCEwEmqkOXQ-D_Z4tKa_B-Qk_2g5c_gTw.HSLX0hOyRsELsyTL-Mk2tQ.WiNb7GNeSUyuaLRx6c-d00Eiv4ZC9OZM1h7_mKjjkC6AK5pdRSSvIOVpUy1c0ZRQ26SwekgDLz-rWm9GP2g5e4noskG9_2IiaH7BTg5lXb4.rxXv1bVYwiMt0sVdZz2rZg" + }, + + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } + } diff --git a/domains/mail.icehead.json b/domains/mail.icehead.json index d85d084c8..e153e6f2b 100644 --- a/domains/mail.icehead.json +++ b/domains/mail.icehead.json @@ -7,7 +7,7 @@ "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" - ], + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + } } diff --git a/domains/mail.jamied132.json b/domains/mail.jamied132.json new file mode 100644 index 000000000..1160194f7 --- /dev/null +++ b/domains/mail.jamied132.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jamied132", + "email": "jamied132.email@gmail.com" + }, + "record": { + "MX": [ + "mail.hmailserver.com" + ] + } +} diff --git a/domains/mail.krunch.json b/domains/mail.krunch.json new file mode 100644 index 000000000..d5562584d --- /dev/null +++ b/domains/mail.krunch.json @@ -0,0 +1,15 @@ +{ + "description": "ImprovMX Email", + "owner": { + "username": "RadioactivePotato", + "email": "", + "discord": "krunchiekrunch._." + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.l6174.json b/domains/mail.l6174.json deleted file mode 100644 index 99b9b7b79..000000000 --- a/domains/mail.l6174.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Email Forwarding Domain.", - "owner": { - "username": "l6174", - "email": "l.lawliet6174@gmail.com" - }, - "record": { - "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/mail.letum.json b/domains/mail.letum.json new file mode 100644 index 000000000..4cbe07c04 --- /dev/null +++ b/domains/mail.letum.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "amoramicae", + "discord": "1252631745514180790", + "email": "" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.minmit.json b/domains/mail.minmit.json index 9c539779f..911a193cf 100644 --- a/domains/mail.minmit.json +++ b/domains/mail.minmit.json @@ -6,7 +6,10 @@ "email": "minmitgamer@gmail.com" }, "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" } diff --git a/domains/mail.mrjunkyz.json b/domains/mail.mrjunkyz.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/mail.mrjunkyz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/mail.mxnticek.json b/domains/mail.mxnticek.json index 630905f2a..154b5d5c2 100644 --- a/domains/mail.mxnticek.json +++ b/domains/mail.mxnticek.json @@ -5,8 +5,9 @@ "email": "plainrock@seznam.cz" }, "record": { - "MX": ["d9025d2074984e72.mx2.emailprofi.seznam.cz", - "d9025d2074984e72.mx1.emailprofi.seznam.cz" - ] + "MX": [ + "d9025d2074984e72.mx2.emailprofi.seznam.cz", + "d9025d2074984e72.mx1.emailprofi.seznam.cz" + ] } } diff --git a/domains/mail.neki.json b/domains/mail.neki.json new file mode 100644 index 000000000..fe56649d4 --- /dev/null +++ b/domains/mail.neki.json @@ -0,0 +1,10 @@ +{ + "description": "Mail de Santiago", + "owner": { + "username": "PinkLittleKitty", + "email": "santyfisela@gmail.com" + }, + "record": { + "TXT": "zoho-verification=zb84078345.zmverify.zoho.com" + } +} diff --git a/domains/mail.notaperson535.json b/domains/mail.notaperson535.json index 1b17786bf..eaae984f9 100644 --- a/domains/mail.notaperson535.json +++ b/domains/mail.notaperson535.json @@ -5,7 +5,10 @@ "email": "notAperson939@gmail.com" }, "record": { - "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], "TXT": "forward-email=notaperson939@gmail.com" } } diff --git a/domains/mail.noteswallah.json b/domains/mail.noteswallah.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/mail.noteswallah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/mail.rika.json b/domains/mail.rika.json deleted file mode 100644 index 55e71de16..000000000 --- a/domains/mail.rika.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "description": "Domain for gmail", - "repo": "https://github.com/NicolDev/mail", - "owner": { - "username": "NicolDev", - "email": "cainiao1509@gmail.com" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/mail.satindar.json b/domains/mail.satindar.json new file mode 100644 index 000000000..c8bd7df24 --- /dev/null +++ b/domains/mail.satindar.json @@ -0,0 +1,14 @@ +{ + "description": "Mail for basic privacy", + "owner": { + "username": "satindar31", + "email": "satindar@satindar-is.me" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.senaditya.json b/domains/mail.senaditya.json new file mode 100644 index 000000000..eef051d90 --- /dev/null +++ b/domains/mail.senaditya.json @@ -0,0 +1,15 @@ +{ + "description": "Mail For My Website", + "owner": { + "username": "senaditya", + "email": "aditya.sen1hl@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.shymike.json b/domains/mail.shymike.json new file mode 100644 index 000000000..f6248a69b --- /dev/null +++ b/domains/mail.shymike.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "ImShyMike", + "email": "" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } + } + \ No newline at end of file diff --git a/domains/mail.somyadipghosh.json b/domains/mail.somyadipghosh.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/mail.somyadipghosh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/mail.suki.json b/domains/mail.suki.json deleted file mode 100644 index 8c2ce2fef..000000000 --- a/domains/mail.suki.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "SukiPlayz", - "email": "sukimayoo@outlook.com" - }, - "record": { - "A": [ - "212.193.3.66" - ] - } -} diff --git a/domains/mail.sx9.json b/domains/mail.sx9.json index 18e887738..3e5dc3dbc 100644 --- a/domains/mail.sx9.json +++ b/domains/mail.sx9.json @@ -6,8 +6,11 @@ "email": "sx-91@outlook.com", "username": "SX-9" }, - "record": { - "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/mail.teamcodearc.json b/domains/mail.teamcodearc.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/mail.teamcodearc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/mail.tmasikt.json b/domains/mail.tmasikt.json new file mode 100644 index 000000000..4ca98087f --- /dev/null +++ b/domains/mail.tmasikt.json @@ -0,0 +1,16 @@ +{ + "description": "tmasikt's mail record", + "owner": { + "username": "tmasikt", + "email": "tmasik.t.210@gmail.com", + "telegram": "tmasikt", + "discord": "tmasikt" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.toasty.json b/domains/mail.toasty.json new file mode 100644 index 000000000..e8af719bb --- /dev/null +++ b/domains/mail.toasty.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "toastyyyxd", + "email": "asaeasaeasae.x10@gmail.com", + "discord": "577480703302959104" + }, + + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.whine.json b/domains/mail.whine.json index a8f050e40..44f8adc26 100644 --- a/domains/mail.whine.json +++ b/domains/mail.whine.json @@ -1,12 +1,15 @@ { - "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" - }, - "description": "whi_ne's mail subdomain", - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} \ No newline at end of file + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "description": "whi_ne's mail subdomain", + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.zvdxc.json b/domains/mail.zvdxc.json new file mode 100644 index 000000000..9c555a537 --- /dev/null +++ b/domains/mail.zvdxc.json @@ -0,0 +1,18 @@ +{ + "description": "A sub-subdomain for use with a mail-forwarder, because the main subdomain zvdxc.is-a.dev has a CNAME and doesnt work. --MX records will be updated later, because Zoho--", + "owner": { + "username": "zvdxc", + "email": "zvdxc11@gmail.com" + }, + "record": { + "MX": [ + "mx.zoho.eu", + "mx2.zoho.eu", + "mx3.zoho.eu" + ], + "TXT": [ + "zoho-verification=zb90341973.zmverify.zoho.eu", + "v=spf1 include:zohomail.eu ~all" + ] + } +} diff --git a/domains/maindak.json b/domains/maindak.json new file mode 100644 index 000000000..5f6b582f7 --- /dev/null +++ b/domains/maindak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "masroof-maindak", + "email": "mujtaba.asim.amin@gmail.com" + }, + "record": { + "CNAME": "masroof-maindak.github.io" + } +} diff --git a/domains/maine.json b/domains/maine.json new file mode 100644 index 000000000..232cf6091 --- /dev/null +++ b/domains/maine.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Codemaine", + "email": "jermaineantwi22@gmail.com", + "discord": "672698075910766622" + }, + + "record": { + "CNAME": "codemaine.github.io" + } +} diff --git a/domains/maintainers.json b/domains/maintainers.json index 57d5515f2..ce1ab1851 100644 --- a/domains/maintainers.json +++ b/domains/maintainers.json @@ -1,13 +1,10 @@ { "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" + "username": "is-a-dev", + "email": "" }, "record": { - "MX": [ - "mx1.forwardemail.net", - "mx2.forwardemail.net" - ], - "TXT": "forward-email=isdevmail.beadman-network.com" + "MX": ["mail.hrsn.net"], + "TXT": "v=spf1 include:_spf.hrsn.net ~all" } } diff --git a/domains/mak448a.json b/domains/mak448a.json new file mode 100644 index 000000000..2f9ad0940 --- /dev/null +++ b/domains/mak448a.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mak448a", + "email": "", + "discord": "295391820744228867" + }, + "record": { + "CNAME": "mak448a.github.io" + } +} diff --git a/domains/maki.json b/domains/maki.json new file mode 100644 index 000000000..241336c6d --- /dev/null +++ b/domains/maki.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "mackarroll-cc", + "email": "", + "discord": "158350765474316289", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.j8JWg0u5up2imhyvumsu8Z2rBOCvISQRqe_gJ_BW99OP1Czo67btMZ8G7PMxv8Z8TtfXAJIuwq0KILxELaHcaHlO-LcSnejyTcpVGQEDvhnQPoQPiJzaLggP2uqtFZ9O86V1trHBYdb73nK_PR5Xdx9FxJl69YhQ37DunU9bxW_TD63ETW29SveTL5PanejBcZt-68Lcb3U7mqiMIIU8eEJNYrqrYNEYC0VfAv75_g6xexd3QInfZEcnjgZR3FPrvk280qua61hMbJj65Onh-JEMRS6a13fCnoQANF23DbYXQ1syNHF_q63l-UmUm23nVPWn0uh30dJrNzkFAt1tZw.jC17NLbSioPA1-NUXyMbPQ.zRur4tObIw-Z4Y5gIlUQyknmh4_7J2v6wVkKzRnwRSk7-8gQp6-uxWURiujJ97pwqULTt0bF1D_rq15_lSTmkur0yQrq5AqUZVJY3_10s6E.qy0SGuCH0DvGsRMHulV8Qw" + }, + + "record": { + "URL": "https://mackarroll.cc" + } + } + diff --git a/domains/malfunzionato.json b/domains/malfunzionato.json new file mode 100644 index 000000000..cebccf3e6 --- /dev/null +++ b/domains/malfunzionato.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "P0rc0D10", + "email": "grazioligiuliano52@gmail.com" + }, + "record": { + "URL": "https://github.com/p0rc0d10" + } +} diff --git a/domains/malik.json b/domains/malik.json new file mode 100644 index 000000000..38201e1f7 --- /dev/null +++ b/domains/malik.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Gwilymm", + "email": "", + "discord": "236575185849810944", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.dMI0nCVMnrusA6rZGPce5iBkGP9OpJCD_TGzFTtS1Ko2rDuVGKx-MgjX-GOwprAfcVuyWAFkKg6_ojRzld7lZeZmOxJE8DkOCW7VC-jWVQpZxZPJJFzEsqw4C9HLVSg2jUuhmRst8JzfhLFIvYPxeFv9w9rwQabWWCa9Trj4w9QRqAdwCX-vaVBo53C2D_n_fneAkTyvTHanNbipUNd2B-DbSrVdutzt0Ke-s5CZwKihRHfGB5hRVN0Oo5jviOPN7J2z5Q_8ObKv96uE_Mg0v08hM-bC47e4JLI1YnMl9z1-yq-m4tnSdhct7oBFg8SXehYu5GdvHMGmco6mrB6U_g.FdEs8-xLPtiqUTvLnijCYg.Cp4jo4xgq_zwhJD7HYchf6WysPFYx7E5Nsk6fq1IS_GLnQaIm2sg2qojKEVj9WKM_W97cQp4hRz7GPwAshmlRFiVstyw5pguVksRfE4aUfE.aKO5_Shplf_wnBE5idRQZg" + }, + + "record": { + "A": ["149.56.15.68"] + } + } + \ No newline at end of file diff --git a/domains/malleshcn.json b/domains/malleshcn.json new file mode 100644 index 000000000..f9a971deb --- /dev/null +++ b/domains/malleshcn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rohanworld", + "email": "rohanmaharaj78@gmail.com" + }, + "record": { + "URL": "https://malleshcn.netlify.app/" + } +} diff --git a/domains/malo.json b/domains/malo.json index d43e34969..b1815cf9f 100644 --- a/domains/malo.json +++ b/domains/malo.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "MaloDaHood", - "email": "malomr2002@gmail.com" - }, - "record": { - "A": ["54.37.225.204"] - } - } - \ No newline at end of file +{ + "owner": { + "username": "MaloDaHood", + "email": "malomr2002@gmail.com" + }, + "record": { + "A": ["54.37.225.204"] + } +} diff --git a/domains/malware.json b/domains/malware.json deleted file mode 100644 index d49069f09..000000000 --- a/domains/malware.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "themalware", - "email": "daredevil.vikrant@gmail.com" - }, - "record": { - "URL": "https://themalware.tk" - } -} diff --git a/domains/mameen.json b/domains/mameen.json new file mode 100644 index 000000000..c5b02a28b --- /dev/null +++ b/domains/mameen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mameen-omar", + "email": "mameen.omar@gmail.com" + }, + "record": { + "A": ["129.151.180.253"] + } +} diff --git a/domains/manage.json b/domains/manage.json new file mode 100644 index 000000000..f27db0ab3 --- /dev/null +++ b/domains/manage.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + + "record": { + "URL": "https://github.com/is-a-dev/register" + } +} diff --git a/domains/manage.uptime.trung.json b/domains/manage.uptime.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/manage.uptime.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/manas.json b/domains/manas.json new file mode 100644 index 000000000..0bbee6c43 --- /dev/null +++ b/domains/manas.json @@ -0,0 +1,11 @@ +{ + "description": "Manas' Portfolio Website", + "repo": "https://github.com/manas140/manas140.github.io", + "owner": { + "username": "Manas140", + "email": "manas140@protonmail.com" + }, + "record": { + "CNAME": "manas140.github.io" + } +} diff --git a/domains/manastripathi.json b/domains/manastripathi.json new file mode 100644 index 000000000..b8b227820 --- /dev/null +++ b/domains/manastripathi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "godspeedx14", + "email": "manastripathi.m@gmail.com" + }, + "record": { + "CNAME": "manas-t.web.app" + } +} diff --git a/domains/manav.json b/domains/manav.json new file mode 100644 index 000000000..edc5f97cc --- /dev/null +++ b/domains/manav.json @@ -0,0 +1,11 @@ +{ + "description": "Devloper Portfolio", + "repo": "https://github.com/Manav011/Manav011.github.io", + "owner": { + "username": "Manav011", + "email": "manavbafna87+github@gmail.com" + }, + "record": { + "CNAME": "manav011.github.io" + } +} diff --git a/domains/manit.json b/domains/manit.json new file mode 100644 index 000000000..0f8452cc7 --- /dev/null +++ b/domains/manit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "namzop", + "email": "manit.765489@gmail.com" + }, + + "record": { + "CNAME": "namzop.github.io" + } +} diff --git a/domains/manjushri.json b/domains/manjushri.json deleted file mode 100644 index 8084bbe2d..000000000 --- a/domains/manjushri.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "manjushri", - "email": "btinformativemessenger@gmail.com", - "telegram": "dreynakchung" - }, - "record": { - "URL": "https://www.manjushri.dev" - } -} diff --git a/domains/mannu.json b/domains/mannu.json new file mode 100644 index 000000000..cd3ee256e --- /dev/null +++ b/domains/mannu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MannuVilasara", + "email": "", + "discord": "786926252811485186" + }, + "record": { + "URL": "https://www.mannuvls.xyz/" + } +} diff --git a/domains/manodeepray.json b/domains/manodeepray.json new file mode 100644 index 000000000..b78a570cd --- /dev/null +++ b/domains/manodeepray.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Manodeepray/website", + "owner": { + "username": "Manodeepray", + "email": "manodeepray@gmail.com" + }, + "record": { + "CNAME": "Manodeepray.github.io" + } + } \ No newline at end of file diff --git a/domains/manoj-kumar-c.json b/domains/manoj-kumar-c.json new file mode 100644 index 000000000..e5d834776 --- /dev/null +++ b/domains/manoj-kumar-c.json @@ -0,0 +1,11 @@ +{ + "description": "Manojkumar C personal developer website", + "repo": "https://github.com/Manoj-kumar-C/manojkumar-c-dev", + "owner": { + "username": "Manoj-kumar-C", + "email": "developermanoj2003@gmail.com" + }, + "record": { + "URL": "https://manoj-kumar-c.github.io/manojkumar-c-dev/" + } +} diff --git a/domains/mantou.json b/domains/mantou.json new file mode 100644 index 000000000..aa797e3d0 --- /dev/null +++ b/domains/mantou.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Mantouisyummy", + "email": "", + "discord": "549056425943629825", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.aY6RLu6wtMjujwma0w1H5llw7yK9XYV91lqW6dNENxxMQAM3gOGYdq4qzDEkqtJgnRPk-3AS2aKNdvYKvhbiEwQZJjfMiI6mph1mJOiDzytTY0ddjVxUbpqCOzYfnH4eelbV_OLpkG-Xhmjq9oTIv26OIAdb5fNAb8KQ5mijE7R0hNW1gGOkwVgkdrAPdOI3CzzDWqAl7CBrXwhlIGNNlayd82F8KyZ7W3zqgQ2mmH8LlgIfPq0LWizcv4pkPULosHuAbY_JZWqlxEUVM0nGOZj2XmzQaqvslkCk2rpDf4sMs6lB2i1PX_LSwPMxzhyMpJ_GYTbJzTbWlX7LvDrCjA.wK3xmiKr05WNTB93lhQTCg.Kda6iR0wzdHXtytoJJyX8mPKl644gOimwKl3TUOK_qT6HxMP3nbu5YWSRuKT4BH1orCeYKgwh5qfo9jhauznKBJKgq9_thQPO7fHG6mOleI.iesJ_iq1hFXiiynvLhjZgg" + }, + + "record": { + "A": ["76.76.21.21"] + } + } + \ No newline at end of file diff --git a/domains/manu.json b/domains/manu.json index 673a3fd3c..bf3b6114d 100644 --- a/domains/manu.json +++ b/domains/manu.json @@ -1,11 +1,11 @@ { "description": "manu.is-a.dev", - "repo": "https://github.com/manuthecoder/personal-website", + "repo": "https://github.com/manuthecoder/manuthecoder", "owner": { "username": "manuthecoder", "email": "manusvathgurudath@gmail.com" }, "record": { - "CNAME": "manu-is-a-dev-yqz2.onrender.com" + "CNAME": "manuthecoder.pages.dev" } } diff --git a/domains/mapsyseo.json b/domains/mapsyseo.json new file mode 100644 index 000000000..57cfc5050 --- /dev/null +++ b/domains/mapsyseo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShingSemicolon", + "email": "Shing.XD.0602@gmail.com" + }, + "record": { + "A": ["81.16.29.155"] + } +} diff --git a/domains/marban.json b/domains/marban.json new file mode 100644 index 000000000..cc8b81fd1 --- /dev/null +++ b/domains/marban.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rahuletto", + "email": "rahulmarban@gmail.com" + }, + "record": { + "CNAME": "marban.pages.dev" + } +} diff --git a/domains/marc.json b/domains/marc.json index 297fe957c..414c35ef8 100644 --- a/domains/marc.json +++ b/domains/marc.json @@ -1,5 +1,5 @@ { - "description": "Marc Gruita is a Developer!", + "description": "Marc Gruita is a Developer!", "repo": "https://github.com/marcgr9", "owner": { "username": "marcgr9", diff --git a/domains/marcchew.json b/domains/marcchew.json deleted file mode 100644 index 0c885dc71..000000000 --- a/domains/marcchew.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "About Marc Chew", - "owner": { - "username": "marcchew", - "email": "marckychew@gmail.com" - }, - "record": { - "CNAME": "947555d1-ed28-4253-9341-45074fe2aaab.id.repl.co" - } -} diff --git a/domains/marcelomrwin.json b/domains/marcelomrwin.json index f4a80287c..c22c49bf7 100644 --- a/domains/marcelomrwin.json +++ b/domains/marcelomrwin.json @@ -1,11 +1,11 @@ { - "description": "My personal website to showcase the stuff that I do", - "repo": "https://github.com/marcelomrwin", - "owner": { - "username": "marcelomrwin", - "email": "marcelo.d.sales@gmail.com" - }, - "record": { - "CNAME": "marcelomrwin.github.io" - } - } \ No newline at end of file + "description": "My personal website to showcase the stuff that I do", + "repo": "https://github.com/marcelomrwin", + "owner": { + "username": "marcelomrwin", + "email": "marcelo.d.sales@gmail.com" + }, + "record": { + "CNAME": "marcelomrwin.github.io" + } +} diff --git a/domains/marchiba99.json b/domains/marchiba99.json new file mode 100644 index 000000000..44b94da6c --- /dev/null +++ b/domains/marchiba99.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marchiba99", + "email": "marchiba99@gmail.com" + }, + "record": { + "CNAME": "marchiba99.github.io" + } +} diff --git a/domains/marco.json b/domains/marco.json index 15fa39230..0156692b1 100644 --- a/domains/marco.json +++ b/domains/marco.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "marcomafessolli", - "email": "marcomafessolli@gmail.com" - }, - "record": { - "URL": "https://github.com/marcomafessolli" - } - } - \ No newline at end of file +{ + "owner": { + "username": "marcomafessolli", + "email": "marcomafessolli@gmail.com" + }, + "record": { + "URL": "https://github.com/marcomafessolli" + } +} diff --git a/domains/marcus.json b/domains/marcus.json index 851a898ec..80f868fe2 100644 --- a/domains/marcus.json +++ b/domains/marcus.json @@ -1,12 +1,12 @@ { "description": "A portfolio website for HeroGamers (Marcus).", - "repo": "https://github.com/HeroGamers/HeroGamers", + "repo": "https://github.com/HeroGamers/Portfolio", "owner": { "username": "HeroGamers", "email": "webmaster@herogamers.dev", "twitter": "ItsHeroGamers" }, "record": { - "CNAME": "herogamers.github.io" + "CNAME": "portfolio-4cw.pages.dev" } } diff --git a/domains/marcusj.json b/domains/marcusj.json deleted file mode 100644 index 434f2789a..000000000 --- a/domains/marcusj.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Portfolio of Marcus Weinberger", - "repo": "https://github.com/AgeOfMarcus", - "owner": { - "username": "AgeOfMarcus", - "email": "marcusjw.ftw@gmail.com" - }, - "record": { - "CNAME": "dev.marcusj.tech" - } -} diff --git a/domains/maria.json b/domains/maria.json index 86bf9cdde..89aaa638a 100644 --- a/domains/maria.json +++ b/domains/maria.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "nirewen", + "email": "londero.edu@gmail.com" + }, - { - "owner": { - "username": "nirewen", - "email": "londero.edu@gmail.com" - }, - - "record": { - "URL": "https://github.com/marialuisamol" - } - } - \ No newline at end of file + "record": { + "URL": "https://github.com/marialuisamol" + } +} diff --git a/domains/mariano-avila.json b/domains/mariano-avila.json new file mode 100644 index 000000000..d5db86d13 --- /dev/null +++ b/domains/mariano-avila.json @@ -0,0 +1,12 @@ +{ + "description": "personal portfolio using github pages", + "repo": "https://github.com/dxravage/dxravage.github.io", + "owner": { + "username": "dxravage", + "email": "marianoavilaj4@gmail.com", + "twitter": "@MarianoAvilaC" + }, + "record": { + "CNAME": "dxravage.github.io" + } +} diff --git a/domains/mariano.avila.json b/domains/mariano.avila.json new file mode 100644 index 000000000..b0af1b49c --- /dev/null +++ b/domains/mariano.avila.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DxRavage", + "email": "marianoavilaj4@gmail.com" + }, + "record": { + "CNAME": "dxravage.github.io" + } +} diff --git a/domains/marioannier.json b/domains/marioannier.json new file mode 100644 index 000000000..0260fed13 --- /dev/null +++ b/domains/marioannier.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "marioannier", + "email": "mario.annier@gmail.com" + }, + "record": { + "CNAME": "marioannier.github.io" + } +} diff --git a/domains/mark.json b/domains/mark.json index ae618c980..e19bd2f9a 100644 --- a/domains/mark.json +++ b/domains/mark.json @@ -1,11 +1,14 @@ { - "description": "Makr Davydov is a Developer!", - "repo": "https://github.com/markrity", - "owner": { - "username": "markrity", - "email": "markrity@gmail.com" - }, - "record": { - "URL": "https://www.linkedin.com/in/davydovmark" - } + "description": "Portfolio website", + "repo": "https://github.com/t1devzeus/register", + "owner": { + "username": "t1devzeus", + "email": "dev.caspian.hayashi@gmail.com", + "discord": "944959943310737408" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } } diff --git a/domains/markblum.json b/domains/markblum.json new file mode 100644 index 000000000..073ee14d4 --- /dev/null +++ b/domains/markblum.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mblumdumes", + "email": "mark@el-blum.de" + }, + "record": { + "CNAME": "el-blum.selfhost.co" + } +} diff --git a/domains/marketplace.syntaxloopers.json b/domains/marketplace.syntaxloopers.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/marketplace.syntaxloopers.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/markgurney.json b/domains/markgurney.json new file mode 100644 index 000000000..57a759fa7 --- /dev/null +++ b/domains/markgurney.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Superchicken962", + "email": "superchicken9962@gmail.com" + }, + "record": { + "URL": "https://markgurney.cf/" + } +} diff --git a/domains/markvayson.json b/domains/markvayson.json new file mode 100644 index 000000000..751d552e7 --- /dev/null +++ b/domains/markvayson.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "markvayson", + "email": "markvayson@gmail.com" + }, + "record": { + "CNAME": "58p02o7x.up.railway.app" + } +} diff --git a/domains/maryll.json b/domains/maryll.json index ec683d539..b4c7b316b 100644 --- a/domains/maryll.json +++ b/domains/maryll.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "Maryll-castelino", + "email": "maryllcastelino@gmail.com" + }, - { - "owner": { - "username": "Maryll-castelino", - "email": "maryllcastelino@gmail.com" - }, - - "record": { - "CNAME": "maryll-castelino.github.io" - } - } - + "record": { + "CNAME": "maryll-castelino.github.io" + } +} diff --git a/domains/maskduck.json b/domains/maskduck.json index d4b41187b..81573292a 100644 --- a/domains/maskduck.json +++ b/domains/maskduck.json @@ -1,15 +1,10 @@ { - "description": "MaskDuck's personal website!", - "repo": "https://github.com/maskducks/maskducks.github.io", - "owner": { - "username": "MaskDuck", - "email": "", - "discord": "MaskDuck#1337", - "twitter": "MaskDuck1", - "reddit": "u/maskduck", - "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586." - }, - "record": { - "CNAME": "maskduck.pages.dev" - } + "owner": { + "username": "maskduck", + "email": "", + "discord": "_ngiu.a_" + }, + "record": { + "CNAME": "maskduck.github.io" + } } diff --git a/domains/masmiyen.json b/domains/masmiyen.json index 7e77a008d..472bdb64a 100644 --- a/domains/masmiyen.json +++ b/domains/masmiyen.json @@ -1,12 +1,12 @@ { - "description": "Personal portfolio ", - "repo": "https://github.com/MASMIYEN/masmiyen.github.io", - "owner": { - "username": "MASMIYEN", - "email": "masmiyen@gmail.com", - "twitter": "MAsmiyen" - }, - "record": { - "CNAME": "masmiyen.github.io" - } + "description": "Personal portfolio ", + "repo": "https://github.com/MASMIYEN/masmiyen.github.io", + "owner": { + "username": "MASMIYEN", + "email": "masmiyen@gmail.com", + "twitter": "MAsmiyen" + }, + "record": { + "CNAME": "masmiyen.github.io" + } } diff --git a/domains/massick.json b/domains/massick.json index d84c9de4c..f09d36d4b 100644 --- a/domains/massick.json +++ b/domains/massick.json @@ -1,11 +1,9 @@ { "owner": { "username": "M4ss1ck", - "email": "4ndyraul@gmail.com", - "twitter": "M4ss1ck" + "email": "4ndyraul@gmail.com" }, - "repo": "https://github.com/M4ss1ck/massick-portfolio", "record": { - "URL": "https://massick.gatsbyjs.io" + "URL": "https://massick.netlify.app" } } diff --git a/domains/mastergrid.json b/domains/mastergrid.json new file mode 100644 index 000000000..549590ce7 --- /dev/null +++ b/domains/mastergrid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AtharvParsewar", + "email": "atharvparsewar@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/mastodon.dainfloop.json b/domains/mastodon.dainfloop.json deleted file mode 100644 index 0e4ae104d..000000000 --- a/domains/mastodon.dainfloop.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "DaInfLoop", - "email": "backupharoongames100@gmail.com" - }, - - "record": { - "A": ["34.132.134.162"] - } -} diff --git a/domains/matbak.json b/domains/matbak.json new file mode 100644 index 000000000..d57ad1b77 --- /dev/null +++ b/domains/matbak.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "matbakdev", + "email": "matbakdev@protonmail.com" + }, + + "record": { + "CNAME": "matbakdev.github.io" + } +} diff --git a/domains/match.json b/domains/match.json index c8a235d21..ca5cb8d25 100644 --- a/domains/match.json +++ b/domains/match.json @@ -6,9 +6,11 @@ "email": "imad.kh@outlook.com" }, "record": { - "A" : ["185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153"] + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] } } diff --git a/domains/mathu-lmn.json b/domains/mathu-lmn.json new file mode 100644 index 000000000..12df213c5 --- /dev/null +++ b/domains/mathu-lmn.json @@ -0,0 +1,12 @@ +{ + "description": "mathu-lmn.is-a.dev", + "repo": "https://github.com/Mathu-lmn/mathu-lmn.github.io", + "owner": { + "username": "mathu-lmn", + "email": "", + "discord": "Mathu_lmn#6970" + }, + "record": { + "CNAME": "mathu-lmn.github.io" + } +} diff --git a/domains/matrix.vi0leta.json b/domains/matrix.vi0leta.json new file mode 100644 index 000000000..def51632a --- /dev/null +++ b/domains/matrix.vi0leta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vi0letadev", + "email": "vi0leta@riseup.net" + }, + "record": { + "A": ["37.27.4.76"] + } +} diff --git a/domains/matrixcoder.json b/domains/matrixcoder.json new file mode 100644 index 000000000..57a4b7c5a --- /dev/null +++ b/domains/matrixcoder.json @@ -0,0 +1,21 @@ +{ + "description": "For my Personal Portfolio.", + "repo": "https://github.com/MatrixCoder0101/MatrixCoder0101.github.io", + "owner": { + "username": "MatrixCoder0101", + "email": "tkgoutamm625@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/matt.json b/domains/matt.json index fca5eafee..abad7ef8d 100644 --- a/domains/matt.json +++ b/domains/matt.json @@ -1,11 +1,16 @@ { - "description": "Matt Casey is a Developer!", - "repo": "https://github.com/mattcasey", + "description": "Matt is a Developer!", + "repo": "https://github.com/Tweak4141", "owner": { - "username": "mattcasey", - "email": "mattwad@gmail.com" + "username": "tweak4141", + "email": "tweak@talosbot.xyz" }, "record": { - "URL": "https://www.linkedin.com/in/mbcasey" + "A": ["150.230.46.24"], + "MX": [ + "mx1.talosbot.xyz", + "mx2.talosbot.xyz" + ], + "TXT": "v=spf1 include:spf.talosbot.xyz include:spf.brevo.com include:mailgun.org include:webmail.talosbot.xyz ~all" } } diff --git a/domains/matt3o0.json b/domains/matt3o0.json index 421490112..c2f8e3ce5 100644 --- a/domains/matt3o0.json +++ b/domains/matt3o0.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "duvbolone", - "email": "duvbolone@gmail.com" - }, - "record": { - "CNAME": "duvbolone.github.io" - } - } - +{ + "owner": { + "username": "duvbolone", + "email": "duvbolone@gmail.com" + }, + "record": { + "URL": "https://matt3o0.vercel.app" + } +} diff --git a/domains/mattdavison.json b/domains/mattdavison.json deleted file mode 100644 index b78c22b6b..000000000 --- a/domains/mattdavison.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "A domain for launching my person portfolio on!", - "owner": { - "username": "immattdavison", - "email": "hey@matt.lgbt" - }, - "record": { - "A": ["209.97.183.92"] - } -} diff --git a/domains/mattdestroyer.json b/domains/mattdestroyer.json deleted file mode 100644 index 0131ab547..000000000 --- a/domains/mattdestroyer.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Matt-DESTROYER's Website", - "owner": { - "username": "Matt-DESTROYER", - "email": "mattdestroyerpro@gmail.com" - }, - "record": { - "URL": "https://MattDESTROYER.repl.co" - } -} diff --git a/domains/mattw.json b/domains/mattw.json index 1e84a0a67..7b365e300 100644 --- a/domains/mattw.json +++ b/domains/mattw.json @@ -3,11 +3,9 @@ "repo": "https://github.com/Tweak4141", "owner": { "username": "tweak4141", - "email": "ynan243@gmail.com" + "email": "tweak@talosbot.xyz" }, "record": { - "A": ["74.201.25.77"], - "MX": ["mail.tnstudios.ca"], - "TXT": "v=spf1 a:webmail.tnstudios.ca a:mail.talosbot.xyz a:mail.tnstudios.ca ~all" + "CNAME": "nginxpm.talosbot.xyz" } } diff --git a/domains/matytyma.json b/domains/matytyma.json new file mode 100644 index 000000000..b21c92233 --- /dev/null +++ b/domains/matytyma.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "matytyma", + "email": "matytyma22@gmail.com", + "discord": "803549121247838209" + }, + + "record": { + "CNAME": "matytyma.github.io" + } +} diff --git a/domains/maurice.json b/domains/maurice.json new file mode 100644 index 000000000..814ba3d00 --- /dev/null +++ b/domains/maurice.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "bwl3810", + "email": "capybara@mail.de", + "discord": "1181949050770161756" + }, + + "record": { + "A": ["91.216.248.20"] + } +} diff --git a/domains/mausami-parmar.json b/domains/mausami-parmar.json new file mode 100644 index 000000000..68004c096 --- /dev/null +++ b/domains/mausami-parmar.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/mausami-parmar/mausami-parmar.github.io", + "owner": { + "username": "mausami-parmar", + "email": "" + }, + "record": { + "CNAME": "mausami-parmar.github.io" + } +} diff --git a/domains/mawoka.json b/domains/mawoka.json index 4606f3b03..2d7d1cccf 100644 --- a/domains/mawoka.json +++ b/domains/mawoka.json @@ -1,4 +1,3 @@ - { "owner": { "username": "mawoka-myblock", @@ -8,4 +7,3 @@ "URL": "https://mawoka.eu" } } - diff --git a/domains/max.json b/domains/max.json deleted file mode 100644 index 445a8e699..000000000 --- a/domains/max.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "ItzMaxxi", - "email": "maxguilham@protonmail.com" - }, - - "record": { - "URL": "https://eu.dzxdev.repl.co" - } - } - \ No newline at end of file diff --git a/domains/maxgiveawaybot.json b/domains/maxgiveawaybot.json new file mode 100644 index 000000000..578523388 --- /dev/null +++ b/domains/maxgiveawaybot.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "emmu123", + "email": "", + "discord": "863271170228486187", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U15Blx01XkJwDCgPniImJMBtkqzEzQ_InjZmPuBx2h7RRMPnBgBqUDOgC6r4r0NCARF6iKa5FqP5dJkh2wP2d0fV3opIioWqApLGll1XQOTW5N14yTk3NO9B7Sqa2RVMB-xmxxrXSyILkDXO3WnF4k2JUdoIYJ2E_wd5Mo8CwQpkd3hIfzfroaoSUvmeIR_cDh3KLOoliP-1SFuNn_Yo4sqoFI0xifcQsXAEV9RLaQ5KuJQz9mv6RBeT8C13TxJIt51e4Bb_JXLMyVjz-jiFyuOTIY0Wt3e8ATgXXHovoJkDiP71xcEWA1jzWUGEWE1qC9bmseghh-Ii6_Z4ieWdKA.ddonB5m57O0yCwXStFhsiw.DjqWalsKwjt07LA_Q--Kxda7_hfxAwvgBHtGQphyj7VRCbVT3DBitJmTXvH0fUuJ4oqs4Lr0iWl7gbAi9zxJmKHXWuGJ7D-yDmSQRPwfJYE.RetwqAP8tPc9M0RpGyk26A" + }, + + "record": { + "CNAME": "emmu123.github.io" + } + } + \ No newline at end of file diff --git a/domains/maximilian.json b/domains/maximilian.json new file mode 100644 index 000000000..5b68a8cd6 --- /dev/null +++ b/domains/maximilian.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "MaximilianHeinrich", + "email": "maxhei.21@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/maximking.json b/domains/maximking.json deleted file mode 100644 index 28242074f..000000000 --- a/domains/maximking.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Maxim K Personal Dev Site", - "owner": { - "username": "MaximKing", - "email": "business@maximking.co.uk" - }, - "record": { - "CNAME": "maximking.co.uk" - } -} diff --git a/domains/mayank-rathva.json b/domains/mayank-rathva.json new file mode 100644 index 000000000..59b2a594f --- /dev/null +++ b/domains/mayank-rathva.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/mayank-rathva/mayank-rathva.github.io", + "owner": { + "username": "mayank-rathva", + "email": "" + }, + "record": { + "CNAME": "mayank-rathva.github.io" + } +} diff --git a/domains/mayank.json b/domains/mayank.json new file mode 100644 index 000000000..3c9d891a5 --- /dev/null +++ b/domains/mayank.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MayankServers", + "email": "mayankreal657@gmail.com" + }, + "record": { + "CNAME": "mayankservers.github.io" + } +} diff --git a/domains/mayank2808sharma.json b/domains/mayank2808sharma.json new file mode 100644 index 000000000..0c7ca10f7 --- /dev/null +++ b/domains/mayank2808sharma.json @@ -0,0 +1,12 @@ +{ + "description": "mayank2808sharma personal developer website", + "repo": "https://github.com/Mayank2808sharma/protfolio-website", + "owner": { + "username": "mayank2808sharma", + "email": "mayank2808sharma@gmail.com", + "twitter": "mayanksharmaa03" + }, + "record": { + "CNAME": "mayank2808sharma.github.io" + } +} diff --git a/domains/mayerfried.json b/domains/mayerfried.json new file mode 100644 index 000000000..85b531275 --- /dev/null +++ b/domains/mayerfried.json @@ -0,0 +1,11 @@ +{ + "description": "Mayer Fried Is A Dev", + "repo": "https://github.com/mfried40", + "owner": { + "username": "mfried40", + "email": "mayer@mayerfried.com" + }, + "record": { + "CNAME": "me.mayerfried.com" + } +} diff --git a/domains/mc.badboy.json b/domains/mc.badboy.json deleted file mode 100644 index 447ca22f4..000000000 --- a/domains/mc.badboy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Minecraft server.", - "owner": { - "username": "bad-boy-codes", - "email": "contact@mail.badboy.is-a.dev" - }, - "record": { - "URL": "https://bigpp.ml" - } -} diff --git a/domains/mc.daniel.json b/domains/mc.daniel.json deleted file mode 100644 index 23dcf599c..000000000 --- a/domains/mc.daniel.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "2b2t Minecraft proxy", - - "owner": { - "username": "hackermondev", - "email": "isadev@daniel.is-a.dev", - "twitter": "hackermondev" - }, - - "record": { - "A": ["44.203.172.179"] - } -} diff --git a/domains/mc.dergraph.json b/domains/mc.dergraph.json deleted file mode 100644 index 6f7f1963a..000000000 --- a/domains/mc.dergraph.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "derGraph", - "email": "dergraph@f5.si" - }, - "record": { - "A": [ - "83.215.31.101" - ] - } -} diff --git a/domains/mc.esb.json b/domains/mc.esb.json new file mode 100644 index 000000000..6a7b11a15 --- /dev/null +++ b/domains/mc.esb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "CNAME": "bff5bd034c7fbbeafaaf626f505c8cc5.ipv4.tcpshield.com" + } +} diff --git a/domains/mc.h3l.json b/domains/mc.h3l.json new file mode 100644 index 000000000..0145ec64c --- /dev/null +++ b/domains/mc.h3l.json @@ -0,0 +1,11 @@ +{ + "description": "Documentation for is-a-dev", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "gvalue-04", + "email": "vaporvault04@gmail.com" + }, + "record": { + "CNAME": "on-clan.gl.at.ply.gg" + } +} diff --git a/domains/mc.json b/domains/mc.json new file mode 100644 index 000000000..a6716c4d6 --- /dev/null +++ b/domains/mc.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LSD9kCcuVMiKKvlR-FO7qhiXahKbBdhrtM9wnZpaelPXdjLYvhVOOIGNqpus2aj8DuVjqu3gvaoKqOOCvlxZVe8O22Ef6JqCtu2HWMm4nZbXfpUyxpORZbSXuKg8JOIdX50Tm2Hrx3UwG4xjzbRAK96DUuew4l2qeIyEUrl1ycBpv5CEDPVQz6DN7v1IoWEZlYHup9x9zIjC4U-YR3zjXOTZPjyQul9fQFKXqy9oNsock4u0PTHCJ6q9aNG4WW2_n4gyGxYGXN5IdRxIsIIuXGif_W4u2FbjcSiWPvmN7FND-1jWnvwhYTK6fT0L5j2FJ7SVFanm1wi8Rg8AM2iG6A.oVOsZt9TwDae4njjIkcczw.p2DEVq4W4Wp1FbeEd50P0KQYEtxu_purdwrb5eskPNIhn-UU8V3V4MCcA0IFYSEtWGbjdHy3YtI6NXp_zTE1INyHslf9sBsr1zohyhTzqbHw3FYB_C7ZZioMg6jXrIy2.Yj7_I0i-HKwO8VBpDxpQeA" + }, + + "record": { + "CNAME": "bff5bd034c7fbbeafaaf626f505c8cc5.ipv4.tcpshield.com" + } + } + \ No newline at end of file diff --git a/domains/mc.katz.json b/domains/mc.katz.json new file mode 100644 index 000000000..1d194a010 --- /dev/null +++ b/domains/mc.katz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bananalolok", + "email": "imethlol1234@gmail.com", + "discord": "banana_lol_7678" + }, + "record": { + "CNAME": "5e8898d8b635c8dbffbd3c5c7574b456.ipv4.tcpshield.com" + } +} diff --git a/domains/mc.minmit.json b/domains/mc.minmit.json new file mode 100644 index 000000000..096f8be1a --- /dev/null +++ b/domains/mc.minmit.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MinMitCoder", + "email": "minmitgamer@gmail.com", + "discord": "499232953352716288" + }, + + "record": { + "A": ["141.144.228.165"] + } +} diff --git a/domains/mc.mousemoosz.json b/domains/mc.mousemoosz.json deleted file mode 100644 index 9aa2faa62..000000000 --- a/domains/mc.mousemoosz.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "For my Minecraft server", - "owner": { - "username": "MouseMoosz", - "email": "mousemoosz@protonmail.com" - }, - "record": { - "CNAME": "ge.terohost.com" - } -} diff --git a/domains/mc.neki.json b/domains/mc.neki.json new file mode 100644 index 000000000..f2156df7e --- /dev/null +++ b/domains/mc.neki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PinkLittleKitty", + "email": "santyfisela@neki.is-a.dev" + }, + "record": { + "A": ["128.254.225.78"] + } +} diff --git a/domains/mc.pig.json b/domains/mc.pig.json new file mode 100644 index 000000000..4d81398e5 --- /dev/null +++ b/domains/mc.pig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ipigtw", + "email": "diegogamingtw@gmail.com" + }, + "record": { + "A": ["34.81.149.229"] + } +} diff --git a/domains/mc.sewt.json b/domains/mc.sewt.json new file mode 100644 index 000000000..d4125db41 --- /dev/null +++ b/domains/mc.sewt.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + }, + + "record": { + "CNAME": "2ad91f09d3acba5ca94988f1f77baadc.ipv4.tcpshield.com" + } + } diff --git a/domains/mc.sono.json b/domains/mc.sono.json new file mode 100644 index 000000000..108a9d1e5 --- /dev/null +++ b/domains/mc.sono.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "getSono", + "email": "sono.arbeit@gmail.com" + }, + "record": { + "A": [ + "45.92.217.48" + ] + } +} diff --git a/domains/mc.toastersticks.json b/domains/mc.toastersticks.json deleted file mode 100644 index eb779638f..000000000 --- a/domains/mc.toastersticks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ToasterSticks", - "email": "matt.zhao.18@gmail.com" - }, - "record": { - "A": ["168.138.69.189"] - } -} diff --git a/domains/mc1.notjadeja.json b/domains/mc1.notjadeja.json deleted file mode 100644 index cf635155c..000000000 --- a/domains/mc1.notjadeja.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "HalalJadeja", - "discord": "NotJadeja#8183", - "email": "9236.stkabirdio@gmail.com" - }, - "record": { - "A": [ - "147.185.221.180" - ] - } -} diff --git a/domains/mcreed.json b/domains/mcreed.json new file mode 100644 index 000000000..b2ae7698e --- /dev/null +++ b/domains/mcreed.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "M-creed", + "email": "marwankalosha005@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/mcsavvy.json b/domains/mcsavvy.json index 49a03bed2..a67c41eea 100644 --- a/domains/mcsavvy.json +++ b/domains/mcsavvy.json @@ -1,10 +1,10 @@ { - "owner": { + "owner": { "username": "Mcsavvy", "discord": "savvii#3184", "email": "davemcsavvii@gmail.com" }, - "record": { - "CNAME": "mcsavvy.github.io" + "record": { + "CNAME": "mcsavvy.github.io" } } diff --git a/domains/mcstatus.json b/domains/mcstatus.json new file mode 100644 index 000000000..c543e0863 --- /dev/null +++ b/domains/mcstatus.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com", + "discord": "1167825360151380032" + }, + "record": { + "A": [ + "216.24.57.1" + ], + "TXT": [ + "google-site-verification=nDh74FzhzmLwzfX4wZWHjZOjNXmTCKyuw89TGKOIfkE" + ] + } +} diff --git a/domains/mcz.json b/domains/mcz.json deleted file mode 100644 index 98e604217..000000000 --- a/domains/mcz.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Mczgodpiggy", - "email": "dragonhuntergamingweb@gmail.com" - }, - "record": { - "CNAME": "947fd546-46f4-480c-b971-ca2b663c54d8.id.repl.co" - } -} diff --git a/domains/mczgodpiggy.json b/domains/mczgodpiggy.json deleted file mode 100644 index 7369438f5..000000000 --- a/domains/mczgodpiggy.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Mczgodpiggy", - "email": "aukoeh@gmail.com" - }, - "record": { - "CNAME": "947fd546-46f4-480c-b971-ca2b663c54d8.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/mdbesoain.json b/domains/mdbesoain.json deleted file mode 100644 index 4129f9c5d..000000000 --- a/domains/mdbesoain.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "mdbesoain", - "email": "mdbesoain@gmail.com" - }, - "record": { - "URL": "https://mdbesoain.cl" - } - } - \ No newline at end of file diff --git a/domains/mdk.json b/domains/mdk.json deleted file mode 100644 index c2f2afba9..000000000 --- a/domains/mdk.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "MaskDuck", - "email": "it-is@too-obvious-that.maskduck.is-a.dev" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } - } - \ No newline at end of file diff --git a/domains/mduha.json b/domains/mduha.json new file mode 100644 index 000000000..13d6545c3 --- /dev/null +++ b/domains/mduha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "r2kch", + "email": "marco@dubini.com" + }, + "record": { + "A": ["84.72.8.155"] + } +} diff --git a/domains/me.json b/domains/me.json new file mode 100644 index 000000000..4bd2309ac --- /dev/null +++ b/domains/me.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "cloudcap10", + "email": "jttalasan@live.com" + }, + "record": { + "CNAME": "cloudcap10.github.io" + } +} diff --git a/domains/me.saxophone.json b/domains/me.saxophone.json new file mode 100644 index 000000000..a8ba7c6a2 --- /dev/null +++ b/domains/me.saxophone.json @@ -0,0 +1,10 @@ +{ + "description": "my website's ipfs stuff. (basically web3 -> web2 connection). using dweb.link!!", + "owner": { + "username": "saxophone-guy", + "email": "itsarchit@keemail.me" + }, + "record": { + "CNAME": "k51qzi5uqu5dkufpe6tqnpkkgbd2ylzp27td5newwkx3nafsx87crm2zsy2f7o.ipns.dweb.link" + } +} diff --git a/domains/mebius-.json b/domains/mebius-.json new file mode 100644 index 000000000..e9fc701cd --- /dev/null +++ b/domains/mebius-.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mebiius", + "email": "anjuangyu@gmail.com" + }, + "record": { + "URL": "https://mebiius.github.io/" + } +} diff --git a/domains/meen.json b/domains/meen.json deleted file mode 100644 index 581089120..000000000 --- a/domains/meen.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Patcharapol's personal site!", - "repo": "https://github.com/msp5382/personal", - "owner": { - "username": "msp5382", - "email": "meen.sankaew@gmail.com" - }, - "record": { - "URL": "https://patcharapol.dev" - } -} diff --git a/domains/meenbeese.json b/domains/meenbeese.json new file mode 100644 index 000000000..3d17e82bb --- /dev/null +++ b/domains/meenbeese.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meenbeese", + "email": "meenbeese@tutanota.com" + }, + "record": { + "CNAME": "meenbeese.github.io" + } +} diff --git a/domains/meerkats.shays.json b/domains/meerkats.shays.json new file mode 100644 index 000000000..7fc084b27 --- /dev/null +++ b/domains/meerkats.shays.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SHays24", + "email": "", + "discord": "munchkin2309" + }, + "record": { + "CNAME": "the-meerkats-projects-shays24-90484013ec4c0067187cd3a154c706ad6.gitlab.io" + } +} diff --git a/domains/meesam.json b/domains/meesam.json new file mode 100644 index 000000000..c850075b3 --- /dev/null +++ b/domains/meesam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meesam4687", + "email": "meesam4687@gmail.com" + }, + "record": { + "CNAME": "meesam4687.github.io" + } +} diff --git a/domains/mega-lag.sx9.json b/domains/mega-lag.sx9.json index 475e56e55..a4742e503 100644 --- a/domains/mega-lag.sx9.json +++ b/domains/mega-lag.sx9.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "SX-9", + "email": "satriakrach@gmail.com" + }, - { - "owner": { - "username": "SX-9", - "email": "satriakrach@gmail.com" - }, - - "record": { - "CNAME": "sx-9.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "sx-9.github.io" + } +} diff --git a/domains/mega.json b/domains/mega.json index a25472b66..e19f69674 100644 --- a/domains/mega.json +++ b/domains/mega.json @@ -7,6 +7,6 @@ "twitter": "_Mega_Dev_" }, "record": { - "CNAME": "flask-production-b336.up.railway.app" + "CNAME": "flask-production-b336.up.railway.app" } } diff --git a/domains/megalith.json b/domains/megalith.json index 0cf4dda0c..8c108572b 100644 --- a/domains/megalith.json +++ b/domains/megalith.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "MegalithOffical", + "email": "gekocakaya@gmail.com" + }, - { - "owner": { - "username": "MegalithOffical", - "email": "gekocakaya@gmail.com" - }, - - "record": { - "URL": "https://profile-megalithoffical.vercel.app" - } - } - + "record": { + "URL": "https://profile-megalithoffical.vercel.app" + } +} diff --git a/domains/meghdip.json b/domains/meghdip.json new file mode 100644 index 000000000..4918f9208 --- /dev/null +++ b/domains/meghdip.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "karmakarmeghdip", + "email": "karmakarmeghdip@gmail.com", + "discord": "479631349167423509" + }, + + "record": { + "CNAME": "karmakarmeghdip.github.io" + } +} diff --git a/domains/mehdigr.json b/domains/mehdigr.json new file mode 100644 index 000000000..7bcb19848 --- /dev/null +++ b/domains/mehdigr.json @@ -0,0 +1,10 @@ + +{ + "owner": { + "username": "MehdiGR", + "email": "Mehdi_osMd@proton.me" + }, + "record": { + "URL": "https://mehdigr.netlify.app/" + } +} diff --git a/domains/mehedi.json b/domains/mehedi.json new file mode 100644 index 000000000..af13fd29d --- /dev/null +++ b/domains/mehedi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asma019", + "email": "asmaparvin019@gmail.com" + }, + "record": { + "CNAME": "asma019.github.io" + } +} diff --git a/domains/mehmetabak.json b/domains/mehmetabak.json new file mode 100644 index 000000000..dd3ed4ed4 --- /dev/null +++ b/domains/mehmetabak.json @@ -0,0 +1,11 @@ +{ + "description": "This is for my personal website made.", + "repo": "https://github.com/memoli0/Dev", + "owner": { + "username": "memoli0", + "email": "indiahelloim01@gmail.com" + }, + "record": { + "URL": "https://mehmetabak.vercel.app" + } +} diff --git a/domains/mekota.json b/domains/mekota.json new file mode 100644 index 000000000..056da1b64 --- /dev/null +++ b/domains/mekota.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mikotohime", + "email": "exosk1ll.twl@gmail.com" + }, + "record": { + "A": ["194.28.226.129"] + } +} diff --git a/domains/meku.json b/domains/meku.json new file mode 100644 index 000000000..34b816052 --- /dev/null +++ b/domains/meku.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com", + "discord": "1130452399094505534" + }, + + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/mekuu.json b/domains/mekuu.json new file mode 100644 index 000000000..5071f1cfc --- /dev/null +++ b/domains/mekuu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/mekuuu.json b/domains/mekuuu.json new file mode 100644 index 000000000..5071f1cfc --- /dev/null +++ b/domains/mekuuu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/mekuvsh.json b/domains/mekuvsh.json new file mode 100644 index 000000000..5071f1cfc --- /dev/null +++ b/domains/mekuvsh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/mekuzv.json b/domains/mekuzv.json new file mode 100644 index 000000000..5071f1cfc --- /dev/null +++ b/domains/mekuzv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/melainegerard.json b/domains/melainegerard.json index 2c8ed8c7e..211289550 100644 --- a/domains/melainegerard.json +++ b/domains/melainegerard.json @@ -1,14 +1,12 @@ - - { - "description": "Redirect to my personal website", - "repo": "https://github.com/MelaineGerard", - "owner": { - "username": "MelaineGerard", - "email": "pro@melaine-gerard.fr", - "discord": "SkitDev#2556" - }, - "record": { - "URL": "https://melaine-gerard.fr" - } - } - +{ + "description": "Redirect to my personal website", + "repo": "https://github.com/MelaineGerard", + "owner": { + "username": "MelaineGerard", + "email": "pro@melaine-gerard.fr", + "discord": "SkitDev#2556" + }, + "record": { + "URL": "https://melaine-gerard.fr" + } +} diff --git a/domains/melody.json b/domains/melody.json new file mode 100644 index 000000000..dc1d070c2 --- /dev/null +++ b/domains/melody.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "phantonducthang", + "email": "phantonducthang@hotmail.com", + "discord": "1190624410630099046" + }, + + "record": { + "CNAME": "melody.64342fb9f8-hosting.gitbook.io" + } +} diff --git a/domains/melvin.json b/domains/melvin.json new file mode 100644 index 000000000..b982de417 --- /dev/null +++ b/domains/melvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "melvinjjoseph", + "email": "melvinjjoseph2002@gmail.com" + }, + "record": { + "CNAME": "melvinjjoseph.github.io" + } +} diff --git a/domains/menard.json b/domains/menard.json new file mode 100644 index 000000000..35c72932a --- /dev/null +++ b/domains/menard.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DevNanad", + "email": "menardpajares02@gmail.com" + }, + "record": { + "CNAME": "portfolio-fe29.onrender.com" + } +} diff --git a/domains/mendy.json b/domains/mendy.json deleted file mode 100644 index 9790cba87..000000000 --- a/domains/mendy.json +++ /dev/null @@ -1,11 +0,0 @@ - -{ - "owner": { - "username": "emkay5771", - "email": "emkay5771@outlook.com" - }, - "record": { - "URL": "https://multidest.onrender.com" - } -} - diff --git a/domains/menkr.json b/domains/menkr.json new file mode 100644 index 000000000..fbe679633 --- /dev/null +++ b/domains/menkr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "me-nkr", + "email": "thenaveenkr7@gmail.com" + }, + "record": { + "URL": "https://dev.menkr.in" + } +} diff --git a/domains/merely.json b/domains/merely.json new file mode 100644 index 000000000..66bd2a57d --- /dev/null +++ b/domains/merely.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MerelyMiserable", + "email": "MerelyMiserable@gmail.com" + }, + "record": { + "CNAME": "merelymiserable.github.io" + } +} diff --git a/domains/mert.json b/domains/mert.json index cb3a63d6e..b636c7bff 100644 --- a/domains/mert.json +++ b/domains/mert.json @@ -1,9 +1,7 @@ { - "description": "Mert's personal developer website", - "repo": "https://github.com/mertcelik2196", "owner": { - "username": "mertcelik2196", - "email": "mertcelik2196@gmail.com" + "username": "DevJustMert", + "email": "mertcelik0541@gmail.com" }, "record": { "URL": "https://mert.vercel.app" diff --git a/domains/mertal-i.json b/domains/mertal-i.json new file mode 100644 index 000000000..5958c83e2 --- /dev/null +++ b/domains/mertal-i.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "mertal-i", + "email": "", + "discord": "756092748104335370", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.SKwpppmoVeC4eo8UVv9DF7inwpr6T1c7CJ1VULOurIk7f97GfyJtC4CjQBlZgv6ozPXsIzWejztvds2d0jDIoJ2__3D5cN58iztxzso4a_AukvAyaDo3CiqOa_VVU9clnRpE78F1oixzDCdzGkYTxShqf0ufHact_JZeJtQe6Nlvo7u25MULuXDXWrRB-8sydkAF7bFlpDt9RoN5TQMQT0chhFniiRW6GvNcv7wA0ww9XGvM3TnMUJDiEW-33P9lseFEZ7dnL00ymGQiv_NZ5udJ52d5zSBFtjyUS1neAWlAmSg2IAdI1vSOrJioXQ6uKm8g6U3V2AugXgq_DQZigA.cWNDprOdJItlfuXKLATXsw._ok99P9vK5jnDZ4wT7_R0kRjWGKhlEyWC3798tYoKv6gq1lEvcxfk52TdGu4EkDBtCHZNcJfzvQa4l2-ghvLxUEKkyHNz9O0s_Mxm1you-fAOMUr-1VhB73VIKKuYmrB.ctQR3Ro5bLhtvS4D4t4F6Q" + }, + + "record": { + "A": ["185.27.134.223"] + } + } + \ No newline at end of file diff --git a/domains/mesflit.json b/domains/mesflit.json new file mode 100644 index 000000000..5e7448b43 --- /dev/null +++ b/domains/mesflit.json @@ -0,0 +1 @@ +{ "owner": { "username": "mesflit", "email": "benomerfaruk11@gmail.com" }, "record": { "URL": "https://mesflit.github.io/" } } diff --git a/domains/messiersixtyfour.json b/domains/messiersixtyfour.json new file mode 100644 index 000000000..e9e8f28df --- /dev/null +++ b/domains/messiersixtyfour.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MessierSixtyFour", + "email": "messier1244@gmail.com" + }, + "record": { + "CNAME": "messiersixtyfour.github.io" + } +} diff --git a/domains/meteor.sono.json b/domains/meteor.sono.json new file mode 100644 index 000000000..ae2500ddf --- /dev/null +++ b/domains/meteor.sono.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "getSono", + "email": "", + "discord": "1222250424309121145", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AOcSmXH1xmgRQpt6st_1uHBuvjvjFiB8evwad25Ly9EDe8_isycXxLJlEbs8EodOndHHQDqNGW7QJ036O-rdpZcI1LHJScmTwWSawgNyXtFS5zoE52yScjNB0xmmU6BFFr7_3M7NOYoLEAKzgjWkX96OWSoFvKqTCoe5_pBn4EyPd1vhZ0_FcpvmY_sGsWpHR1IdfVDnmWvyxMo0UyjoY-8zaFVEsgRxGWY2lTqmQYyFcrV6fuqCSLsZ9IK_GNAcE1uascEoTrqrlVt6smO_wApzuVEt-TOffvKpqFq_uwxgYgYVcKs90zkEGmkqN0tQDo3wTDCJAx_fRSIx98sLhQ.U6p_R4dGEyf0oxaEPy7rAA.K5BiGr3XphTRo8BoYVmJUo-koNgd8thz0rMMuSTbe7tE3Rn4Wy7vVtMJRL8DJ3dOKzvtaspAa9_qSrqc0mx3Uy6iPMh0JCBoSZPSTCHn1SA.kTMtTIzH5hyAxJxBS6qojA" + }, + + "record": { + "CNAME": "getsono.github.io" + } + } + \ No newline at end of file diff --git a/domains/meters.dalpex.json b/domains/meters.dalpex.json new file mode 100644 index 000000000..f0a2bd291 --- /dev/null +++ b/domains/meters.dalpex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dalpex", + "email": "dantupro@gmail.com" + }, + "record": { + "CNAME": "dalpex.github.io" + } +} diff --git a/domains/mewwme.json b/domains/mewwme.json new file mode 100644 index 000000000..07f130c06 --- /dev/null +++ b/domains/mewwme.json @@ -0,0 +1,11 @@ +{ + "description": "mewwme.is-a.dev", + "repo": "https://github.com/mewwme/mewwme.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com" + }, + "record": { + "CNAME": "mewwme.github.io" + } +} diff --git a/domains/meywy.json b/domains/meywy.json new file mode 100644 index 000000000..87a6c494e --- /dev/null +++ b/domains/meywy.json @@ -0,0 +1,19 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/Meywy/meywy.github.io", + "owner": { + "username": "Meywy", + "email": "meywyy@gmail.com", + "discord": "923162990419791913" + }, + "record": { + "MX": [ + "mx1.improvmx.com.", + "mx2.improvmx.com." + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all", + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/mh4d.json b/domains/mh4d.json deleted file mode 100644 index cf680af39..000000000 --- a/domains/mh4d.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "mh4d", - "email": "muhamednaous@gmail.com" - }, - "description": "I'll probably put some project pages on mh4d.is-a.dev.", - "record": { - "CNAME": "940f2633-fe4f-4fd8-89e5-4fbfaa73e8a7.id.repl.co" - } -} diff --git a/domains/mhmd.json b/domains/mhmd.json new file mode 100644 index 000000000..51ef889c7 --- /dev/null +++ b/domains/mhmd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "URL": "https://mohammedkhc.is-a.dev" + } +} diff --git a/domains/micah.json b/domains/micah.json index 9efad83fc..ebe809748 100644 --- a/domains/micah.json +++ b/domains/micah.json @@ -6,6 +6,6 @@ "email": "hi@micahlindley.com" }, "record": { - "URL": "https://micahlindley.com" + "URL": "https://micahlindley.com" } } diff --git a/domains/michaelbelete.json b/domains/michaelbelete.json deleted file mode 100644 index bded36e23..000000000 --- a/domains/michaelbelete.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "michael belete portfolio website", - "repo": "https://github.com/michaelbelete", - "owner": { - "username": "michaelbelete", - "email": "it.michael.belete@gmail.com" - }, - "record": { - "URL": "https://michaelb.iceiy.com" - } -} diff --git a/domains/michi.json b/domains/michi.json new file mode 100644 index 000000000..1a5ddda60 --- /dev/null +++ b/domains/michi.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website.", + "repo": "https://github.com/Michi4/Michi4", + "owner": { + "username": "Michi4", + "email": "michael.ruep@gmail.com" + }, + "record": { + "CNAME": "michi4.vercel.app" + } +} diff --git a/domains/michioxd.json b/domains/michioxd.json index b32747af7..f63024993 100644 --- a/domains/michioxd.json +++ b/domains/michioxd.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "michioxd", - "email": "michio.haiyaku@gmail.com" - }, - "record": { - "CNAME": "michioxd.github.io" - } - } - +{ + "owner": { + "username": "michioxd", + "email": "michio.haiyaku@gmail.com" + }, + "record": { + "CNAME": "michioxd.github.io" + } +} diff --git a/domains/micky.json b/domains/micky.json index 0d2d9fd41..897c8a06e 100644 --- a/domains/micky.json +++ b/domains/micky.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Manish5121", - "email": "manishgambhirrao21@gmail.com" - }, - "record": { - "CNAME": "manish5121.github.io" - } + "owner": { + "username": "Manish5121", + "email": "manishgambhirrao21@gmail.com" + }, + "record": { + "CNAME": "manish5121.github.io" + } } diff --git a/domains/micozv.json b/domains/micozv.json new file mode 100644 index 000000000..e800267cc --- /dev/null +++ b/domains/micozv.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mekuvsh", + "email": "macabalimicooz@gmail.com", + "discord": "711934005343158303" + }, + + "record": { + "CNAME": "mekuvsh.pages.dev" + } +} diff --git a/domains/midair.json b/domains/midair.json new file mode 100644 index 000000000..5b813cc18 --- /dev/null +++ b/domains/midair.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Portofolio", + "repo": "https://github.com/zMidair/zMidair.github.io", + "owner": { + "username": "zMidair", + "email": "midair4546@gmail.com", + "twitter": "M16a1r" + }, + "record": { + "CNAME": "zMidair.github.io" + } +} diff --git a/domains/midlaj.json b/domains/midlaj.json index 04e863ac5..6cbc80df9 100644 --- a/domains/midlaj.json +++ b/domains/midlaj.json @@ -1,11 +1,11 @@ - - { - "owner": { - "username": "whoismidlaj", - "email": "midlaj@tuta.io" - }, - "record": { - "CNAME": "whoismidlaj.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "whoismidlaj", + "email": "midlaj@tuta.io" + }, + "record": { + "A": [ + "107.173.201.166" + ] + } +} diff --git a/domains/midnight0s.json b/domains/midnight0s.json new file mode 100644 index 000000000..4d901d538 --- /dev/null +++ b/domains/midnight0s.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "midnight0s", + "email": "", + "discord": "817858871388799026" + }, + "record": { + "CNAME": "midnight0s-is-a-dev.vercel.app" + } +} diff --git a/domains/mig.json b/domains/mig.json new file mode 100644 index 000000000..f39c776e9 --- /dev/null +++ b/domains/mig.json @@ -0,0 +1,15 @@ +{ + "description": "This subdomain points to my portfolio website.", + "owner": { + "username": "miguelaram2016", + "email": "miguelaram2016@utexas.edu", + "twitter": "miguelcodes7", + "discord": "747499334383304755", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sh5h8IcwANNjL4Cu_olrTjTuGNiBnihpvp8tYD3PQoJ0Qo8zJwh2wh93m0mxtB0JUmQyLHgMhqwNkRTfDkbQtIiMsJTMBpfwuekG-rohCXC3Bz1X674p58mTiI9BL1mYZjy4n3iNUltRrpEDIY_tQ91-deuB0vZmhFP7Ih-PU18_a7SFhrMTCGFnEpy5ioRBb_7-XaevqZU0ObJ9TXnuX5ZrcUs8dOKdPXQkUvh1T3X4ENkNkqxEX9SrC21ZUPsu0eBsinx8OWhVACBF-v6WsNErv4dYlxvlUF0s6i6H4ies_u47cXuD_ytOZVF19KRHv0mtC4Zq9FxKqvxQNpS2yA.ATDrqWU61Q7pAeI0iOYG3Q.WUBkDKZeYnntdHyh4t_qL56ZUvo4xiK6dF_DvM8i0aVxoooMhunELz8oFORqt_1lt3IMLw_aAWwzmBl4LtPa-frLObpHRe3QHeAhAb919XU.uvFZv2MiYxP-UoMM0DhLSA" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/migoreng.json b/domains/migoreng.json deleted file mode 100644 index 5adebf5de..000000000 --- a/domains/migoreng.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "kelabang", - "email": "", - "discord": "migoreng#1665" - }, - "record": { - "A": ["162.159.153.4"] - } -} diff --git a/domains/mihai.json b/domains/mihai.json index 0aac6f95d..cfa0ed3bb 100644 --- a/domains/mihai.json +++ b/domains/mihai.json @@ -8,4 +8,4 @@ "record": { "CNAME": "8xu.github.io" } -} \ No newline at end of file +} diff --git a/domains/mihir-patel-agc.json b/domains/mihir-patel-agc.json index 3018ac195..e08c7446a 100644 --- a/domains/mihir-patel-agc.json +++ b/domains/mihir-patel-agc.json @@ -9,4 +9,3 @@ "CNAME": "mihir-patel-agc.github.io" } } - diff --git a/domains/mihrpsah.json b/domains/mihrpsah.json new file mode 100644 index 000000000..dc0a565e0 --- /dev/null +++ b/domains/mihrpsah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mihrpsah", + "email": "smihirp1@gmail.com" + }, + "record": { + "CNAME": "mihrpsah.github.io" + } +} diff --git a/domains/mika.json b/domains/mika.json new file mode 100644 index 000000000..b6caa09c5 --- /dev/null +++ b/domains/mika.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio Website", + "owner": { + "username": "Developer-Mike", + "email": "delta.cephei@outlook.com" + }, + "record": { + "URL": "https://developer-mike.vercel.app/" + } +} diff --git a/domains/mikapikazo.json b/domains/mikapikazo.json new file mode 100644 index 000000000..1e5e92d4e --- /dev/null +++ b/domains/mikapikazo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rinxyzz", + "email": "putriimuttzz.cantikk@gmail.com" + }, + "record": { + "CNAME": "rinxyzz-github-io.pages.dev" + } +} diff --git a/domains/mikronet.json b/domains/mikronet.json index 072fd4fad..7898f18a1 100644 --- a/domains/mikronet.json +++ b/domains/mikronet.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "mikrodinet", - "email": "mikrodinet@gmail.com" - }, - "record": { - "CNAME": "mikrodinet.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "mikrodinet", + "email": "mikrodinet@gmail.com" + }, + "record": { + "CNAME": "mikrodinet.github.io" + } +} diff --git a/domains/miladamiri.json b/domains/miladamiri.json new file mode 100644 index 000000000..c77d3ee11 --- /dev/null +++ b/domains/miladamiri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DigitalGenius-ui", + "email": "miladmarketing282@gmail.com" + }, + "record": { + "URL": "https://miladamiri.netlify.app/" + } +} diff --git a/domains/milan.json b/domains/milan.json index 64e66ba98..d3ba49176 100644 --- a/domains/milan.json +++ b/domains/milan.json @@ -1,10 +1,10 @@ { "description": "Milan's personal website and blog", - "repo": "https://github.com/MilanAryal/milanaryal.github.io", + "repo": "https://github.com/milanaryal/milanaryal.github.io", "owner": { - "username": "MilanAryal", + "username": "milanaryal", "email": "", - "twitter": "MilanAryal" + "mastodon": "@milanaryal@mastodon.social" }, "record": { "URL": "https://milanaryal.com.np" diff --git a/domains/milan090.json b/domains/milan090.json index a28586688..7a6d8947d 100644 --- a/domains/milan090.json +++ b/domains/milan090.json @@ -5,7 +5,7 @@ "username": "milan090", "email": "milanmuhammed1@gmail.com" }, - "record": { + "record": { "URL": "https://milan090.me" } } diff --git a/domains/milcon.json b/domains/milcon.json deleted file mode 100644 index 7b490b504..000000000 --- a/domains/milcon.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "emmu123", - "email": "aneenababu71901@gmail.com" - }, - "record": { - "CNAME": "20e57f92-f4dd-4c0e-8aa7-0a7189f44f44.id.repl.co" - } -} diff --git a/domains/milind.json b/domains/milind.json new file mode 100644 index 000000000..6bc98cbea --- /dev/null +++ b/domains/milind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "milindmadhukar", + "email": "m.milind15@gmail.com" + }, + "record": { + "URL": "https://github.com/milindmadhukar" + } +} diff --git a/domains/milocat.json b/domains/milocat.json deleted file mode 100644 index daf08edd0..000000000 --- a/domains/milocat.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "BigKitten", - "email": "", - "discord": "MiloCat#8198" - }, - "record": { - "CNAME": "MiloCat.repl.co" - } -} diff --git a/domains/milu.json b/domains/milu.json new file mode 100644 index 000000000..20fdbd50f --- /dev/null +++ b/domains/milu.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "milanmarton", + "email": "", + "discord": "312899549670801410" + }, + + "record": { + "CNAME": "milu-eor.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/mimic.json b/domains/mimic.json deleted file mode 100644 index 59a6e7c93..000000000 --- a/domains/mimic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Mimic Services", - "repo": "https://github.com/mimicdotga", - "owner": { - "username": "mimicdotga", - "email": "hello@mimic.ga" - }, - "record": { - "CNAME": "mimicdotga.duckdns.org" - } -} diff --git a/domains/mineek.json b/domains/mineek.json index 3cb4c189b..c3bbe2a2e 100644 --- a/domains/mineek.json +++ b/domains/mineek.json @@ -1,12 +1,12 @@ -{ - "description": "My personal website", - "repo": "https://github.com/mineek/mineek.github.io", - "owner": { - "username": "mineek", - "email": "", - "discord": "Mineek#6323" - }, - "record": { - "CNAME": "mineek.github.io" - } -} \ No newline at end of file +{ + "description": "My personal website", + "repo": "https://github.com/mineek/mineek.github.io", + "owner": { + "username": "mineek", + "email": "", + "discord": "Mineek#6323" + }, + "record": { + "CNAME": "mineek.github.io" + } +} diff --git a/domains/minerwolfybtvn.json b/domains/minerwolfybtvn.json new file mode 100644 index 000000000..2855fc52d --- /dev/null +++ b/domains/minerwolfybtvn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MinerwolfybtVn", + "email": "ngdung853@gmail.com", + "discord": "947884053544189992" + }, + + "record": { + "CNAME": "miner-9eu.pages.dev" + } +} diff --git a/domains/minh2000.json b/domains/minh2000.json new file mode 100644 index 000000000..ffc14b55d --- /dev/null +++ b/domains/minh2000.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "minnb-bit", + "email": "mn9173024@gmail.com", + "discord": "634263941153030175" + }, + + "record": { + "CNAME": "minnb-bit.github.io" + } +} diff --git a/domains/minhh2792.json b/domains/minhh2792.json index b53924d88..137d11b4e 100644 --- a/domains/minhh2792.json +++ b/domains/minhh2792.json @@ -1,12 +1,12 @@ { - "description": "minhh2792's personal website", - "repo": "https://github.com/minhh2792/minhh2792.github.io", - "owner": { - "username": "minhh2792", - "email": "minhh2792.work@gmail.com", - "twitter": "minhh2792" - }, - "record": { - "CNAME": "minhh2792.github.io" - } - } \ No newline at end of file + "description": "minhh2792's personal website", + "repo": "https://github.com/minhh2792/minhh2792.github.io", + "owner": { + "username": "minhh2792", + "email": "minhh2792.work@gmail.com", + "twitter": "minhh2792" + }, + "record": { + "CNAME": "minhh2792.github.io" + } +} diff --git a/domains/minhmmb.json b/domains/minhmmb.json new file mode 100644 index 000000000..3d516cb07 --- /dev/null +++ b/domains/minhmmb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "minnb-bit", + "email": "mn9173024@gmail.com" + }, + "record": { + "CNAME": "minnb-bit.github.io" + } +} diff --git a/domains/minhphan.json b/domains/minhphan.json new file mode 100644 index 000000000..45dce6854 --- /dev/null +++ b/domains/minhphan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MinhPhan1203", + "email": "phan48788@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/minkxx.json b/domains/minkxx.json new file mode 100644 index 000000000..8f7d90984 --- /dev/null +++ b/domains/minkxx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "minkxx", + "email": "aryuokk@gmail.com" + }, + "record": { + "URL": "https://minkxx.onrender.com" + } +} diff --git a/domains/minnb-bit.json b/domains/minnb-bit.json new file mode 100644 index 000000000..ffc14b55d --- /dev/null +++ b/domains/minnb-bit.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "minnb-bit", + "email": "mn9173024@gmail.com", + "discord": "634263941153030175" + }, + + "record": { + "CNAME": "minnb-bit.github.io" + } +} diff --git a/domains/minoa.json b/domains/minoa.json new file mode 100644 index 000000000..54a3db14b --- /dev/null +++ b/domains/minoa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "M1noa", + "email": "baccusminoa@gmail.com" + }, + "record": { + "URL": "https://about.minoa.cat" + } +} diff --git a/domains/minto.json b/domains/minto.json new file mode 100644 index 000000000..e0f8309d1 --- /dev/null +++ b/domains/minto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "m1ntooo", + "email": "yht413@i.softbank.jp" + }, + "record": { + "URL": "https://m1ntooo.com" + } +} diff --git a/domains/miquel.json b/domains/miquel.json new file mode 100644 index 000000000..1fe6d72dc --- /dev/null +++ b/domains/miquel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MCrumo", + "email": "miquel1rr@gmail.com" + }, + "record": { + "CNAME": "mcrumo.github.io" + } +} diff --git a/domains/miro.json b/domains/miro.json deleted file mode 100644 index 231b3639c..000000000 --- a/domains/miro.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My other site :)", - "repo": "https://replit.com/@RoBlockHead/mirois-adev", - "owner": { - "username": "RoBlockHead", - "email": "tessa7551@gmail.com" - }, - "record": { - "CNAME": "c2b57eca-71a9-4f20-8877-c210f7e71f12.repl.co" - } -} diff --git a/domains/mirozr.json b/domains/mirozr.json new file mode 100644 index 000000000..a79236b32 --- /dev/null +++ b/domains/mirozr.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Miroslavchen/hatynka_0A.github.io", + "owner": { + "username": "miroslavchen", + "email": "miroslavnezgoduk8@gmail.com" + }, + "record": { + "CNAME": "miroslavchen.github.io" + } +} diff --git a/domains/mirror.json b/domains/mirror.json deleted file mode 100644 index bf0222655..000000000 --- a/domains/mirror.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A simple personal website", - "repo": "https://github.com/justamirror", - "owner": { - "username": "justamirror", - "email": "Eren0078@outlook.com" - }, - "record": { - "CNAME": "1eeecca8-a190-4548-9fc9-f936dcdda410.id.repl.co" - } -} diff --git a/domains/mirzosharif.json b/domains/mirzosharif.json new file mode 100644 index 000000000..26d4d6269 --- /dev/null +++ b/domains/mirzosharif.json @@ -0,0 +1,11 @@ +{ + "description": "Mirzosharif's website", + "repo": "https://github.com/habiboffdev/habiboffdev.github.io", + "owner": { + "username": "habiboffdev", + "email": "mirzoupwork@gmail.com" + }, + "record": { + "CNAME": "mirzosharif.me" + } +} diff --git a/domains/misha.json b/domains/misha.json new file mode 100644 index 000000000..959fb4896 --- /dev/null +++ b/domains/misha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "misha-jw", + "email": "mishawu@outlook.com" + }, + "record": { + "CNAME": "misha-jw.github.io" + } +} diff --git a/domains/mishal.json b/domains/mishal.json new file mode 100644 index 000000000..b9119f973 --- /dev/null +++ b/domains/mishal.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/mishalhossin/mishalhossin.github.io", + "owner": { + "username": "mishalhossin", + "email": "mishalhossin20@gmail.com", + "discord": "Mishal#1916" + }, + "record": { + "CNAME": "mishalhossin.github.io" + } +} diff --git a/domains/misi.json b/domains/misi.json new file mode 100644 index 000000000..26e20d950 --- /dev/null +++ b/domains/misi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "suhajda3", + "email": "", + "twitter": "misi" + }, + "record": { + "URL": "https://6esm7nio666sm3gejt6cl4gc3e0dzavv.lambda-url.eu-central-1.on.aws" + } +} diff --git a/domains/miskode.json b/domains/miskode.json new file mode 100644 index 000000000..02fb0cf2e --- /dev/null +++ b/domains/miskode.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "miskode", + "email": "miskonx97@gmail.com" + }, + + "record": { + "CNAME": "miskode.github.io" + } +} diff --git a/domains/mitch.json b/domains/mitch.json index 1a9f92ab6..90c3466ce 100644 --- a/domains/mitch.json +++ b/domains/mitch.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "liao02x", - "email": "liao02x@gmail.com" - }, - "record": { - "CNAME": "114032.xyz" - } - } - \ No newline at end of file +{ + "owner": { + "username": "liao02x", + "email": "liao02x@gmail.com" + }, + "record": { + "CNAME": "114032.xyz" + } +} diff --git a/domains/miten.json b/domains/miten.json new file mode 100644 index 000000000..1a59666d6 --- /dev/null +++ b/domains/miten.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "m1ten", + "email": "h4ckr+github@icloud.com" + }, + "record": { + "CNAME": "m1ten.github.io" + } +} diff --git a/domains/miti.json b/domains/miti.json new file mode 100644 index 000000000..f09c62708 --- /dev/null +++ b/domains/miti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tiennm99", + "email": "minhtienit99@gmail.com" + }, + "record": { + "CNAME": "miti.eu.org" + } +} diff --git a/domains/miti99.json b/domains/miti99.json index f9ec7caf9..f09c62708 100644 --- a/domains/miti99.json +++ b/domains/miti99.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "tiennm99", - "email": "tiennm99@outlook.com" - }, - "record": { - "CNAME": "miti99.eu.org" - } - } - \ No newline at end of file +{ + "owner": { + "username": "tiennm99", + "email": "minhtienit99@gmail.com" + }, + "record": { + "CNAME": "miti.eu.org" + } +} diff --git a/domains/mitja.json b/domains/mitja.json new file mode 100644 index 000000000..968cf6f9e --- /dev/null +++ b/domains/mitja.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "MitjaCH", + "email": "", + "discord": "627840040671772672", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mZFrhA1Z_iPWWQ-43dpDS8euyiKx0Btqct3ByfNNFIBfir0lksCAmhzgBHa5BbjuW6GtD5lfjkC-FxBvK4o37MYi4Hq4Q5mglIgkk7TjaBkcBaEkiBjfWqqY3Yw4cjJ7VKqsNNRg6rgUhuL0GIeVQNsLI1nPQTqnfUm4Z03sZ9xKe3BKdWZbEDuCQFnpnSjRTARKViC-9G9kKc31pHe7MwrKdXNrWdmiODYElG_tj0Wa1wYeH4GKpn96OPAOSuhV1aoa8JF8NMuyQuqC6diPCvdZhOhAKyRkIwa7-tBbCi7RLew2hMh-GuTnDwrF6al1yN78gyKh1nhJB_Xea-1gsw.dhj1MctCjX-1zgPJJ4om-w.vejH_HHplqUKJfRPdiuMoqwY4agNsXSGkrVykmKcWZrcomt-5xTGD1gblKMmolCW6_2aJQ6b_rGuD-I7xWv1rzk96QFAXamvx1HpY7DUMEY.3qG1WxmK8k9ntg6fmfGxRg" + }, + + "record": { + "CNAME": "portfolio-9ro.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/miu.json b/domains/miu.json new file mode 100644 index 000000000..36eed28a4 --- /dev/null +++ b/domains/miu.json @@ -0,0 +1,12 @@ +{ + "description": "Miu.is-a.dev", + "repo": "https://github.com/Miu-Discord/Miu-Discord.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com", + "discord": "romanromannya" + }, + "record": { + "CNAME": "Miu-Discord.github.io" + } +} diff --git a/domains/mizu.json b/domains/mizu.json new file mode 100644 index 000000000..2d59f920f --- /dev/null +++ b/domains/mizu.json @@ -0,0 +1,13 @@ +{ + "description": "Mizu's Page", + "repo": "https://github.com/miyagawamizu/miyagawamizu.github.io", + "owner": { + "username": "miyagawamizu", + "email": "miyagawamizu@gmail.com", + "twitter": "miyagawamizu", + "discord": "miyagawamizu" + }, + "record": { + "CNAME": "mizu.pages.dev" + } +} diff --git a/domains/mjclavillas.json b/domains/mjclavillas.json new file mode 100644 index 000000000..2b335e775 --- /dev/null +++ b/domains/mjclavillas.json @@ -0,0 +1,10 @@ +{ + "description": "", + "owner": { + "username": "mjclavillas", + "email": "mjdc1337@gmail.com" + }, + "record": { + "CNAME": "mjclavillas.github.io" + } +} diff --git a/domains/mjdc.json b/domains/mjdc.json new file mode 100644 index 000000000..2b335e775 --- /dev/null +++ b/domains/mjdc.json @@ -0,0 +1,10 @@ +{ + "description": "", + "owner": { + "username": "mjclavillas", + "email": "mjdc1337@gmail.com" + }, + "record": { + "CNAME": "mjclavillas.github.io" + } +} diff --git a/domains/mkeko.json b/domains/mkeko.json new file mode 100644 index 000000000..c80318e33 --- /dev/null +++ b/domains/mkeko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Mkeko", + "email": "", + "discord": "1212043905059790881" + }, + "record": { + "A": ["76.76.21.21"] + } + } \ No newline at end of file diff --git a/domains/mkk.json b/domains/mkk.json index c85123d13..39ff4e442 100644 --- a/domains/mkk.json +++ b/domains/mkk.json @@ -1,11 +1,11 @@ -{ - "description": "portfolio | Urinx", - "repo": "https://github.com/urinx/urinx.github.io", - "owner": { - "username": "maokangkun", - "email": "uri.lqy@gmail.com" - }, - "record": { - "CNAME": "urinx.github.io" - } -} +{ + "description": "portfolio | Urinx", + "repo": "https://github.com/urinx/urinx.github.io", + "owner": { + "username": "maokangkun", + "email": "uri.lqy@gmail.com" + }, + "record": { + "CNAME": "urinx.github.io" + } +} diff --git a/domains/moca.json b/domains/moca.json new file mode 100644 index 000000000..c322eae2e --- /dev/null +++ b/domains/moca.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MocaSrour", + "email": "mukarramsrour@gmail.com" + }, + "record": { + "CNAME": "mocasrour.github.io" + } +} diff --git a/domains/modasser.json b/domains/modasser.json new file mode 100644 index 000000000..faf48f321 --- /dev/null +++ b/domains/modasser.json @@ -0,0 +1,12 @@ +{ + "description": "This domain will be used for my Portfolio Page", + "repo": "https://github.com/TheProjectsX/theprojectsx.github.io", + "owner": { + "username": "TheProjectsX", + "email": "modassermubin@gmail.com", + "twitter": "n/a" + }, + "record": { + "CNAME": "theprojectsx.github.io" + } +} diff --git a/domains/moddedstuffguy.json b/domains/moddedstuffguy.json index f3438b800..e125a7e6f 100644 --- a/domains/moddedstuffguy.json +++ b/domains/moddedstuffguy.json @@ -1,11 +1,11 @@ { - "description": "My Personal Developer WebPage", - "repo": "https://github.com/moddedstuffguy/moddedstuffguy.github.io", - "owner": { - "username": "moddedstuffguy", - "email": "pruebecitasg2@gmail.com" - }, - "record": { - "CNAME": "moddedstuffguy.github.io" - } + "description": "My Personal Developer WebPage", + "repo": "https://github.com/moddedstuffguy/moddedstuffguy.github.io", + "owner": { + "username": "moddedstuffguy", + "email": "pruebecitasg2@gmail.com" + }, + "record": { + "CNAME": "moddedstuffguy.github.io" + } } diff --git a/domains/modi.json b/domains/modi.json new file mode 100644 index 000000000..10d042abf --- /dev/null +++ b/domains/modi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oyepriyansh", + "email": "oyepriyansh@hotmail.com" + }, + "record": { + "CNAME": "oyepriyansh.github.io" + } +} diff --git a/domains/modules.json b/domains/modules.json new file mode 100644 index 000000000..17f83d092 --- /dev/null +++ b/domains/modules.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Manafix", + "email": "manafix.pub@gmail.com" + }, + "record": { + "CNAME": "manafix.dev" + } +} diff --git a/domains/moe.json b/domains/moe.json deleted file mode 100644 index fa3ad7575..000000000 --- a/domains/moe.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Moe's Portfolio site", - "repo": "https://github.com/abused/abused.github.io", - "owner": { - "username": "abused", - "email": "techperson71@gmail.com" - }, - "record": { - "URL": "https://moealothman.com" - } - } \ No newline at end of file diff --git a/domains/moh.json b/domains/moh.json index 63a0df104..ac964f40f 100644 --- a/domains/moh.json +++ b/domains/moh.json @@ -1,11 +1,11 @@ { - "description": "My Profile Website", - "repo": "https://github.com/minoyahia/personal-website", - "owner": { - "username": "minoyahia", - "email": "notminoyahiahf@gmail.com" - }, - "record": { - "CNAME": "personal-website-cyj.pages.dev" - } -} + "description": "My Profile Website", + "repo": "https://github.com/minoyahia/personal-website", + "owner": { + "username": "minoyahia", + "email": "notminoyahiahf@gmail.com" + }, + "record": { + "CNAME": "personal-website-cyj.pages.dev" + } +} diff --git a/domains/mohamad.json b/domains/mohamad.json new file mode 100644 index 000000000..cf07338b3 --- /dev/null +++ b/domains/mohamad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mjnaous", + "email": "mj@naous.eu.org" + }, + "record": { + "CNAME": "mjnaous.github.io" + } +} diff --git a/domains/mohamed.json b/domains/mohamed.json new file mode 100644 index 000000000..74883a102 --- /dev/null +++ b/domains/mohamed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "negativems", + "email": "mohamedbenhamzaa@gmail.com" + }, + "record": { + "URL": "https://mmbh.dev" + } +} diff --git a/domains/mohammad87115.json b/domains/mohammad87115.json new file mode 100644 index 000000000..86bbdb0ab --- /dev/null +++ b/domains/mohammad87115.json @@ -0,0 +1,12 @@ +{ + "description": "I'm using this subdomain to make my portfolio website", + "repo": "https://github.com/mohammad87115/mohammad87115.github.io", + "owner": { + "username": "mohammad87115", + "email": "mohammad87115@gmail.com", + "twitter": "mohammad87115" + }, + "record": { + "CNAME": "mohammad87115.github.io" + } +} diff --git a/domains/mohammed.json b/domains/mohammed.json new file mode 100644 index 000000000..51ef889c7 --- /dev/null +++ b/domains/mohammed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "URL": "https://mohammedkhc.is-a.dev" + } +} diff --git a/domains/mohammedasif-shaikh.json b/domains/mohammedasif-shaikh.json new file mode 100644 index 000000000..90a5fee1c --- /dev/null +++ b/domains/mohammedasif-shaikh.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/mohammedasif-shaikh/mohammedasif-shaikh.github.io", + "owner": { + "username": "mohammedasif-shaikh", + "email": "" + }, + "record": { + "CNAME": "mohammedasif-shaikh.github.io" + } +} diff --git a/domains/mohammedkhc.json b/domains/mohammedkhc.json new file mode 100644 index 000000000..566482ea5 --- /dev/null +++ b/domains/mohammedkhc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "CNAME": "mohammedkhc.pages.dev" + } +} diff --git a/domains/mohan.json b/domains/mohan.json new file mode 100644 index 000000000..457c8d9d6 --- /dev/null +++ b/domains/mohan.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "mohankumarpaluru", + "email": "", + "discord": "272751100237578241", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.O5C1Uzwh01XoHKti4fJ_Eh0ZCpqF32HIpdXGCHhaWGSS_Z3z-QT6BlMvzizTINB-aLjfTGrH9ey782Ew9rgjfh2kc59apj578D92W9huwdc-CwRxepsIfp1KmPTnzLWCH3o6VACrUvY4UB6-vRNkEu6a8dCEsCixypW9NPAeVo8nkweD0ITUXiO3rYFHVnKKvMyZRuqZ0BBMl37IXA55cSqhF2CFZo7mi-c7o0-Ft05wDTo94LQ4UbBVR6Bckb8hhHoWcVw5fvkbACNSk7gM1lG76KYvgzJy--UzylVzCJ4A1KqUNTzfNTEQx7CqPme32t8LtpkQM7EoO7lpTgIChg.9ycjUnzEXFf4bpRGEBz01Q.QdrS2Qupx8u_YCeoyP9W5gJlFyrz2tfRpw1j_fu0LlOO-yHLENRlsmODrh9wpd_UJz2KbwCvszos83SFhkxvWmO8nEkUFJ-9qpgk-0a2p6TKGIrptqkPzMfCe5wguQd-.taQ4FYyW5M3SwaH68et8bw" + }, + + "record": { + "A": ["68.233.113.238"] + } + } + \ No newline at end of file diff --git a/domains/mohannadk28.json b/domains/mohannadk28.json index 6332056ef..a521928e1 100644 --- a/domains/mohannadk28.json +++ b/domains/mohannadk28.json @@ -8,4 +8,4 @@ "record": { "CNAME": "mohannadk28.github.io" } -} \ No newline at end of file +} diff --git a/domains/mohdjariullah.json b/domains/mohdjariullah.json new file mode 100644 index 000000000..b9abd94bb --- /dev/null +++ b/domains/mohdjariullah.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/Mohdjariullah/portfolio1/", + "owner": { + "username": "mohdjariullah", + "email": "mohdjariullah@gmail.com", + "twitter": "@mohdjariullah" + }, + "record": { + "CNAME": "mohdjariullah.github.io" + } +} diff --git a/domains/mohdsohel.json b/domains/mohdsohel.json new file mode 100644 index 000000000..8def5ddbc --- /dev/null +++ b/domains/mohdsohel.json @@ -0,0 +1,12 @@ +{ + "description": "My personal Portfolio website", + "repo": "https://github.com/realsohel/realsohel.github.io", + "owner": { + "username": "realsohel", + "email": "salmanisohail26@gmail.com", + "twitter": "real_sohel_" + }, + "record": { + "CNAME": "realsohel.github.io" + } +} diff --git a/domains/molai.json b/domains/molai.json index a7a615f45..bd1a902ee 100644 --- a/domains/molai.json +++ b/domains/molai.json @@ -1,10 +1,11 @@ { - "description": "MTGSquad's Website, A Place Where He Jots Down Dumb Stuff", + "description": "Mahir's Website", "repo": "https://github.com/mtgsquad", "owner": { "username": "mtgsquad", "email": "mahir@molai.dev", - "twitter": "DevMolai" + "twitter": "DevMolai", + "discord": "molai777" }, "record": { "URL": "https://molai.dev" diff --git a/domains/momu54.json b/domains/momu54.json new file mode 100644 index 000000000..0a5460ca8 --- /dev/null +++ b/domains/momu54.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "momu54", + "email": "MoMuAlt@outlook.jp" + }, + + "record": { + "CNAME": "momu54.github.io" + } +} diff --git a/domains/moncef.json b/domains/moncef.json new file mode 100644 index 000000000..7c062c694 --- /dev/null +++ b/domains/moncef.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "m2ncef", + "email": "moncxff@gmail.com" + }, + "record": { + "CNAME": "m2ncef.github.io" + } +} diff --git a/domains/mongodb.trung.json b/domains/mongodb.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/mongodb.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/monkey3three.json b/domains/monkey3three.json new file mode 100644 index 000000000..e8607ede3 --- /dev/null +++ b/domains/monkey3three.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "monkey3three", + "email": "", + "discord": "872983325017514004", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.CtotszpAHc7y1esxQir3rFPcA7ijMeMIpj3JWiGEO7TWWTo7i3pozjvbcQj7PfjQgTAq-kfGj-B_Q6KyZM7lep49WkEmq3AFPlVVjnODuHoJkSPt1DsdF1nl__H0FzABL8h0yOVwxAQ_IrQ46boS-Lz1UpVIwkjYQn2wrd5zXWEFSvHBJuxob1t-sWOlIgVyoBNYUMaPmQ-BVLnkSqUmruMvpLSLUBCepEBONieioYWL3n_1a6URRj1-I3sn_lTPPRoX79Vj9fMkKxCx5vB0bqWHOMZfXE_R5KIsvHCQqJL1fMbwz_TU8MJ4OUdP7o90GAFv3A5KTq2kVoHcIOhufg.86MFM2JVNy8kmZaZQlh0mQ.28QEVQ_vJ8FnCw3O9aWhDdNBOu1-BA5ohMMeOvrtbFZJAw7bOUCoUfhDpIMASopsz6uPsUR6VHsWemjKhuaUZU4Y5wKmBav0zWrMisMEFq8.cYQth00awbZ4ZnzgZz-q1Q" + }, + + "record": { + "CNAME": "portfolio-9xw.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/moo.json b/domains/moo.json new file mode 100644 index 000000000..69bfc942d --- /dev/null +++ b/domains/moo.json @@ -0,0 +1,12 @@ +{ + "description": "moo.is-a.dev", + "repo": "https://github.com/moo-7/moo-7.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com", + "discord": "romanromannya#0" + }, + "record": { + "CNAME": "moo-7.github.io" + } +} diff --git a/domains/moonboy.json b/domains/moonboy.json deleted file mode 100644 index 92463b6bb..000000000 --- a/domains/moonboy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "My cdn", - "owner": { - "username": "A-cute-blob", - "email": "sambitkayal255@gmail.com" - }, - "record": { - "CNAME": "5dd47b4e-07c1-43a2-bf6e-05953b263786.repl.co" - } -} diff --git a/domains/moothecow.json b/domains/moothecow.json new file mode 100644 index 000000000..e278c46e4 --- /dev/null +++ b/domains/moothecow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mikeymoo5", + "email": "moodids@outlook.com" + }, + "record": { + "CNAME": "mikeymoo5.github.io" + } +} diff --git a/domains/mori.lalit.json b/domains/mori.lalit.json new file mode 100644 index 000000000..66ece50c8 --- /dev/null +++ b/domains/mori.lalit.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lalitm1004", + "email": "lalitm1004@gmail.com" + }, + "record": { + "CNAME": "memento-mori-6at.pages.dev" + } +} diff --git a/domains/morzhstudio.json b/domains/morzhstudio.json new file mode 100644 index 000000000..0c4ecbc3a --- /dev/null +++ b/domains/morzhstudio.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "KapikRussia", + "email": "kapikrussia@gmail.com", + "discord": "1261855255147057220" + }, + + "record": { + "A": ["185.199.108.153"] + } + } + \ No newline at end of file diff --git a/domains/mosa.json b/domains/mosa.json new file mode 100644 index 000000000..e55f37352 --- /dev/null +++ b/domains/mosa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mosageneral", + "email": "mosageneral@gmail.com" + }, + "record": { + "A": ["130.162.164.99"] + } +} diff --git a/domains/mosaab.json b/domains/mosaab.json new file mode 100644 index 000000000..e4c424c8c --- /dev/null +++ b/domains/mosaab.json @@ -0,0 +1,21 @@ +{ + "description": "Personal website of MosaabGKA", + "repo": "https://github.com/MosaabGKA/MosaabGKA.github.io", + "owner": { + "username": "MosaabGKA", + "email": "mosaabgka@outlook.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mosaic.json b/domains/mosaic.json new file mode 100644 index 000000000..9409ef36a --- /dev/null +++ b/domains/mosaic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mg0the0goat0", + "email": "golden_mooooooon@outlook.com", + "discord": "1160256967504318576" + }, + + "record": { + "CNAME": "aboutmeeeeeeeeeee.onrender.com" + } +} diff --git a/domains/mostafaefafi.json b/domains/mostafaefafi.json new file mode 100644 index 000000000..16e2c91bb --- /dev/null +++ b/domains/mostafaefafi.json @@ -0,0 +1,11 @@ +{ + "description": "Mostafa Efafi's is-a-dev domain", + "repo": "https://github.com/mostafa-efafi/intro", + "owner": { + "username": "mostafa-efafi", + "email": "mostafa.ef@gmail.com" + }, + "record": { + "CNAME": "mostafa-efafi.github.io" + } +} diff --git a/domains/motion42.json b/domains/motion42.json deleted file mode 100644 index d3ab30ed4..000000000 --- a/domains/motion42.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Motions's personal developer website", - "repo": "https://github.com/DevJustForever", - "owner": { - "username": "DevJustForever", - "email": "mertcelik0541@gmail.com" - }, - "record": { - "URL": "https://motion42.ml" - } -} diff --git a/domains/moviebypass.json b/domains/moviebypass.json new file mode 100644 index 000000000..2f35b82ba --- /dev/null +++ b/domains/moviebypass.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alidexter001", + "email": "dexter.ali001@gmail.com" + }, + "record": { + "A": ["45.11.229.211"] + } +} diff --git a/domains/mpm.json b/domains/mpm.json deleted file mode 100644 index 92cfb78cf..000000000 --- a/domains/mpm.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "MoPaMo's personal webpage", - "repo": "https://github.com/MoPaMo/MoPaMo.github.io", - "owner": { - "username": "MoPaMo", - "email": "spam.mpm1301@web.de" - }, - "record": { - "CNAME": "home.mopamo.repl.co" - } -} diff --git a/domains/mqhirr.json b/domains/mqhirr.json new file mode 100644 index 000000000..ae6e8ae4c --- /dev/null +++ b/domains/mqhirr.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "mqhirr", + "email": "", + "discord": "mqhirr" + }, + + "repo": "https://github.com/mqhirr/webnn_live", + "record": { + "CNAME": "mqhirr.github.io" + } +} diff --git a/domains/mqrshie.json b/domains/mqrshie.json new file mode 100644 index 000000000..a1eb4dd04 --- /dev/null +++ b/domains/mqrshie.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/Mqrshie/isadev", + "owner": { + "username": "Mqrshie", + "email": "rasberryalt@hotmail.com", + "twitter": "Mqrshie" + }, + "record": { + "CNAME": "Mqrshie.github.io" + } +} diff --git a/domains/mqry.json b/domains/mqry.json index b8a17cb08..7f49e17ac 100644 --- a/domains/mqry.json +++ b/domains/mqry.json @@ -1,14 +1,12 @@ { - "description": "a showcase of what i do", - "repo": "https://github.com/mqry/mqry.github.io", - "owner": { - "username": "mqry", - "email": "mayjane27refuerzo@gmail.com", - "twitter": "maqryjqne" - }, - "record": { - "CNAME": "mqry.github.io" - } -} - - + "description": "a showcase of what i do", + "repo": "https://github.com/mqry/mqry.github.io", + "owner": { + "username": "mqry", + "email": "mayjane27refuerzo@gmail.com", + "twitter": "maqryjqne" + }, + "record": { + "CNAME": "mqry.github.io" + } +} diff --git a/domains/mr-arsenic.json b/domains/mr-arsenic.json new file mode 100644 index 000000000..36be9fa11 --- /dev/null +++ b/domains/mr-arsenic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrArsenic621", + "email": "asedighi81@gmail.com" + }, + "record": { + "CNAME": "personal-portfolio-dev.onrender.com" + } +} diff --git a/domains/mr-julus.json b/domains/mr-julus.json new file mode 100644 index 000000000..7a5159704 --- /dev/null +++ b/domains/mr-julus.json @@ -0,0 +1,10 @@ +{ + "description": "Personal WebSite", + "owner": { + "username": "BougSoon-Studio", + "email": "bougsoon.studio@gmail.com" + }, + "record": { + "CNAME": "mr-julus.web.app" + } +} diff --git a/domains/mr-virus.json b/domains/mr-virus.json new file mode 100644 index 000000000..ae70ed940 --- /dev/null +++ b/domains/mr-virus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mr-Virus-Dev", + "email": "mr.virus.dev@gmail.com" + }, + "record": { + "CNAME": "mr-virus.pages.dev" + } +} diff --git a/domains/mr.bhardwaj.json b/domains/mr.bhardwaj.json new file mode 100644 index 000000000..fdb97f8e2 --- /dev/null +++ b/domains/mr.bhardwaj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rohanbhardwaj205", + "email": "71399@cgcjhanjeri.in" + }, + "record": { + "CNAME": "rohanbhardwaj205.github.io" + } +} diff --git a/domains/mrcrbrth.json b/domains/mrcrbrth.json deleted file mode 100644 index 63aa91482..000000000 --- a/domains/mrcrbrth.json +++ /dev/null @@ -1,12 +0,0 @@ - -{ - "owner": { - "username": "devsdocs", - "email": "id45.go@gmail.com" - }, - "record": { - "A": ["141.144.205.66"] - } -} - - diff --git a/domains/mrdev88.json b/domains/mrdev88.json new file mode 100644 index 000000000..069abeb77 --- /dev/null +++ b/domains/mrdev88.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mrdev88", + "email": "RuizMahdi@gmx.com" + }, + "record": { + "CNAME": "mrdev88.github.io" + } +} diff --git a/domains/mrdiamond.json b/domains/mrdiamond.json new file mode 100644 index 000000000..691b44ea1 --- /dev/null +++ b/domains/mrdiamond.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrDiamondDog", + "email": "drewratner27@gmail.com" + }, + "record": { + "CNAME": "mrdiamond.pages.dev" + } +} diff --git a/domains/mrepol742.json b/domains/mrepol742.json new file mode 100644 index 000000000..0dcde3a93 --- /dev/null +++ b/domains/mrepol742.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrepol742", + "email": "mrepol742@gmail.com" + }, + "record": { + "CNAME": "mrepol742.github.io" + } +} diff --git a/domains/mrfrostyxd.json b/domains/mrfrostyxd.json new file mode 100644 index 000000000..79b6bd9fb --- /dev/null +++ b/domains/mrfrostyxd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrxAravind", + "email": "mrspidyxd@gmail.com" + }, + "record": { + "URL": "https://web-zn9tdjcukv7o.up-de-fra1-k8s-1.apps.run-on-seenode.com" + } +} diff --git a/domains/mrinmoy.json b/domains/mrinmoy.json index 6b1c84fb5..8aaca608f 100644 --- a/domains/mrinmoy.json +++ b/domains/mrinmoy.json @@ -1,16 +1,13 @@ +{ + "description": "Domain for my portofolio website", + "owner": { + "username": "MrinmoyHaloi", + "email": "", + "twitter": "_mrinmoy_haloi_", + "discord": "Mrinmoy#5878" + }, - { - "description": "Domain for my portofolio website", - "owner": { - "username": "MrinmoyHaloi", - "email": "", - "twitter": "_mrinmoy_haloi_", - "discord": "Mrinmoy#5878" - - }, - - "record": { - "CNAME": "mrinmoyhaloi.github.io" - } - } - + "record": { + "CNAME": "mrinmoyhaloi.github.io" + } +} diff --git a/domains/mrj.json b/domains/mrj.json deleted file mode 100644 index 2bcdab054..000000000 --- a/domains/mrj.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "MRJ Badshah", - "email": "illegalhacker2.0@gmail.com" - }, - "record": { - "CNAME": "glitch.edgeapp.net" - } -} diff --git a/domains/mrjulus.json b/domains/mrjulus.json new file mode 100644 index 000000000..91549e840 --- /dev/null +++ b/domains/mrjulus.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Portfolio", + "owner": { + "username": "mr-julus", + "email": "sabjul100@gmail.com" + }, + "record": { + "CNAME": "mr-julus.web.app" + } +} diff --git a/domains/mrjunkyz.json b/domains/mrjunkyz.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/mrjunkyz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/mrksbgg.json b/domains/mrksbgg.json new file mode 100644 index 000000000..3e98f8668 --- /dev/null +++ b/domains/mrksbgg.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mrksbgg", + "email": "lapo.ez.yt@gmail.com", + "discord": "1097383143708827679" + }, + + "record": { + "CNAME": "mrksbgg.github.io" + } +} diff --git a/domains/mrlol.json b/domains/mrlol.json deleted file mode 100644 index bb4d1e405..000000000 --- a/domains/mrlol.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Hi, I'm MrlolDev, I'm a web developer with little experience but who never tires of learning.", - "repo": "https://github.com/MrlolGFX/mrlol", - "owner": { - "username": "MrlolGFX", - "email": "mrlol.yt.oficial@gmail.com", - "twitter": "MrlolGFX" - }, - "record": { - "URL": "https://mrlol.loick.team" - } -} diff --git a/domains/mrnover.json b/domains/mrnover.json deleted file mode 100644 index 90ca40627..000000000 --- a/domains/mrnover.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "MrNover's Website", - "repo": "https://github.com/MrNoverGitHub/mrnoverdevsite", - "owner": { - "username": "mrnovergithub", - "email": "mrnover@mrnover.com", - "twitter": "Mr_Nover" - }, - "record": { - "CNAME": "9800a36a-2d84-483e-a96f-72b8263cc24e.id.repl.co" - } -} diff --git a/domains/mrprime.json b/domains/mrprime.json new file mode 100644 index 000000000..95047ee22 --- /dev/null +++ b/domains/mrprime.json @@ -0,0 +1,12 @@ +{ + "description": "Link to my bio.link page", + "owner": { + "username": "MrPrimeDev", + "email": "justmeprime@gmail.com", + "twitter": "RealMrPrime", + "discord": "MrPrime#9636" + }, + "record": { + "URL": "https://bio.link/mrprime" + } +} diff --git a/domains/mrstickypiston.json b/domains/mrstickypiston.json new file mode 100644 index 000000000..90f4c685f --- /dev/null +++ b/domains/mrstickypiston.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrStickyPiston", + "email": "mr.sticky.piston@gmail.com" + }, + "record": { + "CNAME": "portfolio-site-4d2.pages.dev" + } +} diff --git a/domains/mrtemp70.json b/domains/mrtemp70.json new file mode 100644 index 000000000..640f68ad0 --- /dev/null +++ b/domains/mrtemp70.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrtemp70", + "email": "mrtemp70@gmail.com" + }, + "record": { + "CNAME": "mrtemp70.github.io" + } +} diff --git a/domains/mrugeshtank.json b/domains/mrugeshtank.json new file mode 100644 index 000000000..93c7fa64e --- /dev/null +++ b/domains/mrugeshtank.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mrugeshtank", + "email": "mrugeshtank@gmail.com", + "twitter": "mrugeshtank" + }, + "record": { + "URL": "https://mrugesh.tk" + } +} diff --git a/domains/mrvasil.json b/domains/mrvasil.json new file mode 100644 index 000000000..957a8f3b6 --- /dev/null +++ b/domains/mrvasil.json @@ -0,0 +1,10 @@ +{ + "description": "mrvasil's domain", + "owner": { + "username": "mrvasil", + "email": "adminich@urrr.ru" + }, + "record": { + "A": ["176.109.106.66"] + } +} diff --git a/domains/mryusuf.json b/domains/mryusuf.json index 7a44577bf..3cf01ddaa 100644 --- a/domains/mryusuf.json +++ b/domains/mryusuf.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "yufuss", + "email": "yusufgocer40@hotmail.com" + }, - { - "owner": { - "username": "yufuss", - "email": "yusufgocer40@hotmail.com" - }, - - "record": { - "CNAME": "glitch.edgeapp.net" - } - } - \ No newline at end of file + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/msg.json b/domains/msg.json deleted file mode 100644 index 604c21c2f..000000000 --- a/domains/msg.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my npm package", - "repo": "https://github.com/teamjoelee/me", - "owner": { - "username": "teamjoelee", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "7f4243c7-d171-416a-ad3d-19ba04fe36f5.id.repl.co" - } -} diff --git a/domains/mssfreight.json b/domains/mssfreight.json new file mode 100644 index 000000000..0f0ef26d8 --- /dev/null +++ b/domains/mssfreight.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KRNRBRBR", + "email": "kizadawiza2@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/mtestsite.json b/domains/mtestsite.json deleted file mode 100644 index d1a1bf293..000000000 --- a/domains/mtestsite.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "mobin-mazahery-school", - "email": "mobin.mazahery85@gmail.com" - }, - "record": { - "CNAME": "m-proxy.cf" - } - } - diff --git a/domains/mtg.json b/domains/mtg.json deleted file mode 100644 index a7a615f45..000000000 --- a/domains/mtg.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "MTGSquad's Website, A Place Where He Jots Down Dumb Stuff", - "repo": "https://github.com/mtgsquad", - "owner": { - "username": "mtgsquad", - "email": "mahir@molai.dev", - "twitter": "DevMolai" - }, - "record": { - "URL": "https://molai.dev" - } -} diff --git a/domains/mthia.json b/domains/mthia.json new file mode 100644 index 000000000..acadd2605 --- /dev/null +++ b/domains/mthia.json @@ -0,0 +1,11 @@ +{ + "description": "mthia page", + "owner": { + "username": "xddMthia", + "email": "mthia@xdd.moe", + "discord": "443794213524733962" + }, + "record": { + "CNAME": "mthia.xdd.moe" + } +} diff --git a/domains/mubaidr.json b/domains/mubaidr.json new file mode 100644 index 000000000..48c5f0d80 --- /dev/null +++ b/domains/mubaidr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mubaidr", + "email": "mubaidr@gmail.com", + "discord": "" + }, + "record": { + "CNAME": "mubaidr.js.org" + } +} diff --git a/domains/muff.json b/domains/muff.json index c48a6a3a6..340061560 100644 --- a/domains/muff.json +++ b/domains/muff.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "lifeless-muffin", + "email": "mansoorroeen71@gmail.com" + }, - { - "owner": { - "username": "lifeless-muffin", - "email": "mansoorroeen71@gmail.com" - }, - - "record": { - "CNAME": "lifeless-muffin.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "lifeless-muffin.github.io" + } +} diff --git a/domains/muhalvin.json b/domains/muhalvin.json new file mode 100644 index 000000000..002cdd5ae --- /dev/null +++ b/domains/muhalvin.json @@ -0,0 +1,11 @@ +{ + "description": "For my portofolio and personal project", + "repo": "https://github.com/muhalvin/muhalvin.github.io", + "owner": { + "username": "muhalvin", + "email": "work.muhalvin@gmail.com" + }, + "record": { + "CNAME": "muhalvin.github.io" + } +} diff --git a/domains/muhammad.json b/domains/muhammad.json new file mode 100644 index 000000000..51ef889c7 --- /dev/null +++ b/domains/muhammad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "URL": "https://mohammedkhc.is-a.dev" + } +} diff --git a/domains/muhammadbasitobaid.json b/domains/muhammadbasitobaid.json new file mode 100644 index 000000000..2db9785c7 --- /dev/null +++ b/domains/muhammadbasitobaid.json @@ -0,0 +1,10 @@ +{ + "description": "muhammadbasitobaid.is-a.dev", + "owner": { + "username": "muhammadbasitobaid", + "email": "muhammadbasitobaid@gmail.com" + }, + "record": { + "CNAME": "muhammadbasitobaid.github.io" + } +} diff --git a/domains/muheko.json b/domains/muheko.json index 37310e42f..b748bac89 100644 --- a/domains/muheko.json +++ b/domains/muheko.json @@ -1,12 +1,12 @@ { - "description": "My Personal Landing Page!", - "repo": "https://github.com/MuhekoNikolas/p3", - "owner": { - "username": "MuhekoNikolas", - "email": "13nikolusmuheko@gmail.com", - "twitter": "MuhekoNikolas" - }, - "record": { - "CNAME": "muhekonikolas.github.io" - } + "description": "My Personal Landing Page!", + "repo": "https://github.com/MuhekoNikolas/p3", + "owner": { + "username": "MuhekoNikolas", + "email": "13nikolusmuheko@gmail.com", + "twitter": "MuhekoNikolas" + }, + "record": { + "CNAME": "muhekonikolas.github.io" + } } diff --git a/domains/muizzz.json b/domains/muizzz.json new file mode 100644 index 000000000..f76bc7d64 --- /dev/null +++ b/domains/muizzz.json @@ -0,0 +1,12 @@ +{ + "description": "This subdomain is a redirection to my personal portfolio", + "repo": "https://github.com/muizzatam/muizzatam.github.io", + "owner": { + "username": "MuizZatam", + "email": "muizzatam110@gmail.com", + "twitter": "muizzatam" + }, + "record": { + "CNAME": "muizzatam.github.io" + } +} diff --git a/domains/mukesh-tadpad.json b/domains/mukesh-tadpad.json new file mode 100644 index 000000000..060b512c5 --- /dev/null +++ b/domains/mukesh-tadpad.json @@ -0,0 +1,11 @@ +{ + "description": "This is a website", + "repo": "https://github.com/mukesh-tadpad/mukesh-tadpad.github.io", + "owner": { + "username": "mukesh-tadpad", + "email": "" + }, + "record": { + "CNAME": "mukesh-tadpad.github.io" + } +} diff --git a/domains/mumble.sono.json b/domains/mumble.sono.json new file mode 100644 index 000000000..7901ef9bd --- /dev/null +++ b/domains/mumble.sono.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "getSono", + "email": "julianwolf2013@outlook.de", + "discord": "1222250424309121145" + }, + + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/muntasir.json b/domains/muntasir.json new file mode 100644 index 000000000..dd0b5ffaa --- /dev/null +++ b/domains/muntasir.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "muntasir-dev", + "email": "meeoundnp@gmail.com" + }, + + "record": { + "CNAME": "muntasir-de.github.io" + } +} diff --git a/domains/murasame-san-ddl.json b/domains/murasame-san-ddl.json new file mode 100644 index 000000000..a9b9b7a7f --- /dev/null +++ b/domains/murasame-san-ddl.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "comderzaid", + "email": "", + "discord": "544461226499899393", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h5XfBb-IScJHFReqzLw1Or84zoOq6R4ypGCyDQDYsW-wijccncffZxnRm0UaPov4GHyypLM3kEYvOGymNCuAl-ipzDQrAkRIpD8Je8_thCTShwt06ftADHWrFc-UQgFhEOTwLiaaaz4z3Q0Jp6dNlqVCXnyIkk_V7A6-FQQS19oUQUCW0Vv-DC-XJO3GWvFPy31WFaYP8FIUwnkQH49CRO-CtdMZdbMsJ5kuAYKM_wSVnGeOK9qCJce8cP_oMO7b-XLkKGlHwymb0Qyn5r1vbCTk6gAd_A6PoPHYH8JmjEnexk9L8r2nkelP5Us1ZgrraBKMOvAP9QDI8U8iDtajrA.esKVpOzITWARO4xxpboB_A.ebg8aH85QLWwPoiYCm87y7baFdxdCKV48Ufs0esjY9wYpBtWpIHR-NJ1VCZ6vQGxzal8KrV11osN4PGYexSLSTgOiTdE3d48Yd753FS7_uE.LNSomkDjTx3uuscJhq48cg" + }, + + "record": { + "A": ["129.80.3.208"] + } +} diff --git a/domains/murder.json b/domains/murder.json deleted file mode 100644 index 042b7525a..000000000 --- a/domains/murder.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "MurderWolf", - "email": "leojgarcia1@icloud.com" - }, - "record": { - "URL": "https://murderdev.xyz" - } -} diff --git a/domains/music-old.mxnticek.json b/domains/music-old.mxnticek.json deleted file mode 100644 index 704c1d802..000000000 --- a/domains/music-old.mxnticek.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Domain for my old music bot", - "owner": { - "username": "VlastikYoutubeKo", - "email": "plainrock@seznam.cz" - }, - "record": { - "A": ["129.151.254.58"] - } -} diff --git a/domains/music.json b/domains/music.json deleted file mode 100644 index 2dcd3ba8d..000000000 --- a/domains/music.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my personal website", - "repo": "https://github.com/leecheeyong/me", - "owner": { - "username": "leecheeyong", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "088a7314-b3d4-4927-92ca-e669833b0aed.id.repl.co" - } -} diff --git a/domains/music.mxnticek.json b/domains/music.mxnticek.json deleted file mode 100644 index 14a39326a..000000000 --- a/domains/music.mxnticek.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Domain for my music bot", - "owner": { - "username": "VlastikYoutubeKo", - "email": "plainrock@seznam.cz" - }, - "record": { - "A": ["129.151.254.58"] - } -} diff --git a/domains/musiccorn01.json b/domains/musiccorn01.json new file mode 100644 index 000000000..6e44b6d8e --- /dev/null +++ b/domains/musiccorn01.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ondirisuliuly", + "email": "ondirisuliuly@gmail.com" + }, + "record": { + "A": ["185.239.48.45"] + } +} diff --git a/domains/mustafaozturk.json b/domains/mustafaozturk.json new file mode 100644 index 000000000..ee71e791e --- /dev/null +++ b/domains/mustafaozturk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Night-X-dev", + "email": "mustafaozturkk1907@gmail.com" + }, + "record": { + "URL": "https://mustafa.yusufzengin.com.tr/" + } +} diff --git a/domains/mwa.json b/domains/mwa.json new file mode 100644 index 000000000..a394023bf --- /dev/null +++ b/domains/mwa.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Totallynotmwa", + "email": "", + "discord": "totallynotmwa" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/mwanothere.json b/domains/mwanothere.json new file mode 100644 index 000000000..0fe23b8c2 --- /dev/null +++ b/domains/mwanothere.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Totallynotmwa", + "email": "totallynot@mwa.lol" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/mxnticek.json b/domains/mxnticek.json index d1748948c..4a1eb2c37 100644 --- a/domains/mxnticek.json +++ b/domains/mxnticek.json @@ -1,11 +1,11 @@ { - "description": "no", - "repo": "https://github.com/VlastikYoutubeKo/vlastikyoutubeko.github.io", - "owner": { - "username": " VlastikYoutubeKo", - "email": "mxnticek@proton.me" - }, - "record": { - "CNAME": "vlastikyoutubeko.github.io" - } -} + "description": "no", + "repo": "https://github.com/VlastikYoutubeKo/vlastikyoutubeko.github.io", + "owner": { + "username": " VlastikYoutubeKo", + "email": "mxnticek@proton.me" + }, + "record": { + "CNAME": "vlastikyoutubeko.github.io" + } +} diff --git a/domains/mxnuchim.json b/domains/mxnuchim.json index e5daa0816..3b2bda37f 100644 --- a/domains/mxnuchim.json +++ b/domains/mxnuchim.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "mxnuchim", + "email": "manuchimoliver779@gmail.com" + }, - { - "owner": { - "username": "mxnuchim", - "email": "manuchimoliver779@gmail.com" - }, - - "record": { - "URL": "https://manuchimoliver.vercel.app" - } - } - + "record": { + "URL": "https://manuchimoliver.vercel.app" + } +} diff --git a/domains/mxritz.json b/domains/mxritz.json new file mode 100644 index 000000000..26a02cac2 --- /dev/null +++ b/domains/mxritz.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Portfolio", + "owner": { + "username": "mxritzdev", + "email": "contact@mxritz.dev" + }, + "record": { + "CNAME": "proxy.host.bytes.wtf" + } +} diff --git a/domains/my.mr-julus.json b/domains/my.mr-julus.json new file mode 100644 index 000000000..82a4a9210 --- /dev/null +++ b/domains/my.mr-julus.json @@ -0,0 +1,10 @@ +{ + "description": "Personal WebSite", + "owner": { + "username": "BougSoon-Studio", + "email": "bougsoon.studio@gmail.com" + }, + "record": { + "CNAME": "my-mr-julus.web.app" + } +} diff --git a/domains/my.sembiland.json b/domains/my.sembiland.json new file mode 100644 index 000000000..fafe88295 --- /dev/null +++ b/domains/my.sembiland.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TTGGHHgjkG", + "email": "tgfeghfcrxctchvvhv@gmail.com" + }, + "record": { + "URL": "https://sembiland.my.canva.site" + } +} diff --git a/domains/mydesktop.json b/domains/mydesktop.json new file mode 100644 index 000000000..141d1b56b --- /dev/null +++ b/domains/mydesktop.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bigcacarouci", + "email": "bigcacarouci@gmail.com" + }, + "record": { + "A": ["188.241.118.89"] + } +} diff --git a/domains/myrdin.json b/domains/myrdin.json new file mode 100644 index 000000000..3d0af9700 --- /dev/null +++ b/domains/myrdin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Myrdincx", + "email": "myrdincx@gmail.com" + }, + "record": { + "CNAME": "myrdincx.github.io" + } +} diff --git a/domains/mysteriousk.json b/domains/mysteriousk.json deleted file mode 100644 index 14bc1fb7e..000000000 --- a/domains/mysteriousk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "The official website for Lawliet.Host.", - "repo": "https://github.com/NoobDevs69/LawlietHost", - "owner": { - "username": "MysteriousK69", - "email": "mysteriousk@lawliet.host" - }, - "record": { - "CNAME": "lawliet.host" - } -} diff --git a/domains/mystery.json b/domains/mystery.json new file mode 100644 index 000000000..299519559 --- /dev/null +++ b/domains/mystery.json @@ -0,0 +1,11 @@ +{ + "description": "5Mystery aka SilentDemonSD Personal Tech Website...", + "repo": "https://github.com/SilentDemonSD/SilentDemonSD.github.io", + "owner": { + "username": "SilentDemonSD", + "email": "mysterysd.sd@gmail.com" + }, + "record": { + "CNAME": "silentdemonsd.github.io" + } +} diff --git a/domains/mysterysd.json b/domains/mysterysd.json deleted file mode 100644 index e4cb5633d..000000000 --- a/domains/mysterysd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Tech Website", - "repo": "https://github.com/5MysterySD/5mysterysd.github.io", - "owner": { - "username": "5MysterySD", - "email": "mysterysd.sd@gmail.com" - }, - "record": { - "CNAME": "5mysterysd.github.io" - } -} diff --git a/domains/mystic-titans.json b/domains/mystic-titans.json new file mode 100644 index 000000000..9e1ed46ce --- /dev/null +++ b/domains/mystic-titans.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joltz1234", + "email": "joltzx123@gmail.com" + }, + "record": { + "URL": "https://discord.gg/mystic-titans" + } +} diff --git a/domains/mystic.trung.json b/domains/mystic.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/mystic.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/mystie.json b/domains/mystie.json new file mode 100644 index 000000000..88db868f1 --- /dev/null +++ b/domains/mystie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mystieneko", + "email": "z232566755z@gmail.com" + }, + "record": { + "A": ["64.62.151.106"] + } +} diff --git a/domains/myx.json b/domains/myx.json deleted file mode 100644 index 1ed1c9720..000000000 --- a/domains/myx.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Myx's portfolio.", - "repo": "https://github.com/notmyx/notmyx.github.io", - "owner": { - "username": "notmyx", - "email": "darkmyxx@gmail.com", - "twitter": "omgmyx" - }, - "record": { - "CNAME": "6950d6d4-e456-41b9-a407-3b569801cfa0.id.repl.co" - } -} diff --git a/domains/myxi.json b/domains/myxi.json new file mode 100644 index 000000000..1a2f6a835 --- /dev/null +++ b/domains/myxi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eeriemyxi", + "email": "myxi@envs.net" + }, + "record": { + "URL": "https://myxi.envs.net" + } +} diff --git a/domains/mz.json b/domains/mz.json new file mode 100644 index 000000000..43aa4ed86 --- /dev/null +++ b/domains/mz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "influxweb", + "email": "matt@dev4web.net" + }, + "record": { + "URL": "https://www.dev4web.net" + } +} diff --git a/domains/mzn.json b/domains/mzn.json new file mode 100644 index 000000000..45d33185b --- /dev/null +++ b/domains/mzn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mznking", + "email": "maazinking23@gmail.com" + }, + "record": { + "CNAME": "mzn-king.onrender.com" + } +} diff --git a/domains/mznking.json b/domains/mznking.json new file mode 100644 index 000000000..45d33185b --- /dev/null +++ b/domains/mznking.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mznking", + "email": "maazinking23@gmail.com" + }, + "record": { + "CNAME": "mzn-king.onrender.com" + } +} diff --git a/domains/mzykin.json b/domains/mzykin.json new file mode 100644 index 000000000..b8fdcf5f9 --- /dev/null +++ b/domains/mzykin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maxzkn", + "email": "maks.zyk@gmail.com" + }, + "record": { + "CNAME": "mzykin.com" + } +} diff --git a/domains/n0rule.json b/domains/n0rule.json new file mode 100644 index 000000000..153275be1 --- /dev/null +++ b/domains/n0rule.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "N0rule", + "email": "N0rule228@gmail.com" + }, + "record": { + "CNAME": "n0rule.github.io" + } +} diff --git a/domains/n1ghtmare.json b/domains/n1ghtmare.json new file mode 100644 index 000000000..6c652eee8 --- /dev/null +++ b/domains/n1ghtmare.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "n1ghtmare3301", + "email": "n1ghtmare3301@proton.me" + }, + "record": { + "CNAME": "n1ghtmare3301.github.io" + } +} diff --git a/domains/n1ka.json b/domains/n1ka.json deleted file mode 100644 index 062014929..000000000 --- a/domains/n1ka.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "N1kaCode", - "email": "jeanlukashoffmann@gmail.com" - }, - "record": { - "URL": "https://beacons.ai/n1kacode" - } -} diff --git a/domains/n4n5.json b/domains/n4n5.json new file mode 100644 index 000000000..eddbd3b21 --- /dev/null +++ b/domains/n4n5.json @@ -0,0 +1,11 @@ +{ + "description": "redirects to my website", + "repo": "https://github.com/Its-Just-Nans", + "owner": { + "username": "Its-Just-Nans", + "email": "" + }, + "record": { + "URL": "https://n4n5.dev" + } +} diff --git a/domains/n4rc1ssus.json b/domains/n4rc1ssus.json new file mode 100644 index 000000000..44601c8d5 --- /dev/null +++ b/domains/n4rc1ssus.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AnubisNekhet", + "email": "extrastuff.j3db6@simplelogin.co", + "note": "Not my actual email, but it forwards to my actual one." + }, + "record": { + "CNAME": "n4rc1ssus.codeberg.page" + } +} diff --git a/domains/nadeem.json b/domains/nadeem.json index 26302f0ad..b42098234 100644 --- a/domains/nadeem.json +++ b/domains/nadeem.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Nadeem-05", - "email": "m.nadeem83005@gmail.com" - }, - "record": { - "CNAME": "nadeem-05.github.io" - } + "owner": { + "username": "Nadeem-05", + "email": "m.nadeem83005@gmail.com" + }, + "record": { + "CNAME": "nadeem-05.github.io" + } } diff --git a/domains/naffy.json b/domains/naffy.json new file mode 100644 index 000000000..cf4c10991 --- /dev/null +++ b/domains/naffy.json @@ -0,0 +1,12 @@ +{ + "description": "My personal portfolio website", + "repo": "https://github.com/knownasnaffy/knownasnaffy.github.io", + "owner": { + "username": "knownasnaffy", + "email": "email@address", + "twitter": "dharni_naffy" + }, + "record": { + "CNAME": "knownasnaffy.github.io" + } +} diff --git a/domains/nahid.json b/domains/nahid.json new file mode 100644 index 000000000..80b641ac6 --- /dev/null +++ b/domains/nahid.json @@ -0,0 +1,11 @@ +{ + "description": "nahid.is-a.dev", + "repo": "https://github.com/SOUROVKHANNAHID/SOUROVKHANNAHID.github.io", + "owner": { + "username": "SOUROVKHANNAHID", + "email": "SourovKhanNahid@gmail.com" + }, + "record": { + "CNAME": "SOUROVKHANNAHID.github.io" + } +} diff --git a/domains/naivelyn.json b/domains/naivelyn.json new file mode 100644 index 000000000..8bc9cacc2 --- /dev/null +++ b/domains/naivelyn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Golgrax", + "email": "pepe.kotelurow@gmail.com" + }, + "record": { + "CNAME": "naivelyn.pages.dev" + } +} diff --git a/domains/naki.json b/domains/naki.json new file mode 100644 index 000000000..5b9a9c23a --- /dev/null +++ b/domains/naki.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "YoruAkio", + "email": "yoruakio@proton.me" + }, + + "record": { + "CNAME": "nakio.pages.dev" + } +} diff --git a/domains/naltheduck.json b/domains/naltheduck.json new file mode 100644 index 000000000..87e8e1ce7 --- /dev/null +++ b/domains/naltheduck.json @@ -0,0 +1,11 @@ +{ + "description": "for my own info-website", + "repo": "https://github.com/PewZew/naLTheDuck_Web", + "owner": { + "username": "PewZew", + "email": "lanlehoang957@gmail.com" + }, + "record": { + "CNAME": "pewzew.github.io" + } +} diff --git a/domains/namesmt.json b/domains/namesmt.json new file mode 100644 index 000000000..49dc6964a --- /dev/null +++ b/domains/namesmt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NamesMT", + "email": "dangquoctrung123@gmail.com" + }, + "record": { + "CNAME": "namesmt.github.io" + } +} diff --git a/domains/namkun.json b/domains/namkun.json new file mode 100644 index 000000000..2ffcacdbb --- /dev/null +++ b/domains/namkun.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "beocaca", + "email": "namdev1402@gmail.com" + }, + "record": { + "CNAME": "namkun.pages.dev" + } +} diff --git a/domains/namra.json b/domains/namra.json new file mode 100644 index 000000000..d93d64a8d --- /dev/null +++ b/domains/namra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "njxixi", + "email": "jnamra.nj@gmail.com" + }, + "record": { + "CNAME": "njxixi.github.io" + } +} diff --git a/domains/nandhu.json b/domains/nandhu.json new file mode 100644 index 000000000..6ed2b9d6b --- /dev/null +++ b/domains/nandhu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nandhu-44", + "email": "nandhu90040@gmail.com" + }, + + "record": { + "CNAME": "nandhu.deno.dev" + } +} diff --git a/domains/nanonavigate.json b/domains/nanonavigate.json new file mode 100644 index 000000000..bee5b0f63 --- /dev/null +++ b/domains/nanonavigate.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kurumi30", + "email": "fernandoshengxinzhu@gmail.com" + }, + "record": { + "URL": "https://nanonavigate.onrender.com/" + } +} diff --git a/domains/naokoshoto.json b/domains/naokoshoto.json new file mode 100644 index 000000000..1e8fcadaa --- /dev/null +++ b/domains/naokoshoto.json @@ -0,0 +1,12 @@ +{ + "description": "This domain is only for redirecting to my main website that I own", + "owner": { + "username": "naokoshoto", + "email": "mdigreget@gmail.com", + "twitter": "naokoshoto" + }, + + "record": { + "URL": "https://naokoshoto.my.id" + } +} diff --git a/domains/nardcrat.json b/domains/nardcrat.json deleted file mode 100644 index 3d922a25d..000000000 --- a/domains/nardcrat.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "use for the main site for protfolio", - "repo": "https://github.com/meetkool/meetkool", - "owner": { - "username": "meetkool", - "email": "doomlol@protonmail.com" - }, - "record": { - "CNAME": "meetssh.ml" - } -} diff --git a/domains/nass.json b/domains/nass.json new file mode 100644 index 000000000..2e3b61971 --- /dev/null +++ b/domains/nass.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "SpauriRosso", + "email": "spy456@zoho.com", + "discord": "404659098919895045" + }, + + "record": { + "A": ["64.226.79.220"] + } + } + \ No newline at end of file diff --git a/domains/nassro.json b/domains/nassro.json new file mode 100644 index 000000000..136aab237 --- /dev/null +++ b/domains/nassro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nassro199", + "email": "nasrohasini19ny@gmail.com" + }, + "record": { + "URL": "https://nassro.vercel.app" + } +} diff --git a/domains/nat.json b/domains/nat.json index d44705d8f..1911853dd 100644 --- a/domains/nat.json +++ b/domains/nat.json @@ -1,10 +1,10 @@ { - "owner": { + "owner": { "username": "Natasquare", - "discord": "Natasquare#8297", + "discord": "696698254770831421", "email": "natasquarelol@gmail.com" }, - "record": { - "CNAME": "d42474b9-07e0-4f87-94ba-d47a4477dde5.id.repl.co" + "record": { + "CNAME": "natasquare.github.io" } } diff --git a/domains/nate.json b/domains/nate.json new file mode 100644 index 000000000..b2499c182 --- /dev/null +++ b/domains/nate.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "natewombwell", + "email": "", + "discord": "561428834663006208", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.r1ZfrPomNfeydU8c3S9mToZbpFStt303nzw9ujvdwylTnjrIUGyfVER7P11HftqO43Sj3BN-R0MumWUFs_LIDWxpjXBK3hpZdUUfZnOXNHElwKkTBm6V1s9Uvc-Na4TTVxWcE5uChPatbnDWYP8xAqArMPAIwQgC5w9l4z6LVDhDbkypyMpofbmlmZR_VtrNtsP_beK9CYzonAVZriG33_TKwqAJ5kyx53smXoUIHtApIL9rkKKmvQXH3vpci7HD917elmn3nu-2WEOG59KvsVXayXpXNQJMb65lV03jdR8iN3yTco8rFxnsPfLB4t8Cwn1btWjqhfM-B9m0tSe4RA.JpxuyATUyVpjqG7NzEBKOA.MSTbWtKk4-4o9cN03K1838lrnn8ffMzAlhKJ8HXEeNSXlnJv0FV4fkDC8LPR13b40V66IUBvaOb5tgFqOz-_yUg2035QfiTEbymPo0o5-yg.tLR30laxvdmfPsWxSqeg1Q" + }, + + "record": { + "A": ["172.66.0.70"] + } + } + \ No newline at end of file diff --git a/domains/natewashburn.json b/domains/natewashburn.json new file mode 100644 index 000000000..d0e1eab61 --- /dev/null +++ b/domains/natewashburn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NateTheGreat1230", + "email": "nathanprattwashburn@gmail.com" + }, + "record": { + "CNAME": "natethegreat1230.github.io" + } +} diff --git a/domains/natya.json b/domains/natya.json index 366609af4..1a7c53bf8 100644 --- a/domains/natya.json +++ b/domains/natya.json @@ -1,12 +1,12 @@ { - "description": "My Portfolio Website", - "repo": "https://github.com/studiousgamer/studiousgamer.github.io", - "owner": { - "username": "studiousgamer", - "email": "natyavidhanbiswas10@gmail.com", - "twitter": "GamerStudious" - }, - "record": { - "CNAME": "studiousgamer.github.io" - } -} + "description": "My Portfolio Website", + "repo": "https://github.com/studiousgamer/studiousgamer.github.io", + "owner": { + "username": "studiousgamer", + "email": "natyavidhanbiswas10@gmail.com", + "twitter": "GamerStudious" + }, + "record": { + "CNAME": "studiousgamer.github.io" + } +} diff --git a/domains/naveen.json b/domains/naveen.json index 341207c04..56d28d0f0 100644 --- a/domains/naveen.json +++ b/domains/naveen.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "naveen8384", + "email": "naveen.nani321@gmail.com" + }, - { - "owner": { - "username": "naveen8384", - "email": "naveen.nani321@gmail.com" - }, - - "record": { - "URL": "https://naveenkumar.org" - } - } - + "record": { + "URL": "https://naveenkumar.org" + } +} diff --git a/domains/navon.json b/domains/navon.json new file mode 100644 index 000000000..4ca613951 --- /dev/null +++ b/domains/navon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Magniquick", + "email": "navonjohnlukose@gmail.com" + }, + "record": { + "URL": "https://magniquick.github.io/" + } +} diff --git a/domains/nc.json b/domains/nc.json new file mode 100644 index 000000000..9bc135c67 --- /dev/null +++ b/domains/nc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NCCoder1", + "email": "nikhilchhawacharia@gmail.com" + }, + "record": { + "CNAME": "nc-qc9p.onrender.com" + } +} diff --git a/domains/neca.json b/domains/neca.json new file mode 100644 index 000000000..138f7c3b5 --- /dev/null +++ b/domains/neca.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "nekotamogas", + "email": "dazzerdev@gmail.com", + "discord": "797458672225091594" + }, + + "record": { + "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"], + "TXT": ["zoho-verification=zb18547320.zmverify.zoho.eu", "v=spf1 include:zohomail.eu ~all", "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIHzsnS94jaMTbcflV4QMBR4P3YCgegw1NoV7t7rkElCnZ7LEJIWLMCMheXN+ipQUclpDZ8Lw6m8B7mm4tm8P79hTuM6rmhsqcQb8w/g3u6kUDhK/eq2QoDhUienbpKTsR4pZesu9yIW0DL5wYxHT2zpxQN7zO8+8b4IzFSPnmHQIDAQAB"] + } + } + diff --git a/domains/neelsani.json b/domains/neelsani.json new file mode 100644 index 000000000..055a8cf69 --- /dev/null +++ b/domains/neelsani.json @@ -0,0 +1,11 @@ +{ + "description": "Neel Dev", + "repo": "https://github.com/neelsani/neelsani.github.io", + "owner": { + "username": "neelsani", + "email": "neel2645s@gmail.com" + }, + "record": { + "CNAME": "neelsani.github.io" + } +} diff --git a/domains/neeraj-2401.json b/domains/neeraj-2401.json index e05a366db..c4bc60eb9 100644 --- a/domains/neeraj-2401.json +++ b/domains/neeraj-2401.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/NeeRaj-2401/NeeRaj-2401.github.io", - "owner": { - "username": "NeeRaj-2401", - "email": "niraj.yadav@slrtce.in" - }, - "record": { - "CNAME": "neeraj-2401.github.io" - } -} + "repo": "https://github.com/NeeRaj-2401/NeeRaj-2401.github.io", + "owner": { + "username": "NeeRaj-2401", + "email": "niraj.yadav@slrtce.in" + }, + "record": { + "CNAME": "neeraj-2401.github.io" + } +} diff --git a/domains/neerav.json b/domains/neerav.json new file mode 100644 index 000000000..4afd20014 --- /dev/null +++ b/domains/neerav.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "BadPotato1007", + "email": "", + "discord": "1176835313356767312", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h5lVmEVgNjSJED4_lCqP0uq8U6PetLRaVdYIsrVbDslLhV0Nmvkdj9AbxxT1TGf3ZGwFSSJe-0zei3AeiQ-opshMYrw_DRlx4f686t-AhNXj9Kmf2-0wQxjsmUvwXNsmNfgwxjXtD5gHv8jLOF1oh_ZV9rbjCmWUejPLX6a0RvRk-hH9ACxziJ3qzdY88SdlXcqA6KqxhD0ZDyWt_NAXk-DIDv-oOoeX-MM9ZW1f89HDXvQPZ3uqOmcdzJtoCBGGAt4nY9C0fkK0YGSp_lXe_r6G7gjhNfwEH_BQ997SpDpibdH3ensKeGf6DOufxaN1FK8L0KCf-XpLXELc9c2qUw.bEd83RTDvTOZ19pDJ6YrTA.hj0EVK9MR1_ygJEtgrhofZrU37pBoHu-zXlTGQSG0DuRAi1VQC3jOP6QrMJZi7zWZbce2Y83elAYzq_I4W0KrshAwfAUlcr6DRTb5Hl4JdU.RFRNhW4hhRsoe9Mw-F-fwg" + }, + + "record": { + "A": ["75.2.60.5"] + } + } + diff --git a/domains/neeraz.json b/domains/neeraz.json new file mode 100644 index 000000000..884ad0480 --- /dev/null +++ b/domains/neeraz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "techneeraz", + "email": "tech.neeraz@groupiig.com" + }, + "record": { + "A": ["103.147.226.20"] + } +} diff --git a/domains/neeyl.json b/domains/neeyl.json index a9e8a9210..cb87d479f 100644 --- a/domains/neeyl.json +++ b/domains/neeyl.json @@ -1,12 +1,11 @@ -{ - "description": "Subhramit's experimental playfield", - "repo": "https://github.com/subhramit/subhramit.github.io", - "owner": { - "username": "subhramit", - "email": "subhramit.bb@live.in" - }, - "record": { - "CNAME": "subhramit.github.io" - } - } - \ No newline at end of file +{ + "description": "Subhramit's experimental playfield", + "repo": "https://github.com/subhramit/subhramit.github.io", + "owner": { + "username": "subhramit", + "email": "subhramit.bb@live.in" + }, + "record": { + "CNAME": "subhramit.github.io" + } +} diff --git a/domains/nego.json b/domains/nego.json deleted file mode 100644 index c3f2cc547..000000000 --- a/domains/nego.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Nego personal developer website", - "repo": "https://github.com/kardespro/kardespro.github.io", - "owner": { - "username": "nego", - "email": "devnego@gmail.com" - }, - "record": { - "CNAME": "negodev.tk" - } -} diff --git a/domains/nekaoumike.json b/domains/nekaoumike.json index 9540eed71..941b10a4c 100644 --- a/domains/nekaoumike.json +++ b/domains/nekaoumike.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "NekaouMike", - "email": "nekaoumike@gmail.com" - }, - "record": { - "CNAME": "nekaoumike.dev" - } - } - \ No newline at end of file +{ + "owner": { + "username": "NekaouMike", + "email": "nekaoumike@gmail.com" + }, + "record": { + "CNAME": "nekaoumike.dev" + } +} diff --git a/domains/neki.json b/domains/neki.json new file mode 100644 index 000000000..a6f5db92d --- /dev/null +++ b/domains/neki.json @@ -0,0 +1,20 @@ +{ + "description": "Pagina de Santiago", + "owner": { + "username": "PinkLittleKitty", + "email": "santyfisela@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/nekitori17.json b/domains/nekitori17.json new file mode 100644 index 000000000..7cc6487cf --- /dev/null +++ b/domains/nekitori17.json @@ -0,0 +1,13 @@ +{ + "description": "Nyaaaaaa!!!!", + "repo": "https://github.com/nekitori17/nekitori17.github.io", + "owner": { + "username": "nekitori17", + "email": "cuongnguyen286641@gmail.com", + "twitter": "nekitori17", + "discord": "nekitorihakari" + }, + "record": { + "CNAME": "nekitori17.github.io" + } +} diff --git a/domains/nekoibot.json b/domains/nekoibot.json new file mode 100644 index 000000000..055b46551 --- /dev/null +++ b/domains/nekoibot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DomathID", + "email": "domath69@gmail.com" + }, + + "record": { + "CNAME": "DomathID.github.io" + } +} diff --git a/domains/nelson.json b/domains/nelson.json new file mode 100644 index 000000000..1588dc0c2 --- /dev/null +++ b/domains/nelson.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nelsonGX", + "email": "hi@nelsongx.com" + }, + "record": { + "URL": "https://nelsongx.com" + } +} diff --git a/domains/nengsriaryati.json b/domains/nengsriaryati.json new file mode 100644 index 000000000..ef1a64bd0 --- /dev/null +++ b/domains/nengsriaryati.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hillzacky", + "email": "Hilm4nsyah@gmail.com" + }, + "record": { + "CNAME": "nengsriaryati.github.io" + } +} diff --git a/domains/neo.json b/domains/neo.json new file mode 100644 index 000000000..ac048537a --- /dev/null +++ b/domains/neo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "phantonducthang", + "email": "phantonducthang@hotmail.com" + }, + "record": { + "CNAME": "64342fb9f8-hosting.gitbook.io" + } +} diff --git a/domains/neoapps.json b/domains/neoapps.json new file mode 100644 index 000000000..d5f3eea2a --- /dev/null +++ b/domains/neoapps.json @@ -0,0 +1,10 @@ +{ + "description": "NEOAPPS", + "owner": { + "username": "neoapps-dev", + "email": "asd22.info@gmail.com" + }, + "record": { + "URL": "https://neoapps-dev.github.io/web" + } +} diff --git a/domains/neon.json b/domains/neon.json index 63015d376..d76ac1acb 100644 --- a/domains/neon.json +++ b/domains/neon.json @@ -1,12 +1,23 @@ -{ - "description": "Domain for my portfolio website", - "repo": "https://github.com/GoodBoyNeon/goodboyneon.github.io", - "owner": { - "username": "GoodBoyNeon", - "discord": "GoodBoyNeon#2424", - "email": "" - }, - "record": { - "CNAME": "goodboyneon.github.io" - } -} +{ + "description": "Domain for my portfolio website", + "repo": "https://github.com/GoodBoyNeon/goodboyneon.github.io", + "owner": { + "username": "GoodBoyNeon", + "discord": "neonthedeveloper", + "twitter": "NeonTheNerd", + "email": "goodboyneon03@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/nepnep.imm0nv1nhtv.json b/domains/nepnep.imm0nv1nhtv.json new file mode 100644 index 000000000..a9fea649b --- /dev/null +++ b/domains/nepnep.imm0nv1nhtv.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "imm0nv1nhtv", + "email": "windows10phamvinh+github@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/nerd.json b/domains/nerd.json index a82bb1558..46ecb6cf5 100644 --- a/domains/nerd.json +++ b/domains/nerd.json @@ -1,9 +1,11 @@ { + "description": "website", + "repo": "https://github.com/xkcdnerd/xkcdnerd.github.io", "owner": { - "username": "n3rd3x3", - "email": "me@n3rd3x3.xyz" + "username": "xkcdnerd", + "email": "evanwang330@gmail.com" }, "record": { - "URL": "https://n3rd3x3.xyz" + "CNAME": "xkcdnerd.github.io" } } diff --git a/domains/neria.json b/domains/neria.json new file mode 100644 index 000000000..b069aff5c --- /dev/null +++ b/domains/neria.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "neriat", + "email": "me@neria.dev" + }, + "record": { + "CNAME": "neria.dev" + } +} diff --git a/domains/netf.json b/domains/netf.json deleted file mode 100644 index 4cfca6fac..000000000 --- a/domains/netf.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "netflexs", - "email": "" - }, - "record": { - "CNAME": "c4f04559-5bd7-49db-ae04-93e53cd8abc2.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/netsterx.json b/domains/netsterx.json new file mode 100644 index 000000000..62ab8446d --- /dev/null +++ b/domains/netsterx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "netsterX", + "email": "mb3202879@gmail.com" + }, + "record": { + "CNAME": "netsterx.github.io" + } +} diff --git a/domains/neven.json b/domains/neven.json index 59c4b67a8..b5ac253e0 100644 --- a/domains/neven.json +++ b/domains/neven.json @@ -1,12 +1,12 @@ { - "repo": "https://github.com/nevenxr/nevenxr.github.io", - "description": "Personal Website", - "owner": { - "username": "nevenxr", - "email": "", - "discord": "Neven#3985" - }, - "record": { - "CNAME": "nevenxr.github.io" - } + "repo": "https://github.com/nevenxr/nevenxr.github.io", + "description": "Personal Website", + "owner": { + "username": "nevenxr", + "email": "", + "discord": "Neven#3985" + }, + "record": { + "CNAME": "nevenxr.github.io" + } } diff --git a/domains/neville.json b/domains/neville.json index e711c2a4d..ead646d7d 100644 --- a/domains/neville.json +++ b/domains/neville.json @@ -1,11 +1,11 @@ { - "description": "New personal website im gonna make ", - "repo": "https://github.com/Neville03/Neville03.github.io", - "owner": { - "username": "Neville03", - "email": "zuweyrh1@gmail.com" - }, - "record": { - "CNAME": "neville03.github.io" - } -} + "description": "New personal website im gonna make ", + "repo": "https://github.com/Neville03/Neville03.github.io", + "owner": { + "username": "Neville03", + "email": "zuweyrh1@gmail.com" + }, + "record": { + "CNAME": "neville03.github.io" + } +} diff --git a/domains/new.sx9.json b/domains/new.sx9.json index 6f77a209e..5cdcbf659 100644 --- a/domains/new.sx9.json +++ b/domains/new.sx9.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "SX-9", - "email": "hello@mail.sx9.is-a.dev" - }, - "record": { - "CNAME": "sx-9.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "SX-9", + "email": "hello@mail.sx9.is-a.dev" + }, + "record": { + "CNAME": "sx-9.github.io" + } +} diff --git a/domains/new.vornexx.json b/domains/new.vornexx.json new file mode 100644 index 000000000..9d9ad17d9 --- /dev/null +++ b/domains/new.vornexx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vornex-gh", + "email": "ajay.ramnath8812@gmail.com" + }, + "record": { + "CNAME": "newvornexx.pages.dev" + } +} diff --git a/domains/newkernel.json b/domains/newkernel.json new file mode 100644 index 000000000..76295bfe0 --- /dev/null +++ b/domains/newkernel.json @@ -0,0 +1,11 @@ +{ + "description": "NewKernel's Website", + "repo": "https://github.com/KernelNew/kernelnew.github.io", + "owner": { + "username": "KernelNew", + "email": "new.kernel@outlook.com" + }, + "record": { + "CNAME": "kernelnew.github.io" + } +} diff --git a/domains/newpk.json b/domains/newpk.json new file mode 100644 index 000000000..4d5310fd5 --- /dev/null +++ b/domains/newpk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "newpkorn", + "email": "pakorn.soikham@gmail.com" + }, + "record": { + "CNAME": "newpkorn.github.io" + } +} diff --git a/domains/newyear.trung.json b/domains/newyear.trung.json new file mode 100644 index 000000000..2081b19e3 --- /dev/null +++ b/domains/newyear.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "CNAME": "lunar-newyr-countdown.pages.dev" + } +} diff --git a/domains/nexfilms.json b/domains/nexfilms.json new file mode 100644 index 000000000..a17be18d1 --- /dev/null +++ b/domains/nexfilms.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "nexos20levrai", + "email": "", + "discord": "610847328680673302" + }, + + "record": { + "A": ["5.181.187.182"] + } + } + \ No newline at end of file diff --git a/domains/nexflix.json b/domains/nexflix.json new file mode 100644 index 000000000..a17be18d1 --- /dev/null +++ b/domains/nexflix.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "nexos20levrai", + "email": "", + "discord": "610847328680673302" + }, + + "record": { + "A": ["5.181.187.182"] + } + } + \ No newline at end of file diff --git a/domains/nexos.json b/domains/nexos.json new file mode 100644 index 000000000..5efda0e8e --- /dev/null +++ b/domains/nexos.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nexos20levrai", + "email": "nexos.dons@gmail.com" + }, + "record": { + "A": ["78.47.213.108"] + } +} diff --git a/domains/nexproxymanager.json b/domains/nexproxymanager.json new file mode 100644 index 000000000..a17be18d1 --- /dev/null +++ b/domains/nexproxymanager.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "nexos20levrai", + "email": "", + "discord": "610847328680673302" + }, + + "record": { + "A": ["5.181.187.182"] + } + } + \ No newline at end of file diff --git a/domains/nextcloud.vi0leta.json b/domains/nextcloud.vi0leta.json new file mode 100644 index 000000000..1af90edd0 --- /dev/null +++ b/domains/nextcloud.vi0leta.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vi0letadev", + "email": "vi0leta@riseup.net" + }, + + "record": { + "A": ["37.27.4.76"] + } +} diff --git a/domains/nezarec.json b/domains/nezarec.json new file mode 100644 index 000000000..8eb7b4ec4 --- /dev/null +++ b/domains/nezarec.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NezarecSR", + "email": "anjuangyu@gmail.com" + }, + "record": { + "URL": "https://nezhome.vercel.app/" + } +} diff --git a/domains/nfc.json b/domains/nfc.json new file mode 100644 index 000000000..c56d123fe --- /dev/null +++ b/domains/nfc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Tomgxz", + "email": "tomgxz138@gmail.com" + }, + "record": { + "CNAME": "is3193tx.up.railway.app" + } +} diff --git a/domains/ngocjohn.json b/domains/ngocjohn.json new file mode 100644 index 000000000..73102e1ac --- /dev/null +++ b/domains/ngocjohn.json @@ -0,0 +1,12 @@ +{ + "description": "personal website", + "repo": "https://github.com/ngocjohn/ngocjohn.github.io", + "owner": { + "username": "ngocjohn", + "email": "ngocjohn@me.com", + "twitter": "emkay3000" + }, + "record": { + "CNAME": "ngocjohn.github.io" + } +} diff --git a/domains/ngt.json b/domains/ngt.json new file mode 100644 index 000000000..3b12d7731 --- /dev/null +++ b/domains/ngt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "7ngt", + "email": "contatofthales@gmail.com" + }, + "record": { + "URL": "https://discord.com/users/906639702558375986" + } +} diff --git a/domains/ngvgb.json b/domains/ngvgb.json new file mode 100644 index 000000000..f663a706a --- /dev/null +++ b/domains/ngvgb.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "NgVGB-Workspace", + "email": "", + "discord": "905671220333264966", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PRdSIXpK3bfSVItlR4zG6y6YC0KwWF8fALLRJoKYHEiMUwTFQvi48kgvzveCVwUBuYJWQBMCYWBVstMTtR32JBnpQFMNVUnh3m3sFWKIiuydQL7JPzimMLZQ9WvTtEl3AUF-5DZaH_uX4_2CSxs-c0JfEG7n0vnjKRdOZ-31wtitEAvUolUiKcwoQKX6clvSiNN3l9pSVhP3ufyt9JN_caHya1xQrk8X9Ijaf9EYctXZFwXaf4KUJ44QcJZ1erfKh6FykNUtkkO0GV4V1XZlYZS8TaETta5k7GR3fJi_V9MKSCtiR5dG15KARX485akLI5ZYqqcRp7fH2xaLEOQCCQ.3pFuR0GZ8XBQGaFFIpFv9w.xuvztR8HsOO6zzPNpo_8sDQJimmQj79swKQqYi5blxu7Cpmdf_sLVw0SNmCCOVBPJJ-tyexWUEA7iXk36cDiB_iF9mkdb14Mwegb-0zFEQg.fDszk-8TV4Idc_CIIKOa_A" + }, + + "record": { + "CNAME": "ngvgb-workspace.github.io" + } + } + \ No newline at end of file diff --git a/domains/nhat.json b/domains/nhat.json index 46907d6f5..7b20fb435 100644 --- a/domains/nhat.json +++ b/domains/nhat.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "ductoanvo", - "email": "toan.ducvo@icloud.com" - }, - "record": { - "URL": "https://www.facebook.com/profile.php?id=100016726364383" - } - } - \ No newline at end of file +{ + "owner": { + "username": "ductoanvo", + "email": "toan.ducvo@icloud.com" + }, + "record": { + "URL": "https://www.facebook.com/profile.php?id=100016726364383" + } +} diff --git a/domains/nhatphong.json b/domains/nhatphong.json new file mode 100644 index 000000000..dc93e12be --- /dev/null +++ b/domains/nhatphong.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "nguyenquangdungfx28972", + "email": "dungnqFX28972@funix.edu.vn", + "discord": "1050395028452806714" + }, + + "record": { + "CNAME": "nhatphongsite.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/nhemgomia.json b/domains/nhemgomia.json new file mode 100644 index 000000000..f798c4420 --- /dev/null +++ b/domains/nhemgomia.json @@ -0,0 +1,12 @@ +{ + "description": "Nhem Gomia portfolio website.", + "repo": "https://github.com/nhemgomia/nhemgomia.github.io", + "owner": { + "username": "nhemgomia", + "email": "", + "discord": "nhemdgaf" + }, + "record": { + "CNAME": "nhemgomia.github.io" + } +} diff --git a/domains/niceeli.json b/domains/niceeli.json new file mode 100644 index 000000000..df6a18214 --- /dev/null +++ b/domains/niceeli.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "niceEli", + "email": "EliCardoso2009@gmail.com" + }, + "record": { + "CNAME": "niceeli.github.io" + } +} diff --git a/domains/nicesapien.json b/domains/nicesapien.json index c36ef1f18..6d36c1cdf 100644 --- a/domains/nicesapien.json +++ b/domains/nicesapien.json @@ -1,11 +1,12 @@ { -"description": "NiceSapien's portfolio website", + "description": "idk mane why did u delete it \n my portfolio website btw", + "repo": "nicesapien.netlify.app", "owner": { - "username": "NiceSapien", - "email": "nicesapien@gmail.com", - "discord": "NiceSapien#2356" + "username": "nicesapien", + "email": "nicesapien@duck.com", + "twitter": "nicesapien" }, "record": { - "CNAME": "nicesapien.gatsbyjs.io" + "CNAME": "portfolio-6dp.pages.dev" } } diff --git a/domains/nicholas.json b/domains/nicholas.json deleted file mode 100644 index 2a334c8ed..000000000 --- a/domains/nicholas.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "nicholasyoannou", - "email": "nicholas@nicholas.dev", - "discord": "janeberru#4594", - "note": "You can contact me by email or discord, really don't mind :)" - }, - "description": "I'll probably put some project pages on nicholas.is-a.dev. ¯\\_(ツ)_/¯", - "record": { - "CNAME": "nicholas.dev" - } -} diff --git a/domains/nick.json b/domains/nick.json deleted file mode 100644 index b65ad8936..000000000 --- a/domains/nick.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "nimolas", - "email": "nick.o@microfnclan.com" - }, - "record": { - "CNAME": "microfnclan.com" - } -} diff --git a/domains/nicoladen.json b/domains/nicoladen.json new file mode 100644 index 000000000..0911814b2 --- /dev/null +++ b/domains/nicoladen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nicoladen05", + "email": "nicolashartmanntaba@gmail.com" + }, + "record": { + "CNAME": "nicoladen05.github.io" + } +} diff --git a/domains/nidhis-patel.json b/domains/nidhis-patel.json new file mode 100644 index 000000000..f384a7ea0 --- /dev/null +++ b/domains/nidhis-patel.json @@ -0,0 +1,11 @@ +{ + "description": "This is a personal", + "repo": "https://github.com/nidhis-patel/nidhis-patel.github.io", + "owner": { + "username": "nidhis-patel", + "email": "" + }, + "record": { + "URL": "https://nidhis-patel.github.io" + } +} diff --git a/domains/nidun.json b/domains/nidun.json new file mode 100644 index 000000000..135b2ee93 --- /dev/null +++ b/domains/nidun.json @@ -0,0 +1,11 @@ +{ + "description": "new update to request new cname", + "repo": "https://github.com/nldun/nldun.github.io", + "owner": { + "username": "nldun", + "email": "rezkyto@gmail.com" + }, + "record": { + "CNAME": "nldun.github.io" + } +} diff --git a/domains/nightmaregods.json b/domains/nightmaregods.json new file mode 100644 index 000000000..2f084ede8 --- /dev/null +++ b/domains/nightmaregods.json @@ -0,0 +1,12 @@ +{ + "description": "nightmaregods.is-a.dev", + "repo": "https://github.com/Nightmaregodss/nightmaregodss.github.io", + "owner": { + "username": "nightmaregodss", + "email": "", + "discord": "Demon Emperor NightmareGods#0001" + }, + "record": { + "CNAME": "nightmaregodss.github.io" + } +} diff --git a/domains/nightsfall.json b/domains/nightsfall.json index c2aa8ce91..b523cfbb3 100644 --- a/domains/nightsfall.json +++ b/domains/nightsfall.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "NightsFaII", - "email": "niqhtsfall2@gmail.com" - }, - "record": { - "CNAME": "nightsfaii.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "NightsFaII", + "email": "niqhtsfall2@gmail.com" + }, + "record": { + "CNAME": "nightsfaii.github.io" + } +} diff --git a/domains/nik.json b/domains/nik.json new file mode 100644 index 000000000..fae6c2cf1 --- /dev/null +++ b/domains/nik.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nikxso", + "email": "nikhilsoniya123@gmail.com", + "discord": "nikxso#0000" + }, + "record": { + "CNAME": "myweb-266f0.web.app" + } +} diff --git a/domains/nikaxe.json b/domains/nikaxe.json new file mode 100644 index 000000000..08a181557 --- /dev/null +++ b/domains/nikaxe.json @@ -0,0 +1,11 @@ +{ + "description": "Place for me to share anything I make", + "repo": "https://github.com/Nikaxe-dev/nikaxe.dev", + "owner": { + "username": "Nikaxe-dev", + "email": "iamnikaxing@gmail.com" + }, + "record": { + "CNAME": "Nikaxe-dev.github.io" + } +} diff --git a/domains/nikenhapsari.json b/domains/nikenhapsari.json new file mode 100644 index 000000000..898df4a5e --- /dev/null +++ b/domains/nikenhapsari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nikenhpsr", + "email": "hpsri.niken@gmail.com" + }, + "record": { + "CNAME": "my-web-7nu.pages.dev" + } +} diff --git a/domains/niki-tiwari.json b/domains/niki-tiwari.json new file mode 100644 index 000000000..ef5c861aa --- /dev/null +++ b/domains/niki-tiwari.json @@ -0,0 +1,11 @@ +{ + "description": "my self niki tiwari", + "repo": "https://github.com/niki-tiwari/niki-tiwari.github.io", + "owner": { + "username": "niki-tiwari", + "email": "" + }, + "record": { + "CNAME": "niki-tiwari.github.io" + } +} diff --git a/domains/nikita.json b/domains/nikita.json index e3685a68a..f1fca510c 100644 --- a/domains/nikita.json +++ b/domains/nikita.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "nikitacontreras", - "email": "elfantoche.tv@gmail.com" - }, - "record": { - "CNAME": "nikitacontreras.github.io" - } - } - +{ + "owner": { + "username": "nikitacontreras", + "email": "elfantoche.tv@gmail.com" + }, + "record": { + "CNAME": "nikitacontreras.github.io" + } +} diff --git a/domains/nikk.json b/domains/nikk.json new file mode 100644 index 000000000..d04237017 --- /dev/null +++ b/domains/nikk.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/bonitoflakez/bonitoflakez.github.io", + "owner": { + "username": "bonitoflakez", + "email": "nikhildhiman9050@gmail.com" + }, + "record": { + "CNAME": "bonitoflakez.github.io" + } +} diff --git a/domains/niklas.json b/domains/niklas.json index a00dff78f..8fb6f7b8d 100644 --- a/domains/niklas.json +++ b/domains/niklas.json @@ -1,11 +1,11 @@ { - "description": "I'm a dev from austria.", + "description": "Dev from Austria who loves Java and the world.", "owner": { - "username": "NiHaiden", - "email": "niklas@haiden.ch", - "twitter": "niklashdev" + "username": "NiHaiden", + "email": "niklas@niklas.tech", + "twitter": "nklsdev" }, "record": { - "URL": "https://nhaiden.dev" + "URL": "https://niklas.tech" } -} +} diff --git a/domains/nikolas.json b/domains/nikolas.json index 891f60c2b..ab016d33d 100644 --- a/domains/nikolas.json +++ b/domains/nikolas.json @@ -1,12 +1,12 @@ { - "description": "My Personal Landing Page!", - "repo": "https://github.com/MuhekoNikolas/p2", - "owner": { - "username": "MuhekoNikolas", - "email": "13nikolusmuheko@gmail.com", - "twitter": "MuhekoNikolas" - }, - "record": { - "CNAME": "muhekonikolas.github.io" - } + "description": "My Personal Landing Page!", + "repo": "https://github.com/MuhekoNikolas/p2", + "owner": { + "username": "MuhekoNikolas", + "email": "13nikolusmuheko@gmail.com", + "twitter": "MuhekoNikolas" + }, + "record": { + "CNAME": "muhekonikolas.github.io" + } } diff --git a/domains/nikolus.json b/domains/nikolus.json index 9f89f9e79..0840f61ce 100644 --- a/domains/nikolus.json +++ b/domains/nikolus.json @@ -1,12 +1,12 @@ { - "description": "My Personal Landing Page!", - "repo": "https://github.com/MuhekoNikolas/MuhekoNikolas.github.io", - "owner": { - "username": "MuhekoNikolas", - "email": "13nikolusmuheko@gmail.com", - "twitter": "MuhekoNikolas" - }, - "record": { - "CNAME": "muhekonikolas.github.io" - } + "description": "My Personal Landing Page!", + "repo": "https://github.com/MuhekoNikolas/MuhekoNikolas.github.io", + "owner": { + "username": "MuhekoNikolas", + "email": "13nikolusmuheko@gmail.com", + "twitter": "MuhekoNikolas" + }, + "record": { + "CNAME": "muhekonikolas.github.io" + } } diff --git a/domains/niksne.json b/domains/niksne.json new file mode 100644 index 000000000..962a60e0f --- /dev/null +++ b/domains/niksne.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NikSneMC", + "email": "contact@niksne.ru" + }, + "record": { + "CNAME": "niksne-ru.pages.dev" + } +} diff --git a/domains/nikymetaa.json b/domains/nikymetaa.json new file mode 100644 index 000000000..47695a8d3 --- /dev/null +++ b/domains/nikymetaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nikyy2", + "email": "anhky581@gmail.com" + }, + "record": { + "CNAME": "28nikyportfolio03.github.io" + } +} diff --git a/domains/nikywelcome.json b/domains/nikywelcome.json new file mode 100644 index 000000000..63ab207d1 --- /dev/null +++ b/domains/nikywelcome.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nikyy2", + "email": "anhky581@gmail.com" + }, + "record": { + "CNAME": "nikytap1n.github.io" + } +} diff --git a/domains/nilashan.json b/domains/nilashan.json new file mode 100644 index 000000000..8fe7bfb3a --- /dev/null +++ b/domains/nilashan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "N-Nilashan", + "email": "informal.nimesh@gmail.com" + }, + "record": { + "URL": "https://n-nilashan.github.io/" + } +} diff --git a/domains/nileshhaldar98.json b/domains/nileshhaldar98.json index 61a7c812c..655b19852 100644 --- a/domains/nileshhaldar98.json +++ b/domains/nileshhaldar98.json @@ -1,12 +1,11 @@ { - "description": "Nilesh Haldar", - "repo": "https://github.com/nileshhaldar98/nileshhaldar98.github.io", - "owner": { - "username": "nileshhaldar98", - "email": "nileshhaldar98@gmail.com" - }, - "record": { - "CNAME": "nileshhaldar98.github.io" - } + "description": "Nilesh Haldar", + "repo": "https://github.com/nileshhaldar98/nileshhaldar98.github.io", + "owner": { + "username": "nileshhaldar98", + "email": "nileshhaldar98@gmail.com" + }, + "record": { + "CNAME": "nileshhaldar98.github.io" } - \ No newline at end of file +} diff --git a/domains/nimesh.json b/domains/nimesh.json new file mode 100644 index 000000000..5df280a08 --- /dev/null +++ b/domains/nimesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "N-Nilashan", + "email": "informal.nimesh@gmail.com" + }, + "record": { + "CNAME": "n-nilashan.github.io" + } +} diff --git a/domains/nimish.json b/domains/nimish.json deleted file mode 100644 index fc3f1a434..000000000 --- a/domains/nimish.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Nimish's Engineering Diary", - "repo": "https://github.com/nimish-gupta/blog", - "owner": { - "username": "nimish-gupta", - "email": "gnimish03@gmail.com" - }, - "record": { - "CNAME": "nimish-gupta.dev" - } -} diff --git a/domains/ninad.json b/domains/ninad.json new file mode 100644 index 000000000..09ed56570 --- /dev/null +++ b/domains/ninad.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "ninadnaik10", + "email": "ninadtechnical@gmail.com" + }, + "repo": "https://github.com/ninadnaik10/ninadnaik10.github.io", + "record": { + "URL": "https://ninadnaik.xyz", + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=ninadtechnical+fe@gmail.com" + } +} diff --git a/domains/nine.json b/domains/nine.json index dca4dedd8..626fa06b4 100644 --- a/domains/nine.json +++ b/domains/nine.json @@ -1,11 +1,10 @@ { - "description": "A passionate Back and Front-end Developer 🚀 Having An Experience Of Building Web And Discord Bots With JavaScript / HTML / CSS / Nodejs / Python And Some Other Cool Libraries And Frameworks.", - "repo": "https://github.com/ninelel", - "record": { - "CNAME": "nineis-adev-production.up.railway.app" - }, "owner": { "username": "NineLEL", "email": "notninelel@gmail.com" + }, + "record": { + "A": ["76.223.55.44"], + "TXT": "deta-verification=DyZWThRbwVx1vudpA5oB8DEekn58LG75" } } diff --git a/domains/ninjastrikers.json b/domains/ninjastrikers.json new file mode 100644 index 000000000..ca39ff806 --- /dev/null +++ b/domains/ninjastrikers.json @@ -0,0 +1,11 @@ +{ + "description": "ninjastrikers.is-a.dev -> own site redirect", + "repo": "https://github.com/ninjastrikers/is-a-dev-register", + "owner": { + "username": "ninjastrikers", + "email": "leonhart@ninjastrikers.net" + }, + "record": { + "URL": "https://ninjastrikers.net" + } +} diff --git a/domains/ninju.json b/domains/ninju.json new file mode 100644 index 000000000..8b7565492 --- /dev/null +++ b/domains/ninju.json @@ -0,0 +1,11 @@ +{ + "description": "Ninju's personal developer website", + "repo": "https://github.com/Ninju69/ninju69.github.io", + "owner": { + "username": "Ninju69", + "email": "inju2692@outlook.com" + }, + "record": { + "CNAME": "ninju69.github.io" + } +} diff --git a/domains/nino.json b/domains/nino.json new file mode 100644 index 000000000..17327b571 --- /dev/null +++ b/domains/nino.json @@ -0,0 +1,13 @@ +{ + "description": "TokisakiNinoVn", + "repo": "https://github.com/TokisakiNinoVn/TokisakiNinoVn.github.io", + "owner": { + "username": "TokisakiNinoVn", + "email": "trieuduytancbg@gmail.com", + "twitter": "_tokisaki_nino", + "discord": "tokisakinino" + }, + "record": { + "CNAME": "TokisakiNinoVn.github.io" + } +} diff --git a/domains/nipul-bhogayat.json b/domains/nipul-bhogayat.json new file mode 100644 index 000000000..10decf4e2 --- /dev/null +++ b/domains/nipul-bhogayat.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/nipul-bhogayat/nipul-bhogayat.github.io", + "owner": { + "username": "nipul-bhogayat", + "email": "" + }, + "record": { + "CNAME": "nipul-bhogayat.github.io" + } +} diff --git a/domains/niransnarayanan.json b/domains/niransnarayanan.json new file mode 100644 index 000000000..0af1bdfbe --- /dev/null +++ b/domains/niransnarayanan.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website", + "owner": { + "username": "nirans2002", + "email": "nirans2002@gmail.com" + }, + "record": { + "CNAME": "niransnarayanan-web.web.app" + } +} diff --git a/domains/nirav-bhut.json b/domains/nirav-bhut.json new file mode 100644 index 000000000..1a2f012b5 --- /dev/null +++ b/domains/nirav-bhut.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/nirav-bhut/nirav-bhut.github.io", + "owner": { + "username": "nirav-bhut", + "email": "" + }, + "record": { + "CNAME": "nirav-bhut.github.io" + } +} diff --git a/domains/nirushan.json b/domains/nirushan.json new file mode 100644 index 000000000..0b97aceeb --- /dev/null +++ b/domains/nirushan.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Website --> nirushan.is-a.dev", + "repo": "https://github.com/nirushan1/nirushan1.github.io", + "owner": { + "username": "nirushan1", + "email": "nirushan.prabaharan@gmail.com", + "twitter": "@tpnirushan" + }, + "record": { + "CNAME": "nirushan1.github.io" + } +} diff --git a/domains/nisarga.json b/domains/nisarga.json index 8bfe90e67..de2dfcef0 100644 --- a/domains/nisarga.json +++ b/domains/nisarga.json @@ -1,12 +1,12 @@ { "description": "Nisarga", - "repo": "https://github.com/nisarga-developer/nisarga-developer.github.io", + "repo": "https://github.com/ni5arga/ni5arga.github.io", "owner": { - "username": "nisarga-developer", + "username": "ni5arga", "email": "adhikarynisarga17@gmail.com", - "twitter": "adhikarynisarga" + "twitter": "ni5arga" }, "record": { - "CNAME": "nisarga-developer.github.io" + "CNAME": "ni5arga.github.io" } } diff --git a/domains/nischay.json b/domains/nischay.json index 70ecfa34d..f0cf44058 100644 --- a/domains/nischay.json +++ b/domains/nischay.json @@ -1,21 +1,24 @@ -{ - "description": "OGGY's Main Website", - "github": "https://github.com/nischay876", - "owner": { - "username": "nischay876", - "email": "nischay876@gmail.com", - "instagram": "nischay_02", - "snapchat": "nischay_02", - "discord": "OGGY#9889" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} +{ + "description": "OGGY's Main Website", + "github": "https://github.com/nischay876", + "owner": { + "username": "nischay876", + "email": "nischay876@gmail.com", + "instagram": "nischay_02", + "snapchat": "nischay_02", + "discord": "OGGY#9889" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/nishan-hamza.json b/domains/nishan-hamza.json new file mode 100644 index 000000000..cdb996869 --- /dev/null +++ b/domains/nishan-hamza.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NishanHamza", + "email": "nishanhamza2@gmail.com" + }, + "record": { + "CNAME": "nishan-hamza.pages.dev" + } +} diff --git a/domains/nishant.json b/domains/nishant.json deleted file mode 100644 index 87c6abc84..000000000 --- a/domains/nishant.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Nishant's website and blog", - "repo": "https://github.com/nishch/nishch.github.io", - "owner": { - "username": "nishch", - "email": "nishantchvedi@gmail.com" - }, - "record": { - "CNAME": "twistedsoft.com" - } -} diff --git a/domains/nishantattrey.json b/domains/nishantattrey.json new file mode 100644 index 000000000..afc7e4038 --- /dev/null +++ b/domains/nishantattrey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nishantattrey07", + "email": "nishantattrey07@gmail.com" + }, + "record": { + "CNAME": "nishantattrey07.github.io" + } +} diff --git a/domains/nishantb.json b/domains/nishantb.json new file mode 100644 index 000000000..e0e505444 --- /dev/null +++ b/domains/nishantb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nishant-Bharwani", + "email": "nbtaylor1031@gmail.com" + }, + "record": { + "URL": "https://nishantdev.netlify.app" + } +} diff --git a/domains/nishin.json b/domains/nishin.json deleted file mode 100644 index 3a4d4b344..000000000 --- a/domains/nishin.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "nishinraj", - "email": "", - "twitter": "nishinrajk" - }, - "record": { - "URL": "https://medium.com/@nishinraj" - } -} diff --git a/domains/nishith.json b/domains/nishith.json new file mode 100644 index 000000000..b10457a21 --- /dev/null +++ b/domains/nishith.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nishith-Savla", + "email": "nishithsavla005@gmail.com" + }, + "record": { + "CNAME": "nishith.tech" + } +} diff --git a/domains/niteshpanthi.json b/domains/niteshpanthi.json new file mode 100644 index 000000000..91962475b --- /dev/null +++ b/domains/niteshpanthi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nieekha", + "email": "nittrashzn@gmail.com" + }, + "record": { + "CNAME": "niteshpanthi.com.np" + } +} diff --git a/domains/nithin.json b/domains/nithin.json new file mode 100644 index 000000000..0c6ea79cc --- /dev/null +++ b/domains/nithin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nithin", + "email": "nithinnikhil582@gmail.com", + "discord": "514353302675259412" + }, + + "record": { + "CNAME": "nithinlycanz.github.io" + } +} diff --git a/domains/nithinbiju.json b/domains/nithinbiju.json new file mode 100644 index 000000000..c6bc83ba1 --- /dev/null +++ b/domains/nithinbiju.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Web Page", + "repo": "https://nithinbiju007.github.io/nithinbiju007.github.io", + "owner": { + "username": "nithinbiju007", + "email": "nithinbijubiss@gmail.com" + }, + "record": { + "CNAME": "nithinbiju007.github.io" + } +} diff --git a/domains/nitin.json b/domains/nitin.json new file mode 100644 index 000000000..a9b62dabf --- /dev/null +++ b/domains/nitin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chess10kp", + "email": "nitinshankarmadhu@gmail.com" + }, + "record": { + "CNAME": "nitinwebsite-bde4d.web.app" + } +} diff --git a/domains/nix.json b/domains/nix.json new file mode 100644 index 000000000..0d1e56db2 --- /dev/null +++ b/domains/nix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "linuxhoe", + "email": "b0t@disroot.org" + }, + "record": { + "CNAME": "linuxhoe.github.io" + } +} diff --git a/domains/nk.json b/domains/nk.json new file mode 100644 index 000000000..73f2d0f17 --- /dev/null +++ b/domains/nk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nkoehring", + "email": "n@koehr.in" + }, + "record": { + "URL": "https://koehr.ing" + } +} diff --git a/domains/nmsderp.json b/domains/nmsderp.json new file mode 100644 index 000000000..7f4f0fa35 --- /dev/null +++ b/domains/nmsderp.json @@ -0,0 +1,11 @@ +{ + "description": "A place for my small projects, and maybe a blog in the future.", + "repo": "https://github.com/nmsderp/nmsderp.github.io", + "owner": { + "username": "nmsderp", + "email": "nmsderp@gmail.com" + }, + "record": { + "CNAME": "nmsderp.github.io" + } +} diff --git a/domains/noahgao.json b/domains/noahgao.json index 6b4d59e51..00a552737 100644 --- a/domains/noahgao.json +++ b/domains/noahgao.json @@ -1,12 +1,11 @@ +{ + "owner": { + "username": "noahziheng", + "email": "ziheng1719@163.com", + "discord": "900791393931362374" + }, - { - "owner": { - "username": "noahziheng", - "email": "noahgaocn@outlook.com" - }, - - "record": { - "CNAME": "noahziheng.github.io" - } - } - + "record": { + "CNAME": "noahziheng.github.io" + } +} diff --git a/domains/noahvocat.json b/domains/noahvocat.json new file mode 100644 index 000000000..56144613f --- /dev/null +++ b/domains/noahvocat.json @@ -0,0 +1,12 @@ +{ + "description": "A dumb kid who like da computer", + "repo": "https://github.com/nvct-website/website/settings/pages", + "owner": { + "username": "Noahvocat (also known as NVCT, Noahvocado or Noahvocados)", + "email": "", + "discord": "noahvocat" + }, + "record": { + "CNAME": "nvct-website.github.io" + } +} diff --git a/domains/nocwarebot.acronical.json b/domains/nocwarebot.acronical.json new file mode 100644 index 000000000..f84af7e3e --- /dev/null +++ b/domains/nocwarebot.acronical.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "record": { + "CNAME": "59893.site.bot-hosting.net" + } +} diff --git a/domains/node-appwrite.json b/domains/node-appwrite.json deleted file mode 100644 index 471f75ff8..000000000 --- a/domains/node-appwrite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "appwrite", - "email": "mohamed.haneefa@agiratech.com" - }, - "record": { - "URL": "https://www.appwrite-node.com" - } -} diff --git a/domains/node.json b/domains/node.json deleted file mode 100644 index 9ca25425f..000000000 --- a/domains/node.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Personal website", - "repo": "https://github.com/node0505/node0505.github.io", - "owner": { - "username": "node0505", - "email": "", - "discord": "node#0505" - }, - "record": { - "CNAME": "node0505.github.io" - } -} diff --git a/domains/node.nvsn.json b/domains/node.nvsn.json new file mode 100644 index 000000000..87bcfb13e --- /dev/null +++ b/domains/node.nvsn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GMR828", + "email": "gmr828@null.net" + }, + "record": { + "A": ["173.212.202.171"] + } +} diff --git a/domains/node.stefdp.json b/domains/node.stefdp.json new file mode 100644 index 000000000..13881f84f --- /dev/null +++ b/domains/node.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/nodirbek.json b/domains/nodirbek.json deleted file mode 100644 index c7098ed61..000000000 --- a/domains/nodirbek.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "Piratebay298", - "email": "piratebay298@gmail.com" - }, - - "record": { - "CNAME": "nodirbek.42web.io" - } - } - diff --git a/domains/noicemath.json b/domains/noicemath.json new file mode 100644 index 000000000..967a99919 --- /dev/null +++ b/domains/noicemath.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "andydrew727", + "email": "0793620@student.osceolaschools.net" + }, + "record": { + "URL": "https://theniceman.netlify.app/" + } +} diff --git a/domains/nom.json b/domains/nom.json new file mode 100644 index 000000000..767b61329 --- /dev/null +++ b/domains/nom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kqcl", + "email": "jscharein.js@gmail.com" + }, + "record": { + "A": ["185.234.69.13"] + } +} diff --git a/domains/nonam4lol.json b/domains/nonam4lol.json new file mode 100644 index 000000000..93c491387 --- /dev/null +++ b/domains/nonam4lol.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nonam4lol", + "email": "literallynoname13@gmail.com" + }, + "record": { + "A": ["45.11.229.211"] + } +} diff --git a/domains/nonograms.talinsharma.json b/domains/nonograms.talinsharma.json new file mode 100644 index 000000000..35128e40d --- /dev/null +++ b/domains/nonograms.talinsharma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TalinTheDev", + "email": "talinsharma.dev@gmail.com" + }, + "record": { + "CNAME": "talinthedev.github.io" + } +} diff --git a/domains/nonomino.json b/domains/nonomino.json new file mode 100644 index 000000000..b8b197662 --- /dev/null +++ b/domains/nonomino.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "nonomino", + "email": "ontharros@gmail.com", + "discord": "937674639881166859" + }, + + "record": { + "CNAME": "nonomino.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/nooz.json b/domains/nooz.json index 261577693..63c941d24 100644 --- a/domains/nooz.json +++ b/domains/nooz.json @@ -1,22 +1,22 @@ { - "description": "Personal portfolio for nooz", - "repo": "https://github.com/NoozSBC/portfolio", - "owner": { - "username": "NoozSBC", - "email": "zhengm58@gmail.com", - "discord": "Nooz#0816" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} + "description": "Personal portfolio for nooz", + "repo": "https://github.com/NoozSBC/portfolio", + "owner": { + "username": "NoozSBC", + "email": "zhengm58@gmail.com", + "discord": "Nooz#0816" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/nopply.json b/domains/nopply.json deleted file mode 100644 index 53efb91d0..000000000 --- a/domains/nopply.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Nopply is-a.dev", - "owner": { - "username": "kornls", - "email": "larryst.korn@gmail.com" - }, - "record": { - "CNAME": "nopply.carrd.co" - } -} - \ No newline at end of file diff --git a/domains/noraa.json b/domains/noraa.json deleted file mode 100644 index 676cad557..000000000 --- a/domains/noraa.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Noraa08", - "email": "antoteje2004@gmail.com" - }, - "record": { - "CNAME": "595a8166-a27b-43e4-848e-da1ce6bcd3f6.id.repl.co" - } - } - diff --git a/domains/norkart.json b/domains/norkart.json new file mode 100644 index 000000000..dc74c575d --- /dev/null +++ b/domains/norkart.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "norkart1", + "email": "navasforwork@gmail.com" + }, + "record": { + "CNAME": "personal-website-26y.pages.dev" + } +} diff --git a/domains/not-a-nerd.json b/domains/not-a-nerd.json deleted file mode 100644 index 67804e42f..000000000 --- a/domains/not-a-nerd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Well, this is my github sub-domain for my future page", - "repo": "https://github.com/0lp/0lp.github.io", - "owner": { - "username": "0lp", - "email": "not.a.nerd0005@gmail.com" - }, - "record": { - "CNAME": "0lp.github.io" - } -} diff --git a/domains/not-ethan.json b/domains/not-ethan.json new file mode 100644 index 000000000..67bd3556a --- /dev/null +++ b/domains/not-ethan.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "not-a-ethan", + "email": "", + "discord": "not_ethan." + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all", + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/notaussie.json b/domains/notaussie.json new file mode 100644 index 000000000..7e0c3e872 --- /dev/null +++ b/domains/notaussie.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site / Portafolio.", + "repo": "https://github.com/NotAussie/NotAussieIsADev", + "owner": { + "username": "NotAussie", + "email": "Aussie_Okay@protonmail.com" + }, + "record": { + "CNAME": "notaussie.github.io" + } +} diff --git a/domains/notcoded.json b/domains/notcoded.json index ecf8531b5..48b8ff214 100644 --- a/domains/notcoded.json +++ b/domains/notcoded.json @@ -1,13 +1,13 @@ { - "description": "use is-a.dev domain", - "repo": "https://github.com/not-coded/not-coded.github.io", - "owner": { - "username": "not-coded", - "email": "", - "discord": "Code#9844", - "discordUserID": "620662953347121163" - }, - "record": { - "CNAME": "not-coded.github.io" - } -} + "description": "use is-a.dev domain", + "repo": "https://github.com/not-coded/not-coded.github.io", + "owner": { + "username": "not-coded", + "email": "", + "discord": "Code#9844", + "discordUserID": "620662953347121163" + }, + "record": { + "CNAME": "not-coded.github.io" + } +} diff --git a/domains/note.json b/domains/note.json new file mode 100644 index 000000000..b53a0cdd3 --- /dev/null +++ b/domains/note.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imimbert", + "email": "2080035494@qq.com" + }, + "record": { + "CNAME": "imimbert.github.io" + } +} diff --git a/domains/notes.json b/domains/notes.json new file mode 100644 index 000000000..116d34bcd --- /dev/null +++ b/domains/notes.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "satindar31", + "email": "satindar@satindar-is.me", + "discord": "713254655999868931" + }, + "record": { + "URL": "https://satindar.is-a.dev" + } +} diff --git a/domains/noteswallah.json b/domains/noteswallah.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/noteswallah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/notfenixio.json b/domains/notfenixio.json new file mode 100644 index 000000000..5d226063b --- /dev/null +++ b/domains/notfenixio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotFenixio", + "email": "josueart40@gmail.com" + }, + "record": { + "CNAME": "notfenixio.github.io" + } +} diff --git a/domains/notfrycek.json b/domains/notfrycek.json new file mode 100644 index 000000000..dc4a9ff8b --- /dev/null +++ b/domains/notfrycek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotFrycek", + "email": "frycek345@gmail.com" + }, + "record": { + "CNAME": "notfrycek.github.io" + } +} diff --git a/domains/nothazz.json b/domains/nothazz.json new file mode 100644 index 000000000..4ed62c874 --- /dev/null +++ b/domains/nothazz.json @@ -0,0 +1,11 @@ +{ + "description": "My personal site", + "repo": "https://github.com/nothazz/nothazz.github.io", + "owner": { + "username": "nothazz", + "email": "hazz73963@gmail.com" + }, + "record": { + "CNAME": "nothazz.github.io" + } +} diff --git a/domains/notjadeja.json b/domains/notjadeja.json index 4b1faf9c7..02f4dce9b 100644 --- a/domains/notjadeja.json +++ b/domains/notjadeja.json @@ -1,20 +1,19 @@ - { - "owner": { - "username": "HalalJadeja", - "email": "9236.stkabirdio@gmail.com" - }, - "record": { - "A": [ - "185.199.110.153", - "185.199.108.153", - "185.199.111.153", - "185.199.109.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } - } - +{ + "owner": { + "username": "HalalJadeja", + "email": "9236.stkabirdio@gmail.com" + }, + "record": { + "A": [ + "185.199.110.153", + "185.199.108.153", + "185.199.111.153", + "185.199.109.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/notrana.json b/domains/notrana.json index d4aff135a..64f23b2eb 100644 --- a/domains/notrana.json +++ b/domains/notrana.json @@ -1,10 +1,7 @@ { - "description": "Link to my portfolio site.", - "repo": "https://github.com/notrana/notrana.github.io", "owner": { - "username": "notrana", - "email": "mail@notrana.tk", - "discord": "Rana Asad.py#5925" + "username": "NotRana", + "email": "benyameen75@gmail.com" }, "record": { "CNAME": "notrana.github.io" diff --git a/domains/notsora.json b/domains/notsora.json deleted file mode 100644 index 62bc4d44e..000000000 --- a/domains/notsora.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "OraSora", - "email": "S05A@outlook.com" - }, - "record": { - "CNAME": "c20d9bfa-52f3-47e1-a43f-326fe4079288.repl.co" - } -} diff --git a/domains/nova.json b/domains/nova.json new file mode 100644 index 000000000..6dfa7862f --- /dev/null +++ b/domains/nova.json @@ -0,0 +1,11 @@ +{ + "description": "nova.is-a.dev", + "owner": { + "username": "LunarN0v4", + "email": "nova@zeusteam.dev", + "discord": "novad3v" + }, + "record": { + "CNAME": "zeusteam.dev" + } +} diff --git a/domains/novafox.json b/domains/novafox.json new file mode 100644 index 000000000..ffbf10de3 --- /dev/null +++ b/domains/novafox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "novathefox", + "email": "foxsdenyt@gmail.com" + }, + "record": { + "CNAME": "foxsdenyt-github-io.onrender.com" + } +} diff --git a/domains/novampr.json b/domains/novampr.json new file mode 100644 index 000000000..89e756e16 --- /dev/null +++ b/domains/novampr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Novampr", + "email": "LimeDEV8756@gmail.com" + }, + "record": { + "CNAME": "novampr.github.io" + } +} diff --git a/domains/noxsin.json b/domains/noxsin.json index 19be530cb..349e4c1ea 100644 --- a/domains/noxsin.json +++ b/domains/noxsin.json @@ -4,7 +4,7 @@ "owner": { "username": "komysh", "email": "arcteac@gmail.com", - "telegram": "@mentolbot" + "telegram": "mentolbot" }, "record": { "CNAME": "komysh.github.io" diff --git a/domains/nozura.json b/domains/nozura.json new file mode 100644 index 000000000..9efa74196 --- /dev/null +++ b/domains/nozura.json @@ -0,0 +1,11 @@ +{ + "description": "a cool portfolio site from _Novandra", + "repo": "https://github.com/inozura/inozura.github.io", + "owner": { + "username": "inozura", + "email": "nodhzen@gmail.com" + }, + "record": { + "CNAME": "inozura.github.io" + } +} diff --git a/domains/nsh.json b/domains/nsh.json index 6e9bb7e32..6a57bfd2f 100644 --- a/domains/nsh.json +++ b/domains/nsh.json @@ -1,12 +1,15 @@ -{ - "owner": { - "username": "priyanshprajapat", - "email": "priy@nsh.is-.dev", - "twitter": "oyepriyansh" - }, - "description": "mail domain", - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } - } +{ + "owner": { + "username": "oyepriyansh", + "email": "oyepriyansh@hotmail.com", + "twitter": "oyepriyansh" + }, + "description": "mail domain", + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/ntc-edm.json b/domains/ntc-edm.json deleted file mode 100644 index 534cb3ace..000000000 --- a/domains/ntc-edm.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "thanhcong2k7", - "email": "nhocpeacock@gmail.com" - }, - "record": { - "CNAME": "kmdev.carrd.co" - } - } - \ No newline at end of file diff --git a/domains/ntech.json b/domains/ntech.json new file mode 100644 index 000000000..fd04049d3 --- /dev/null +++ b/domains/ntech.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NTechsoftware", + "email": "finnzi151@gmail.com" + }, + "record": { + "CNAME": "ntechservices.xyz" + } +} diff --git a/domains/ntfy.ravener.json b/domains/ntfy.ravener.json new file mode 100644 index 000000000..829548d3a --- /dev/null +++ b/domains/ntfy.ravener.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ravener", + "email": "ravener.anime@gmail.com", + "twitter": "RavenRavener", + "discord": "292690616285134850" + }, + "record": { + "A": ["132.145.196.17"] + } +} diff --git a/domains/ntfy.stefdp.json b/domains/ntfy.stefdp.json new file mode 100644 index 000000000..9f2b1dbbb --- /dev/null +++ b/domains/ntfy.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/nthduc.json b/domains/nthduc.json new file mode 100644 index 000000000..1bdc76b52 --- /dev/null +++ b/domains/nthduc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nthduc", + "email": "nguyenthaiduc0212@gmail.com" + }, + "record": { + "CNAME": "xb00925c3.custom.b4a.run" + } +} diff --git a/domains/ntmusic.json b/domains/ntmusic.json new file mode 100644 index 000000000..bb1377a14 --- /dev/null +++ b/domains/ntmusic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gunawan092w", + "email": "gunawan092w@gmail.com" + }, + "record": { + "CNAME": "ntmusic.github.io" + } +} diff --git a/domains/nulitas.json b/domains/nulitas.json new file mode 100644 index 000000000..45657366b --- /dev/null +++ b/domains/nulitas.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nulitas", + "email": "ndrakita@gmail.com", + "discord": "@nulitas" + }, + + "record": { + "CNAME": "nulitas.github.io" + } +} diff --git a/domains/null.json b/domains/null.json index 6fe085431..c2fdcdfdd 100644 --- a/domains/null.json +++ b/domains/null.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Sudo-null7", - "email": "philippeparr38@gmail.com" - }, - "record": { - "CNAME": "null.parr.lol" - } - } - +{ + "owner": { + "username": "Sudo-null7", + "email": "philippeparr38@gmail.com" + }, + "record": { + "CNAME": "null.parr.lol" + } +} diff --git a/domains/numerius.json b/domains/numerius.json new file mode 100644 index 000000000..554faea37 --- /dev/null +++ b/domains/numerius.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EmperorNumerius", + "email": "krishnamohanmeda@gmail.com" + }, + "record": { + "URL": "https://numeriusdevwebsite.vercel.app/" + } +} diff --git a/domains/nunya-9018.json b/domains/nunya-9018.json index 7f79066dd..e6210cd5c 100644 --- a/domains/nunya-9018.json +++ b/domains/nunya-9018.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "Nunya-9018", + "email": "007youdontknowme@gmail.com" + }, - { - "owner": { - "username": "Nunya-9018", - "email": "007youdontknowme@gmail.com" - }, - - "record": { - "CNAME": "nunya-9018.up.railway.app" - } - } - \ No newline at end of file + "record": { + "CNAME": "nunya-9018.up.railway.app" + } +} diff --git a/domains/nutworks-team.json b/domains/nutworks-team.json new file mode 100644 index 000000000..784d1e830 --- /dev/null +++ b/domains/nutworks-team.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rightburrow", + "email": "rightburrowyt@gmail.com" + }, + "record": { + "URL": "https://nutworks-team.neocities.org" + } +} diff --git a/domains/nvme0n1p.json b/domains/nvme0n1p.json new file mode 100644 index 000000000..b1101c134 --- /dev/null +++ b/domains/nvme0n1p.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lbr77", + "email": "me@nvme0n1p.dev" + }, + + "record": { + "CNAME": "homepagen.pages.dev" + } +} diff --git a/domains/nvrxstdwrth.json b/domains/nvrxstdwrth.json new file mode 100644 index 000000000..fc107f74b --- /dev/null +++ b/domains/nvrxstdwrth.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "HIlight3R", + "email": "", + "discord": "632272741000544259", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WwWL6rfhXZA0dVr8hvLSkevzpSY1ETrC-HjSa2C7RLxujUUwlyIwjhugowOuLMIGn2j_nJLy0vmFf-NrekykpLpsJdbQ5KeeW-YnnGL5Oj9waXYeBqofQ9HMGNERSmMdZig6gkRXcGu_mSbkqByt6Hye4StQ_5OzUOw5-IRnhZEWZmdW92rsiHbPb1FxQZ_0JzO3pusOwpIm3du9SbOLOS8EYp5wCjxJJQWIhQVbbf2zz38-kklX5XkL9aIJgyMVXdPUN0OwWG3zkVuAsofQamwsT9PM3cmNcij4v4VDRy23hkViQuBSkExUW5-GANGHsgmvULxc2XLt-34FPPpcGQ.o_hc0F4i2CbgXEizGhwbfA.Gq3lOGxqc_cmX5sQ_Qh1iZ_GXeuSPmnjhGimjVn5gjQXMBVcgn7EFWtEmNjMgvZ84GXfUTVdSjGSI1YIZf0eY6rizgkVojxDgrop0SSoAdvtHjcTxS-tlO9oUQxH5fa9.T5TSx4g4kGrd6g8KwX_T-g" + }, + + "record": { + "A": ["65.21.61.55"] + } + } + \ No newline at end of file diff --git a/domains/nvyrsta.json b/domains/nvyrsta.json new file mode 100644 index 000000000..b14ba9f50 --- /dev/null +++ b/domains/nvyrsta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nvyrsta", + "email": "natali.vyrsta@gmail.com" + }, + "record": { + "CNAME": "nvyrsta.github.io" + } +} diff --git a/domains/nx.json b/domains/nx.json new file mode 100644 index 000000000..32399d810 --- /dev/null +++ b/domains/nx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jadfoq", + "email": "jadfoq@getgoogleoff.me" + }, + "record": { + "URL": "https://nx.obl.ong" + } +} diff --git a/domains/nxb1t.json b/domains/nxb1t.json new file mode 100644 index 000000000..b252cee6f --- /dev/null +++ b/domains/nxb1t.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Blog", + "repo": "https://github.com/nxb1t/nxb1t.github.io", + "owner": { + "username": "nxb1t", + "email": "nxb1t@proton.me", + "twitter": "nxb1t4n6" + }, + "record": { + "CNAME": "nxb1t.github.io" + } +} diff --git a/domains/nxnlab.json b/domains/nxnlab.json new file mode 100644 index 000000000..4c6d1cd7a --- /dev/null +++ b/domains/nxnlab.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NxnRmz", + "email": "nxnrmz@gmail.com" + }, + "record": { + "CNAME": "nxnrmz.github.io" + } +} diff --git a/domains/nxrmqlly.json b/domains/nxrmqlly.json new file mode 100644 index 000000000..403ae35f2 --- /dev/null +++ b/domains/nxrmqlly.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website", + "repo": "https://github.com/nxrmqlly/nxrmqlly.github.io", + "owner": { + "username": "nxrmqlly", + "email": "ritam.das3110@outlook.com", + "twitter": "" + }, + "record": { + "CNAME": "nxrmqlly.github.io" + } +} diff --git a/domains/nyan.json b/domains/nyan.json index 2320dfa1e..8a583bfaa 100644 --- a/domains/nyan.json +++ b/domains/nyan.json @@ -2,7 +2,7 @@ "owner": { "username": "aeongdesu", "email": "", - "revolt": "@Nyan", + "revolt": "Nyan", "discord": "Bread#2635", "note": "discord id: 548821619661864962" }, diff --git a/domains/nyda.json b/domains/nyda.json new file mode 100644 index 000000000..34cf412fe --- /dev/null +++ b/domains/nyda.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Nydauron", + "email": "jarethgomes@gmail.com" + }, + + "record": { + "CNAME": "jarethgomes.com" + } +} diff --git a/domains/nyel.json b/domains/nyel.json index 66403dd00..25bbf1c4b 100644 --- a/domains/nyel.json +++ b/domains/nyel.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "nyelnizy", + "email": "yhiamdan@gmail.com" + }, - { - "owner": { - "username": "nyelnizy", - "email": "yhiamdan@gmail.com" - }, - - "record": { - "CNAME": "nyelnizy.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "nyelnizy.github.io" + } +} diff --git a/domains/nyx.json b/domains/nyx.json new file mode 100644 index 000000000..fa64313aa --- /dev/null +++ b/domains/nyx.json @@ -0,0 +1,11 @@ +{ + "description": "Blog for my personal thoughts and projects", + "repo": "https://github.com/devnyxie/devnyxie.github.io", + "owner": { + "username": "devnyxie", + "email": "timbusinez@gmail.com" + }, + "record": { + "CNAME": "devnyxie.github.io" + } + } \ No newline at end of file diff --git a/domains/nziie.json b/domains/nziie.json index 5153f53af..124abb7b4 100644 --- a/domains/nziie.json +++ b/domains/nziie.json @@ -6,6 +6,6 @@ "email": "exeyst@gmail.com" }, "record": { - "CNAME": "nziie3.github.io" + "CNAME": "edge.redirect.pizza" } } diff --git a/domains/o.json b/domains/o.json new file mode 100644 index 000000000..b08792abe --- /dev/null +++ b/domains/o.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "omsenjalia", + "email": "om@maintainers.is-a.dev" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/oandbtech-chat.json b/domains/oandbtech-chat.json new file mode 100644 index 000000000..5815fb617 --- /dev/null +++ b/domains/oandbtech-chat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bhaskaraa45", + "email": "bhaskarmandal369@gmail.com" + }, + "record": { + "A": ["20.198.8.42"] + } +} diff --git a/domains/oandbtech.json b/domains/oandbtech.json new file mode 100644 index 000000000..5815fb617 --- /dev/null +++ b/domains/oandbtech.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bhaskaraa45", + "email": "bhaskarmandal369@gmail.com" + }, + "record": { + "A": ["20.198.8.42"] + } +} diff --git a/domains/objectrecognisation.syntaxloopers.json b/domains/objectrecognisation.syntaxloopers.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/objectrecognisation.syntaxloopers.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/oc.json b/domains/oc.json new file mode 100644 index 000000000..da3053a49 --- /dev/null +++ b/domains/oc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/oceannetwork.json b/domains/oceannetwork.json new file mode 100644 index 000000000..3a9465b6e --- /dev/null +++ b/domains/oceannetwork.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ikcaaft", + "email": "mitchelblokker@hotmail.com" + }, + "record": { + "URL": "https://7b5d5049-e5ab-47a5-93c2-14b263d69fce-00-2y8olb6cg2med.janeway.replit.dev/index.html" + } +} diff --git a/domains/ocloo.json b/domains/ocloo.json deleted file mode 100644 index 057da463e..000000000 --- a/domains/ocloo.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "dev0cloo", - "email": "etor.ocloo@gmail.com" - }, - "record": { - "URL": "https://dev0cloo.netlify.app" - } - } - \ No newline at end of file diff --git a/domains/odanilo.json b/domains/odanilo.json new file mode 100644 index 000000000..f3a2aeee1 --- /dev/null +++ b/domains/odanilo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oculosdanilo", + "email": "oculosdanilo@gmail.com" + }, + "record": { + "CNAME": "odanilo.web.app" + } +} diff --git a/domains/odi.json b/domains/odi.json new file mode 100644 index 000000000..127a862ef --- /dev/null +++ b/domains/odi.json @@ -0,0 +1,11 @@ +{ + "description": "is-a.dev subdomain for my portfolio", + "repo": "https://github.com/vauth/hueco", + "owner": { + "username": "vauth", + "email": "ivuxey@gmail.com" + }, + "record": { + "CNAME": "vauth.github.io" + } +} diff --git a/domains/ofer.json b/domains/ofer.json new file mode 100644 index 000000000..a2ee9c1d6 --- /dev/null +++ b/domains/ofer.json @@ -0,0 +1,11 @@ +{ + "description": "Ofer Sadan", + "repo": "https://github.com/ofersadan85/portfolio", + "owner": { + "username": "ofersadan85", + "email": "ofersadan85@gmail.com" + }, + "record": { + "URL": "https://ofersadan85.github.io/portfolio/" + } +} diff --git a/domains/ofersadan.json b/domains/ofersadan.json index 42ce352c6..9ba117ee3 100644 --- a/domains/ofersadan.json +++ b/domains/ofersadan.json @@ -8,4 +8,4 @@ "record": { "URL": "https://github.com/ofersadan85" } -} \ No newline at end of file +} diff --git a/domains/ofv.json b/domains/ofv.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/ofv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/ohcrazy.json b/domains/ohcrazy.json index 3eebaaba9..cc239d507 100644 --- a/domains/ohcrazy.json +++ b/domains/ohcrazy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "mrcrazii", - "email": "milhanlahir321@gmail.com" - }, - "record": { - "CNAME": "mrcrazii.github.io" - } + "owner": { + "username": "mrcrazii", + "email": "milhanlahir321@gmail.com" + }, + "record": { + "CNAME": "mrcrazii.github.io" + } } diff --git a/domains/ohdy.json b/domains/ohdy.json new file mode 100644 index 000000000..a837e86bd --- /dev/null +++ b/domains/ohdy.json @@ -0,0 +1,17 @@ +{ + "owner": { + "username": "ohdy518", + "email": "ohdy518@gmail.com" + }, + "record": { + "A": [ + "172.66.47.126", + "172.66.44.130" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=ohdy518@gmail.com" + } +} diff --git a/domains/ohqte.json b/domains/ohqte.json new file mode 100644 index 000000000..6f9cd7441 --- /dev/null +++ b/domains/ohqte.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ohqte", + "email": "ohqte@proton.me" + }, + "record": { + "URL": "https://ohqte.vercel.app", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/oioioi.json b/domains/oioioi.json new file mode 100644 index 000000000..71d078448 --- /dev/null +++ b/domains/oioioi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VaibhavSys", + "email": "vaibhavsys@protonmail.com" + }, + "record": { + "CNAME": "azltvzbg.infinityfree.com" + } +} diff --git a/domains/oirnoir.json b/domains/oirnoir.json deleted file mode 100644 index 40175d026..000000000 --- a/domains/oirnoir.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "OIRNOIR", - "email": "", - "discord": "OIRNOIR#0032" - }, - "record": { - "URL": "https://oirnoir.dev" - } -} diff --git a/domains/okan12300.json b/domains/okan12300.json new file mode 100644 index 000000000..9b671930a --- /dev/null +++ b/domains/okan12300.json @@ -0,0 +1,12 @@ +{ + "description": "Just trying to be a Software Developer", + "repo": "https://github.com/okan12300/okan12300.github.io", + "owner": { + "username": "okan12300", + "email": "okanakd89@outlook.com", + "twitter": "okanakd12" + }, + "record": { + "CNAME": "okan12300.github.io" + } +} diff --git a/domains/okinea.json b/domains/okinea.json new file mode 100644 index 000000000..5b83bc6b2 --- /dev/null +++ b/domains/okinea.json @@ -0,0 +1,16 @@ +{ + "description": "Okinea Dev website", + "repo": "https://github.com/okineadev", + "owner": { + "username": "okineadev", + "email": "81070564+okineadev@users.noreply.github.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/ole.json b/domains/ole.json deleted file mode 100644 index 47cf2b984..000000000 --- a/domains/ole.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "ole.is-a.dev", - "repo": "https://github.com/olebohmbach/olebohmbach.github.io", - "owner": { - "username": "olenohmbach", - "email": "ole@ole-is-live.de", - "twitter": "OleBohmbach" - }, - "record": { - "CNAME": "ole-is-live.de" - } -} diff --git a/domains/oleg.json b/domains/oleg.json index b7b5df0d9..f562d3775 100644 --- a/domains/oleg.json +++ b/domains/oleg.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "olegrumiancev", + "email": "oleg.rumiancev@gmail.com" + }, - { - "owner": { - "username": "olegrumiancev", - "email": "oleg.rumiancev@gmail.com" - }, - - "record": { - "URL": "https://olegrumiancev.github.io" - } - } - \ No newline at end of file + "record": { + "URL": "https://olegrumiancev.github.io" + } +} diff --git a/domains/oli.json b/domains/oli.json index 1baba7315..cdf4baa26 100644 --- a/domains/oli.json +++ b/domains/oli.json @@ -1,11 +1,9 @@ { "owner": { - "username": "qyful", - "email": "", - "twitter": "Qyful", - "discord": "Qyful#1800" + "username": "hxntaish", + "email": "juliettepoisson3@gmail.com" }, "record": { - "CNAME": "cb41d586-dc17-4f5d-b336-2c93504644e4.id.repl.co" + "A": ["185.171.202.187"] } } diff --git a/domains/olivia.json b/domains/olivia.json new file mode 100644 index 000000000..6dd26072b --- /dev/null +++ b/domains/olivia.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/olivi-r/olivi-r.github.io", + "owner": { + "username": "olivi-r", + "email": "olivia.r.dev@gmail.com", + "discord": "723626729247342662" + }, + "record": { + "CNAME": "olivi-r.github.io" + } +} diff --git a/domains/om-auti.json b/domains/om-auti.json new file mode 100644 index 000000000..f6bfd70ec --- /dev/null +++ b/domains/om-auti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hOMie03", + "email": "autiom3123@gmail.com" + }, + "record": { + "URL": "https://om-auti.vercel.app/" + } +} diff --git a/domains/om.json b/domains/om.json new file mode 100644 index 000000000..9eef67dec --- /dev/null +++ b/domains/om.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "omsenjalia", + "email": "", + "OWL":"eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RROLuTVz1Yiu7gYQ78NhdEWblxDBcdAtgXSrSKBX4s-6C15Gbg1gvdalVJRUFfhvt7FQ1HEtB7Wwz0Rdn1Jxk7Eqxp2s116sCmWwviCoh8RfWUEkWt9k4csRDjBtnwijFrfSv5gjf67gAe1dyoryQjg1ZFf9dlmwmaQtiJNKVkjlBsNAYNph9-CsYK8a0-TI-GVXung0rFjd-222TQij66CYBd7qitAvTPEypCBarB2SyBrN30wLTS9NjB-bSpmJZwcZO8CQ2obcYdMfVQ0nZgXBJhkbwjtGWfWTS-3AnCeLF48mT-9DCsVoraLb6DLoJoPB-9g4dim-tSZwC5pQ.OsIglUJ8OXge3R5CTVoEEw.YS-YtdmeJZKK1TEkERBJlH9RKdKcMynvcB5PrUsKXY4FJhgfrPoqF_JOAXO4tyYqwJzWnNM0hfd4WxqLi3KmjXToHxRAzdiFu1f4iiBfX68ABHoycHXkose4AHWe54a8.UazMc8kLEVvxHs2YN0DC3Q" + }, + "record": { + "MX": ["mx.zoho.in", "mx2.zoho.in", "mx3.zoho.in"], + "TXT": "v=spf1 include:zoho.in ~all" + } +} diff --git a/domains/omairr.json b/domains/omairr.json new file mode 100644 index 000000000..f459e1a4e --- /dev/null +++ b/domains/omairr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "omaiirr", + "email": "crazyomairennab@gmail.com" + }, + "record": { + "CNAME": "omaiirr.github.io" + } +} diff --git a/domains/omar.json b/domains/omar.json new file mode 100644 index 000000000..53cae4161 --- /dev/null +++ b/domains/omar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheGr8Coder", + "email": "omarrushil@gmail.com" + }, + "record": { + "URL": "https://github.com/thegr8coder/" + } +} diff --git a/domains/omer.json b/domains/omer.json deleted file mode 100644 index a4850d21c..000000000 --- a/domains/omer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "omercup's personal website", - "repo": "https://github.com/omercup/omercup.github.io", - "owner": { - "username": "omercup", - "email": "", - "twitter": "heisomercup" - }, - "record": { - "CNAME": "omercup.github.io" - } -} \ No newline at end of file diff --git a/domains/omera.json b/domains/omera.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/omera.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/omshahane.json b/domains/omshahane.json new file mode 100644 index 000000000..5cc6814bb --- /dev/null +++ b/domains/omshahane.json @@ -0,0 +1,11 @@ +{ + "description": "Om Shahanee' personal developer website", + "repo": "https://github.com/shahane806/shahane806.github.io", + "owner": { + "username": "shahane806", + "email": "om.p.shahane@gmail.com" + }, + "record": { + "CNAME": "shahaneom-portfolio.vercel.app" + } +} diff --git a/domains/one.json b/domains/one.json new file mode 100644 index 000000000..f9fae92aa --- /dev/null +++ b/domains/one.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Vibred", + "email": "vibred@pm.me", + "discord": "1169947990551699568" + }, + + "record": { + "CNAME": "t-rex-runner.pages.dev" + } +} diff --git a/domains/onlive.json b/domains/onlive.json new file mode 100644 index 000000000..6c3c7dd8f --- /dev/null +++ b/domains/onlive.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "onlive1337", + "email": "", + "discord": "onlive" + }, + "record": { + "CNAME": "onlive1337.github.io" + } +} diff --git a/domains/onthepixel.json b/domains/onthepixel.json new file mode 100644 index 000000000..f958265f9 --- /dev/null +++ b/domains/onthepixel.json @@ -0,0 +1,11 @@ +{ + "description": "OnThePixel.net Dont play allown", + "repo": "https://github.com/TinyBrickBoy/register/", + "owner": { + "username": "TinyBrickBoy", + "email": "leo@scherr.xyz" + }, + "record": { + "CNAME": "play.onthepixel.net" + } +} diff --git a/domains/onvy.json b/domains/onvy.json index ced27b4bd..42e0a84bf 100644 --- a/domains/onvy.json +++ b/domains/onvy.json @@ -1,10 +1,13 @@ { - "owner": { - "username": "eiobc3a0", - "email": "eiobc3a0@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx1.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "eiobc3a0", + "email": "eiobc3a0@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx1.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/oofy.json b/domains/oofy.json deleted file mode 100644 index acb141c9d..000000000 --- a/domains/oofy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Oofquest's Website!", - "repo": "https://github.com/oofquest", - "owner": { - "username": "oofquest", - "email": "oofquest@cub0rd.xyz" - }, - "record": { - "CNAME": "9655e52b-5dc4-45ba-8e74-8d942aa9ea33.repl.co" - } -} diff --git a/domains/oogway.json b/domains/oogway.json new file mode 100644 index 000000000..c7d15aef4 --- /dev/null +++ b/domains/oogway.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ActualMasterOogway", + "email": "williasfun@gmail.com" + }, + "record": { + "URL": "https://actualmasteroogway.github.io" + } +} diff --git a/domains/oops.json b/domains/oops.json new file mode 100644 index 000000000..7ed4cb71a --- /dev/null +++ b/domains/oops.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "finnickguo", + "email": "finnickguo@gmail.com" + }, + "record": { + "A": ["150.109.115.77"] + } +} diff --git a/domains/oopshnik.json b/domains/oopshnik.json new file mode 100644 index 000000000..b05372371 --- /dev/null +++ b/domains/oopshnik.json @@ -0,0 +1,13 @@ +{ + "description": "Personal website for me", + "repo": "https://github.com/oopshnik/oopshnik.github.io", + "owner": { + "username": "oopshnik", + "email": "", + "discord": "1186159079178108982" + }, + "record": { + "CNAME": "oopshnik.github.io" + } + +} \ No newline at end of file diff --git a/domains/opaayush.json b/domains/opaayush.json deleted file mode 100644 index a672cc42b..000000000 --- a/domains/opaayush.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Aayu5h's Website", - "repo": "https://github.com/OpAayush/opaayush.github.io", - "owner": { - "username": "OpAayush", - "email": "aayushmagrawal@gmail.com", - "discord": "Aayu5h#1737" - }, - "record": { - "CNAME": "opaayush.pages.dev" - } -} diff --git a/domains/opaps.json b/domains/opaps.json new file mode 100644 index 000000000..6b3edc504 --- /dev/null +++ b/domains/opaps.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ais1175", + "email": "wutau179@gmail.com" + }, + "record": { + "A": ["43.229.135.123"] + } +} diff --git a/domains/openmalus.json b/domains/openmalus.json new file mode 100644 index 000000000..17080a9e7 --- /dev/null +++ b/domains/openmalus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "openmalus", + "email": "openmalus@proton.me" + }, + "record": { + "A": ["47.99.50.139"] + } +} \ No newline at end of file diff --git a/domains/opott.json b/domains/opott.json new file mode 100644 index 000000000..13d088030 --- /dev/null +++ b/domains/opott.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "opott", + "email": "om.potter09@gmail.com" + }, + "record": { + "URL": "https://opott.github.io", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/optidium.json b/domains/optidium.json new file mode 100644 index 000000000..40b3cea5d --- /dev/null +++ b/domains/optidium.json @@ -0,0 +1,11 @@ +{ + "description": "A little project with the help of my friends", + "repo": "https://github.com/XMODERLIVE/Optidium.github.io", + "owner": { + "username": "XMODERLIVE", + "email": "ka237133@gmail.com" + }, + "record": { + "CNAME": "XMODERLIVE.github.io" + } +} diff --git a/domains/orangc.json b/domains/orangc.json new file mode 100644 index 000000000..da3053a49 --- /dev/null +++ b/domains/orangc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/orange.json b/domains/orange.json new file mode 100644 index 000000000..da3053a49 --- /dev/null +++ b/domains/orange.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/orangeleaf36.json b/domains/orangeleaf36.json new file mode 100644 index 000000000..60636ccd3 --- /dev/null +++ b/domains/orangeleaf36.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OrangeLeafDev", + "email": "caluzajacob07@gmail.com" + }, + "record": { + "CNAME": "orangeleafdev.github.io" + } +} diff --git a/domains/orangethewell.json b/domains/orangethewell.json new file mode 100644 index 000000000..64308a242 --- /dev/null +++ b/domains/orangethewell.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orangethewell", + "email": "orangethewell@gmail.com" + }, + + "record": { + "A": ["85.31.231.4"] + } +} diff --git a/domains/orcapet.json b/domains/orcapet.json new file mode 100644 index 000000000..6781ed885 --- /dev/null +++ b/domains/orcapet.json @@ -0,0 +1,13 @@ +{ + "description": "Orca Pet's site", + "repo": "https://github.com/orca-pet3910/orca-pet3910.github.io", + "owner": { + "username": "orca-pet3910", + "email": "user0thenyancat@proton.me", + "discord": "1085633540139532329" + }, + + "record": { + "CNAME": "orca-pet3910.github.io" + } +} diff --git a/domains/oreki.json b/domains/oreki.json deleted file mode 100644 index ef0b4fe0e..000000000 --- a/domains/oreki.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "My Personal Website", - "owner": { - "username": "Oreki-Dev", - "email": "orekidev@gmail.com" - }, - "record": { - "A": ["164.132.74.251", "192.95.42.75"] - } -} diff --git a/domains/os.json b/domains/os.json new file mode 100644 index 000000000..e7ccbeee9 --- /dev/null +++ b/domains/os.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "heyturkiye204", + "email": "", + "discord": "718374283642011728", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YJHWsoIpTsaRjylmi0-c_2BNyuXsWm4cCJRRcnHFOPJkGyeVjNY809QQTzVQQuSoCgynyAv9VMTr54ZVc3AsjChVJWHCOP-Yz9Ajwfpbg1r3rHDtw7srO0RJU3Vp5afUNW4BnLE9pnOHPx_vGXVRb7KvITlAxj8GSKGzPYgm0yG0X5Yv1ZUI7AQ4WKngNl46n-9b0F9cWyTAPGmjeQMC6epBIrWYQQsWWG8Yjtpzfmw_FUipIrmrqkYl1Qy-RFZxtXLR7mTdewioJTFz2aVWKs7EyS4L0ok43yoOnPu6hGk7NOIIOPfLQpa4U2cdJzcCoFiaBeoSQGpXsbX7-JW3tA.CX_ALvG4kKdcCx21vPhwKg.ghxIF1QlhqFsyzeHnNybQDXByjJuvlqxLKMBL-HziRlnqfAxRyfvwCYwqiGM8oUdgwlhMKQxVx_HIH7sRMCdcjkOz04f9bZrzQCxJQvxDkiw0ePfwZgdqIO6ph-k0zQNBBqf40tkL_fNb0nzEq84LQ.Xl_zhcLwxfih4J4_xUuiSA" + }, + + "record": { + "CNAME": "cdn-rsdv-hey.netlify.app" + } + } + \ No newline at end of file diff --git a/domains/otter.json b/domains/otter.json new file mode 100644 index 000000000..651305607 --- /dev/null +++ b/domains/otter.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website!", + "repo": "https://github.com/OtterCodes101/OtterCodes101.github.io", + "owner": { + "username": "OtterCodes101", + "email": "oliver.anderson4435@gmail.com" + }, + "record": { + "CNAME": "ottercodes101.github.io" + } +} diff --git a/domains/outroninja.json b/domains/outroninja.json new file mode 100644 index 000000000..3a60b9d0d --- /dev/null +++ b/domains/outroninja.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "outroninja", + "email": "outroninjaa@gmail.com" + }, + "record": { + "URL": "https://outroninja.vercel.app" + } +} diff --git a/domains/overshifted.json b/domains/overshifted.json new file mode 100644 index 000000000..9cb618047 --- /dev/null +++ b/domains/overshifted.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OverShifted", + "email": "prowidgs@gmail.com" + }, + "record": { + "CNAME": "overshifted.github.io" + } +} diff --git a/domains/owain.json b/domains/owain.json deleted file mode 100644 index bf9063817..000000000 --- a/domains/owain.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Owain's Website", - "owner": { - "username": "owjothegreat", - "email": "owain.jones74@gmail.com" - }, - "record": { - "CNAME": "0wain.xyz" - } -} diff --git a/domains/oways.json b/domains/oways.json new file mode 100644 index 000000000..f92b8c324 --- /dev/null +++ b/domains/oways.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "owayys", + "email": "", + "discord": "247290252941590528", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FflqC5vxx2tCbycFekRghumtS6tE1lpXYp9pVYDYBmgjkR4j7MqsQ4foZrVZpX2zGQb4q5j1-v5drvUyH0etOCQkWyoMKbd6a_McTXNk-bseqJigoLS5Hcy37-KcN8qg1hkiRs6telGDJuNUErYKS3WO091Dkr1o-o_AsXAM2T-XNTciE1RFexrHcd_LlTSmwWUsubgJ7CnBoBhTNGkI5-L2dL4Sl8lheY7mXNbkVgMgDCoyzE8oHrt_1U0GTXGu9WSaAxaIo-jU5STWfvgdlNElEpti3yhaWHBlSyTueiE183-qVIu5DGUq3OuNz234y2yOY2PS_HvxULLBibSSSA.giN0WBv3jgt9RtOek-GaMQ.98AT5bnunl4fl52ShWBfpwWhAxIhuLvaBK1g6riZm0rZt-d1rFOgRmzW20nX2DWmWRp8SEMFVg7-0M-dNRkdMvGPex_VIy8AHdW2_EmEwcA.TPlreyvul6OSkcaQeosRHw" + }, + "record": { + "CNAME": "owayys.github.io" + } +} diff --git a/domains/owentech.json b/domains/owentech.json new file mode 100644 index 000000000..c7ff567a7 --- /dev/null +++ b/domains/owentech.json @@ -0,0 +1,10 @@ +{ + "description": "Owen's website", + "owner": { + "username": "owentechv", + "email": "dowenx83@gmail.com" + }, + "record": { + "CNAME": "owentechv.github.io" + } +} diff --git a/domains/owl.json b/domains/owl.json new file mode 100644 index 000000000..8a953d3ef --- /dev/null +++ b/domains/owl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "" + }, + "record": { + "CNAME": "p2pb.dev" + } +} diff --git a/domains/owo.json b/domains/owo.json new file mode 100644 index 000000000..479b92cb4 --- /dev/null +++ b/domains/owo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "A": ["18.133.72.105"] + } +} diff --git a/domains/owofied.json b/domains/owofied.json new file mode 100644 index 000000000..9335a7805 --- /dev/null +++ b/domains/owofied.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "owofied", + "email": "xiro@duck.com", + "discord": "owofied" + }, + "record": { + "CNAME": "personal-page-3ps.pages.dev" + } +} diff --git a/domains/owonico.json b/domains/owonico.json new file mode 100644 index 000000000..4e43c078d --- /dev/null +++ b/domains/owonico.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OwoNico", + "email": "nicoytwastaken@gmail.com" + }, + "record": { + "URL": "https://www.owonico.cf" + } +} diff --git a/domains/oxmc.json b/domains/oxmc.json new file mode 100644 index 000000000..9498953b1 --- /dev/null +++ b/domains/oxmc.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "oxmc", + "email": "oxmc7769.mail@gmail.com", + "discord": "oxmc7769" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=contact:oxmc7769.mail@gmail.com,jadenmc:oxmc7769.mail@gmail.com,buisness:oxmc7769.mail@gmail.com" + } +} diff --git a/domains/oxy.json b/domains/oxy.json new file mode 100644 index 000000000..2e82087d2 --- /dev/null +++ b/domains/oxy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xyc0de", + "email": "alexutu49@outlook.com" + }, + "record": { + "CNAME": "0xyc0de.github.io" + } +} diff --git a/domains/oyepriyansh.json b/domains/oyepriyansh.json new file mode 100644 index 000000000..24cb37034 --- /dev/null +++ b/domains/oyepriyansh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oyepriyansh", + "email": "hi@priyansh.app" + }, + "record": { + "CNAME": "priyanshprajapat.pages.dev" + } +} diff --git a/domains/p-kinjal.json b/domains/p-kinjal.json new file mode 100644 index 000000000..e8ca663a9 --- /dev/null +++ b/domains/p-kinjal.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/p-kinjal/p-kinjal.github.io", + "owner": { + "username": "p-kinjal", + "email": "" + }, + "record": { + "CNAME": "p-kinjal.github.io" + } +} diff --git a/domains/p.json b/domains/p.json new file mode 100644 index 000000000..04961f75d --- /dev/null +++ b/domains/p.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Priyansxu", + "email": "cloudypriyanshu@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/p1raidz.json b/domains/p1raidz.json new file mode 100644 index 000000000..d8d72cf51 --- /dev/null +++ b/domains/p1raidz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "p1raidz", + "email": "adithyaalex5@gmail.com" + }, + "record": { + "CNAME": "p1raidz.github.io" + } +} diff --git a/domains/p2m.json b/domains/p2m.json new file mode 100644 index 000000000..b7e29cdbe --- /dev/null +++ b/domains/p2m.json @@ -0,0 +1,13 @@ +{ + "description": "Domain name for me and my friends for our french minecraft server", + "repo": "https://github.com/Philipou/register", + "owner": { + "username": "Philipou", + "email": "philippe.lestrohan@les4vents.eu" + }, + "record": { + "A": [ + "91.224.149.29" + ] + } +} diff --git a/domains/p4bu1.json b/domains/p4bu1.json new file mode 100644 index 000000000..0dd8b3cf5 --- /dev/null +++ b/domains/p4bu1.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "pabu1san", + "email": "", + "discord": "1012270723663925278", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.B9KDLtWYgCT0YDOd4xQyAgKmSaDJipMXSMFCXUe3r7q_5qh08iHTW8mK0BxMQ2bYPKEuMsfAEWwu6t3g4A_kXBb-GSaDvFfggge46WFV-rlPU7Vcc0i4WR8Uonna_y2WZzS9T5JrEnbMC2I7_5JihjAaOzD5Gr2-TCfm4L-Bk6TGLOnkDmj1hmlLsTFe7tHy5BhYgxIWsocbxeBrtRFMSqCUubgIh2MM4sz0QK9wWcIp3orJKDiD2WpdA552gTeUff5nuTQrwgxTwv4Cxy45wOM5E4hc9pvr7k7VB7oG6dNT_5U2WuBEFyaYjH0gHI0kF7exk0m-eLkXOcikLR6M5g.F_Vy2IBlPyy9sf-z76mPTA.F3g-ocOOvvBKyD0ipMYg39QeSck-zJ4d8vKY2bnnBw1tnTmWqPaxU7EJKJKP301gx_L1OoBN3I950LiNUB1SqEN-LrOybjVg-a58SayBT-4._dBIp2VZ_6grZywv78duSg" + }, + + "record": { + "MX": ["mx.forwarding-service.maildim.com"] + } + } + \ No newline at end of file diff --git a/domains/pabitrabanerjee.json b/domains/pabitrabanerjee.json new file mode 100644 index 000000000..dc79866ae --- /dev/null +++ b/domains/pabitrabanerjee.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "PB2204", + "email": "rockstarpabitra2204@gmail.com", + "discord": "1091585182974345366" + }, + + "record": { + "A": ["12.14.243.127"] + } + } + \ No newline at end of file diff --git a/domains/pace.json b/domains/pace.json deleted file mode 100644 index 42b9b1ef9..000000000 --- a/domains/pace.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Place to host all my bio for my spigot plugins", - "repo": "https://github.com/Pace1337", - "owner": { - "username": "Pace1337", - "email": "pacex3123@gmail.com" - }, - "record": { - "CNAME": "pacedev.tk" - } -} diff --git a/domains/pad.json b/domains/pad.json deleted file mode 100644 index a3ae728b5..000000000 --- a/domains/pad.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "aripadrian", - "email": "aripadrian01@gmail.com" - }, - - "record": { - "A": ["209.182.237.31"] - } - } - \ No newline at end of file diff --git a/domains/paddycooper.json b/domains/paddycooper.json index 70f0d932e..c2ec1ce29 100644 --- a/domains/paddycooper.json +++ b/domains/paddycooper.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "PaddyCooper08", + "email": "1210@rgsg.co.uk" + }, - { - "owner": { - "username": "PaddyCooper08", - "email": "1210@rgsg.co.uk" - }, - - "record": { - "CNAME": "paddycooper.surge.sh" - } - } - + "record": { + "CNAME": "paddycooper.surge.sh" + } +} diff --git a/domains/paillat.json b/domains/paillat.json new file mode 100644 index 000000000..b0b6f0bf8 --- /dev/null +++ b/domains/paillat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Paillat-dev", + "email": "me@paillat.dev" + }, + "record": { + "CNAME": "paill.at" + } +} diff --git a/domains/painscreen.json b/domains/painscreen.json new file mode 100644 index 000000000..485c1c44b --- /dev/null +++ b/domains/painscreen.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "iHategithub9000", + "email": "", + "discord": "836012649959522384", + "reddit": "u/ahhlifeeee" + }, + + "record": { + "CNAME": "ihategithub9000.github.io" + } + } + diff --git a/domains/paiva.json b/domains/paiva.json new file mode 100644 index 000000000..1053be08a --- /dev/null +++ b/domains/paiva.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dpaiv0", + "email": "david.paiva+github@my.istec.pt", + "discord": "764778654626349086" + }, + + "record": { + "CNAME": "dpaiv0.github.io" + } +} diff --git a/domains/pal-rakesh-2.json b/domains/pal-rakesh-2.json new file mode 100644 index 000000000..237c9d611 --- /dev/null +++ b/domains/pal-rakesh-2.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/pal-rakesh/pal-rakesh.github.io", + "owner": { + "username": "pal-rakesh", + "email": "rakesh.pal@truestaz.com" + }, + "record": { + "CNAME": "pal-rakesh.github.io" + } +} diff --git a/domains/palak.json b/domains/palak.json new file mode 100644 index 000000000..5ff9fe6e2 --- /dev/null +++ b/domains/palak.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/palekiox.json b/domains/palekiox.json new file mode 100644 index 000000000..7ea3e8f9c --- /dev/null +++ b/domains/palekiox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "palekiox", + "email": "zigzagrpg@gmail.com" + }, + "record": { + "CNAME": "palekiox.github.io" + } +} diff --git a/domains/pana.json b/domains/pana.json new file mode 100644 index 000000000..711d51ad5 --- /dev/null +++ b/domains/pana.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ANDREIP211109", + "email": "panaandreimihai@gmail.com" + }, + "record": { + "A": ["79.118.191.216"] + } +} diff --git a/domains/pancakes.json b/domains/pancakes.json deleted file mode 100644 index 21fb01415..000000000 --- a/domains/pancakes.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "pancak3boy", - "email": "Robloxisnotcoolanymore@gmail.com" - }, - "record": { - "CNAME": "c65a3e15-40a1-4799-8fac-2d5866ebd587.id.repl.co" - } -} diff --git a/domains/panchal-jatin.json b/domains/panchal-jatin.json new file mode 100644 index 000000000..cabc09772 --- /dev/null +++ b/domains/panchal-jatin.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/panchal-jatin/panchal-jatin.github.io", + "owner": { + "username": "panchal-jatin", + "email": "" + }, + "record": { + "CNAME": "panchal-jatin.github.io" + } +} diff --git a/domains/panchal-meet.json b/domains/panchal-meet.json new file mode 100644 index 000000000..c9d5c9c40 --- /dev/null +++ b/domains/panchal-meet.json @@ -0,0 +1,11 @@ +{ + "description": "This is a panchal meet", + "repo": "https://github.com/panchal-meet/panchal-meet.github.io", + "owner": { + "username": "panchal-meet", + "email": "" + }, + "record": { + "CNAME": "panchal-meet.github.io" + } +} diff --git a/domains/pancystudio.json b/domains/pancystudio.json new file mode 100644 index 000000000..f629e97b1 --- /dev/null +++ b/domains/pancystudio.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ImTurbis", + "email": "", + "discord": "711329342193664012", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YzG5hvJGZpP7QEGLttKRRJ3aa_voQNqUebTs1wZb7kD-XVzdggqVkYzmW9nVppmqunMUZ9PumQGb_2LdjaB1UskfrxRb7z0NXdycFgZ2n44ADDhAFaYruOTLznglg02ni5htnfwmQSJtPjSMRa65foPNBGCqQFdQYCsx0DaD84havLlCvHMUdKZOgaJWgO75kfaf2toO7cbK_EXl17EN53gH54zixIKMNwSi_Ug8mEScECN_HJ7cRM5yu91IVdyQiwxemT5Ze01bAl6KmlCmJWcnO2-9qqvuv82K2WxHoKlLU-nmI77jJ_vr0w6rkxYeb1zW28LV6EKKCKfU1oYAog.B6Ik8FFPJoBvR9YZCw3dMw.xyWEoyFUZwTLIGiacwhtx0k3LJgQEd3vxuHZ9z9eAAHtSfJzeTzWvxCLiDnJ4Qwq00sDbfR0PNzvGBc9IoI002h0pBnAwp9cMDZHZk5biGo.enRsEf6i-7nlTeVgZSgGZA" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/panda.json b/domains/panda.json deleted file mode 100644 index d0e173900..000000000 --- a/domains/panda.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "s3mant", - "email": "contact@semant.is-a.dev" - }, - "description": "redirection to main web.", - "record": { - "URL": "https://semant.panda.is-a.dev" - } -} diff --git a/domains/pandaninjas.json b/domains/pandaninjas.json index b33450452..1ef2031c4 100644 --- a/domains/pandaninjas.json +++ b/domains/pandaninjas.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "pandaninjas", - "email": "admin@malwarefight.gq" - }, - "record": { - "CNAME": "pandaninjas.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "pandaninjas", + "email": "admin@malwarefight.gq" + }, + "record": { + "CNAME": "pandaninjas.github.io" + } +} diff --git a/domains/pande.json b/domains/pande.json new file mode 100644 index 000000000..4bb8f779b --- /dev/null +++ b/domains/pande.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PandeCode", + "email": "pandeshawnbenjamin@gmail.com" + }, + "record": { + "URL": "https://pandecode.github.io/" + } +} diff --git a/domains/panel-luxxy.json b/domains/panel-luxxy.json new file mode 100644 index 000000000..cd6b418a9 --- /dev/null +++ b/domains/panel-luxxy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Luxxy-GF", + "email": "deniedaddicted@gmail.com" + }, + + "record": { + "CNAME": "panel.luxxy.xyz" + } +} diff --git a/domains/panel.nvsn.json b/domains/panel.nvsn.json new file mode 100644 index 000000000..87bcfb13e --- /dev/null +++ b/domains/panel.nvsn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GMR828", + "email": "gmr828@null.net" + }, + "record": { + "A": ["173.212.202.171"] + } +} diff --git a/domains/panel.shing.json b/domains/panel.shing.json new file mode 100644 index 000000000..f5081904f --- /dev/null +++ b/domains/panel.shing.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ShingSemicolon", + "email": "Shing.XD.0602@gmail.com" + }, + "record": { + "A": ["129.213.85.212"], + "AAAA": [ + "2603:c020:400d:3e89:ae49:1b0b:470c:5f33" + ] + } +} diff --git a/domains/panel.stefdp.json b/domains/panel.stefdp.json new file mode 100644 index 000000000..884b42e7a --- /dev/null +++ b/domains/panel.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "A": ["194.60.201.37"] + } +} diff --git a/domains/panel.xrap1dx.json b/domains/panel.xrap1dx.json new file mode 100644 index 000000000..e72f1038b --- /dev/null +++ b/domains/panel.xrap1dx.json @@ -0,0 +1,14 @@ +{ + "description": "making my cdn!!!", + "repo": "https://github.com/xrap1dx?tab=repositories", + "owner": { + "username": "xrap1dx", + "discord": "xrap1dx", + "email": "" + }, + "record": { + "A": [ + "69.30.249.53" + ] + } +} diff --git a/domains/pansy.json b/domains/pansy.json index 927f76798..0ad4dc48e 100644 --- a/domains/pansy.json +++ b/domains/pansy.json @@ -1,9 +1,9 @@ { "owner": { - "username": "pansy27", - "email": "uselessshogun99@gmail.com" + "username": "pansy27", + "email": "uselessshogun99@gmail.com" }, "record": { - "CNAME": "pansy27.github.io" + "CNAME": "pansy27.github.io" } } diff --git a/domains/paperstar.json b/domains/paperstar.json new file mode 100644 index 000000000..66e10fd24 --- /dev/null +++ b/domains/paperstar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "2paperstar", + "email": "lee@paperst.ar" + }, + "record": { + "CNAME": "paperst.ar" + } +} diff --git a/domains/papyrus.json b/domains/papyrus.json index d9ff0c33d..a2bec565f 100644 --- a/domains/papyrus.json +++ b/domains/papyrus.json @@ -4,7 +4,7 @@ "owner": { "username": "Papyrus0444", "email": "vladbogdanmicu@gmail.com" -}, + }, "record": { "CNAME": "papyrus0444.github.io" } diff --git a/domains/paris.node.shing.json b/domains/paris.node.shing.json new file mode 100644 index 000000000..37c8f2d2a --- /dev/null +++ b/domains/paris.node.shing.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ShingSemicolon", + "email": "Shing.XD.0602@gmail.com" + }, + "record": { + "A": ["141.145.205.47"], + "AAAA": [ + "2603:c027:c003:6aa9:a974:e2d6:f01e:dea8" + ] + } +} diff --git a/domains/park.json b/domains/park.json new file mode 100644 index 000000000..bcb38fc1d --- /dev/null +++ b/domains/park.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "parknich", + "email": "", + "discord": "556850704770138114", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.RMlyfY4mGtUlaUQkOaxoaNdyfU8ldylf06Qtl7tYhrU_ivjmCSHks5pygP37oEYyHN6NfenY9FntFxaddwKCbb5eGeGs7cO4M213MPs9agSU-3NzvjLg6Kya5bjVrlhcF8KVXihW5ITNp4MUA20gPuM2EfImenDGnwe0azXhSuiFbaDvak1Yg51jy3eAnKi3OUgPF8TfOhHO_Hu4bGg5yq87P8Sp1X7w6ZhThgX83ZUCdH16xHIa_oUhnT7AQZIrZlLyT6SSDRg7oryZVPLlD1E-BrqEQlZXPuZPtDRxrNXmISCSorBCDd5fGAAEHN_RG_8qs2ysJoDTQ9E_g5v23g.8cbDPSl8X94DpagdJchXVw.rSdmAuGBzGk33r1XVbD6BkPI6CAi7BQ5lrXfTmuEHXvNELMytmHQL4uGzXgyKoAsQYbpRhwtoug6vE48VA2ydL08AgwlX3rdp9W_20E_gtgWZu36-2Diqy75WHbl567B.uQeFnbQ5lEE89z14li7Rig" + }, + + "record": { + "CNAME": "bio.parknich.xyz" + } + } + diff --git a/domains/parmar-dixita.json b/domains/parmar-dixita.json new file mode 100644 index 000000000..77e100cf3 --- /dev/null +++ b/domains/parmar-dixita.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/parmar-dixita/parmar-dixita.github.io", + "owner": { + "username": "parmar-dixita", + "email": "" + }, + "record": { + "CNAME": "parmar-dixita.github.io" + } +} diff --git a/domains/parovoz.json b/domains/parovoz.json new file mode 100644 index 000000000..656f0dd5d --- /dev/null +++ b/domains/parovoz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "parov0z", + "email": "andrey.android7890@mail.ru" + }, + "record": { + "CNAME": "parovoz.tw1.ru" + } +} diff --git a/domains/parpok.json b/domains/parpok.json new file mode 100644 index 000000000..d25878efe --- /dev/null +++ b/domains/parpok.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "parpok", + "email": "patrykpucilowski40@gmail.com" + }, + "record": { + "CNAME": "parpok.xyz" + } +} diff --git a/domains/parrot.json b/domains/parrot.json new file mode 100644 index 000000000..1caa482a4 --- /dev/null +++ b/domains/parrot.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "34.120.54.55" + ], + "AAAA": [ + "2600:1901:0:6d85::" + ] + } +} diff --git a/domains/parsa.json b/domains/parsa.json deleted file mode 100644 index a9b3f03e1..000000000 --- a/domains/parsa.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "xX-MoonWalker-Xx", - "email": "aparat.mmr.game@gmail.com" - }, - "record": { - "CNAME": "www.parsa-alidoust.ir" - } -} diff --git a/domains/parsewar.json b/domains/parsewar.json new file mode 100644 index 000000000..549590ce7 --- /dev/null +++ b/domains/parsewar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AtharvParsewar", + "email": "atharvparsewar@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/pascal-jacq.json b/domains/pascal-jacq.json new file mode 100644 index 000000000..4ddba26bf --- /dev/null +++ b/domains/pascal-jacq.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Pascal-Jacq", + "email": "pascal.jacq29@gmail.com" + }, + + "record": { + "A": ["80.119.158.22"] + } +} diff --git a/domains/pashigin.json b/domains/pashigin.json new file mode 100644 index 000000000..213201524 --- /dev/null +++ b/domains/pashigin.json @@ -0,0 +1,12 @@ +{ + "description": "Subdomain for personal use to present myself", + "repo": "https://github.com/Pashigin/register", + "owner": { + "username": "pashigin", + "email": "", + "telegram": "@pashigin" + }, + "record": { + "A": ["75.2.60.5"] + } +} diff --git a/domains/pasindu.json b/domains/pasindu.json new file mode 100644 index 000000000..1aadc9eba --- /dev/null +++ b/domains/pasindu.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "PasinduUpendra", + "email": "pasindu@toadcreatives.com" + }, + "record": { + "URL": "https://github.com/pasinduupendra", + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=pasindu@toadcreatives.com" + } +} diff --git a/domains/passadissubmari.json b/domains/passadissubmari.json new file mode 100644 index 000000000..f264feb98 --- /dev/null +++ b/domains/passadissubmari.json @@ -0,0 +1,11 @@ +{ + "description": "Passadís Submarí", + "repo": "https://github.com/Cucusise/passadissummari", + "owner": { + "username": "Cucusise", + "email": "cucusise@gmail.com" + }, + "record": { + "CNAME": "cucusise.github.io" + } +} diff --git a/domains/passed.json b/domains/passed.json new file mode 100644 index 000000000..787131223 --- /dev/null +++ b/domains/passed.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Dn1w", + "email": "", + "discord": "923208452581511199", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YrCOGlefwiQLBjZKVl7fCH8lBcSZ35Dqye3FZvKNdBzwwVnVoB9EtUx9yxkKvMejmqPtBnc-Vd0qtwqMTP_XeA7N1Pb_uAXP5LJ0eVAK6A5dQV7PHD_91Zx9R1olSeJgxJpIXHM1VueDHDlqNSLy-iYE9xnF64NAMBwDBNW_NpRYzYJZdN4xNHx2fnHVeKq2U1YA643JGLDZCGSDzvPxDl6jYGsOP3ik56upOEbzlztzhcbEP1e7Tf16KHCGaObgu3gEhfQGixenW-FjBORCpAn1ECiGwSnbDZQgS-gcqKQmVagPT2AQTzd5yKIAqb6zO1vNySa_KXWwobON5rJ7lA.jvJTlSgE2hlML0SOblB-tw.hVJGFeU0buh0JsV4LSwoV0Gcc9HGnyiyXAklqJ9zgaDx5FX-vLT7eUoV0FdwKtMWr3bxbZ6FAWHAjJMv1vx5LQLnYHjDfDzG0-SpjY33y_M.6KvQ4vVBC9v0af7qCsc5mw" + }, + + "record": { + "CNAME": "yuwindev.github.io" + } + } + \ No newline at end of file diff --git a/domains/patel-darshit.json b/domains/patel-darshit.json new file mode 100644 index 000000000..8e42f01e5 --- /dev/null +++ b/domains/patel-darshit.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/Patel-Darshit/patel-darshit.github.io", + "owner": { + "username": "Patel-Darshit", + "email": "darshit.patel@truestaz.com" + }, + "record": { + "CNAME": "patel-darshit.github.io" + } +} diff --git a/domains/patel-jatin.json b/domains/patel-jatin.json new file mode 100644 index 000000000..386fbd802 --- /dev/null +++ b/domains/patel-jatin.json @@ -0,0 +1,11 @@ +{ + "description": "My dev website", + "repo": "https://github.com/patel-jatin/patel-jatin.github.io", + "owner": { + "username": "patel-jatin", + "email": "" + }, + "record": { + "CNAME": "patel-jatin.github.io" + } +} diff --git a/domains/patel-kalpesh.json b/domains/patel-kalpesh.json new file mode 100644 index 000000000..53516dd29 --- /dev/null +++ b/domains/patel-kalpesh.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/Patle-Kalpesh/Patle-Kalpesh.github.io", + "owner": { + "username": "Patle-Kalpesh", + "email": "kalpesh.patel@truestaz.com" + }, + "record": { + "CNAME": "patle-kalpesh.github.io" + } +} diff --git a/domains/patel-komal.json b/domains/patel-komal.json new file mode 100644 index 000000000..5e6625cb2 --- /dev/null +++ b/domains/patel-komal.json @@ -0,0 +1,11 @@ +{ + "description": "This is komal patel", + "repo": "https://github.com/patel-komal/patel-komal.github.io", + "owner": { + "username": "patel-komal", + "email": "" + }, + "record": { + "CNAME": "patel-komal.github.io" + } +} diff --git a/domains/patel-monal.json b/domains/patel-monal.json new file mode 100644 index 000000000..1a9a80ccb --- /dev/null +++ b/domains/patel-monal.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/patel-monal/patel-monal.github.io", + "owner": { + "username": "patel-monal", + "email": "" + }, + "record": { + "CNAME": "patel-monal.github.io" + } +} diff --git a/domains/patel-parthiv.json b/domains/patel-parthiv.json new file mode 100644 index 000000000..7aecc1de4 --- /dev/null +++ b/domains/patel-parthiv.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/patel-parthiv/patel-parthiv.github.io", + "owner": { + "username": "patel-parthiv", + "email": "" + }, + "record": { + "CNAME": "patel-parthiv.github.io" + } +} diff --git a/domains/patel-radhika.json b/domains/patel-radhika.json new file mode 100644 index 000000000..2edb9a59e --- /dev/null +++ b/domains/patel-radhika.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/patel-radhika/patel-radhika.github.io", + "owner": { + "username": "patel-radhika", + "email": "radhika.patel@truestaz.com" + }, + "record": { + "CNAME": "patel-radhika.github.io" + } +} diff --git a/domains/patelhardik-p.json b/domains/patelhardik-p.json new file mode 100644 index 000000000..b517a8601 --- /dev/null +++ b/domains/patelhardik-p.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/patelhardik-p/patelhardik-p.github.io", + "owner": { + "username": "patelhardik-p", + "email": "" + }, + "record": { + "CNAME": "patelhardik-p.github.io" + } +} diff --git a/domains/pathan-imran.json b/domains/pathan-imran.json index d3ef1a6bf..0c79195de 100644 --- a/domains/pathan-imran.json +++ b/domains/pathan-imran.json @@ -8,4 +8,4 @@ "record": { "CNAME": "pathan-imran.github.io" } -} +} diff --git a/domains/pati.json b/domains/pati.json new file mode 100644 index 000000000..d091acdad --- /dev/null +++ b/domains/pati.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "EmojiPati", + "email": "bestami355karakaya@gmail.com" + }, + + "record": { + "CNAME": "termoji.pages.dev" + } +} diff --git a/domains/patin.json b/domains/patin.json new file mode 100644 index 000000000..3e04759c5 --- /dev/null +++ b/domains/patin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "patin_osu", + "email": "patinopsu@gmail.com", + "discord": "patin_osu" + }, + "record": { + "A": ["5.78.24.5"] + } +} diff --git a/domains/patrick.json b/domains/patrick.json deleted file mode 100644 index 91fa2b4c4..000000000 --- a/domains/patrick.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Have a look to my web site please ;-;", - "repo": "https://github.com/PatrickChoDev", - "owner": { - "username": "PatrickChoDev", - "email": "devpatrick.cho@gmail.com" - }, - "record": { - "A": ["140.83.36.254"] - } -} diff --git a/domains/patrickbrophy.json b/domains/patrickbrophy.json deleted file mode 100644 index b9aed7f9a..000000000 --- a/domains/patrickbrophy.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "washedPat", - "email": "patrick.brophy2@gmail.com" - }, - "record": { - "CNAME": "patrickbrophy.dev" - } - } - diff --git a/domains/patrickzhou.json b/domains/patrickzhou.json index f056a828e..39ef1e18c 100644 --- a/domains/patrickzhou.json +++ b/domains/patrickzhou.json @@ -2,7 +2,7 @@ "owner": { "username": "patrickzhou1234", "email": "", - "discord": "Moist Nugget#5050" + "discord": "moist__nugget" }, "record": { "CNAME": "patrickzhou1234.github.io" diff --git a/domains/patuiqx.json b/domains/patuiqx.json new file mode 100644 index 000000000..0ddf5ea4a --- /dev/null +++ b/domains/patuiqx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "GyShinA", + "email": "MonicaGyoShin@gmail.com" + }, + + "record": { + "CNAME": "gyshina.github.io" + } +} diff --git a/domains/paul.json b/domains/paul.json index 4c0dc502d..8628d3dbe 100644 --- a/domains/paul.json +++ b/domains/paul.json @@ -1,11 +1,11 @@ { - "description": "My Personal Landing Page!", - "repo": "https://github.com/NotKaskus", - "owner": { - "username": "NotKaskus", - "email": "kaskus45@protonmail.com" - }, - "record": { - "CNAME": "notkaskus.github.io" - } + "description": "My Personal Landing Page!", + "repo": "https://github.com/NotKaskus", + "owner": { + "username": "NotKaskus", + "email": "kaskus45@protonmail.com" + }, + "record": { + "URL": "https://paulandrew.vercel.app/" + } } diff --git a/domains/paula.json b/domains/paula.json new file mode 100644 index 000000000..560940d55 --- /dev/null +++ b/domains/paula.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "pbabbicola", + "email": "paula.babbicola@gmail.com" + }, + "record": { + "A": ["185.26.156.151"], + "AAAA": [ + "2a00:d0c0:200:0:64fc:adff:fef0:8a72" + ] + } +} diff --git a/domains/pavan.json b/domains/pavan.json new file mode 100644 index 000000000..5b77857fa --- /dev/null +++ b/domains/pavan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PavanKumarGurram", + "email": "gurrampavankumar1@gmail.com" + }, + "record": { + "URL": "https://pavangurram.com" + } +} diff --git a/domains/pavi.json b/domains/pavi.json new file mode 100644 index 000000000..4b7da0724 --- /dev/null +++ b/domains/pavi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rekcah-pavi", + "email": "paviththanravi@gmail.com" + }, + + "record": { + "CNAME": "rekcah-pavi.github.io" + } +} diff --git a/domains/pay.gornostay25.json b/domains/pay.gornostay25.json deleted file mode 100644 index e884103ae..000000000 --- a/domains/pay.gornostay25.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "gornostay25", - "email": "me@gornostay25.is-a.dev" - }, - "record": { - "CNAME": "d3ef8e32-cbba-4a23-a450-08aa46054a6b.repl.co" - } -} diff --git a/domains/payidar.json b/domains/payidar.json deleted file mode 100644 index d07bddf54..000000000 --- a/domains/payidar.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Payidars's personal developer website", - "repo": "https://github.com/payidarofficial", - "owner": { - "username": "payidar", - "email": "mertcelik2196@gmail.com" - }, - "record": { - "URL": "https://payidarofficial.xyz" - } -} diff --git a/domains/pc.json b/domains/pc.json new file mode 100644 index 000000000..f883e4562 --- /dev/null +++ b/domains/pc.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "MCPE-PC", + "email": "maxpjh0528@naver.com", + "discord": "381062768385720321" + }, + + "record": { + "CNAME": "edge.redirect.pizza" + } + } + \ No newline at end of file diff --git a/domains/peachy.json b/domains/peachy.json new file mode 100644 index 000000000..fbd6a2a82 --- /dev/null +++ b/domains/peachy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Peachysy", + "email": "minecraft350star@gmail.com", + "discord": "781577857511587900" + }, + + "record": { + "CNAME": "peachysy.github.io" + } +} diff --git a/domains/pedrito.json b/domains/pedrito.json new file mode 100644 index 000000000..363c949ca --- /dev/null +++ b/domains/pedrito.json @@ -0,0 +1,12 @@ +{ + "description": "For my private VPS ", + "repo": "https://github.com/Ranojay1/Ranojay1.github.io", + "owner": { + "username": "Ranojay1", + "email": "pegomsan@gmail.com", + "twitter": "Pedro929953698" + }, + "record": { + "CNAME": "Ranojay1.github.io" + } +} diff --git a/domains/pekly.json b/domains/pekly.json deleted file mode 100644 index 88a56ee92..000000000 --- a/domains/pekly.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Pekly", - "email": "oodhuu57@gmail.com" - }, - "record": { - "URL": "https://dsc.gg/pekly" - } - } - \ No newline at end of file diff --git a/domains/peme969.json b/domains/peme969.json new file mode 100644 index 000000000..cab3805f5 --- /dev/null +++ b/domains/peme969.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "peme969", + "email": "mrcoderpeme@gmail.com" + }, + "record": { + "CNAME": "peme969.github.io" + } +} diff --git a/domains/pemtshewang.json b/domains/pemtshewang.json index f070b9552..f226df434 100644 --- a/domains/pemtshewang.json +++ b/domains/pemtshewang.json @@ -1,12 +1,12 @@ { - "description": "The subdomain will be used for my github portfolio :)", - "repo": "https://github.com/pemtshewang/pemtshewang.github.io", - "owner": { - "username": "pemtshewang", - "email": "pemtshewang500@gmail.com", - "twitter": "pemtshewang_4" - }, - "record": { - "CNAME": "pemtshewang.github.io" - } -} + "description": "The subdomain will be used for my github portfolio :)", + "repo": "https://github.com/pemtshewang/pemtshewang.github.io", + "owner": { + "username": "pemtshewang", + "email": "pemtshewang500@gmail.com", + "twitter": "pemtshewang_4" + }, + "record": { + "CNAME": "pemtshewang.github.io" + } +} diff --git a/domains/penguin.json b/domains/penguin.json index 9fa7ca004..c80386ab7 100644 --- a/domains/penguin.json +++ b/domains/penguin.json @@ -5,18 +5,16 @@ }, "record": { "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], "MX": [ "mx.zoho.com.au", "mx2.zoho.com.au", "mx3.zoho.com.au" ], "TXT": "v=spf1 include:zoho.com.au ~all" - } - } diff --git a/domains/penguinmod.json b/domains/penguinmod.json index f3d5831ec..33031215f 100644 --- a/domains/penguinmod.json +++ b/domains/penguinmod.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "FreshPenguin112", - "email": "freshpenguin1@outlook.com" - }, - "record": { - "URL": "https://penguinmod.github.io/PenguinMod-Gui/editor.html" - } + "owner": { + "username": "FreshPenguin112", + "email": "freshpenguin1@outlook.com" + }, + "record": { + "URL": "https://penguinmod.github.io/PenguinMod-Gui/editor.html" + } } diff --git a/domains/penieldialu.json b/domains/penieldialu.json index 4669f534a..0024b3ba9 100644 --- a/domains/penieldialu.json +++ b/domains/penieldialu.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "bilwifi", + "email": "dialundamapeniel@gmail.com" + }, - { - "owner": { - "username": "bilwifi", - "email": "dialundamapeniel@gmail.com" - }, - - "record": { - "URL": "https://penieldialu.carrd.co" - } - } - \ No newline at end of file + "record": { + "URL": "https://penieldialu.carrd.co" + } +} diff --git a/domains/penieldialundama.json b/domains/penieldialundama.json index 4669f534a..0024b3ba9 100644 --- a/domains/penieldialundama.json +++ b/domains/penieldialundama.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "bilwifi", + "email": "dialundamapeniel@gmail.com" + }, - { - "owner": { - "username": "bilwifi", - "email": "dialundamapeniel@gmail.com" - }, - - "record": { - "URL": "https://penieldialu.carrd.co" - } - } - \ No newline at end of file + "record": { + "URL": "https://penieldialu.carrd.co" + } +} diff --git a/domains/pepe.ravener.json b/domains/pepe.ravener.json new file mode 100644 index 000000000..829548d3a --- /dev/null +++ b/domains/pepe.ravener.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ravener", + "email": "ravener.anime@gmail.com", + "twitter": "RavenRavener", + "discord": "292690616285134850" + }, + "record": { + "A": ["132.145.196.17"] + } +} diff --git a/domains/peroxide.json b/domains/peroxide.json new file mode 100644 index 000000000..89ea0bacb --- /dev/null +++ b/domains/peroxide.json @@ -0,0 +1,12 @@ +{ + "description": "I would like to use this subdomain for my website, but mostly for a custom email.", + "repo": "https://github.com/oShinyMew/oShinyMew.github.io", + "owner": { + "username": "oShinyMew", + "email": "modelcafe14266@gmail.com", + "discord": "hydrogenpero.xide" + }, + "record": { + "CNAME": "oShinyMew.github.io" + } +} diff --git a/domains/perry.json b/domains/perry.json new file mode 100644 index 000000000..75cf831ac --- /dev/null +++ b/domains/perry.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "1Brenny1", + "email": "brendanrcg@gmail.com", + "discord": "616746774744268820" + }, + + "record": { + "CNAME": "brenny.zip" + } + } + \ No newline at end of file diff --git a/domains/peter.json b/domains/peter.json new file mode 100644 index 000000000..de5cf2fb3 --- /dev/null +++ b/domains/peter.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pjschinske", + "email": "pjschinske@gmail.com" + }, + + "record": { + "CNAME": "pjschinske.github.io" + } +} diff --git a/domains/petla.json b/domains/petla.json deleted file mode 100644 index 8cfc57a18..000000000 --- a/domains/petla.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "Petla-reboot", - "email": "petla@s246.xrea.com", - "twitter": "Petla_reboot" - }, - - "record": { - "A": ["160.251.151.77"], - "MX": ["s246.xrea.com"] - } - } diff --git a/domains/ph7ntom.json b/domains/ph7ntom.json new file mode 100644 index 000000000..f8ab53cc1 --- /dev/null +++ b/domains/ph7ntom.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PH7N", + "email": "hdgameplaybbtt@gmail.com" + }, + "record": { + "URL": "https://ph7n.github.io/ph7ntom-web/" + } +} diff --git a/domains/phamanhtien.json b/domains/phamanhtien.json new file mode 100644 index 000000000..02a56d28c --- /dev/null +++ b/domains/phamanhtien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "phamanhtiencutis1", + "email": "nhincaiditmemay888@gmail.com" + }, + "record": { + "CNAME": "181.ip.ply.gg" + } +} diff --git a/domains/phamvandien.json b/domains/phamvandien.json deleted file mode 100644 index 25523490e..000000000 --- a/domains/phamvandien.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "D-Jukie", - "email": "phamvandienofficial@gmail.com" - }, - "record": { - "CNAME": "a6b7d456-4a75-42ba-b316-2b5b50199973.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/phantom.json b/domains/phantom.json deleted file mode 100644 index 19d8b51b3..000000000 --- a/domains/phantom.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My is-a-dev sub-domain Credentials! :D", - "repo": "https://github.com/SealedSaucer", - "owner": { - "username": "SealedSaucer", - "email": "sealedsaucer@gmail.com" - }, - "record": { - "CNAME": "phantom.pages.dev" - } -} diff --git a/domains/phaze.json b/domains/phaze.json deleted file mode 100644 index 9d9fc19d9..000000000 --- a/domains/phaze.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "phaze-the-dumb", - "email": "phaze@duck.com" - }, - "record": { - "A": ["132.226.127.70"] - } - } - diff --git a/domains/pheonix.json b/domains/pheonix.json deleted file mode 100644 index db0f430a4..000000000 --- a/domains/pheonix.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Pheonix14", - "email": "sd490405@gmail.com" - }, - "record": { - "A": ["164.132.74.251"] - } - } - \ No newline at end of file diff --git a/domains/pi.cupglass.json b/domains/pi.cupglass.json new file mode 100644 index 000000000..fede3d816 --- /dev/null +++ b/domains/pi.cupglass.json @@ -0,0 +1,15 @@ +{ + "description": "My base website. Very epik tbh 💥💥", + "repo": "https://github.com/cupglassdev/", + "note": "no repo, this is just my actual nginx server", + "owner": { + "username": "cupglassdev", + "email": "", + "twitter": "https://x.com/cupglassdev", + "lahelu": "https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev" + }, + "record": { + "URL": "https://cupglasspi.is-a.dev" + } +} diff --git a/domains/pi19044.json b/domains/pi19044.json new file mode 100644 index 000000000..2bfff3a1c --- /dev/null +++ b/domains/pi19044.json @@ -0,0 +1,12 @@ +{ + "description": "PrelevatedInsider19044's website", + "repo": "https://github.com/pi19044/pi19044.github.io", + "owner": { + "username": "pi19044", + "email": "membermadde.insiddev25120@hotmail.com" + }, + + "record": { + "CNAME": "pi19044.github.io" + } +} diff --git a/domains/pic.cfp.json b/domains/pic.cfp.json new file mode 100644 index 000000000..e1ae41f05 --- /dev/null +++ b/domains/pic.cfp.json @@ -0,0 +1,11 @@ +{ + "description": "Private Immich server", + "owner": { + "username": "cfpwastaken", + "email": "", + "discord": "cfp (318394797822050315)" + }, + "record": { + "CNAME": "dyn.picoscratch.de" + } +} diff --git a/domains/picloud.json b/domains/picloud.json index 0f5bc2e1e..2f37fb1d4 100644 --- a/domains/picloud.json +++ b/domains/picloud.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "hb0313", - "email": "hbhandwaldar@gmail.com" - }, - "record": { - "URL": "https://sites.google.com/view/pihome1/home" - } - } - +{ + "owner": { + "username": "hb0313", + "email": "hbhandwaldar@gmail.com" + }, + "record": { + "URL": "https://sites.google.com/view/pihome1/home" + } +} diff --git a/domains/pics.imide.json b/domains/pics.imide.json new file mode 100644 index 000000000..d8ab3cdc6 --- /dev/null +++ b/domains/pics.imide.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "imide", + "email": "", + "discord": "555915168932954112" + }, + "record": { + "CNAME": "ksso4kc.141.148.65.26.sslip.io" + } +} diff --git a/domains/pie.json b/domains/pie.json new file mode 100644 index 000000000..db9478823 --- /dev/null +++ b/domains/pie.json @@ -0,0 +1,11 @@ +{ + "description": "pii4's personal website", + "repo": "https://github.com/4pii4/4pii4.github.io", + "owner": { + "username": "4pii4", + "email": "naivenevaii@gmail.com" + }, + "record": { + "CNAME": "4pii4.github.io" + } +} diff --git a/domains/piero.json b/domains/piero.json deleted file mode 100644 index 2071cbb34..000000000 --- a/domains/piero.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Piero Is a Dev", - "repo": "https://replit.com/@piemadd/pierois-adev", - "owner": { - "username": "pieromqwerty", - "email": "isadev@piemadd.com" - }, - "record": { - "CNAME": "588d327b-9fb6-4484-856e-0477ffef0efe.repl.co" - } -} diff --git a/domains/pig.json b/domains/pig.json new file mode 100644 index 000000000..f9b5d424d --- /dev/null +++ b/domains/pig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ipigtw", + "email": "diegogamingtw@gmail.com" + }, + "record": { + "CNAME": "react-app-djl.pages.dev" + } +} diff --git a/domains/piker.json b/domains/piker.json new file mode 100644 index 000000000..934c5bc40 --- /dev/null +++ b/domains/piker.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Piker98988", + "email": "piker98@tutanota.com" + }, + + "record": { + "CNAME": "pikerdevdomain.pages.dev" + } +} diff --git a/domains/pin.sx9.json b/domains/pin.sx9.json deleted file mode 100644 index de9853f60..000000000 --- a/domains/pin.sx9.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "SX-9", - "email": "hello@mail.sx9.is-a.dev" - }, - "record": { - "CNAME": "wdhdns.com" - } - } - \ No newline at end of file diff --git a/domains/pinage404.json b/domains/pinage404.json new file mode 100644 index 000000000..297c9310d --- /dev/null +++ b/domains/pinage404.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pinage404", + "email": "pinage404+is-a.dev@gmail.com" + }, + "record": { + "CNAME": "pinage404.gitlab.io" + } +} diff --git a/domains/pingoda.json b/domains/pingoda.json index ad9cbb10a..21a9cc9b0 100644 --- a/domains/pingoda.json +++ b/domains/pingoda.json @@ -1,12 +1,12 @@ { - "description": "Personal Portfolio for Pingoda", - "repo": "https://github.com/Pingoda/pingoda.github.io", - "owner": { - "username": "Pingoda", - "email": "francescoclem915@gmail.com", - "twitter": "Pingoda_" - }, - "record": { - "CNAME": "pinogda.github.io" - } -} + "description": "Personal Portfolio for Pingoda", + "repo": "https://github.com/Pingoda/pingoda.github.io", + "owner": { + "username": "Pingoda", + "email": "francescoclem915@gmail.com", + "twitter": "Pingoda_" + }, + "record": { + "CNAME": "pinogda.github.io" + } +} diff --git a/domains/pinkyplant.json b/domains/pinkyplant.json new file mode 100644 index 000000000..0f0005b92 --- /dev/null +++ b/domains/pinkyplant.json @@ -0,0 +1,12 @@ +{ + "description": "Jay's website and portfolio.", + "repo": "https://github.com/pinkyplant/pinkyplant.github.io", + "owner": { + "username": "pinkyplant", + "email": "pinkyplantz@proton.me", + "twitter": "pinkyplant" + }, + "record": { + "CNAME": "pinkyplant.github.io" + } +} diff --git a/domains/pipc.json b/domains/pipc.json new file mode 100644 index 000000000..5f9248b8c --- /dev/null +++ b/domains/pipc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PiPc1", + "email": "rhileighc9@gmail.com" + }, + "record": { + "CNAME": "pipc1.github.io" + } +} diff --git a/domains/piplup7575.json b/domains/piplup7575.json new file mode 100644 index 000000000..f3351cd3e --- /dev/null +++ b/domains/piplup7575.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Piplup7575", + "email": "piplup7575@gmail.com" + }, + "record": { + "CNAME": "pip75.github.io" + } +} diff --git a/domains/pirate-project.json b/domains/pirate-project.json index 85711ef02..911e81019 100644 --- a/domains/pirate-project.json +++ b/domains/pirate-project.json @@ -5,8 +5,6 @@ "email": "andchit223@gmail.com" }, "record": { - "A": [ - "185.87.50.120" - ] + "A": ["185.87.50.120"] } -} +} diff --git a/domains/piste.json b/domains/piste.json new file mode 100644 index 000000000..3191be22d --- /dev/null +++ b/domains/piste.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zpiste", + "email": "contact@piste.dev" + }, + "record": { + "URL": "https://piste.dev" + } +} diff --git a/domains/pivko.json b/domains/pivko.json deleted file mode 100644 index 2fb472b15..000000000 --- a/domains/pivko.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "AmbassadorGovna website", - "owner": { - "username": "AmbassadorGovna", - "email": "leshikcube+isadev@googlemail.com" - }, - "record": { - "CNAME": "vps162412.ispsite.ru" - } -} diff --git a/domains/pixelgeek.json b/domains/pixelgeek.json index 97cf04944..2fbfcedec 100644 --- a/domains/pixelgeek.json +++ b/domains/pixelgeek.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "pixelgeek", - "email": "pixelgeek@intel.com" - }, - "record": { - "CNAME": "pixelgeek.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "pixelgeek", + "email": "pxe.geek+github@gmail.com" + }, + "record": { + "CNAME": "pixelgeek.github.io" + } +} diff --git a/domains/pixelplayz.json b/domains/pixelplayz.json new file mode 100644 index 000000000..835caf70b --- /dev/null +++ b/domains/pixelplayz.json @@ -0,0 +1,11 @@ +{ + "description": "PixelPlayz's Developer Website", + "repo": "https://github.com/PixelPlayzXD/PixelPlayzXD", + "owner": { + "username": "PixelPlayzXD", + "email": "pixelplayz1887@gmail.com" + }, + "record": { + "CNAME": "pixelplayzweb.pages.dev" + } +} diff --git a/domains/pixelwhiz.json b/domains/pixelwhiz.json new file mode 100644 index 000000000..6f880b756 --- /dev/null +++ b/domains/pixelwhiz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pixelwhiz", + "email": "daffa01futn@gmail.com" + }, + "record": { + "CNAME": "pixelwhiz.github.io" + } +} diff --git a/domains/pixie.json b/domains/pixie.json new file mode 100644 index 000000000..0d468934d --- /dev/null +++ b/domains/pixie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Salmontrap26283627", + "email": "soudeur-epicier.0x@icloud.com" + }, + "record": { + "URL": "https://html-starter-seven-umber.vercel.app" + } +} diff --git a/domains/pixl8.json b/domains/pixl8.json index 749ad779d..bd69505fb 100644 --- a/domains/pixl8.json +++ b/domains/pixl8.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "pixl8dev", + "email": "judah.cs08@gmail.com" + }, - { - "owner": { - "username": "pixl8dev", - "email": "judah.cs08@gmail.com" - }, - - "record": { - "CNAME": "pixl8dev.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "pixl8dev.github.io" + } +} diff --git a/domains/pixyshare.json b/domains/pixyshare.json deleted file mode 100644 index c8d815471..000000000 --- a/domains/pixyshare.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "emmu123", - "email": "aneenababu71901@gmail.com" - }, - "record": { - "CNAME": "3603c299-03cd-4a0c-b29f-24250c6e7354.id.repl.co" - } -} diff --git a/domains/piyushkatyal.json b/domains/piyushkatyal.json new file mode 100644 index 000000000..d3a9a48b4 --- /dev/null +++ b/domains/piyushkatyal.json @@ -0,0 +1,11 @@ +{ + "description": "Serves as an alias to primary domain", + "repo": "https://github.com/piyushk77/piyushk77.github.io", + "owner": { + "username": "piyushk77", + "email": "pshkatyal8@gmail.com" + }, + "record": { + "CNAME": "piyushk77.github.io" + } +} diff --git a/domains/piyushrb.json b/domains/piyushrb.json new file mode 100644 index 000000000..d63f30855 --- /dev/null +++ b/domains/piyushrb.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio Website", + "repo": "https://github.com/piyush-rb/piyush-rb.github.io", + "owner": { + "username": "piyush-rb", + "email": "urpiyush39@gmail.com" + }, + "record": { + "CNAME": "piyush-rb.github.io" + } +} diff --git a/domains/pizzav.json b/domains/pizzav.json new file mode 100644 index 000000000..c43b05895 --- /dev/null +++ b/domains/pizzav.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "kittenvr", + "email": "bengallemoni@gmail.com", + "discord": "645235712815398912" + }, + + "record": { + "CNAME": "pizzav.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/pknw1.json b/domains/pknw1.json new file mode 100644 index 000000000..140b88de9 --- /dev/null +++ b/domains/pknw1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pknw1", + "email": "github@pknw1.co.uk" + }, + "record": { + "CNAME": "ks5.pknw1.co.uk" + } +} diff --git a/domains/plague.json b/domains/plague.json new file mode 100644 index 000000000..e7cbda39c --- /dev/null +++ b/domains/plague.json @@ -0,0 +1,12 @@ +{ + "description": "My souper personal domain.", + "repo": "https://github.com/pl4gue/pl4gue.github.io", + "owner": { + "username": "pl4gue", + "email": "viniciuslucianocardoso@gmail.com", + "discord": "plague🥣#8408" + }, + "record": { + "CNAME": "pl4gue.github.io" + } +} diff --git a/domains/playwithbmr.json b/domains/playwithbmr.json new file mode 100644 index 000000000..75aa87db1 --- /dev/null +++ b/domains/playwithbmr.json @@ -0,0 +1,11 @@ +{ + "description": "PORTFOLIO", + "repo": "https://rxhggames.github.io/PORTFOLIO/", + "owner": { + "username": "RXHGGAMES", + "email": "syedyaseerali854@gmail.com" + }, + "record": { + "CNAME": "rxhggames.github.io" + } +} diff --git a/domains/ploszukiwacz.json b/domains/ploszukiwacz.json new file mode 100644 index 000000000..07d305b08 --- /dev/null +++ b/domains/ploszukiwacz.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website for PlOszukiwacz", + "repo": "https://github.com/PlOszukiwaczDEV/ploszukiwaczdev.github.io", + "owner": { + "username": "PlOszukiwaczDEV", + "email": "ploszukiwacz1@gmail.com" + }, + "record": { + "CNAME": "ploszukiwaczdev.github.io" + } +} diff --git a/domains/plow.json b/domains/plow.json new file mode 100644 index 000000000..253d26a07 --- /dev/null +++ b/domains/plow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ClicpoW", + "email": "clicpowytb@gmail.com" + }, + "record": { + "CNAME": "mlkfkqd.pages.dev" + } +} diff --git a/domains/plug.json b/domains/plug.json new file mode 100644 index 000000000..651490985 --- /dev/null +++ b/domains/plug.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0n4u", + "email": "musicbotqn@gmail.com" + }, + "record": { + "CNAME": "0n4u.github.io" + } +} diff --git a/domains/plumsy.json b/domains/plumsy.json new file mode 100644 index 000000000..3751cf9a2 --- /dev/null +++ b/domains/plumsy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hxntaish", + "email": "juliettepoisson3@gmail.com" + }, + "record": { + "CNAME": "geo-routing.nexuspipe.com" + } +} diff --git a/domains/plun.json b/domains/plun.json index 678139655..2e534c591 100644 --- a/domains/plun.json +++ b/domains/plun.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "plun1331", + "email": "plun1331@gmail.com" + }, - { - "owner": { - "username": "plun1331", - "email": "plun1331@gmail.com" - }, - - "record": { - "CNAME": "plun.pages.dev" - } - } - \ No newline at end of file + "record": { + "CNAME": "plun.pages.dev" + } +} diff --git a/domains/ply.json b/domains/ply.json new file mode 100644 index 000000000..0572cf98e --- /dev/null +++ b/domains/ply.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "plymc", + "email": "plymc@proton.me" + }, + "record": { + "CNAME": "plymc.github.io" + } +} diff --git a/domains/pmint05.json b/domains/pmint05.json index d2ae09e84..a431269a3 100644 --- a/domains/pmint05.json +++ b/domains/pmint05.json @@ -1,12 +1,12 @@ { - "description": "Subdomain for my personal developer website", - "repo": "https://github.com/pmint05/pmint05.github.io", - "owner": { - "username": "pmint05", - "email": "pmint05@protonmail.com", - "twitter": "pmint05" - }, - "record": { - "CNAME": "pmint05.github.io" - } -} + "description": "Subdomain for my personal developer website", + "repo": "https://github.com/pmint05/pmint05.github.io", + "owner": { + "username": "pmint05", + "email": "pmint05@protonmail.com", + "twitter": "pmint05" + }, + "record": { + "CNAME": "pmint05.github.io" + } +} diff --git a/domains/poetry.m1dnight.json b/domains/poetry.m1dnight.json deleted file mode 100644 index 73cb9df47..000000000 --- a/domains/poetry.m1dnight.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Aakanksha's .is-a.dev domain", - "repo": "https://poetry.m1dnightdev.repl.co", - "owner": { - "username": "m1dnight-ofcl", - "email": "m1dnightgmrofficial@gmail.com" - }, - "record": { - "CNAME": "5eb3b096-1df2-40f7-aa66-6c2ce0687219.id.repl.co" - } -} diff --git a/domains/pog.json b/domains/pog.json new file mode 100644 index 000000000..0e948dbee --- /dev/null +++ b/domains/pog.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "PogMaster9001", + "email": "", + "discord": "1190052608346435597" + }, + + "record": { + "CNAME": "projectdevs.net" + } + } + diff --git a/domains/pogmaster.json b/domains/pogmaster.json new file mode 100644 index 000000000..0e948dbee --- /dev/null +++ b/domains/pogmaster.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "PogMaster9001", + "email": "", + "discord": "1190052608346435597" + }, + + "record": { + "CNAME": "projectdevs.net" + } + } + diff --git a/domains/pogmaster9001.json b/domains/pogmaster9001.json new file mode 100644 index 000000000..0e948dbee --- /dev/null +++ b/domains/pogmaster9001.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "PogMaster9001", + "email": "", + "discord": "1190052608346435597" + }, + + "record": { + "CNAME": "projectdevs.net" + } + } + diff --git a/domains/poked.json b/domains/poked.json index 9470797fb..7c7f30683 100644 --- a/domains/poked.json +++ b/domains/poked.json @@ -1,13 +1,12 @@ { "description": "poked.is-a.dev", - "repo": "https://github.com/PokedArmory/PokedArmory.github.io", + "repo": "https://github.com/PokedWasTaken/PokedWasTaken.github.io", "owner": { - "username": "PokedArmory", - "email": "poked.armory@gmail.com", - "discord": "Poked_Armory#0001", - "twitter": "PokedWasTaken" + "username": "PokedWasTaken", + "email": "pokedwastaken@gmail.com", + "discord": "poked" }, "record": { - "CNAME": "PokedArmory.github.io" + "CNAME": "PokedWasTaken.github.io" } } diff --git a/domains/pokey.json b/domains/pokey.json new file mode 100644 index 000000000..d5b90541e --- /dev/null +++ b/domains/pokey.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Pokeylooted", + "email": "", + "discord": "469808869426724865", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YwtcHwpMZkKBYbgs0mxj-7NxjIGcUOrXLTJmxRNtVUAENnuLfqfoGn0-l4CeYdFvYSxBYv2ElPgXrvmfynv5w7bUclrf8k7nc2EEKaXgddisH4nHH1EhCDZ3S7N3wVA15MN4PwBehgRJkvNU-ckVpyQ1vMzpXhbeXz8UErfp039VViBrvY5S0V-n43CkDSf3iqtsa9sMDaWh9-I3oYXeMKqCyx-OXBhaY8w9R9f6V4rthWdwu2--gYe1gqEoV29I16wXRVZqpzHgecZV8rmcamLUZUkWSYdrG7ibBjkmzn_1j8Pxe-OBWLtuVpHUnX_PYwour7OPajWzXkAPjIoQAQ.sdtAwCEcrzrn3SV-e277bA.q73Rr_IE9cxfke6WUU-HessDBZZdhUOs9Ga7IK4bWZ1ewgtV7pLzaGDoe8_ukVHf-oo5Ya-QEJaGLglkvBK1IQWUKPpSW9rxzCQSMCpxCkg.9-P9cZ5_qyjMrJ8XMP2-Pg" + }, + + "record": { + "CNAME": "pokeylooted.github.io" + } + } + \ No newline at end of file diff --git a/domains/polar.json b/domains/polar.json new file mode 100644 index 000000000..52bf068a2 --- /dev/null +++ b/domains/polar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "polarfreez", + "email": "rafaelbraun5@hotmail.com" + }, + "repo": "https://github.com/polarfreez/polarfreez.github.io", + "record": { + "CNAME": "polarfreez.github.io" + } +} diff --git a/domains/polars.json b/domains/polars.json index 01ecf5950..65f2dd4bf 100644 --- a/domains/polars.json +++ b/domains/polars.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "pol-ars", - "email": "tariqsaedbusiness@outlook.com" - }, - "record": { - "CNAME": "pol-ars.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "pol-ars", + "email": "tariqsaedbusiness@outlook.com" + }, + "record": { + "CNAME": "pol-ars.github.io" + } +} diff --git a/domains/polishboiyt.json b/domains/polishboiyt.json new file mode 100644 index 000000000..db4a28e6f --- /dev/null +++ b/domains/polishboiyt.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "PolishBoiYT", + "email": "", + "discord": "994187133847875604", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lRT7_mboLxbZEhJf5GgShupSpYsiC5X4nKn9lneWnVOe0_Zy425skI6hIF0PDM8SiggRM6l8mZ6rMIWeLE2hD0-5s1Py6qeb193EEOtAflwJMzdQZzmiLSg2G8lvMkronAbqy9hhQvIlfn31oNMQHwCxDao4623iJu4Lms4LyX5O9q9k-OHbl1n9_x7OuQkCR-v-TcaswbIs30MYwbOanV_2Nq9_Mryh1UPFRvn9XccokV6Kg4epVLweUIfUfL5uLLky7MnMHCncen3InovJZPoWzsx6Ze4vO1WfgU90hLPbMhVwUptgFxYtuSF_drt2dV3c00HJRS_chslDnE-UkQ.2bulfUF5rDNMy8TOVgKpQw.PVcafBMcxwoWZyccETnARrk7TDCkoIZhl4z-hZKHbCni1ed1xfD62KpHH1modkbh_4v1O3s12jtwvcvrsumzwtsfFms59PIuxfevOezpwH4.wtRTEYk_LfzqZKdkqk3ivQ" + }, + + "record": { + "CNAME": "polishboiyt.github.io" + } + } + \ No newline at end of file diff --git a/domains/polo.json b/domains/polo.json new file mode 100644 index 000000000..b5d537509 --- /dev/null +++ b/domains/polo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "polo-1245-oficial", + "email": "", + "discord": "725316907187568701" + }, + + "record": { + "CNAME": "polo-1245-oficial.github.io" + } +} diff --git a/domains/polongdev.json b/domains/polongdev.json new file mode 100644 index 000000000..acd57582f --- /dev/null +++ b/domains/polongdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PolongDev", + "email": "kennethgregorioperez@gmail.com" + }, + "record": { + "URL": "https://polongdev.github.io" + } +} diff --git a/domains/polygon6233.json b/domains/polygon6233.json new file mode 100644 index 000000000..463f5ccfd --- /dev/null +++ b/domains/polygon6233.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "polygon6233", + "email": "nikitasitter@gmail.com" + }, + "record": { + "CNAME": "polygon6233.github.io" + } +} diff --git a/domains/poppy.json b/domains/poppy.json new file mode 100644 index 000000000..7bbbfb162 --- /dev/null +++ b/domains/poppy.json @@ -0,0 +1,11 @@ +{ + "description": "poppy.is-a.dev", + "repo": "https://github.com/ignpoppyseed/ignpoppyseed.github.io", + "owner": { + "username": "ignpoppyseed", + "email": "ignpoppyseed@cloverbrand.xyz" + }, + "record": { + "CNAME": "ignpoppyseed.github.io" + } +} diff --git a/domains/porant.json b/domains/porant.json new file mode 100644 index 000000000..35dce6910 --- /dev/null +++ b/domains/porant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "porant", + "email": "porant@gmail.com" + }, + "record": { + "A": ["178.26.182.120"] + } +} diff --git a/domains/porary.json b/domains/porary.json deleted file mode 100644 index 6ed534cf9..000000000 --- a/domains/porary.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "GotoShoraro", - "email": "info@porary.net" - }, - - "record": { - "URL": "https://porary.net" - } - } - diff --git a/domains/pororo.json b/domains/pororo.json deleted file mode 100644 index 911b8d22b..000000000 --- a/domains/pororo.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "MoartMedia", - "email": "u.hello@kakao.com" - }, - "record": { - "CNAME": "dev.is.moart.media" - } -} diff --git a/domains/portainer.stefdp.json b/domains/portainer.stefdp.json new file mode 100644 index 000000000..9f2b1dbbb --- /dev/null +++ b/domains/portainer.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/portal-slot-gacor.json b/domains/portal-slot-gacor.json deleted file mode 100644 index a265de76e..000000000 --- a/domains/portal-slot-gacor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Demo Spining wheeles slot Gacor", - "repo": "https://github.com/cewemanja/portal-slot-gacor", - "owner": { - "username": "cewemanja", - "email": "slotgacor@id123.uno" - }, - "record": { - "URL": "https://cewemanja.github.io/portal-slot-gacor" - } -} diff --git a/domains/post.json b/domains/post.json new file mode 100644 index 000000000..326ff22ef --- /dev/null +++ b/domains/post.json @@ -0,0 +1,17 @@ +{ + "owner": { + "username": "vibred", + "email": "vibred@att.net" + }, + "record": { + "TXT": [ + "verification-code-site-App_lark=HBuHgbKczItwYdsgJHDZ", + "v=spf1 +include:spf.onlarksuite.com -all" + ], + "MX": [ + "mx1.larksuite.com", + "mx2.larksuite.com", + "mx3.larksuite.com" + ] + } +} diff --git a/domains/potato.json b/domains/potato.json new file mode 100644 index 000000000..9427482cf --- /dev/null +++ b/domains/potato.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RaafatTurki", + "email": "raafat.turki@pm.me" + }, + "record": { + "CNAME": "potato.alwaysdata.net" + } +} diff --git a/domains/potatochips0706.json b/domains/potatochips0706.json new file mode 100644 index 000000000..e7dccb3ae --- /dev/null +++ b/domains/potatochips0706.json @@ -0,0 +1,11 @@ +{ + "description": "A sub-domain to my portfolio github page.", + "repo": "https://github.com/potato0706/potato0706.github.io", + "owner": { + "username": "potato0706", + "email": "potatochips0706@gmail.com" + }, + "record": { + "CNAME": "potato0706.github.io" + } +} diff --git a/domains/pow.json b/domains/pow.json new file mode 100644 index 000000000..718c59e9a --- /dev/null +++ b/domains/pow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Calebrlx", + "email": "caleb@alyeska.dev" + }, + "record": { + "URL": "https://calebrlx.github.io" + } +} diff --git a/domains/poyo.json b/domains/poyo.json new file mode 100644 index 000000000..567fa2ba4 --- /dev/null +++ b/domains/poyo.json @@ -0,0 +1,10 @@ +{ + "description": "I'll use this sub-domain for my portfolio website.", + "owner": { + "username": "MrDaPoyo", + "email": "wiiuforever25@gmail.com" + }, + "record": { + "CNAME": "mrdapoyo.github.io" + } +} diff --git a/domains/ppg00.json b/domains/ppg00.json new file mode 100644 index 000000000..e1f703da2 --- /dev/null +++ b/domains/ppg00.json @@ -0,0 +1,12 @@ +{ + "description": "for my personal website ^_^", + "repo": "https://github.com/ppg00/ppg00.github.io", + "owner": { + "username": "ppg00", + "email": "ppqg00@gmail.com", + "twitter": "qqg00" + }, + "record": { + "CNAME": "ppg00.github.io" + } +} diff --git a/domains/pplg.json b/domains/pplg.json deleted file mode 100644 index 4bb4f7502..000000000 --- a/domains/pplg.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Jantur-dev", - "email": "jantur29@gmail.com" - }, - "record": { - "CNAME": "d46b1013-50ed-4f41-b75e-3961b2b9aad6.id.repl.co" - } -} \ No newline at end of file diff --git a/domains/pr.whine.json b/domains/pr.whine.json index 8994675cf..e0b3cb5ca 100644 --- a/domains/pr.whine.json +++ b/domains/pr.whine.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" - }, - "description": "whi_ne's projects' subdomain", - "record": { - "CNAME": "whnya.github.io" - } + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "description": "whi_ne's projects' subdomain", + "record": { + "CNAME": "whnya.github.io" + } } diff --git a/domains/pr0k41.json b/domains/pr0k41.json index ee01146be..d09ae075f 100644 --- a/domains/pr0k41.json +++ b/domains/pr0k41.json @@ -6,6 +6,6 @@ "email": "pr0k41@proton.me" }, "record": { - "CNAME": "pr0k41.github.io" + "CNAME": "pr0k41.github.io" } } diff --git a/domains/prabhat.json b/domains/prabhat.json deleted file mode 100644 index 6df0cc828..000000000 --- a/domains/prabhat.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Portfolio Website", - "repo": "https://github.com/itzPrabhat", - "owner": { - "username": "itzPrabhat", - "email": "prabhatbhatia09@gmail.com" - }, - "record": { - "CNAME": "pbdev.ml" - } -} diff --git a/domains/prabin.json b/domains/prabin.json index 1ead6918b..48207704a 100644 --- a/domains/prabin.json +++ b/domains/prabin.json @@ -6,6 +6,6 @@ "email": "prabinsubedi2016@gmail.com" }, "record": { - "URL": "https://prabin.tech" + "URL": "https://prabincankod.me" } } diff --git a/domains/practical.json b/domains/practical.json index 6f1139e38..64004ae0f 100644 --- a/domains/practical.json +++ b/domains/practical.json @@ -1,13 +1,11 @@ - - { - "description": "A website to show my portfolio.", - "repo": "https://github.com/practicaldev101/practicaldev101.github.io", - "owner": { - "username": "practicaldev101", - "email": "carlosospinomonsalve@gmail.com" - }, - "record": { - "CNAME": "practicaldev101.github.io" - } - } - +{ + "description": "A website to show my portfolio.", + "repo": "https://github.com/practicaldev101/practicaldev101.github.io", + "owner": { + "username": "practicaldev101", + "email": "carlosospinomonsalve@gmail.com" + }, + "record": { + "CNAME": "practicaldev101.github.io" + } +} diff --git a/domains/pradeepvarma22.json b/domains/pradeepvarma22.json index 755cd75cc..c2441c7f5 100644 --- a/domains/pradeepvarma22.json +++ b/domains/pradeepvarma22.json @@ -1,12 +1,10 @@ - - { - "repo": "https://github.com/pradeepvarma22/pradeepvarma22.github.io", - "owner": { - "username": "pradeepvarma22", - "email": "pradeepnadimpalli22@gmail.com" - }, - "record": { - "CNAME": "pradeepvarma22.github.io" - } - } - +{ + "repo": "https://github.com/pradeepvarma22/pradeepvarma22.github.io", + "owner": { + "username": "pradeepvarma22", + "email": "pradeepnadimpalli22@gmail.com" + }, + "record": { + "CNAME": "pradeepvarma22.github.io" + } +} diff --git a/domains/praharsh.json b/domains/praharsh.json new file mode 100644 index 000000000..b1531198b --- /dev/null +++ b/domains/praharsh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "praharshjain", + "email": "praharshsamria@gmail.com" + }, + "record": { + "CNAME": "praharsh.zz.mu" + } +} diff --git a/domains/praharshjain.json b/domains/praharshjain.json new file mode 100644 index 000000000..b1531198b --- /dev/null +++ b/domains/praharshjain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "praharshjain", + "email": "praharshsamria@gmail.com" + }, + "record": { + "CNAME": "praharsh.zz.mu" + } +} diff --git a/domains/prajwal.json b/domains/prajwal.json new file mode 100644 index 000000000..0ed47cbcc --- /dev/null +++ b/domains/prajwal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Toricane", + "email": "prjwl028@gmail.com", + "discord": "721093211577385020" + }, + + "record": { + "CNAME": "toricane.github.io" + } +} diff --git a/domains/prakhillohiya.json b/domains/prakhillohiya.json new file mode 100644 index 000000000..727901172 --- /dev/null +++ b/domains/prakhillohiya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prakhillohiya", + "email": "prakhillohiya@gmail.com" + }, + "record": { + "CNAME": "prakhillohiya.github.io" + } +} diff --git a/domains/pramod-rawat.json b/domains/pramod-rawat.json new file mode 100644 index 000000000..d1389a416 --- /dev/null +++ b/domains/pramod-rawat.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/pramod-rawat/pramod-rawat.github.io", + "owner": { + "username": "pramod-rawat", + "email": "pramod.rawat@truestaz.com" + }, + "record": { + "CNAME": "pramod-rawat.github.io" + } +} diff --git a/domains/pranav.json b/domains/pranav.json deleted file mode 100644 index e00e16212..000000000 --- a/domains/pranav.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Pranav's personal website", - "repo": "https://github.com/pranavnt/pt5.dev", - "owner": { - "username": "pranavnt", - "email": "pranavnt@outlook.com" - }, - "record": { - "CNAME": "pt5.dev" - } -} diff --git a/domains/pranavagrawal.json b/domains/pranavagrawal.json new file mode 100644 index 000000000..cbbdff1cd --- /dev/null +++ b/domains/pranavagrawal.json @@ -0,0 +1,17 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/pranavagrawal321/pranavagrawal321.github.io", + "owner": { + "username": "pranavagrawal321", + "email": "pranavagrawal321@gmail.com" + }, + "record": { + "A": ["185.199.108.153"], + "AAAA": ["2606:50c0:8001::153"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/praneeth.json b/domains/praneeth.json new file mode 100644 index 000000000..03efd7468 --- /dev/null +++ b/domains/praneeth.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "praneeth-balamurugan", + "email": "praneeth.nkl@gmail.com", + "discord": "606833730459533372" + }, + + "record": { + "CNAME": "praneeth-balamurugan.github.io" + } +} diff --git a/domains/pranjal.json b/domains/pranjal.json new file mode 100644 index 000000000..ccece6e96 --- /dev/null +++ b/domains/pranjal.json @@ -0,0 +1,11 @@ +{ + "description": "Subdomain for my personal page.", + "repo": "https://github.com/Pranjal-SB/Pranjal-SB", + "owner": { + "username": "Pranjal-SB", + "email": "psbhatnagar.in@gmal.com" + }, + "record": { + "CNAME": "Pranjal-SB.github.io" + } +} diff --git a/domains/praquron.json b/domains/praquron.json index 847e2e221..f979ea33a 100644 --- a/domains/praquron.json +++ b/domains/praquron.json @@ -1,12 +1,12 @@ { - "description": "A website to share my projects", - "repo": "https://github.com/Praquron/praquron.github.io", - "owner": { - "username": "Praquron", - "email": "praquron@gmail.com", - "twitter": "praquron" - }, - "record": { - "CNAME": "praquron.github.io" - } -} + "description": "A website to share my projects", + "repo": "https://github.com/Praquron/praquron.github.io", + "owner": { + "username": "Praquron", + "email": "praquron@gmail.com", + "twitter": "praquron" + }, + "record": { + "CNAME": "praquron.github.io" + } +} diff --git a/domains/prasadbobby.json b/domains/prasadbobby.json deleted file mode 100644 index 11aac993e..000000000 --- a/domains/prasadbobby.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Edu Manager", - "repo": "https://github.com/prasadbobby", - "owner": { - "username": "prasadbobby", - "email": "prasadbobby057@gmail.com" - }, - "record": { - "URL": "http://prasadbobby.me" - } -} diff --git a/domains/prashant.json b/domains/prashant.json new file mode 100644 index 000000000..f57f055bb --- /dev/null +++ b/domains/prashant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Meprazhant", + "email": "meprazhant@gmail.com" + }, + "record": { + "URL": "https://www.prashantkafle.com.np" + } +} diff --git a/domains/prateek.json b/domains/prateek.json index 78637d0ec..ae5bdeb29 100644 --- a/domains/prateek.json +++ b/domains/prateek.json @@ -1,12 +1,12 @@ { - "description": "Prateek Chaubey's Portfolio ", - "repo": "https://github.com/prateek-chaubey/prateek-chaubey.github.io", - "owner": { - "username": "prateek-chaubey", - "email": "chaubeyprateek2@gmail.com", - "twitter": "PrateekChaubeyy" - }, - "record": { - "CNAME": "prateek-chaubey.github.io" - } -} + "description": "Prateek Chaubey's Portfolio ", + "repo": "https://github.com/prateek-chaubey/prateek-chaubey.github.io", + "owner": { + "username": "prateek-chaubey", + "email": "chaubeyprateek2@gmail.com", + "twitter": "PrateekChaubeyy" + }, + "record": { + "CNAME": "prateek-chaubey.github.io" + } +} diff --git a/domains/prathamesh.json b/domains/prathamesh.json new file mode 100644 index 000000000..98a131912 --- /dev/null +++ b/domains/prathamesh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Prathamesh-Dukare", + "email": "prathameshdukaremail@gmail.com", + "discord": "741144155559821342" + }, + + "record": { + "CNAME": "prathamesh.works" + } +} diff --git a/domains/pratike-patel.json b/domains/pratike-patel.json new file mode 100644 index 000000000..8ac2d497a --- /dev/null +++ b/domains/pratike-patel.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/pratike-patel/pratike-patel.github.io", + "owner": { + "username": "pratike-patel", + "email": "" + }, + "record": { + "CNAME": "pratike-patel.github.io" + } +} diff --git a/domains/pratikmali.json b/domains/pratikmali.json new file mode 100644 index 000000000..5f9ad85d3 --- /dev/null +++ b/domains/pratikmali.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "impratik7", + "email": "malipratik09@gmail.com" + }, + "record": { + "CNAME": "impratik7.github.io" + } +} diff --git a/domains/pratikp-patel.json b/domains/pratikp-patel.json new file mode 100644 index 000000000..3f6311ed9 --- /dev/null +++ b/domains/pratikp-patel.json @@ -0,0 +1,11 @@ +{ + "description": "This is a website", + "repo": "https://github.com/pratikp-patel/pratikp-patel.github.io", + "owner": { + "username": "pratikp-patel", + "email": "" + }, + "record": { + "CNAME": "pratikp-patel.github.io" + } +} diff --git a/domains/pratikshya.json b/domains/pratikshya.json new file mode 100644 index 000000000..16e76f1a4 --- /dev/null +++ b/domains/pratikshya.json @@ -0,0 +1,11 @@ +{ + "description": "Pratikshya website", + "repo": "https://github.com/pratikshya-gautam/portfolio", + "owner": { + "username": "pratikshya-gautam", + "email": "" + }, + "record": { + "CNAME": "pratikshya-gautam.github.io" + } + } \ No newline at end of file diff --git a/domains/pratyaydeep.json b/domains/pratyaydeep.json deleted file mode 100644 index 22f7092f3..000000000 --- a/domains/pratyaydeep.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Pratyaydeep's Microblog", - "repo": "https://github.com/pratyaydeep", - "owner": { - "username": "pratyaydeep", - "email": "pratyaydeep@yahoo.com" - }, - "record": { - "URL": "https://pratya.pythonanywhere.com" - } -} diff --git a/domains/praveen-patel.json b/domains/praveen-patel.json new file mode 100644 index 000000000..f3a80dbe6 --- /dev/null +++ b/domains/praveen-patel.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/praveen8git", + "owner": { + "username": "praveen8git", + "email": "praveenpatel@duck.com", + "discord": "praveen.patel" + }, + "record": { + "CNAME": "praveensingh.in" + } +} diff --git a/domains/premiumairoxide.json b/domains/premiumairoxide.json new file mode 100644 index 000000000..dc7a76be0 --- /dev/null +++ b/domains/premiumairoxide.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Caiden-P", + "email": "iididhejejdj@gmail.com", + "discord": "850820069310201896" + }, + "record": { + "CNAME": "air-busl.onrender.com" + } +} diff --git a/domains/preston-code-lobby.json b/domains/preston-code-lobby.json new file mode 100644 index 000000000..1ed2484da --- /dev/null +++ b/domains/preston-code-lobby.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Skitskat7738", + "email": "doooogy7738@gmail.com" + }, + "record": { + "URL": "https://mountainous-doll.surge.sh/preston-code/prestoncode.wixsite.com/website-2.html" + } +} diff --git a/domains/preston-code.json b/domains/preston-code.json new file mode 100644 index 000000000..e78bff979 --- /dev/null +++ b/domains/preston-code.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "preston-riley", + "email": "pres1234569@gmail.com" + }, + "record": { + "CNAME": "preston-riley.github.io" + } +} diff --git a/domains/preview.beta.json b/domains/preview.beta.json deleted file mode 100644 index 0f3cab465..000000000 --- a/domains/preview.beta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, - "record": { - "CNAME": "is-a-dev-bot.github.io" - } -} diff --git a/domains/preview.shan.json b/domains/preview.shan.json new file mode 100644 index 000000000..14545aa26 --- /dev/null +++ b/domains/preview.shan.json @@ -0,0 +1,11 @@ +{ + "description": "Preview For My Personal Website ", + "owner": { + "username": "Adwaith-Shan-Pk", + "email": "mail@shan.is-a.dev", + "twitter": "lordlinux69" + }, + "record": { + "A": ["45.90.12.122"] + } +} diff --git a/domains/prharshith.json b/domains/prharshith.json new file mode 100644 index 000000000..f0944d7a9 --- /dev/null +++ b/domains/prharshith.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "prharshith", + "email": "prharshith37@gmail.com", + "twitter": "prharshith37" + }, + "record": { + "CNAME": "prharshith.pages.dev" + } +} diff --git a/domains/pricing.syntaxloopers.json b/domains/pricing.syntaxloopers.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/pricing.syntaxloopers.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/prima.json b/domains/prima.json new file mode 100644 index 000000000..9aa55d685 --- /dev/null +++ b/domains/prima.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coderzhaxor", + "email": "ajanuantara@gmail.com" + }, + "record": { + "CNAME": "coderzhaxor.github.io" + } +} diff --git a/domains/prime.json b/domains/prime.json new file mode 100644 index 000000000..b9bd80825 --- /dev/null +++ b/domains/prime.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "repo": "https://github.com/primetdmomega/primetdmomega.github.io", + "owner": { + "username": "PrimeTDMomega", + "email": "primetdmomega@gmail.com", + "twitter": "primeinspace" + }, + "record": { + "CNAME": "primetdmomega.github.io" + } +} diff --git a/domains/prince.json b/domains/prince.json new file mode 100644 index 000000000..da9cd79dc --- /dev/null +++ b/domains/prince.json @@ -0,0 +1,14 @@ +{ + "description": "Portfolio of Prince Raj", + "repo": "https://github.com/theprinceraj/theprinceraj.github.io", + "owner": { + "username": "theprinceraj", + "email": "profile.princeraj@gmail.com", + "linkedin": "https://www.linkedin.com/in/theprinceraj/", + "twitter": "ThePrinceRaj", + "discord": "bhaalu" + }, + "record": { + "CNAME": "theprinceraj.github.io" + } +} diff --git a/domains/priti-shide.json b/domains/priti-shide.json index 989132cdd..58194a73e 100644 --- a/domains/priti-shide.json +++ b/domains/priti-shide.json @@ -9,4 +9,3 @@ "CNAME": "priti-shide.github.io" } } - diff --git a/domains/privacy.json b/domains/privacy.json index 0ad71d726..6f3b6f9c6 100644 --- a/domains/privacy.json +++ b/domains/privacy.json @@ -1,16 +1,9 @@ { "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" + "username": "is-a-dev", + "email": "" }, "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], - "TXT": "forward-email=privacy.isdev.localplayer.dev" + "URL": "https://owl.is-a.dev" } } diff --git a/domains/private.shockbs.json b/domains/private.shockbs.json new file mode 100644 index 000000000..17225014f --- /dev/null +++ b/domains/private.shockbs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "CNAME": "shockbs-private.netlify.app" + } +} diff --git a/domains/priyansh.json b/domains/priyansh.json index 10bec5dc3..390b88b26 100644 --- a/domains/priyansh.json +++ b/domains/priyansh.json @@ -1,7 +1,7 @@ { "owner": { - "username": "priyanshprajapat", - "email": "priy@nsh.is-a.dev" + "username": "oyepriyansh", + "email": "hi@priyansh.app" }, "record": { "CNAME": "priyansh.pages.dev" diff --git a/domains/priyanshu.json b/domains/priyanshu.json new file mode 100644 index 000000000..bc043c227 --- /dev/null +++ b/domains/priyanshu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Priyansxu", + "email": "cloudypriyanshu@gmail.com", + "twitter": "priyansxu_gupta" + }, + "record": { + "CNAME": "priyanshu.pages.dev" + } +} diff --git a/domains/priyanshul.json b/domains/priyanshul.json new file mode 100644 index 000000000..1d3bd1586 --- /dev/null +++ b/domains/priyanshul.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/Priyanshul1307/Priyanshul1307.github.io", + "owner": { + "username": "Priyanshul1307", + "email": "piyanshul1307@gmail.com" + }, + "record": { + "CNAME": "Priyanshul130.github.io" + } + } diff --git a/domains/priyas-rana.json b/domains/priyas-rana.json new file mode 100644 index 000000000..d4ae6d184 --- /dev/null +++ b/domains/priyas-rana.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/priyas-rana/priyas-rana.github.io", + "owner": { + "username": "priyas-rana", + "email": "" + }, + "record": { + "CNAME": "priyas-rana.github.io" + } +} diff --git a/domains/prnice.json b/domains/prnice.json index d20cdb6dd..01d447ad5 100644 --- a/domains/prnice.json +++ b/domains/prnice.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Prn-Ice", - "email": "isadev.0e7rj@slmail.me" - }, - "repo": "https://portfolio.prnice.me", - "description": "Test domain for this really cool service", - "record": { - "URL": "https://portfolio.prnice.me" - } -} \ No newline at end of file + "owner": { + "username": "Prn-Ice", + "email": "isadev.0e7rj@slmail.me" + }, + "repo": "https://portfolio.prnice.me", + "description": "Test domain for this really cool service", + "record": { + "URL": "https://portfolio.prnice.me" + } +} diff --git a/domains/probir-sarkar.json b/domains/probir-sarkar.json new file mode 100644 index 000000000..fa8737683 --- /dev/null +++ b/domains/probir-sarkar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "probir-sarkar", + "email": "me@probir.dev" + }, + + "record": { + "URL": "https://probir-sarkar.vercel.app" + } +} diff --git a/domains/profile.alora.json b/domains/profile.alora.json new file mode 100644 index 000000000..0cc3ce1b2 --- /dev/null +++ b/domains/profile.alora.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com", + "discord": "1236292707371057216" + }, + "record": { + "CNAME": "3d-portfolio-jade-ten.vercel.app" + } +} diff --git a/domains/profile.json b/domains/profile.json new file mode 100644 index 000000000..10d042abf --- /dev/null +++ b/domains/profile.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "oyepriyansh", + "email": "oyepriyansh@hotmail.com" + }, + "record": { + "CNAME": "oyepriyansh.github.io" + } +} diff --git a/domains/projakob.json b/domains/projakob.json deleted file mode 100644 index 69fbf3a70..000000000 --- a/domains/projakob.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "ProJakob", - "email": "", - "discord": "ProJakob#0408" - }, - "record": { - "A": [ - "152.89.239.58" - ] - } -} diff --git a/domains/projassets.oxmc.json b/domains/projassets.oxmc.json new file mode 100644 index 000000000..61a9bd4f7 --- /dev/null +++ b/domains/projassets.oxmc.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "oxmc", + "email": "oxmc7769.mail@gmail.com", + "discord": "oxmc7769" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=contact:oxmc7769.mail@gmail.com" + } +} diff --git a/domains/prokai-kun.json b/domains/prokai-kun.json index ec39000f2..2916a7bc2 100644 --- a/domains/prokai-kun.json +++ b/domains/prokai-kun.json @@ -6,6 +6,6 @@ "email": "prokaiindo003@gmail.com" }, "record": { - "CNAME": "IAKORP.github.io" + "CNAME": "IAKORP.github.io" } } diff --git a/domains/prokai.json b/domains/prokai.json index f70941538..11715999d 100644 --- a/domains/prokai.json +++ b/domains/prokai.json @@ -6,6 +6,6 @@ "email": "iakorp@protonmail.com" }, "record": { - "CNAME": "14k0rp.github.io" + "CNAME": "14k0rp.github.io" } } diff --git a/domains/protoshock.gizzy.json b/domains/protoshock.gizzy.json new file mode 100644 index 000000000..87bbe1f5b --- /dev/null +++ b/domains/protoshock.gizzy.json @@ -0,0 +1,12 @@ +{ + "description": "protoshock.gizzy.is-a.dev", + "owner": { + "username": "GizzyUwU", + "email": "nerop455@gmail.com" + }, + "record": { + "A": [ + "69.197.135.202" + ] + } +} diff --git a/domains/proudmuslim.json b/domains/proudmuslim.json index 4903d15d3..95ffb7402 100644 --- a/domains/proudmuslim.json +++ b/domains/proudmuslim.json @@ -8,4 +8,3 @@ "CNAME": "proudmuslim-dev.github.io" } } - diff --git a/domains/prox.preston-code.json b/domains/prox.preston-code.json new file mode 100644 index 000000000..02f8925cc --- /dev/null +++ b/domains/prox.preston-code.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Preston-Riley", + "email": "pres1234569@gmail.com", + "discord": "816152941923663902" + }, + + "record": { + "CNAME": "compiler-glzx.onrender.com" + } +} diff --git a/domains/proximity.json b/domains/proximity.json deleted file mode 100644 index a9ad113b0..000000000 --- a/domains/proximity.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Dev Env", - "repo": "https://github.com/hexed", - "owner": { - "username": "hexed", - "email": "me@proximity.sh" - }, - "record": { - "A": [ - "144.172.67.6" - ] - } -} diff --git a/domains/proxy.stefdp.json b/domains/proxy.stefdp.json new file mode 100644 index 000000000..884b42e7a --- /dev/null +++ b/domains/proxy.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "A": ["194.60.201.37"] + } +} diff --git a/domains/proxy.trung.json b/domains/proxy.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/proxy.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/proxyjohnny.json b/domains/proxyjohnny.json new file mode 100644 index 000000000..dfd792f8b --- /dev/null +++ b/domains/proxyjohnny.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ProxyJohnny", + "email": "johnnydx7@gmail.com" + }, + "record": { + "CNAME": "proxyjohnny.pages.dev" + } +} diff --git a/domains/proxzima.json b/domains/proxzima.json index 3923d8f25..f031317d4 100644 --- a/domains/proxzima.json +++ b/domains/proxzima.json @@ -1,13 +1,13 @@ { - "description": "Describe the use of this subdomain", - "repo": "https://github.com/PROxZIMA/proxzima.github.io", - "owner": { - "username": "PROxZIMA", - "email": "pratikbpingale9075@gmail.com", - "twitter": "pro_x_zima", - "discord": "PROxZIMA#7272" - }, - "record": { - "CNAME": "proxzima.github.io" - } -} + "description": "Describe the use of this subdomain", + "repo": "https://github.com/PROxZIMA/proxzima.github.io", + "owner": { + "username": "PROxZIMA", + "email": "pratikbpingale9075@gmail.com", + "twitter": "pro_x_zima", + "discord": "PROxZIMA#7272" + }, + "record": { + "CNAME": "proxzima.github.io" + } +} diff --git a/domains/prryplatypus.json b/domains/prryplatypus.json deleted file mode 100644 index 06f1dda9f..000000000 --- a/domains/prryplatypus.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/prryplatypus", - "owner": { - "username": "prryplatypus", - "email": "", - "twitter": "prryplatypus" - }, - "record": { - "CNAME": "prryplatypus.dev" - } - } diff --git a/domains/prtksunal.json b/domains/prtksunal.json new file mode 100644 index 000000000..127485dd9 --- /dev/null +++ b/domains/prtksunal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prateekmedia", + "email": "prtksunal@gmail.com" + }, + "record": { + "CNAME": "prateekmedia.github.io" + } +} diff --git a/domains/psharma.json b/domains/psharma.json deleted file mode 100644 index e430108d8..000000000 --- a/domains/psharma.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Pranav Sharma's developer-specific blog.", - "repo": "https://github.com/psharma04", - "owner": { - "username": "psharma04", - "email": "isadev@psharma.schoolnotes.xyz" - }, - "record": { - "CNAME": "servarr.nighthawk.pw" - } -} diff --git a/domains/psicmi.json b/domains/psicmi.json index c7a1101ec..c35086852 100644 --- a/domains/psicmi.json +++ b/domains/psicmi.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "psicmi", - "email": "hello@psicmi.party" - }, - "record": { - "CNAME": "psicmi.win" - } -} + "owner": { + "username": "psicmi", + "email": "hello@psicmi.party" + }, + "record": { + "CNAME": "psicmi.win" + } +} diff --git a/domains/psnbl.json b/domains/psnbl.json new file mode 100644 index 000000000..e6b5ddc49 --- /dev/null +++ b/domains/psnbl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "psnbl", + "email": "pietrosimone.nobiletti@studenti.unipr.it" + }, + "record": { + "CNAME": "psnbl.github.io" + } +} diff --git a/domains/psyro.json b/domains/psyro.json deleted file mode 100644 index 437159606..000000000 --- a/domains/psyro.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Clynt uplaoder!", - "repo": "https://gitlab.com/Clynt707/SharX", - "owner": { - "username": "Clynt", - "email": "clyntcollin@gmail.com" - }, - "record": { - "A": ["45.131.108.144"] - } -} diff --git a/domains/ptd.json b/domains/ptd.json new file mode 100644 index 000000000..401823245 --- /dev/null +++ b/domains/ptd.json @@ -0,0 +1,10 @@ +{ + "description": "Documentation for ptdung", + "owner": { + "username": "phantatdung233", + "email": "phantatdung233@gmail.com" + }, + "record": { + "CNAME": "ptdung.site" + } +} diff --git a/domains/ptero.phoenix.json b/domains/ptero.phoenix.json new file mode 100644 index 000000000..37214625f --- /dev/null +++ b/domains/ptero.phoenix.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PhoenixOrigin", + "email": "phoenixorigin171@gmail.com", + "github_id": 85183285 + }, + "record": { + "A": ["130.162.166.134"] + } +} diff --git a/domains/puffer.json b/domains/puffer.json deleted file mode 100644 index 69fabe76b..000000000 --- a/domains/puffer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My website!", - "repo": "https://github.com/kevinalavik/kevinalavik.github.io", - "owner": { - "username": "kevinalavik", - "email": "kevin.alavik@icloud.com", - "twitter": "pufferisadev" - }, - "record": { - "CNAME": "kevinalavik.github.io" - } -} diff --git a/domains/pupbrained.json b/domains/pupbrained.json deleted file mode 100644 index f5711d612..000000000 --- a/domains/pupbrained.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "pupbrained", - "email": "mars@pupbrained.xyz" - }, - "record": { - "CNAME": "pupbrained.xyz" - } - } - \ No newline at end of file diff --git a/domains/push.json b/domains/push.json new file mode 100644 index 000000000..290292048 --- /dev/null +++ b/domains/push.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Website/ File Storage", + "repo": "https://github.com/pushingcc/pushingcc.github.io", + "owner": { + "username": "pushingcc", + "email": "pushing@mailfence.com", + "twitter": "Thxczx" + }, + "record": { + "CNAME": "pushingcc.github.io" + } +} diff --git a/domains/pushpak.json b/domains/pushpak.json new file mode 100644 index 000000000..8e0712686 --- /dev/null +++ b/domains/pushpak.json @@ -0,0 +1,11 @@ +{ + "description": "Pushpak | Portfolio", + "repo": "https://github.com/Drish-xD/Drish-xD.github.io", + "owner": { + "username": "1pushpak1", + "email": "pushpakkumawat20028@gmail.com" + }, + "record": { + "CNAME": "1pushpak1.github.io" + } +} diff --git a/domains/pustak.json b/domains/pustak.json new file mode 100644 index 000000000..60c4cb14d --- /dev/null +++ b/domains/pustak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PustakP", + "email": "pustakpathak7@gmail.com" + }, + "record": { + "CNAME": "oppoyy.pages.dev" + } +} diff --git a/domains/pvyas.json b/domains/pvyas.json new file mode 100644 index 000000000..4d54cf28e --- /dev/null +++ b/domains/pvyas.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "parthvyas7", + "email": "", + "discord": "505731689788473347", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sf0jfkbSFi9mJlIHKGJyHq6aLTTeihBVr4C24pYoXyVydhbwXIsvMjzl6EplTvtAdaaTKAeA2Mvda4Q4_FrbsBdkX3Qd56ByRc4uuLHj-IX_-2W4gJ6EFUZ67Fqx1ePQIZ50SpZw9zLZBhXmExF0bOd3c9xJaf081kgqISRjxYlfy0ITaXjvly9ye2CDAgFN-oyKtRAyoolwiGCywfl-njl-oix02Ezc3EWS0zWVTPIjTyGoAxeeexfobLV0wWQa9P27GsnKQrTfpmmWxWlPLLfUlKmotW2C9bEPWSu5dEWhvCnQDry5tJ2m9IHsoSy27YRiqQLLo-WeQNF7CU9tLg.gf0byOghlGoqNnuHgld42A.EddL6PqoWvCcmqTte698ZKtTyyt_8sqMYIvVciH4GSSbOPxsKtRZkYE73QdBSC-tC0CwX2-nxsAGOSff4VFUSCl7S8p-s8YEmLe2-0g21QmPwyXGVwi1lAMcAY0GODf4.VypDGE8qp8W364yhOfkfNA" + }, + + "record": { + "CNAME": "parthvyas7.github.io" + } + } + \ No newline at end of file diff --git a/domains/pxd.json b/domains/pxd.json deleted file mode 100644 index 342ec7b21..000000000 --- a/domains/pxd.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "ProgrammerXD", - "repo": "https://github.com/realpxd/realpxd.github.io", - "owner": { - "username": "realpxd", - "email": "thisisnamansaini@gmail.com", - "twitter": "PXD_Officials" - }, - "record": { - "CNAME": "realpxd.github.io" - } -} diff --git a/domains/py.json b/domains/py.json new file mode 100644 index 000000000..b3e1d70fd --- /dev/null +++ b/domains/py.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jrirydkdifu", + "email": "0kryptx@gmail.com" + }, + "record": { + "CNAME": "jrirydkdifu.github.io" + } +} diff --git a/domains/pythonplumber.json b/domains/pythonplumber.json new file mode 100644 index 000000000..a0cb3b2b0 --- /dev/null +++ b/domains/pythonplumber.json @@ -0,0 +1,11 @@ +{ + "description": "Mario Python Plumbers's website", + "repo": "https://github.com/PythonPlumber/pythonplumber.github.io", + "owner": { + "username": "PythonPlumber", + "email": "mario.yellow.bea@proton.me" + }, + "record": { + "CNAME": "pythonplumber.github.io" + } +} diff --git a/domains/pythonscratcher.json b/domains/pythonscratcher.json new file mode 100644 index 000000000..0d16fdf96 --- /dev/null +++ b/domains/pythonscratcher.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PythonScratcher", + "email": "callumcardy7@gmail.com" + }, + + "record": { + "CNAME": "pythonscratcher.github.io" + } +} diff --git a/domains/pyve.json b/domains/pyve.json index d08b360b9..29f444a1a 100644 --- a/domains/pyve.json +++ b/domains/pyve.json @@ -1,12 +1,11 @@ -{ - "description": "pyve's world", - "repo": "https://github.com/pvignau/pvignau.github.io", - "owner": { - "username": "pvignau", - "email": "vignau.py@gmail.com" - }, - "record": { - "CNAME": "pvignau.github.io" - } - } - \ No newline at end of file +{ + "description": "pyve's world", + "repo": "https://github.com/pvignau/pvignau.github.io", + "owner": { + "username": "pvignau", + "email": "vignau.py@gmail.com" + }, + "record": { + "CNAME": "pvignau.github.io" + } +} diff --git a/domains/pyyupsk.json b/domains/pyyupsk.json new file mode 100644 index 000000000..f3c04cdaf --- /dev/null +++ b/domains/pyyupsk.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "pyyupsk", + "email": "pyyupsk@proton.me" + }, + "description": "👋 Hello! I'm ファース, a passionate full-stack developer with a passionate about creating innovative solutions that have a positive impact on people's lives.", + "repo": "https://github.com/pyyupsk/personal-website", + "record": { + "CNAME": "pyyupsk.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/pznguin.json b/domains/pznguin.json new file mode 100644 index 000000000..888585325 --- /dev/null +++ b/domains/pznguin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pznguin-kyun", + "email": "p3nguinkun@proton.me" + }, + "record": { + "CNAME": "pznguin-kyun.github.io" + } +} diff --git a/domains/qing762.json b/domains/qing762.json new file mode 100644 index 000000000..cdb0dca57 --- /dev/null +++ b/domains/qing762.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qing762", + "email": "threatedblade@outlook.com" + }, + "record": { + "CNAME": "qing-website.onrender.com" + } +} diff --git a/domains/qna.suki.json b/domains/qna.suki.json deleted file mode 100644 index 7ff0ef615..000000000 --- a/domains/qna.suki.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "SukiPlayz", - "email": "sukimayoo@outlook.com" - }, - "record": { - "CNAME": "247eddef-406f-4ce3-87ae-b3515f3aa876.id.repl.co" - } -} diff --git a/domains/qrcode.json b/domains/qrcode.json new file mode 100644 index 000000000..f721ee522 --- /dev/null +++ b/domains/qrcode.json @@ -0,0 +1,12 @@ +{ + "description": "My QRCode Webpage Project", + "owner": { + "username": "isobarsmustang0g", + "email": "isobars.mustang_0g@icloud.com" + }, + "record": { + "A": [ + "103.97.126.29" + ] + } +} diff --git a/domains/qtitpc.json b/domains/qtitpc.json new file mode 100644 index 000000000..25943f908 --- /dev/null +++ b/domains/qtitpc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qtungnui07", + "email": "qtung.07.dt@gmail.com" + }, + "record": { + "CNAME": "qtungnui07.github.io" + } +} diff --git a/domains/quadeer.json b/domains/quadeer.json new file mode 100644 index 000000000..e2b52a500 --- /dev/null +++ b/domains/quadeer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maquadeer", + "email": "mdquadeer2003@gmail.com" + }, + "record": { + "CNAME": "quadeer.pages.dev" + } +} diff --git a/domains/quantum.json b/domains/quantum.json new file mode 100644 index 000000000..7f7b5f37a --- /dev/null +++ b/domains/quantum.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RabbitFored", + "email": "quantum@theostrich.eu.org" + }, + + "record": { + "CNAME": "quantum.theostrich.eu.org" + } +} diff --git a/domains/quantummapleqc.json b/domains/quantummapleqc.json new file mode 100644 index 000000000..5df9d954f --- /dev/null +++ b/domains/quantummapleqc.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/QuantumMapleQC/quantumapleqc.github.io", + "owner": { + "username": "quantumapleqc", + "email": "thefattestmod@gmail.com" + }, + "record": { + "CNAME": "quantummapleqc.github.io" + } +} diff --git a/domains/queirozt.json b/domains/queirozt.json index a5387a1dc..c022baa1b 100644 --- a/domains/queirozt.json +++ b/domains/queirozt.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "QueirozT", + "email": "tiagoqueirozgoncalves100@gmail.com" + }, - { - "owner": { - "username": "QueirozT", - "email": "tiagoqueirozgoncalves100@gmail.com" - }, - - "record": { - "A": ["144.22.180.97"] - } - } - \ No newline at end of file + "record": { + "A": ["144.22.180.97"] + } +} diff --git a/domains/qui.json b/domains/qui.json new file mode 100644 index 000000000..85fbc4e3e --- /dev/null +++ b/domains/qui.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "thatqui", + "email": "_qui@tuta.io", + "discord": "723148774137921738", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.jXGBO7Tsfyu_psmXqlYGGIyt2tZkd87qioPa0FEavsjkdz7cgkNenlSSYSYXrtvtPL4vuZEegKgIHnq8T0lkRDMLM2LmzamYm7JKkH401CE_24-KF0fh9Q7sRmgNJ_hO8RiESqC3zGJbvpIpXE2xZOAVLl9iNrjdd-5ErHzoBFkG5_ZjuN2xm-HRNuxyDf5cugkfQToZIXxitzWW73su9-QVyvY0vvzKXKtUaWpLffLIUfBTOf7DTJMZisqSIWYndMonBJbO_C458XYHnw0Iw_YiEULX0xNSsFx1IPTziJ4o4LywTFQP7jCc9LwSwIyeUuiO57g0lZdQzMihHKMOiA.Rl_Q9Am5PKiV7JEsEEtTtw.8wYlcB6Bw0H8GOjoYYpbiYR0eNicrsUOEbNgz2X4Km3_fyafRHp8C-RD5HfQEAx6lwsbaa1TY4yCrhU-R-4SwA.OeNvXsjqdk2rqhdIsPQnFg" + }, + + "record": { + "CNAME": "thatqui.github.io" + } + } diff --git a/domains/quincetart10.json b/domains/quincetart10.json new file mode 100644 index 000000000..4555c1ec7 --- /dev/null +++ b/domains/quincetart10.json @@ -0,0 +1,22 @@ +{ + "description": "Personal site", + "repo": "https://github.com/QuinceTart10/quincetart10.github.io", + "owner": { + "username": "QuinceTart10", + "email": "", + "discord": "862644161156218891" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "5a3d085e4aa47645.mx1.emailprofi.seznam.cz", + "5a3d085e4aa47645.mx2.emailprofi.seznam.cz" + ], + "TXT": "v=spf1 include:spf.seznam.cz ~all" + } +} diff --git a/domains/quvi.json b/domains/quvi.json new file mode 100644 index 000000000..ab00dd217 --- /dev/null +++ b/domains/quvi.json @@ -0,0 +1,11 @@ +{ + "description": "Domain for my bio", + "repo": "https://github.com/quvvii/quvvii.github.io", + "owner": { + "username": "quvvii", + "email": "quvi.top@gmail.com" + }, + "record": { + "CNAME": "quvvii.github.io" + } +} diff --git a/domains/quydang.json b/domains/quydang.json index 1f051a455..357fe95c4 100644 --- a/domains/quydang.json +++ b/domains/quydang.json @@ -1,11 +1,11 @@ { - "description": "I used for my learning purpose", - "repo": "https://github.com/quydang04/quydang04.github.io", - "owner": { - "username": "quydang04", - "email": "dangvonguyen169@gmail.com" - }, - "record": { - "CNAME": "quydang04.github.io" - } -} + "description": "I used for my learning purpose", + "repo": "https://github.com/quydang04/quydang04.github.io", + "owner": { + "username": "quydang04", + "email": "dangvonguyen169@gmail.com" + }, + "record": { + "CNAME": "quydang04.github.io" + } +} diff --git a/domains/qwel.json b/domains/qwel.json index edbf7802d..74b22e569 100644 --- a/domains/qwel.json +++ b/domains/qwel.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "qwel-exe", - "discord": "qwel.exe#9583", - "email": "anirudh012009@gmail.com" - }, - "record": { - "CNAME": "qwel-exe.github.io" - } + "owner": { + "username": "qwel-exe", + "discord": "qwel.exe#9583", + "email": "anirudh012009@gmail.com" + }, + "record": { + "CNAME": "qwel-exe.github.io" + } } diff --git a/domains/qwertx.json b/domains/qwertx.json index 2579dd44b..9065e4f9a 100644 --- a/domains/qwertx.json +++ b/domains/qwertx.json @@ -1,11 +1,11 @@ { - "description": "Gonna use this domain for my personal website and other pages/stuff", - "repo": "https://github.com/notqwertz/notqwertz.github.io", - "owner": { - "username": "notqwertz", - "email": "zuweyrh752@gmail.com" - }, - "record": { - "CNAME": "notqwertz.github.io" - } -} + "description": "Gonna use this domain for my personal website and other pages/stuff", + "repo": "https://github.com/notqwertz/notqwertz.github.io", + "owner": { + "username": "notqwertz", + "email": "zuweyrh752@gmail.com" + }, + "record": { + "CNAME": "notqwertz.github.io" + } +} diff --git a/domains/qwerty-qwerty.json b/domains/qwerty-qwerty.json deleted file mode 100644 index b922c0b7f..000000000 --- a/domains/qwerty-qwerty.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Qwerty-Qwerty88", - "email": "personqwertyperson88@gmail.com" - }, - "record": { - "CNAME": "d9394ac5-c4db-44e1-b67f-198ad4c7dc3a.id.repl.co" - } -} diff --git a/domains/qwertyqwerty.json b/domains/qwertyqwerty.json new file mode 100644 index 000000000..a9fd0e978 --- /dev/null +++ b/domains/qwertyqwerty.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Qwerty-Qwerty88", + "email": "personqwertyperson88@gmail.com", + "twitter": "QwertyQwerty88_" + }, + "record": { + "CNAME": "qwertyqwerty.pages.dev" + } +} diff --git a/domains/qwertyr0.json b/domains/qwertyr0.json new file mode 100644 index 000000000..1cb54ae2d --- /dev/null +++ b/domains/qwertyr0.json @@ -0,0 +1,12 @@ +{ + "description": "My Personal website", + "repo": "https://github.com/QwertyR0/Personal-Website", + "owner": { + "username": "QwertyR0", + "email": "", + "discord": "qwerty.r0" + }, + "record": { + "CNAME": "qwertyr0.github.io" + } +} diff --git a/domains/r.json b/domains/r.json new file mode 100644 index 000000000..9a344437c --- /dev/null +++ b/domains/r.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Razuuu", + "email": "", + "discord": "346717564895887360", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.e12vH6rhniPE29iegE8Nldgxx-_a4OW-RXe-JU-CbynMzDOPDozeZi-ASerbzV3Ta0HfAVDZmy5jYz1afPDuYIN4p1l_BI3Z_YTkWyiX37-hIkX9HSwY9epZ6keYodPHLCO5yWBlLaJ0zJ5PMUbzCYQvbB7WA1dmFEU7Aro_gYiIKkUMRMOtBkemiPJPp3YxuOFN18nboDTAk9_tmlgpyiChcjEezP3j3w4t7sw6b6EPy2gmrGEH5E4bd4Je2Pzk-Dt-9d20bYygn2tGaiKqMtGSx0b77K-J0SCG-yAE0SCDJzf4IuGD-tTsl12Q5WfolA90aKc_NPZyferBU0-BLw.E39G4iGbEfitm6rMmdGO9g.zNLGD5wcfN73kGkj9WKuUnycEpB7tsdzrZGeZT8TTjYyG-xdkbmgTObik7PdzD48ddnOwm7x0W2Cn9bOoqxpmNHb5ORhegp9x8ejUZT8Q_z6EJICfqEcRoDjk9sV7_Tf.suB-fbnKTcGFHoUmZyb45w" + }, + + "record": { + "CNAME": "razuuu.de" + } + } + \ No newline at end of file diff --git a/domains/r04nx.json b/domains/r04nx.json new file mode 100644 index 000000000..85dc5e474 --- /dev/null +++ b/domains/r04nx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "r04nx", + "email": "rohanprakashpawar2005@gmail.com" + }, + + "record": { + "CNAME": "r04nx.github.io" + } +} diff --git a/domains/r0bl0x10501050.json b/domains/r0bl0x10501050.json deleted file mode 100644 index e0cf25986..000000000 --- a/domains/r0bl0x10501050.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "R0bl0x10501050's portfolio site!", - "repo": "https://github.com/R0bl0x10501050/1050-Site", - "owner": { - "username": "R0bl0x10501050", - "email": "r0bl0x10501050e@gmail.com", - "twitter": "r0bl0x10501050", - "discord": "R0bl0x10501050#9989" - }, - "record": { - "CNAME": "846358be-940c-4bdd-8b5b-3964aab5843c.id.repl.co" - } -} diff --git a/domains/r1p.json b/domains/r1p.json new file mode 100644 index 000000000..eacaea2cf --- /dev/null +++ b/domains/r1p.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0kryptx", + "email": "k3px@proton.me" + }, + "record": { + "CNAME": "0kryptx.github.io" + } +} diff --git a/domains/r2d2.json b/domains/r2d2.json deleted file mode 100644 index 00a89e590..000000000 --- a/domains/r2d2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "R2D2 website", - "owner": { - "username": "hogakesan", - "email": "aereg@ya.ru" - }, - "record": { - "A": ["46.32.83.106"] - } -} diff --git a/domains/r2kip.json b/domains/r2kip.json new file mode 100644 index 000000000..13643e9d5 --- /dev/null +++ b/domains/r2kip.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/r2kip/r2kip.github.io", + "owner": { + "username": "r2kip", + "email": "i@r2kip.ru", + "discord": "631193679775662122" + }, + "record": { + "URL": "https://r2kip.vercel.app/" + } +} diff --git a/domains/r2mvstr.json b/domains/r2mvstr.json new file mode 100644 index 000000000..d4ad28162 --- /dev/null +++ b/domains/r2mvstr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "1MillonunlockDev", + "email": "1millonunlock@gmail.com" + }, + "record": { + "A": ["144.91.94.164"] + } +} diff --git a/domains/raadsel.json b/domains/raadsel.json deleted file mode 100644 index 39e917cfb..000000000 --- a/domains/raadsel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Personal website of Raadsel", - "repo": "https://github.com/Raadsl/New-Personal-site", - "owner": { - "username": "Raadsl", - "email": "jorik.loos@gmail.com", - "discord": "Raadsel#9398" - }, - "record": { - "CNAME": "6925d98d-2d57-403e-8fe7-7d76686df9b4.id.repl.co" - } -} diff --git a/domains/raafey.json b/domains/raafey.json new file mode 100644 index 000000000..7b6e0b5ac --- /dev/null +++ b/domains/raafey.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "RaafeyRaza", + "email": "raafeyraza1@gmail.com" + }, + "record": { + "A": ["69.197.135.202"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all" + ] + } +} diff --git a/domains/raahi.json b/domains/raahi.json new file mode 100644 index 000000000..6f0a5ed2c --- /dev/null +++ b/domains/raahi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ravan745", + "email": "carelessgaming8@gmail.com" + }, + "record": { + "A": ["45.90.12.29"] + } +} diff --git a/domains/rabbi-shuki.json b/domains/rabbi-shuki.json index 056313ec5..2b3fdc78b 100644 --- a/domains/rabbi-shuki.json +++ b/domains/rabbi-shuki.json @@ -2,7 +2,7 @@ "description": "TODO: update readme", "repo": "https://github.com/rabbishuki/rabbishuki.github.io", "owner": { - "username": "Rabbi Shuki", + "username": "rabbishuki", "email": "rabbishuki+is-a-dev@gmail.com" }, "record": { diff --git a/domains/rabug.json b/domains/rabug.json new file mode 100644 index 000000000..587311aec --- /dev/null +++ b/domains/rabug.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NotRabug50", + "email": "", + "discord": "541194606214250496", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ps0moOTq92R__wFgKFQH6WfwtOBaTQI4l7VY-uKJH1Eq0_rgwbZn5VFO4JGz06gUM6TF7WcUJTXCKMBNmJ2FP72EziCABmyM9Nre1UzcAWQ5u8vI9BoBsFTRqbqtezMbfwi18iYzl5PhpTT9jFP9OVosqgRTaCuFQab6u_63KwrOfw4cH-vKUKAU0fr3Q0t2hlFKyioN04n--bgMbtxBkH1F9U4Y2WeeAikUsNUM-RJPxSRDkE5jPQwH3CRvteBDR3p9kMvT8hZDXH0MUQizKFE5ok2GEpc0f4yw7XZtCf59fg-kAuBlneA0or4twHPmMVBc5gj3RMQ2wkBM5TtEKg.Dz0wpW_pv-ibVW_W-AG46w.JxtLaG5wminoevZ_ovAe-G5MsPRfQLP-JsiFF_0nuHEYCrAGQvbDyTs5R9E6B9iqEvyWu7gcOAaSoclyaworD83p0P8oDbHcrRuzFnEl-N0.CsKvYUIxVUV9977e0H3KTw" + }, + "record": { + "CNAME": "notrabug.vercel.app" + } +} diff --git a/domains/raccoon.json b/domains/raccoon.json new file mode 100644 index 000000000..bac165dc8 --- /dev/null +++ b/domains/raccoon.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "nilsraccoon", + "email": "", + "discord": "1129507464589627512", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Qx4ThJ6b-2bcrSCHvwQmwUm15cmnRgh8h2yafFwKND06K1CQp7zeGCyn3r2OCwFVkwfRAZfBFVMcb3gbGs5jnP1HdOi7qqZ3DuRdhWd2aXb4_x_WLbwAxfn0S6dHcQqKH46aCkRVHyZYnHhxEYaroUy3vdsvQWhnOs-gDLCIvYFCrz7fhiLAFXogwvccmBAfNZb_y9hrfeGm86uYHsQHYhIrkEPBX7EwX1wdXabkitIfbzr0_-7_-JwLJrmvyOPp605EKOyvrjI1Q-rlQadYanljBfXK-Mi2Evkohe-0PjSY0NAXvKD26OjEXblcRqFBgQGWgOyCvJ7bSBxo-MV8QQ.GfbApX_iVz_Sp6y0Y2a70g.Jf4zyGsWoKyjxofhnW2KWMKe9C677jCrMYM9q1mnK3xRL3wrbINlMfHpuoDpsXztC-5YByYMUsZCz7oN2tpIk7EUxAMnMNdqShvbvtZfdWw.ONM_KW-WKU-G1lL4rn-HkA" + }, + + "record": { + "CNAME": "nilsraccoon.github.io" + } + } + \ No newline at end of file diff --git a/domains/rachit.json b/domains/rachit.json new file mode 100644 index 000000000..3c608f993 --- /dev/null +++ b/domains/rachit.json @@ -0,0 +1,12 @@ +{ + "description": "My personal portfolio website", + "owner": { + "username": "notnotrachit", + "email": "rachitkhurana40@gmail.com", + "twitter": "notnotrachit" + }, + + "record": { + "CNAME": "notnotrachit.github.io" + } +} diff --git a/domains/rachmadsuharja.json b/domains/rachmadsuharja.json new file mode 100644 index 000000000..fc38defe7 --- /dev/null +++ b/domains/rachmadsuharja.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rachmadsuharja", + "email": "rachmadsuharja123@gmail.com" + }, + "record": { + "CNAME": "rachmadsuharja.github.io" + } +} diff --git a/domains/radar.json b/domains/radar.json deleted file mode 100644 index 6db2b0aa7..000000000 --- a/domains/radar.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Radar's personal developer website", - "repo": "https://github.com/RadarFolf/CaseyK9", - "owner": { - "username": "CaseyK9", - "email": "rocco@caseymediallc.com", - "twitter": "RadarFolf", - "discord": "Radar#0001" - }, - "record": { - "CNAME": "caseymediallc.com" - } -} diff --git a/domains/radim.json b/domains/radim.json new file mode 100644 index 000000000..1d2237fd3 --- /dev/null +++ b/domains/radim.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "radim-codes", + "email": "", + "discord": "1136622247918972968", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ALR6-kSY_1xcCXWeEFcN3MljHGs64i5CXNdAfaJjL76vrWcIdrbQpq1pxkJ5IUivvK6kO3glLYwGFY2aIMUAUOrNqP6kY8jwGz_jocoI6GsZrNMFG-iivMJH6KfMVflPxsi7S5Gj1h16SodeCYkSY75i_BFRzSuK2R08YAVogKYG0DCjnBy4vPmwGpDBzgvlzC1xcB3cp0xAiSAWGy1_yJ2AhSejJvJLOJjnduJKssiDQTStoh2pFJmFcegTg-d3XyEhPG2CLjlETMy5scK_7TJhfm2B_j7_WoGeqx9bYnhvezq2UL98_SApjQHYW0RqCvc2H8hDyqzz_mUSjqzdjw.twUMfQDP1UG0sSdnIjzl0Q.UlPnydKIKETIKTLQ0FDmnL_JEzfVezFXc3KkY5_Sn3aXpC0GOOhddolmTPmrxU7UX71wlhPJWcDQVVjIzf41IoN0gLSbq_T0GMuQbwq-kp8.v8huc9AakxQ0ROz0eTxxtA" + }, + + "record": { + "CNAME": "radim-codes.github.io" + } + } + \ No newline at end of file diff --git a/domains/radke.json b/domains/radke.json index abecd42ed..c37ccfabe 100644 --- a/domains/radke.json +++ b/domains/radke.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "radekw8733", - "email": "radekw8733@gmail.com" - }, - "repo": "https://github.com/radekw8733/radke.is-a.dev", - "record": { - "CNAME": "radkerouter.ddns.net" - } -} \ No newline at end of file + "owner": { + "username": "radekw8733", + "email": "radekw8733@gmail.com" + }, + "repo": "https://github.com/radekw8733/radke.is-a.dev", + "record": { + "CNAME": "radke.duckdns.org" + } +} diff --git a/domains/raf.json b/domains/raf.json new file mode 100644 index 000000000..e817c6f71 --- /dev/null +++ b/domains/raf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rafaalrazzak", + "email": "dev.rafaalrazzak@gmail.com" + }, + "record": { + "CNAME": "rafaar.pages.dev" + } +} diff --git a/domains/rafa.json b/domains/rafa.json new file mode 100644 index 000000000..1670c5ae5 --- /dev/null +++ b/domains/rafa.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "xmceflp", + "email": "", + "discord": "1101900324467376139", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.psgSFJhaRVPO23S0CNPftTx1m35a_s7LRY_23XpcDAEm7_VstIcSEgf3UqE7XE5piyDqBx7E4fFp7OyjD271greQVjs3cbS5lOu93XalLq2LvOlT4LTsLqehmAawphAFoa1BiDzWKsnEX1sSCFeOQxiV85XuwV3yG1aEs7ErM8Nyc1GiTKI8_G4EyQiVWdiJ_XYorXgg9ycbX1x8dVfHzWfJb0C4KAYkByrbstDUEGsq11u1K2OfhE8PzcF7xgexueTXNfJIom5gQReXBDLH4CS-3EqsF57Dyt80wr7GS_z9Y3q0WNiwWyaYzMcnbZox8b5k0jRXBfeTmPgbdgrB0Q.FxF35ghjOYbPNHip8BnKLw.C0zTN0mfMahn-lHCejtrOejAanhzKOUweBfq3xjMAtgH2Jdt4TpItNh6Q-iw5himDS08FD09n9qMcmITW2LNR5Qwr1e1QD0tRGYxkcW0sOzFbjlG_OzhG3hL5gvvPfZG.wkMvw-xcKWyQ15hXwNQxxQ" + }, + "record": { + "A": [ + "144.22.130.149" + ] + } +} diff --git a/domains/rafaar.json b/domains/rafaar.json new file mode 100644 index 000000000..e817c6f71 --- /dev/null +++ b/domains/rafaar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rafaalrazzak", + "email": "dev.rafaalrazzak@gmail.com" + }, + "record": { + "CNAME": "rafaar.pages.dev" + } +} diff --git a/domains/rag3r.json b/domains/rag3r.json new file mode 100644 index 000000000..487212e09 --- /dev/null +++ b/domains/rag3r.json @@ -0,0 +1,11 @@ +{ + "description": "My Website Portfolio and other stuff", + "repo": "https://github.com/Rage65/website", + "owner": { + "username": "Rage65", + "email": "123thetechguy@gmail.com" + }, + "record": { + "CNAME": "rage65.github.io" + } +} diff --git a/domains/raghavkorde.json b/domains/raghavkorde.json new file mode 100644 index 000000000..57f769d19 --- /dev/null +++ b/domains/raghavkorde.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raghavkorde", + "email": "raghavkorde4@gmail.com" + }, + "record": { + "CNAME": "web-resume-b8p.pages.dev" + } +} diff --git a/domains/raghavyuva.json b/domains/raghavyuva.json index 81d5ec04a..f59f0aa99 100644 --- a/domains/raghavyuva.json +++ b/domains/raghavyuva.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "raghavyuva", + "email": "vikramnbhat15@gmail.com" + }, - { - "owner": { - "username": "raghavyuva", - "email": "vikramnbhat15@gmail.com" - }, - - "record": { - "CNAME": "raghavyuva.github.io" - } - } - + "record": { + "CNAME": "raghavyuva.github.io" + } +} diff --git a/domains/rahul-deka.json b/domains/rahul-deka.json new file mode 100644 index 000000000..d248e655a --- /dev/null +++ b/domains/rahul-deka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamRahul21", + "email": "rahuldeka072@gmail.com" + }, + "record": { + "CNAME": "iamrahul21.github.io" + } +} diff --git a/domains/rahul-rabari.json b/domains/rahul-rabari.json new file mode 100644 index 000000000..5a171c90d --- /dev/null +++ b/domains/rahul-rabari.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/rahul-rabari/rahul-rabari.github.io", + "owner": { + "username": "rahul-rabari", + "email": "" + }, + "record": { + "CNAME": "rahul-rabari.github.io" + } +} diff --git a/domains/rahul.json b/domains/rahul.json deleted file mode 100644 index eed9e3969..000000000 --- a/domains/rahul.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Rahul's personal developer website", - "repo": "https://github.com/rahuldahal", - "owner": { - "username": "rahuldahal", - "email": "rdaahal@gmail.com" - }, - "record": { - "CNAME": "rahuldahal.com.np" - } -} diff --git a/domains/rahuldeka.json b/domains/rahuldeka.json new file mode 100644 index 000000000..9f86e1495 --- /dev/null +++ b/domains/rahuldeka.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "iamRahul21", + "email": "", + "discord": "638400369986240512", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZMyYId6tCsMQhHzUAOlANYLXeW88v_xaqFXMDdMPrqbSyX16JTShxlY0bNRfVYeRimLlJvguE6_3-gc1mROCpZ9oni5o9Qm8HxbGBe2QlxNmbgSnrn-RIt4pcbD1_uG2eD0SDOCNzypFDvEysML2oEZKYPkbKmKrngdlaBemUWrHo264DQyFquLW3D58wL-kWHUPlKHf-4yMoPGBrryoXjgBUGSH5UO6n4P7tpuWnvdWu_GV-qcW4Pnf9Rz8Ar3Zb0duzVCl3gjNplhDf-7BGrT4BJ2Hb0Pj8v7V5BidxlHw6TLX-2arnvkUFGQ-TXjAwr-rok5XHMsMU0rceZb9MQ.alqDzZf8wzEiNCDlxL1NCA.dC9TK-YXvpycR7cIeWnEXChuRKikVtMV3UqmjgMDJSZwJQMtAT2l_imAFj8cU8RRt7waSyKJJ8WusFaga33G2RMvd6KVeyrDS8cqWQMydvQ.qy4nN5DrABw1t_QsuWF3qg" + }, + + "record": { + "CNAME": "iamrahul21.github.io" + } + } + \ No newline at end of file diff --git a/domains/rahulps.json b/domains/rahulps.json index 5e1a0ba21..10683aacf 100644 --- a/domains/rahulps.json +++ b/domains/rahulps.json @@ -1,10 +1,10 @@ - { - "owner": { - "username": "rahulps1000", - "email": "rahulps1000@gmail.com" - }, +{ + "owner": { + "username": "rahulps1000", + "email": "rahulps1000@gmail.com" + }, - "record": { - "URL": "https://myfolio-rahulps.netlify.app" - } - } + "record": { + "URL": "https://myfolio-rahulps.netlify.app" + } +} diff --git a/domains/raid.json b/domains/raid.json index 32d6d9ba4..dc7f6b782 100644 --- a/domains/raid.json +++ b/domains/raid.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ImRaid", - "email": "romanplayer76@gmail.com" - }, - "record": { - "CNAME": "f8d83b65-6aa3-47dd-952f-95b1a52eadb4.id.repl.co" - } + "owner": { + "username": "ThatsRaid", + "email": "itsraidlol@gmail.com" + }, + "record": { + "CNAME": "thatsraid.github.io" + } } diff --git a/domains/raiden.json b/domains/raiden.json deleted file mode 100644 index d7e66a0e8..000000000 --- a/domains/raiden.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "raiden076", - "email": "arkapravodas99@gmail.com" - }, - "record": { - "A": ["144.24.145.70"] - } - } - \ No newline at end of file diff --git a/domains/raikan.json b/domains/raikan.json new file mode 100644 index 000000000..5debb03ac --- /dev/null +++ b/domains/raikan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "raikan-san", + "email": "", + "discord": "459219626484826113", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.UoRrv1IHlwaxxz5pjNT0ADqyG3EpR8FA3v2oBJGdoMuSZ5v-8ImQVabz3rQ8P1peUKADV4RExI0OtGfajWYQw11bJD9KNXCPMi_MevxxaAX22yvnyW3hPGf_sUe6qhltlGftElkG_yoO6MzxtZyB1_NTeiHR44IZywuoOOEZIwdkrWyLtgczCoTLFNPBtAwcBPaCQf1t94yTgI09juyLVQzHL26dzb-VISsWxfAxAnanBfMfn1ELUnMQXm32QlJPbuQ7f0OATmGfW-XwIiBRt3Zyn28PNZm7Vhgyr3m4NYylpgDjz5v2jibtw7rAO9eP_a9cfToZY7bwj02mZfMIBA.KnAaAaz-Spr94XeYJF4lLQ.dyOn2mafCFB2J1682xUN2VxAtMG35Sh8nJ1AFLqYGmo1nttcRWosRX6NjRxoK_FLRP1Bv9CdVhzhx-R39bLmXYM7fksuKYd_qsY_od-0vwGSm56iHkLrE5PZnjYULssO.70k22YtUqSrQtnO1MDwHwg" + }, + + "record": { + "CNAME": "raikan-san.github.io" + } + } diff --git a/domains/rainotoberu.json b/domains/rainotoberu.json new file mode 100644 index 000000000..8dcaf6c68 --- /dev/null +++ b/domains/rainotoberu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rainotoberu", + "email": "imdmelan@gmail.com" + }, + "record": { + "CNAME": "rainotoberu.github.io" + } +} diff --git a/domains/raiven.json b/domains/raiven.json deleted file mode 100644 index 8747e1e50..000000000 --- a/domains/raiven.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "rdvntpkky", - "email": "ridvantopakkaya@hotmail.com" - }, - - "record": { - "A": ["193.31.116.116"] - } - } - \ No newline at end of file diff --git a/domains/raiyaad-raad.json b/domains/raiyaad-raad.json new file mode 100644 index 000000000..22292f020 --- /dev/null +++ b/domains/raiyaad-raad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Raiyaad-Raad", + "email": "raiyaadraad132rafan45@gmail.com" + }, + "record": { + "CNAME": "raiyaad-raad.github.io" + } +} diff --git a/domains/raiyaad.json b/domains/raiyaad.json new file mode 100644 index 000000000..22292f020 --- /dev/null +++ b/domains/raiyaad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Raiyaad-Raad", + "email": "raiyaadraad132rafan45@gmail.com" + }, + "record": { + "CNAME": "raiyaad-raad.github.io" + } +} diff --git a/domains/raj.json b/domains/raj.json index 8ca823d30..e83f82c0a 100644 --- a/domains/raj.json +++ b/domains/raj.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "rajmaskey", - "email": "rajmaskey017@gmail.com" - }, - "record": { - "CNAME": "website-3.onrender.com" - } + "owner": { + "username": "rajmaskey", + "email": "rajmaskey017@gmail.com" + }, + "record": { + "CNAME": "website-3.onrender.com" + } } diff --git a/domains/rajasbhagatkar.json b/domains/rajasbhagatkar.json new file mode 100644 index 000000000..4007f101e --- /dev/null +++ b/domains/rajasbhagatkar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RajasBhagatkar", + "email": "rajasbhagatkar@gmail.com" + }, + "record": { + "CNAME": "rajasbhagatkar.github.io" + } +} diff --git a/domains/rajveer.json b/domains/rajveer.json new file mode 100644 index 000000000..28465abca --- /dev/null +++ b/domains/rajveer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kyouhei14", + "email": "rajveerkobot@gmail.com" + }, + "record": { + "URL": "https://kyouhei14.github.io/rajveer-is-dead/" + } +} diff --git a/domains/raku.json b/domains/raku.json deleted file mode 100644 index 06c109c56..000000000 --- a/domains/raku.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A Website For My Personal Website", - "repo": "https://github.com/Wuffye123", - "owner": { - "username": "Wuffye123", - "email": "rakurakumicro@gmail.com" - }, - "record": { - "CNAME": "0836bfc7-938d-4986-aa1f-acc749ae136a.repl.co" - } -} diff --git a/domains/ralph.json b/domains/ralph.json index 0588efe43..6ab58382a 100644 --- a/domains/ralph.json +++ b/domains/ralph.json @@ -1,10 +1,9 @@ { - "description": "Ralph Wang's blog", "owner": { - "username": "ralph", - "email": "asnowwolf@gmail.com" + "username": "rpineda26", + "email": "rp.pineda26@gmail.com" }, "record": { - "CNAME": "blog.ralph.wang" + "CNAME": "rpineda26.github.io" } } diff --git a/domains/ralphpineda.json b/domains/ralphpineda.json new file mode 100644 index 000000000..6ab58382a --- /dev/null +++ b/domains/ralphpineda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rpineda26", + "email": "rp.pineda26@gmail.com" + }, + "record": { + "CNAME": "rpineda26.github.io" + } +} diff --git a/domains/ram.json b/domains/ram.json new file mode 100644 index 000000000..f368d3465 --- /dev/null +++ b/domains/ram.json @@ -0,0 +1,12 @@ +{ + "description": "personal use", + "repo": "https://github.com/thisisramhere/Portfolio", + "owner": { + "username": "thisisramhere", + "email": "ramkiranmohan1759@gmail.com", + "twitter": "RamKiranMohan1" + }, + "record": { + "CNAME": "thisisramhere.github.io" + } +} diff --git a/domains/ramakrishna.json b/domains/ramakrishna.json new file mode 100644 index 000000000..7dc065210 --- /dev/null +++ b/domains/ramakrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Arrekhey", + "email": "pillaramakrishna77@yahoo.com" + }, + "record": { + "URL": "https://www.ramakrishna.com" + } +} diff --git a/domains/raman.json b/domains/raman.json new file mode 100644 index 000000000..fcafeca57 --- /dev/null +++ b/domains/raman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kushalshah0", + "email": "code@kushalshah.com.np" + }, + "record": { + "CNAME": "ramanshah0.github.io" + } +} diff --git a/domains/ranareal.json b/domains/ranareal.json new file mode 100644 index 000000000..9e06c2aa4 --- /dev/null +++ b/domains/ranareal.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "NotRana", + "email": "notrana1122@outlook.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/random.json b/domains/random.json new file mode 100644 index 000000000..b14fc31dc --- /dev/null +++ b/domains/random.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/random2.json b/domains/random2.json new file mode 100644 index 000000000..b14fc31dc --- /dev/null +++ b/domains/random2.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/ranjit.json b/domains/ranjit.json index 38d9e3392..1479da917 100644 --- a/domains/ranjit.json +++ b/domains/ranjit.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "patilranjit485", - "email": "patilranjit2610@gmail.com" - }, - "record": { - "CNAME": "demon-brother.blogspot.com" - } - } - +{ + "owner": { + "username": "patilranjit485", + "email": "patilranjit2610@gmail.com" + }, + "record": { + "CNAME": "demon-brother.blogspot.com" + } +} diff --git a/domains/raofin.json b/domains/raofin.json new file mode 100644 index 000000000..3073e98c7 --- /dev/null +++ b/domains/raofin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raofin", + "email": "contact@raofin.net" + }, + "record": { + "CNAME": "rao-dev.pages.dev" + } +} diff --git a/domains/raoufbakhti.json b/domains/raoufbakhti.json new file mode 100644 index 000000000..730dd1269 --- /dev/null +++ b/domains/raoufbakhti.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Raoufbaa", + "email": "", + "discord": "515230523128414228", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.CXjc5ZysF6WlX8X2or2V8RaOpyYr6KLUW9rw6KsogqcNnnMNn40xj-q2cDbHtUhdvLNtAjbnVZ17B61pRiY0fFxUXhmACQ_os6ePruIAzVgFu63nUqoumDXxqgzFxjO2CUQdutkaqWKgSUwiSsRYRvAQ8tBSRUBTUCQUArLxOEv6d5q2_-XkUW68EzqVsRRiREsmM-NSiJevv7pUlldqQ_gRWEJtmhdxIb1VZSl6fkOAExFtkvVOwImfZ5lLgU8AmptokCal4sxHnVTgggA2yVbY9e340nnph4BfFJwuUsPpotupOHxfYjTBWumJwedmsnpurDYeY8i9r9XzSQ5b_A.vAVImPUd1QO0K3glM07HAQ.x6THhvYTTHDP0J88xd0_FoUfABzspoar6w54QxykjJwjJeTrX9HtTfMJBjAfWrOe0mbAvd4jeX5L0lYX8QTBq8sj-rG52uIALTM03yV8Xc8.N20mCuJh7klNP8LF0bOQSQ" + }, + + "record": { + "CNAME": "raoufbakhti.vercel.app" + } + } + \ No newline at end of file diff --git a/domains/raphael.json b/domains/raphael.json new file mode 100644 index 000000000..fff1c6cf6 --- /dev/null +++ b/domains/raphael.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raphael-as", + "email": "raphaelas.pro@gmail.com" + }, + "record": { + "CNAME": "raphael-as.github.io" + } +} diff --git a/domains/raqeemtak.json b/domains/raqeemtak.json new file mode 100644 index 000000000..939448708 --- /dev/null +++ b/domains/raqeemtak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RaqeemTak", + "email": "raqeemahmadtak@gmail.com" + }, + "record": { + "CNAME": "raqeemtak.github.io" + } +} diff --git a/domains/rasel.json b/domains/rasel.json new file mode 100644 index 000000000..9b0a96011 --- /dev/null +++ b/domains/rasel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raselshikdar", + "email": "imrasel597@gmail.com" + }, + "record": { + "CNAME": "rasel.pages.dev" + } +} diff --git a/domains/raselshikdar.json b/domains/raselshikdar.json new file mode 100644 index 000000000..842d4ada5 --- /dev/null +++ b/domains/raselshikdar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raselshikdar", + "email": "imrasel597@gmail.com" + }, + "record": { + "CNAME": "raselshikdar.github.io" + } +} diff --git a/domains/rasp.json b/domains/rasp.json new file mode 100644 index 000000000..356a4ee99 --- /dev/null +++ b/domains/rasp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "titusj3026", + "email": "titusjeffery54@gmail.com" + }, + + "record": { + "CNAME": "titusj3026.github.io" + } +} diff --git a/domains/ratler.json b/domains/ratler.json deleted file mode 100644 index af775cb3c..000000000 --- a/domains/ratler.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "description": "ratler is a dev subdomain", - "owner": { - "username": "ItzArman09", - "email": "contact@mail.arman.is-a.dev" - }, - "record": { - "A": ["89.106.200.1"], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/raunak.json b/domains/raunak.json new file mode 100644 index 000000000..d41a5aaa9 --- /dev/null +++ b/domains/raunak.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "Newer1107", + "email": "newerxd1@gmail.com", + "discord": "964547951273840650" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/ravana.json b/domains/ravana.json index 261625a4e..872759602 100644 --- a/domains/ravana.json +++ b/domains/ravana.json @@ -1,12 +1,12 @@ { - "description": "Ravana FM", - "repo": "https://ravana69.github.io/mainpage", - "owner": { - "username": "ravana69", - "email": "", - "twitter": "hornyravana>" - }, - "record": { - "CNAME": "ravana.github.io" - } -} + "description": "Ravana FM", + "repo": "https://ravana69.github.io/mainpage", + "owner": { + "username": "ravana69", + "email": "", + "twitter": "hornyravana>" + }, + "record": { + "CNAME": "ravana.github.io" + } +} diff --git a/domains/ravener.json b/domains/ravener.json new file mode 100644 index 000000000..4a90e5fb4 --- /dev/null +++ b/domains/ravener.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "ravener", + "email": "ravener.anime@gmail.com", + "twitter": "RavenRavener", + "discord": "292690616285134850" + }, + "record": { + "A": ["76.76.21.21"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/ravi-pate.json b/domains/ravi-pate.json new file mode 100644 index 000000000..b723207c6 --- /dev/null +++ b/domains/ravi-pate.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio site.", + "repo": "https://github.com/ravi-pate/ravi-pate.github.io", + "owner": { + "username": "ravi-pate", + "email": "" + }, + "record": { + "CNAME": "ravi-pate.github.io" + } +} diff --git a/domains/raviteja-geddada.json b/domains/raviteja-geddada.json new file mode 100644 index 000000000..3e4423c0c --- /dev/null +++ b/domains/raviteja-geddada.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Raviteja77", + "email": "geddadaraviteja612@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/ravost.json b/domains/ravost.json deleted file mode 100644 index 4277dc69c..000000000 --- a/domains/ravost.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Ravost99", - "email": "Ravost6@outlook.com" - }, - "description": "Ravost99's Personal website", - "record": { - "CNAME": "910fc002-6c43-4a8f-89d9-e0807e831470.id.repl.co" - } -} diff --git a/domains/raw-api.json b/domains/raw-api.json index 5738c9ef2..888b761d4 100644 --- a/domains/raw-api.json +++ b/domains/raw-api.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "WilliamDavidHarrison", - "email": "william@williamharrison.dev" - }, + "owner": { + "username": "is-a-dev", + "email": "" + }, - "record": { - "CNAME": "wdhdev.github.io" - } + "record": { + "CNAME": "is-a-dev.github.io" + } } diff --git a/domains/raw.json b/domains/raw.json deleted file mode 100644 index a20b7e4df..000000000 --- a/domains/raw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "is-a-dev-raw api", - "repo": "https://github.com/andrewstech/is-a-dev-raw-api", - "owner": { - "username": "andrewstech", - "email": "hello@andrewstech.me", - "twitter": "andrewstech1" - }, - "record": { - "CNAME": "andrewstech.github.io" - } -} diff --git a/domains/rawfin.json b/domains/rawfin.json new file mode 100644 index 000000000..3f42275a3 --- /dev/null +++ b/domains/rawfin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raofin", + "email": "contact@rawfin.net" + }, + "record": { + "CNAME": "rawfin.pages.dev" + } +} diff --git a/domains/rawir.json b/domains/rawir.json index 835551f5c..a15272c49 100644 --- a/domains/rawir.json +++ b/domains/rawir.json @@ -1,12 +1,12 @@ { - "description": "Rawir's website", - "repo": "https://github.com/Rawiros/rawiros.github.io", - "owner": { - "username": "Rawiros", - "email": "0x4d3a@protonmail.com", - "twitter": "Rawir_" - }, - "record": { - "CNAME": "rawiros.github.io" - } + "description": "Rawir's website", + "repo": "https://github.com/Rawiros/rawiros.github.io", + "owner": { + "username": "Rawiros", + "email": "0x4d3a@protonmail.com", + "twitter": "Rawir_" + }, + "record": { + "CNAME": "rawiros.github.io" + } } diff --git a/domains/ray.json b/domains/ray.json index e77593d58..088e1870c 100644 --- a/domains/ray.json +++ b/domains/ray.json @@ -1,11 +1,9 @@ { - "description": "RayhanADev's Personal Website", - "repo": "https://github.com/rayhanadev/Personal-Website-v3", "owner": { - "username": "rayhanadev", - "email": "rayhanadev@protonmail.com" + "username": "RayDev07", + "email": "jatingujjar.alive@gmail.com" }, "record": { - "CNAME": "edge.redirect.pizza" + "CNAME": "raydev07.github.io" } } diff --git a/domains/rayane-nekena.json b/domains/rayane-nekena.json new file mode 100644 index 000000000..201528a0b --- /dev/null +++ b/domains/rayane-nekena.json @@ -0,0 +1,11 @@ +{ + "description": "Domain for my personal blog", + "repo": "https://github.com/Online13/Online13.github.io", + "owner": { + "username": "Online13", + "email": "Rratiarivelo@gmail.com" + }, + "record": { + "CNAME": "online13.github.io" + } +} diff --git a/domains/raymar.json b/domains/raymar.json new file mode 100644 index 000000000..885a33348 --- /dev/null +++ b/domains/raymar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RaymarMonte", + "email": "raymarmontecs@gmail.com" + }, + + "record": { + "CNAME": "raymar-laboratory.surge.sh" + } +} diff --git a/domains/raymond.json b/domains/raymond.json index 6782d5a41..489d2fb8b 100644 --- a/domains/raymond.json +++ b/domains/raymond.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "raylu15742cs", + "email": "raylucs15742@gmail.com" + }, - { - "owner": { - "username": "raylu15742cs", - "email": "raylucs15742@gmail.com" - }, - - "record": { - "CNAME": "raylu15742cs.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "raylu15742cs.github.io" + } +} diff --git a/domains/raymondlu.json b/domains/raymondlu.json index 6782d5a41..489d2fb8b 100644 --- a/domains/raymondlu.json +++ b/domains/raymondlu.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "raylu15742cs", + "email": "raylucs15742@gmail.com" + }, - { - "owner": { - "username": "raylu15742cs", - "email": "raylucs15742@gmail.com" - }, - - "record": { - "CNAME": "raylu15742cs.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "raylu15742cs.github.io" + } +} diff --git a/domains/rayr.json b/domains/rayr.json new file mode 100644 index 000000000..fe125c21b --- /dev/null +++ b/domains/rayr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "rayrsn@proton.me" + }, + "record": { + "URL": "https://rayrsn.me/" + } +} diff --git a/domains/rayrsn.json b/domains/rayrsn.json new file mode 100644 index 000000000..07edc5649 --- /dev/null +++ b/domains/rayrsn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "ramtin.015@gmail.com" + }, + "record": { + "A": ["217.174.245.249"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} \ No newline at end of file diff --git a/domains/razin.json b/domains/razin.json new file mode 100644 index 000000000..4e07ebd6c --- /dev/null +++ b/domains/razin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "razinrayees", + "email": "razin.rayeesk@gmail.com" + }, + + "record": { + "URL": "https://razin.in" + } +} diff --git a/domains/razu.json b/domains/razu.json new file mode 100644 index 000000000..09861c533 --- /dev/null +++ b/domains/razu.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Razuuu", + "email": "", + "discord": "346717564895887360", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.XinpxXaZoe1abJCLysJ0Qhlxxe_tuIJ_rgJsIJz-FHFMhJwqz_MmZsvpg7fZ0UWiqBmLDiuPz7-nJrfd8XvXsEfY1N91ct50zja5SCJ3JlenS3G5rtO9pu2Lr9hDnOYcplGLuYKs8w18Le-pXigC_iouAhatve7sia93wmXls3pXGsFklnwnugeieu5hyT5MsZxVhwcZqp4GGkY-MXJA44bBGa6eDp9ZkMFSlhxzznz4RvxobTLvvshVQGClcQvH2janDr6h7YYT9BPY4juP2sfWLxl2Q_P_oPtFLxIh91eMksuAjjtcEffAUQwU5cWR0Zvoh9uiXDvCyK7GXz1HDw.jv5iNpUnsRvDFUHPfuS48A.fbrPdcBHOlaaiSjCJpZO9Lg9tkloC9stW7t9lYPF2wWzWKqz_KsSvmU4A2Wmh_vRbcq-cLDTBx7jpvUOvqGNRmhP8I_Mkj49e15jeOii9dA6Xvy_hShp842kCg06YhEL.kneCY9HIDL_efPvrqrUeug" + }, + + "record": { + "CNAME": "razuuu.de" + } + } + \ No newline at end of file diff --git a/domains/razuuu.json b/domains/razuuu.json new file mode 100644 index 000000000..f5faada0c --- /dev/null +++ b/domains/razuuu.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Razuuu", + "email": "", + "discord": "346717564895887360", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pLyyjwPv7LQ2RpeT7-Jc5bdoNokmFI_gW4yNwexrR_pq1c3UBUbVYSKiiyGBk-2Y5elcXkvMeMLD5svNuLaPVFdRMfPlmPBknQNDIhseBgptD0Hbfcp4g1SYTnuRVuLk3a-XH1u1HQcZ7735QMSsX9R-TXZA9t-qOsrpBKnMGpjZ9U6HedcWWTGJREz89jBlYkgZmv2qPQPq_1u9Rqoww-sLImI4KpekmrLdlPRzrFHRISzrKX8TJmCwv-o9bpMH6inNWNDJu7-d-MCViPp4AVepAjZ2eXpzy2C9nu6gVgcU7CM6TZcb6vxOjKkC3XxpcamwrzG7KeQO3NZyr_pFGA.bGO8dhsZSr68ETpcj8kIqQ.yP4ebRLIyuyKWQ5YUQ-l2gFXejWmB0ctKiFLIQRxIIEXoMkmHfbvjGl_-LCQeVWxPnD8LsIJptCUHabCHiVPf6GHsagCag3vTP6C2xQbRe2MtqcJ0Jt3gRh_Nw5xDtou.JBz-6R31-m9K7d_086nDzA" + }, + + "record": { + "CNAME": "razuuu.de" + } + } + \ No newline at end of file diff --git a/domains/rbg.brandgrandreal.json b/domains/rbg.brandgrandreal.json new file mode 100644 index 000000000..4e1414663 --- /dev/null +++ b/domains/rbg.brandgrandreal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BrandgrandRealMe", + "email": "BrandonTheDev@proton.me" + }, + "record": { + "A": ["69.197.135.205"] + } +} diff --git a/domains/rblx.json b/domains/rblx.json new file mode 100644 index 000000000..fd934b900 --- /dev/null +++ b/domains/rblx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "r-b-l-x", + "email": "178317246+r-b-l-x@users.noreply.github.com" + }, + "record": { + "CNAME": "r-b-l-x.github.io" + } +} diff --git a/domains/rdap.json b/domains/rdap.json new file mode 100644 index 000000000..f2b45dc76 --- /dev/null +++ b/domains/rdap.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rdaphq", + "email": "rdapshii@gmail.com" + }, + "record": { + "A": ["156.67.73.46"] + } +} diff --git a/domains/rdc.json b/domains/rdc.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/rdc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/re.maskduck.json b/domains/re.maskduck.json deleted file mode 100644 index 3ecc87b03..000000000 --- a/domains/re.maskduck.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "MaskDuck", - "email": "maskduckuwu@gmail.com" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } -} diff --git a/domains/reading.json b/domains/reading.json new file mode 100644 index 000000000..7cece106f --- /dev/null +++ b/domains/reading.json @@ -0,0 +1,13 @@ +{ + "description": "For my personal website, The Reading Dimension. ^_^", + "repo": "https://github.com/readandprogress/thereadingdimension", + "owner": { + "username": "readandprogress", + "email": "readandprogress@duck.com", + "discord": "readandprogress", + "cohost": "readandprogress" + }, + "record": { + "CNAME": "thereadingdimension.pages.dev" + } +} diff --git a/domains/real.json b/domains/real.json new file mode 100644 index 000000000..5769d71b3 --- /dev/null +++ b/domains/real.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Xyront", + "email": "abalabalscratch@gmail.com" + }, + "record": { + "URL": "https://www.youtube.com/watch?v=69tzp7vkg_m" + } +} diff --git a/domains/realfara.json b/domains/realfara.json new file mode 100644 index 000000000..71d688c8c --- /dev/null +++ b/domains/realfara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "furyashnyy", + "email": "faradey.iskra@mail.ru" + }, + "record": { + "A": ["185.199.111.153"] + } +} diff --git a/domains/realityleaks.json b/domains/realityleaks.json new file mode 100644 index 000000000..e1d47bb8d --- /dev/null +++ b/domains/realityleaks.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RealityLeaks", + "email": "getnukedbycreiloZ@proton.me", + "discord": "1186392267511042149" + }, + + "record": { + "CNAME": "realityleaks.rf.gd" + } +} diff --git a/domains/realpxd.json b/domains/realpxd.json deleted file mode 100644 index a32fcef4c..000000000 --- a/domains/realpxd.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "ProgrammerXD", - "repo": "https://github.com/realpxd/realpxd.github.io", - "owner": { - "username": "realpxd", - "email": "thisisnamansaini@gmail.com", - "twitter": "PXD_Officials" - }, - "record": { - "CNAME": "realpxd.github.io" - } -} diff --git a/domains/realyash.json b/domains/realyash.json new file mode 100644 index 000000000..e9120ca38 --- /dev/null +++ b/domains/realyash.json @@ -0,0 +1,20 @@ +{ + "repo": "https://github.com/Real-Yash/yash", + "owner": { + "username": "Real-Yash", + "email": "tempyuva00@gmail.com" + }, + "record": { + "A": [ + "185.199.111.153", + "185.199.109.153", + "185.199.108.153", + "185.199.110.153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=yashpatil.pvt@gmail.com" + } +} diff --git a/domains/receipes.json b/domains/receipes.json new file mode 100644 index 000000000..e6dcc0ed3 --- /dev/null +++ b/domains/receipes.json @@ -0,0 +1,12 @@ +{ + "description": "My portfolio", + "repo": "https://github.com/receipes/receipes.github.io", + "owner": { + "username": "receipes", + "email": "", + "discord": "receipes#3705" + }, + "record": { + "CNAME": "receipes.github.io" + } +} diff --git a/domains/receiptify.json b/domains/receiptify.json new file mode 100644 index 000000000..bba65ccc1 --- /dev/null +++ b/domains/receiptify.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "A": [ + "194.60.201.37" + ] + } +} diff --git a/domains/reda.json b/domains/reda.json new file mode 100644 index 000000000..cf9707394 --- /dev/null +++ b/domains/reda.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "redaAssemghor", + "email": "", + "discord": "r3dapt" + }, + "record": { + "CNAME": "portfolio-mocha-eta-22.vercel.app" + } +} diff --git a/domains/redaassemghor.json b/domains/redaassemghor.json new file mode 100644 index 000000000..aefd8cee7 --- /dev/null +++ b/domains/redaassemghor.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "redaassemghor", + "email": "", + "discord": "r3dapt" + }, + "record": { + "CNAME": "portfolio-redas-projects-96854a06.vercel.app" + } +} diff --git a/domains/rediblesky.json b/domains/rediblesky.json new file mode 100644 index 000000000..e9098d2c4 --- /dev/null +++ b/domains/rediblesky.json @@ -0,0 +1,13 @@ +{ + "description": "RedibleSky's site", + "repo": "https://github.com/RedibleSky/RedibleSky.github.io", + "owner": { + "username": "RedibleSky", + "email": "user0thenyancat@proton.me", + "discord": "1143176245018906697" + }, + + "record": { + "CNAME": "rediblesky.github.io" + } +} diff --git a/domains/redirect.nziie.json b/domains/redirect.nziie.json index f2a3533ea..c4d7d12b2 100644 --- a/domains/redirect.nziie.json +++ b/domains/redirect.nziie.json @@ -1,9 +1,9 @@ - { - "owner": { - "username": "Nzii3", - "email": "exeyst@gmail.com" - }, - "record": { - "CNAME": "cname.short.io" - } - } +{ + "owner": { + "username": "Nzii3", + "email": "exeyst@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/rednotsus.json b/domains/rednotsus.json new file mode 100644 index 000000000..4bf677852 --- /dev/null +++ b/domains/rednotsus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RedNotSus", + "email": "Jiayangc1@gmail.com" + }, + "record": { + "A": ["15.204.232.110"] + } +} diff --git a/domains/reefsalty.json b/domains/reefsalty.json index e4c3d8e64..cb967f686 100644 --- a/domains/reefsalty.json +++ b/domains/reefsalty.json @@ -1,12 +1,12 @@ { "description": "ReefSalty", - "repo": "https://github.com/github-username/ReefSalty.github.io", + "repo": "https://github.com/github-username/reefsalty.github.io", "owner": { "username": "ReefSalty", - "email": "reefsalter@hotmail.com", + "email": "hi@reefsalty.co.uk", "twitter": "ReefSalty" }, "record": { - "CNAME": "reefsalty.github.io" + "CNAME": "ReefSalty.github.io" } } diff --git a/domains/reegan.json b/domains/reegan.json new file mode 100644 index 000000000..6ad614e4d --- /dev/null +++ b/domains/reegan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "reeganrajasekar", + "email": "areeganrajasekar@gmail.com" + }, + "record": { + "A": ["103.191.209.47"] + } +} diff --git a/domains/refayet.json b/domains/refayet.json new file mode 100644 index 000000000..4d2c70bb9 --- /dev/null +++ b/domains/refayet.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "refayet-dev", + "email": "refayet0096@gmail.com" + }, + "repo": "https://github.com/refayet-dev.github.io", + "description": "refayet's portfolio site", + "record": { + "CNAME": "refayet-dev.github.io" + } +} diff --git a/domains/register-bot.json b/domains/register-bot.json index 652d7ea34..8a953d3ef 100644 --- a/domains/register-bot.json +++ b/domains/register-bot.json @@ -1,12 +1,9 @@ { - "description": "Register-bot", - "repo": "https://github.com/andrewstech/is-a-dev-bot", - "owner": { - "username": "andrewstech", - "email": "hello@andrewstech.me", - "twitter": "andrewstech1" - }, - "record": { - "CNAME": "dns.beadman-network.com" - } + "owner": { + "username": "is-a-dev", + "email": "" + }, + "record": { + "CNAME": "p2pb.dev" + } } diff --git a/domains/register.json b/domains/register.json index 0836b95c8..f27db0ab3 100644 --- a/domains/register.json +++ b/domains/register.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, + "owner": { + "username": "is-a-dev", + "email": "" + }, - "record": { - "CNAME": "isaregister.pages.dev" - } + "record": { + "URL": "https://github.com/is-a-dev/register" + } } diff --git a/domains/rehanaf.json b/domains/rehanaf.json new file mode 100644 index 000000000..dd683f649 --- /dev/null +++ b/domains/rehanaf.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rehanaf", + "email": "rehanalfaqih287@gmail.com" + }, + + "record": { + "CNAME": "rehanaf.github.io" + } +} diff --git a/domains/rehanplayz.json b/domains/rehanplayz.json deleted file mode 100644 index 48995a366..000000000 --- a/domains/rehanplayz.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A redirect to my new domain", - "repo": "https://github.com/RehanPlayz/RehanPlayz.github.io", - "owner": { - "username": "RehanPlayz", - "email": "rehanplayz321@protonmail.com" - }, - "record": { - "CNAME": "rehanplayz.gq" - } -} diff --git a/domains/reizy.json b/domains/reizy.json deleted file mode 100644 index b75ddee82..000000000 --- a/domains/reizy.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "P0rc0D10", - "email": "grazioligiuliano52@gmail.com" - }, - "record": { - "URL": "https://reizy.eu" - } - } - \ No newline at end of file diff --git a/domains/relicrb.json b/domains/relicrb.json index 49c94e0c7..e0e64b01e 100644 --- a/domains/relicrb.json +++ b/domains/relicrb.json @@ -1,11 +1,11 @@ { - "description": "Relic's Personal Site", - "repo": "https://github.com/RelicRB/RelicRB.github.io", - "owner": { - "username": "RelicRB", - "email": "relicrb@gmail.com" - }, - "record": { - "CNAME": "RelicRB.github.io" - } + "description": "Relic's Personal Site", + "repo": "https://github.com/RelicRB/RelicRB.github.io", + "owner": { + "username": "RelicRB", + "email": "relicrb@gmail.com" + }, + "record": { + "CNAME": "RelicRB.github.io" + } } diff --git a/domains/remarkable.json b/domains/remarkable.json new file mode 100644 index 000000000..74cef241a --- /dev/null +++ b/domains/remarkable.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "re-mark-able", + "email": "", + "discord": "765796161499824148", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fOTIwfMKwClgFwL9HAKXDmSQ0f2lGUAqPC5aoK11pcVa1-2kyFMGaVPAdQT4FxsPz5TvMki5c_FVrrvB2e2z3b0D8CTnqAyt8t-fVMhR3ZQ7c_F9bnoHbrHLEuOxEWMLplzJ0DJK1mWq5LS1a8yiRe7rflpnTz4k-O6xpffJyy4Z0YmwaToQmSnkZVHYHEvW8LsMj-vJH4qoLWL15d3rDIyCoEI90w4e8LK7dnT6Lh_R19IAIjLCnlLEht5EjrJJzd0uZ8zsTx3rIVrsrH1ZWETQOJOSGtce3bRhJU0Oe_4IfTM9urZ-iKzgIsZ-UZ6LXe-YHdwz4WbpjgXyVg3aow.mTeqQiPOIbLifupAwjYlEw.DKuNxopD9OAba76OuG1YbookFbx_f0J03TMVEzGqOIjJMgchQKCpS-7YHfFtzDEOmRtsp0TKDfz-jLha_b3yGqfLCGlv576N5Crix5fLs9L3jCKX-_sDlwfkUa1yU1GZ2m7axkruRvkp89p4dmkMcA.7M_efxmBRwnxs0C7lP-8-g" + }, + + "record": { + "CNAME": "re-mark-able.github.io" + } + } + \ No newline at end of file diff --git a/domains/ren.json b/domains/ren.json new file mode 100644 index 000000000..196e25e11 --- /dev/null +++ b/domains/ren.json @@ -0,0 +1,11 @@ +{ + "description": "is-a.dev subdomain for my portfolio", + "repo": "https://github.com/rendotpy/portfolio", + "owner": { + "username": "rendotpy", + "email": "arugh3@gmail.com" + }, + "record": { + "CNAME": "rendotpy.github.io" + } +} diff --git a/domains/renn.json b/domains/renn.json new file mode 100644 index 000000000..3b83edd55 --- /dev/null +++ b/domains/renn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LyVoid", + "email": "ezzbro121@gmail.com", + "discord": "1202338769379008515" + }, + + "record": { + "CNAME": "lyvoid.github.io" + } +} diff --git a/domains/renzyx.json b/domains/renzyx.json new file mode 100644 index 000000000..e5fda8c71 --- /dev/null +++ b/domains/renzyx.json @@ -0,0 +1,16 @@ +{ + "description": "xYugen's Portfolio", + "repo": "https://github.com/xyugen/portfolio", + "owner": { + "username": "xyugen", + "email": "alex.arias.jorym@gmail.com" + }, + "record": { + "A": ["75.2.60.5"], + "MX": "feedback-smtp.us-east-1.amazonses.com", + "TXT": [ + "v=spf1 include:amazonses.com ~all", + "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDl3uimKrfDsLkGKkuwIhxEi23dmRf1GTyrcfpzF/iSfGrMp5xbDo3+lqN4R3Dx48orvlGbtNxQevx4NPIHU+BAIfRyRkMDzP9X+elTMFkHqHtly5OswQJd0Jciax8WqPoTfLo7+cjDyY0lejoqadUK0gxRe5b5HOLGNUBOCgmCNQIDAQAB" + ] + } +} diff --git a/domains/rep.json b/domains/rep.json index 9b38b67d9..ce759c0a2 100644 --- a/domains/rep.json +++ b/domains/rep.json @@ -1,11 +1,11 @@ { - "description": "Im a nerd", - "repo": "https://github.com/reputationdev/reputationdev.github.io", - "owner": { - "username": "Reputation", - "email": "omen@dashpvp.net" - }, - "record": { - "CNAME": "reputationdev.github.io" - } - } + "description": "Im a nerd", + "repo": "https://github.com/reputationdev/reputationdev.github.io", + "owner": { + "username": "Reputation", + "email": "omen@dashpvp.net" + }, + "record": { + "CNAME": "reputationdev.github.io" + } +} diff --git a/domains/researchingassets.json b/domains/researchingassets.json new file mode 100644 index 000000000..4fb468d10 --- /dev/null +++ b/domains/researchingassets.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ResearchingAssets", + "email": "info.soumit@gmail.com", + "discord": "882236129389207593" + }, + "record": { + "CNAME": "researchingassets.github.io" + } +} diff --git a/domains/researcx.json b/domains/researcx.json new file mode 100644 index 000000000..e03098b51 --- /dev/null +++ b/domains/researcx.json @@ -0,0 +1,17 @@ +{ + "owner": { + "username": "researcx", + "email": "kei.trei.a52@gmail.com" + }, + "record": { + "A": ["207.127.95.80"], + "MX": [ + "mx.zoho.eu", + "mx2.zoho.eu", + "mx3.zoho.eu" + ], + "TXT": [ + "v=spf1 include:zoho.eu ~all" + ] + } +} diff --git a/domains/resolved.json b/domains/resolved.json new file mode 100644 index 000000000..0e4a2899f --- /dev/null +++ b/domains/resolved.json @@ -0,0 +1,12 @@ +{ + "description": "Hello", + "repo": "https://github.com/huukhoa04/resolved-io", + "owner": { + "username": "huukhoa04", + "email": "huukhoa04@gmail.com", + "twitter": "huukhoa004" + }, + "record": { + "CNAME": "huukhoa04.github.io" + } +} diff --git a/domains/respect.json b/domains/respect.json new file mode 100644 index 000000000..7bbb1971d --- /dev/null +++ b/domains/respect.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rq9s", + "email": "valdemarbirker@gmail.com" + }, + "record": { + "A": ["198.251.89.164"] + } +} diff --git a/domains/restaurantmanagementsystem.chiragnahata.json b/domains/restaurantmanagementsystem.chiragnahata.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/restaurantmanagementsystem.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/retr0xraiden.json b/domains/retr0xraiden.json new file mode 100644 index 000000000..1ad22e87e --- /dev/null +++ b/domains/retr0xraiden.json @@ -0,0 +1,11 @@ +{ + "description": "My Developer Portfolio", + "repo": "https://github.com/raiden-16f7/raiden-16f7.github.io", + "owner": { + "username": "Raiden-16F7", + "email": "fahad.rizwan07@gmail.com" + }, + "record": { + "CNAME": "raiden-16f7.github.io" + } +} diff --git a/domains/retrouser955.json b/domains/retrouser955.json new file mode 100644 index 000000000..08f313402 --- /dev/null +++ b/domains/retrouser955.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "retrouser955", + "email": "", + "discord": "691111067807514685" + }, + "record": { + "CNAME": "retrouser955.vercel.app" + } + } \ No newline at end of file diff --git a/domains/reuel.json b/domains/reuel.json new file mode 100644 index 000000000..1b11c1258 --- /dev/null +++ b/domains/reuel.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Blog", + "repo": "https://github.com/reuel-k/reuel-k.github.io", + "owner": { + "username": "reuel-k", + "email": "reuelk@protonmail.com" + }, + "record": { + "CNAME": "reuel-k.github.io" + } +} diff --git a/domains/revolux.json b/domains/revolux.json new file mode 100644 index 000000000..0851bcacc --- /dev/null +++ b/domains/revolux.json @@ -0,0 +1,12 @@ +{ + "description": "For my personal portfolio", + "repo": "https://github.com/rxvolux/rxvolux.github.io", + "owner": { + "username": "rxvolux", + "email": "business.itzswift@gmail.com", + "twitter": "rxvolux" + }, + "record": { + "CNAME": "rxvolux.github.io" + } +} diff --git a/domains/revvnik.json b/domains/revvnik.json new file mode 100644 index 000000000..3713638bc --- /dev/null +++ b/domains/revvnik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "revvnik", + "email": "nikitasitter@gmail.com" + }, + "record": { + "CNAME": "revvnik.github.io" + } +} diff --git a/domains/reynold.json b/domains/reynold.json deleted file mode 100644 index 70ed5ffb9..000000000 --- a/domains/reynold.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - - "owner": { - "username": "EMMU", - "email": "aneenababu71901@gmail.com" - }, - "record": { - "CNAME": "d60bb323-8a85-4e54-82b0-f2faaf77569c.id.repl.co" - } -} diff --git a/domains/rez3x.json b/domains/rez3x.json new file mode 100644 index 000000000..050780e84 --- /dev/null +++ b/domains/rez3x.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "REZ3X", + "email": "rezex.dev01@gmail.com" + }, + + "record": { + "CNAME": "japon-resto.pages.dev" + } +} diff --git a/domains/rferee.json b/domains/rferee.json index d9185f32b..ef5cbddc4 100644 --- a/domains/rferee.json +++ b/domains/rferee.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "rferee", - "email": "admin@rferee.dev" - }, - "record": { - "URL": "https://rferee.dev" - } - } - +{ + "owner": { + "username": "rferee", + "email": "admin@rferee.dev" + }, + "record": { + "URL": "https://rferee.dev" + } +} diff --git a/domains/rfwn.json b/domains/rfwn.json index e20363e73..84836cc8d 100644 --- a/domains/rfwn.json +++ b/domains/rfwn.json @@ -1,11 +1,11 @@ { - "description": "Personal Website", - "repo": "https://github.com/rfwn/rfwn.github.io", - "owner": { - "username": "rfwn", - "email": "rfwn.mjd@gmail.com" - }, - "record": { - "CNAME": "rfwn.github.io" - } -} + "description": "Personal Website", + "repo": "https://github.com/rfwn/rfwn.github.io", + "owner": { + "username": "rfwn", + "email": "rfwn.mjd@gmail.com" + }, + "record": { + "CNAME": "rfwn.github.io" + } +} diff --git a/domains/rhino.json b/domains/rhino.json deleted file mode 100644 index 9105f5faa..000000000 --- a/domains/rhino.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Tech2Logix", - "email": "rhinovanboxelaere@outlook.com" - }, - "record": { - "CNAME": "rhino-vb.be" - } - } - \ No newline at end of file diff --git a/domains/rhyk.json b/domains/rhyk.json index d68177c1c..203a5d624 100644 --- a/domains/rhyk.json +++ b/domains/rhyk.json @@ -1,10 +1,13 @@ { - "owner": { - "username": "qbkyde6c", - "email": "qbkyde6c@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "qbkyde6c", + "email": "qbkyde6c@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/rhylso.json b/domains/rhylso.json new file mode 100644 index 000000000..eac23c78a --- /dev/null +++ b/domains/rhylso.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rhylso", + "email": "rhylso@proton.me" + }, + "record": { + "CNAME": "rhylso.pages.dev" + } +} diff --git a/domains/ri1.json b/domains/ri1.json new file mode 100644 index 000000000..a2de2054f --- /dev/null +++ b/domains/ri1.json @@ -0,0 +1,12 @@ +{ + "description": "Redirect to my website -> notri1.fr", + "owner": { + "username": "ri1ongithub", + "email": "contact@notri1.fr", + "twitter": "ri1ontwitr", + "discord": "ri1_#0973" + }, + "record": { + "URL": "https://notri1.fr" + } +} diff --git a/domains/riann.json b/domains/riann.json new file mode 100644 index 000000000..da7be85fb --- /dev/null +++ b/domains/riann.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "afrianluthfan", + "email": "afrian.luthfan@gmail.com" + }, + "record": { + "CNAME": "afrianluthfan.github.io" + } +} diff --git a/domains/riannegreiros.json b/domains/riannegreiros.json deleted file mode 100644 index 319113122..000000000 --- a/domains/riannegreiros.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "RianNegreiros", - "email": "riannegreiros@gmail.com" - }, - "record": { - "CNAME": "portfolio-production-c1eb.up.railway.app" - } - } - \ No newline at end of file diff --git a/domains/rias.json b/domains/rias.json new file mode 100644 index 000000000..4fab68481 --- /dev/null +++ b/domains/rias.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "RiasZz", + "email": "", + "discord": "245028766387142656", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Edl4jRGMJSUFF14Y4qub1zHhEj-SrmXcG-eVgF6P_EsOjhgl6e5CDShlDkmMTAkpZBbT5s66KuSrDdmMGAJqgYP4aql0FF5cnj5yX5bM-AZnB_fzi1T1iymqiZvtJEYmKuYO-Djkge0pC5JmgVPFQGQj--AIeFbwuyQts19PrDci_kXquX_dKnXzP7_S61zM1vygbq-YcjnQw8abfRSZ1hoKVeZmDcbFi5KhxDWdgkiToyzOk5gBQ52_IwfzJesWeOtFXwiIJS7NwkIMKS70V9lu5a1C87aab9919ocqWsElrJHCdmQOIwSzmu36TIt51_RvjWsfkPjAtbrBWCiECw.R1diEo6UhieiMS9g_GiqZw.dgoN9oQuZxXM6aanZA9Gkh3Neb-hDbGh_7_vBlf79dvln503TEHDrCN-skUH8r3_uSVMSnSodFQu7rqHJa0z8CV3efig1zj2MZ2YYXMQKlc.I5t1GaMcmY2kqWqAO9yVwg" + }, + + "record": { + "CNAME": "riass.ir" + } + } + \ No newline at end of file diff --git a/domains/rice.json b/domains/rice.json new file mode 100644 index 000000000..b9e63fee1 --- /dev/null +++ b/domains/rice.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JoaquinDaBest", + "email": "theonlyhehehehaw@gmail.com" + }, + "record": { + "CNAME": "keenwa.x10.mx" + } +} diff --git a/domains/richard.json b/domains/richard.json new file mode 100644 index 000000000..8744f857b --- /dev/null +++ b/domains/richard.json @@ -0,0 +1,12 @@ +{ + "description": "My Portfolio", + "link": "https://richardshaju.github.io/portfolio", + "owner": { + "username": "richardshaju", + "email": "richardshaju66@gmail.com", + "twitter": "richard_shaju" + }, + "record": { + "CNAME": "richardshaju.github.io" + } +} diff --git a/domains/richie.json b/domains/richie.json deleted file mode 100644 index 22b2f00cc..000000000 --- a/domains/richie.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This is for my local server", - "repo": "https://github.com/richiesuper", - "owner": { - "username": "richiesuper", - "email": "richie9963@gmail.com" - }, - "record": { - "CNAME": "richiesuper.ddns.net" - } -} diff --git a/domains/rick.json b/domains/rick.json deleted file mode 100644 index 2317bd13c..000000000 --- a/domains/rick.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a fun website i made", - "repo": "https://github.com/rickastleyy/rickastleyy", - "owner": { - "username": "rickastleyy", - "email": "rickrolle.you@outlook.com" - }, - "record": { - "CNAME": "50e20db5-db2e-4dc7-9913-9986797944d3.repl.co" - } -} diff --git a/domains/ricky.json b/domains/ricky.json new file mode 100644 index 000000000..4ab502ad1 --- /dev/null +++ b/domains/ricky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rickynolep", + "email": "rickynolepcuy@gmail.com" + }, + "record": { + "CNAME": "rickynolep.github.io" + } +} diff --git a/domains/riddim-glitch.json b/domains/riddim-glitch.json new file mode 100644 index 000000000..bd4db0fe4 --- /dev/null +++ b/domains/riddim-glitch.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Riddim-GLiTCH", + "email": "Riddim_GLiTCH@proton.me" + }, + "record": { + "CNAME": "riddim-glitch.github.io" + } +} diff --git a/domains/ridwanalfarezi.json b/domains/ridwanalfarezi.json new file mode 100644 index 000000000..da1dd74b1 --- /dev/null +++ b/domains/ridwanalfarezi.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/ridwanalfarezi/ridwanalfarezi.github.io", + "owner": { + "username": "ridwanalfarezi", + "email": "alfareziridwan@gmail.com" + }, + "record": { + "CNAME": "ridwanalfarezi.github.io" + } +} diff --git a/domains/ridwanyinus.json b/domains/ridwanyinus.json new file mode 100644 index 000000000..b077d79f5 --- /dev/null +++ b/domains/ridwanyinus.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/ridwanyinus/pfp-2", + "owner": { + "username": "ridwanyinusa", + "email": "ridwanyinusa15@gmail.com" + }, + "record": { + "CNAME": "ridwanyinusa.netlify.app" + } +} diff --git a/domains/rie.json b/domains/rie.json deleted file mode 100644 index 0e08c02ba..000000000 --- a/domains/rie.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Rie's Website", - "repo": "https://github.com/meguminsama", - "owner": { - "username": "MeguminSama", - "email": "megumin@megu.dev" - }, - "record": { - "CNAME": "cname-dev.megu.dev" - } -} diff --git a/domains/rifzki.json b/domains/rifzki.json index 84439c64a..de8fc9dcd 100644 --- a/domains/rifzki.json +++ b/domains/rifzki.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "rifzkiadiyaksa", - "email": "rifzki.adiyaksa18033@student.unsika.ac.id" - }, - "record": { - "URL": "https://rifzki.my.id" - } - } - \ No newline at end of file +{ + "owner": { + "username": "rifzkiadiyaksa", + "email": "rifzki.adiyaksa18033@student.unsika.ac.id" + }, + "record": { + "URL": "https://rifzki.my.id" + } +} diff --git a/domains/rihards.json b/domains/rihards.json new file mode 100644 index 000000000..d72e2c4e6 --- /dev/null +++ b/domains/rihards.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dexit", + "email": "dexit@dyc.lv" + }, + "record": { + "CNAME": "dexit.github.io" + } +} diff --git a/domains/riihime.json b/domains/riihime.json new file mode 100644 index 000000000..196368537 --- /dev/null +++ b/domains/riihime.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Riihime", + "email": "miuly1459@gmail.com" + }, + "record": { + "CNAME": "riihime.github.io" + } +} diff --git a/domains/riii.json b/domains/riii.json new file mode 100644 index 000000000..ec5f56558 --- /dev/null +++ b/domains/riii.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "riyasachdeva04", + "email": "sachdevar919@gmail.com" + }, + + "record": { + "URL": "https://github.com/riyasachdeva04" + } +} diff --git a/domains/riku.json b/domains/riku.json new file mode 100644 index 000000000..592b0bcef --- /dev/null +++ b/domains/riku.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rikuxyz", + "email": "rikukagenou@gmail.com" + }, + "record": { + "CNAME": "redirect-1qp.pages.dev" + } +} diff --git a/domains/rikubot.json b/domains/rikubot.json new file mode 100644 index 000000000..c6217a3d8 --- /dev/null +++ b/domains/rikubot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devops-riku", + "email": "egermino.riku@gmail.com" + }, + "record": { + "CNAME": "rikudev.cloud" + } +} diff --git a/domains/rikuxyz.json b/domains/rikuxyz.json new file mode 100644 index 000000000..b867a6509 --- /dev/null +++ b/domains/rikuxyz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Rikuxyz", + "email": "rikuishigami015@gmail.com", + "twitter": "riku_xyzs" + }, + "record": { + "CNAME": "pixel-cci.pages.dev" + } +} diff --git a/domains/rilecraft.json b/domains/rilecraft.json new file mode 100644 index 000000000..de41e9e7c --- /dev/null +++ b/domains/rilecraft.json @@ -0,0 +1,11 @@ +{ + "description": "Subdomain for my github pages site.", + "repo": "https://github.com/rilecraft/rilecraft.github.io", + "owner": { + "username": "rilecraft", + "email": "rilecraft@gmail.com" + }, + "record": { + "CNAME": "rilecraft.github.io" + } +} diff --git a/domains/rimiko.json b/domains/rimiko.json new file mode 100644 index 000000000..fc5665a7a --- /dev/null +++ b/domains/rimiko.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "79SUBTEAM", + "email": "", + "discord": "857448863891849247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pIJwTKdfCZRWotu5ZYXOkqkRae5PDRRq74pniHDC-XdIMSYOpn81gpuMZLyFLEkYPDWwo1P6xfZVudT0F0IXHv-HbyAu-4yov8hZoQ56_QAp2AuCTFcGr1qRSW9_jqpg_C4-OyT_3J12GnIvuUlskfYmbtz50ThG9ar8xRF_H3Aa_9TuHE51NWD4YkEpmq6kDgtlxYk_0oqCEteuwpqAu-yFO-dDLfTmbIMlEYdOiWGPJYhuJahfiGx1I2-qTGloJZCiedqycUNyLnDG7yc7YVVMYWt1cJw_bSvuvto1pN5bKMA7dkX1RbJQ4_ZVtDSY84sTvd_ls4hDApNV5rhYjg.E17X2lWbPsX92huScUqJVQ.Ok9CpXBsUYTt5ZowBTp2dPU1ix1NftlMoH0sADvj-Hppt7qNZgewFySOD5Ylbj66ezn2K0TkD6r14Fr4M4VV-2vrB1roq-BAQFyp4boAEL0.NjIA92K2kLVedZLXbD4ZOQ" + }, + + "record": { + "CNAME": "79subteam.github.io" + } + } + diff --git a/domains/ririxi.json b/domains/ririxi.json deleted file mode 100644 index 5a6555a02..000000000 --- a/domains/ririxi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/ririxichan", - "owner": { - "username": "ririxichan", - "email": "", - "twitter": "ririxichan" - }, - "record": { - "URL": "https://ririxi.dev" - } -} diff --git a/domains/rishub.json b/domains/rishub.json new file mode 100644 index 000000000..3b584a718 --- /dev/null +++ b/domains/rishub.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsrishub", + "email": "itsrishub@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/riskybot.riskymh.json b/domains/riskybot.riskymh.json deleted file mode 100644 index 43c6e40ae..000000000 --- a/domains/riskybot.riskymh.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Discord Bot Website", - "repo": "https://github.com/RiskyMH/RiskyBOT", - "owner": { - "username": "RiskyMH", - "discord": "RiskyMH#0182", - "email": "" - }, - "record": { - "URL": "https://riskymh.github.io/RiskyBOT" - } - } - \ No newline at end of file diff --git a/domains/riskybotredirect.json b/domains/riskybotredirect.json index 43c6e40ae..639440253 100644 --- a/domains/riskybotredirect.json +++ b/domains/riskybotredirect.json @@ -1,13 +1,12 @@ -{ - "description": "Discord Bot Website", - "repo": "https://github.com/RiskyMH/RiskyBOT", - "owner": { - "username": "RiskyMH", - "discord": "RiskyMH#0182", - "email": "" - }, - "record": { - "URL": "https://riskymh.github.io/RiskyBOT" - } - } - \ No newline at end of file +{ + "description": "Discord Bot Website", + "repo": "https://github.com/RiskyMH/RiskyBOT", + "owner": { + "username": "RiskyMH", + "discord": "RiskyMH#0182", + "email": "" + }, + "record": { + "URL": "https://riskymh.github.io/RiskyBOT" + } +} diff --git a/domains/riskymh.json b/domains/riskymh.json index eb528575d..9f7fed28d 100644 --- a/domains/riskymh.json +++ b/domains/riskymh.json @@ -1,14 +1,16 @@ -{ - "description": "Personal Website", - "repo": "https://github.com/RiskyMH/RiskyMH.github.io", - "owner": { - "username": "RiskyMH", - "discord": "RiskyMH#0182", - "email": "" - }, - "record": { - "URL": "https://riskymh.github.io", - "MX": ["rocky.smtp-in.mailway.app", "peter.smtp-in.mailway.app"] - } - } - \ No newline at end of file +{ + "description": "Personal Website", + "repo": "https://github.com/RiskyMH/RiskyMH.github.io", + "owner": { + "username": "RiskyMH", + "discord": "RiskyMH#0182", + "email": "" + }, + "record": { + "URL": "https://riskymh.github.io", + "MX": [ + "rocky.smtp-in.mailway.app", + "peter.smtp-in.mailway.app" + ] + } +} diff --git a/domains/riskymhredirect.json b/domains/riskymhredirect.json index 1dda90136..3668e3cc0 100644 --- a/domains/riskymhredirect.json +++ b/domains/riskymhredirect.json @@ -1,12 +1,12 @@ -{ - "description": "Personal Website", - "repo": "https://github.com/RiskyMH/RiskyMH.github.io", - "owner": { - "username": "RiskyMH", - "discord": "RiskyMH#0182", - "email": "" - }, - "record": { - "URL": "https://riskymh.github.io" - } -} +{ + "description": "Personal Website", + "repo": "https://github.com/RiskyMH/RiskyMH.github.io", + "owner": { + "username": "RiskyMH", + "discord": "RiskyMH#0182", + "email": "" + }, + "record": { + "URL": "https://riskymh.github.io" + } +} diff --git a/domains/risshi.json b/domains/risshi.json new file mode 100644 index 000000000..ee9a901b8 --- /dev/null +++ b/domains/risshi.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio website", + "repo": "https://github.com/codeRisshi25/codeRisshi25.github.io", + "owner": { + "username": "codeRisshi25", + "email": "risshirajsen@gmail.com" + }, + "record": { + "CNAME": "codeRisshi25.github.io" + } +} diff --git a/domains/riviox.json b/domains/riviox.json new file mode 100644 index 000000000..50988fba9 --- /dev/null +++ b/domains/riviox.json @@ -0,0 +1,12 @@ +{ + "description": "riviox's website", + "repo": "https://github.com/riviox/riviox.github.io", + "owner": { + "username": "riviox", + "email": "rivioxyt@hotmail.com", + "twitter": "riviox40451" + }, + "record": { + "CNAME": "riviox.github.io" + } +} diff --git a/domains/rivos.json b/domains/rivos.json new file mode 100644 index 000000000..16975534a --- /dev/null +++ b/domains/rivos.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portofolio", + "repo": "https://github.com/rioovs/rioovs.github.io", + "owner": { + "username": "rioovs", + "email": "riooktaviansyah36@gmail.com" + }, + "record": { + "CNAME": "rioovs.github.io" + } +} diff --git a/domains/riya.json b/domains/riya.json new file mode 100644 index 000000000..8eb507a88 --- /dev/null +++ b/domains/riya.json @@ -0,0 +1,12 @@ +{ + "description": "Riya Roy", + "repo": "https://github.com/riyaroy2086/riyaroy2086.github.io", + "owner": { + "username": "riyaroy2086", + "email": "riyaroy2086@gmal.com", + "discord": "ROY#1369" + }, + "record": { + "CNAME": "riyaroy2086.github.io" + } +} diff --git a/domains/rizky.json b/domains/rizky.json new file mode 100644 index 000000000..c133261c9 --- /dev/null +++ b/domains/rizky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "schummler", + "email": "markwilkens102@gmail.com" + }, + "record": { + "CNAME": "schummler.github.io" + } +} diff --git a/domains/rizmyabdulla.json b/domains/rizmyabdulla.json new file mode 100644 index 000000000..dfc7c6d6a --- /dev/null +++ b/domains/rizmyabdulla.json @@ -0,0 +1,12 @@ +{ + "description": "Welcome to my creative haven! Explore a collection of my finest works that blend passion, innovation, and artistry. From captivating visual designs to thought-provoking written pieces, this portfolio domain showcases my journey as a versatile creator. Join me in celebrating the beauty of imagination and the power of expression", + "repo": "https://github.com/rizmyabdulla/rizmyabdulla", + "owner": { + "username": "rizmyabdulla", + "email": "rizmyabdulla@gmail.com", + "twitter": "_rizmyabdulla" + }, + "record": { + "CNAME": "rizmyabdulla.github.io" + } +} diff --git a/domains/rizvan.json b/domains/rizvan.json new file mode 100644 index 000000000..e3d7c24bd --- /dev/null +++ b/domains/rizvan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MRizvank", + "email": "rizvankurungattil@gmail.com" + }, + "record": { + "CNAME": "Mrizvank.github.io" + } +} diff --git a/domains/rizz.json b/domains/rizz.json new file mode 100644 index 000000000..9391cc064 --- /dev/null +++ b/domains/rizz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bananaking6", + "email": "", + "discord": "skibidibagel" + }, + "record": { + "CNAME": "skibidi-2.vercel.app" + } +} diff --git a/domains/rjk.json b/domains/rjk.json new file mode 100644 index 000000000..7ac344085 --- /dev/null +++ b/domains/rjk.json @@ -0,0 +1,12 @@ +{ + "description": "This subdomain will be used by me to host my website and projects, which are currently under development ", + "repo": "https://github.com/rayyanjkhan/rayyanjkhan.github.io", + "owner": { + "username": "rayyanjkhan", + "email": "r.khan13245@kgs.edu.pk", + "twitter": "Rayyan Jamil Khan" + }, + "record": { + "CNAME": "rayyanjkhan.github.io" + } +} diff --git a/domains/rl.json b/domains/rl.json new file mode 100644 index 000000000..15decbe89 --- /dev/null +++ b/domains/rl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rylazius", + "email": "nodejsenjoyer@gmail.com" + }, + "record": { + "CNAME": "rylazius.github.io" + } +} diff --git a/domains/rlewsley.json b/domains/rlewsley.json index b8ca5a7df..f104945f3 100644 --- a/domains/rlewsley.json +++ b/domains/rlewsley.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "lewsley-r", + "email": "lewsley-r@ulster.ac.uk" + }, - { - "owner": { - "username": "lewsley-r", - "email": "lewsley-r@ulster.ac.uk" - }, - - "record": { - "CNAME": "lewsley-r.github.io" - } - } - + "record": { + "CNAME": "lewsley-r.github.io" + } +} diff --git a/domains/rllanonymous.json b/domains/rllanonymous.json new file mode 100644 index 000000000..26ad81500 --- /dev/null +++ b/domains/rllanonymous.json @@ -0,0 +1,11 @@ +{ + "description": "Lanonymous own website for contact.", + "repo": "https://github.com/RLLanonymous/RLLanonymous.github.io", + "owner": { + "username": "RLLanonymous", + "email": "ethanweirich31@gmail.com" + }, + "record": { + "CNAME": "rllanonymous.github.io" + } + } diff --git a/domains/rmd.json b/domains/rmd.json new file mode 100644 index 000000000..487691945 --- /dev/null +++ b/domains/rmd.json @@ -0,0 +1,11 @@ +{ + "description": "This subdomain is for my personal website.", + "repo": "https://github.com/danknessdra/danknessdra.github.io", + "owner": { + "username": "danknessdra", + "email": "danknessdra@gmail.com" + }, + "record": { + "CNAME": "danknessdra.github.io" + } +} diff --git a/domains/rnv.json b/domains/rnv.json new file mode 100644 index 000000000..ebb006b8d --- /dev/null +++ b/domains/rnv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ZeroDeaths379", + "email": "arnavp651@gmail.com" + }, + "record": { + "CNAME": "zerodeaths379-github-io.pages.dev" + } +} diff --git a/domains/roadblocked.json b/domains/roadblocked.json new file mode 100644 index 000000000..a7ec114de --- /dev/null +++ b/domains/roadblocked.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roadblockeddev", + "email": "roadblocked@skiff.com" + }, + "record": { + "CNAME": "roadblocked.github.io" + } +} diff --git a/domains/rob.json b/domains/rob.json new file mode 100644 index 000000000..18472a335 --- /dev/null +++ b/domains/rob.json @@ -0,0 +1,11 @@ +{ + "description": "Rob.Is-A.Dev Website", + "repo": "https://melroser.github.io", + "owner": { + "username": "melroser", + "email": "biz@eml.cc" + }, + "record": { + "CNAME": "melroser.github.io" + } +} diff --git a/domains/robert.json b/domains/robert.json deleted file mode 100644 index 3b3ac88c1..000000000 --- a/domains/robert.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Robert's portfolio", - "repo": "https://github.com/treboryx", - "owner": { - "username": "treboryx", - "email": "treboryx@gmail.com" - }, - "record": { - "CNAME": "roberto.gr" - } -} diff --git a/domains/robin.json b/domains/robin.json deleted file mode 100644 index 52aa52892..000000000 --- a/domains/robin.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "RobinDev03", - "email": "robin@robin-it.de" - }, - - "record": { - "CNAME": "robin-w.de" - } - } - \ No newline at end of file diff --git a/domains/robson.json b/domains/robson.json new file mode 100644 index 000000000..a0b921412 --- /dev/null +++ b/domains/robson.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imrob-s", + "email": "orobsilva@gmail.com" + }, + "record": { + "URL": "https://github.com/imrob-s" + } +} diff --git a/domains/rocky.json b/domains/rocky.json new file mode 100644 index 000000000..121ad2994 --- /dev/null +++ b/domains/rocky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PRODEFIX", + "email": "prodefix.ytb@gmail.com" + }, + "record": { + "CNAME": "statuspage.betteruptime.com" + } +} diff --git a/domains/rohandacoder.json b/domains/rohandacoder.json new file mode 100644 index 000000000..c9af32372 --- /dev/null +++ b/domains/rohandacoder.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "RohanDaCoder", + "email": "RohanBmgo2010@gmail.com", + "discord": "922419431508938773" + }, + + "record": { + "CNAME": "rohandacoder.github.io" + } + } + \ No newline at end of file diff --git a/domains/rohanpawar.json b/domains/rohanpawar.json new file mode 100644 index 000000000..85dc5e474 --- /dev/null +++ b/domains/rohanpawar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "r04nx", + "email": "rohanprakashpawar2005@gmail.com" + }, + + "record": { + "CNAME": "r04nx.github.io" + } +} diff --git a/domains/rohansharma.json b/domains/rohansharma.json new file mode 100644 index 000000000..ef886d53b --- /dev/null +++ b/domains/rohansharma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rohansharma-developer", + "email": "rohansharma.developer@gmail.com" + }, + "record": { + "URL": "https://rohansharma.me" + } +} diff --git a/domains/rohit.json b/domains/rohit.json new file mode 100644 index 000000000..01021bfdc --- /dev/null +++ b/domains/rohit.json @@ -0,0 +1,12 @@ +{ + "description": "Rohit Singh's Website", + "repo": "https://github.com/rohit-sama/portfolio_react", + "owner": { + "username": "roht-sama", + "email": "rohit9804singh@gmail.com", + "twitter": "rohitstwts" + }, + "record": { + "CNAME": "rohit-sama.github.io" + } +} diff --git a/domains/roktim.json b/domains/roktim.json new file mode 100644 index 000000000..787ed3d21 --- /dev/null +++ b/domains/roktim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + "record": { + "CNAME": "roktim32.github.io" + } +} diff --git a/domains/romi.json b/domains/romi.json index 29d85bd4c..03be9e655 100644 --- a/domains/romi.json +++ b/domains/romi.json @@ -1,11 +1,11 @@ { - "description": "portfolio rominaru", - "repo": "https://github.com/Leuthra/Leuthra", - "owner": { - "username": "leuthra", - "email": "romi49610@gmail.com" - }, - "record": { - "CNAME": "leuthra.github.io" - } + "description": "portfolio rominaru", + "repo": "https://github.com/Leuthra/Leuthra", + "owner": { + "username": "leuthra", + "email": "romi49610@gmail.com" + }, + "record": { + "CNAME": "leuthra.github.io" + } } diff --git a/domains/romidev.json b/domains/romidev.json new file mode 100644 index 000000000..958b38ced --- /dev/null +++ b/domains/romidev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Leuthra", + "email": "romidev20@gmail.com" + }, + "record": { + "URL": "https://portfolio-rominaru.vercel.app" + } +} diff --git a/domains/romzyytv.json b/domains/romzyytv.json new file mode 100644 index 000000000..dda02bdd7 --- /dev/null +++ b/domains/romzyytv.json @@ -0,0 +1,11 @@ +{ + "description": "RomzyyTV own website.", + "repo": "https://github.com/RomzyyTV/RomzyyTV.github.io", + "owner": { + "username": "RomzyyTV", + "email": "jesaisqpaspourquoi@gmail.com" + }, + "record": { + "CNAME": "romzyytv.github.io" + } +} diff --git a/domains/ron.json b/domains/ron.json new file mode 100644 index 000000000..00d554fcb --- /dev/null +++ b/domains/ron.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsrn", + "email": "shalom@itsron.space" + }, + "record": { + "CNAME": "itsrn.github.io" + } +} diff --git a/domains/ronak.json b/domains/ronak.json new file mode 100644 index 000000000..04e58e3f1 --- /dev/null +++ b/domains/ronak.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RonakDutta", + "email": "ronakdutta100@gmail.com", + "discord": "755751261357473803" + }, + + "record": { + "CNAME": "ronakdutta.github.io" + } +} diff --git a/domains/ronalds1398.json b/domains/ronalds1398.json new file mode 100644 index 000000000..8585299b5 --- /dev/null +++ b/domains/ronalds1398.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ronalds1398", + "email": "ronalds1398@gmail.com", + "discord": "ronaldino1398" + }, + + "record": { + "CNAME": "ronalds-website.pages.dev" + } + } + diff --git a/domains/ronan696.json b/domains/ronan696.json new file mode 100644 index 000000000..3e4631b95 --- /dev/null +++ b/domains/ronan696.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ronan696", + "email": "ronan696@gmail.com" + }, + "record": { + "CNAME": "ronan696.github.io" + } +} diff --git a/domains/ronit.json b/domains/ronit.json new file mode 100644 index 000000000..c42034185 --- /dev/null +++ b/domains/ronit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "iamrony777", + "email": "iamrony777@pm.me" + }, + + "record": { + "CNAME": "iamrony777.github.io" + } +} diff --git a/domains/ronnie.json b/domains/ronnie.json new file mode 100644 index 000000000..6a75763e1 --- /dev/null +++ b/domains/ronnie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NukeJS", + "email": "me@nukejs.dev" + }, + "record": { + "CNAME": "nukejs.dev" + } +} diff --git a/domains/roobini-gamer.json b/domains/roobini-gamer.json index 9df904d79..53a7465aa 100644 --- a/domains/roobini-gamer.json +++ b/domains/roobini-gamer.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "roobini-gamer", - "email": "roobini.hamza@yandex.com" - }, - "record": { - "URL": "https://roobini-gamer.github.io/Roobini-hamza" - } - } - +{ + "owner": { + "username": "roobini-gamer", + "email": "roobini.hamza@yandex.com" + }, + "record": { + "URL": "https://roobini-gamer.github.io/Roobini-hamza" + } +} diff --git a/domains/room.julian.json b/domains/room.julian.json new file mode 100644 index 000000000..9c2c441e2 --- /dev/null +++ b/domains/room.julian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "getSono", + "email": "sono.arbeit@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/rootcircle.json b/domains/rootcircle.json new file mode 100644 index 000000000..52b366972 --- /dev/null +++ b/domains/rootcircle.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rootCircle", + "email": "dev.frolics@gmail.com" + }, + "record": { + "CNAME": "rootcircle.github.io" + } +} diff --git a/domains/rooyca.json b/domains/rooyca.json new file mode 100644 index 000000000..d1bf237d9 --- /dev/null +++ b/domains/rooyca.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rooyca", + "email": "rooyca@gmail.com" + }, + "record": { + "URL": "https://rooyca.github.io/portfolio/" + } +} diff --git a/domains/rorosin.json b/domains/rorosin.json new file mode 100644 index 000000000..e61a5235a --- /dev/null +++ b/domains/rorosin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rorosin", + "email": "rosin886@gmail.com" + }, + "record": { + "CNAME": "ru.ardev.tk" + } +} diff --git a/domains/rose1440.json b/domains/rose1440.json new file mode 100644 index 000000000..db8631407 --- /dev/null +++ b/domains/rose1440.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RocketLauncher21", + "email": "ferkomrkvicka3456@gmail.com", + "discord": "832603218223431710" + }, + + "record": { + "CNAME": "rocketlauncher21.github.io" + } +} diff --git a/domains/roudges.json b/domains/roudges.json deleted file mode 100644 index a2e922c38..000000000 --- a/domains/roudges.json +++ /dev/null @@ -1,12 +0,0 @@ - -{ - "description": "Roudges Personal Website", - "owner": { - "username": "roudges2", - "email": "roudges2@gmail.com" - }, - "record": { - "CNAME": "roudges.ga" - } -} - diff --git a/domains/rouf0x.json b/domains/rouf0x.json new file mode 100644 index 000000000..feded6393 --- /dev/null +++ b/domains/rouf0x.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Rouf0x", + "email": "gabriel.ruf@gmail.com", + "discord": "790712104058617876" + }, + + "record": { + "CNAME": "rouf0x.github.io" + } +} diff --git a/domains/roufox.json b/domains/roufox.json new file mode 100644 index 000000000..938ec9f5a --- /dev/null +++ b/domains/roufox.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Rouf0x", + "email": "gabriel.ruf@gmail.com", + "discord": "790712104058617876" + }, + + "record": { + "URL": "https://rouf0x.is-a.dev/" + } +} diff --git a/domains/rowan.json b/domains/rowan.json index fa8f9bcb0..d8f20d1fe 100644 --- a/domains/rowan.json +++ b/domains/rowan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Rowaaaaan", - "email": "randornam@protonmail.com" - }, - "record": { - "CNAME": "rowaaaaan.github.io" - } + "owner": { + "username": "Rowaaaaan", + "email": "randornam@protonmail.com" + }, + "record": { + "CNAME": "rowaaaaan.github.io" + } } diff --git a/domains/rozay.json b/domains/rozay.json index c1345e3a1..fdf7df567 100644 --- a/domains/rozay.json +++ b/domains/rozay.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "the-decentralizer", - "email": "rozayhere@protonmail.com" - }, - "record": { - "URL": "https://buidlguidl.com/build/uf8PWvVh1UAaXevKwoZb" - } - } - +{ + "owner": { + "username": "the-decentralizer", + "email": "rozayhere@protonmail.com" + }, + "record": { + "URL": "https://buidlguidl.com/build/uf8PWvVh1UAaXevKwoZb" + } +} diff --git a/domains/rpi.crazymax.json b/domains/rpi.crazymax.json new file mode 100644 index 000000000..05ad07555 --- /dev/null +++ b/domains/rpi.crazymax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Crazy-Max-Blog", + "email": "Crazy-Max-2011@yandex.ru" + }, + "record": { + "URL": "https://Crazy-Max-Blog.github.io/rpi/" + } +} diff --git a/domains/rpinix.cupglass.json b/domains/rpinix.cupglass.json new file mode 100644 index 000000000..7027d7834 --- /dev/null +++ b/domains/rpinix.cupglass.json @@ -0,0 +1,13 @@ +{ + "description": "just a simple website for my rpi", + "repo": "https://github.com/cupglassdev/rpi-nix-web", + "owner": { + "username": "cupglassdev", + "email": "", "twitter":"https://x.com/cupglassdev", +"lahelu":"https://lahelu.com/user/cupglassdev", + "discord": "cupglassdev" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/rpj.json b/domains/rpj.json new file mode 100644 index 000000000..fbca836bd --- /dev/null +++ b/domains/rpj.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio website", + "repo": "https://rpj09.github.io/Portfolio", + "owner": { + "username": "rpj09", + "email": "singhripunjay09@gmail.com", + "twitter": "rpj09" + }, + "record": { + "CNAME": "rpj09.github.io" + } +} diff --git a/domains/rqtl.json b/domains/rqtl.json index a1c993ed8..1b03be0bb 100644 --- a/domains/rqtl.json +++ b/domains/rqtl.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "ItsRqtl", + "email": "itsrqtl@gmail.com" + }, - { - "owner": { - "username": "ItsRqtl", - "email": "itsrqtl@gmail.com" - }, - - "record": { - "URL": "https://www.youtube.com/itsrqtl" - } - } - \ No newline at end of file + "record": { + "URL": "https://www.youtube.com/itsrqtl" + } +} diff --git a/domains/rrcoder0167.json b/domains/rrcoder0167.json new file mode 100644 index 000000000..b546517be --- /dev/null +++ b/domains/rrcoder0167.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rrcoder0167", + "email": "riddhiman.rana@gmail.com", + "discord": "870936028108705803" + }, + + "record": { + "CNAME": "website-f4e.pages.dev" + } +} diff --git a/domains/rrrokhtar.json b/domains/rrrokhtar.json new file mode 100644 index 000000000..290628eb0 --- /dev/null +++ b/domains/rrrokhtar.json @@ -0,0 +1,12 @@ +{ + "description": "MOKHTAR's personal website", + "repo": "https://github.com/rrrokhtar/rrrokhtar.github.io", + "owner": { + "username": "rrrokhtar", + "email": "rrrokhtar@gmail.com", + "twitter": "rrrokhtar" + }, + "record": { + "CNAME": "rrrokhtar.github.io" + } +} diff --git a/domains/rsgarxia.json b/domains/rsgarxia.json deleted file mode 100644 index 7a8700931..000000000 --- a/domains/rsgarxia.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "description": "Ruben Garcia's personal website", - "repo": "https://github.com/sigfriedCub1990/personal-site", - "owner": { - "username": "sigfriedcub1990", - "email": "rssanjuan2704@gmail.com", - "twitter": "sigfriedcub1990" - }, - "record": { - "A": [ - "142.93.27.109" - ] - } -} diff --git a/domains/rt10.json b/domains/rt10.json new file mode 100644 index 000000000..1706420aa --- /dev/null +++ b/domains/rt10.json @@ -0,0 +1,15 @@ +{ + "description": "Email alias", + "owner": { + "username": "QuinceTart10", + "email": "", + "discord": "862644161156218891" + }, + "record": { + "MX": [ + "6a43ddd802fc27e4.mx1.emailprofi.seznam.cz", + "6a43ddd802fc27e4.mx2.emailprofi.seznam.cz" + ], + "TXT": "v=spf1 include:spf.seznam.cz ~all" + } +} diff --git a/domains/ruben.json b/domains/ruben.json index a17da01ea..bf0d80a2f 100644 --- a/domains/ruben.json +++ b/domains/ruben.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "RubenFilipe07", - "email": "rubenfilipe.net@gmail.com" - }, - "record": { - "URL": "https://ruben-filipe.web.app" - } + "owner": { + "username": "RubenFilipe07", + "email": "rubenfilipe.net@gmail.com" + }, + "record": { + "URL": "https://ruben-filipe.web.app" + } } diff --git a/domains/rubensalinas.json b/domains/rubensalinas.json new file mode 100644 index 000000000..c3fbe54c4 --- /dev/null +++ b/domains/rubensalinas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rubensalinas", + "email": "ruben.asg@gmail.com" + }, + "record": { + "A": ["154.53.55.74"] + } +} diff --git a/domains/rubiin.json b/domains/rubiin.json new file mode 100644 index 000000000..839bab0b9 --- /dev/null +++ b/domains/rubiin.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/rubiin/rubiin.github.io", + "owner": { + "username": "rubiin", + "email": "roobin.bhandari@gmail.com" + }, + "record": { + "CNAME": "rubiin.github.io" + } +} diff --git a/domains/ruby.json b/domains/ruby.json new file mode 100644 index 000000000..c468a6568 --- /dev/null +++ b/domains/ruby.json @@ -0,0 +1,12 @@ +{ + "description": "ruby.is-a.dev", + "repo": "https://github.com/hopefulruby/hopefulruby.github.io/", + "owner": { + "username": "hopefulruby", + "email": "rubii.is.cool@outlook.com", + "discord": "669710912806060046" + }, + "record": { + "CNAME": "hopefulruby.github.io" + } +} diff --git a/domains/ruchitawagh.json b/domains/ruchitawagh.json new file mode 100644 index 000000000..ff42332a7 --- /dev/null +++ b/domains/ruchitawagh.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/Roxie2003/Portfolio", + "owner": { + "username": "Roxie2003", + "email": "ruchita03wagh@gmail.com" + }, + "record": { + "CNAME": "roxie2003.github.io" + } +} diff --git a/domains/rudra.json b/domains/rudra.json new file mode 100644 index 000000000..c3b14d16e --- /dev/null +++ b/domains/rudra.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "FireHead90544", + "email": "rudranshjoshi1806@gmail.com", + "discord": "#2022" + }, + "description": "Domain for my personal portfolio written w/ Django & TailwindCSS", + "repo": "https://github.com/FireHead90544/rudra-django", + "record": { + "A": ["20.219.132.8"] + } +} diff --git a/domains/ruhailmir.json b/domains/ruhailmir.json new file mode 100644 index 000000000..0857b6933 --- /dev/null +++ b/domains/ruhailmir.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "theksa11", + "email": "", + "discord": "698903860194050059", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZQKlwYrnAWRK7sAuLR4Cd44kqqztU6IFvNUPWwjx7hW0ULb_IanU4wDzZvhffu2CyYPqC-W1D-gXb74KYoQymH7f4KyaHy4lIJpFWfCvPzZbQkWXGIMb8MVqQa99C-V7gNRB9HD1celLW2YnR7t_RApLwAOYXS9Ff-K70a7Aw19ObVa1mlGuJfe9pqbIffiPSXDEjLY64kV1xA7Myg4BPuG_4knEWAhxn_rN5sYik7vlmyBhwkB1PN5PgXVEZU2DaqkZDW-mDvqmF8DMk1Or7EqwiHLWcyEuGEg0IWiyw9JXqovgf5B1Q6fboA8xElxoMKHZFtDt_ixSdqJaFmCg0g.hcw9SrmHCi-MJtKM0jewgg.xLnaKDh5UKD8po0HkZr4JJisQfWUOcDKLpjnzbEHDm3WhzxYAty9DGvzTTqmdJkNZtPnr3bFhsAdM5h7cbe2qYaS_OsVZwI4xh5kKGL95Mk.iKQYMmmX99baBPjAbW-9xw" + }, + + "record": { + "CNAME": "ruhailmir.netlify.app" + } + } + diff --git a/domains/ruiwenge2.json b/domains/ruiwenge2.json deleted file mode 100644 index 88ef00fa3..000000000 --- a/domains/ruiwenge2.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Portfolio", - "repo": "https://github.com/ruiwenge2/ruiwenge2", - "owner": { - "username": "ruiwenge2", - "email": "ruiwenge2@gmail.com" - }, - "record": { - "CNAME": "caa17c8d-acab-4419-8b78-0ad7994a4f62.repl.co" - } -} diff --git a/domains/ruixey.json b/domains/ruixey.json new file mode 100644 index 000000000..f7564df76 --- /dev/null +++ b/domains/ruixey.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ruixey", + "email": "ruixey@gmail.com", + "discord": "715464173617676369" + }, + + "record": { + "CNAME": "ruixey.github.io" + } +} diff --git a/domains/rumesh.json b/domains/rumesh.json index edf250f01..ef2648bad 100644 --- a/domains/rumesh.json +++ b/domains/rumesh.json @@ -1,11 +1,11 @@ { - "description": "Rumesh's .is-a.dev domain", - "repo": "https://github.com/iRumesh/irumesh.github.io", - "owner": { - "username": "irumesh", - "email": "irumesh.work@gmail.com" - }, - "record": { - "CNAME": "irumesh.github.io" - } + "description": "Rumesh's .is-a.dev domain", + "repo": "https://github.com/iRumesh/irumesh.github.io", + "owner": { + "username": "irumesh", + "email": "irumesh.work@gmail.com" + }, + "record": { + "CNAME": "irumesh.github.io" } +} diff --git a/domains/rushi.json b/domains/rushi.json new file mode 100644 index 000000000..22e7ed28c --- /dev/null +++ b/domains/rushi.json @@ -0,0 +1,12 @@ +{ + "description": "This domain will be used for my personal website.", + "repo": "https://github.com/rushi0n/rushi0n.github.io", + "owner": { + "username": "rushi0n", + "email": "rushikushare99@gmail.com", + "twitter": "" + }, + "record": { + "CNAME": "rushi0n.github.io" + } +} diff --git a/domains/rushil-patel.json b/domains/rushil-patel.json new file mode 100644 index 000000000..81e7e1448 --- /dev/null +++ b/domains/rushil-patel.json @@ -0,0 +1,11 @@ +{ + "description": "For my Personal Portfolio website", + "repo": "https://github.com/rushilp1/rushilp1.github.io", + "owner": { + "username": "rushilp1", + "email": "rushil.p1@ahduni.edu.in" + }, + "record": { + "CNAME": "rushilp1.github.io" + } +} diff --git a/domains/rushil.json b/domains/rushil.json new file mode 100644 index 000000000..81e7e1448 --- /dev/null +++ b/domains/rushil.json @@ -0,0 +1,11 @@ +{ + "description": "For my Personal Portfolio website", + "repo": "https://github.com/rushilp1/rushilp1.github.io", + "owner": { + "username": "rushilp1", + "email": "rushil.p1@ahduni.edu.in" + }, + "record": { + "CNAME": "rushilp1.github.io" + } +} diff --git a/domains/rusky.json b/domains/rusky.json new file mode 100644 index 000000000..dacd6aebb --- /dev/null +++ b/domains/rusky.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RuskyDev", + "email": "iamayaanalee@gmail.com", + "discord": "969507085316399154" + }, + + "record": { + "CNAME": "ruskydev.github.io" + } +} diff --git a/domains/rust.json b/domains/rust.json new file mode 100644 index 000000000..3425d95c7 --- /dev/null +++ b/domains/rust.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "URL": "https://rustroid.is-a.dev" + } +} diff --git a/domains/rustroid.json b/domains/rustroid.json new file mode 100644 index 000000000..a18a962a0 --- /dev/null +++ b/domains/rustroid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "CNAME": "rustroid.pages.dev" + } +} diff --git a/domains/ruthless.json b/domains/ruthless.json new file mode 100644 index 000000000..9af329b2d --- /dev/null +++ b/domains/ruthless.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ruthleeess", + "email": "semikk.eu@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/ruu3f.json b/domains/ruu3f.json new file mode 100644 index 000000000..90770dfb8 --- /dev/null +++ b/domains/ruu3f.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Ruu3f", + "email": "", + "discord": "Ruu3f#7942" + }, + "record": { + "CNAME": "ruu3f.github.io" + } +} diff --git a/domains/rvakz.json b/domains/rvakz.json deleted file mode 100644 index a461fc730..000000000 --- a/domains/rvakz.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "cdb5e93", - "email": "cdb5e93@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/rya.json b/domains/rya.json index 7014318c2..d02a3cfd1 100644 --- a/domains/rya.json +++ b/domains/rya.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "Jecket22", + "email": "lez.vezzica@gmail.com" + }, - { - "owner": { - "username": "Jecket22", - "email": "lez.vezzica@gmail.com" - }, - - "record": { - "URL": "https://jecket.xyz" - } - } - + "record": { + "URL": "https://jecket.xyz" + } +} diff --git a/domains/ryan.ginut.json b/domains/ryan.ginut.json new file mode 100644 index 000000000..c150de5a9 --- /dev/null +++ b/domains/ryan.ginut.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "rtb523", + "email": "ryan.ginut@gmail.com" + }, + + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } +} diff --git a/domains/ryan.json b/domains/ryan.json index 01d5c9bd1..8eef7edd5 100644 --- a/domains/ryan.json +++ b/domains/ryan.json @@ -1,11 +1,11 @@ { - "description": "is-a.dev domain", - "repo": "https://github.com/ryan0204", - "owner": { - "username": "Ryan0204", - "email": "ryan@ssrv.xyz" - }, - "record": { - "URL": "https://ssrv.xyz" - } + "description": "Dev Portfolio", + "owner": { + "email": "edev9022@gmail.com", + "username": "epic-person-on", + "discord": "epic.person" + }, + "record": { + "CNAME": "ec2-3-12-165-61.us-east-2.compute.amazonaws.com" + } } diff --git a/domains/ryanisyyds.json b/domains/ryanisyyds.json new file mode 100644 index 000000000..6bf6bd89b --- /dev/null +++ b/domains/ryanisyyds.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RyanisyydsTT", + "email": "ryantseng123@mail.edu.tw" + }, + "record": { + "A": ["170.39.76.35"] + } +} diff --git a/domains/ryannkim327.json b/domains/ryannkim327.json new file mode 100644 index 000000000..7b5591605 --- /dev/null +++ b/domains/ryannkim327.json @@ -0,0 +1,11 @@ +{ + "description": "Ryann Kim Sesgundo, a student from Dalubhasaan ng Lungsod ng Lucena", + "repo": "https://github.com/RyannKim327/ryannkim327.github.io", + "owner": { + "username": "RyannKim327", + "email": "weryses19@gmail.com" + }, + "record": { + "CNAME": "ryannkim327.github.io" + } +} diff --git a/domains/ryanzam.json b/domains/ryanzam.json new file mode 100644 index 000000000..460e43d37 --- /dev/null +++ b/domains/ryanzam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ryanzam", + "email": "ryanzam2005@yahoo.com" + }, + "record": { + "CNAME": "icy-coast-0d7690d03.3.azurestaticapps.net" + } +} diff --git a/domains/ryn.json b/domains/ryn.json index 0adcb55ec..639d077e5 100644 --- a/domains/ryn.json +++ b/domains/ryn.json @@ -4,8 +4,6 @@ "email": "lampslazy@gmail.com" }, "record": { - "A": [ - "132.145.25.232" - ] + "A": ["132.145.25.232"] } } diff --git a/domains/ryo.json b/domains/ryo.json new file mode 100644 index 000000000..6fda8e551 --- /dev/null +++ b/domains/ryo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrosGaming", + "email": "dgfrosdgfros@gmail.com" + }, + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/rzkyfhrzi21.json b/domains/rzkyfhrzi21.json new file mode 100644 index 000000000..4b2157782 --- /dev/null +++ b/domains/rzkyfhrzi21.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/rzkyfhrzi21/rzkyfhrzi21.github.io", + "owner": { + "username": "rzkyfhrzi21", + "email": "rzkyfhrz21@gmail.com" + }, + "record": { + "CNAME": "rzkyfhrzi21.github.io" + } +} diff --git a/domains/s-kunjan.json b/domains/s-kunjan.json new file mode 100644 index 000000000..cdbac5b37 --- /dev/null +++ b/domains/s-kunjan.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/s-kunjan/s-kunjan.github.io", + "owner": { + "username": "s-kunjan", + "email": "" + }, + "record": { + "CNAME": "s-kunjan.github.io" + } +} diff --git a/domains/s-nishit.json b/domains/s-nishit.json new file mode 100644 index 000000000..e9ad50a08 --- /dev/null +++ b/domains/s-nishit.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/s-nishit/s-nishit.github.io", + "owner": { + "username": "s-nishit", + "email": "" + }, + "record": { + "CNAME": "s-nishit.github.io" + } +} diff --git a/domains/s.drpleaserespect.json b/domains/s.drpleaserespect.json new file mode 100644 index 000000000..ee0613c67 --- /dev/null +++ b/domains/s.drpleaserespect.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DrPleaseRespect", + "email": "juliannayr2007@gmail.com" + }, + "record": { + "A": ["146.19.100.135"], + "AAAA": ["2a05:dfc1:4400:6c00::a"] + } +} diff --git a/domains/s.json b/domains/s.json new file mode 100644 index 000000000..7d087ad42 --- /dev/null +++ b/domains/s.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Smartlinuxcoder", + "email": "smartcoder@linuxmail.org", + "discord":"987972818341888021" + }, + "record": { + "CNAME": "proxytwo.smartlinux.xyz" + } +} diff --git a/domains/s1d.json b/domains/s1d.json new file mode 100644 index 000000000..a06e88736 --- /dev/null +++ b/domains/s1d.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "siiddhantt", + "email": "siddhant.rai.5686@gmail.com", + "discord": "783600606451204176" + }, + + "record": { + "CNAME": "siddhant-rai.web.app" + } +} diff --git a/domains/s409.json b/domains/s409.json new file mode 100644 index 000000000..5f67d0b39 --- /dev/null +++ b/domains/s409.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "S409ISDAD", + "email": "hitlerwinning2301@gmail.com", + "discord": "851827069284778054" + }, + + "record": { + "CNAME": "s409.pages.dev" + } +} diff --git a/domains/s4ib0t.json b/domains/s4ib0t.json new file mode 100644 index 000000000..ae6193126 --- /dev/null +++ b/domains/s4ib0t.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hillzacky", + "email": "Hilm4nsyah@gmail.com", + "discord": "830349326785314846" + }, + + "record": { + "MX": ["mx1.forwardemail.net"] + } +} diff --git a/domains/s4il.json b/domains/s4il.json new file mode 100644 index 000000000..e4788bcf6 --- /dev/null +++ b/domains/s4il.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "S4IL21", + "email": "s4il.is.a.dev@gmail.com" + }, + "record": { + "CNAME": "s4il21.github.io" + } +} diff --git a/domains/s550384._domainkey.vinceale7082.json b/domains/s550384._domainkey.vinceale7082.json new file mode 100644 index 000000000..2e1c37a63 --- /dev/null +++ b/domains/s550384._domainkey.vinceale7082.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "VinceAle7082", + "email": "vinceale7082@gmail.com", + "discord": "1078447459900063816", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + }, + + "record": { + "CNAME": "dkim.smtp2go.net" + } + } diff --git a/domains/saahil.json b/domains/saahil.json index c425f4222..078261903 100644 --- a/domains/saahil.json +++ b/domains/saahil.json @@ -1,10 +1,9 @@ { - "description": "this is my about me page, - neongamerbot", "owner": { - "username": "neongamerbot", - "email": "saahilattud@gmail.com" + "username": "NeonGamerBot-QK", + "email": "neon+domain@saahild.com" }, "record": { - "CNAME": "a58b11f7-e44a-4ebc-811d-22105a51b9b7.repl.co" + "A": ["185.250.37.86"] } } diff --git a/domains/saammaaeel.json b/domains/saammaaeel.json index 4333d13ee..04e9c1664 100644 --- a/domains/saammaaeel.json +++ b/domains/saammaaeel.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "saammaaeel", - "email": "codenamesamael@gmail.com", - "twitter": "codenamesamael" - }, - "record": { - "CNAME": "saammaaeel.github.io" - } -} + "owner": { + "username": "saammaaeel", + "email": "codenamesamael@gmail.com", + "twitter": "codenamesamael" + }, + "record": { + "CNAME": "saammaaeel.github.io" + } +} diff --git a/domains/saatvik.json b/domains/saatvik.json new file mode 100644 index 000000000..843f7b6f3 --- /dev/null +++ b/domains/saatvik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "atharvalt", + "email": "beast.gaming1099@gmail.com" + }, + "record": { + "CNAME": "atharvaupadhyay.github.io" + } +} diff --git a/domains/saba.json b/domains/saba.json index 96bcc7588..2166126df 100644 --- a/domains/saba.json +++ b/domains/saba.json @@ -1,11 +1,11 @@ { - "description": "Portfolio page for full stack projects", - "repo": "https://github.com/itsaba/itsaba.github.io", - "owner": { - "username": "itsaba", - "email": "saba.s@mail.com" - }, - "record": { - "CNAME": "itsaba.github.io" - } -} + "description": "Portfolio page for full stack projects", + "repo": "https://github.com/itsaba/itsaba.github.io", + "owner": { + "username": "itsaba", + "email": "saba.s@mail.com" + }, + "record": { + "CNAME": "itsaba.github.io" + } +} diff --git a/domains/sabarivasan.json b/domains/sabarivasan.json new file mode 100644 index 000000000..7ff0ffac2 --- /dev/null +++ b/domains/sabarivasan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "sabarivasan-ramasamy", + "email": "sabarivasan738@gmail.com", + "discord": "535487185055383562" + }, + + "record": { + "CNAME": "sabarivasan-ramasamy.github.io" + } + } + \ No newline at end of file diff --git a/domains/sabbir.json b/domains/sabbir.json new file mode 100644 index 000000000..9f02d817e --- /dev/null +++ b/domains/sabbir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sabbir", + "email": "sabbir.apbn.edu@gmail.com" + }, + "record": { + "CNAME": "sabbir1.pages.dev" + } +} diff --git a/domains/sabelgames.json b/domains/sabelgames.json index 088e0446c..fb65c2c31 100644 --- a/domains/sabelgames.json +++ b/domains/sabelgames.json @@ -1,4 +1,3 @@ - { "owner": { "username": "SabelGames", @@ -6,7 +5,10 @@ }, "record": { "URL": "https://sabelgames.itch.io", - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/sacul-6.json b/domains/sacul-6.json new file mode 100644 index 000000000..a24e0a92e --- /dev/null +++ b/domains/sacul-6.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SACUL-6", + "email": "contact.me.here.naw@gmail.com" + }, + "record": { + "CNAME": "sacul-6.github.io" + } +} diff --git a/domains/sadgabi.json b/domains/sadgabi.json new file mode 100644 index 000000000..f3e5cdca5 --- /dev/null +++ b/domains/sadgabi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sad-gabi", + "email": "sadgabi20@gmail.com" + }, + "record": { + "URL": "https://sad-gabi.github.io/sad-gabi/index.html" + } +} diff --git a/domains/sadiq.json b/domains/sadiq.json index 32620bce3..8c87ca3b7 100644 --- a/domains/sadiq.json +++ b/domains/sadiq.json @@ -1,11 +1,11 @@ -{ - "repo": "https://github.com/sadiq334/sadiq334.github.io", - "owner": { - "username": "sadiq334", - "email": "", - "discord": "! sadiq#1152" - }, - "record": { - "CNAME": "sadiq334.github.io" - } -} \ No newline at end of file +{ + "repo": "https://github.com/sadiq334/sadiq334.github.io", + "owner": { + "username": "sadiq334", + "email": "", + "discord": "! sadiq#1152" + }, + "record": { + "CNAME": "sadiq334.github.io" + } +} diff --git a/domains/sadkon.json b/domains/sadkon.json new file mode 100644 index 000000000..2f00d7e84 --- /dev/null +++ b/domains/sadkon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhc@outlook.com" + }, + "record": { + "CNAME": "sadkon.gitlab.io" + } +} diff --git a/domains/sadmananik.json b/domains/sadmananik.json deleted file mode 100644 index 737e54b91..000000000 --- a/domains/sadmananik.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Sadman-11", - "email": "sadmananik8986@gmail.com" - }, - "record": { - "CNAME": "sadman.misfitsdev.xyz" - } - } - \ No newline at end of file diff --git a/domains/saeed.json b/domains/saeed.json new file mode 100644 index 000000000..cc6044b04 --- /dev/null +++ b/domains/saeed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MohammedKHC0", + "email": "mohammedkhcool@gmail.com" + }, + "record": { + "CNAME": "sheikh-saeed.pages.dev" + } +} diff --git a/domains/safin.json b/domains/safin.json deleted file mode 100644 index aba00f197..000000000 --- a/domains/safin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Safin's is-a-dev domain!", - "repo": "https://github.com/safinsingh", - "owner": { - "username": "safinsingh", - "email": "safin.singh@gmail.com" - }, - "record": { - "URL": "https://safin.dev" - } -} diff --git a/domains/safone.json b/domains/safone.json index 82ec11041..7ff918593 100644 --- a/domains/safone.json +++ b/domains/safone.json @@ -1,11 +1,10 @@ +{ + "owner": { + "username": "AsmSafone", + "email": "asmsafone@gmail.com" + }, - { - "owner": { - "username": "AsmSafone", - "email": "asmsafone@gmail.com" - }, - - "record": { - "CNAME": "thawing-halibut-94d4dmuwrzd30esllhx7xjae.herokudns.com" - } - } + "record": { + "CNAME": "safone.pages.dev" + } +} diff --git a/domains/sag.json b/domains/sag.json new file mode 100644 index 000000000..dc25900a6 --- /dev/null +++ b/domains/sag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sag", + "email": "sagxd@protonmail.com" + }, + "record": { + "CNAME": "sag.codeberg.page" + } +} diff --git a/domains/sage.json b/domains/sage.json deleted file mode 100644 index b746afad5..000000000 --- a/domains/sage.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "SageDotExe", - "email": "sagerainbow27@gmail.com" - }, - - "record": { - "CNAME": "sagedotexe.github.io" - } - } - \ No newline at end of file diff --git a/domains/sahil.json b/domains/sahil.json index a8dc56ac5..8f3a82f32 100644 --- a/domains/sahil.json +++ b/domains/sahil.json @@ -1,12 +1,12 @@ { - "description": "Personal Porfolio Records Add.", - "repo": "https://github.com/sahilpatel09/sahilpatel09.github.io", - "owner": { - "username": "sahilpatel09", - "email": "smppatel99999@gmail.com", - "twitter": "smppatel99999" - }, - "record": { - "CNAME": "sahilpatel09.github.io" - } + "description": "For Portfolio", + "repo": "https://github.com/SahilShidruk/My-Portfolio", + "owner": { + "username": "SahilShidruk", + "discord": "1095900069095555133", + "email": "" + }, + "record": { + "CNAME": "sahilshidruk.github.io" + } } diff --git a/domains/sahilchoudhary.json b/domains/sahilchoudhary.json index 44a439b12..0061fe7c2 100644 --- a/domains/sahilchoudhary.json +++ b/domains/sahilchoudhary.json @@ -1,12 +1,12 @@ { - "description": "A portfolio website to display my various achievements", - "repo": "https://github.com/iosahil/iosahil.github.io", - "owner": { - "username": "iosahil", - "email": "sahil844101@gmail.com", - "instagram": "io.sahil" - }, - "record": { - "CNAME": "iosahil.github.io" - } -} + "description": "A portfolio website to display my various achievements", + "repo": "https://github.com/iosahil/iosahil.github.io", + "owner": { + "username": "iosahil", + "email": "sahil844101@gmail.com", + "instagram": "io.sahil" + }, + "record": { + "CNAME": "iosahil.github.io" + } +} diff --git a/domains/saikat.json b/domains/saikat.json new file mode 100644 index 000000000..a1126676b --- /dev/null +++ b/domains/saikat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "saikatislamhadis", + "email": "saikatislamhadis@gmail.com" + }, + "record": { + "CNAME": "saikatislam.pages.dev" + } +} diff --git a/domains/sailohitaksh-cryptic.json b/domains/sailohitaksh-cryptic.json new file mode 100644 index 000000000..4bc0dbc98 --- /dev/null +++ b/domains/sailohitaksh-cryptic.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/sailohitaksh-cryptic/portfolio", + "owner": { + "username": "sailohitaksh-cryptic", + "email": "rainasai603@gmail.com" + }, + "record": { + "CNAME": "sailohitaksh-cryptic.github.io" + } +} diff --git a/domains/saivikram.json b/domains/saivikram.json new file mode 100644 index 000000000..f21cd2aa1 --- /dev/null +++ b/domains/saivikram.json @@ -0,0 +1,10 @@ +{ + "description": "SaiVikramTechy", + "owner": { + "username": "SaiVikramTechy", + "email": "vikramkomma08@gmail.com" + }, + "record": { + "CNAME": "saivikramtechy.github.io" + } +} diff --git a/domains/saizuo.json b/domains/saizuo.json index f4b67bb26..a5fe7e9e4 100644 --- a/domains/saizuo.json +++ b/domains/saizuo.json @@ -2,11 +2,11 @@ "description": "Saizuo's Portfolio Website", "repo": "https://github.com/saizuo/saizuo.github.io", "owner": { - "username": "Saizuo", - "email": "jhaakash177@gmail.com", - "twitter": "SaizyWaizy" + "username": "Saizuo", + "email": "jhaakash177@gmail.com", + "twitter": "SaizyWaizy" }, "record": { - "CNAME": "Saizuo.github.io" + "CNAME": "Saizuo.github.io" } } diff --git a/domains/sajansaji.json b/domains/sajansaji.json new file mode 100644 index 000000000..f372c9371 --- /dev/null +++ b/domains/sajansaji.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "sajansaji", + "email": "sajansaji2050@gmail.com", + "discord": "875589371590500425" + }, + + "record": { + "CNAME": "portfolio-me-0bt.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/sajiddev.json b/domains/sajiddev.json new file mode 100644 index 000000000..63ee163d4 --- /dev/null +++ b/domains/sajiddev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sajid-tech", + "email": "s.khan9430319425@gmail.com" + }, + "record": { + "CNAME": "sajid-tech.github.io" + } +} diff --git a/domains/sajidhussain.json b/domains/sajidhussain.json new file mode 100644 index 000000000..2e276cebf --- /dev/null +++ b/domains/sajidhussain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sajidhussaindev", + "email": "sajidhussain189057@gmail.com" + }, + "record": { + "CNAME": "sajidhussaindev.github.io" + } +} diff --git a/domains/salar.json b/domains/salar.json index 68291dc59..d1425182f 100644 --- a/domains/salar.json +++ b/domains/salar.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "ooralas", - "email": "ooralas@outlook.com" - }, - "record": { - "URL": "https://salaralali.com" - } - } - +{ + "owner": { + "username": "ooralas", + "email": "ooralas@outlook.com" + }, + "record": { + "URL": "https://salaralali.com" + } +} diff --git a/domains/salsa.json b/domains/salsa.json new file mode 100644 index 000000000..f9d31db6d --- /dev/null +++ b/domains/salsa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "salsabilaananditaputri", + "email": "salsabilaananditaputri.5@gmail.com" + }, + "record": { + "CNAME": "salsabilaananditaputri.github.io" + } +} diff --git a/domains/sama.json b/domains/sama.json new file mode 100644 index 000000000..fde9532fa --- /dev/null +++ b/domains/sama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sama-004", + "email": "samanyuroy@gmail.com" + }, + "record": { + "URL": "https://Sama-004.github.io" + } +} diff --git a/domains/samara.json b/domains/samara.json new file mode 100644 index 000000000..d22e07e08 --- /dev/null +++ b/domains/samara.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ssalggnikool", + "email": "sam4r16@gmail.com" + }, + "record": { + "CNAME": "ssalggnikool.github.io" + } +} diff --git a/domains/samatbk.json b/domains/samatbk.json new file mode 100644 index 000000000..dd13cd9b6 --- /dev/null +++ b/domains/samatbk.json @@ -0,0 +1,11 @@ +{ + "description": "samatbk's website", + "repo": "https://github.com/samatbk/samatbk.github.io", + "owner": { + "username": "samatbk", + "email": "samatbk@proton.me" + }, + "record": { + "CNAME": "samatbk.github.io" + } +} diff --git a/domains/samcarson.json b/domains/samcarson.json deleted file mode 100644 index 6c2941d8d..000000000 --- a/domains/samcarson.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "samcarsonx", - "email": "sam@carson.industries" - }, - "record": { - "CNAME": "isadev.samcarson.co.uk" - } -} diff --git a/domains/sameera.json b/domains/sameera.json index 66a824daa..0c46ae898 100644 --- a/domains/sameera.json +++ b/domains/sameera.json @@ -2,11 +2,11 @@ "description": "Building a personal portfolio website for my university software development project.", "repo": "https://github.com/sameerasw/sameerasw.github.io", "owner": { - "username": "sameerasw", - "email": "sameera.whoami@gmail.com", - "twitter": "sameera_s_w" + "username": "sameerasw", + "email": "sameera.whoami@gmail.com", + "twitter": "sameera_s_w" }, "record": { - "CNAME": "sameerasw.github.io" + "CNAME": "sameerasw.github.io" } -} \ No newline at end of file +} diff --git a/domains/sameerk.json b/domains/sameerk.json new file mode 100644 index 000000000..c17792cbc --- /dev/null +++ b/domains/sameerk.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "sameer0022", + "email": "sameermalikst6@gmail.com", + "discord": "937701712293163118" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/samet.json b/domains/samet.json index b4951720e..1eda48545 100644 --- a/domains/samet.json +++ b/domains/samet.json @@ -5,9 +5,9 @@ "username": "Samett", "email": "sametak3210@gmail.com", "discord": "Samett#8519", - "discordID": "894594782897262635" + "discord-id": "894594782897262635" }, - + "record": { "CNAME": "sa-met.github.io" } diff --git a/domains/samia-islam-sua.json b/domains/samia-islam-sua.json new file mode 100644 index 000000000..951bad237 --- /dev/null +++ b/domains/samia-islam-sua.json @@ -0,0 +1,11 @@ +{ + "description": "samia-islam-sua.is-a.dev", + "repo": "https://github.com/SamiaIslamSua/SamiaIslamSua.github.io", + "owner": { + "username": "SamiaIslamSua", + "email": "SamiaIslamSua@gmail.com" + }, + "record": { + "CNAME": "SamiaIslamSua.github.io" + } +} diff --git a/domains/samir-vaghela.json b/domains/samir-vaghela.json new file mode 100644 index 000000000..1dd4fdffa --- /dev/null +++ b/domains/samir-vaghela.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/samir-vaghela/samir-vaghela.github.io", + "owner": { + "username": "samir-vaghela", + "email": "samir.vaghela@truestaz.com" + }, + "record": { + "CNAME": "samir-vaghela.github.io" + } +} diff --git a/domains/samirp.json b/domains/samirp.json index e623c2a78..5841d5845 100644 --- a/domains/samirp.json +++ b/domains/samirp.json @@ -1,12 +1,12 @@ { - "description": "samir-is-a.dev", - "repo": "https://github.com/SamirPaul1/samirpaul", - "owner": { - "username": "SamirPaul1", - "email": "samirpaulb@gmail.com", - "twitter": "SamirPaulb" - }, - "record": { - "CNAME": "SamirPaul1.github.io" - } -} + "description": "samir-is-a.dev", + "repo": "https://github.com/SamirPaul1/samirpaul", + "owner": { + "username": "SamirPaul1", + "email": "samirpaulb@gmail.com", + "twitter": "SamirPaulb" + }, + "record": { + "CNAME": "SamirPaul1.github.io" + } +} diff --git a/domains/sammy.json b/domains/sammy.json deleted file mode 100644 index 402e6472d..000000000 --- a/domains/sammy.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "link for github pages", - "repo": "https://github.com/TorchedSammy/torchedsammy.github.io", - "owner": { - "username": "TorchedSammy", - "email": "torchedsammy@gmail.com", - "twitter": "TorchedSammy" - }, - "record": { - "CNAME": "torchedsammy.github.io" - } -} diff --git a/domains/sanchay.json b/domains/sanchay.json new file mode 100644 index 000000000..148f6fd05 --- /dev/null +++ b/domains/sanchay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sanchay9", + "email": "sanchaykumar9@gmail.com" + }, + "record": { + "CNAME": "sanchay9.github.io" + } +} diff --git a/domains/sandira.json b/domains/sandira.json index 4516c7886..aeea9cd15 100644 --- a/domains/sandira.json +++ b/domains/sandira.json @@ -1,12 +1,12 @@ { - "description": "My personal portofolio", - "repo": "https://github.com/axolotlextnd/axolotlextnd.github.io", - "owner": { - "username": "axolotlextnd", - "email": "", - "discord": "Sandira#0781" - }, - "record": { - "CNAME": "axolotlextnd.github.io" - } + "description": "My personal portofolio", + "repo": "https://github.com/axolotlextnd/axolotlextnd.github.io", + "owner": { + "username": "axolotlextnd", + "email": "", + "discord": "Sandira#0781" + }, + "record": { + "CNAME": "axolotlextnd.github.io" + } } diff --git a/domains/sanelkukic.json b/domains/sanelkukic.json deleted file mode 100644 index 3c01d6015..000000000 --- a/domains/sanelkukic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Sanel's website for his open-source projects and stuff", - "repo": "https://github.com/sanelk2004", - "owner": { - "username": "sanelk2004", - "email": "sanelk2004@icloud.com" - }, - "record": { - "URL": "https://sanelkukic.us.eu.org" - } -} diff --git a/domains/sangelo.json b/domains/sangelo.json index 545df9d3d..52d216dbb 100644 --- a/domains/sangelo.json +++ b/domains/sangelo.json @@ -1,14 +1,13 @@ { "description": "Redirect to personal homepage", - + "owner": { "username": "SangeloDev", "email": "contact@sangelo.space" }, "repo": "https://github.com/SangeloDev", - + "record": { "URL": "https://sangelo.space" } - } diff --git a/domains/sanidhya.json b/domains/sanidhya.json deleted file mode 100644 index bdd3b9687..000000000 --- a/domains/sanidhya.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "description": "This is my personal Website of portfolio", - "repo": "https://github.com/CoderSoNet/codersonetwebsite.github.io", - "owner": { - "username": "CoderSoNet", - "email": "support@sanidhya.is-a.dev", - "twitter": "ShanuUniyal_On", - "discord": "781127625263415326" - }, - "record": { - "CNAME": "cc997d0e-83bb-487d-bb27-acbc00b59adb.id.repl.co" - - } -} diff --git a/domains/sanjay-makasana.json b/domains/sanjay-makasana.json new file mode 100644 index 000000000..679b91be3 --- /dev/null +++ b/domains/sanjay-makasana.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/sanjay-makasana/jsanjay-makasana.github.io", + "owner": { + "username": "sanjay-makasana", + "email": "sanjay.makasana@truestaz.com" + }, + "record": { + "CNAME": "sanjay-makasana.github.io" + } +} diff --git a/domains/sanjay.json b/domains/sanjay.json index a3b3c353a..d8a9e9b83 100644 --- a/domains/sanjay.json +++ b/domains/sanjay.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "megasanjay", - "email": "info@sanjaysoundarajan.dev", - "twitter": "megasanjay" - }, - "description": "Personal website", - "repo": "https://github.com/megasanjay", - "record": { - "URL": "https://sanjaysoundarajan.dev" - } -} \ No newline at end of file + "owner": { + "username": "megasanjay", + "email": "info@sanjaysoundarajan.dev", + "twitter": "megasanjay" + }, + "description": "Personal website", + "repo": "https://github.com/megasanjay", + "record": { + "URL": "https://sanjaysoundarajan.dev" + } +} diff --git a/domains/sanjay123.json b/domains/sanjay123.json new file mode 100644 index 000000000..1d643d449 --- /dev/null +++ b/domains/sanjay123.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sanjay7178", + "email": "", + "discord": "783593841529585665", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZBJQypIAJWa4IlL4QvRyoy0qLCRirh8jErK3tND1SPDtz1YOeiK7R8X2ibAHvEBwzQKDw7oJrD6U2y7YjfRkmS0UtOjauJ0-3qs_AUv4w6zDWpR7oHyTdxtmeO4WC98ff58b3BxcMA7jvIVCH7mSKpnYaQMdfYY9WlbOoMnipMiRZOqxRPp2nswW3M4AGOJgbzKyMPs-X8w78PSpD1eozCKkDpL0iWR6y-eYSQb1PtxEe0SifI3RwxSNGecBCRvikwt2WKe6b1EuPNucHgeTxMDzjGAcTAtaMTZ1q69EbTKZzOBL3miCtpq-dbsuSqqAfkQrxxnrM-6E2Xo6o93SCw.VNkxpGV8lOJq5_oWRa9Vcg.wcrYJnaSccXjrwRFLnakmE7O77GbEpnAWVL9uIJUKxUBMdTScxWHDQ5zC9-hGZrkEVD6KAtPTBdB2NtV9GgdFa2CpxNDgaxdBO3N8GKRlDp5NEKlNITQDgQbZnM0ckf_.9kha8tMGZqgQJaUx0MA3WQ" + }, + "record": { + "CNAME": "sanjay7178.github.io" + } +} diff --git a/domains/sankalp.json b/domains/sankalp.json new file mode 100644 index 000000000..8af5afc14 --- /dev/null +++ b/domains/sankalp.json @@ -0,0 +1,11 @@ +{ + "description": "Sankalp Pathak Website", + "repo": "https://github.com/k144u/k144u.github.io", + "owner": { + "username": "k144u", + "email": "pathaksankalp04@gmail.com" + }, + "record": { + "CNAME": "k144u.github.io" + } +} diff --git a/domains/sanketborade.json b/domains/sanketborade.json new file mode 100644 index 000000000..0da5bedf1 --- /dev/null +++ b/domains/sanketborade.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "boradesanket13", + "email": "boradesanket13@gmail.com" + }, + + "record": { + "CNAME": "boradesanket13.github.io" + } +} diff --git a/domains/sanni.json b/domains/sanni.json new file mode 100644 index 000000000..7975abb87 --- /dev/null +++ b/domains/sanni.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sannidhyaroy", + "email": "roysannidhya@gmail.com" + }, + "record": { + "CNAME": "sannidhya.pages.dev" + } +} diff --git a/domains/sannidhya.json b/domains/sannidhya.json new file mode 100644 index 000000000..a32483db1 --- /dev/null +++ b/domains/sannidhya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sannidhyaroy", + "email": "roysannidhya@gmail.com" + }, + "record": { + "URL": "https://sanni.is-a.dev" + } +} diff --git a/domains/sanooj.json b/domains/sanooj.json new file mode 100644 index 000000000..bbf3697a6 --- /dev/null +++ b/domains/sanooj.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/sanoojes/sanoojes.github.io", + "owner": { + "username": "sanoojes", + "email": "Sanoojes6371@gmail.com" + }, + "record": { + "CNAME": "sanoojes.github.io" + } +} diff --git a/domains/santito.json b/domains/santito.json index f176be2c9..147dfffc7 100644 --- a/domains/santito.json +++ b/domains/santito.json @@ -1,11 +1,11 @@ { - "description": "Santito's Personal Site", - "repo": "https://github.com/DevSantito/devsantito.github.io", - "owner": { - "username": "DevSantito", - "email": "devsantito@gmail.com" - }, - "record": { - "CNAME": "devsantito.github.io" - } + "description": "Santito's Personal Site", + "repo": "https://github.com/San-tito/san-tito.github.io", + "owner": { + "username": "San-tito", + "email": "devsantito@gmail.com" + }, + "record": { + "CNAME": "san-tito.github.io" } +} diff --git a/domains/santosh.json b/domains/santosh.json new file mode 100644 index 000000000..46f1abb01 --- /dev/null +++ b/domains/santosh.json @@ -0,0 +1,11 @@ +{ + "description": "Santosh Bhandari Personal Portfolio Website", + "repo": "https://github.com/santoshvandari/PersonalWebsite", + "owner": { + "username": "santoshvandari", + "email": "info@bhandari-santosh.com.np" + }, + "record": { + "URL": "https://bhandari-santosh.com.np/" + } +} diff --git a/domains/sarang.json b/domains/sarang.json new file mode 100644 index 000000000..4828492e2 --- /dev/null +++ b/domains/sarang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "i-supermario", + "email": "sarang1699@gmail.com" + }, + "record": { + "URL": "https://main--sarang-portfolio-site.netlify.app" + } +} diff --git a/domains/sarcaster.json b/domains/sarcaster.json new file mode 100644 index 000000000..a8c19e256 --- /dev/null +++ b/domains/sarcaster.json @@ -0,0 +1,13 @@ +{ + "description": "Personal Website of Sarcaster", + "repo": "https://github.com/sarcasterXO/sarcasterxo.github.io", + "owner": { + "username": "sarcasterXO", + "email": "sarcasteryt@gmail.com", + "twitter": "sarcasterXO", + "discord": "sarcasterxo" + }, + "record": { + "CNAME": "sarcasterxo.github.io" + } +} diff --git a/domains/sarthak.json b/domains/sarthak.json new file mode 100644 index 000000000..8acba1932 --- /dev/null +++ b/domains/sarthak.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dubey0613", + "email": "dubey.sarthak0613@gmail.com", + "discord": "877525618525364295" + }, + + "record": { + "CNAME": "dubey0613.github.io" + } +} diff --git a/domains/saschamonteiro.json b/domains/saschamonteiro.json deleted file mode 100644 index 43c17d459..000000000 --- a/domains/saschamonteiro.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Sascha Monteiro's personal dev website", - "repo": "https://github.com/saschamonteiro", - "owner": { - "username": "saschamonteiro", - "email": "info@purejs.com" - }, - "record": { - "CNAME": "www.purejs.com" - } -} diff --git a/domains/sasha.json b/domains/sasha.json deleted file mode 100644 index b4069990a..000000000 --- a/domains/sasha.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Portfolio site", - "repo": "https://github.com/Nero-X/PalletPal-web", - "owner": { - "username": "SashaJCV", - "email": "sashajcv@gmail.com" - }, - "record": { - "A": ["116.203.239.117"] - } -} diff --git a/domains/sashank.json b/domains/sashank.json new file mode 100644 index 000000000..8d9d68c38 --- /dev/null +++ b/domains/sashank.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shankypedia", + "email": "sashankbhamidi@gmail.com" + }, + "record": { + "URL": "https://sashank.wiki" + } +} diff --git a/domains/satindar.json b/domains/satindar.json new file mode 100644 index 000000000..94f5a1c7a --- /dev/null +++ b/domains/satindar.json @@ -0,0 +1,12 @@ +{ + "description": "personal use / portfolio", + "repo": "https://github.com/satindar31/satindar31.github.io", + "owner": { + "username": "satindar31", + "email": "satindar@satindar-is.me", + "twitter": "satindar31" + }, + "record": { + "CNAME": "satindar31.github.io" + } +} diff --git a/domains/satoshi.json b/domains/satoshi.json index a725c5ec4..3e84ebfd5 100644 --- a/domains/satoshi.json +++ b/domains/satoshi.json @@ -1,12 +1,10 @@ - - { - "repo": "https://github.com/marcossatoshi/marcossatoshi.github.io", - "owner": { - "username": "marcossatoshi", - "email": "marcos.satoshi@gmail.com" - }, - "record": { - "CNAME": "marcossatoshi.github.io" - } - } - +{ + "repo": "https://github.com/marcossatoshi/marcossatoshi.github.io", + "owner": { + "username": "marcossatoshi", + "email": "marcos.satoshi@gmail.com" + }, + "record": { + "CNAME": "marcossatoshi.github.io" + } +} diff --git a/domains/satr14.json b/domains/satr14.json new file mode 100644 index 000000000..e6de6df01 --- /dev/null +++ b/domains/satr14.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SX-9", + "email": "", + "discord": "882595027132493864" + }, + + "record": { + "URL": "https://satr14.my.id/" + } +} diff --git a/domains/saturn.json b/domains/saturn.json new file mode 100644 index 000000000..f85c1ab6a --- /dev/null +++ b/domains/saturn.json @@ -0,0 +1,11 @@ +{ + "description": "Oficial website for saturn project.", + "repo": "https://github.com/neopromic/saturn", + "owner": { + "username": "neopromic", + "email": "cusaowesley1@gmail.com" + }, + "record": { + "URL": "https://saturn-project.vercel.app/" + } +} diff --git a/domains/satvikg7.json b/domains/satvikg7.json new file mode 100644 index 000000000..48eed03ad --- /dev/null +++ b/domains/satvikg7.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "satvikg7", + "email": "satvikg7@pm.me" + }, + "record": { + "CNAME": "satvikg7.github.io" + } +} diff --git a/domains/saumon.json b/domains/saumon.json new file mode 100644 index 000000000..16b913985 --- /dev/null +++ b/domains/saumon.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "saumonarcenciel", + "email": "viala38000@gmail.com", + "discord": "823623660743950416" + }, + + "record": { + "A": ["163.5.143.4"] + } +} diff --git a/domains/saurabh.json b/domains/saurabh.json index 45d769d47..d967cdc68 100644 --- a/domains/saurabh.json +++ b/domains/saurabh.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "sohrubh", - "email": "saurabhyadav5931@gmail.com" - }, - "record": { - "CNAME": "sohrubh.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "sohrubh", + "email": "saurabhyadav5931@gmail.com" + }, + "record": { + "CNAME": "sohrubh.github.io" + } +} diff --git a/domains/saurabhkirve.json b/domains/saurabhkirve.json new file mode 100644 index 000000000..798888ff5 --- /dev/null +++ b/domains/saurabhkirve.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BerzCode", + "email": "saurabhkirve@gmail.com" + }, + "record": { + "CNAME": "berzcode.github.io" + } +} diff --git a/domains/saurabhnemade.json b/domains/saurabhnemade.json new file mode 100644 index 000000000..9463356ad --- /dev/null +++ b/domains/saurabhnemade.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "saurabhnemade", + "email": "harsh0707051mail@gmail.com" + }, + "record": { + "CNAME": "d1uwx91euvkosf.cloudfront.net" + } +} diff --git a/domains/savan-makawana.json b/domains/savan-makawana.json new file mode 100644 index 000000000..41227e3d9 --- /dev/null +++ b/domains/savan-makawana.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/savan-makawana/savan-makawana.github.io", + "owner": { + "username": "savan-makawana", + "email": "" + }, + "record": { + "CNAME": "savan-makawana.github.io" + } +} diff --git a/domains/savar.json b/domains/savar.json new file mode 100644 index 000000000..8559bd0a3 --- /dev/null +++ b/domains/savar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "savar95x", + "email": "skaar513@gmail.com" + }, + "record": { + "CNAME": "savar95x.github.io" + } +} diff --git a/domains/savinov.json b/domains/savinov.json new file mode 100644 index 000000000..f7eb56c4a --- /dev/null +++ b/domains/savinov.json @@ -0,0 +1,11 @@ +{ + "description": "savinov.is-a.dev", + "repo": "https://github.com/SavinTop/savintop.github.io", + "owner": { + "username": "SavinTop", + "email": "savindeath@gmail.com" + }, + "record": { + "CNAME": "savintop.github.io" + } +} diff --git a/domains/saxon.json b/domains/saxon.json new file mode 100644 index 000000000..b670bf5f1 --- /dev/null +++ b/domains/saxon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tensura-is-good", + "email": "sands.is.undertable@gmail.com" + }, + "record": { + "A": ["129.213.65.72"] + } +} diff --git a/domains/saxophone.json b/domains/saxophone.json new file mode 100644 index 000000000..68893205d --- /dev/null +++ b/domains/saxophone.json @@ -0,0 +1,15 @@ +{ + "description": "my website's ipfs stuff + email forwarding. (basically web3 -> web2 connection). using dweb.link!!", + "owner": { + "username": "saxophone-guy", + "email": "itsarchit@keemail.me" + }, + "record": { + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=itsarchit@keemail.me", + "URL": "https://me.saxophone.is-a.dev/" + } +} diff --git a/domains/sayantan.json b/domains/sayantan.json new file mode 100644 index 000000000..04a233b7a --- /dev/null +++ b/domains/sayantan.json @@ -0,0 +1,12 @@ +{ + "description": "Sayantan's portfolio and project wikis", + "repo": "https://github.com/legendsayantan/legendsayantan.github.io", + "owner": { + "username": "legendsayantan", + "email": "legendsayantan@gmail.com", + "twitter": "legendsayantan" + }, + "record": { + "CNAME": "legendsayantan.github.io" + } +} diff --git a/domains/sayolight.json b/domains/sayolight.json new file mode 100644 index 000000000..ccd00b154 --- /dev/null +++ b/domains/sayolight.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sayolight", + "email": "kagerouls016@gmail.com" + }, + "record": { + "CNAME": "sayolight.github.io" + } +} diff --git a/domains/sc.json b/domains/sc.json new file mode 100644 index 000000000..890af4135 --- /dev/null +++ b/domains/sc.json @@ -0,0 +1,21 @@ +{ + "description": "My Personal Website", + "repo": "https://github.com/SC136/SC136.github.io", + "owner": { + "username": "SC136", + "email": "swarchuri06@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/scan.json b/domains/scan.json new file mode 100644 index 000000000..b7d899ecf --- /dev/null +++ b/domains/scan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "scanash00", + "email": "103391616+scanash00@users.noreply.github.com", + "discord": "827389583342698536" + }, + + "record": { + "CNAME": "scanash.pages.dev" + } + } + diff --git a/domains/scarvite.json b/domains/scarvite.json deleted file mode 100644 index 1b7d576b3..000000000 --- a/domains/scarvite.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Portfolio", - "repo": "https://github.com/ScarVite/scarvite.de", - "owner": { - "username": "ScarVite", - "email": "admin@ScarVite.de", - "twitter": "ScarVite" - }, - "record": { - "CNAME": "scarvite.de" - } -} diff --git a/domains/scfp.json b/domains/scfp.json index 1ce145571..8ff0f159e 100644 --- a/domains/scfp.json +++ b/domains/scfp.json @@ -1,11 +1,11 @@ { - "description": "Cfp Short Service", - "owner": { - "username": "cfpwastaken", - "email": "", - "discord": "cfp#7174" - }, - "record": { - "CNAME": "cfp.gotdns.ch" - } -} \ No newline at end of file + "description": "Cfp Short Service", + "owner": { + "username": "cfpwastaken", + "email": "", + "discord": "cfp (318394797822050315)" + }, + "record": { + "CNAME": "dyn.picoscratch.de" + } +} diff --git a/domains/schematic.json b/domains/schematic.json deleted file mode 100644 index ef811401c..000000000 --- a/domains/schematic.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "alenpaul2001", - "email": "alenpaul2001@pm.me" - }, - "record": { - "A": [ - "152.67.160.188" - ] - } -} diff --git a/domains/school.klent.json b/domains/school.klent.json new file mode 100644 index 000000000..8b1002d85 --- /dev/null +++ b/domains/school.klent.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kleeiny", + "email": "kleeinlmao@gmail.com", + "discord": "763581985410121769" + }, + + "record": { + "CNAME": "ghs.google.com" + } +} diff --git a/domains/school.semant.json b/domains/school.semant.json deleted file mode 100644 index 0e9964b92..000000000 --- a/domains/school.semant.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "A little show-off project for my school", - "owner": { - "username": "bad-boy-codes", - "email": "contact@mail.badboy.is-a.dev", - "discord": "445073800850046977", - "twitter": "BadBoyGoesBrr" - }, - "record": { - "CNAME": "4941ff85-bc0d-4af7-b112-bc556c694343.id.repl.co" - } -} diff --git a/domains/scoobies.json b/domains/scoobies.json new file mode 100644 index 000000000..c267cc01f --- /dev/null +++ b/domains/scoobies.json @@ -0,0 +1,11 @@ +{ + "description": "Github Pages Site", + "repo": "https://github.com/turtletown73/turtletown73.github.io", + "owner": { + "username": "turtletown73", + "email": "wetturtle45@gmail.com" + }, + "record": { + "CNAME": "turtletown73.github.io" + } +} diff --git a/domains/scoobis.json b/domains/scoobis.json new file mode 100644 index 000000000..d07c18469 --- /dev/null +++ b/domains/scoobis.json @@ -0,0 +1,11 @@ +{ + "description": "scoobis website", + "repo": "https://github.com/turtletown73/http-server", + "owner": { + "username": "turtletown73", + "email": "wetturtle45@gmail.com" + }, + "record": { + "A": ["174.182.75.57"] + } +} diff --git a/domains/scor32k.json b/domains/scor32k.json new file mode 100644 index 000000000..89af0f533 --- /dev/null +++ b/domains/scor32k.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "scorcism", + "email": "abhishekpathak1720@gmail.com" + }, + "record": { + "URL": "https://scor32k.vercel.app/" + } +} diff --git a/domains/scorcism.json b/domains/scorcism.json new file mode 100644 index 000000000..d19f32a3a --- /dev/null +++ b/domains/scorcism.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "scorcism", + "email": "abhishekpathak1720@gmail.com" + }, + "record": { + "URL": "https://github.com/scorcism" + } +} diff --git a/domains/scr.json b/domains/scr.json deleted file mode 100644 index 528fec88e..000000000 --- a/domains/scr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Scriptyyy's site", - "owner": { - "username": "Scriptyyy", - "email": "mr.stikman209@gmail.com", - "discord": "Scriptyyy#2152" - }, - "record": { - "A": ["75.2.69.226"] - } -} diff --git a/domains/script-server.json b/domains/script-server.json deleted file mode 100644 index 78ba189aa..000000000 --- a/domains/script-server.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "gengyj16", - "email": "819514379m@gmail.com" - }, - "record": { - "CNAME": "a7cce212-0dd4-4961-881e-3bebf2d1ce31.id.repl.co" - } - } - \ No newline at end of file diff --git a/domains/scronite.json b/domains/scronite.json deleted file mode 100644 index 7499d922f..000000000 --- a/domains/scronite.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Subdomain of is-a.dev for my profile card.", - "repo": "https://github.com/Scronite/profile", - "owner": { - "username": "Scronite", - "email": "scronite@gmail.com" - }, - "record": { - "A": [ - "164.132.74.251" - ] - } -} diff --git a/domains/scythe.json b/domains/scythe.json deleted file mode 100644 index d6f9c38d7..000000000 --- a/domains/scythe.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "A personal portfolio site for all my projects.", - "owner": { - "username": "scythe", - "email": "scythetheedev@outlook.com" - }, - "record": { - "CNAME": "e0e8c1e9-55a5-4394-afd9-10de3434aee8.repl.co" - } -} diff --git a/domains/scythemedia.json b/domains/scythemedia.json new file mode 100644 index 000000000..cf87a475e --- /dev/null +++ b/domains/scythemedia.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "ScytheMediaTheDev", + "email": "tswartz22@aol.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/sdheeraj.json b/domains/sdheeraj.json new file mode 100644 index 000000000..9c66a9281 --- /dev/null +++ b/domains/sdheeraj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "17sdheeraj", + "email": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InVzZXJfaWQiOiIxMzE4NDk3NjUiLCJ1c2VybmFtZSI6IjE3c2RoZWVyYWoiLCJlbWFpbCI6IjE3c2RoZWVyYWpAd2luZ2Fyci5ldS5vcmcifSwiZXhwaXJlc0luIjoiOTk5OXkiLCJpYXQiOjE3MjE1MzM2ODJ9.7wMG7oM75_RVLS7uWP0b0gqJOP_v9jsfxRq-UcqPlgM" + }, + "record": { + "CNAME": "17sdheeraj.github.io" + } +} diff --git a/domains/sdp.json b/domains/sdp.json new file mode 100644 index 000000000..9f2b1dbbb --- /dev/null +++ b/domains/sdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json b/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json new file mode 100644 index 000000000..171d71f46 --- /dev/null +++ b/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "sea-horse-with-really-long-neck-and-fabulous-legs.pages.dev" + } +} diff --git a/domains/seanconroy.json b/domains/seanconroy.json new file mode 100644 index 000000000..e2e95f014 --- /dev/null +++ b/domains/seanconroy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "seanconroy2021", + "email": "github@seanconroy.link" + }, + "record": { + "URL": "https://seanconroy.link" + } +} diff --git a/domains/search.l6174.json b/domains/search.l6174.json deleted file mode 100644 index 574c7efc3..000000000 --- a/domains/search.l6174.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Search Engine (Whoogle)", - "repo": "https://github.com/l6174/search", - "owner": { - "username": "l6174", - "email": "l.lawliet6174@gmail.com" - }, - "record": { - "CNAME": "8b8a7371-0cc1-4815-affb-f53446c7b444.id.repl.co" - } -} diff --git a/domains/search.thomasc.json b/domains/search.thomasc.json deleted file mode 100644 index 2d8e4ec8c..000000000 --- a/domains/search.thomasc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hopefully Thomas Croft's is-a.dev Whoogle instance", - "repo": "https://replit.com/@thomascf/whoogle", - "owner": { - "username": "thomascf", - "email": "thomas.croft@pm.me" - }, - "record": { - "CNAME": "7c73f282-d33b-4a1d-b36e-bf6da5155d55.id.repl.co" - } - } diff --git a/domains/seba.json b/domains/seba.json new file mode 100644 index 000000000..d2c400be7 --- /dev/null +++ b/domains/seba.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ssxbaa", + "email": "ssxbaa@proton.me" + }, + "record": { + "CNAME": "ssxbaa.github.io" + } +} diff --git a/domains/sebastian.json b/domains/sebastian.json index c7229b19b..d29072641 100644 --- a/domains/sebastian.json +++ b/domains/sebastian.json @@ -1,19 +1,19 @@ { - "owner": { - "username": "bsnts", - "email": "wwpoqpua@anonaddy.me" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com -all" - } + "owner": { + "username": "bsnts", + "email": "wwpoqpua@anonaddy.me" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com -all" + } } diff --git a/domains/sebb.json b/domains/sebb.json new file mode 100644 index 000000000..91b134988 --- /dev/null +++ b/domains/sebb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WiseFrederick", + "email": "plen.plan.plane.plene@gmail.com" + }, + "record": { + "CNAME": "sebb.pages.dev" + } +} diff --git a/domains/secredasho.json b/domains/secredasho.json new file mode 100644 index 000000000..9061c611f --- /dev/null +++ b/domains/secredasho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "secredasho", + "email": "dtran072712@outlook.com" + }, + "record": { + "CNAME": "secredasho.github.io" + } +} diff --git a/domains/secure.furqan.json b/domains/secure.furqan.json new file mode 100644 index 000000000..31ca79480 --- /dev/null +++ b/domains/secure.furqan.json @@ -0,0 +1,9 @@ +{ +"owner": { + "username": "rediffurqan", + "email": "frqnlove8765@gmail.com" + }, + "record": { + "CNAME": "phonesme.onrender.com" + } +} diff --git a/domains/seen.json b/domains/seen.json new file mode 100644 index 000000000..e09cefb74 --- /dev/null +++ b/domains/seen.json @@ -0,0 +1,17 @@ +{ + "owner": { + "username": "Seendator", + "email": "seendator@outlook.com", + "discord": "852477599476482048" + }, + "record": { + "URL": "https://github.com/Seendator", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com include:_spf.elasticemail.com ~all" + ] + } +} diff --git a/domains/seiko.json b/domains/seiko.json new file mode 100644 index 000000000..fb2495ca8 --- /dev/null +++ b/domains/seiko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Delta-0mega", + "email": "zxroff@proton.me", + "discord": "1279377552561147964" + }, + "record": { + "CNAME": "seiko-7oa.pages.dev" + } +} diff --git a/domains/seka.json b/domains/seka.json new file mode 100644 index 000000000..17e89e94b --- /dev/null +++ b/domains/seka.json @@ -0,0 +1,12 @@ +{ + "description": "lutherantz.is-a.dev", + "repo": "https://github.com/lutherantz/lutherantz.github.io", + "owner": { + "username": "lutherantz", + "email": "sekausername@gmail.com", + "twitter": "sekateur_" + }, + "record": { + "CNAME": "lutherantz.github.io" + } +} diff --git a/domains/sekuji.json b/domains/sekuji.json index e234d5513..a85acb994 100644 --- a/domains/sekuji.json +++ b/domains/sekuji.json @@ -1,11 +1,11 @@ -{ - "description": "Sekuji's Personal Website", - "owner": { - "username": "sekuji", - "email": "", - "discord": "sekuji#9595" - }, - "record": { - "CNAME": "sekuji.github.io" - } -} +{ + "description": "Sekuji's Personal Website", + "owner": { + "username": "sekuji", + "email": "", + "discord": "sekuji#9595" + }, + "record": { + "CNAME": "sekuji.github.io" + } +} diff --git a/domains/selenite.json b/domains/selenite.json new file mode 100644 index 000000000..e88327251 --- /dev/null +++ b/domains/selenite.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "skysthelimitt", + "email": "skysth3limit@pm.me" + }, + "record": { + "A": ["5.161.118.69"] + } +} diff --git a/domains/selinjodhani.json b/domains/selinjodhani.json new file mode 100644 index 000000000..b4c9136fd --- /dev/null +++ b/domains/selinjodhani.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SelinJodhani", + "email": "jodhaniselin.sj@gmail.com" + }, + "record": { + "URL": "https://github.com/selinjodhani" + } +} diff --git a/domains/selvakumaran.json b/domains/selvakumaran.json new file mode 100644 index 000000000..36e03f883 --- /dev/null +++ b/domains/selvakumaran.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "selvaklnc", + "email": "selvakumaran301@gmail.com" + }, + "record": { + "CNAME": "selvaklnc.github.io" + } +} diff --git a/domains/semant.json b/domains/semant.json index 9a282b424..b737dbb27 100644 --- a/domains/semant.json +++ b/domains/semant.json @@ -1,16 +1,13 @@ { - "description": "Semant's Website", - "repo": "https://github.com/SemantCodes/SemantCodes.github.io", + "description": "My Website", "owner": { - "username": "s3mant", - "email": "contact@semant.is-a.dev" + "username": "ihacksemant", + "email": "contact@semant.is-a.dev", + "discord": "@semant" }, "record": { "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" + "69.30.249.53" ], "MX": [ "mx1.improvmx.com", diff --git a/domains/semant.panda.json b/domains/semant.panda.json deleted file mode 100644 index 1ca75f819..000000000 --- a/domains/semant.panda.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "s3mant", - "email": "contact@semant.is-a.dev" - }, - "description": "Something juicy", - "record": { - "CNAME": "semant.cyclic.app" - } -} diff --git a/domains/semanteo.json b/domains/semanteo.json index a3cba613b..6a1a80b12 100644 --- a/domains/semanteo.json +++ b/domains/semanteo.json @@ -1,5 +1,5 @@ { - "description": "semanteo.is-a.dev", + "description": "semanteo.is-a.dev", "repo": "https://github.com/Semanteo/semanteo.github.io", "owner": { "username": "Semanteo", diff --git a/domains/sembiland.json b/domains/sembiland.json new file mode 100644 index 000000000..fafe88295 --- /dev/null +++ b/domains/sembiland.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TTGGHHgjkG", + "email": "tgfeghfcrxctchvvhv@gmail.com" + }, + "record": { + "URL": "https://sembiland.my.canva.site" + } +} diff --git a/domains/sen.json b/domains/sen.json new file mode 100644 index 000000000..5a3db3432 --- /dev/null +++ b/domains/sen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Leclu", + "email": "minsnow1889@gmail.com" + }, + "record": { + "CNAME": "leclu.github.io" + } +} diff --git a/domains/senaditya.json b/domains/senaditya.json new file mode 100644 index 000000000..79b96750f --- /dev/null +++ b/domains/senaditya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "senaditya", + "email": "aditya.sen1hl@gmail.com" + }, + "record": { + "CNAME": "senaditya.pages.dev" + } +} diff --git a/domains/senninseyi.json b/domains/senninseyi.json index ba17ec96f..f04333ca3 100644 --- a/domains/senninseyi.json +++ b/domains/senninseyi.json @@ -1,10 +1,10 @@ { - "description": "My Dev Portfolio", - "owner": { - "username": "Senninseyi", - "email": "seyi.oyebamiji@gmail.com" - }, + "description": "My Dev Portfolio", + "owner": { + "username": "Senninseyi", + "email": "seyi.oyebamiji@gmail.com" + }, "record": { "URL": "https://beyondata.co" } -} +} diff --git a/domains/senzore.json b/domains/senzore.json new file mode 100644 index 000000000..e838eab9b --- /dev/null +++ b/domains/senzore.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SanUwU", + "email": "sanjayakunz@gmail.com" + }, + "record": { + "URL": "https://senzore.carrd.co" + } +} diff --git a/domains/seria.json b/domains/seria.json new file mode 100644 index 000000000..67c217e8b --- /dev/null +++ b/domains/seria.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portfolio, self-introduction website.", + "repo": "https://github.com/seriaati/seriaati.github.io", + "owner": { + "username": "seriaati", + "email": "seria.ati@gmail.com", + "twitter": "seria_ati" + }, + "record": { + "CNAME": "seriaati.github.io" + } +} diff --git a/domains/seriesreminder.json b/domains/seriesreminder.json new file mode 100644 index 000000000..13d1ee770 --- /dev/null +++ b/domains/seriesreminder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Series-Reminder", + "email": "eric@seriesreminder.com" + }, + "record": { + "URL": "https://seriesreminder.com" + } +} diff --git a/domains/serignembaye.json b/domains/serignembaye.json new file mode 100644 index 000000000..9776f4706 --- /dev/null +++ b/domains/serignembaye.json @@ -0,0 +1,13 @@ +{ + "description": "Describe the use of this subdomain", + "owner": { + "username": "Serigne-Mbaye", + "email": "serigne.mby@gmail.com", + "twitter": "djieggo" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/serjan-nasredin.json b/domains/serjan-nasredin.json new file mode 100644 index 000000000..b52187ac6 --- /dev/null +++ b/domains/serjan-nasredin.json @@ -0,0 +1,10 @@ +{ + "description": "Personal page of Serzhan Nasredin", + "owner": { + "username": "serjan-nasredin", + "email": "snxx.lppxx@gmail.com" + }, + "record": { + "CNAME": "serjan-nasredin.github.io" + } +} diff --git a/domains/serstars.json b/domains/serstars.json new file mode 100644 index 000000000..b74f7005e --- /dev/null +++ b/domains/serstars.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/SerStars/SerStars.github.io", + "owner": { + "username": "SerStars", + "email": "", + "twitter": "SerStars_lol" + }, + "record": { + "CNAME": "serstars.github.io" + } +} diff --git a/domains/server.chiragnahata.json b/domains/server.chiragnahata.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/server.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/server.drpleaserespect.json b/domains/server.drpleaserespect.json new file mode 100644 index 000000000..ee0613c67 --- /dev/null +++ b/domains/server.drpleaserespect.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DrPleaseRespect", + "email": "juliannayr2007@gmail.com" + }, + "record": { + "A": ["146.19.100.135"], + "AAAA": ["2a05:dfc1:4400:6c00::a"] + } +} diff --git a/domains/server.mrdiamond.json b/domains/server.mrdiamond.json new file mode 100644 index 000000000..228b625ad --- /dev/null +++ b/domains/server.mrdiamond.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrDiamondDog", + "email": "drewratner27@gmail.com" + }, + "record": { + "A": ["129.153.208.15"] + } +} diff --git a/domains/serverpanel.json b/domains/serverpanel.json new file mode 100644 index 000000000..0436a3d08 --- /dev/null +++ b/domains/serverpanel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Neeedrose", + "email": "bobbyaneville@gmail.com" + }, + "record": { + "A": ["34.75.192.79"] + } +} diff --git a/domains/services.not-ethan.json b/domains/services.not-ethan.json new file mode 100644 index 000000000..82af23d7a --- /dev/null +++ b/domains/services.not-ethan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "not-a-ethan", + "email": "", + "discord": "not_ethan." + }, + "record": { + "CNAME": "not-a-ethan.github.io" + } +} diff --git a/domains/seui.json b/domains/seui.json new file mode 100644 index 000000000..b2c078312 --- /dev/null +++ b/domains/seui.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "mjy9088", + "email": "", + "discord": "252323012282548224", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.HwnzkKIzKgvD6v84UwqiOXgJRtgaG1JdD3BmON5Y839lJqVRfJkC21zJDQSNkvadwB0tY-51hbUeBzhd-B339WZlugRos3Apdez9Yk_8_DpMUbvbhvp4EgarIlXLU36mKxFRE0TpO1jYbyCiyYoZjpVEl332qMOUnxKmjpAPbzZJRg9O10JJdAYWcIdTg0B9GTxXdW4ZXu9nbV1EXEW0IBmNLLOnHhhfnb4zySlspptQmasv1TMjeZ7dSXdArpLXj3fXJjr8eqSiY2r2Zjm0pkatbi4DD0_dWBpbcrX6Lehz-8gVvznVBBSBkQk3GE3BFrbXy32aOJuic7fFYmBUYg.A9o-pDxvlpb1UHE2GiiQpQ.dr0Rjsh8_CGyNUc1nFkk2kpPT8AkPNdlo-N0D9M1jpjMrAe1Xp7_hHcgx13FprS2M4pUO9mrb70EBDKZFlOPrA.DEBRHXvbC9bOBrOC-056Cw" + }, + + "record": { + "A": ["140.245.70.146"] + } + } + diff --git a/domains/sev.json b/domains/sev.json new file mode 100644 index 000000000..be4a9e4ce --- /dev/null +++ b/domains/sev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com" + }, + "record": { + "URL": "https://bio.link/sevi" + } +} diff --git a/domains/seven.json b/domains/seven.json new file mode 100644 index 000000000..24a6e06ad --- /dev/null +++ b/domains/seven.json @@ -0,0 +1,25 @@ +{ + "owner": { + "username": "7op3", + "email": "134126156+7op3@users.noreply.github.com", + "discord": "882124409945587773" + }, + + "record": { + + "A":[ + "185.199.110.153", + "185.199.108.153", + "185.199.111.153", + "185.199.109.153" + ], + + "MX": [ + "mx1.simplelogin.co", + "mx2.simplelogin.co" + ], + + "TXT": ["sl-verification=ivfyrhmrpfrkrgrkywcghobxqkhynw","v=spf1 include:simplelogin.co ~all"] + } + } + diff --git a/domains/sewt.json b/domains/sewt.json new file mode 100644 index 000000000..c68b0289b --- /dev/null +++ b/domains/sewt.json @@ -0,0 +1,25 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + }, + + "record": { + "MX": [ + "mx.zoho.eu", + "mx2.zoho.eu", + "mx3.zoho.eu" + ], + "TXT": [ + "v=spf1 include:zohomail.eu ~all" + ], + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } + } diff --git a/domains/seyioo.json b/domains/seyioo.json new file mode 100644 index 000000000..17e90b0a1 --- /dev/null +++ b/domains/seyioo.json @@ -0,0 +1,13 @@ +{ + "description": "For a personnal portfolio", + "repo": "https://github.com/seyiooo/seyiooo.github.io", + "owner": { + "username": "seyiooo", + "email": "", + "discord": "sey.ioo", + "instagram": "sey.ioo" + }, + "record": { + "CNAME": "seyiooo.github.io" + } +} diff --git a/domains/sezersinanoglu.json b/domains/sezersinanoglu.json index 6dc589127..57dd7b3f9 100644 --- a/domains/sezersinanoglu.json +++ b/domains/sezersinanoglu.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "sezersinanoglu", + "email": "sezersinanoglu@gmail.com" + }, - { - "owner": { - "username": "sezersinanoglu", - "email": "sezersinanoglu@gmail.com" - }, - - "record": { - "CNAME": "sezersinanoglu.github.io" - } - } - + "record": { + "CNAME": "sezersinanoglu.github.io" + } +} diff --git a/domains/sf.json b/domains/sf.json new file mode 100644 index 000000000..cef2b6bb9 --- /dev/null +++ b/domains/sf.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "XikiZxGS", + "email": "", + "discord": "1015654462334971925", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Zh0wnCQid9C4pOjptUVh6ESkNEKZxjJadK8auOvitr7Rx67nfqb_orGsPr9hXGdfOGzLcR1sB3v5KrB-nbqUQUUgGjs9zaKjwi99S_pwZgU3oi9cY2TePWNxM1ZvdCKptiR3C1CMtDbyPOpvsvRSEGyHZtOzdcrTV4OpnR2Hi7X7nD37wR8ZjCS60YhyPPlb8HUr6_Aq2o2RItJUYwZVB1t7BRWdHL-tYwbtZXWiOER6D1nCSj86AT3rKILr5DMbEvh1SOQIJ3pf5D9HtgIW3DgkyrutOEhxn4A8xzytPi-1api0AJJvpGv3Xaj63IttB5meuivJqqrtmL86dZxABA.hh7QLO4KsuZ7-zTiHi8GaA.6EDptXq34bfUr-OXUGTWkq1LTaLq-NNgU2EXgd-4GngxX1QzrxvUenF4wsn6DmQ1yPnmnIGdczioMxdsYk0JyUYbpHaCvOsW-xyH4a_EiMk.YYLgMoT8Z_FUJtmf9ImfRw" + }, + + "record": { + "CNAME": "xikizxgs.github.io" + } + } + \ No newline at end of file diff --git a/domains/sfinxv.json b/domains/sfinxv.json new file mode 100644 index 000000000..45059c229 --- /dev/null +++ b/domains/sfinxv.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "sfinxv", + "email": "", + "discord": "sfinxv" + }, + + "repo": "https://github.com/SFINXVC/sfinxvc.github.io", + "record": { + "CNAME": "sfinxvc.github.io" + } +} diff --git a/domains/sfx.json b/domains/sfx.json index a8fd96168..c4fb88616 100644 --- a/domains/sfx.json +++ b/domains/sfx.json @@ -1,12 +1,12 @@ { - "description": "A personal website talking about my history", - "repo": "https://github.com/iamsfx/iamsfx.github.io", - "owner": { - "username": "iamsfx", - "email": "sfx@fbi.ac", - "twitter": "therealsfx" - }, - "record": { - "CNAME": "iamsfx.github.io" - } -} + "description": "A personal website talking about my history", + "repo": "https://github.com/iamsfx/iamsfx.github.io", + "owner": { + "username": "iamsfx", + "email": "sfx@fbi.ac", + "twitter": "therealsfx" + }, + "record": { + "CNAME": "iamsfx.github.io" + } +} diff --git a/domains/sg.mcstatus.json b/domains/sg.mcstatus.json new file mode 100644 index 000000000..da100a659 --- /dev/null +++ b/domains/sg.mcstatus.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "", + "discord": "1167825360151380032", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ" + }, + + "record": { + "CNAME": "37sdfgrml49gl.ahost.marscode.site" + } + } + diff --git a/domains/sh-crm.json b/domains/sh-crm.json new file mode 100644 index 000000000..2ffcd1bf4 --- /dev/null +++ b/domains/sh-crm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ruben-as", + "email": "ruben.aja.85@gmail.com" + }, + "record": { + "A": ["212.227.32.105"] + } +} diff --git a/domains/sh.json b/domains/sh.json deleted file mode 100644 index 31d4421a1..000000000 --- a/domains/sh.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a place where i save all my codes", - "repo": "https://github.com/leecheeyong/leecheeyong", - "owner": { - "username": "leecheeyong", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "4e948aec-a05a-47f4-8224-a92ae15ec665.repl.co" - } -} diff --git a/domains/sh9351.json b/domains/sh9351.json index f1cea6e4b..b1d918e8c 100644 --- a/domains/sh9351.json +++ b/domains/sh9351.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "sh9351", + "email": "perfect2315shlim@gmail.com" + }, - { - "owner": { - "username": "sh9351", - "email": "perfect2315shlim@gmail.com" - }, - - "record": { - "CNAME": "sh9351.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "sh9351.github.io" + } +} diff --git a/domains/shad.json b/domains/shad.json new file mode 100644 index 000000000..885288694 --- /dev/null +++ b/domains/shad.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Maverick00001", + "email": "saksham.access@yahoo.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/shadow.json b/domains/shadow.json new file mode 100644 index 000000000..db9ac44b6 --- /dev/null +++ b/domains/shadow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "callme-Shadow", + "email": "shadowstriker169@gmail.com" + }, + "record": { + "CNAME": "callme-shadow.github.io" + } +} diff --git a/domains/shadowalker.json b/domains/shadowalker.json new file mode 100644 index 000000000..b76605f86 --- /dev/null +++ b/domains/shadowalker.json @@ -0,0 +1,11 @@ +{ + "description": "This domain will be used for my personal website.", + "repo": "https://github.com/shadowisdev/shadowisdev", + "owner": { + "username": "shadowisdev", + "email": "shadowisdev@gmail.com" + }, + "record": { + "CNAME": "shadowisdev.github.io" + } +} diff --git a/domains/shadowcookie.json b/domains/shadowcookie.json deleted file mode 100644 index 0a6ff4b82..000000000 --- a/domains/shadowcookie.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "Friezer-85", - "email": "dorian.graciot@yahoo.com" - }, - - "record": { - "URL": "https://discord.com/api/oauth2/authorize?client_id=1024762572056047626&permissions=8&scope=bot%20applications.commands" - } - } - \ No newline at end of file diff --git a/domains/shafi.json b/domains/shafi.json new file mode 100644 index 000000000..05d921dbb --- /dev/null +++ b/domains/shafi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Xshafi", + "email": "AkramSanghar10@gmail.com" + }, + "record": { + "CNAME": "xshafi.github.io" + } +} diff --git a/domains/shafi100.json b/domains/shafi100.json index f6504f16b..4404f8582 100644 --- a/domains/shafi100.json +++ b/domains/shafi100.json @@ -1,12 +1,12 @@ { - "description": "Personal portfolio and blogging website of Md Abdullahil Shafi", - "repo": "https://github.com/shafi100/shafi100.github.io", - "owner": { - "username": "shafi100", - "email": "pro.shafi.12@gmail.com", - "twitter": "bd_shafi" - }, - "record": { - "CNAME": "shafi100.github.io" - } -} + "description": "Personal portfolio and blogging website of Md Abdullahil Shafi", + "repo": "https://github.com/shafi100/shafi100.github.io", + "owner": { + "username": "shafi100", + "email": "pro.shafi.12@gmail.com", + "twitter": "bd_shafi" + }, + "record": { + "CNAME": "shafi100.github.io" + } +} diff --git a/domains/shahjada.json b/domains/shahjada.json new file mode 100644 index 000000000..3d5cf3e79 --- /dev/null +++ b/domains/shahjada.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shahjada0", + "email": "muhammedalif2004@gmail.com" + }, + "record": { + "A": ["31.186.83.254"] + } +} diff --git a/domains/shake.json b/domains/shake.json new file mode 100644 index 000000000..2c1c1ba53 --- /dev/null +++ b/domains/shake.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wansies", + "email": "taio6@duck.com" + }, + "record": { + "URL": "https://shake-1.gitbook.io/shake-documentation" + } +} diff --git a/domains/shakera-vora.json b/domains/shakera-vora.json new file mode 100644 index 000000000..ee9ac8afc --- /dev/null +++ b/domains/shakera-vora.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/shakera-vora/shakera-vora.github.io", + "owner": { + "username": "shakera-vora", + "email": "" + }, + "record": { + "CNAME": "shakera-vora.github.io" + } +} diff --git a/domains/shambhavisinha.json b/domains/shambhavisinha.json new file mode 100644 index 000000000..34183b59d --- /dev/null +++ b/domains/shambhavisinha.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "shim-sham", + "email": "", + "discord": "731861620833386506", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.aqb7neHU6pfFXd-SzlAwE9p1H8Eln9vmyvfn3Q0tjEsPEJrF_tJGcyl1q54Y5W6mSGupod8K90YGXBaAoQmQJHgUMuEnBqXV-p9OVetnJgzuNJCIOzXcDj9RnfgbprtoiTb8yAnoikeXUg5OuJ6c0cYOc_iP-H_oqblDwEW3Cdk2-u2_umDOj0zCvRo-NDSknn38fRkdHwK4SYyOGKTW2n9NnCJnXZe0ZiSIoSCIprRS9F2VySXfndXdcCi56HfxbIv6uWp4h4lbLAFizZ-YcolEHpwHVsRNn5twuTxoIgV8VrJR8i1uTH5shOy2Z9Kh9HA3CWB_aGtWGOcN8RPsBA.O6W5Y1nwLfl16bPtMuNvcw.3X4Pk71XSjhqmMiIAvDd51oARntiRqi9Fd1LF9VG5dKanAN8B5EvWMJWQBB9yXG9ULGwh_7xsO8ZD4V26E2LLcG1rejELJDmXAMm3PJgi1U.ACU2mORwwDBN8txmBf5FpA" + }, + + "record": { + "CNAME": "shim-sham.github.io" + } + } + diff --git a/domains/shamil.json b/domains/shamil.json new file mode 100644 index 000000000..ed2642d8c --- /dev/null +++ b/domains/shamil.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "shamxl", + "email": "im.shamxl@gmail.com", + "discord": "967681574080507944" + }, + + "record": { + "CNAME": "shamxl.github.io" + } +} diff --git a/domains/shamit.json b/domains/shamit.json new file mode 100644 index 000000000..1e4d2d7f7 --- /dev/null +++ b/domains/shamit.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "iamshamit", + "email": "shamitmishra22@gmail.com", + "discord": "769189484155371520" + }, + + "record": { + "CNAME": "portfolio-react-qpv8.onrender.com" + } + } + \ No newline at end of file diff --git a/domains/shan.json b/domains/shan.json new file mode 100644 index 000000000..f70555a47 --- /dev/null +++ b/domains/shan.json @@ -0,0 +1,17 @@ +{ + "description": "My Personal Website ", + "repo": "https://github.com/Adwaith-Shan-Pk/Adwaith-Shan-Pk.github.io", + "owner": { + "username": "Adwaith-Shan-Pk", + "email": "mail@adwaithshan.rf.gd", + "twitter": "lordlinux69" + }, + "record": { + "A": ["45.90.12.31"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/sharafat.json b/domains/sharafat.json new file mode 100644 index 000000000..fe63b3ec0 --- /dev/null +++ b/domains/sharafat.json @@ -0,0 +1,11 @@ +{ + "description": "Sharafat Karim", + "repo": "https://github.com/SharafatKarim/sharafatkarim.github.io", + "owner": { + "username": "SharafatKarim", + "email": "sharafat2004@gmail.com" + }, + "record": { + "CNAME": "sharafatkarim.github.io" + } +} diff --git a/domains/sharan.json b/domains/sharan.json new file mode 100644 index 000000000..fac845479 --- /dev/null +++ b/domains/sharan.json @@ -0,0 +1,11 @@ +{ + "description": "Sharan's website", + "repo": "https://github.com/Vasoyasharan/Mywebsite", + "owner": { + "username": "Vasoyasharan", + "email": "sharanvasoya@gmail.com" + }, + "record": { + "CNAME": "vasoyasharan.github.io" + } +} diff --git a/domains/sharanvasoya.json b/domains/sharanvasoya.json new file mode 100644 index 000000000..d6cc75261 --- /dev/null +++ b/domains/sharanvasoya.json @@ -0,0 +1,11 @@ +{ + "description": "Sharan's website", + "repo": "https://github.com/Vasoyasharan/MyPortfolio", + "owner": { + "username": "Vasoyasharan", + "email": "sharanvasoya@gmail.com" + }, + "record": { + "CNAME": "vasoyasharan.github.io" + } +} diff --git a/domains/sharath3.json b/domains/sharath3.json new file mode 100644 index 000000000..d3e7653ed --- /dev/null +++ b/domains/sharath3.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sharathchandra345", + "email": "csharathchandra3@gmail.com" + }, + "record": { + "URL": "https://sharathweb.netlify.app/" + } +} diff --git a/domains/sharathchandra.json b/domains/sharathchandra.json new file mode 100644 index 000000000..d82f1dc6c --- /dev/null +++ b/domains/sharathchandra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sharathchandra345", + "email": "csharathchandra3@gmail.com" + }, + "record": { + "URL": "https://csharath.netlify.app/" + } +} diff --git a/domains/sharex.phoenix.json b/domains/sharex.phoenix.json new file mode 100644 index 000000000..4d74122a1 --- /dev/null +++ b/domains/sharex.phoenix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PhoenixOrigin", + "email": "phoenixorigin171@gmail.com" + }, + "record": { + "A": ["130.162.166.134"] + } +} diff --git a/domains/sharma.json b/domains/sharma.json new file mode 100644 index 000000000..40fb7a7cb --- /dev/null +++ b/domains/sharma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adityash4rma", + "email": "gaming.boy.fhx@gmail.com" + }, + "record": { + "CNAME": "blog-9bb.pages.dev" + } +} diff --git a/domains/shashank.json b/domains/shashank.json index 5d6cda10d..f94cb264c 100644 --- a/domains/shashank.json +++ b/domains/shashank.json @@ -1,11 +1,12 @@ - - { - "owner": { - "username": "shashankktiwariii", - "email": "development.shashank@gmail.com" - }, - "record": { - "A": ["144.24.102.80"] - } - } - \ No newline at end of file +{ + "description": "Shashank's Github Page", + "repo": "https://github.com/ss-29/ss-29.github.io", + "owner": { + "username": "ss-29", + "email": "shekhar2906@outlook.com", + "twitter": "shashankxdev" + }, + "record": { + "CNAME": "ss-29.github.io" + } +} diff --git a/domains/shashankag.json b/domains/shashankag.json new file mode 100644 index 000000000..4fe799e53 --- /dev/null +++ b/domains/shashankag.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/ershashankgit/portfolio", + "owner": { + "username": "ershashankgit", + "email": "contact@shashank.my.id" + }, + "record": { + "CNAME": "ershashankgit.github.io" + } +} diff --git a/domains/shashankk.json b/domains/shashankk.json deleted file mode 100644 index 5d6cda10d..000000000 --- a/domains/shashankk.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "shashankktiwariii", - "email": "development.shashank@gmail.com" - }, - "record": { - "A": ["144.24.102.80"] - } - } - \ No newline at end of file diff --git a/domains/shashankreddy.json b/domains/shashankreddy.json new file mode 100644 index 000000000..d65a84643 --- /dev/null +++ b/domains/shashankreddy.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "shashank-amireddy", + "email": "", + "discord": "758375198662590515", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.l-otd7mTmOFl0h0OTgf0G1R-qmTqFjlOKz7-1lzqCQoKPjfiQdTUjiWZH0O4_fBLskItih8GqoT2jgG1uCE5yIonjKPNy3c4HsRf200q5SDCiyxXItr8o6-o2KJh7RHnJxi_Kp9qrpYz0hNGsIesoq2sPlYfWmxYKQ1TCCK4gvubhywvmZcyTouz08TgakWzYHkn-4nisz-DH-ctNLGo0z6Esicv4C0Tcn0wOJ9LjO7urt9p51I5sN7IQm-20JnUqSOaja1ukv5HpIY1ILHBL3Sb13QVlpUIlaoby8EpAzmviXd0JWzfOQfVcdL1EnbUmQu86toSj-BbuweKPPeNOg.VPY-mZFRHfr91A38FwfjSQ.mmD2chI82Yzyv1Lz-pwvJ4-v3LgO28mHrsPce_8sRgrIRfnrykrLosARHwbsp32iKX2Syl36SSl4aFNLZe-ij7-sekB7G3nAmCfhgnDHw4BiAhut0BHOeg4BhlFvpCDG.f0GCirdTkqfAfW63jykwqw" + }, + + "record": { + "CNAME": "thequantumloom.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/shatanik.json b/domains/shatanik.json new file mode 100644 index 000000000..ffb4985f1 --- /dev/null +++ b/domains/shatanik.json @@ -0,0 +1,10 @@ +{ + "description": "Shatanik's Developer Portfolio", + "owner": { + "username": "shatanikmahanty", + "email": "shatanikmahanty@gmail.com" + }, + "record": { + "CNAME": "shatanikmahanty.github.io" + } +} diff --git a/domains/shaunak.json b/domains/shaunak.json index f947e4686..7fe7ba1fb 100644 --- a/domains/shaunak.json +++ b/domains/shaunak.json @@ -6,6 +6,6 @@ "email": "shaunak.n.pandya@gmail.com" }, "record": { - "CNAME": "shaunak-pandya.github.io" + "CNAME": "shaunak-pandya.github.io" } } diff --git a/domains/shaunfurtado.json b/domains/shaunfurtado.json new file mode 100644 index 000000000..6596db83d --- /dev/null +++ b/domains/shaunfurtado.json @@ -0,0 +1,11 @@ +{ + "description": "My Personal Portfolio Website", + "repo": "https://github.com/Shaunfurtado/Shaunfurtado.github.io", + "owner": { + "username": "Shaunfurtado", + "email": "shaunf1801@gmail.com" + }, + "record": { + "CNAME": "shaunfurtado.github.io" + } +} diff --git a/domains/shaurya.json b/domains/shaurya.json new file mode 100644 index 000000000..110727451 --- /dev/null +++ b/domains/shaurya.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shauryagupta3", + "email": "", + "discord":"757499975922876446" + }, + "record": { + "CNAME": "shauryagupta3.github.io" + } + } diff --git a/domains/shayokh.json b/domains/shayokh.json new file mode 100644 index 000000000..0bad10091 --- /dev/null +++ b/domains/shayokh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShayokhShorfuddin", + "email": "shayokhshuvro14@gmail.com" + }, + "record": { + "CNAME": "shayokhshorfuddin.github.io" + } +} diff --git a/domains/shays.json b/domains/shays.json index a66f74ffa..4c9e48caa 100644 --- a/domains/shays.json +++ b/domains/shays.json @@ -1,11 +1,12 @@ { - "description": "my folio site", - "repo": "https://github.com/SHays24/SHays24.github.io", - "owner": { - "username": "SHays24", - "email": "SHays24@student.sacs.nsw.edu.au" - }, - "record": { - "CNAME": "SHays24.github.io" - } -} + "description": "my folio site", + "repo": "https://github.com/SHays24/SHays24.github.io", + "owner": { + "username": "SHays24", + "email": "", + "discord": "munchkin2309" + }, + "record": { + "CNAME": "shays24.github.io" + } +} diff --git a/domains/she.json b/domains/she.json index dce479e36..9fe4cf6af 100644 --- a/domains/she.json +++ b/domains/she.json @@ -1,12 +1,11 @@ { - "description": "My personal website", - "repo": "https://github.com/yuzhigang33/yuzhigang33.github.com", - "owner": { - "username": "yuzhigang33", - "email": "yuzhigang33@gmail.com" - }, - "record": { - "CNAME": "yuzhigang33.github.io" - } + "description": "My personal website", + "repo": "https://github.com/yuzhigang33/yuzhigang33.github.com", + "owner": { + "username": "yuzhigang33", + "email": "yuzhigang33@gmail.com" + }, + "record": { + "CNAME": "yuzhigang33.github.io" } - \ No newline at end of file +} diff --git a/domains/sheldon.json b/domains/sheldon.json new file mode 100644 index 000000000..279552149 --- /dev/null +++ b/domains/sheldon.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website of Sheldon Menezes", + "repo": "https://github.com/0x5h31d0n/0x5h31d0n.github.io", + "owner": { + "username": "0x5h31d0n", + "email": "samymenezes33@gmail.com" + }, + "record": { + "CNAME": "0x5h31d0n.github.io" + } +} diff --git a/domains/shept.json b/domains/shept.json index 4d76621a9..225591665 100644 --- a/domains/shept.json +++ b/domains/shept.json @@ -1,11 +1,19 @@ { - "description": "An aboutme page for Shept", - "repo": "https://github.com/mcshept", - "owner": { - "username": "mcshept", - "email": "shept@dasshept.tech" - }, - "record": { - "CNAME": "mcshept.github.io" - } -} \ No newline at end of file + "owner": { + "username": "mcshept", + "email": "maxiheinrich007@yahoo.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/shevon.json b/domains/shevon.json new file mode 100644 index 000000000..ecba599c5 --- /dev/null +++ b/domains/shevon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShevonKuan", + "email": "331749486@qq.com" + }, + "record": { + "A": ["47.236.182.59"] + } +} diff --git a/domains/shift.json b/domains/shift.json new file mode 100644 index 000000000..9efd05f6e --- /dev/null +++ b/domains/shift.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mkshift", + "email": "mkshift@tuta.io" + }, + "record": { + "CNAME": "mkshift.github.io" + } +} diff --git a/domains/shijaz.json b/domains/shijaz.json new file mode 100644 index 000000000..1f0f4fae4 --- /dev/null +++ b/domains/shijaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShijazKS", + "email": "hafizshijaz@gmail.com" + }, + "record": { + "URL": "https://shijazks.github.io/" + } +} diff --git a/domains/shikharreyya.json b/domains/shikharreyya.json new file mode 100644 index 000000000..a7bca1b08 --- /dev/null +++ b/domains/shikharreyya.json @@ -0,0 +1,12 @@ +{ + "description": "For my personal projects", + "repo": "https://github.com/Poseidon0070/Poseidon0070.github.io", + "owner": { + "username": "Poseidon0070", + "email": "criticalxsynergy@gmail.com", + "twitter": "Voldemort_7585" + }, + "record": { + "CNAME": "poseidon0070.github.io" + } +} diff --git a/domains/shin.json b/domains/shin.json index 82adcc92d..bd8fc6557 100644 --- a/domains/shin.json +++ b/domains/shin.json @@ -8,14 +8,14 @@ }, "record": { "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" ], "MX": [ - "mx1.forwardemail.net", - "mx2.forwardemail.net" + "mx1.forwardemail.net", + "mx2.forwardemail.net" ], "TXT": "forward-email=tachibshin@duck.com" } diff --git a/domains/shirishshinde.json b/domains/shirishshinde.json new file mode 100644 index 000000000..9dccd1ca8 --- /dev/null +++ b/domains/shirishshinde.json @@ -0,0 +1,11 @@ +{ + "description": "Shirish Satish Shinde's Portfolio", + "repo": "https://github.com/MasterShirishShinde/MasterShirishShinde.github.io", + "owner": { + "username": "MasterShirishShinde", + "email": "shirishshinde2605@gmail.com" + }, + "record": { + "CNAME": "mastershirishshinde.github.io" + } +} diff --git a/domains/shirsak.json b/domains/shirsak.json new file mode 100644 index 000000000..6a81370fd --- /dev/null +++ b/domains/shirsak.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "shirsakm", + "email": "shirsakm@gmail.com" + }, + "description": "Hosts my personal website", + "repo": "https://github.com/shirsakm/website", + "record": { + "CNAME": "website-ndp.pages.dev" + } +} diff --git a/domains/shiva-vijai.json b/domains/shiva-vijai.json new file mode 100644 index 000000000..e37786cab --- /dev/null +++ b/domains/shiva-vijai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Shiva-Vijai", + "email": "shivavijai2008@gmail.com" + }, + "record": { + "CNAME": "shiva-vijai.github.io" + } +} diff --git a/domains/shivanshu814.json b/domains/shivanshu814.json deleted file mode 100644 index 8d71677a5..000000000 --- a/domains/shivanshu814.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Projects by Shivanshu Pathak", - "repo": "https://github.com/shivanshu814/kliquestart", - "owner": { - "username": "Shivanshu Pathak", - "email": "shivanshu814pathak@gmail.com", - "linkedin": "https://www.linkedin.com/in/shivanshu-pathak-6611b5228" - }, - "record": { - "CNAME": "Kliquestart.com" - } -} diff --git a/domains/shiyaf.json b/domains/shiyaf.json index 97303882c..956a11134 100644 --- a/domains/shiyaf.json +++ b/domains/shiyaf.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "mshiyaf", + "email": "shiyafc@gmail.com" + }, - { - "owner": { - "username": "mshiyaf", - "email": "shiyafc@gmail.com" - }, - - "record": { - "URL": "https://texolgulf.com" - } - } - \ No newline at end of file + "record": { + "URL": "https://texolgulf.com" + } +} diff --git a/domains/shlok.json b/domains/shlok.json deleted file mode 100644 index d80267f31..000000000 --- a/domains/shlok.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Portfolio Website", - "owner": { - "username": "PlaceInSpace", - "email": "shlokmadhekar88@gmail.com" - }, - "record": { - "CNAME": "d5c36b7d-4d85-449f-bd4d-0bbbc88fb781.id.repl.co" - } -} diff --git a/domains/shobhitb.json b/domains/shobhitb.json new file mode 100644 index 000000000..4ded99fb3 --- /dev/null +++ b/domains/shobhitb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Shobhit9945", + "email": "shobhitbaijal5@gmail.com" + }, + "record": { + "CNAME": "shobhit9945.github.io" + } +} diff --git a/domains/shock.json b/domains/shock.json new file mode 100644 index 000000000..a1f2c7535 --- /dev/null +++ b/domains/shock.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "CNAME": "shockbs.github.io" + } +} diff --git a/domains/shockbs.json b/domains/shockbs.json new file mode 100644 index 000000000..6174d5fce --- /dev/null +++ b/domains/shockbs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "A": ["76.76.21.21"], + "MX": ["mx1.improvmx.com","mx2.improvmx.com."], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/shork.json b/domains/shork.json new file mode 100644 index 000000000..0af2bdf46 --- /dev/null +++ b/domains/shork.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shorkdev", + "email": "shork_d3v@proton.me", + "telegram": "@shorko_owo" + }, + "record": { + "URL": "https://shork.one" + } +} diff --git a/domains/shorko.json b/domains/shorko.json new file mode 100644 index 000000000..4e0ba711c --- /dev/null +++ b/domains/shorko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shorkdev", + "email": "shork_d3v@proton.me" + }, + "record": { + "URL": "https://shork.one" + } +} diff --git a/domains/short.crischutu07.json b/domains/short.crischutu07.json new file mode 100644 index 000000000..e9df16672 --- /dev/null +++ b/domains/short.crischutu07.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "crischutu07", + "email": "crischutu07owo@gmail.com" + }, + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/short.json b/domains/short.json deleted file mode 100644 index 6420e8785..000000000 --- a/domains/short.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "an api for my bot", - "repo": "https://github.com/w3cy/w3cy", - "owner": { - "username": "w3cy", - "email": "keyv.cec@outlook.com" - }, - "record": { - "CNAME": "8b9c08e0-a9c2-4fc1-8e17-aca4fb93ae71.id.repl.co" - } -} diff --git a/domains/shoumik.json b/domains/shoumik.json new file mode 100644 index 000000000..df4605c03 --- /dev/null +++ b/domains/shoumik.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/mixmaker/mixmaker.github.io", + "owner": { + "username": "mixmaker", + "email": "shoumikskdev@gmail.com", + "twitter": "almost_shoumik" + }, + "record": { + "CNAME": "mixmaker.github.io" + } +} diff --git a/domains/shoyeb.json b/domains/shoyeb.json new file mode 100644 index 000000000..24a65eced --- /dev/null +++ b/domains/shoyeb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrtemp70", + "email": "mrtemp70@gmail.com" + }, + "record": { + "CNAME": "msashoyeb.github.io" + } +} diff --git a/domains/shravan.json b/domains/shravan.json new file mode 100644 index 000000000..dcf9173c4 --- /dev/null +++ b/domains/shravan.json @@ -0,0 +1,14 @@ +{ + "description": "To get the .is-a.dev subdomain for my portfolio website", + "repo": "https://github.com/VirtualSquares/Portfolio", + "owner": { + "username": "VirtualSquares", + "email": "shravanparadigm@gmail.com", + "discord": "cannonboys" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/shree.json b/domains/shree.json new file mode 100644 index 000000000..2f02f1bab --- /dev/null +++ b/domains/shree.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shreekrishnalamichhane", + "email": "uniksk123@gmail.com" + }, + "record": { + "CNAME": "shreekrishnalamichhane.com.np" + } +} diff --git a/domains/shresth.json b/domains/shresth.json index fcfaeedae..ec4242022 100644 --- a/domains/shresth.json +++ b/domains/shresth.json @@ -1,12 +1,12 @@ { - "description": "My portfolio website", - "repo": "https://github.com/shhresth/Portfolio", - "owner": { - "username": "shhresth", - "email": "shresthgupta106@gmail.com", - "twitter": "Shresthology" - }, - "record": { - "CNAME": "shhresth.github.io" - } -} + "description": "My portfolio website", + "repo": "https://github.com/shhresth/Portfolio", + "owner": { + "username": "shhresth", + "email": "shresthgupta106@gmail.com", + "twitter": "Shresthology" + }, + "record": { + "CNAME": "shhresth.github.io" + } +} diff --git a/domains/shreyas.json b/domains/shreyas.json new file mode 100644 index 000000000..af8d0fbeb --- /dev/null +++ b/domains/shreyas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shrysjain", + "email": "2027sjain@tjhsst.edu" + }, + "record": { + "URL": "https://shrysjain.me/" + } +} diff --git a/domains/shreyasitb.json b/domains/shreyasitb.json new file mode 100644 index 000000000..c27ac8dae --- /dev/null +++ b/domains/shreyasitb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Shreyas-ITB", + "email": "rstechbros@gmail.com" + }, + "record": { + "CNAME": "shreyas-itb.github.io" + } +} diff --git a/domains/shuawe.json b/domains/shuawe.json new file mode 100644 index 000000000..d28fb4aad --- /dev/null +++ b/domains/shuawe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shuawe", + "email": "shuaweee@gmail.com" + }, + "record": { + "CNAME": "shuawe.railway.app" + } +} diff --git a/domains/shubh.json b/domains/shubh.json new file mode 100644 index 000000000..2b950ba61 --- /dev/null +++ b/domains/shubh.json @@ -0,0 +1,12 @@ +{ + "description": "personal portfolio website", + "repo": "https://github.com/R3tr0LastKnight/Portfoio_v2.git", + "owner": { + "username": "R3tr0LastKnight", + "email": "r3tr0lastknight@gmail.com", + "twitter": "R3tr0LastKnight" + }, + "record": { + "CNAME": "r3tr0lastknight.github.io" + } +} diff --git a/domains/shubham.json b/domains/shubham.json index 31cfa2e8b..b0a1e5eac 100644 --- a/domains/shubham.json +++ b/domains/shubham.json @@ -1,11 +1,11 @@ { - "description": "My Portfolio Website", - "repo": "https://github.com/noobshubham/Portfolio", - "owner": { - "username": "noobshubham", - "email": "noobshubham65@gmail.com" - }, - "record": { - "CNAME": "noobshubham.github.io" - } -} \ No newline at end of file + "description": "My Portfolio Website", + "repo": "https://github.com/noobshubham/Portfolio", + "owner": { + "username": "noobshubham", + "email": "noobshubham65@gmail.com" + }, + "record": { + "CNAME": "noobshubham.github.io" + } +} diff --git a/domains/shubham1806.json b/domains/shubham1806.json new file mode 100644 index 000000000..d61978237 --- /dev/null +++ b/domains/shubham1806.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shubham-1806", + "email": "shub.agarwal2003@gmail.com" + }, + "record": { + "A": ["20.207.73.82"] + } +} diff --git a/domains/shubhambattoo.json b/domains/shubhambattoo.json index daab7f471..f3e0be9c8 100644 --- a/domains/shubhambattoo.json +++ b/domains/shubhambattoo.json @@ -1,12 +1,12 @@ -{ - "owner": { - "username": "shubhambattoo", - "email": "shubham.battoo@hotmail.com", - "twitter": "Shubham_batt" - }, - "description": "My personal website", - "repo": "https://github.com/shubhambattoo", - "record": { - "URL": "https://shubhambattoo.in" - } -} \ No newline at end of file +{ + "owner": { + "username": "shubhambattoo", + "email": "shubham.battoo@hotmail.com", + "twitter": "Shubham_batt" + }, + "description": "My personal website", + "repo": "https://github.com/shubhambattoo", + "record": { + "URL": "https://shubhambattoo.in" + } +} diff --git a/domains/shubhamlal.json b/domains/shubhamlal.json new file mode 100644 index 000000000..841e8bd0d --- /dev/null +++ b/domains/shubhamlal.json @@ -0,0 +1,12 @@ +{ + "description": "Welcome to Shubham's Portfolio website! This website has been designed using the Ubuntu 20.04 theme, and has been developed using NEXT.js and Tailwind CSS. The website showcases my skills, projects, and experience in a visually appealing and user-friendly manner. The use of the Ubuntu 20.04 theme gives it a sleek and modern look, while the use of NEXT.js and Tailwind CSS ensures a fast and responsive user experience.With this website, I hope to demonstrate my expertise in web development and design, and provide visitors with a comprehensive overview of my skills and experience. Thank you for visiting my website, and please don't hesitate to get in touch if you have any questions or would like to discuss a project.", + "repo": "https://github.com/CERTIFIED2003/ubuntuOS-playground", + "owner": { + "username": "CERTIFIED2003", + "email": "im.shubhamlal@gmail.com", + "linkedin": "https://www.linkedin.com/in/shubham-lal" + }, + "record": { + "URL": "https://ubuntuos.pages.dev" + } +} diff --git a/domains/shuchirjain.json b/domains/shuchirjain.json index 4bd0900c3..12a1fb9e7 100644 --- a/domains/shuchirjain.json +++ b/domains/shuchirjain.json @@ -3,12 +3,12 @@ "username": "CoolCoderSJ", "email": "coolcodersj@gmail.com" }, - + "record": { "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], + "mx1.improvmx.com", + "mx2.improvmx.com" + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/shweta-gotecha.json b/domains/shweta-gotecha.json new file mode 100644 index 000000000..6d120df81 --- /dev/null +++ b/domains/shweta-gotecha.json @@ -0,0 +1,11 @@ +{ + "description": "site.", + "repo": "https://github.com/shweta-gotecha/shweta-gotecha.github.io", + "owner": { + "username": "shweta-gotecha", + "email": "" + }, + "record": { + "CNAME": "shweta-gotecha.github.io" + } +} diff --git a/domains/shy.json b/domains/shy.json new file mode 100644 index 000000000..1c35eb032 --- /dev/null +++ b/domains/shy.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ImShyMike", + "email": "", + "discord": "582648583635992622" + }, + + "record": { + "CNAME": "edge.redirect.pizza" + } + } + diff --git a/domains/shymega.json b/domains/shymega.json new file mode 100644 index 000000000..9c2f87eec --- /dev/null +++ b/domains/shymega.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shymega", + "email": "shymega@shymega.org.uk" + }, + "record": { + "CNAME": "dom-rodriguez-org-uk.pages.dev" + } +} diff --git a/domains/shymike.json b/domains/shymike.json new file mode 100644 index 000000000..71a549273 --- /dev/null +++ b/domains/shymike.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ImShyMike", + "email": "", + "discord": "582648583635992622" + }, + + "record": { + "CNAME": "imshymike.github.io" + } + } + diff --git a/domains/siama.json b/domains/siama.json new file mode 100644 index 000000000..e10c1a395 --- /dev/null +++ b/domains/siama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siam3h", + "email": "philosiama@gmail.com" + }, + "record": { + "CNAME": "siam3h.github.io" + } +} diff --git a/domains/siamrahman.json b/domains/siamrahman.json index 9ab7d1b8a..25c6f6713 100644 --- a/domains/siamrahman.json +++ b/domains/siamrahman.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/siamrahman000/siamrahman000.github.io", - "owner": { - "username": "siamrahman000", - "email": "s14mshell@gmail.com", - "twitter": "skillsiam" - }, - "record": { - "CNAME": "siamrahman000.github.io" - } -} + "repo": "https://github.com/siamrahman000/siamrahman000.github.io", + "owner": { + "username": "siamrahman000", + "email": "s14mshell@gmail.com", + "twitter": "skillsiam" + }, + "record": { + "CNAME": "siamrahman000.github.io" + } +} diff --git a/domains/sidd.json b/domains/sidd.json deleted file mode 100644 index 6b892ddd3..000000000 --- a/domains/sidd.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "sidd is a dev (duh?)", - "repo": "https://github.com/uh-Sid/sidd.is-a.dev", - "owner": { - "username": "uh-Sid", - "email": "sdmdevelopment3@gmail.com" - }, - "record": { - "CNAME": "4dffaf9f-274e-457e-a081-b23e4d20e170.id.repl.co" - } -} diff --git a/domains/siddhant.json b/domains/siddhant.json index c52e4ff40..a8b6f41b6 100644 --- a/domains/siddhant.json +++ b/domains/siddhant.json @@ -6,6 +6,6 @@ "email": "pandeysiddhant21@gmail.com" }, "record": { - "URL": "https://siddhantt.netlify.app" + "URL": "https://siddhantt.vercel.app/" } } diff --git a/domains/siddharth.json b/domains/siddharth.json new file mode 100644 index 000000000..8e3c41a98 --- /dev/null +++ b/domains/siddharth.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "siddharthjain25", + "email": "siddharthjainj25@gmail.com", + "discord": "804397662467915777" + }, + + "record": { + "CNAME": "siddharthjain25.github.io" + } +} diff --git a/domains/sidmaji.json b/domains/sidmaji.json new file mode 100644 index 000000000..7b93a7245 --- /dev/null +++ b/domains/sidmaji.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portfolio.", + "repo": "https://github.com/sidmaji/portfolio", + "owner": { + "username": "sidmaji", + "email": "somebodyimportant0@gmail.com", + "twitter": "SomebodyImport5" + }, + "record": { + "CNAME": "sidmaji.github.io" + } +} diff --git a/domains/sidou.json b/domains/sidou.json new file mode 100644 index 000000000..36db4939c --- /dev/null +++ b/domains/sidou.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SidAhmedSahraoui", + "email": "s.sahraoui@esi-sba.dz" + }, + "record": { + "CNAME": "sidou.codes" + } +} diff --git a/domains/sife.json b/domains/sife.json new file mode 100644 index 000000000..6b6120449 --- /dev/null +++ b/domains/sife.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "Sife-shuo", + "email": "sifed@qq.com" + }, + + "record": { + "A": [ + "185.199.110.153", + "185.199.109.153", + "185.199.108.153", + "185.199.111.153" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } +} diff --git a/domains/sigma.json b/domains/sigma.json new file mode 100644 index 000000000..085a547c4 --- /dev/null +++ b/domains/sigma.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "trollm8", + "email": "", + "discord": "1266754182082461751", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.J_IcRG3Pk5dPVC7P2pLhs3tj8GTx9BwAJwc1GJfp6MkLpNA2aNwkSCuC9AeDcggizrZkPnTe0iVCeyWP1HxgMfnoNu76WHG-mKUr4dl_CAroTyD_e2XqJKsyfyPZy7zmFnaxB6QHj_VKg_f3L-YM2uRrIgyo-kWddoRkmEW2THVGVR_Vfvg2dX922bTkaAlgnXY7m2oBnSTWtisXuDQquAXWndj2GYoT9C5dA_9Dfczy7MuDAbweb939g6PhUJ4wxTjErSYdvmS99JIQ9Fpt2UDBM2c00wKlfohZuwIHospR19NY3wKfgXhmQyMY0xpcaFkDusQfktiq7tzhamVxrw.9n5xP0MzlLOiQZVDawXl0g.jLs5EC-yuzhl20fNT5KzN_F-inPJMXgXrY-JAyY-KziorsZnWcK0zu8eSSduX4j8isT2CW9iKwN4FLBPgBCHDg.SVZOTtVEniuOM5V4O8c50g" + }, + + "record": { + "CNAME": "trollmeight.pages.dev" + } + } + diff --git a/domains/silicoflare.json b/domains/silicoflare.json new file mode 100644 index 000000000..1d8562457 --- /dev/null +++ b/domains/silicoflare.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SilicoFlare", + "email": "silicoflare@gmail.com", + "discord": "832485162847305728" + }, + + "record": { + "CNAME": "silicoflare.pages.dev" + } +} diff --git a/domains/silver.json b/domains/silver.json new file mode 100644 index 000000000..32cf244d5 --- /dev/null +++ b/domains/silver.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hishamhitte", + "email": "hitte@post.com" + }, + "record": { + "CNAME": "silver-29u.pages.dev" + } +} diff --git a/domains/simon.json b/domains/simon.json index 7d6d609dd..0781931ae 100644 --- a/domains/simon.json +++ b/domains/simon.json @@ -1,11 +1,11 @@ { - "description": "My website :)", - "repo": "https://github.com/ssimondev/ssimondev.github.io", - "owner": { - "username": "ssimondev", - "email": "simi.simecek@seznam.cz" - }, - "record": { - "CNAME": "ssimondev.github.io" - } + "description": "My website :)", + "repo": "https://github.com/ssimondev/ssimondev.github.io", + "owner": { + "username": "ssimondev", + "email": "simi.simecek@seznam.cz" + }, + "record": { + "CNAME": "ssimondev.github.io" + } } diff --git a/domains/simonknowsstuff.json b/domains/simonknowsstuff.json index 98c6ff950..6558c6eab 100644 --- a/domains/simonknowsstuff.json +++ b/domains/simonknowsstuff.json @@ -1,12 +1,10 @@ { - "description": "simonknowsstuff's website!", - "repo": "https://github.com/github-username/github-username.github.io", "owner": { "username": "simonknowsstuff", "email": "simonknowsstuff@gmail.com", "twitter": "simonknowsstuff" }, "record": { - "CNAME": "simonknowsstuff.github.io" + "CNAME": "blog-7vq.pages.dev" } } diff --git a/domains/simonwong.json b/domains/simonwong.json index afccade83..3f7a3e98c 100644 --- a/domains/simonwong.json +++ b/domains/simonwong.json @@ -1,6 +1,6 @@ { "owner": { - "username": "Simon Wong", + "username": "simonwong", "email": "wsjwsjsimon@gmail.com", "twitter": "wsj_simonwong", "discord": "Simon Wong#6040" diff --git a/domains/simplyleon.json b/domains/simplyleon.json new file mode 100644 index 000000000..58ac5851e --- /dev/null +++ b/domains/simplyleon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "simply-leon", + "email": "saishashaz@gmail.com" + }, + "record": { + "CNAME": "1aumop7g.up.railway.app" + } +} diff --git a/domains/sincererflame71.json b/domains/sincererflame71.json new file mode 100644 index 000000000..c6e93e287 --- /dev/null +++ b/domains/sincererflame71.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DarkNightcore8", + "email": "DarkNightcore8@outlook.com" + }, + "record": { + "A": ["185.199.108.153"] + } +} diff --git a/domains/singh-jitendar.json b/domains/singh-jitendar.json new file mode 100644 index 000000000..6522d2811 --- /dev/null +++ b/domains/singh-jitendar.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/singh-jitendar/singh-jitendar.github.io", + "owner": { + "username": "singh-jitendar", + "email": "" + }, + "record": { + "CNAME": "singh-jitendar.github.io" + } +} diff --git a/domains/siow-kai-yang.json b/domains/siow-kai-yang.json index 18caf9be1..023489975 100644 --- a/domains/siow-kai-yang.json +++ b/domains/siow-kai-yang.json @@ -1,11 +1,11 @@ { - "description": "Portfolio go brrrrr", - "repo": "https://github.com/yeetus-maximus/yeetus-maximus.github.io", - "owner": { - "username": "yeetus-maximus", - "email": "siowkaiyang@protonmail.com" - }, - "record": { - "CNAME": "yeetus-maximus.github.io" - } -} + "description": "Portfolio go brrrrr", + "repo": "https://github.com/yeetus-maximus/yeetus-maximus.github.io", + "owner": { + "username": "yeetus-maximus", + "email": "siowkaiyang@protonmail.com" + }, + "record": { + "CNAME": "yeetus-maximus.github.io" + } +} diff --git a/domains/sitetransform.json b/domains/sitetransform.json new file mode 100644 index 000000000..4e876f9c5 --- /dev/null +++ b/domains/sitetransform.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sitetransform", + "email": "quentavers@gmail.com" + }, + "record": { + "CNAME": "zmverify.zoho.com" + } +} diff --git a/domains/sivaraj.json b/domains/sivaraj.json new file mode 100644 index 000000000..95347ea7a --- /dev/null +++ b/domains/sivaraj.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TheCyb3rMafia", + "email": "sivarajkailas@gmail.com", + "discord": "1057144035812327524" + }, + + "record": { + "A": ["185.199.108.153"] + } +} diff --git a/domains/siwon.json b/domains/siwon.json new file mode 100644 index 000000000..07e898543 --- /dev/null +++ b/domains/siwon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siwonpada", + "email": "psw041115@gmail.com" + }, + "record": { + "A": ["43.201.138.247"] + } +} diff --git a/domains/siyamex.json b/domains/siyamex.json new file mode 100644 index 000000000..96faa8e98 --- /dev/null +++ b/domains/siyamex.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "siyamex", + "email": "siyamex2012@gmail.com" + }, + "record": { + "URL": "https://siyamex.com" + } +} diff --git a/domains/sjcdn.json b/domains/sjcdn.json deleted file mode 100644 index af8d75dd4..000000000 --- a/domains/sjcdn.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "CoolCoderSJ", - "email": "CoolCoderSJ@gmail.com" - }, - "description": "My CDN", - "record": { - "CNAME": "09d836a5-eaca-4299-bfec-44ca0dfc6d0d.repl.co" - } -} diff --git a/domains/skar.json b/domains/skar.json new file mode 100644 index 000000000..0d9456b9c --- /dev/null +++ b/domains/skar.json @@ -0,0 +1,17 @@ +{ + "description": "for protfolio", + "repo": "https://github.com/sameer0022/protfolio", + "owner": { + "username": "sameer0022", + "email": "samirkarki504@gmail.com", + "discord": "_sameermalik" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/skduck.json b/domains/skduck.json index a2b497bfb..93a1a34e6 100644 --- a/domains/skduck.json +++ b/domains/skduck.json @@ -1,15 +1,18 @@ { "description": "my em@il forwarder", "owner": { - "username": "MaskDuck", - "email": "m@skduck.is-a.dev", + "username": "mAskDucK", + "email": "", "discord": "MaskDuck#1337", "twitter": "MaskDuck1", "reddit": "u/maskduck", "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586." }, "record": { - "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], - "TXT": "forward-email=it-is@too-obvious-that.maskduck.is-a.dev" + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/skibidi.json b/domains/skibidi.json new file mode 100644 index 000000000..d022461fe --- /dev/null +++ b/domains/skibidi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "bananaking6", + "discord": "skibidibagel", + "email": "" + }, + + "record": { + "CNAME": "bananaking6.github.io" + } +} diff --git a/domains/skifli.json b/domains/skifli.json deleted file mode 100644 index 44436d04e..000000000 --- a/domains/skifli.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Skifli's portfolio website", - "repo": "https://github.com/skifli/skifli.github.io", - "owner": { - "username": "skifli", - "email": "", - "discord": "skifli#8774" - }, - "record": { - "CNAME": "skifli.github.io" - } -} diff --git a/domains/skittles.json b/domains/skittles.json new file mode 100644 index 000000000..7fb9ff7a2 --- /dev/null +++ b/domains/skittles.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BlenderDuck", + "email": "blenderduck@duck.com" + }, + "record": { + "CNAME": "blenderduck.github.io" + } +} diff --git a/domains/skmojid.json b/domains/skmojid.json new file mode 100644 index 000000000..1e5f5e119 --- /dev/null +++ b/domains/skmojid.json @@ -0,0 +1,15 @@ +{ + "description": "This is my personal portfolio", + "repo": "https://github.com/skmojid/portfolio", + "owner": { + "username": "skmojid", + "email": "77mojid77@gmail.com", + "twitter": "SkMojid66927", + "preview": "skmojid.netlify.app" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/skulix.json b/domains/skulix.json new file mode 100644 index 000000000..5f70429a9 --- /dev/null +++ b/domains/skulix.json @@ -0,0 +1,11 @@ +{ + "description": "SkuliX personal website", + "repo": "https://github.com/SkuliX01/Portfolio", + "owner": { + "username": "SkuliX01", + "email": "bartosz.krawczyk34@gmail.com" + }, + "record": { + "CNAME": "portfolio-9ga.pages.dev" + } +} diff --git a/domains/skullfiredevil.json b/domains/skullfiredevil.json new file mode 100644 index 000000000..7a35fe25a --- /dev/null +++ b/domains/skullfiredevil.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Skullfiredevil", + "email": "jotipinto@gmail.com" + }, + + "record": { + "CNAME": "skullfiredevil.github.io" + } +} diff --git a/domains/sky-bridge.json b/domains/sky-bridge.json new file mode 100644 index 000000000..331ebc563 --- /dev/null +++ b/domains/sky-bridge.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "levisurely", + "email": "jr1264464@gmail.com" + }, + "record": { + "CNAME": "levisurely.github.io" + } +} diff --git a/domains/sky-development.json b/domains/sky-development.json new file mode 100644 index 000000000..20b413a1e --- /dev/null +++ b/domains/sky-development.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Skyy-Development", + "email": "strikefn143@gmail.com" + }, + "record": { + "CNAME": "statuspage.betteruptime.com" + } +} diff --git a/domains/skycloudd.json b/domains/skycloudd.json new file mode 100644 index 000000000..ba7d8a830 --- /dev/null +++ b/domains/skycloudd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "skycloudd", + "email": "benkrassenburg@gmail.com" + }, + "record": { + "CNAME": "skycloudd.github.io" + } +} diff --git a/domains/slainbot.json b/domains/slainbot.json new file mode 100644 index 000000000..7f38c4b79 --- /dev/null +++ b/domains/slainbot.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "KhongPhaiHoangQuangHuy", + "email": "khongphaihoangquanghuy@gmail.com", + "discord": "181064730075463680" + }, + + "record": { + "CNAME": "khongphaihoangquanghuy.github.io" + } + } + diff --git a/domains/slow.json b/domains/slow.json index ebcd11419..31191a39a 100644 --- a/domains/slow.json +++ b/domains/slow.json @@ -1,11 +1,11 @@ -{ - "description": "slow personal developer website", - "repo": "https://github.com/slowwdev/slow", - "owner": { - "username": "slowwdev", - "email": "slowdev14@gmail.com" - }, - "record": { - "CNAME": "slowwdev.github.io" - } - } +{ + "description": "slow personal developer website", + "repo": "https://github.com/slowwdev/slow", + "owner": { + "username": "slowwdev", + "email": "slowdev14@gmail.com" + }, + "record": { + "CNAME": "slowwdev.github.io" + } +} diff --git a/domains/sly.json b/domains/sly.json new file mode 100644 index 000000000..038909964 --- /dev/null +++ b/domains/sly.json @@ -0,0 +1,16 @@ +{ + "description": "Domain name for my personal portfolio website", + "repo": "https://github.com/SlyBouhafs/slybouhafs.github.io", + "owner": { + "username": "SlyBouhafs", + "email": "khmedj+github@gmail.com" + }, + "record": { + "A": ["164.92.183.234"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/smaltin.json b/domains/smaltin.json new file mode 100644 index 000000000..326bc89f5 --- /dev/null +++ b/domains/smaltin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Smaltin", + "email": "sterling.maltin@gmail.com" + }, + "record": { + "URL": "https://smaltin.dev" + } +} diff --git a/domains/smartfridge.json b/domains/smartfridge.json deleted file mode 100644 index 85cd35293..000000000 --- a/domains/smartfridge.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "smartfridge personal website", - "repo": "https://github.com/smartfridge-alt/smartfridge-alt.github.io", - "owner": { - "username": "smartfrigde", - "email": "smartfrigde@gmail.com" - }, - "record": { - "CNAME": "smartfridge-alt.github.io" - } -} diff --git a/domains/smartlinuxcoder.json b/domains/smartlinuxcoder.json new file mode 100644 index 000000000..d6ae1c7a0 --- /dev/null +++ b/domains/smartlinuxcoder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Smartlinuxcoder", + "email": "smartcoder@linuxmail.org" + }, + "record": { + "CNAME": "proxytwo.smartlinux.xyz" + } +} diff --git a/domains/smitty119.json b/domains/smitty119.json new file mode 100644 index 000000000..7fc864a02 --- /dev/null +++ b/domains/smitty119.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smitty119", + "email": "smittykjohnson@gmail.com" + }, + "record": { + "CNAME": "smitty119.github.io" + } +} diff --git a/domains/smittykjohnson.json b/domains/smittykjohnson.json new file mode 100644 index 000000000..7fc864a02 --- /dev/null +++ b/domains/smittykjohnson.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "smitty119", + "email": "smittykjohnson@gmail.com" + }, + "record": { + "CNAME": "smitty119.github.io" + } +} diff --git a/domains/smoke-etecsa.yoelvd.json b/domains/smoke-etecsa.yoelvd.json deleted file mode 100644 index 6de5e862d..000000000 --- a/domains/smoke-etecsa.yoelvd.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "yoelvd", - "email": "magodeoz.virtual@gmail.com" - }, - "record": { - "CNAME": "srv40118-206152.vps.etecsa.cu" - } - } - diff --git a/domains/smp.json b/domains/smp.json new file mode 100644 index 000000000..193cbd798 --- /dev/null +++ b/domains/smp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zzph", + "email": "johnbrettc@gmail.com" + }, + "record": { + "CNAME": "clear-skies.onrender.com" + } +} diff --git a/domains/smtp.zerow.json b/domains/smtp.zerow.json new file mode 100644 index 000000000..243a05872 --- /dev/null +++ b/domains/smtp.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "CNAME": "zerow.is-a.dev" + } +} diff --git a/domains/smug.json b/domains/smug.json new file mode 100644 index 000000000..ada35c729 --- /dev/null +++ b/domains/smug.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "itsf1ckingsmugg", + "email": "smugwhy420p@outlook.com" + }, + + "record": { + "CNAME": "itsf1ckingsmugg.github.io" + } +} diff --git a/domains/smutex.json b/domains/smutex.json new file mode 100644 index 000000000..4ee10bb87 --- /dev/null +++ b/domains/smutex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Smalorek", + "email": "", + "discord": "286178186645995522" + }, + + "record": { + "CNAME": "smalorek.github.io" + } + } diff --git a/domains/snail.json b/domains/snail.json deleted file mode 100644 index a1d0c19ab..000000000 --- a/domains/snail.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Snail's Site", - "repo": "https://github.com/snaildos/snail.is.dev", - "owner": { - "username": "snaildos", - "email": "snaildos@snaildos.com" - }, - "record": { - "CNAME": "snail-is-dev.pages.dev" - } -} diff --git a/domains/snaildos.json b/domains/snaildos.json deleted file mode 100644 index 70e2c500c..000000000 --- a/domains/snaildos.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Site", - "repo": "https://github.com/snaildos", - "owner": { - "username": "snaildos", - "email": "" - }, - "record": { - "CNAME": "snaildos.tk" - } -} diff --git a/domains/snake.json b/domains/snake.json new file mode 100644 index 000000000..e2c8dec17 --- /dev/null +++ b/domains/snake.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/snbhowmik.json b/domains/snbhowmik.json new file mode 100644 index 000000000..ee3879be0 --- /dev/null +++ b/domains/snbhowmik.json @@ -0,0 +1,15 @@ +{ + "description": "A Portfolio site for my Academic Career", + "repo": "https://github.com/snbhowmik/portfolio", + "owner": { + "username": "snbhowmik", + "linkedin": "https://www.linkedin.com/in/snbhowmik/", + "reddit": "https://www.reddit.com/user/snbhowmik/", + "email": "snbhowmikac@proton.me" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/sneh.json b/domains/sneh.json new file mode 100644 index 000000000..37979668e --- /dev/null +++ b/domains/sneh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "snehasishlol", + "email": "snehasishcodes@gmail.com" + }, + "record": { + "CNAME": "sneh-is-a-dev.pages.dev" + } +} diff --git a/domains/snek.json b/domains/snek.json index 967ad7f1b..8dd9f599f 100644 --- a/domains/snek.json +++ b/domains/snek.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "sn3kdev", - "email": "snektg@gmail.com" - }, - "record": { - "URL": "https://odnako_zmeyka.t.me" - } - } - \ No newline at end of file +{ + "owner": { + "username": "sn3kdev", + "email": "snektg@gmail.com" + }, + "record": { + "URL": "https://odnako_zmeyka.t.me" + } +} diff --git a/domains/snelusha.json b/domains/snelusha.json new file mode 100644 index 000000000..464b2f318 --- /dev/null +++ b/domains/snelusha.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "snelusha", + "email": "nelusha2003@gmail.com", + "discord": "454880214904864776" + }, + + "record": { + "URL": "https://snelusha.dev" + } +} diff --git a/domains/snip.json b/domains/snip.json new file mode 100644 index 000000000..98d15d762 --- /dev/null +++ b/domains/snip.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "realsnipc", + "email": "snipc.mail@proton.me" + }, + "record": { + "URL": "https://snipc.me" + } +} diff --git a/domains/snowsuno.json b/domains/snowsuno.json new file mode 100644 index 000000000..28acd8c07 --- /dev/null +++ b/domains/snowsuno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SnowSuno", + "email": "percy3368@gmail.com" + }, + "record": { + "A": ["89.106.200.1"] + } +} diff --git a/domains/snowy.json b/domains/snowy.json new file mode 100644 index 000000000..ad1fb8ffe --- /dev/null +++ b/domains/snowy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HayBael", + "email": "rakhakhairydarka801@gmail.com" + }, + + "record": { + "URL": "https://homepage-revisiakhir.vercel.app" + } +} diff --git a/domains/snowyid.json b/domains/snowyid.json new file mode 100644 index 000000000..eed2dbf2e --- /dev/null +++ b/domains/snowyid.json @@ -0,0 +1,11 @@ +{ + "description": "I Use For My Homepage", + "repo": "https://github.com/HayBael/Haybael.github.io", + "owner": { + "username": "HayBael", + "email": "botaklicin590@gmail.com" + }, + "record": { + "URL": "https://homepage-revisiakhir.vercel.app" + } +} diff --git a/domains/snox.json b/domains/snox.json deleted file mode 100644 index ca28d4ccf..000000000 --- a/domains/snox.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "snox.codes", - "repo": "https://snox.codes", - "owner": { - "username": "SimplySnox", - "email": "root@snox.codes", - "discord": "snox#0143" - }, - "record": { - "CNAME": "snox.codes" - } -} diff --git a/domains/snozxyx.json b/domains/snozxyx.json new file mode 100644 index 000000000..e9b87a942 --- /dev/null +++ b/domains/snozxyx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Snozxyx", + "email": "gabhastikumar@gmail.com" + }, + "record": { + "CNAME": "snozxyx.github.io" + } +} diff --git a/domains/snupai.json b/domains/snupai.json new file mode 100644 index 000000000..8f571b0cf --- /dev/null +++ b/domains/snupai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Snupai", + "email": "yannluca@naeher.eu" + }, + "record": { + "URL": "https://snupai.me" + } +} diff --git a/domains/snxx.json b/domains/snxx.json deleted file mode 100644 index 7fa670fba..000000000 --- a/domains/snxx.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Personal page of Serzhan Nasredin", - "owner": { - "username": "snxx-lppxx", - "email": "snxx.lppxx@gmail.com" - }, - "record": { - "CNAME": "snxx-lppxx.github.io" - } -} diff --git a/domains/soamtripathy.json b/domains/soamtripathy.json new file mode 100644 index 000000000..c8d575b52 --- /dev/null +++ b/domains/soamtripathy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "soamtripathy", + "email": "soumyaranjantripathy44@outlook.com" + }, + "record": { + "URL": "https://portfolio-tawny-omega-13.vercel.app/" + } +} diff --git a/domains/soap.json b/domains/soap.json new file mode 100644 index 000000000..d01c00e18 --- /dev/null +++ b/domains/soap.json @@ -0,0 +1,11 @@ +{ + "description": "soap.is-a.dev", + "repo": "https://github.com/hmonsterg/hmonsterg.github.io", + "owner": { + "username": "HmonsterG", + "email": "Plzdontgethacked@outlook.com" + }, + "record": { + "CNAME": "hmonsterg.github.io" + } +} diff --git a/domains/socials.chiragnahata.json b/domains/socials.chiragnahata.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/socials.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/socials.m1dnight.json b/domains/socials.m1dnight.json deleted file mode 100644 index 303f8b035..000000000 --- a/domains/socials.m1dnight.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Socials menu in m1dnight's art portfolio", - "repo": "https://m1dnight.is-a.dev/art/3D-Menu-Art/index-3Dmenu.html", - "owner": { - "username": "m1dnight-ofcl", - "email": "m1dnightgmrofficial@gmail.com" - }, - "record": { - "CNAME": "m1dnight.is-a.dev" - } -} diff --git a/domains/soestin.json b/domains/soestin.json new file mode 100644 index 000000000..ebbbce05d --- /dev/null +++ b/domains/soestin.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "soestin", + "email": "", + "discord": "769813729599553567", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Eq_I4GOjlOB5tFdw0gihpb-s5mNrdbVcGGgjqD9T08EXuXhaCt9w-dzK8H12VZdP_PRzdgJe_nMkm5B6qfUrfcr9D1VdfCr_AsxPw39fH3hxmopIRJojj_t0irp-yw6rXC9wTMqdhaqQ1sEs_38sZV5Hnr4UMsuo3QIPimuDFecrVIreelu8yQzf2c0JmOEST4os6iwlK0Xx4HN_sSa2BxA_xddtLsn1LROSeqlba6r4CXfJxVmFEfqcXuW510-yVhg1O6wIVPz5la9FTgK12HYvx3qDnYnC3cJ5V1few5rJP4OeIby6dte7vtx7zuo3vbKkClFojc1Q9j1UmMReDQ.3I8N4rDWvBuPjEWKvognUA.OrICUOylQgkjUUekVYAQpHdJ5v4L68eAC6X69zwPUEZqRe33Xrjsk0OtCWfm-JDleiEIhUxsAuP_R3IMxTRwQA.cguBkKWaJpafBZkI9uKbOg" + }, + + "record": { + "CNAME": "soestin.github.io" + } + } + \ No newline at end of file diff --git a/domains/sohamlol.json b/domains/sohamlol.json deleted file mode 100644 index fc40e2d5f..000000000 --- a/domains/sohamlol.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "TecHCodez", - "email": "soham.mohapatra65@gmail.com" - }, - - "record": { - "A": ["34.122.153.22"] - } - } - \ No newline at end of file diff --git a/domains/sohil876.json b/domains/sohil876.json new file mode 100644 index 000000000..fa30bd33a --- /dev/null +++ b/domains/sohil876.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Sohil876", + "email": "sohil876@gmail.com" + }, + + "record": { + "CNAME": "sohil876.github.io" + } +} diff --git a/domains/solarskripts.json b/domains/solarskripts.json new file mode 100644 index 000000000..099617c21 --- /dev/null +++ b/domains/solarskripts.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SolarSkripts", + "email": "0hexius0@gmail.com" + }, + "record": { + "CNAME": "solarskripts.github.io" + } +} diff --git a/domains/soldierp.json b/domains/soldierp.json new file mode 100644 index 000000000..baef014e4 --- /dev/null +++ b/domains/soldierp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Soldierplayz6867", + "email": "soldierplayz.tw@gmail.com" + }, + "record": { + "CNAME": "da-1.us.hostns.io" + } +} diff --git a/domains/somenicetables.json b/domains/somenicetables.json index f8c21d39b..0824f2025 100644 --- a/domains/somenicetables.json +++ b/domains/somenicetables.json @@ -1,12 +1,12 @@ { - "description": "My personal about me page", - "repo": "https://github.com/somenicetables/somenicetables.github.io", - "owner": { - "username": "somenicetables", - "email": "themadman2215@gmail.com", - "twitter": "15usernamelimit" - }, - "record": { - "CNAME": "somenicetables.github.io" - } -} + "description": "My personal about me page", + "repo": "https://github.com/somenicetables/somenicetables.github.io", + "owner": { + "username": "somenicetables", + "email": "themadman2215@gmail.com", + "twitter": "15usernamelimit" + }, + "record": { + "CNAME": "somenicetables.github.io" + } +} diff --git a/domains/somyadipghosh.json b/domains/somyadipghosh.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/somyadipghosh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/son.json b/domains/son.json index 52c531962..bc4507b04 100644 --- a/domains/son.json +++ b/domains/son.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "sonphantrung", + "email": "phantrungson17@gmail.com" + }, - { - "owner": { - "username": "sonphantrung", - "email": "phantrungson17@gmail.com" - }, - - "record": { - "CNAME": "sonphantrung.github.io" - } - } - + "record": { + "CNAME": "sonphantrung.github.io" + } +} diff --git a/domains/sonet.json b/domains/sonet.json deleted file mode 100644 index 804b8f76c..000000000 --- a/domains/sonet.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "description": "This is my personal Website of portfolio", - "repo": "https://github.com/CoderSoNet/codersonetwebsite.github.io", - "owner": { - "username": "CoderSoNet", - "email": "support@sonet.is-a.dev", - "twitter": "ShanuUniyal_On", - "discord": "781127625263415326" - }, - "record": { - "A": ["34.149.204.188"], - "TXT": "v=spf1 a mx include:_spf.elasticemail.com ~all" - } -} diff --git a/domains/soni-aakas.json b/domains/soni-aakas.json new file mode 100644 index 000000000..31afaa92b --- /dev/null +++ b/domains/soni-aakas.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/soni-aakas/soni-aakas.gihub.io", + "owner": { + "username": "soni-aakas", + "email": "soni.aakas@truestaz.com" + }, + "record": { + "URL": "https://soni-aakas.github.io" + } +} diff --git a/domains/sonicx180.json b/domains/sonicx180.json deleted file mode 100644 index 6fa70727e..000000000 --- a/domains/sonicx180.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "repo": "https://github.com/sonicx180/website", - "owner": { - "username": "sonicx180", - "email": "chetanzeogu410@gmail.com" - }, - "record": { - "CNAME": "0146e66a-6183-424c-85bd-b240bea14f14.id.repl.co" - } -} diff --git a/domains/sono.json b/domains/sono.json new file mode 100644 index 000000000..626794992 --- /dev/null +++ b/domains/sono.json @@ -0,0 +1,22 @@ +{ + "owner": { + "username": "getSono", + "email": "sono.arbeit@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com." + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all", + "google-site-verification=F90R7qQ2_fVCwUljDPq9iPlyzzKs7-4XovZLDeNAvns" + ] + } +} diff --git a/domains/soothe.json b/domains/soothe.json new file mode 100644 index 000000000..dfb34e483 --- /dev/null +++ b/domains/soothe.json @@ -0,0 +1,12 @@ +{ + "description": "Soothe.is-a.dev", + "repo": "https://github.com/soothe-bot/soothe-bot.github.io", + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com", + "discord": "romanromannya" + }, + "record": { + "CNAME": "soothe-bot.github.io" + } +} diff --git a/domains/sophie.json b/domains/sophie.json new file mode 100644 index 000000000..15cbe9666 --- /dev/null +++ b/domains/sophie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "awne8886", + "email": "sophie@awne.xyz" + }, + "record": { + "CNAME": "sophie-github-io.pages.dev" + } +} diff --git a/domains/sotoyer.json b/domains/sotoyer.json new file mode 100644 index 000000000..40101d476 --- /dev/null +++ b/domains/sotoyer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "carlos-perez-16003", + "email": "cvalle2soto@gmail.com" + }, + "record": { + "URL": "https://sotoyer.dcms.site/" + } +} diff --git a/domains/sotto.json b/domains/sotto.json new file mode 100644 index 000000000..8d8cf68c3 --- /dev/null +++ b/domains/sotto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RaydanOMGr", + "email": "andreykelbler@outlook.de" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/soulfulkrishna.json b/domains/soulfulkrishna.json new file mode 100644 index 000000000..d268d9fa3 --- /dev/null +++ b/domains/soulfulkrishna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ecstaticsoul", + "email": "soulfulkrishna@gmail.com" + }, + "record": { + "CNAME": "ecstaticsoul.github.io" + } +} diff --git a/domains/soumo.json b/domains/soumo.json new file mode 100644 index 000000000..4e35b2fdd --- /dev/null +++ b/domains/soumo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sourayen", + "email": "soumodas4536@gmail.com" + }, + "record": { + "URL": "https://sourayen.github.io" + } +} diff --git a/domains/sourav.json b/domains/sourav.json new file mode 100644 index 000000000..ba35e6f15 --- /dev/null +++ b/domains/sourav.json @@ -0,0 +1,12 @@ +{ + "description": "My Website", + "repo": "https://github.com/itzsouravkumar/itzsouravkumar.github.io", + "owner": { + "username": "itzsouravkumar", + "discord": "quipxninja", + "email": "oyesourav05012006@gmail.com" + }, + "record": { + "CNAME": "itzsouravkumar.github.io" + } +} diff --git a/domains/sourov-khan-nahid.json b/domains/sourov-khan-nahid.json new file mode 100644 index 000000000..2acefc029 --- /dev/null +++ b/domains/sourov-khan-nahid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SOUROVKHANNAHID", + "email": "SourovKhanNahid@gmail.com" + }, + "record": { + "CNAME": "SOUROVKHANNAHID.github.io" + } +} diff --git a/domains/sourtaste000.json b/domains/sourtaste000.json deleted file mode 100644 index d27030fbd..000000000 --- a/domains/sourtaste000.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "sourTaste000", - "email": "sourtaste000@gmail.com" - }, - "record": { - "URL": "https://sourtaste000.dev" - } -} diff --git a/domains/sow.json b/domains/sow.json new file mode 100644 index 000000000..f59aa47ab --- /dev/null +++ b/domains/sow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sowisgone", + "email": "therealsnowmercy@gmail.com" + }, + "record": { + "URL": "https://sow.lol" + } +} diff --git a/domains/sowmik.json b/domains/sowmik.json new file mode 100644 index 000000000..0a0159f46 --- /dev/null +++ b/domains/sowmik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sowmiksudo", + "email": "Xowmik@gmail.com" + }, + "record": { + "CNAME": "sowmiksudo.github.io" + } +} diff --git a/domains/space.json b/domains/space.json deleted file mode 100644 index 4bfa40cb2..000000000 --- a/domains/space.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "My site", - "owner": { - "username": "StalkerMeyr", - "email": "andchit223@gmail.com" - }, - "record": { - "A": ["148.251.26.247"] - } -} diff --git a/domains/spacecraft.hexaa.json b/domains/spacecraft.hexaa.json new file mode 100644 index 000000000..a256c7d8a --- /dev/null +++ b/domains/spacecraft.hexaa.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "hexaaagon", + "email": "me@hexagonn.my.id", + "discord": "scoooolzs", + "twitter": "Scoooolzs" + }, + + "record": { + "URL": "https://spacecraft.hexagonn.my.id" + } +} diff --git a/domains/spark.json b/domains/spark.json new file mode 100644 index 000000000..3ddd95fdd --- /dev/null +++ b/domains/spark.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ChiliDain1010", + "email": "", + "discord": "1109163497750802462", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a1DqPTklDs-2Pu4OOKzLfBPbHfoilro77qUPjY57bewAt0gd6S5QMW9ZM88ueP7Hvs7vWsEpHhKD6WV71cJxOGUbukp3cpQ7RBngs6SqIqqx70JM7WCxrkqMBnDBSOTFc85pvLkUA1LrPNXSs0dO7eZjg1y_xEarEYc5YRg9FvNqVYSJplCHrzIsMM4vbKFfEuu6k2iH1Rc7DC7JwcL7CGJz7mBfXwFI3AzJLPFXQK_2UTrxsmEGB01zaiGUFhLADTZowYQr-7bMV3zHFPGjB4T2p3kA0rkPCdLMu2-HU9sEe4LFBwoVvNq3ScYXUGkYlogqgA4cpPyCcgfWhI-EVw.0jfJ04_4N43xpTDFxcPEOw.PlLGeBJMh_exOEGKjCTaIQxrm2KwBfgchUgGgPirNwdeD80LzKr06oNPPqPL-jDzqllqGmC2u4fZzXfelHhwJ0w39vy3NkfcmKX6HsrLsYo.1KjSvNP6uVPg_60QLX4swQ" + }, + + "record": { + "CNAME": "spark-bypass.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/sparkos.json b/domains/sparkos.json new file mode 100644 index 000000000..8abce667e --- /dev/null +++ b/domains/sparkos.json @@ -0,0 +1,10 @@ +{ + "owner": { + "discord": "winbo.py", + "username": "winbo-yml-exe", + "email": "winbo.yml@proton.me" + }, + "record": { + "CNAME": "sparkos-win.github.io" + } +} diff --git a/domains/spaxly.json b/domains/spaxly.json new file mode 100644 index 000000000..909f32fc8 --- /dev/null +++ b/domains/spaxly.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "Spaxly", + "email": "ohmrc2545@gmail.com", + "discord": "569920282546929694" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + + "TXT": "forward-email=ohmrc2545@gmail.com" + } +} diff --git a/domains/spechide.json b/domains/spechide.json index fb206cfd4..18aa013cf 100644 --- a/domains/spechide.json +++ b/domains/spechide.json @@ -10,4 +10,3 @@ "CNAME": "SpEcHiDe.github.io" } } - diff --git a/domains/spectra.json b/domains/spectra.json index 97a01646d..0caadc8fe 100644 --- a/domains/spectra.json +++ b/domains/spectra.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "SpectraTheFox", - "email": "spectra@spectrathefox.xyz" - }, - "record": { - "URL": "https://spectrathefox.xyz" - } - } - +{ + "owner": { + "username": "SpectraTheFox", + "email": "spectra@spectrathefox.xyz" + }, + "record": { + "URL": "https://spectrathefox.xyz" + } +} diff --git a/domains/spectranow.json b/domains/spectranow.json new file mode 100644 index 000000000..f12583b66 --- /dev/null +++ b/domains/spectranow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "booktastic1", + "email": "booktastic-library@outlook.com" + }, + "record": { + "URL": "https://btastic.wixsite.com/spectra" + } +} diff --git a/domains/speedie.json b/domains/speedie.json index 9ad7bd655..b8d56af7c 100644 --- a/domains/speedie.json +++ b/domains/speedie.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "speediegq", - "email": "speedie.alt@gmail.com" - }, - "record": { - "URL": "https://speedie.gq" - } - } - \ No newline at end of file +{ + "owner": { + "username": "speediegq", + "email": "speedie.alt@gmail.com" + }, + "record": { + "URL": "https://speedie.gq" + } +} diff --git a/domains/spicy.json b/domains/spicy.json new file mode 100644 index 000000000..d86016f3e --- /dev/null +++ b/domains/spicy.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "oyepriyansh", + "email": "oyepriyansh@hotmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/spicydevs.json b/domains/spicydevs.json new file mode 100644 index 000000000..5a57cd717 --- /dev/null +++ b/domains/spicydevs.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "OpAayush", + "email": "aayushmagrawal@gmail.com", + "twitter": "DevAayu5h" + }, + "record": { + "CNAME": "spicydevs.pages.dev" + } +} diff --git a/domains/spidey.json b/domains/spidey.json new file mode 100644 index 000000000..2fb24fc6e --- /dev/null +++ b/domains/spidey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zepip", + "email": "zigzaglm13@proton.me" + }, + "record": { + "CNAME": "zepip.github.io" + } +} diff --git a/domains/spidy.json b/domains/spidy.json new file mode 100644 index 000000000..c8b15471b --- /dev/null +++ b/domains/spidy.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "SpidyWeeb", + "email": "mrspidy32@outlook.in" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/spixed.json b/domains/spixed.json new file mode 100644 index 000000000..7ec4e62f4 --- /dev/null +++ b/domains/spixed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Spixed", + "email": "Space369X@163.com" + }, + "record": { + "CNAME": "spixed.github.io" + } +} diff --git a/domains/splack.json b/domains/splack.json new file mode 100644 index 000000000..9f0eb49b3 --- /dev/null +++ b/domains/splack.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "splack01", + "email": "splack1@protonmail.com" + }, + "record": { + "CNAME": "splack01.github.io" + } +} diff --git a/domains/splatterxl.json b/domains/splatterxl.json deleted file mode 100644 index 0c1ec8990..000000000 --- a/domains/splatterxl.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Splatterxl's very cool site", - "repo": "https://github.com/splatterxl/splatterxl.github.io", - "owner": { - "username": "splatterxl", - "email": "splatterxl@outlook.ie", - "twitter": "splatterxlisdum" - }, - "record": { - "CNAME": "splatterxl.github.io" - } -} diff --git a/domains/spongly.json b/domains/spongly.json index aac0f77f1..663a40a44 100644 --- a/domains/spongly.json +++ b/domains/spongly.json @@ -1,11 +1,11 @@ { - "description": "Spongly's Personal Site", - "repo": "https://github.com/spongly/spongly.github.io", - "owner": { - "username": "spongly", - "email": "mail.spongly@gmail.com" - }, - "record": { - "CNAME": "spongly.github.io" - } -} + "description": "Spongly's Personal Site", + "repo": "https://github.com/spongly/spongly.github.io", + "owner": { + "username": "spongly", + "email": "mail.spongly@gmail.com" + }, + "record": { + "CNAME": "spongly.github.io" + } +} diff --git a/domains/spotify.stefdp.json b/domains/spotify.stefdp.json new file mode 100644 index 000000000..13881f84f --- /dev/null +++ b/domains/spotify.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/spotify.trung.json b/domains/spotify.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/spotify.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/spotify.vornexx.json b/domains/spotify.vornexx.json new file mode 100644 index 000000000..54d480661 --- /dev/null +++ b/domains/spotify.vornexx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vornex-gh", + "email": "", + "discord": "1149438819834269856", + "twitter": "vornexx_" + }, + "record": { + "CNAME": "spotify-vornexx.pages.dev" + } +} diff --git a/domains/sppidy.json b/domains/sppidy.json new file mode 100644 index 000000000..5bc00658e --- /dev/null +++ b/domains/sppidy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sppidy", + "email": "ramshourieshr@gmail.com" + }, + + "record": { + "CNAME": "sppidy.github.io" + } +} diff --git a/domains/spud.json b/domains/spud.json index 07811ea16..2eb45d05a 100644 --- a/domains/spud.json +++ b/domains/spud.json @@ -1,6 +1,6 @@ { "description": "My own personal portfolio as a developer", - "repo": "https://github.com/MrPotato30/mrotato30.github.io", + "repo": "https://github.com/MrPotato30/mrotato30.github.io", "owner": { "username": "mrpotato30", "email": "fahrelrizal08@gmail.com" diff --git a/domains/sputnick567.json b/domains/sputnick567.json index 1fc17b458..087ca5403 100644 --- a/domains/sputnick567.json +++ b/domains/sputnick567.json @@ -1,11 +1,10 @@ { - - "repo": "https://github.com/sputnick567/sputnick567.github.io", - "owner": { - "username": "sputnick567", - "email": "567sputnick@gmail.com" - }, - "record": { - "CNAME": "sputnick567.github.io" - } -} + "repo": "https://github.com/sputnick567/sputnick567.github.io", + "owner": { + "username": "sputnick567", + "email": "567sputnick@gmail.com" + }, + "record": { + "CNAME": "sputnick567.github.io" + } +} diff --git a/domains/spydea.json b/domains/spydea.json new file mode 100644 index 000000000..66ee242dd --- /dev/null +++ b/domains/spydea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "spydea", + "email": "ymkose5534@gmail.com" + }, + "record": { + "URL": "https://spydea.blogspot.com" + } +} diff --git a/domains/spyminer.json b/domains/spyminer.json deleted file mode 100644 index 176fc6bc0..000000000 --- a/domains/spyminer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "SpyMiner's website", - "repo": "https://github.com/SpyMinerX/SpyMinerX.github.io", - "owner": { - "username": "SpyMinerX", - "email": "spyminer@glacierclient.net" - }, - "record": { - "CNAME": "isadev.engelbrecht.pro" - } -} diff --git a/domains/spyrisk.json b/domains/spyrisk.json new file mode 100644 index 000000000..9ccaf0316 --- /dev/null +++ b/domains/spyrisk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SpauriRosso", + "email": "spy456@zoho.com" + }, + "record": { + "URL": "https://spyrisk.fr" + } +} diff --git a/domains/sq.json b/domains/sq.json new file mode 100644 index 000000000..038ca396c --- /dev/null +++ b/domains/sq.json @@ -0,0 +1,12 @@ +{ + "description": "sqec's website", + "owner": { + "username": "SquareScreamYT", + "repo": "https://github.com/SquareScreamYT", + "discord": "918475812884344852", + "email": "" + }, + "record": { + "CNAME": "squarescreamyt.github.io" + } +} diff --git a/domains/sqlmerr.json b/domains/sqlmerr.json new file mode 100644 index 000000000..b46721a49 --- /dev/null +++ b/domains/sqlmerr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sqlmerr", + "email": "sqlmerr@ya.ru" + }, + "record": { + "URL": "https://sqlmerr.vercel.app" + } +} diff --git a/domains/sr1kanth.json b/domains/sr1kanth.json new file mode 100644 index 000000000..9e83d7c84 --- /dev/null +++ b/domains/sr1kanth.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "sr1kanth-dev", + "email": "", + "discord": "1280109808694984775", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.hjW7xnc_x_NlMZEIpOWYRGSpw07LyaN81z6nlJzWY61qa7xL_IhBum2zgVIQelmsioSdcNVZFNRRFQsekHHDI8ZJstW8u0_ztT-HNDIx85CAjiteIwZIs2Uqkmt57LOhJBTd_72wBTB08tCrhDn2qUcl-yWbM3gG87LgWIL5FBxzu2XmvJwa-96-Iqm_NAr8zkeQPcbQ6_3mybU1s2o_bGGAONYojyIEc2E2IfJi025wKV8vvISrAo5wsL6WUAeXrMzpiGKkII64p1CyMU2PxJVWx9zKbCYjOu96wdx0H-3gzncEMSeLJuOENwN_BhSYgyh4iEEiRKHhXfbIn79rYA.28g8KI618s4Frpmf5WQcFw.nQ-mYLSUO17tk_zubLYdMG3E3tTL_KS3K2qlvJNYaovez8MlcqKLHUT6ji2BPsg34vAfvhUyC0B_5aRYq86lc2oVtGr6ubwiey6ulK5NLwc.7QmfIFZE_u2vD5a5uGx60A" + }, + + "record": { + "CNAME": "sr1kanth-dev.github.io" + } + } + \ No newline at end of file diff --git a/domains/srlebel.json b/domains/srlebel.json new file mode 100644 index 000000000..f30775358 --- /dev/null +++ b/domains/srlebel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SrLebel", + "email": "dev.juansimancas@proton.me" + }, + "record": { + "URL": "https://srlebel.netlify.app/" + } +} diff --git a/domains/srm.json b/domains/srm.json new file mode 100644 index 000000000..3b29ea633 --- /dev/null +++ b/domains/srm.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "srmlab002", + "email": "8zaqibue@duck.com" + }, + "record": { + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=lyen8rxu@duck.com,8zaqibue@duck.com" + } +} diff --git a/domains/srn.json b/domains/srn.json index 36b6c4bef..4dc0e863d 100644 --- a/domains/srn.json +++ b/domains/srn.json @@ -1,4 +1,3 @@ - { "owner": { "username": "ilz5753", @@ -8,4 +7,3 @@ "URL": "https://github.com/ilz5753/ilz5753.github.io" } } - \ No newline at end of file diff --git a/domains/ss.almaz.json b/domains/ss.almaz.json new file mode 100644 index 000000000..cc9550154 --- /dev/null +++ b/domains/ss.almaz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AlmaziikDev", + "email": "admin@almaz.is-a.dev" + }, + "record": { + "CNAME": "proxy.weissx.net" + } +} diff --git a/domains/ss.json b/domains/ss.json new file mode 100644 index 000000000..76fe3109f --- /dev/null +++ b/domains/ss.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "OpAayush", + "email": "aayush.agrawalm@gmail.com" + }, + "description": "mail domain", + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/ss.stefdp.json b/domains/ss.stefdp.json new file mode 100644 index 000000000..9f2b1dbbb --- /dev/null +++ b/domains/ss.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/ss.xcyth.json b/domains/ss.xcyth.json new file mode 100644 index 000000000..b729a82f2 --- /dev/null +++ b/domains/ss.xcyth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Xcyth", + "email": "ritam.choudhuri@gmail.com" + }, + "record": { + "CNAME": "proxy.private.danbot.host" + } +} diff --git a/domains/ssapp.json b/domains/ssapp.json new file mode 100644 index 000000000..2ba3469ea --- /dev/null +++ b/domains/ssapp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ssapp", + "email": "v.naydenov@icloud.com" + }, + "record": { + "CNAME": "tarkov-time.com" + } +} diff --git a/domains/ssmidge.json b/domains/ssmidge.json deleted file mode 100644 index 3f1b82978..000000000 --- a/domains/ssmidge.json +++ /dev/null @@ -1,12 +0,0 @@ - -{ - "description": "Ssmidge", - "repo": "https://github.com/Ssmidge/register", - "owner": { - "username": "Ssmidge", - "email": "Ssmidgemc@gmail.com" - }, - "record": { - "CNAME": "ssmidge.xyz" - } -} diff --git a/domains/sstudiosdev.json b/domains/sstudiosdev.json new file mode 100644 index 000000000..893f05cf9 --- /dev/null +++ b/domains/sstudiosdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sstudiosdev", + "email": "sstudiosdev@gmail.com" + }, + "record": { + "CNAME": "sstudiosdev.github.io" + } +} diff --git a/domains/stacksyz.json b/domains/stacksyz.json new file mode 100644 index 000000000..da0a83773 --- /dev/null +++ b/domains/stacksyz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Stacksyz", + "email": "thedevmonke@gmail.com" + }, + "record": { + "CNAME": "stacksyz.github.io" + } +} diff --git a/domains/staff.json b/domains/staff.json deleted file mode 100644 index 6ae9fc5d3..000000000 --- a/domains/staff.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, - "record": { - "CNAME": "is-a-dev-maintainers.pages.dev" - } -} diff --git a/domains/stan.json b/domains/stan.json new file mode 100644 index 000000000..29a1e6bc4 --- /dev/null +++ b/domains/stan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "stansters", + "email": "stanleygeorgebond@gmail.com" + }, + "record": { + "A": ["132.145.22.92"] + } +} diff --git a/domains/star.json b/domains/star.json index 51d95f92c..73c57e958 100644 --- a/domains/star.json +++ b/domains/star.json @@ -1,11 +1,11 @@ { - "description": "About website", - "repo": "https://github.com/stardust-kyun/stardust-kyun.github.io", - "owner": { - "username": "stardust-kyun", - "email": "stardust-kyun@proton.me" - }, - "record": { - "CNAME": "stardust-kyun.github.io" - } + "description": "About website", + "repo": "https://github.com/stardust-kyun/stardust-kyun.github.io", + "owner": { + "username": "stardust-kyun", + "email": "stardust-kyun@proton.me" + }, + "record": { + "CNAME": "stardust-kyun.github.io" + } } diff --git a/domains/stardust.json b/domains/stardust.json new file mode 100644 index 000000000..97be8fadf --- /dev/null +++ b/domains/stardust.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hanzla-Double3", + "email": "Hanzla.mughal3284@gmail.com" + }, + "record": { + "A": ["139.135.52.143"] + } +} diff --git a/domains/starnumber.json b/domains/starnumber.json index 1080ece73..523cf2832 100644 --- a/domains/starnumber.json +++ b/domains/starnumber.json @@ -5,5 +5,7 @@ "username": "starnumber12046", "email": "starnumber.official12046@gmail.com" }, - "record": {"CNAME": "hashnode.network"} + "record": { + "CNAME": "hashnode.network" + } } diff --git a/domains/starshine.json b/domains/starshine.json new file mode 100644 index 000000000..98cba1276 --- /dev/null +++ b/domains/starshine.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "thaddeuskkr", + "email": "", + "discord": "275830234262142978", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lLFfIW3EiPjgK-i-I5E56ERBvjl-ueM91PRyYM6wRClZzuoAj4nQyqL57dSZjhO_4Hbu4ZubbM1I_NI8Vt4_SlsFmxgL-hrvH9tf7rv-hX-TZtBWT_LQQUmhd1ZViGwELTly797M8VXZ39ER2gDmzruxjh8eQEHBCeJujWuUNicigehUgfk-Pk9rSchVlR3TUcwL-wylY58KvBLQwIeMmqUW2qs_E_iKCwk_8FQH-IUb_4W58r6wBHh6MqiP72Py9ssDbxrV59e1eGrQZXYJJM1rUZHoHzW1KX84FgT0QCGc1cSiV-Sdc3p6WceRY6Tf1akfTNjuga61kpgzluoTxg.QwFk8iYMpzefwXgErTr9cQ.kwMwAIrFDxCKfvSxx3Jpvb6ZkiFcp56BFoBg7KQMsYw4PBK60JNzjpMpgMqZ7jymnYJFTz5img3xLlxBF7UuUy_Z9MgHCHaVR3W7970smoQ.aBJoeQFaHiIyXkpQa1Gx7g" + }, + + "record": { + "A": ["138.2.70.1"] + } +} diff --git a/domains/stats.trung.json b/domains/stats.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/stats.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/status-ryo.json b/domains/status-ryo.json new file mode 100644 index 000000000..c43440b7b --- /dev/null +++ b/domains/status-ryo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrosGaming", + "email": "dgfrosdgfros@gmail.com" + }, + "record": { + "A": ["69.197.135.203"] + } +} diff --git a/domains/status.6.json b/domains/status.6.json new file mode 100644 index 000000000..947bf4219 --- /dev/null +++ b/domains/status.6.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "URL": "https://status.shockbs.is-a.dev/" + } +} diff --git a/domains/status.alora.json b/domains/status.alora.json new file mode 100644 index 000000000..52c1db3de --- /dev/null +++ b/domains/status.alora.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "xaloramia@gmail.com", + "discord": "1236292707371057216" + }, + "record": { + "CNAME": "uptimeflare-918.pages.dev" + } +} diff --git a/domains/status.cfp.json b/domains/status.cfp.json index d8c7f04fe..965d2cef9 100644 --- a/domains/status.cfp.json +++ b/domains/status.cfp.json @@ -1,11 +1,11 @@ { - "description": "Cfp Status", - "owner": { - "username": "cfpwastaken", - "email": "", - "discord": "cfp#7174" - }, - "record": { - "CNAME": "cfp.gotdns.ch" - } -} \ No newline at end of file + "description": "Cfp Status", + "owner": { + "username": "cfpwastaken", + "email": "", + "discord": "cfp (318394797822050315)" + }, + "record": { + "CNAME": "dyn.picoscratch.de" + } +} diff --git a/domains/status.chriscoding.json b/domains/status.chriscoding.json new file mode 100644 index 000000000..b12e583c0 --- /dev/null +++ b/domains/status.chriscoding.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BestGithubUser1", + "email": "githubuserlol333@gmail.com", + "discord": "735578614476570726" + }, + + "record": { + "CNAME": "statuspage.betteruptime.com" + } +} diff --git a/domains/status.ciaobot.json b/domains/status.ciaobot.json new file mode 100644 index 000000000..c4456c116 --- /dev/null +++ b/domains/status.ciaobot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Ciao287", + "email": "", + "discord": "687333016921440317" + }, + "record": { + "A": ["144.91.115.195"] + } +} diff --git a/domains/status.gattinhosbot.json b/domains/status.gattinhosbot.json new file mode 100644 index 000000000..13881f84f --- /dev/null +++ b/domains/status.gattinhosbot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/status.json b/domains/status.json deleted file mode 100644 index 7fafca793..000000000 --- a/domains/status.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" - }, - "record": { - "URL": "https://stats.uptimerobot.com/zY4XKIRVzw" - } -} diff --git a/domains/status.mousemoosz.json b/domains/status.mousemoosz.json deleted file mode 100644 index dcbda452d..000000000 --- a/domains/status.mousemoosz.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "For statuspage", - "owner": { - "username": "MouseMoosz", - "email": "mousemoosz@protonmail.com" - }, - "record": { - "CNAME": "mousemoosz.statuspage.io" - } -} diff --git a/domains/status.shan.json b/domains/status.shan.json new file mode 100644 index 000000000..71bed96fe --- /dev/null +++ b/domains/status.shan.json @@ -0,0 +1,11 @@ +{ + "description": "My Uptime Page ", + "owner": { + "username": "Adwaith-Shan-Pk", + "email": "mail@shan.is-a.dev", + "twitter": "lordlinux69" + }, + "record": { + "A": ["69.197.135.202"] + } +} diff --git a/domains/status.shockbs.json b/domains/status.shockbs.json new file mode 100644 index 000000000..e1aecf8ea --- /dev/null +++ b/domains/status.shockbs.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "CNAME": "bbbsjsijb8hsbsnakkshdbfdnds.onrender.com" } +} diff --git a/domains/status.stefdp.json b/domains/status.stefdp.json new file mode 100644 index 000000000..13881f84f --- /dev/null +++ b/domains/status.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/status.trung.json b/domains/status.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/status.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/status.xrap1dx.json b/domains/status.xrap1dx.json new file mode 100644 index 000000000..475702775 --- /dev/null +++ b/domains/status.xrap1dx.json @@ -0,0 +1,11 @@ +{ + "description": "making my status page!!!", + "repo": "https://github.com/xrap1dx?tab=repositories", + "owner": { + "username": "xrap1dx", + "email": "sirrapid155@gmail.com" + }, + "record": { + "CNAME": "statuspage.betteruptime.com" + } +} diff --git a/domains/stavkv.json b/domains/stavkv.json new file mode 100644 index 000000000..89d5833b2 --- /dev/null +++ b/domains/stavkv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "stavkv", + "email": "singhvikal891@gmail.com" + }, + "record": { + "CNAME": "stavkv.github.io" + } +} diff --git a/domains/stef.json b/domains/stef.json new file mode 100644 index 000000000..a5e2f30c1 --- /dev/null +++ b/domains/stef.json @@ -0,0 +1,13 @@ +{ + "description": "Just a link to my portfolio", + "repo": "https://stefcodes.co.uk", + "owner": { + "username": "stefcoders", + "email": "stefan@stefcodes.co.uk" + }, + "record": { + "A": [ + "45.84.57.2" + ] + } +} diff --git a/domains/stefan.json b/domains/stefan.json new file mode 100644 index 000000000..1d0e13980 --- /dev/null +++ b/domains/stefan.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "DynoW", + "email": "naffets0@gmail.com", + "discord": "455608238335983617" + }, + "record": { + "URL": "https://dyno.is-a.dev", + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": [ + "forward-email=naffets0@gmail.com", + "v=spf1 a mx include:spf.forwardemail.net include:_spf.google.com -all" + ] + } +} diff --git a/domains/stefdp.json b/domains/stefdp.json index 66efff633..d301d97a5 100644 --- a/domains/stefdp.json +++ b/domains/stefdp.json @@ -1,12 +1,15 @@ { - "description": "Domain for my personal website", - "repo": "https://github.com/Stef-00012/stef-00012.github.io", - "owner": { - "username": "Stef-00012", - "email": "stefano.delprete.08@gmail.com", - "twitter": "Stef_Del_Prete" - }, - "record": { - "CNAME": "stef-00012.github.io" - } -} + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "A": [ + "194.60.201.37" + ], + "MX": ["mail.stefdp.lol"], + "TXT": ["v=spf1 mx ~all"] + } +} diff --git a/domains/stephen-adeniji.json b/domains/stephen-adeniji.json new file mode 100644 index 000000000..b8285e8bf --- /dev/null +++ b/domains/stephen-adeniji.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Praizee", + "email": "praiseadeniji2017@gmail.com" + }, + "record": { + "CNAME": "nextjs-portfolio-4jp.pages.dev" + } +} diff --git a/domains/stev.json b/domains/stev.json new file mode 100644 index 000000000..16eda6680 --- /dev/null +++ b/domains/stev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yoomiraa", + "email": "i@miraaaa.my.id", + "discord": "834618584331190343" + }, + + "record": { + "CNAME": "stev.surge.sh" + } +} diff --git a/domains/stevenle.json b/domains/stevenle.json new file mode 100644 index 000000000..b47469abe --- /dev/null +++ b/domains/stevenle.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "steeevin88", + "email": "stevenleusa79@yahoo.com", + "discord": "237307564419842050" + }, + "record": { + "CNAME": "sle-portfolio.vercel.app" + } +} diff --git a/domains/stiforr.json b/domains/stiforr.json deleted file mode 100644 index bc81cfe38..000000000 --- a/domains/stiforr.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "stiforr", - "email": "norwood.sean@gmail.com" - }, - "record": { - "CNAME": "stiforr.com" - } -} diff --git a/domains/stoltz.json b/domains/stoltz.json new file mode 100644 index 000000000..df6feaa57 --- /dev/null +++ b/domains/stoltz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "stoltz-dev", + "email": "rafaelbraun5@hotmail.com" + }, + "repo": "https://github.com/stoltz-dev/stoltz-dev.github.io", + "record": { + "CNAME": "stoltz-dev.github.io" + } +} diff --git a/domains/stoneleaf-dh.json b/domains/stoneleaf-dh.json new file mode 100644 index 000000000..30f3b430e --- /dev/null +++ b/domains/stoneleaf-dh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NazerMohamed", + "email": "NazerMohamed@gmail.com" + }, + "record": { + "A": ["51.89.94.232"] + } +} diff --git a/domains/store.json b/domains/store.json new file mode 100644 index 000000000..e2c8dec17 --- /dev/null +++ b/domains/store.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/str1ke.json b/domains/str1ke.json deleted file mode 100644 index 3377e2205..000000000 --- a/domains/str1ke.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "RealStr1ke", - "email": "tmenelas@outlook.com" - }, - - "record": { - "CNAME": "str1ke.codes" - } - } - diff --git a/domains/strafe.json b/domains/strafe.json new file mode 100644 index 000000000..c16e510b0 --- /dev/null +++ b/domains/strafe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "StrafeCode", + "email": "strafecode@gmail.com", + "discord": "931243168630972516" + }, + + "record": { + "CNAME": "strafecode.github.io" + } +} diff --git a/domains/stremioaddonlt.json b/domains/stremioaddonlt.json new file mode 100644 index 000000000..91a9e9129 --- /dev/null +++ b/domains/stremioaddonlt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "makufelis", + "email": "coinbasedeivuxo@gmail.com" + }, + "record": { + "A": ["185.192.97.1"] + } +} diff --git a/domains/strider-studios.json b/domains/strider-studios.json new file mode 100644 index 000000000..0044efd11 --- /dev/null +++ b/domains/strider-studios.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheRealStrider", + "email": "starwars3805@gmail.com" + }, + "record": { + "CNAME": "therealstrider.github.io" + } +} diff --git a/domains/struc.api.badboy.json b/domains/struc.api.badboy.json deleted file mode 100644 index df47f40f8..000000000 --- a/domains/struc.api.badboy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "https://badboy.is-a.dev/ redirector", - "owner": { - "username": "bad-boy-codes", - "email": "contact@mail.badboy.is-a.dev" - }, - "record": { - "CNAME": "1c1cdaeb-374d-4273-bd14-b7e96b091f72.id.repl.co" - } -} diff --git a/domains/sty.json b/domains/sty.json new file mode 100644 index 000000000..ddeb0e10c --- /dev/null +++ b/domains/sty.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "Sty928", + "email": "satyam99jha@gmail.com" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/styy.json b/domains/styy.json new file mode 100644 index 000000000..9a9388f1f --- /dev/null +++ b/domains/styy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Sty928", + "email": "satyam99jha@gmail.com" + }, + + "record": { + "A": ["161.97.137.17"] + } +} diff --git a/domains/sua.json b/domains/sua.json new file mode 100644 index 000000000..5f5084bdd --- /dev/null +++ b/domains/sua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SamiaIslamSua", + "email": "SamiaIslamSua@gmail.com" + }, + "record": { + "CNAME": "SamiaIslamSua.github.io" + } +} diff --git a/domains/sub.any.json b/domains/sub.any.json new file mode 100644 index 000000000..2b07d877c --- /dev/null +++ b/domains/sub.any.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "IRDMctorl", + "email": "fun64646969@gmail.com" + }, + "record": { + "CNAME": "sub.any-w1a3.onrender.com" + } +} diff --git a/domains/subasi.json b/domains/subasi.json new file mode 100644 index 000000000..6ba35654f --- /dev/null +++ b/domains/subasi.json @@ -0,0 +1,16 @@ +{ + "description": "For a personnal portfolio", + "repo": "https://github.com/mhmmdlsubasi/mhmmdlsubasi.github.io", + "owner": { + "username": "mhmmdlsubasi", + "email": "mhmmdlsubasi@outlook.com", + "discord": "319735026625413132", + "twitter": "mhmmdlsubasi", + "instagram": "mhmmdlsubasi" + }, + + "record": { + "CNAME": "mhmmdlsubasi.github.io" + } + } + diff --git a/domains/subhadeepzilong.json b/domains/subhadeepzilong.json index 83a174e70..a741e079c 100644 --- a/domains/subhadeepzilong.json +++ b/domains/subhadeepzilong.json @@ -1,13 +1,12 @@ { - "description": "SubhadeepZilong's personal developer website", - "repo": "https://github.com/SubhadeepZilong/subhadeepzilong.github.io", - "owner": { - "username": "SubhadeepZilong", - "email": "subhadeepchakraborty555@gmail.com", - "twitter": "subhadeepzilong" - }, - "record": { - "CNAME": "subhadeepzilong.github.io" - } + "description": "SubhadeepZilong's personal developer website", + "repo": "https://github.com/SubhadeepZilong/subhadeepzilong.github.io", + "owner": { + "username": "SubhadeepZilong", + "email": "subhadeepchakraborty555@gmail.com", + "twitter": "subhadeepzilong" + }, + "record": { + "CNAME": "subhadeepzilong.github.io" } - \ No newline at end of file +} diff --git a/domains/subham.json b/domains/subham.json new file mode 100644 index 000000000..5ca270949 --- /dev/null +++ b/domains/subham.json @@ -0,0 +1,11 @@ +{ + "description": "Will be using the subdomain to host my portfolio using is a dev", + "repo": "https://github.com/skuma251/skuma251.github.io", + "owner": { + "username": "skuma251", + "email": "skuma251@asu.edu" + }, + "record": { + "CNAME": "skuma251.github.io" + } +} diff --git a/domains/subhayu.json b/domains/subhayu.json index 4a3e6f7c3..b3cf730cc 100644 --- a/domains/subhayu.json +++ b/domains/subhayu.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "subhayu99", + "email": "balasubhayu99@gmail.com" + }, - { - "owner": { - "username": "subhayu99", - "email": "balasubhayu99@gmail.com" - }, - - "record": { - "CNAME": "subhayu99.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "subhayu99.github.io" + } +} diff --git a/domains/subyyal.json b/domains/subyyal.json new file mode 100644 index 000000000..676759a3e --- /dev/null +++ b/domains/subyyal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Subyyalx", + "email": "subyyal@xavor.com" + }, + "record": { + "CNAME": "cdblxrp8.up.railway.app" + } +} diff --git a/domains/sudania-ajay.json b/domains/sudania-ajay.json new file mode 100644 index 000000000..994c99ac4 --- /dev/null +++ b/domains/sudania-ajay.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/sudania-ajay/sudania-ajay.github.io", + "owner": { + "username": "sanjay-makasana", + "email": "ajay.sudani@truestaz.com" + }, + "record": { + "URL": "https://sudania-ajay.github.io" + } +} diff --git a/domains/sudhan.json b/domains/sudhan.json deleted file mode 100644 index 13eff228a..000000000 --- a/domains/sudhan.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "sudhanplayz", - "email": "sudhanplayz@gmail.com" - }, - "description": "A Personal Website for me", - "record": { - "URL": "https://sudhanplayz.live" - } -} diff --git a/domains/sudip.json b/domains/sudip.json new file mode 100644 index 000000000..fb0c91cd8 --- /dev/null +++ b/domains/sudip.json @@ -0,0 +1,12 @@ +{ + "description": "Host my portfolio website", + "repo": "https://github.com/sudipkundu999/sudipkundu", + "owner": { + "username": "sudipkundu999", + "email": "sudipkundu999@gmail.com", + "twitter": "sudipkundu999" + }, + "record": { + "CNAME": "sudipkundu999.github.io" + } +} diff --git a/domains/suhailahmed.json b/domains/suhailahmed.json new file mode 100644 index 000000000..85265dd2a --- /dev/null +++ b/domains/suhailahmed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SuhailAhmed2627", + "email": "suhailahmed2001sam@gmail.com" + }, + "record": { + "URL": "https://suhailahmed2627.vercel.app/" + } +} diff --git a/domains/suhasdissa.json b/domains/suhasdissa.json new file mode 100644 index 000000000..1eb0f5f9b --- /dev/null +++ b/domains/suhasdissa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SuhasDissa", + "email": "suhasdissa@protonmail.com" + }, + "record": { + "CNAME": "suhasdissa.github.io" + } +} diff --git a/domains/sujeeth.json b/domains/sujeeth.json deleted file mode 100644 index 46d291d04..000000000 --- a/domains/sujeeth.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "sujeethk", - "email": "sujeethkv@yahoo.com" - }, - "record": { - "A": ["74.59.143.202"] - } - } - \ No newline at end of file diff --git a/domains/suki.json b/domains/suki.json index ef470759e..1669d49a0 100644 --- a/domains/suki.json +++ b/domains/suki.json @@ -1,13 +1,9 @@ { - "description": "A cool website", - "repo": "https://github.com/SukiPlayz/hello-world", "owner": { "username": "SukiPlayz", "email": "sukimayoo@outlook.com" }, "record": { - "A": ["212.193.3.66"], - "TXT": "v=spf1 a mx ip4:212.193.3.66 ~all", - "MX": "panel.crystalcloud.xyz" + "CNAME": "portfolio-b8o.pages.dev" } } diff --git a/domains/suman.json b/domains/suman.json index 18c5dee20..5378f2cb8 100644 --- a/domains/suman.json +++ b/domains/suman.json @@ -1,13 +1,12 @@ { - "description": "Suman's Personal Website", - "repo": "https://github.com/thatsuman/thatsuman.github.io", - "owner": { - "username": "thatsuman", - "email": "suman.multiverse@gmail.com", - "twitter": "thatsumann" - }, - "record": { - "CNAME": "thatsuman.github.io" - } + "description": "Suman's Personal Website", + "repo": "https://github.com/thatsuman/thatsuman.github.io", + "owner": { + "username": "thatsuman", + "email": "suman.multiverse@gmail.com", + "twitter": "thatsumann" + }, + "record": { + "CNAME": "thatsuman.github.io" } - \ No newline at end of file +} diff --git a/domains/sumit.json b/domains/sumit.json new file mode 100644 index 000000000..049fec5b9 --- /dev/null +++ b/domains/sumit.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "isumitjha", + "email": "7sumitjha@gmail.com" + }, + + "record": { + "CNAME": "isumitjha.github.io" + } +} diff --git a/domains/sumit404.json b/domains/sumit404.json new file mode 100644 index 000000000..b8457528b --- /dev/null +++ b/domains/sumit404.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SumitRajak404", + "email": "rajaksummit9@gmail.com" + }, + "record": { + "CNAME": "sumitrajak404.github.io" + } +} diff --git a/domains/sumitrajak.json b/domains/sumitrajak.json new file mode 100644 index 000000000..e8b9fed90 --- /dev/null +++ b/domains/sumitrajak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SumitRajak404", + "email": "rajaksummit9@gmail.com" + }, + "record": { + "CNAME": "sumitrajak.pages.dev" + } +} diff --git a/domains/sunglass.json b/domains/sunglass.json new file mode 100644 index 000000000..37618a383 --- /dev/null +++ b/domains/sunglass.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sunglassdev", + "email": "g1asstech@outlook.com" + }, + "record": { + "URL": "https://sunglassdev.github.io/" + } +} diff --git a/domains/sunil.json b/domains/sunil.json new file mode 100644 index 000000000..2e00d97cc --- /dev/null +++ b/domains/sunil.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "skgupta507", + "email": "sunilk98850@gmail.com" + }, + "record": { + "URL": "https://sunil-gupta.netlify.app/" + } +} diff --git a/domains/sunn4github.json b/domains/sunn4github.json new file mode 100644 index 000000000..0dcb10bb9 --- /dev/null +++ b/domains/sunn4github.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sunn4room", + "email": "sunn4room@163.com" + }, + "record": { + "CNAME": "ghproxy.sunn4room.workers.dev" + } +} diff --git a/domains/sunn4room.json b/domains/sunn4room.json new file mode 100644 index 000000000..eb2a4835a --- /dev/null +++ b/domains/sunn4room.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sunn4room", + "email": "sunn4room@163.com" + }, + "record": { + "CNAME": "blog-4ke.pages.dev" + } +} diff --git a/domains/sunny.json b/domains/sunny.json new file mode 100644 index 000000000..e3cae088b --- /dev/null +++ b/domains/sunny.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sunny-unik", + "email": "sunnygandhwani027@gmail.com" + }, + "record": { + "CNAME": "Sunny-unik.github.io" + } +} diff --git a/domains/sunpodder.json b/domains/sunpodder.json new file mode 100644 index 000000000..cbb090c60 --- /dev/null +++ b/domains/sunpodder.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SunPodder", + "email": "", + "discord": "sunpodder" + }, + "record": { + "CNAME": "sunpodder.github.io" + } +} diff --git a/domains/sunshine.json b/domains/sunshine.json new file mode 100644 index 000000000..291c8c08a --- /dev/null +++ b/domains/sunshine.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Hanyaku-Chan", + "email": "collinbuchkamer@gmail.com" + }, + + "record": { + "URL": "https://hanyaku.glitch.me" + } +} diff --git a/domains/surv.json b/domains/surv.json new file mode 100644 index 000000000..20673649c --- /dev/null +++ b/domains/surv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yuri-kiss", + "email": "a_2oo@outlook.com" + }, + "record": { + "CNAME": "surv-is-a-dev.github.io" + } +} diff --git a/domains/surya.json b/domains/surya.json new file mode 100644 index 000000000..3b1603d41 --- /dev/null +++ b/domains/surya.json @@ -0,0 +1,12 @@ +{ + "description": "Profile Links", + "repo": "https://github.com/suryanarayanrenjith/suryanarayanrenjith.github.io", + "owner": { + "username": "suryanarayanrenjith", + "email": "suryanarayanrenjith@outlook.com", + "twitter": "_suryanarayanr" + }, + "record": { + "CNAME": "suryanarayanrenjith.github.io" + } +} diff --git a/domains/surya0.json b/domains/surya0.json new file mode 100644 index 000000000..5b5dde1ec --- /dev/null +++ b/domains/surya0.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "suryapratapsinghsuryavanshi", + "email": "", + "discord": "858030091106517042", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DS_lQ-rkLkv0VFei9VOKq8YDnykOlXX8Rvlzzp8KSlTpDqnRY8e3X1_J4iVfI9t6KJdEfFjnR1r3xhXC9I2A2khHqZMlQTgdhyi72OLHDIQPur3lC16oZlz1T3d5BrVUdKd8ueNky_OLyIZDW9bYY_uR-8vy7ahqasWUW-EEdBspfeMDzWlUon7NKqZaR79maAArOCnoSjDg4Ul5vVei5w-EarI99nylk2tsk8Nx2KyjzEPxx_l7WLUWtZ8LOBRsV83KjJTKRtGZd0eD4jolAW6OQDnD9JEoR8g2XKVEylaYQlHJNgWLdHNdCdJcwhG6Ge2IRkvtlvhwQDu5230Mbg.4c2jfDHUTjsiJZZD2GNNWA.c7WmV_BgqxX8VhuhOyFxZJurynqJ4skcvPWenpEsKXrLG5j93rzAlh-kjG6A6ZIQpEu2NHwKEzvRu_S_PwijC-Ctq5GxiM8rCQfyvuAif4F-kroGiCPD0092yKmBa2kn.Ljp9qlE0JjM35gTNNQQPRQ" + }, + + "record": { + "CNAME": "suryapratap.netlify.app" + } + } + diff --git a/domains/suryaaprakassh.json b/domains/suryaaprakassh.json new file mode 100644 index 000000000..8afc5e9ae --- /dev/null +++ b/domains/suryaaprakassh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "suryaaprakassh", + "email": "surya0prakash@proton.me" + }, + + "record": { + "CNAME": "suryaaprakassh.github.io" + } +} diff --git a/domains/suryajith.json b/domains/suryajith.json index 046147643..203a75c6a 100644 --- a/domains/suryajith.json +++ b/domains/suryajith.json @@ -1,12 +1,12 @@ { - "description": "Personal Page", - "repo": "https://github.com/SuryajithR/suryajithr.github.io", - "owner": { - "username": "suryajith", - "email": "", - "discord": "SuryJithr#5011" - }, - "record": { - "CNAME": "suryajith.github.io" - } -} + "description": "Personal Page", + "repo": "https://github.com/SuryajithR/suryajithr.github.io", + "owner": { + "username": "suryajith", + "email": "", + "discord": "SuryJithr#5011" + }, + "record": { + "CNAME": "suryajith.github.io" + } +} diff --git a/domains/suryansh.json b/domains/suryansh.json index 0ca84a39d..06abcd537 100644 --- a/domains/suryansh.json +++ b/domains/suryansh.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "iamsuryanshxd", - "email": "legitsuryansh@gmail.com" - }, - "record": { - "URL": "https://github.com/iamsuryanshxd" - } - } - \ No newline at end of file +{ + "owner": { + "username": "iamsuryanshxd", + "email": "legitsuryansh@gmail.com" + }, + "record": { + "URL": "https://github.com/iamsuryanshxd" + } +} diff --git a/domains/sushi.json b/domains/sushi.json new file mode 100644 index 000000000..a2b431128 --- /dev/null +++ b/domains/sushi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sushi-ae", + "email": "frapdotpng@gmail.com" + }, + + "record": { + "CNAME": "sushi-ae.github.io" + } +} diff --git a/domains/suspense.json b/domains/suspense.json index 7f7acaae5..a655e0e7e 100644 --- a/domains/suspense.json +++ b/domains/suspense.json @@ -4,5 +4,7 @@ "email": "", "twitter": "Suspense4615" }, - "record": { "CNAME": "suspense4615.github.io" } + "record": { + "CNAME": "suspense4615.github.io" + } } diff --git a/domains/sussypranav.json b/domains/sussypranav.json new file mode 100644 index 000000000..23ee5db0e --- /dev/null +++ b/domains/sussypranav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SussyPranav", + "email": "singhgreatpranav@gmail.com" + }, + "record": { + "CNAME": "sussypranav.github.io" + } +} diff --git a/domains/sussyrayan.json b/domains/sussyrayan.json new file mode 100644 index 000000000..0fe3af89b --- /dev/null +++ b/domains/sussyrayan.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio website", + "repo": "https://syedrayangames.github.io/portfolio", + "owner": { + "username": "syedrayangames", + "email": "syedyaseeralirayan5@gmail.com" + }, + "record": { + "CNAME": "syedrayangames.github.io" + } +} diff --git a/domains/suu.json b/domains/suu.json new file mode 100644 index 000000000..6ec1b0b48 --- /dev/null +++ b/domains/suu.json @@ -0,0 +1,11 @@ +{ + "description": "to make a url shortner website", + "repo": "https://github.com/OKBOTS/register", + "owner": { + "username": "OKBOTS", + "email": "okbots1+2@gmail.com" + }, + "record": { + "CNAME": "minolink.onrender.com" + } +} diff --git a/domains/svg.json b/domains/svg.json index 1f745c5d1..939dc9c3d 100644 --- a/domains/svg.json +++ b/domains/svg.json @@ -1,11 +1,11 @@ -{ - "description": "svg's website", - "repo": "https://github.com/svg-rs/svg.github.io", - "owner": { - "username": "svg-rs", - "email": "kimmkayy8@proton.me" - }, - "record": { - "CNAME": "svg-rs.github.io" - } - } +{ + "description": "svg's website", + "repo": "https://github.com/svg-rs/svg.github.io", + "owner": { + "username": "svg-rs", + "email": "kimmkayy8@proton.me" + }, + "record": { + "CNAME": "svg-rs.github.io" + } +} diff --git a/domains/svijithprasad.json b/domains/svijithprasad.json new file mode 100644 index 000000000..a32b84d20 --- /dev/null +++ b/domains/svijithprasad.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "svijithprasad", + "email": "", + "discord": "694159447790059521", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G8V5ukgXfL16Z-fwAN4qDS4faEwK0WzXS60MuWwHYTgKolW4HjwT8hUBpK99JvKyNqB78bmrvbX_cKiq1yEop-907F_OYWaXFkFlM9FaLi4zb_gu_aRJ_ABmW4SD2hlUs5Lkq516cYhL-anGcsbW8jIharxrcCouPSUw0PwYZnc11E8NzhIRIN8m5sxQqj1TWP5L_Vc_Cr5yyvrRaWsN1p3-wep6gsIkAawchDXKDWfM9wjs2orrfOP0JQFLzKVKIM0e-nBlvqUdhFxqy473HucoMBAWi1fXsNZbD7SIUb2EMb8hOwX9YQT0fuB__IOMNMITDFxlyxNjqdf7lcJw7g.6EZGczxBeascAxNZhgbMrQ.YvwD-vK9j5FRIFSOKgvt0cBj0iOBVyJwMmQTDM-gjt6JYXzejxv_umlOkG7PfhrXgbcPfbPwH4VjK0M94wqlr1kVmgB3BQyLWPow9iwoGNM.DNOmvK0vCjtZQFhI3q9fDA" + }, + + "record": { + "CNAME": "svijithprasad.github.io" + } + } + diff --git a/domains/swanny.json b/domains/swanny.json deleted file mode 100644 index 3bdea3ed1..000000000 --- a/domains/swanny.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Swanny is a Dev", - "repo": "https://github.com/swanny246/swannyIsADev", - "owner": { - "username": "swanny246", - "email": "github@andrewswan.net" - }, - "record": { - "CNAME": "swannyisadev.andrewswan.net" - } -} diff --git a/domains/swargarajbhowmik.json b/domains/swargarajbhowmik.json index 7a76d2598..6609ff4f6 100644 --- a/domains/swargarajbhowmik.json +++ b/domains/swargarajbhowmik.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "swargarajbhowmik", - "email": "swargaraj66@gmail.com" - }, - "record": { - "CNAME": "swargarajbhowmik.github.io" - } + "owner": { + "username": "swargarajbhowmik", + "email": "swargaraj66@gmail.com" + }, + "record": { + "CNAME": "swargarajbhowmik.github.io" + } } diff --git a/domains/swastik.json b/domains/swastik.json new file mode 100644 index 000000000..d0cf946f9 --- /dev/null +++ b/domains/swastik.json @@ -0,0 +1,12 @@ +{ + "description": "About Swastik Baranwal", + "repo": "https://github.com/delta456/delta456.github.io", + "owner": { + "username": "delta456", + "email": "swstkbaranwal@gmail.com", + "twitter": "delta2315" + }, + "record": { + "CNAME": "delta456.github.io" + } +} diff --git a/domains/swenet.json b/domains/swenet.json new file mode 100644 index 000000000..38b2f90bc --- /dev/null +++ b/domains/swenet.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/sweneet/sweneet.github.io", + "owner": { + "username": "sweneet", + "email": "swenetbabapro@gmail.com", + "twitter": "tiltedswenet" + }, + "record": { + "CNAME": "sweneet.github.io" + } +} diff --git a/domains/sweta-solanki.json b/domains/sweta-solanki.json new file mode 100644 index 000000000..09c3778af --- /dev/null +++ b/domains/sweta-solanki.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/sweta-solanki/sweta-solanki.github.io", + "owner": { + "username": "sweta-solanki", + "email": "sweta.solank@truestaz.com" + }, + "record": { + "CNAME": "sweta-solanki.github.io" + } +} diff --git a/domains/sx9.json b/domains/sx9.json index d986d15c3..47a272ce9 100644 --- a/domains/sx9.json +++ b/domains/sx9.json @@ -1,10 +1,10 @@ -{ - "description": "SX's Website", - "owner": { +{ + "description": "SX's Website", + "owner": { "username": "SX-9", "email": "sx-91@outlook.com" }, - "record": { - "CNAME": "sx-9.github.io" + "record": { + "CNAME": "cname.short.io" } } diff --git a/domains/sxi.json b/domains/sxi.json new file mode 100644 index 000000000..7db21a348 --- /dev/null +++ b/domains/sxi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Sxinar", + "email": "oshidev@proton.me", + "discord": "1247896918957490198" + }, + + "record": { + "CNAME": "sxi.digitalpress.blog" + } +} diff --git a/domains/sxtxnzester.json b/domains/sxtxnzester.json new file mode 100644 index 000000000..5aa995ece --- /dev/null +++ b/domains/sxtxnzester.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sxtxnzester", + "email": "lollo11020210@gmail.com", + "discord": "1133362142461050980" + }, + + "record": { + "CNAME": "sxtxnzester.github.io" + } +} diff --git a/domains/sxurxbh.json b/domains/sxurxbh.json new file mode 100644 index 000000000..e54cd907e --- /dev/null +++ b/domains/sxurxbh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sxurabh", + "email": "saurabhkirve@gmail.com" + }, + "record": { + "CNAME": "sxurabh.github.io" + } +} diff --git a/domains/sxvr.json b/domains/sxvr.json index 2e4bcc58b..4c05e0b74 100644 --- a/domains/sxvr.json +++ b/domains/sxvr.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "skaar513", - "email": "skaar513@gmail.com" - }, - "record": { - "CNAME": "skaar513.github.io" - } + "owner": { + "username": "skaar513", + "email": "skaar513@gmail.com" + }, + "record": { + "CNAME": "skaar513.github.io" + } } diff --git a/domains/syahiramali.json b/domains/syahiramali.json index c7c937927..0d51bce4c 100644 --- a/domains/syahiramali.json +++ b/domains/syahiramali.json @@ -1,11 +1,11 @@ -{ - "description": "syahirAmali Portfolio", - "repo": "https://github.com/syahirAmali/syahirAmali.github.io", - "owner": { - "username": "syahirAmali", - "email": "syahiramali@gmail.com" - }, - "record": { - "CNAME": "syahiramali.github.io" - } - } +{ + "description": "syahirAmali Portfolio", + "repo": "https://github.com/syahirAmali/syahirAmali.github.io", + "owner": { + "username": "syahirAmali", + "email": "syahiramali@gmail.com" + }, + "record": { + "CNAME": "syahiramali.github.io" + } +} diff --git a/domains/sycured.json b/domains/sycured.json deleted file mode 100644 index 9157e204c..000000000 --- a/domains/sycured.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "sycured", - "email": "sycured@protonmail.com" - }, - "record": { - "URL": "https://sycured.com" - } -} diff --git a/domains/syd.json b/domains/syd.json index 3c33dcfd5..07b4b08f1 100644 --- a/domains/syd.json +++ b/domains/syd.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "bububa", + "email": "prof.syd.xu@gmail.com" + }, - { - "owner": { - "username": "bububa", - "email": "prof.syd.xu@gmail.com" - }, - - "record": { - "CNAME": "bububa.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "bububa.github.io" + } +} diff --git a/domains/syed.json b/domains/syed.json index ddc978dff..19051c22d 100644 --- a/domains/syed.json +++ b/domains/syed.json @@ -1,4 +1,3 @@ - { "owner": { "username": "SyedAhkam", @@ -8,4 +7,3 @@ "CNAME": "syedahkam.github.io" } } - diff --git a/domains/syedrayan.json b/domains/syedrayan.json new file mode 100644 index 000000000..46a47ddcc --- /dev/null +++ b/domains/syedrayan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "syedrayangames", + "email": "syedyaseeralirayan@gmail.com" + }, + "record": { + "URL": "https://rxhggamingnews.blogspot.com/" + } +} diff --git a/domains/sylestic.json b/domains/sylestic.json new file mode 100644 index 000000000..191f96064 --- /dev/null +++ b/domains/sylestic.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Sylestic", + "email": "", + "discord": "Sylestic#4231" + }, + "record": { + "CNAME": "sylestic.github.io" + } +} diff --git a/domains/syntaxsavior.json b/domains/syntaxsavior.json new file mode 100644 index 000000000..55f1528bc --- /dev/null +++ b/domains/syntaxsavior.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ItzYoVishal", + "email": "rockstarelitecoc@gmail.com" + }, + "record": { + "CNAME": "blue-sand-021f23e10.4.azurestaticapps.net" + } +} diff --git a/domains/syntz.json b/domains/syntz.json new file mode 100644 index 000000000..5b7e8a38d --- /dev/null +++ b/domains/syntz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "syntz-dev", + "email": "rafaelbraun5@hotmail.com" + }, + "repo": "https://github.com/syntz-dev/syntz-dev.github.io", + "record": { + "CNAME": "syntz-dev.github.io" + } +} diff --git a/domains/sys32.json b/domains/sys32.json new file mode 100644 index 000000000..4f7714b91 --- /dev/null +++ b/domains/sys32.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sys-32Dev", + "email": "sys32real@gmail.com" + }, + "record": { + "URL": "https://www.sys64.dev" + } +} diff --git a/domains/szbcs.json b/domains/szbcs.json new file mode 100644 index 000000000..f559706f7 --- /dev/null +++ b/domains/szbcs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "szilvesztercsab", + "email": "szilvesztercsab@gmail.com" + }, + "record": { + "CNAME": "szbcs.duckdns.org" + } +} diff --git a/domains/szczota.json b/domains/szczota.json new file mode 100644 index 000000000..204e77484 --- /dev/null +++ b/domains/szczota.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "szczotapl", + "email": "", + "discord": ".szczotapl" + }, + + "record": { + "CNAME": "szczotapl.github.io" + } +} diff --git a/domains/szisza.vamtic.json b/domains/szisza.vamtic.json new file mode 100644 index 000000000..45f0d23d7 --- /dev/null +++ b/domains/szisza.vamtic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vamtic", + "email": "vamtic@yahoo.com" + }, + "record": { + "CNAME": "szisza.pages.dev" + } +} diff --git a/domains/t.json b/domains/t.json new file mode 100644 index 000000000..fc41cce58 --- /dev/null +++ b/domains/t.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "trollm8", + "email": "", + "discord": "1266754182082461751", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.N8Vf7tNsfTIJKNaXAqD1t4qLzIqx8ZlybnLmVGjKs6dv3uxFMpKQhznKohFUEtOQlvURIZsKDGUOyFFpo6tzJEFt9Aaocse4xF2P7ud1ZBGLaPBSM7HF7IemNsczePYM-BjzMHvfTu7ryOGlCLvRe7z7M0KzRtImIcpm_ZQf-1aGlAFljd9Gy82Jc2mE9U-gMNU5GgRteegXGeNRHb10oYXWYV4lmLTP_YhvbiCavwTRyTS3SrwzQn78eTcXgwTeGhELj9eEfwTCsGJJfsbZPWAh1QNpm6-Y7HktDiNELbw2QfK3R0gvczybCfXGzj4d7z4Qhchea5X_uXxalGGNfA.VE-Mh6fPXbz7m456qKlh5w.gg7ta9FXClk001IBFL1UiwrYTks-hWzmecKfz9XdA1js4kBarT9MdlAb4UJTyoeyVqQ1uZSe3QLt25A1Kk7pTg.ZEXUDiLNEpaUwlvsx_xiEQ" + }, + + "record": { + "CNAME": "trollm8-redirect.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/tagbot.maskduck.json b/domains/tagbot.maskduck.json deleted file mode 100644 index 909c18865..000000000 --- a/domains/tagbot.maskduck.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "description": "HTTP command handler for my bot", - "repo": "https://github.com/MaskDuck/tag_bot", - "owner": { - "username": "MaskDuck", - "email": "", - "discord": "MaskDuck#1337", - "twitter": "MaskDuck1", - "reddit": "u/maskduck", - "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586." - }, - "record": { - "CNAME": "tagbot-production-bef9.up.railway.app" - } -} diff --git a/domains/taha.json b/domains/taha.json index a04645037..0ec9a5076 100644 --- a/domains/taha.json +++ b/domains/taha.json @@ -8,4 +8,4 @@ "record": { "CNAME": "taha2002.github.io" } -} \ No newline at end of file +} diff --git a/domains/taha2002.json b/domains/taha2002.json index b5ee77a38..2937407f5 100644 --- a/domains/taha2002.json +++ b/domains/taha2002.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "taha2002", + "email": "bouras1920@gmail.com" + }, - { - "owner": { - "username": "taha2002", - "email": "bouras1920@gmail.com" - }, - - "record": { - "CNAME": "taha2002.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "taha2002.github.io" + } +} diff --git a/domains/tahaadnan.json b/domains/tahaadnan.json new file mode 100644 index 000000000..97d4b3fd1 --- /dev/null +++ b/domains/tahaadnan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LRxDarkDevil", + "email": "tahaadnanawan@gmail.com" + }, + "record": { + "CNAME": "lrxdarkdevil.github.io" + } +} diff --git a/domains/tahir.json b/domains/tahir.json new file mode 100644 index 000000000..b03b75046 --- /dev/null +++ b/domains/tahir.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "syedraihanali", + "email": "", + "discord": "630920899952115712", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.aU2pNjWT_gok4yMFuWsXL8apN3XNbnx2GPr-wIKACKn3Ii-VvP9z-Y1_XsteCulsZroTutm5klnCPLKvEwHQtNO-rXtJ2ZLhBVy73b5F8OKopsTtutHOvJiA9KmSnUr3xfN8J4Xi27LDMXST7cnGKfnoe6D285_9dbtW6FZ-dMNiqPbqdHYZICzLUQnd4ls3lP_YPme5GeAJSfc0ZLJNbeVMj-f2Tp9EFNz8n9V6lWbOufJEt3D3_TpEYqqctVzkfFHPpHKAGmN0hSQEeVwRrmaYNispb9r9613MFt22IIaSvlWEVvzOLL1s_iHDGmCxlAe9ig7Xh_3OxXLLIDmKkg.UQS3jET5qqZVuWT0-p6zeQ.K4qfkcxCKrBJCXfr8kgt3-brJbx4PXonJYBqW0nA9nIT5cwvJ-vn8kTP9s0Irpxg6WTMZOalzsb3HNgKaYaHca3J9tSXNXZ1x99A-L_A5fM.snQpd1z0kofYC1dJO_O8SA" + }, + + "record": { + "A": ["103.213.38.188"] + } + } + \ No newline at end of file diff --git a/domains/tajul.json b/domains/tajul.json new file mode 100644 index 000000000..9bc121211 --- /dev/null +++ b/domains/tajul.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arifintajul4", + "email": "arifintajul4@gmail.com" + }, + "record": { + "CNAME": "portofolio-khaki.vercel.app" + } +} diff --git a/domains/takase.json b/domains/takase.json new file mode 100644 index 000000000..53833394b --- /dev/null +++ b/domains/takase.json @@ -0,0 +1,11 @@ +{ + "description": "Takase's personal website", + "repo": "https://github.com/takase1121/takase1121.github.io", + "owner": { + "username": "takase1121", + "email": "takase1121@proton.me" + }, + "record": { + "CNAME": "takase1121.github.io" + } +} diff --git a/domains/tal7aouy.json b/domains/tal7aouy.json index 781b45475..2726d480c 100644 --- a/domains/tal7aouy.json +++ b/domains/tal7aouy.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "tal7aouy", - "email": "tal7aouy.dev@gmail.com" - }, - "record": { - "URL": "https://tal7aouy.netlify.app" - } - } - +{ + "owner": { + "username": "tal7aouy", + "email": "tal7aouy.dev@gmail.com" + }, + "record": { + "URL": "https://tal7aouy.netlify.app" + } +} diff --git a/domains/talinsharma.json b/domains/talinsharma.json new file mode 100644 index 000000000..35128e40d --- /dev/null +++ b/domains/talinsharma.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TalinTheDev", + "email": "talinsharma.dev@gmail.com" + }, + "record": { + "CNAME": "talinthedev.github.io" + } +} diff --git a/domains/tallerthanshort.json b/domains/tallerthanshort.json index d9d6b0eec..c97bfac10 100644 --- a/domains/tallerthanshort.json +++ b/domains/tallerthanshort.json @@ -1,12 +1,11 @@ { - "description": "TallerThanShort made site", - "repo": "https://github.com/TallerThanShort", - "owner": { - "username": "TallerThanShort", - "email": "TallerThanShort@duck.com" - }, - "record": { - "CNAME": "TallerThanShort.github.io" - - } + "description": "TallerThanShort made site", + "repo": "https://github.com/TallerThanShort", + "owner": { + "username": "TallerThanShort", + "email": "TallerThanShort@duck.com" + }, + "record": { + "CNAME": "TallerThanShort.github.io" + } } diff --git a/domains/tamim.json b/domains/tamim.json new file mode 100644 index 000000000..0bdd7dd69 --- /dev/null +++ b/domains/tamim.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio website", + "repo": "https://github.com/dev7amim/dev7amim.github.io", + "owner": { + "username": "dev7amim", + "email": "dev7amim@yahoo.com" + }, + "record": { + "CNAME": "dev7amim.github.io" + } +} diff --git a/domains/tamton-aquib.json b/domains/tamton-aquib.json new file mode 100644 index 000000000..db0769328 --- /dev/null +++ b/domains/tamton-aquib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tamton-aquib", + "email": "aquibjavedt007@gmail.com" + }, + "record": { + "CNAME": "tamton-aquib.github.io" + } +} diff --git a/domains/tanio.json b/domains/tanio.json deleted file mode 100644 index 119d1bb7e..000000000 --- a/domains/tanio.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Hello World", - "owner": { - "username": "tanmyid", - "email": "tanmyid1337@gmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } - } - \ No newline at end of file diff --git a/domains/tanish.json b/domains/tanish.json new file mode 100644 index 000000000..c0891a006 --- /dev/null +++ b/domains/tanish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hirakotm", + "email": "hirakoo@proton.me" + }, + "record": { + "CNAME": "hirako-is-really-cool.pages.dev" + } +} diff --git a/domains/tanishq.json b/domains/tanishq.json deleted file mode 100644 index e217d0853..000000000 --- a/domains/tanishq.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "tanishq-soni", - "email": "hi@tanishqsoni.me", - "twitter": "tanishq_soni_" - }, - "repo": "https://github.com/tanishq-soni/new-portfolio", - "record": { - "URL": "https://tanishqsoni.me" - } -} diff --git a/domains/tanmay.json b/domains/tanmay.json new file mode 100644 index 000000000..8b3a2cfcd --- /dev/null +++ b/domains/tanmay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tanmayagrwl", + "email": "tanmayhp78@gmail.com" + }, + "record": { + "URL": "https://portfolio-site-nine-silk.vercel.app" + } +} diff --git a/domains/tanos.json b/domains/tanos.json new file mode 100644 index 000000000..2cb30df04 --- /dev/null +++ b/domains/tanos.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio website", + "repo": "https://TacoGit.github.io", + "owner": { + "username": "TacoGit", + "email": "opmijloly@gmail.com" + }, + "record": { + "CNAME": "TacoGit.github.io" + } +} diff --git a/domains/tanu.json b/domains/tanu.json deleted file mode 100644 index 4751d152b..000000000 --- a/domains/tanu.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Tanu's Website", - "repo": "https://github.com/desktopdotini/websitev3", - "owner": { - "username": "desktopdotini", - "email": "cloneyinnit@gmail.com", - "twitter": "tanumakescode" - }, - "record": { - "CNAME": "websitev3.pages.dev" - } - } diff --git a/domains/tanx-009.json b/domains/tanx-009.json new file mode 100644 index 000000000..d02cf2f35 --- /dev/null +++ b/domains/tanx-009.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TanX-009", + "email": "tanmaymuley009@gmail.com" + }, + + "record": { + "CNAME": "tanx-009.gitlab.io" + } +} diff --git a/domains/tanyalai.json b/domains/tanyalai.json new file mode 100644 index 000000000..fb766e7aa --- /dev/null +++ b/domains/tanyalai.json @@ -0,0 +1,12 @@ +{ + "description": "Tanya Lai's personal website", + "repo": "https://github.com/tanyalai/tanyalai.github.io", + "owner": { + "username": "tanyalai", + "email": "tanyalai@outlook.com", + "twitter": "TanyaLai23" + }, + "record": { + "CNAME": "tanyalai.github.io" + } +} diff --git a/domains/tarifsadman.json b/domains/tarifsadman.json new file mode 100644 index 000000000..9ab46f133 --- /dev/null +++ b/domains/tarifsadman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TarifSadman", + "email": "sadmantaha17@gmail.com" + }, + "record": { + "URL": "https://tarif-sadman.netlify.app/" + } +} diff --git a/domains/tarna.json b/domains/tarna.json deleted file mode 100644 index 34c27fefa..000000000 --- a/domains/tarna.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "tarna", - "email": "tarungadiraju123@gmail.com" - }, - "record": { - "URL": "https://github.com/tarna" - } - } - \ No newline at end of file diff --git a/domains/tartej.json b/domains/tartej.json new file mode 100644 index 000000000..c4a034fbd --- /dev/null +++ b/domains/tartej.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Site", + "repo": "https://github.com/TartejBrothers/Tarloic", + "owner": { + "username": "tartejbrothers", + "email": "taranjeetsinghbedi2@gmail.com" + }, + "record": { + "CNAME": "tarloic.web.app" + } +} diff --git a/domains/tarun57.json b/domains/tarun57.json index 2bed72a8a..51f7a92b4 100644 --- a/domains/tarun57.json +++ b/domains/tarun57.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "H-57", - "email": "tarunkumar8059@gmail.com" - }, - "record": { - "URL": "https://pokemonin-hindi.blogspot.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "H-57", + "email": "tarunkumar8059@gmail.com" + }, + "record": { + "URL": "https://pokemonin-hindi.blogspot.com" + } +} diff --git a/domains/tarun577.json b/domains/tarun577.json index 2bed72a8a..51f7a92b4 100644 --- a/domains/tarun577.json +++ b/domains/tarun577.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "H-57", - "email": "tarunkumar8059@gmail.com" - }, - "record": { - "URL": "https://pokemonin-hindi.blogspot.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "H-57", + "email": "tarunkumar8059@gmail.com" + }, + "record": { + "URL": "https://pokemonin-hindi.blogspot.com" + } +} diff --git a/domains/tas33n.json b/domains/tas33n.json new file mode 100644 index 000000000..1b41f88ff --- /dev/null +++ b/domains/tas33n.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio for my works..", + "repo": "https://github.com/tas33n/tas33n.github.io", + "owner": { + "username": "tas33n", + "email": "tasu.legend@gmail.com", + "twitter": "" + }, + "record": { + "CNAME": "tas33n.pages.dev" + } +} diff --git a/domains/tasory.json b/domains/tasory.json new file mode 100644 index 000000000..656423749 --- /dev/null +++ b/domains/tasory.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tasory", + "email": "andr3393399@gmail.com" + }, + "record": { + "CNAME": "tasory.github.io" + } +} diff --git a/domains/tat2008.json b/domains/tat2008.json index cce9038ab..b203e4d9b 100644 --- a/domains/tat2008.json +++ b/domains/tat2008.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "tat2008", + "email": "tuan.trananh2008@gmail.com" + }, - { - "owner": { - "username": "tat2008", - "email": "tuan.trananh2008@gmail.com" - }, - - "record": { - "URL": "https://me.tat2008.tk" - } - } - + "record": { + "CNAME": "profile-card-1ug.pages.dev" + } +} diff --git a/domains/tawhid.json b/domains/tawhid.json new file mode 100644 index 000000000..4a7ab0430 --- /dev/null +++ b/domains/tawhid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dumbo-programmer", + "email": "rony.120285d2k@gmail.com" + }, + "record": { + "CNAME": "dumbo-programmer.github.io" + } +} diff --git a/domains/tawqeer.json b/domains/tawqeer.json new file mode 100644 index 000000000..ae3c8ad0a --- /dev/null +++ b/domains/tawqeer.json @@ -0,0 +1,11 @@ +{ + "description": "Tawqeer's .is-a.dev domain", + "repo": "https://github.com/1k24bytes/1k24bytes.github.io", + "owner": { + "username": "1k24bytes.github.io", + "email": "tawqeer21@gmail.com" + }, + "record": { + "CNAME": "1k24bytes.github.io" + } +} diff --git a/domains/taxen.json b/domains/taxen.json new file mode 100644 index 000000000..2a8ef5743 --- /dev/null +++ b/domains/taxen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "taxenlmao", + "email": "jayd3ngame@gmail.com" + }, + "record": { + "URL": "https://feds.lol/skittles" + } +} diff --git a/domains/tay.json b/domains/tay.json new file mode 100644 index 000000000..3395b5249 --- /dev/null +++ b/domains/tay.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tayrp", + "email": "mystixmew@gmail.com", + "discord": "1050531216589332581" + }, + + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/tayu.json b/domains/tayu.json deleted file mode 100644 index 7c8fde480..000000000 --- a/domains/tayu.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "tayudev", - "email": "mizuto.discord@gmail.com" - }, - "record": { - "URL": "https://tayu25.netlify.app" - } - } - diff --git a/domains/tazbot.tienanh109.json b/domains/tazbot.tienanh109.json new file mode 100644 index 000000000..b804a2e64 --- /dev/null +++ b/domains/tazbot.tienanh109.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "tienanh109", + "email": "", + "discord": "835382592198410310", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QywIEyfPB9B0am2WoL1ZmEvdDiRSQdBqnt6t6pLkmTUWrbdvSAabKektBxBavhV9BhqpnoBfBtqIL7IhiIjOpRYn_CH3OfnxHoxlqjYB7f_a_ynv1ywxsg50IogX94roAaLj8clQIhpUrVeQt4bjcFGN39w0w4xViMq2D37npSvIc9FD9jhWPJCoPoRrGESexvvdM9mfkDqbfGXZJR-92rvPi_FQ7u4x0S-s5ZqjeV0O3Ku09vpOeZlFUhNPfRCx1o8V-7uStWMn3nBRJ0uR05Q7gcEWFNaSPuVcgn0ocOREMvPbN1an_RSPpIcA9ctNEfI31RmKaswJh524mYYgUA.WQXvUgTWa4Z48JVlCo6CHA.Rm9uVvt-GVm4Uyylhj_KoKueFOQOT73poOsscsCTQM462TWx-5Fk0WdIwQdJaEuROeG7F5xketD-qUCu0X3r_hucqol6Pyd9RyA27o3EqEw.CVbcGiP8ynYP1NPTqGS2-g" + }, + + "record": { + "CNAME": "tazbot.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/tazer.json b/domains/tazer.json new file mode 100644 index 000000000..16211d977 --- /dev/null +++ b/domains/tazer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ajtazer", + "email": "ajcoolx619@gmail.com" + }, + "record": { + "URL": "https://www.snapchat.com/add/ajtazer" + } +} diff --git a/domains/tcdavo.json b/domains/tcdavo.json deleted file mode 100644 index ad5a8ea3d..000000000 --- a/domains/tcdavo.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Tcdavo", - "discord": "FriedUp-_-#6908", - "email": "" - }, - "record": { - "CNAME": "44f0c26f-c6a3-4a32-bd8b-80614d289b24.id.repl.co" - } -} diff --git a/domains/tcl.json b/domains/tcl.json deleted file mode 100644 index 9c66dd642..000000000 --- a/domains/tcl.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "TianTcl's profile", - "repo": "https://github.com/TianTcl/TianTcl", - "owner": { - "username": "TianTcl", - "email": "tclwebguest@gmail.com" - }, "record": { - "CNAME": "info.tiantcl.net" - - } -} \ No newline at end of file diff --git a/domains/tclement0922.json b/domains/tclement0922.json index b5645db9f..1ac098547 100644 --- a/domains/tclement0922.json +++ b/domains/tclement0922.json @@ -1,11 +1,11 @@ { - "description": "tclement0922's personal site", - "repo": "https://github.com/tclement0922/tclement0922.github.io", - "owner": { - "username": "tclement0922", - "email": "dev.tclement0922@gmail.com" - }, - "record": { - "CNAME": "tclement0922.github.io" - } + "description": "tclement0922's personal site", + "repo": "https://github.com/tclement0922/tclement0922.github.io", + "owner": { + "username": "tclement0922", + "email": "dev.tclement0922@gmail.com" + }, + "record": { + "CNAME": "tclement0922.github.io" } +} diff --git a/domains/tcxone.json b/domains/tcxone.json new file mode 100644 index 000000000..b4adeb0d9 --- /dev/null +++ b/domains/tcxone.json @@ -0,0 +1,12 @@ +{ + "description": "Personal homepage", + "repo": "https://github.com/tcxone/tcxone.github.io", + "owner": { + "username": "tcxone", + "email": "tcxone@outlook.com", + "twitter": "tcxone" + }, + "record": { + "CNAME": "tcxone.github.io" + } +} diff --git a/domains/td.json b/domains/td.json new file mode 100644 index 000000000..9ddd060b4 --- /dev/null +++ b/domains/td.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hima-Pro", + "email": "pnpop01027066161@gmail.com" + }, + "record": { + "CNAME": "hima-pro.github.io" + } +} diff --git a/domains/tdh.json b/domains/tdh.json new file mode 100644 index 000000000..e90ca1a11 --- /dev/null +++ b/domains/tdh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "agger34", + "email": "hungtd.h3it@gmail.com" + }, + "record": { + "URL": "https://my-blog-orcin-mu-36.vercel.app" + } +} diff --git a/domains/tdim.json b/domains/tdim.json new file mode 100644 index 000000000..9ddd060b4 --- /dev/null +++ b/domains/tdim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hima-Pro", + "email": "pnpop01027066161@gmail.com" + }, + "record": { + "CNAME": "hima-pro.github.io" + } +} diff --git a/domains/tea.json b/domains/tea.json deleted file mode 100644 index 6078cc06e..000000000 --- a/domains/tea.json +++ /dev/null @@ -1,10 +0,0 @@ -{ -"owner": { - "username": "TheTeaCup", - "email": "", - "discord": "Tea Cup#9999" - }, - "record": { - "CNAME": "dedicated.theteacup.dev" - } -} diff --git a/domains/team.json b/domains/team.json index 9917b62ba..cafc4ed88 100644 --- a/domains/team.json +++ b/domains/team.json @@ -2,8 +2,8 @@ "description": "The Maintainer Docs For The Is-A.Dev Website!", "repo": "github.com/is-a-dev/maintainer-docs", "owner": { - "username": "@is-a-dev/maintainers", - "email": "phenax5@gmail.com" + "username": "is-a-dev", + "email": "" }, "record": { "CNAME": "is-a-dev.github.io" diff --git a/domains/team.tnt.json b/domains/team.tnt.json new file mode 100644 index 000000000..d83cfcfe9 --- /dev/null +++ b/domains/team.tnt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SebTNT", + "email": "turquoisetntmultimedia@gmail.com" + }, + "record": { + "CNAME": "sebtnt.github.io" + } +} diff --git a/domains/teamcodearc.json b/domains/teamcodearc.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/teamcodearc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/teamfive.sono.json b/domains/teamfive.sono.json new file mode 100644 index 000000000..5bfe5ce2a --- /dev/null +++ b/domains/teamfive.sono.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "getSono", + "email": "julianwolf2013@outlook.de", + "discord": "1222250424309121145" + }, + + "record": { + "CNAME": "getsono.github.io" + } + } + \ No newline at end of file diff --git a/domains/tech-geek-united.json b/domains/tech-geek-united.json new file mode 100644 index 000000000..3634622f5 --- /dev/null +++ b/domains/tech-geek-united.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "TechGeekUnited", + "email": "TGUyt.dev@gmail.com", + "discord": "TechGeekUnited#4329" + }, + "record": { + "URL": "https://techgeekunited.github.io", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/tech.json b/domains/tech.json index 6b4bf404d..53a3b34d2 100644 --- a/domains/tech.json +++ b/domains/tech.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/techpixel/techpixel.github.io", - "owner": { - "username": "techpixel", - "email": "yralqfwus@mozmail.com" - }, - "record": { - "CNAME": "techpixel.github.io" - } -} + "repo": "https://github.com/techpixel/techpixel.github.io", + "owner": { + "username": "techpixel", + "email": "yralqfwus@mozmail.com" + }, + "record": { + "CNAME": "techpixel.github.io" + } +} diff --git a/domains/tech4file.json b/domains/tech4file.json new file mode 100644 index 000000000..bfaadf4ec --- /dev/null +++ b/domains/tech4file.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "kubsai", + "email": "", + "discord": "477781395922485248", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.rjBMItaMqXDR5sgtxH1YnZZ9mYBhx3cbEQzddCZUiMNBR46LhAZ2AhH8wCbD6SG2zvXxFAs_37Lj-kdKpTwqvslDWBwu-USKw744-I9JSYOo5AOp07XOeMBub_hlhDzTs7c71UEp0Zn2aWcNT164tJZ9FtrrGz1cOlA1FrgOY6IiddK6Kpxc9WNfyKrFcvI36qFxp4Tb8S0Ibybm61KJbstlgbjxwB6KggPTHsywFOhw_Qefe9-QptaoPZRiruXHzvfWYoEzDVjlu7sfXbbyTfla9P6KMldZqhzfYLB1urG-iUnbE5lXWHpPUHS3Hg6-_zWzBIMn65gKfmXrp-uV7A.hW8GxTh4cATNDhwiGbFWyg.JoRpaJgGT1hqgC16L__tz931OK9opx5RmAWfsoe3QHUsiqCQM8xLkxUldZUX_UwYQWD0VZHxkk6KXYFfp2NwtQ.Q4d-6jP2DF2q_-6B8o-u5Q" + }, + + "record": { + "A": ["185.27.134.230"] + } + } + \ No newline at end of file diff --git a/domains/techbot.json b/domains/techbot.json new file mode 100644 index 000000000..c4cc49d5f --- /dev/null +++ b/domains/techbot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gunter228", + "email": "mq.2024@mail.ru" + }, + "record": { + "A": ["45.137.70.68"] + } +} diff --git a/domains/techctg24.json b/domains/techctg24.json deleted file mode 100644 index cf1d62797..000000000 --- a/domains/techctg24.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "rakibctg", - "email": "eunus527@gmail.com" - }, - - "record": { - "URL": "https://techctg24.dev" - } - } - diff --git a/domains/techgenius.json b/domains/techgenius.json new file mode 100644 index 000000000..59ea36cf2 --- /dev/null +++ b/domains/techgenius.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TechGenius7777", + "email": "supratikmahato7777@gmail.com" + }, + "record": { + "CNAME": "techgenius-portfolio.pages.dev" + } +} diff --git a/domains/technofusiontech.json b/domains/technofusiontech.json new file mode 100644 index 000000000..7cb395771 --- /dev/null +++ b/domains/technofusiontech.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TechnoFusionTech", + "email": "technofusiontech@techie.com" + }, + "record": { + "CNAME": "technofusiontech.github.io" + } +} diff --git a/domains/technopaws.json b/domains/technopaws.json deleted file mode 100644 index 7c68680ef..000000000 --- a/domains/technopaws.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A PORTFOLIO FOR MYSELF", - "repo": "https://HmmNoSus.realtechnopaws.repl.co", - "owner": { - "username": "TECHNOPAWS", - "email": "technopaws69@gmail.com" - }, - "record": { - "CNAME": "78db877f-0bbd-45b9-9c7d-ad02242a1705.id.repl.co" - } -} diff --git a/domains/techout.json b/domains/techout.json deleted file mode 100644 index e961ef5da..000000000 --- a/domains/techout.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Mainly used to upload images to but also for a small home-page.", - "repo": "https://github.com/Techout592", - "owner": { - "username": "Techout592", - "email": "root@techout.tech" - }, - "record": { - "CNAME": "dns.techout.tech" - } -} diff --git a/domains/techside.json b/domains/techside.json new file mode 100644 index 000000000..5452ac9d4 --- /dev/null +++ b/domains/techside.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "techsideofficial", + "email": "wienerwolf77@gmail.com" + }, + "record": { + "CNAME": "joysteem.web.app" + } +} diff --git a/domains/techstarmahesh.json b/domains/techstarmahesh.json index eb7fab1c1..5b12a60f2 100644 --- a/domains/techstarmahesh.json +++ b/domains/techstarmahesh.json @@ -1,11 +1,11 @@ -{ - "description": "Mahesh Sharma's personal developer website", - "repo": "https://github.com/techstarmahesh/techstarmahesh.github.io", - "owner": { - "username": "TechstarMahesh", - "email": "mistermaheshsharma@gmail.com" - }, - "record": { - "CNAME": "techstarmahesh.github.io" - } - } \ No newline at end of file +{ + "description": "Mahesh Sharma's personal developer website", + "repo": "https://github.com/techstarmahesh/techstarmahesh.github.io", + "owner": { + "username": "TechstarMahesh", + "email": "mistermaheshsharma@gmail.com" + }, + "record": { + "CNAME": "techstarmahesh.github.io" + } +} diff --git a/domains/tee.json b/domains/tee.json new file mode 100644 index 000000000..8ccd4c52b --- /dev/null +++ b/domains/tee.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tayrp", + "email": "mystixmew@gmail.com", + "discord": "1050531216589332581" + }, + + "record": { + "CNAME": "tayrp.github.io" + } +} diff --git a/domains/teesh.json b/domains/teesh.json new file mode 100644 index 000000000..1f2c740d6 --- /dev/null +++ b/domains/teesh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "teesh3rt", + "email": "teesh3rt@gmail.com" + }, + "description": "Teesh's Site", + "repo": "https://github.com/teesh3rt/teesh3rt.github.io", + "record": { + "CNAME": "teesh3rt.github.io" + } +} diff --git a/domains/tejas-luthra.json b/domains/tejas-luthra.json deleted file mode 100644 index 8d20278c1..000000000 --- a/domains/tejas-luthra.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Tejas' personal is-a.dev site", - "repo": "https://github.com/tejas-luthra/tejas-luthra.github.io", - "owner": { - "username": "tejas-luthra", - "email": "tejasluthra3008@gmail.com" - }, - "record": { - "CNAME": "tejas-luthra.github.io" - } -} diff --git a/domains/tejas.json b/domains/tejas.json deleted file mode 100644 index a3e0f2fc7..000000000 --- a/domains/tejas.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A simple portfolio website by me (Tejas Agarwal)", - "repo": "https://github.com/tejasag/webpage", - "owner": { - "username": "tejasag", - "email": "togedemaru.1707@gmail.com" - }, - "record": { - "URL": "https://tejasagarwal.tech" - } -} diff --git a/domains/tejaswa.json b/domains/tejaswa.json new file mode 100644 index 000000000..5ccb9253c --- /dev/null +++ b/domains/tejaswa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tejas-wa", + "email": "sa.firein@proton.me" + }, + "record": { + "CNAME": "tejas-wa.github.io" + } +} diff --git a/domains/tekno.json b/domains/tekno.json index 430612063..260e6e745 100644 --- a/domains/tekno.json +++ b/domains/tekno.json @@ -7,8 +7,6 @@ "twitter": "TeknoSenpai" }, "record": { - "A": [ - "173.212.245.116" - ] + "A": ["173.212.245.116"] } } diff --git a/domains/teknoday.json b/domains/teknoday.json new file mode 100644 index 000000000..8e302bb84 --- /dev/null +++ b/domains/teknoday.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "teknoku32", + "email": "tajam24news@gmail.com" + }, + "record": { + "URL": "https://bidayy.com" + } +} diff --git a/domains/temelkov.json b/domains/temelkov.json new file mode 100644 index 000000000..023a9b850 --- /dev/null +++ b/domains/temelkov.json @@ -0,0 +1,11 @@ +{ + "description": "Stanislav Temelkov Proffesional Portfolio", + "repo": "https://github.com/Temelkov/temelkov.github.io", + "owner": { + "username": "Temelkov", + "email": "stanislav.temelkov@hotmail.com" + }, + "record": { + "CNAME": "temelkov.github.io" + } +} diff --git a/domains/ten.json b/domains/ten.json new file mode 100644 index 000000000..932bd5998 --- /dev/null +++ b/domains/ten.json @@ -0,0 +1,12 @@ +{ + "description": "Ten's Landing Page", + "repo": "https://github.com/TenDRILLL/tendrilll.github.io", + "owner": { + "username": "TenDRILLL", + "email": "", + "discord": "Ten#0010" + }, + "record": { + "CNAME": "tendrilll.github.io" + } +} diff --git a/domains/tenvy.json b/domains/tenvy.json new file mode 100644 index 000000000..fffb55bcc --- /dev/null +++ b/domains/tenvy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Tenvy", + "email": "riskykusyon.school@gmail.com" + }, + "record": { + "URL": "https://tenvy.vercel.app" + } +} diff --git a/domains/terminalbmr.json b/domains/terminalbmr.json new file mode 100644 index 000000000..336a1fc63 --- /dev/null +++ b/domains/terminalbmr.json @@ -0,0 +1,11 @@ +{ + "description": "Terminal portfolio website", + "repo": "https://rayxstudioz.github.io/terminal-portfolio", + "owner": { + "username": "RAYXSTUDIOZ", + "email": "dvappsab@gmail.com" + }, + "record": { + "CNAME": "rayxstudioz.github.io" + } +} diff --git a/domains/terra.json b/domains/terra.json deleted file mode 100644 index 85ce7078f..000000000 --- a/domains/terra.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "description": "Portfolio - a simple portfolio website for TerraPlayz. It's in Beta Stages. Thanks for visiting my Portfolio! I hope to see you again. This also serves as a mail for my domain", - "repo": "https://github.com/TerraPlayz/portfolio-cf", - "owner": { - "username": "TerraPlayz", - "email": "github@om.is-a.dev", - "twitter": "DaRealOmxpro" - }, - "record": { - "A": ["172.66.44.237","172.66.47.19"], - "MX": ["mx1.improvmx.com","mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} diff --git a/domains/terroid.json b/domains/terroid.json index e21dc54ac..d2864ab76 100644 --- a/domains/terroid.json +++ b/domains/terroid.json @@ -3,8 +3,7 @@ "repo": "https://github.com/skandabhairava/skandabhairava.github.io", "owner": { "username": "skandabhairava", - "email": "skandabhairava@gmail.com", - "twitter": "TerroidYT" + "email": "skandabhairava@gmail.com" }, "record": { "CNAME": "skandabhairava.github.io" diff --git a/domains/tesla.json b/domains/tesla.json deleted file mode 100644 index 5380cdea2..000000000 --- a/domains/tesla.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "tesla's personal website", - "repo": "https://github.com/hapi-dev", - "owner": { - "username": "tesla", - "email": "stream.hapi@gmail.com" - }, - "record": { - "CNAME": "arindev.tech" - } -} diff --git a/domains/tessa.json b/domains/tessa.json deleted file mode 100644 index 7fef11872..000000000 --- a/domains/tessa.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My main site :)", - "repo": "https://replit.com/@RoBlockHead/tessais-adev", - "owner": { - "username": "RoBlockHead", - "email": "tessa7551@gmail.com" - }, - "record": { - "CNAME": "06745170-24e7-4954-a619-2860f8b395c2.repl.co" - } -} diff --git a/domains/test.chiragnahata.json b/domains/test.chiragnahata.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/test.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/test.cutedog5695.json b/domains/test.cutedog5695.json new file mode 100644 index 000000000..f38aad1e7 --- /dev/null +++ b/domains/test.cutedog5695.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "", + "discord": "716306888492318790", + "twitter": "cutedog5695" + }, + "record": { + "CNAME": "glistening-faloodeh-84f4b1.netlify.app" + } +} diff --git a/domains/test.json b/domains/test.json new file mode 100644 index 000000000..b62378c74 --- /dev/null +++ b/domains/test.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TerraPlayz", + "email": "omsenjalia@gmail.com", + "discord": "248470317540966443" + }, + + "record": { + "A": ["11.11.11.11"] + } +} diff --git a/domains/test.trung.json b/domains/test.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/test.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/testluxxy.json b/domains/testluxxy.json new file mode 100644 index 000000000..a3c84983f --- /dev/null +++ b/domains/testluxxy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Luxxy-GF", + "email": "deniedaddicted@gmail.com" + }, + "record": { + "A": ["178.33.110.212"] + } +} diff --git a/domains/tetris.vi0leta.json b/domains/tetris.vi0leta.json new file mode 100644 index 000000000..def51632a --- /dev/null +++ b/domains/tetris.vi0leta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vi0letadev", + "email": "vi0leta@riseup.net" + }, + "record": { + "A": ["37.27.4.76"] + } +} diff --git a/domains/texh.json b/domains/texh.json new file mode 100644 index 000000000..1b824caf8 --- /dev/null +++ b/domains/texh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Techtonic709", + "email": "techtonic709@gmail.com" + }, + + "record": { + "MX": ["mx1.improvmx.com"] + } +} diff --git a/domains/texnogrand-dev.json b/domains/texnogrand-dev.json new file mode 100644 index 000000000..0c4c6529f --- /dev/null +++ b/domains/texnogrand-dev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muhamamdyusuf-kurbonov", + "email": "muhammadyusuf.kurbonov2002@gmail.com" + }, + "record": { + "A": ["213.199.33.74"] + } +} diff --git a/domains/tf.json b/domains/tf.json new file mode 100644 index 000000000..c3e6c7971 --- /dev/null +++ b/domains/tf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WaspZix", + "email": "160319648+WaspZix@users.noreply.github.com" + }, + "record": { + "CNAME": "thefirst.glitch.me" + } +} diff --git a/domains/th3.json b/domains/th3.json new file mode 100644 index 000000000..d34330fea --- /dev/null +++ b/domains/th3.json @@ -0,0 +1,11 @@ +{ + "description": "Th3-C0der's subdomain", + "repo": "https://github.com/Th3-C0der/Th3-C0der.github.io", + "owner": { + "username": "Th3-C0der", + "email": "Th3Drag8N@proton.me" + }, + "record": { + "CNAME": "th3-c0der.github.io" + } +} diff --git a/domains/thai.json b/domains/thai.json new file mode 100644 index 000000000..05a5f75be --- /dev/null +++ b/domains/thai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CallMeIAmTDF", + "email": "thai0203966@nuce.edu.vn" + }, + "record": { + "CNAME": "4mhcau20.up.railway.app" + } +} diff --git a/domains/thaidang.json b/domains/thaidang.json new file mode 100644 index 000000000..55b58bae2 --- /dev/null +++ b/domains/thaidang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CallMeIAmTDF", + "email": "thai0203966@nuce.edu.vn" + }, + "record": { + "CNAME": "pridysay.up.railway.app" + } +} diff --git a/domains/thaihung.json b/domains/thaihung.json new file mode 100644 index 000000000..1b0388685 --- /dev/null +++ b/domains/thaihung.json @@ -0,0 +1,23 @@ +{ + "owner": { + "username": "ThaiHung4", + "email": "contact.hungg@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 892626947430051900" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/thakuraman.json b/domains/thakuraman.json new file mode 100644 index 000000000..663e3228c --- /dev/null +++ b/domains/thakuraman.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aman7thakurr", + "email": "amant8425@gmail.com", + "discord": "523813766295715851" + }, + + "record": { + "CNAME": "aman7thakurr.github.io" + } +} diff --git a/domains/thamizh.json b/domains/thamizh.json index a7af86108..e4d2b7a94 100644 --- a/domains/thamizh.json +++ b/domains/thamizh.json @@ -1,12 +1,12 @@ { - "description": "for my personal website representing that i'm a dev", - "repo": "https://github.com/ThisisThamizh/ThisisThamizh.github.io", - "owner": { - "username": "ThisisThamizh", - "email": "venthank88@gmail.com", - "twitter": "k_thamizhventhu" - }, - "record": { - "CNAME": "ThisisThamizh.github.io" - } -} + "description": "for my personal website representing that i'm a dev", + "repo": "https://github.com/ThisisThamizh/ThisisThamizh.github.io", + "owner": { + "username": "ThisisThamizh", + "email": "venthank88@gmail.com", + "twitter": "k_thamizhventhu" + }, + "record": { + "CNAME": "ThisisThamizh.github.io" + } +} diff --git a/domains/thanawat.json b/domains/thanawat.json new file mode 100644 index 000000000..ab968c9cb --- /dev/null +++ b/domains/thanawat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Thanawatttt", + "email": "tanawattawillha@gmail.com", + "discord": "803249368533696512" + }, + + "record": { + "CNAME": "thanawatttt.github.io" + } +} diff --git a/domains/thanbv1510.json b/domains/thanbv1510.json index 3a8f8dc7b..5aaf5ff3c 100644 --- a/domains/thanbv1510.json +++ b/domains/thanbv1510.json @@ -1,12 +1,12 @@ { - "description": "thanbv1510's personal website", - "repo": "https://github.com/thanbv1510/thanbv1510.github.io", - "owner": { - "username": "thanbv1510", - "email": "thanbv1510@gmail.com", - "twitter": "thanbv1510" - }, - "record": { - "CNAME": "thanbv1510.github.io" - } + "description": "thanbv1510's personal website", + "repo": "https://github.com/thanbv1510/thanbv1510.github.io", + "owner": { + "username": "thanbv1510", + "email": "thanbv1510@gmail.com", + "twitter": "thanbv1510" + }, + "record": { + "CNAME": "thanbv1510.github.io" + } } diff --git a/domains/tharindudarshana.json b/domains/tharindudarshana.json new file mode 100644 index 000000000..1f0ae2fef --- /dev/null +++ b/domains/tharindudarshana.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "1234Tharindu", + "email": "dehipitiya055@gmail.com" + }, + "record": { + "CNAME": "1234tharindu.github.io" + } +} diff --git a/domains/tharinduj.json b/domains/tharinduj.json index 2e6cfc362..3ed541681 100644 --- a/domains/tharinduj.json +++ b/domains/tharinduj.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tharindudj", - "email": "tharindujayakody21@gmail.com" - }, - "record": { - "URL": "https://tharindujayakody.me" - } + "owner": { + "username": "tharindudj", + "email": "tharindujayakody21@gmail.com" + }, + "record": { + "URL": "https://tharindujayakody.me" + } } diff --git a/domains/tharukrenuja.json b/domains/tharukrenuja.json new file mode 100644 index 000000000..90f9db265 --- /dev/null +++ b/domains/tharukrenuja.json @@ -0,0 +1,12 @@ +{ + "description": "Just Anohter Portfolio", + "repo": "https://github.com/TharukRenuja/tharukrenuja.github.io", + "owner": { + "username": "TharukRenuja", + "email": "contact.tharukrenuja@gmail.com", + "twitter": "TRenuja" + }, + "record": { + "CNAME": "tharukrenuja.github.io" + } +} diff --git a/domains/thatkoslz.json b/domains/thatkoslz.json new file mode 100644 index 000000000..d1001eed9 --- /dev/null +++ b/domains/thatkoslz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iakzs", + "email": "iakzs@protonmail.com" + }, + "record": { + "URL": "https://koslz.com/" + } +} diff --git a/domains/thatoddshade.json b/domains/thatoddshade.json new file mode 100644 index 000000000..4df230f86 --- /dev/null +++ b/domains/thatoddshade.json @@ -0,0 +1,11 @@ +{ + "description": "thatoddshade's personal website", + "repo": "https://github.com/thatoddshade/thatoddshade.github.io", + "owner": { + "username": "thatoddshade", + "email": "thatoddshade+contact@proton.me" + }, + "record": { + "CNAME": "thatoddshade.github.io" + } +} diff --git a/domains/the-green-light.json b/domains/the-green-light.json new file mode 100644 index 000000000..bec4a9ac0 --- /dev/null +++ b/domains/the-green-light.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Senky-Dev", + "email": "agarwala.keshav10@gmail.com" + }, + "record": { + "CNAME": "the-green-light.pages.dev" + } +} diff --git a/domains/theamazing0.json b/domains/theamazing0.json new file mode 100644 index 000000000..73d82c14e --- /dev/null +++ b/domains/theamazing0.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "theamazing0", + "email": "ksamvid@gmail.com" + }, + "record": { + "URL": "https://git.projectsegfau.lt/theamazing0" + } +} diff --git a/domains/theark.json b/domains/theark.json deleted file mode 100644 index d0966df35..000000000 --- a/domains/theark.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Theark's personal site", - "repo": "https://github.com/thearkxd/theark-website", - "owner": { - "username": "thearkxd", - "email": "thearkxd@gmail.com" - }, - "record": { - "URL": "https://theark.tk" - } -} diff --git a/domains/theavian.json b/domains/theavian.json new file mode 100644 index 000000000..fa2d33050 --- /dev/null +++ b/domains/theavian.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portofolio website", + "repo": "https://github.com/theavian/theavian.github.io", + "owner": { + "username": "theavian", + "email": "avicrafty8@gmail.com", + "twitter": "Avian_studios" + }, + "record": { + "CNAME": "theavian.github.io" + } +} diff --git a/domains/thebidouilleur.json b/domains/thebidouilleur.json deleted file mode 100644 index a3df3cab4..000000000 --- a/domains/thebidouilleur.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "QJoly", - "email": "quentinjoly@thoughtless.eu" - }, - - "record": { - "A": ["5.39.75.213"] - } - } - diff --git a/domains/thecode-breaker.json b/domains/thecode-breaker.json index e5b03377d..b174bb63a 100644 --- a/domains/thecode-breaker.json +++ b/domains/thecode-breaker.json @@ -3,7 +3,7 @@ "repo": "https://github.com/theCode-Breaker/theCode-Breaker.github.io", "owner": { "username": "theCode-Breaker", - "email": "limit6@protonmail.com" + "email": "theCodeBreaker.dev@gmail.com" }, "record": { "CNAME": "thecode-breaker.github.io" diff --git a/domains/thecode764.json b/domains/thecode764.json new file mode 100644 index 000000000..c5db43f66 --- /dev/null +++ b/domains/thecode764.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Thecode764", + "email": "artin962354@proton.me" + }, + "record": { + "URL": "https://thecode764.github.io" + } +} diff --git a/domains/theconcepteur.json b/domains/theconcepteur.json index 43c211696..d4033c069 100644 --- a/domains/theconcepteur.json +++ b/domains/theconcepteur.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "th3conc3pt3ur", + "email": "conceptordev@gmail.com" + }, - { - "owner": { - "username": "th3conc3pt3ur", - "email": "conceptordev@gmail.com" - }, - - "record": { - "A": ["37.187.6.109"] - } - } - + "record": { + "A": ["37.187.6.109"] + } +} diff --git a/domains/thedev.json b/domains/thedev.json deleted file mode 100644 index 32bfebb53..000000000 --- a/domains/thedev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "thedev132", - "email": "thedev132@gmail.com" - }, - "record": { - "A": ["138.2.237.127"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } - } diff --git a/domains/thedt.json b/domains/thedt.json new file mode 100644 index 000000000..ca92d70ce --- /dev/null +++ b/domains/thedt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thedtvn", + "email": "duongtuan30306@gmail.com" + }, + "record": { + "CNAME": "thedt-portfolio.pages.dev" + } +} diff --git a/domains/theekshana.json b/domains/theekshana.json deleted file mode 100644 index 26334fa38..000000000 --- a/domains/theekshana.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "TheekshanaSL", - "email": "theekshana@technologist.com" - }, - - "record": { - "CNAME": "hashnode.network" - } - } - \ No newline at end of file diff --git a/domains/theh2so4.json b/domains/theh2so4.json deleted file mode 100644 index 6e0647b8c..000000000 --- a/domains/theh2so4.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "theh2so4", - "email": "theh2so4@protonmail.com" - }, - - "record": { - "A": ["185.27.134.148"] - } - } - \ No newline at end of file diff --git a/domains/thehackerdude1083.json b/domains/thehackerdude1083.json index d7cdb5a36..965bd6e5d 100644 --- a/domains/thehackerdude1083.json +++ b/domains/thehackerdude1083.json @@ -1,11 +1,11 @@ { - "description": "Running my new website", - "repo": "https://github.com/TheHackerDude1083/TheHackerDude1083.github.io", - "owner": { - "username": "TheHackerDude1083", - "email": "shaheeransari57@gmail.com" - }, - "record": { - "CNAME": "TheHackerDude1083.github.io" - } -} + "description": "Running my new website", + "repo": "https://github.com/TheHackerDude1083/TheHackerDude1083.github.io", + "owner": { + "username": "TheHackerDude1083", + "email": "shaheeransari57@gmail.com" + }, + "record": { + "CNAME": "TheHackerDude1083.github.io" + } +} diff --git a/domains/theharry.json b/domains/theharry.json new file mode 100644 index 000000000..7e9a5a9d2 --- /dev/null +++ b/domains/theharry.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Aceharry16", + "email": "aceharry16@gmail.com", + "discord": "1229076684066783252" + }, + + "record": { + "A": ["69.197.135.202"] + } + } + \ No newline at end of file diff --git a/domains/theheavy.json b/domains/theheavy.json new file mode 100644 index 000000000..882c5f174 --- /dev/null +++ b/domains/theheavy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PyNexus-PYPI", + "email": "", + "discord": "1266113644643614803", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q0hi0eXIZoyV_qha54TNehZhpAbeSyzQI1OIT2wjQvArwviwVaqn4AKQj4LWMxDJFDu7KgAL-k336uR2UF26HMQ1h3BhR9t8xq_UdDJLrNv9HOyxBzLrVWZp3yveH__Cli62iKkBzJCu-0q2IbThvnZEhyyELgHBhXMot5eqWpm5vE_MGICc50lcz7vZNDPJTEGiie6bLdbvNPfxiXVugjhm7WW_tNoSheHSSOGr3asBTLFpl_46d-KGH07uKCc_wGgn9rz26qY0dwhaqTRDmq1lWn4_yuknefBHVw51vpk_C-7NA0lMp711CfPeqw0fKQT5n-QCSp4JfyYgXJkQhg.S6gJHj5xinUubawSe5bbEg.HR9U7iv7mJJAXQ1u5U88vuT0W9XbCd74QpxNl9Swn0QZ7DZs4foP8VbwLE7-L1EmEog8VSHnVWnrJO3SY06DZscCELHocxxPrOpe7cTcpomW3Sx4_fItRqIWV4OWl1Lr.qqnRh7IvZACgHMU5bwXM3g" + }, + "record": { + "CNAME": "pynexus-pypi.github.io" + } +} diff --git a/domains/thehuytong.json b/domains/thehuytong.json new file mode 100644 index 000000000..5099d925f --- /dev/null +++ b/domains/thehuytong.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thehuytong", + "email": "tongnguyen.hahuy@gmail.com" + }, + "record": { + "CNAME": "thehuytong.github.io" + } +} diff --git a/domains/themagicmush.json b/domains/themagicmush.json deleted file mode 100644 index 271c99eca..000000000 --- a/domains/themagicmush.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Kobe523", - "email": "kobeni523@gmail.com", - "discord": "TheMagicMushoom#9999" - }, - "record": { - "URL": "https://its.themagicmush.repl.co/" - } -} diff --git a/domains/thenoppy12.json b/domains/thenoppy12.json new file mode 100644 index 000000000..bca17f9f9 --- /dev/null +++ b/domains/thenoppy12.json @@ -0,0 +1,12 @@ +{ + "description": "Main Page", + "repo": "https://github.com/thenoppy12/thenoppy12.github.io", + "owner": { + "username": "BussyBakks", + "email": "lengochuykiengiang@gmail.com", + "discord": ".thenoppy12" + }, + "record": { + "CNAME": "thenoppy12.github.io" + } +} diff --git a/domains/theo.json b/domains/theo.json new file mode 100644 index 000000000..5efe7f504 --- /dev/null +++ b/domains/theo.json @@ -0,0 +1,12 @@ +{ + "description": "Personal website (blog and etc).", + "repo": "https://github.com/DrTheodor/drtheodor.github.io", + "owner": { + "username": "DrTheodor", + "email": "teodor2k8@gmail.com", + "discord": "691552610519613440" + }, + "record": { + "CNAME": "drtheodor.github.io" + } +} diff --git a/domains/thepatik.json b/domains/thepatik.json deleted file mode 100644 index 5625c2367..000000000 --- a/domains/thepatik.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "patik123", - "email": "patik.developer@outlook.com" - }, - "record": { - "CNAME": "www.thepatik.com" - } - } - diff --git a/domains/thepersonalsite.json b/domains/thepersonalsite.json new file mode 100644 index 000000000..5bb80550d --- /dev/null +++ b/domains/thepersonalsite.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JesseHoekema", + "email": "jessehoekema@icloud.com" + }, + "record": { + "CNAME": "jessehoekema.github.io" + } +} diff --git a/domains/theprofessionalbinbag.json b/domains/theprofessionalbinbag.json new file mode 100644 index 000000000..ba13924a1 --- /dev/null +++ b/domains/theprofessionalbinbag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Soapiexoxoxo", + "email": "ellieroberts240506@outlook.com" + }, + "record": { + "URL": "https://free-5118674.webadorsite.com/" + } +} diff --git a/domains/theresonance.json b/domains/theresonance.json index 1fbb2f1b3..3d4d45094 100644 --- a/domains/theresonance.json +++ b/domains/theresonance.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Maia313", - "email": "medeea@rocketmail.com" - }, - "record": { - "CNAME": "theresonance.com" - } - } - +{ + "owner": { + "username": "Maia313", + "email": "medeea@rocketmail.com" + }, + "record": { + "CNAME": "theresonance.com" + } +} diff --git a/domains/thesanju.json b/domains/thesanju.json new file mode 100644 index 000000000..eae742e62 --- /dev/null +++ b/domains/thesanju.json @@ -0,0 +1,12 @@ +{ + "description": "personal portfolio website", + "repo": "https://github.com/thesanju/thesanju.github.io", + "owner": { + "username": "thesanju", + "email": "sanjayjr1official@gmail.com", + "twitter": "Sanjay69__" + }, + "record": { + "CNAME": "thesanju.github.io" + } +} diff --git a/domains/thesct22.json b/domains/thesct22.json index 8e8f03109..0019d7a83 100644 --- a/domains/thesct22.json +++ b/domains/thesct22.json @@ -1,11 +1,9 @@ { - "description": "Social media website project", - "repo": "https://github.com/thesct22", "owner": { "username": "thesct22", "email": "sharathct22@gmail.com" }, "record": { - "CNAME": "34.67.228.107.xip.io" + "CNAME": "thesct22.github.io" } } diff --git a/domains/thesonofdevilhunter.json b/domains/thesonofdevilhunter.json new file mode 100644 index 000000000..cb97c648f --- /dev/null +++ b/domains/thesonofdevilhunter.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "NerdsForGaming", + "email": "thesonofdevilhunter1@gmail.com" + }, + + "record": { + "CNAME": "nerdsforgaming.github.io" + } +} diff --git a/domains/thesyed.json b/domains/thesyed.json new file mode 100644 index 000000000..7d3cb51d5 --- /dev/null +++ b/domains/thesyed.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website and blog", + "repo": "https://github.com/AlephaNull/AlephaNull.github.io", + "owner": { + "username": "AlephaNull", + "email": "ay.syed@pm.me" + }, + "record": { + "CNAME": "alephanull.github.io" + } +} diff --git a/domains/thet3o.json b/domains/thet3o.json index ba7ab32d7..e05af27c5 100644 --- a/domains/thet3o.json +++ b/domains/thet3o.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "thet3o", + "email": "thet3o@yahoo.com" + }, - { - "owner": { - "username": "thet3o", - "email": "thet3o@yahoo.com" - }, - - "record": { - "MX": ["mx.mailtie.com"] - } - } - \ No newline at end of file + "record": { + "MX": ["mx.mailtie.com"] + } +} diff --git a/domains/thetechnikfreak.json b/domains/thetechnikfreak.json new file mode 100644 index 000000000..b3fcc5b13 --- /dev/null +++ b/domains/thetechnikfreak.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "thetechnikfreak", + "email": "", + "discord": "TheTechnikFreak#3314" + }, + "record": { + "A": [ + "52.21.33.16", + "18.184.197.212" + ], + "MX": [ + "mx.zoho.eu", + "mx2.zoho.eu", + "mx3.zoho.eu" + ] + } +} diff --git a/domains/thewonglife.json b/domains/thewonglife.json new file mode 100644 index 000000000..a223ee952 --- /dev/null +++ b/domains/thewonglife.json @@ -0,0 +1,12 @@ +{ + "description": "Nicholas Wong's Personal Subdomain", + "repo": "https://github.com/TheWongLife/TheWongLife.github.io", + "owner": { + "username": "TheWongLife", + "email": "nwong27@illinois.edu", + "twitter": "The_Wong_Life" + }, + "record": { + "CNAME": "thewonglife.github.io" + } +} diff --git a/domains/thiago.json b/domains/thiago.json new file mode 100644 index 000000000..015231128 --- /dev/null +++ b/domains/thiago.json @@ -0,0 +1,13 @@ +{ + "description": "Thiago S. Teixeira blog", + "repo": "https://github.com/teixeirazeus/teixeirazeus.github.io", + "owner": { + "username": "teixeirazeus", + "email": "teixeira.zeus@gmail.com", + "twitter": "ThiagoSTeixeir4", + "discord": "Thiago S Teixeira#0657" + }, + "record": { + "CNAME": "teixeirazeus.github.io" + } +} diff --git a/domains/thiagomarsili.json b/domains/thiagomarsili.json new file mode 100644 index 000000000..e541d8520 --- /dev/null +++ b/domains/thiagomarsili.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/thiago-marsili/thiago-marsili.github.io", + "owner": { + "username": "Thiago-Marsili", + "email": "thihoma@gmail.com" + }, + "record": { + "CNAME": "thiago-marsili.github.io" + } +} diff --git a/domains/thikhathali.json b/domains/thikhathali.json new file mode 100644 index 000000000..ee33d6291 --- /dev/null +++ b/domains/thikhathali.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Thikhathali", + "email": "thikhamataboge@gmail.com" + }, + "record": { + "CNAME": "thikhathali.github.io" + } +} diff --git a/domains/thiomains.json b/domains/thiomains.json new file mode 100644 index 000000000..bb367ffec --- /dev/null +++ b/domains/thiomains.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "onem0", + "email": "kremersneo0@gmail.com" + }, + "record": { + "URL": "http://bindergamer.de" + } +} diff --git a/domains/this-guy.json b/domains/this-guy.json new file mode 100644 index 000000000..a270af88d --- /dev/null +++ b/domains/this-guy.json @@ -0,0 +1,11 @@ +{ + "description": "This Guy is a Dev.", + + "owner": { + "username": "ochotadariusz", + "email": "ochota.dariusz@gmail.com" + }, + "record": { + "CNAME": "ochotadariusz.github.io" + } +} diff --git a/domains/this.json b/domains/this.json deleted file mode 100644 index e25494cd9..000000000 --- a/domains/this.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This, is a dev.", - "owner": { - "username": "DaInfLoop", - "email": "backupharoongames100@gmail.com" - }, - "record": { - "URL": "https://haroon.repl.co" - }, - "extra-info": "I understand if this doesn't get merged, it was just a funny joke me and my friend made because the subdomain wasn't taken." -} diff --git a/domains/thisiskeanyvy.json b/domains/thisiskeanyvy.json new file mode 100644 index 000000000..32b304d01 --- /dev/null +++ b/domains/thisiskeanyvy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "thisiskeanyvy", + "email": "notifkeanyvy@gmail.com" + }, + + "record": { + "CNAME": "thisiskeanyvy.pages.dev" + } +} diff --git a/domains/thomasc.json b/domains/thomasc.json index 0ad0adbd4..93fdb9fbc 100644 --- a/domains/thomasc.json +++ b/domains/thomasc.json @@ -1,11 +1,11 @@ { - "description": "Hopefully Thomas Croft's is-a.dev site", - "repo": "https://github.com/thomascf/thomascf.github.io", - "owner": { - "username": "thomascf", - "email": "thomas.croft@pm.me" - }, - "record": { - "CNAME": "thomascf.github.io" - } - } \ No newline at end of file + "description": "Hopefully Thomas Croft's is-a.dev site", + "repo": "https://github.com/thomascf/thomascf.github.io", + "owner": { + "username": "thomascf", + "email": "thomas.croft@pm.me" + }, + "record": { + "CNAME": "thomascf.github.io" + } +} diff --git a/domains/thomasfrost.json b/domains/thomasfrost.json deleted file mode 100644 index 58ecfe7d2..000000000 --- a/domains/thomasfrost.json +++ /dev/null @@ -1,9 +0,0 @@ - { - "owner": { - "username": "frosttho", - "email": "thomas@ksg-media.de" - }, - "record": { - "A": ["167.71.34.179"] - } - } diff --git a/domains/thomash.json b/domains/thomash.json new file mode 100644 index 000000000..6bc9e02a6 --- /dev/null +++ b/domains/thomash.json @@ -0,0 +1,10 @@ +{ + "description": "Personal site", + "owner": { + "username": "Tomax47", + "email": "tammam744@gmail.com" + }, + "record": { + "URL": "https://portfolio-rzb0.onrender.com" + } + } diff --git a/domains/thund3r.json b/domains/thund3r.json new file mode 100644 index 000000000..87d348127 --- /dev/null +++ b/domains/thund3r.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Harsh06-afk", + "email": "hvs8380@gmail.com" + }, + "record": { + "CNAME": "harsh06-afk.github.io" + } +} diff --git a/domains/tianji.stefdp.json b/domains/tianji.stefdp.json new file mode 100644 index 000000000..13881f84f --- /dev/null +++ b/domains/tianji.stefdp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/tiantcl.json b/domains/tiantcl.json deleted file mode 100644 index 9c66dd642..000000000 --- a/domains/tiantcl.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "TianTcl's profile", - "repo": "https://github.com/TianTcl/TianTcl", - "owner": { - "username": "TianTcl", - "email": "tclwebguest@gmail.com" - }, "record": { - "CNAME": "info.tiantcl.net" - - } -} \ No newline at end of file diff --git a/domains/tibor.json b/domains/tibor.json new file mode 100644 index 000000000..6b30c27e7 --- /dev/null +++ b/domains/tibor.json @@ -0,0 +1,11 @@ +{ + "description": "Something for my profile page", + "repo": "https://github.com/tibor309/tibor309.github.io", + "owner": { + "username": "tibor309", + "email": "haxite@proton.me" + }, + "record": { + "CNAME": "tibor309.github.io" + } +} diff --git a/domains/ticketkit.json b/domains/ticketkit.json new file mode 100644 index 000000000..3a230ac41 --- /dev/null +++ b/domains/ticketkit.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "blaze-099", + "email": "", + "discord": "1186691290759434350" + }, + "record": { + "CNAME": "ticketsx.netlify.app" + } +} + diff --git a/domains/tictactoe.amaankazi.json b/domains/tictactoe.amaankazi.json new file mode 100644 index 000000000..6e8f6352c --- /dev/null +++ b/domains/tictactoe.amaankazi.json @@ -0,0 +1,11 @@ +{ + "description": "Tic Tac Toe (X & O) local, online and bot", + "repo": "https://github.com/Amaan-Kazi/website-TicTacToe", + "owner": { + "username": "Amaan-Kazi", + "email": "amaankazi1793@gmail.com" + }, + "record": { + "CNAME": "tictactoe-amaankazi.pages.dev" + } +} diff --git a/domains/tien.json b/domains/tien.json new file mode 100644 index 000000000..90b97603d --- /dev/null +++ b/domains/tien.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Developer Start Page", + "repo": "https://github.com/TonyN678/TonyN678.github.io", + "owner": { + "username": "TonyN678", + "email": "tientonybest2006@gmail.com" + }, + "record": { + "CNAME": "TonyN678.github.io" + } +} diff --git a/domains/tienanh109.json b/domains/tienanh109.json new file mode 100644 index 000000000..ed37f4688 --- /dev/null +++ b/domains/tienanh109.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "tienanh109", + "email": "", + "discord": "835382592198410310", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Lqj0olJGqYoV1vIhbjVwI6zkakO-MvyGqGDhftRohIILV6wLUd_rOI_UdMQuwkS_XX_iE3YW8y1mh7ft0S3C7kBHL_nHI_wJp8tsiWTZXYyUtjPCaMCm5Qtgf73_u9DW2GAhhcLSIWVmoA8vz5n58XIDA6a7hLI4O8vVmoGIjLy1wFx1qLdqM_Ln8T-o3OUTw5KxPZTCzlurbkd7cO-LsI4DyM3Hpo4YvEi7WwEHqFlGyUJ70OtjGlHQzm-gKG6BtT4EQmQZ_e27IKYnY3HLQBEIY0nAmy1B_syEgeu5s8JmoYwpbP3hnl79LzPebzTRFrwAA2i5s9FdG5aehW9zPQ.GkoYvRKA5lYLM7CVh4-vmg.jCVfsa6h3D0JuOtipDBpSq_2YyqyQytyfCsNnvbzvYQRW8H-wCsX6thhfFtba4bhfF8lsRsaqamuExTfFkFOIcHjPQqydxObv3Hd9VkRizo.Sge_zUOtqkDe7vBOcaJdLA" + }, + + "record": { + "CNAME": "tienanh109.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/tientiny.json b/domains/tientiny.json new file mode 100644 index 000000000..115fad113 --- /dev/null +++ b/domains/tientiny.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Pdmthong05", + "email": "pdmthong05@protonmail.com" + }, + "record": { + "A": ["198.91.81.11"] + } +} diff --git a/domains/tigerbyte.json b/domains/tigerbyte.json deleted file mode 100644 index d4668d8a3..000000000 --- a/domains/tigerbyte.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Add some description", - "repo": "https://github.com/TigerbyteDev", - "owner": { - "username": "TigerbyteDev", - "email": "tigerbytedev@gmail.com" - }, - "record": { - "URL": "https://www.tigerbyte.dev" - } -} diff --git a/domains/tih.json b/domains/tih.json new file mode 100644 index 000000000..5c3385aaa --- /dev/null +++ b/domains/tih.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FatihArridho", + "email": "m.fatiharridho@gmail.com" + }, + "record": { + "CNAME": "tih-9t0.pages.dev" + } +} diff --git a/domains/tim-q.json b/domains/tim-q.json deleted file mode 100644 index d489e8381..000000000 --- a/domains/tim-q.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My personal portfolio", - "owner": { - "username": "tim-it-ger", - "email": "contact@tim-q.de", - "discord": "Vatic#0920" - }, - "record": { - "CNAME": "tim-q.de" - } -} diff --git a/domains/timka.json b/domains/timka.json deleted file mode 100644 index 65032befa..000000000 --- a/domains/timka.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "timka.space", - "repo": "https://github.com/timka-123/timka-123.github.io", - "owner": { - "username": "Timur", - "email": "vakzn@yandex.ru" - }, - "record": { - "CNAME": "timka.space" - } -} - diff --git a/domains/timo.json b/domains/timo.json new file mode 100644 index 000000000..5c0954751 --- /dev/null +++ b/domains/timo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sartimo", + "email": "sartimo10@gmail.com" + }, + "record": { + "URL": "https://sartimo.surge.sh" + } +} diff --git a/domains/timoelrichs.json b/domains/timoelrichs.json new file mode 100644 index 000000000..1bb1e9cac --- /dev/null +++ b/domains/timoelrichs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TimOelrichs", + "email": "timoelrichs@gmail.com" + }, + "record": { + "URL": "https://peppermint-theater-276.notion.site/double-cherry-emulations-a3fd7ecc2c3144b5973928f3e196ce9e?pvs=4" + } +} diff --git a/domains/timotheelefebvre.json b/domains/timotheelefebvre.json index 5a26e08be..96d552370 100644 --- a/domains/timotheelefebvre.json +++ b/domains/timotheelefebvre.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "zkimi", - "email": "timothee.lefebvre@edu.esiee.fr" - }, - "record": { - "URL": "https://timotheelefebvre.fr" - } - } - +{ + "owner": { + "username": "zkimi", + "email": "timothee.lefebvre@edu.esiee.fr" + }, + "record": { + "URL": "https://timotheelefebvre.fr" + } +} diff --git a/domains/timothynn.json b/domains/timothynn.json index ee437d5de..9d70f9a7a 100644 --- a/domains/timothynn.json +++ b/domains/timothynn.json @@ -1,13 +1,12 @@ { - "description": "timothynn's personal website", - "repo": "https://github.com/timothynn/timothynn.github.io", - "owner": { - "username": "timothynn", - "email": "timothynn@gmail.com", - "twitter": "im4_tim" - }, - "record": { - "CNAME": "timothynn.github.io" - } -} - + "description": "timothynn's personal website", + "repo": "https://github.com/timothynn/timothynn.github.io", + "owner": { + "username": "timothynn", + "email": "timothynn08@gmail.com", + "twitter": "timothynn_" + }, + "record": { + "CNAME": "timothynn.github.io" + } +} diff --git a/domains/tisch.json b/domains/tisch.json deleted file mode 100644 index 3cf635acd..000000000 --- a/domains/tisch.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Small-talking", - "email": "schreiber.robin@icloud.com" - }, - "record": { - "CNAME": "isadev.pages.dev" - } - } - \ No newline at end of file diff --git a/domains/titan.json b/domains/titan.json new file mode 100644 index 000000000..916e8a963 --- /dev/null +++ b/domains/titan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bhoopesh369", + "email": "bhoopesh459@gmail.com" + }, + "record": { + "A": ["217.174.245.249"] + } +} diff --git a/domains/tiuri.json b/domains/tiuri.json deleted file mode 100644 index bf95c80a5..000000000 --- a/domains/tiuri.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "because im an dev", - "repo": "https://github.com/ituir", - "owner": { - "username": "ituir", - "email": "tiuri@server.tiuri.be" - }, - "record": { - "A": [ - "212.227.129.140" - ]} -} diff --git a/domains/tiwknowsall.json b/domains/tiwknowsall.json new file mode 100644 index 000000000..1ae7d1c64 --- /dev/null +++ b/domains/tiwknowsall.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tiwlinkskwazeh", + "email": "kwazehh@proton.me" + }, + "record": { + "URL": "https://tiw2.pages.dev" + } +} diff --git a/domains/tiyanof.json b/domains/tiyanof.json new file mode 100644 index 000000000..65dac000f --- /dev/null +++ b/domains/tiyanof.json @@ -0,0 +1,12 @@ +{ + "description": "To make my website more cooler bc is-a.dev domain is cool ngl", + "repo": "https://github.com/tiyanof/tiyanof.github.io", + "owner": { + "username": "tiyanof", + "email": "hannasophia1999@gmail.com", + "twitter": "s00op_" + }, + "record": { + "CNAME": "tiyanof.github.io" + } +} diff --git a/domains/tjr.json b/domains/tjr.json deleted file mode 100644 index 9e6affbad..000000000 --- a/domains/tjr.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "tjrgg", - "email": "hello@tjrgg.co" - }, - "record": { - "URL": "https://tjrgg.co" - } -} diff --git a/domains/tjrgg.json b/domains/tjrgg.json deleted file mode 100644 index 9e6affbad..000000000 --- a/domains/tjrgg.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "tjrgg", - "email": "hello@tjrgg.co" - }, - "record": { - "URL": "https://tjrgg.co" - } -} diff --git a/domains/tju-emg.json b/domains/tju-emg.json new file mode 100644 index 000000000..6df251cfd --- /dev/null +++ b/domains/tju-emg.json @@ -0,0 +1,11 @@ +{ + "description": "TJU Engineering Mechanics Guide", + "repo": "https://gitlab.com/tju-2021-engineering-mechanics-top-notch/tju-emg", + "owner": { + "username": "XiaoHuanwise", + "email": "1056366209@qq.com" + }, + "record": { + "URL": "https://tju-2021-engineering-mechanics-top-notch.gitlab.io/tju-emg" + } +} diff --git a/domains/tk.json b/domains/tk.json new file mode 100644 index 000000000..d69fe43fe --- /dev/null +++ b/domains/tk.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "thaddeuskkr", + "email": "", + "discord": "275830234262142978", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lLFfIW3EiPjgK-i-I5E56ERBvjl-ueM91PRyYM6wRClZzuoAj4nQyqL57dSZjhO_4Hbu4ZubbM1I_NI8Vt4_SlsFmxgL-hrvH9tf7rv-hX-TZtBWT_LQQUmhd1ZViGwELTly797M8VXZ39ER2gDmzruxjh8eQEHBCeJujWuUNicigehUgfk-Pk9rSchVlR3TUcwL-wylY58KvBLQwIeMmqUW2qs_E_iKCwk_8FQH-IUb_4W58r6wBHh6MqiP72Py9ssDbxrV59e1eGrQZXYJJM1rUZHoHzW1KX84FgT0QCGc1cSiV-Sdc3p6WceRY6Tf1akfTNjuga61kpgzluoTxg.QwFk8iYMpzefwXgErTr9cQ.kwMwAIrFDxCKfvSxx3Jpvb6ZkiFcp56BFoBg7KQMsYw4PBK60JNzjpMpgMqZ7jymnYJFTz5img3xLlxBF7UuUy_Z9MgHCHaVR3W7970smoQ.aBJoeQFaHiIyXkpQa1Gx7g" + }, + + "record": { + "CNAME": "tkkr.tplinkdns.com" + } +} diff --git a/domains/tlowng.json b/domains/tlowng.json new file mode 100644 index 000000000..043584104 --- /dev/null +++ b/domains/tlowng.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "longathelstan", + "email": "longaluminium10@gmail.com" + }, + "record": { + "URL": "https://guns.lol/longathelstan" + } +} diff --git a/domains/tmasikt.json b/domains/tmasikt.json new file mode 100644 index 000000000..1fe9f2e93 --- /dev/null +++ b/domains/tmasikt.json @@ -0,0 +1,12 @@ +{ + "description": "tmasikt's server record", + "owner": { + "username": "tmasikt", + "email": "tmasik.t.210@gmail.com", + "telegram": "tmasikt", + "discord": "tmasikt" + }, + "record": { + "A": ["194.190.169.59"] + } +} diff --git a/domains/tnt.json b/domains/tnt.json index 623cc1894..f0aba5f9c 100644 --- a/domains/tnt.json +++ b/domains/tnt.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "TurquoiseTNT", - "email": "turquoisetntmultimedia@gmail.com" - }, - "record": { - "CNAME": "turquoisetntgithubio-production-790d.up.railway.app" - } - } - +{ + "owner": { + "username": "SebTNT", + "email": "turquoisetntmultimedia@gmail.com" + }, + "record": { + "CNAME": "turquoisetnt.github.io" + } +} diff --git a/domains/to-zeeshan.json b/domains/to-zeeshan.json new file mode 100644 index 000000000..10ca6bbf1 --- /dev/null +++ b/domains/to-zeeshan.json @@ -0,0 +1,15 @@ +{ + "description": "zeeshan's email", + "repo": "https://zeeshan.is-a.dev", + "owner": { + "username": "m-zeeshan42" , + "email": "zeeshanashraf424@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/toadvillebay.json b/domains/toadvillebay.json new file mode 100644 index 000000000..f0d18e834 --- /dev/null +++ b/domains/toadvillebay.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "notghostvista", + "email": "", + "discord": "907846380486291486", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LcONtw79KouZ5CHwdUE19aYS3OPqr4tc-zYo1vI4hiyk_-q2ZWUnLchzwdBxILOFYfDPGPk9u7xrwmH4RsgNNNQlNUj5XYTeKPDE9EiSzf1vgWnJ-oQC9W75U_p0lxhf2gjlK1_6a7V8DLL8eYt_yEN65VM5z_oLxLDuGJycd-QfN9KB4M5GCnrDmaft36Izs8cF4fGy5PgI2Tg0xIg5UlPMK-q6UtQk16nFbMXMat8UxQ7Wha30qS5HNlI2iuCLQb8iwTcKnG4rpkWFS1UGQeBa2ZBRAJTDxdbaSfJqTb8b1zroVhhRc-txA1OBeLTuVaVzPvFAEwSsstGZXvEkmA.8Zfqqt1TD7xwGlYlsf5D0g.0IacuKDmXmhPtSrYzZAJj_gTPTwPNa1v7HRN0tOUoQMqwfj5avpIR4eCv7_tXPwpfk9hbjvXw3_AvVhlANGfOgO1GHhhIHltcDc2WWktd1c.WoQIyHoD15gcTvKBRhuM0w" + }, + + "record": { + "CNAME": "notghostvista.github.io" + } + } + \ No newline at end of file diff --git a/domains/toan.json b/domains/toan.json index bf17a4427..1f316ff9c 100644 --- a/domains/toan.json +++ b/domains/toan.json @@ -1,10 +1,9 @@ { - "description": "Hashnode Blog", - "repo": "https://github.com/ductoanvo", "owner": { - "username": "ductoanvo", - "email": "toan@duck.com" + "username": "toanducvo", + "email": "toan.ducvo@icloud.com" }, + "record": { "CNAME": "hashnode.network" } diff --git a/domains/toanbe.json b/domains/toanbe.json new file mode 100644 index 000000000..c31c077ae --- /dev/null +++ b/domains/toanbe.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "toanbe-fx", + "email": "", + "discord": "1087967418355298354", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.CBr3aBDorHmB0nLGXD36N8XrnF9YK1gDSL76CagExlL8dzLG0utH_v7RImqmijomCQyMqw9XnKx4l--TpTU_KR6VRSe2ThLbRNtVPDdqOJQ8NSU2uJakZRQ7uxgwwmwaWGzCnBKro3ErOHdxCxUBn0cXaWKxOrExcgIthOEMIRyZAp2lbNXtcPkCucQSJOPzf6LnQx4SrIQzAM5j9e29Re6M4uydSkFk_DiTbm1G8rdWO2SQvU6RoGCiwucP4gyKhyguzI2OlJNAzHuk_AhZQ1qC9cCe_6U3-r0BENgnOYK2gdya74UQO935b8DtBZSUMn1OPhI0S6JNQQ93V53hVA.1w2pShM2hooR-SMIitylhg.AQxZBPVk2W6Ng_2D-NMM_we3ofyruZiKUFNx6vdOKRpm_YL_OUlSm2yUnmV4QZREhcg2juab9g4mv3GFn2QhBwVT7gB5YJbzuLD7BmxpGtw.tv0XItK7pqpXqrgeVLYLyA" + }, + + "record": { + "CNAME": "toanbe-fx.github.io" + } + } + \ No newline at end of file diff --git a/domains/toast.json b/domains/toast.json new file mode 100644 index 000000000..46a7ea8c1 --- /dev/null +++ b/domains/toast.json @@ -0,0 +1,11 @@ +{ + "description": "toast's toast", + "repo": "https://github.com/lightly-toasted/lightly-toasted.github.io", + "owner": { + "username": "lightly-toasted", + "email": "tooast@duck.com" + }, + "record": { + "CNAME": "lightly-toasted.github.io" + } +} diff --git a/domains/toasted.json b/domains/toasted.json index c332e1d06..035cac414 100644 --- a/domains/toasted.json +++ b/domains/toasted.json @@ -1,11 +1,13 @@ { - "description": "The official portfolio of ToastedToast/Toastify. Built with Astro, Tailwind CSS, and Daisy UI.", - "repo": "https://github.com/ToastifyDev/portfolio", - "owner": { - "username": "ToastifyDev", - "email": "hey@toastify.tk" - }, - "record": { - "CNAME": "toastifydev.github.io" - } + "description": "official website of toastedtoast", + "repo": "https://github.com/ToastedDev/toasted.dev", + "owner": { + "username": "ToastedDev", + "email": "hey@toasted.dev", + "twitter": "toasteddev", + "discord": "nottca" + }, + "record": { + "URL": "https://toasted.dev" + } } diff --git a/domains/toastersticks.json b/domains/toastersticks.json deleted file mode 100644 index 08011c15b..000000000 --- a/domains/toastersticks.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "ToasterSticks", - "email": "matt.zhao.18@gmail.com" - }, - - "record": { - "CNAME": "border.hop.io" - } - } - \ No newline at end of file diff --git a/domains/toasty.json b/domains/toasty.json new file mode 100644 index 000000000..f2ebd0915 --- /dev/null +++ b/domains/toasty.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "toastyyyxd", + "email": "asaeasaeasae.x10@gmail.com", + "discord": "577480703302959104" + }, + + "record": { + "CNAME": "toasty.pages.dev" + } +} diff --git a/domains/tobey.json b/domains/tobey.json deleted file mode 100644 index cae03e4e3..000000000 --- a/domains/tobey.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Tobey is a dev", - "repo": "https://github.com/yebot", - "owner": { - "username": "yebot", - "email": "tobeyforsman@gmail.com" - }, - "record": { - "URL": "https://twitter.com/TobeyForsman" - } -} \ No newline at end of file diff --git a/domains/tobez.json b/domains/tobez.json new file mode 100644 index 000000000..f7ead48df --- /dev/null +++ b/domains/tobez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tobezdev", + "email": "therealtobes28@gmail.com" + }, + + "record": { + "URL": "https://discord.gg/c2UhTFyRBw" + } +} diff --git a/domains/toby.json b/domains/toby.json new file mode 100644 index 000000000..23f45f3e9 --- /dev/null +++ b/domains/toby.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "toby7002", + "email": "minhthoj27@icloud.com" + }, + + "record": { + "URL": "https://toby7002.github.io" + } +} diff --git a/domains/todo.json b/domains/todo.json deleted file mode 100644 index bd95f7c73..000000000 --- a/domains/todo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "api for my bot", - "repo": "https://github.com/brawlie/todo", - "owner": { - "username": "brawlie", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "ea156b14-963b-49f8-9d6e-f3fff240029c.repl.co" - } -} diff --git a/domains/tokisaki.json b/domains/tokisaki.json deleted file mode 100644 index 6e5551449..000000000 --- a/domains/tokisaki.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Enterprise ID Website", - "repo": "https://github.com/Enterprise-ID", - "owner": { - "username": "enterpriseid", - "email": "enterprise.id13@gmail.com" - }, - "record": { - "CNAME": "tokisaki.xyz" - } -} diff --git a/domains/tokito.json b/domains/tokito.json new file mode 100644 index 000000000..08414bbc1 --- /dev/null +++ b/domains/tokito.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "EnderHacker0", + "email": "", + "discord": "688203075533537281", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mx2HGCzfupu6IYLjnCroqa1FGZBkTG0bGMBEiEXKXl4HaW7g-kd3jayBZAUgG_0sIQDYMm8UA2lDuv3seLS1NaDUhj2X3Ty1y8V923cwSACAbjJYfy6lhYdXoY1lmkFJ_kbcTv285fRLepjkjdoh6M1nHp6SHNsTu0fsuMeXEPFAGI3gWFhikL-1umWb4TbGvhIphQvajL__95PLe7CR1l8CylCsTQFadCJAmbRgPMWp0whkHA7brrw2I0-lwQa9teGYD--qbkyfbKMxJrxZjw-J3kV14b4zzd79Lv4nCxS3QU4u6xfAoAe7zno4k6b_D2-fOhCQyApDYKh0n2bmPw.0hxV_wnpQIH3Ly0XDsqZfQ.VTB8EBq15AQ_WipnhdFhfv6PIFCdOdVOnsAKDBJGieXXF81yANegE0NgrCSTS8RELRSxSE9X-mw2SDBXXHbsjfotBB1JT4UEC3piiIUoodM.2FQ6NTngevYqGIFQy09_cA" + }, + + "record": { + "CNAME": "www.mihoyo.gay" + } + } + diff --git a/domains/tolis.json b/domains/tolis.json deleted file mode 100644 index bd18a8cc6..000000000 --- a/domains/tolis.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "TolisDev Blog", - "owner": { - "username": "tolisdev", - "email": "tolis@tolis.tech" - }, - "record": { - "CNAME": "vienna.ns.govello.net" - } -} diff --git a/domains/tomas.json b/domains/tomas.json index 5dd6caeb0..372f57267 100644 --- a/domains/tomas.json +++ b/domains/tomas.json @@ -1,7 +1,7 @@ { "description": "Tomas's personal developer website", "owner": { - "username": "Tomas Ukrinas", + "username": "Tomaas0", "email": "tomas@ukrinas.eu" }, "record": { diff --git a/domains/tomcollis.json b/domains/tomcollis.json index 1687a82ce..522bb4e18 100644 --- a/domains/tomcollis.json +++ b/domains/tomcollis.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "tomcollis", + "email": "tomuky2k@msn.com" + }, - { - "owner": { - "username": "tomcollis", - "email": "tomuky2k@msn.com" - }, - - "record": { - "URL": "https://github.com/tomcollis" - } - } - \ No newline at end of file + "record": { + "URL": "https://github.com/tomcollis" + } +} diff --git a/domains/tomdavid.json b/domains/tomdavid.json deleted file mode 100644 index 9d507888d..000000000 --- a/domains/tomdavid.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "tomasdav9", - "email": "tomasdav9@gmail.com" - }, - "record": { - "CNAME": "gatsbyportfolio23972.gatsbyjs.io" - } - } - \ No newline at end of file diff --git a/domains/tomgxz.json b/domains/tomgxz.json new file mode 100644 index 000000000..8cb257965 --- /dev/null +++ b/domains/tomgxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Tomgxz", + "email": "tomgxz138@gmail.com" + }, + "record": { + "URL": "https://tomlx.co.uk" + } +} diff --git a/domains/tomiszivacs.json b/domains/tomiszivacs.json new file mode 100644 index 000000000..d90bea90f --- /dev/null +++ b/domains/tomiszivacs.json @@ -0,0 +1,13 @@ +{ + "description": "Tomiszivacs' site", + "repo": "https://github.com/TomiSzivacs/TomiSzivacs.github.io", + "owner": { + "username": "TomiSzivacs", + "email": "tomiyt999@gmail.com", + "discord": "1133680871879229440" + }, + + "record": { + "CNAME": "tomiszivacs.github.io" + } +} diff --git a/domains/tomlh.json b/domains/tomlh.json new file mode 100644 index 000000000..e08fe47d6 --- /dev/null +++ b/domains/tomlh.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "tomlonghorn", + "email": "", + "discord": "555437155829153793", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fLYf5SQZcFwBqFk53_ChiGVQHkDDx6q5VBT_uVb1qPmiv8kUiP6drwPejnGfg8_WskhWBXw8VeBxZhuozUKm-81Ti1Jj8lEMDuO-npQYsXnNyP1pPmmn9PbWw5Miyn1nYmzvIwlD0vTvl2SaOmdDkSIdG6B-ZbF-fR7Xt--8zrmB-_ZGsRnY5Xz69qzzKeE4FW0JIgypkeqwXXrcJ3Xql9yrlq7ei-NTtyFnSryH3-bD2cnM-_2PcaAm0yhLWCIeVukgWaHpQM7f4tyIkWP_ZmN7_GGI9ofEzwou0ky2S6tz1gsbWRIj0yc5LKiU27jSSI7Xilbuf__1Yz_H3pcjUA.rG-9RsGnGA-PMeJ_I7sChw.U6RQsO8SPjsrt7kmydNYZq-AqaQiifoJ-zHDUMB7tYlhT0UELkKk4-OCd-Eg6bbZd3iRYjndwG-Co3kRrUJzhc4_JzvW3wfF-fS4QNTVsM0.2QRCf2qldh-pSDZ745U6oA" + }, + + "record": { + "CNAME": "tomlonghorn.github.io" + } + } + diff --git a/domains/tomokat.json b/domains/tomokat.json new file mode 100644 index 000000000..304777406 --- /dev/null +++ b/domains/tomokat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tomokat", + "email": "wataru2007@gmail.com" + }, + "record": { + "CNAME": "tomokat.github.io" + } +} diff --git a/domains/tomsystems.json b/domains/tomsystems.json new file mode 100644 index 000000000..927f49550 --- /dev/null +++ b/domains/tomsystems.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thesillycat", + "email": "tomnetwork@duck.com" + }, + "record": { + "CNAME": "tomsystems.pages.dev" + } +} diff --git a/domains/tomteck.json b/domains/tomteck.json new file mode 100644 index 000000000..9f1937dce --- /dev/null +++ b/domains/tomteck.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shandralor", + "email": "tom.teck@gmail.com" + }, + "record": { + "CNAME": "shandralor.github.io" + } +} diff --git a/domains/tong.json b/domains/tong.json index 62a6aec8c..c651828da 100644 --- a/domains/tong.json +++ b/domains/tong.json @@ -1,11 +1,11 @@ { - "description": "Tong's website", - "repo": "https://github.com/away0x/away0x", - "owner": { - "username": "tongwu", - "email": "away0x@gmail.com" - }, - "record": { - "CNAME": "away0x.github.io" - } - } \ No newline at end of file + "description": "Tong's website", + "repo": "https://github.com/away0x/away0x", + "owner": { + "username": "tongwu", + "email": "away0x@gmail.com" + }, + "record": { + "CNAME": "away0x.github.io" + } +} diff --git a/domains/tonycolston.json b/domains/tonycolston.json deleted file mode 100644 index 3e3a51696..000000000 --- a/domains/tonycolston.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Tony Colston's site", - "repo": "https://github.com/tonetheman", - "owner": { - "username": "tonetheman", - "email": "tonetheman@gmail.com" - }, - "record": { - "CNAME": "tonycolston.com" - } -} diff --git a/domains/too-obvious-that.maskduck.json b/domains/too-obvious-that.maskduck.json index 9d6673904..dee070ebf 100644 --- a/domains/too-obvious-that.maskduck.json +++ b/domains/too-obvious-that.maskduck.json @@ -1,14 +1,16 @@ { "owner": { - "username": "MaskDuck", + "username": "mAskDucK", "email": "", - "discord": "MaskDuck#1337", + "discord": "maskduck", "twitter": "MaskDuck1", - "reddit": "u/maskduck", - "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586." + "reddit": "u/maskduck" }, "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/tools.json b/domains/tools.json new file mode 100644 index 000000000..af13fd29d --- /dev/null +++ b/domains/tools.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asma019", + "email": "asmaparvin019@gmail.com" + }, + "record": { + "CNAME": "asma019.github.io" + } +} diff --git a/domains/totallynotmwa.json b/domains/totallynotmwa.json new file mode 100644 index 000000000..0fe23b8c2 --- /dev/null +++ b/domains/totallynotmwa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Totallynotmwa", + "email": "totallynot@mwa.lol" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/tovade.json b/domains/tovade.json deleted file mode 100644 index b260d10ed..000000000 --- a/domains/tovade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My personal portfolio", - "repo": "https://github.com/tovade", - "owner": { - "username": "tovade", - "email": "support@tovade.ml" - }, - "record": { - "CNAME": "tovade.ml" - } -} diff --git a/domains/tr1n.json b/domains/tr1n.json new file mode 100644 index 000000000..fb216032f --- /dev/null +++ b/domains/tr1n.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tr1n", + "email": "djpatrio@gmail.com" + }, + "record": { + "URL": "https://tr1n.me" + } +} diff --git a/domains/tracker-brawley.json b/domains/tracker-brawley.json deleted file mode 100644 index 28dedf36a..000000000 --- a/domains/tracker-brawley.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a website for my biotapi", - "repo": "https://github.com/brawlie/todo", - "owner": { - "username": "brawlie", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "aa1b3bae-e49b-4efd-8c55-28719da5f58c.repl.co" - } -} diff --git a/domains/tracking.seen.json b/domains/tracking.seen.json new file mode 100644 index 000000000..d67b225e3 --- /dev/null +++ b/domains/tracking.seen.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Seendator", + "email": "seendator@outlook.com", + "discord": "852477599476482048" + }, + "record": { + "CNAME": "api.elasticemail.com" + } +} diff --git a/domains/tracking.sonet.json b/domains/tracking.sonet.json deleted file mode 100644 index 1481c566a..000000000 --- a/domains/tracking.sonet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "CoderSoNet", - "email": "support@sonet.is-a.dev", - "twitter": "ShanuUniyal_On", - "discord": "781127625263415326" - }, - "record": { - "CNAME": "api.elasticemail.com" - } -} diff --git a/domains/trackstore.json b/domains/trackstore.json new file mode 100644 index 000000000..eb92f2038 --- /dev/null +++ b/domains/trackstore.json @@ -0,0 +1,11 @@ +{ + "description": "TrackStore is website where people can share and find Hill Climb Racing 2 custom tracks. It is not ready yet, but is actively under development. The email I used is a Proton Mail 'hide my email alias'. For more info on TrackStore, see https://github.com/TrackStore#README", + "repo": "https://github.com/TrackStore/TrackStore.github.io", + "owner": { + "username": "TrackStore", + "email": "imaginary_macaw058@simplelogin.com" + }, + "record": { + "CNAME": "trackstore.github.io" + } +} diff --git a/domains/transfer.creeperita104.json b/domains/transfer.creeperita104.json new file mode 100644 index 000000000..66df526f1 --- /dev/null +++ b/domains/transfer.creeperita104.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "creeperita09", + "email": "creeperita.09@gmail.com" + }, + "record": { + "CNAME": "icahomesvr2022.freeddns.org" + } +} diff --git a/domains/tranthanhlong.json b/domains/tranthanhlong.json new file mode 100644 index 000000000..9347a4404 --- /dev/null +++ b/domains/tranthanhlong.json @@ -0,0 +1,11 @@ +{ + "description": "My personal webpage", + "repo": "https://github.com/iamthanhlong/iamthanhlong.github.io", + "owner": { + "username": "iamthanhlong", + "email": "uxymqfzglvtqno@proton.me" + }, + "record": { + "CNAME": "iamthanhlong.github.io" + } +} diff --git a/domains/trapdev.json b/domains/trapdev.json deleted file mode 100644 index 41e85c6ed..000000000 --- a/domains/trapdev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Add some description", - "repo": "https://github.com/voidx999/trapdevweb", - "owner": { - "username": "voidx999", - "email": "vodlsreal@gmail.com" - }, - "record": { - "CNAME": "451189ea-5d97-4b3c-9ff1-874973386ae1.id.repl.co" - } -} diff --git a/domains/triach-rold.json b/domains/triach-rold.json new file mode 100644 index 000000000..46443e71c --- /dev/null +++ b/domains/triach-rold.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "triach-rold", + "email": "roldtriach@gmail.com" + }, + "record": { + "URL": "https://triach-rold.github.io/" + } +} diff --git a/domains/triachrold.json b/domains/triachrold.json new file mode 100644 index 000000000..46443e71c --- /dev/null +++ b/domains/triachrold.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "triach-rold", + "email": "roldtriach@gmail.com" + }, + "record": { + "URL": "https://triach-rold.github.io/" + } +} diff --git a/domains/trio.json b/domains/trio.json new file mode 100644 index 000000000..af1099406 --- /dev/null +++ b/domains/trio.json @@ -0,0 +1,10 @@ +{ + "description": "trio", + "owner": { + "username": "trio745", + "email": "triofran6@gmail.com" + }, + "record": { + "MX": ["smtp.internal.xhyrom.dev"] + } +} diff --git a/domains/trix.json b/domains/trix.json new file mode 100644 index 000000000..94dff565e --- /dev/null +++ b/domains/trix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tr1xem", + "email": "admin@trixsly.xyz" + }, + "record": { + "CNAME": "superuser-l.github.io" + } +} diff --git a/domains/triyatna.json b/domains/triyatna.json new file mode 100644 index 000000000..6687190b6 --- /dev/null +++ b/domains/triyatna.json @@ -0,0 +1,11 @@ +{ + "description": "Subdomain Redirect", + "repo": "https://github.com/triyatna/triyatna.github.io", + "owner": { + "username": "triyatna", + "email": "triyatna.com@gmail.com" + }, + "record": { + "CNAME": "triyatna.github.io" + } +} diff --git a/domains/trollm8.json b/domains/trollm8.json new file mode 100644 index 000000000..73710d2ee --- /dev/null +++ b/domains/trollm8.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "trollm8", + "email": "", + "discord": "1266754182082461751", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Tmidf0-ostr7SwvsJgEdvwL8GNzBRuA7akFPycL23OBl4RxlOctbY2tZJhm9AFmd1GW_2cbZs735Lc4fbPYYOqYSg5PuCmPLA1LHrDdAffwQT2nwBZkKstxOWgR9_l0DvStxpyMd86jVgRUujXL0nChFeDA2-us7I0FaQsM4ojDFI2_yovADFT5MoukCYW1GEfu5-gsETTomrovCg2dKOGem8EH1bUhe9DFa0fzkVA9WNpleK5nW-53JC4LYNAttdNTLkzk8J04JMesCpKFNsuuqWJwIyJMhatge0PzKEQr2VQ-_oR9Mf-PJs5Wfrh64HLsV4WmCEgGJfY88vmOISQ.BP-dCaDVgXkrR30NuwAsag.vkx4F6n9o6tw0EQhk_eKzK4Q3PhxZfuoUf2_8sTjakA-vlRC04qXZ9STXkZzDl6XwG8uZbM1FCob-_AhY5ASPQ.fkMZOYZWqGef_gddA379eA" + }, + + "record": { + "CNAME": "trollm8.xyz" + } + } + diff --git a/domains/trueuser.json b/domains/trueuser.json new file mode 100644 index 000000000..d86ce7b16 --- /dev/null +++ b/domains/trueuser.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "istrueuser", + "email": "thisistrueemail@gmail.com" + }, + "record": { + "A": ["69.30.249.53"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/trung.json b/domains/trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/tshonq.json b/domains/tshonq.json new file mode 100644 index 000000000..ba9443808 --- /dev/null +++ b/domains/tshonq.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shubhamakshit", + "email": "akshitshubhammas@gmail.com" + }, + "record": { + "CNAME": "tshonqkhan.onrender.com" + } +} diff --git a/domains/tsognyam.json b/domains/tsognyam.json new file mode 100644 index 000000000..9d4ae66bf --- /dev/null +++ b/domains/tsognyam.json @@ -0,0 +1,12 @@ +{ + "description": "Tsognyam's Personal Portfolio", + "repo": "https://github.com/tsognyam/tsognyam.github.io", + "owner": { + "username": "tsognyam", + "email": "tsognyamt@gmail.com", + "twitter": "b_tsognyam" + }, + "record": { + "CNAME": "tsognyam.github.io" + } +} diff --git a/domains/ttt.talinsharma.json b/domains/ttt.talinsharma.json new file mode 100644 index 000000000..697df0714 --- /dev/null +++ b/domains/ttt.talinsharma.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TalinTheDev", + "email": "talinsharma.dev@gmail.com", + "discord": "1010508154481676329" + }, + + "record": { + "CNAME": "tic-tac-toe-175c5.web.app" + } +} diff --git a/domains/tudbut.json b/domains/tudbut.json index e2cc2049f..0761f064e 100644 --- a/domains/tudbut.json +++ b/domains/tudbut.json @@ -1,12 +1,10 @@ - - { - "owner": { - "username": "TudbuT", - "email": "is-a-dev-public@mail.tudbut.de", - "discord": "TudbuT#2624" - }, - "record": { - "CNAME": "tudbut.de" - } - } - +{ + "owner": { + "username": "TudbuT", + "email": "is-a-dev-public@mail.tudbut.de", + "discord": "TudbuT#2624" + }, + "record": { + "CNAME": "tudbut.de" + } +} diff --git a/domains/turvenuija.json b/domains/turvenuija.json new file mode 100644 index 000000000..d6a1d0483 --- /dev/null +++ b/domains/turvenuija.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "turvenuija1", + "email": "turvenuija@skidd.xyz" + }, + "record": { + "CNAME": "turvenuija1.github.io" + } +} diff --git a/domains/tushar.json b/domains/tushar.json index d07cc8eb5..d485dbf53 100644 --- a/domains/tushar.json +++ b/domains/tushar.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "tusharvikky", - "email": "tusharvikky@gmail.com" - }, - "record": { - "URL": "https://blog.tushardeo.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "tusharvikky", + "email": "tusharvikky@gmail.com" + }, + "record": { + "URL": "https://blog.tushardeo.com" + } +} diff --git a/domains/tushardeo.json b/domains/tushardeo.json index d07cc8eb5..d485dbf53 100644 --- a/domains/tushardeo.json +++ b/domains/tushardeo.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "tusharvikky", - "email": "tusharvikky@gmail.com" - }, - "record": { - "URL": "https://blog.tushardeo.com" - } - } - \ No newline at end of file +{ + "owner": { + "username": "tusharvikky", + "email": "tusharvikky@gmail.com" + }, + "record": { + "URL": "https://blog.tushardeo.com" + } +} diff --git a/domains/twiska.json b/domains/twiska.json new file mode 100644 index 000000000..a293fef24 --- /dev/null +++ b/domains/twiska.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website", + "repo": "https://github.com/ttwisstterr/linktree", + "owner": { + "username": "ttwisstterr", + "email": "twiskanadilaa.a@gmail.com" + }, + "record": { + "CNAME": "ttwisstterr.github.io" + } +} diff --git a/domains/twitchiger.json b/domains/twitchiger.json new file mode 100644 index 000000000..7f641969e --- /dev/null +++ b/domains/twitchiger.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "devTwitchiger", + "email": "", + "discord": "1057600396991926332", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VXrDR3dafppqxEL5tA4Ynhioq-6_C2maDvX29RFSMg-5F_TzcYa4bFF4wEE1xNVJoBDrUx0mayz0S7evW8BPj4NccUm0DoZTYIkeeoB-luxGmpFXE8K-DkSe76_2l6Sn64HP39MBuCc5B9HM5CCRK-7T0F23mOpIsflqJ-Kd1NqWQtTr45mOv7iW9XS-wgnTAk-Uqmmte4dQHYCHZO4-m3AkDpANzOVjQfjsxFEFeaewP_tvoqrtoQcO4nKsre5GsOAWnwFgn_AkgFSQkkHLqu8sNX7m5SO4n0ywxJx_zDWbqL9N302Hfr_i40mDKbJTjZsztpW1AmLUyOYW9sZvHw.NMlEMswtLXrfcUdkxN6-Yg.ShUu7Zlcnq4mPryzvjzWQ4SU0P0oOsRgOqKvvym2TvJRDTg_L_orP5TrQDOa3HvQ-i--zEJ0eL96bmTHf_zq2HDn6h_gBoIFVaG1uYM36rI.TlBJjdWrnRvs_mGMus306A" + }, + + "record": { + "CNAME": "devtwitchiger.github.io" + } + } + \ No newline at end of file diff --git a/domains/tyler.json b/domains/tyler.json deleted file mode 100644 index a8477da18..000000000 --- a/domains/tyler.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Tyler McCarthy is a Developer!", - "repo": "https://github.com/tmccarthyj", - "owner": { - "username": "tmccarthyj", - "email": "tyler@tjm.dev" - }, - "record": { - "CNAME": "tjm.dev" - } -} diff --git a/domains/tylermwise.json b/domains/tylermwise.json new file mode 100644 index 000000000..be3714c3f --- /dev/null +++ b/domains/tylermwise.json @@ -0,0 +1,10 @@ +{ + "description": "tylermwise.is-a.dev domain", + "owner": { + "username": "tylermwise", + "email": "contact@teamtbm.org" + }, + "record": { + "CNAME": "tylermwise.github.io" + } +} diff --git a/domains/tyman.json b/domains/tyman.json deleted file mode 100644 index 3cf33620d..000000000 --- a/domains/tyman.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Tyman's personal developer website", - "repo": "https://github.com/TymanWasTaken/tyman.tech", - "owner": { - "username": "TymanWasTaken", - "email": "", - "discord": "Tyman#7318" - }, - "record": { - "CNAME": "tyman.tech" - } -} diff --git a/domains/typed.json b/domains/typed.json index c4f4bc5b1..8b9dda3e7 100644 --- a/domains/typed.json +++ b/domains/typed.json @@ -1,11 +1,10 @@ - { - "owner": { - "username": "TYP3D", - "email": "typedmod2@gmail.com" - }, +{ + "owner": { + "username": "TYP3D", + "email": "typedmod2@gmail.com" + }, - "record": { - "CNAME": "typedonline.github.io" - } - } - + "record": { + "CNAME": "typedonline.github.io" + } +} diff --git a/domains/typeling1578.json b/domains/typeling1578.json new file mode 100644 index 000000000..c71a007b9 --- /dev/null +++ b/domains/typeling1578.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "typeling1578", + "email": "pub@typeling1578.dev" + }, + "record": { + "URL": "https://typeling1578.dev" + } +} diff --git a/domains/tyrkinn.json b/domains/tyrkinn.json new file mode 100644 index 000000000..7e79ff49e --- /dev/null +++ b/domains/tyrkinn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tyrkinn", + "email": "tyrkinn@pm.me" + }, + "record": { + "CNAME": "tyrkinn.github.io" + } +} diff --git a/domains/u.json b/domains/u.json new file mode 100644 index 000000000..71cbfa50c --- /dev/null +++ b/domains/u.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ImShyMike", + "email": "", + "discord": "582648583635992622", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Bq0mgKU9dwmp1prf5QSITAVYicrNBYDY6nfK-8pCYPczMD1eFn6HZgpSCJ44STcfKBx9RPHBPpoPd3hJORgmFaS0yZUPyXC4PKTP4nD7I1g7C2hxH4Gtr2eYx9E6JRIDt3ZerfaCo8ysT_7iUwvD-vMPbzxRFVneGKh4gWLnnnIrGgHpl1Y1TkAH6SEPuYXWQuw927ty03K5QW-ebiBR3GB-u7dsbaRrtKv_LmPC-tHecjEwiBpM4FnLDLhul85HfeDPvZMHD1rqhNhjWbGpSdQHSr6XaaZIN4TJev2G8ufV2DIHcrz41Vi5utLZpNb9olWLZMr4HYxqW9k15IF6wA.CbsTKnKnOwj27Wd73bzLMw.lKVruFz7yGBWreBjiXXHmrl3dSREBOMMmzVAD3yUXyHID1TswgBZyQvO4NwxDxLaEcybp-_duJe7lJePnrfeVjui4amjo-KWUhFIcKnrrUc.9OT8WDOrcBmaQmyigxpuCg" + }, + + "record": { + "URL": "https://shymike.is-a.dev" + } + } + \ No newline at end of file diff --git a/domains/uberkey.json b/domains/uberkey.json new file mode 100644 index 000000000..8abb9598e --- /dev/null +++ b/domains/uberkey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "uberkey", + "email": "postmordial@gmail.com" + }, + "record": { + "CNAME": "uberkey.github.io" + } +} diff --git a/domains/udhaya.json b/domains/udhaya.json new file mode 100644 index 000000000..31dc2651a --- /dev/null +++ b/domains/udhaya.json @@ -0,0 +1,12 @@ +{ + "description": "Dev Portfolio", + "owner": { + "username": "xaceduke", + "email": "kinghtth0@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/uiopler.json b/domains/uiopler.json new file mode 100644 index 000000000..ab928c0a0 --- /dev/null +++ b/domains/uiopler.json @@ -0,0 +1,12 @@ +{ + "description": "Leads to my portfolio", + "repo": "https://github.com/uiopler/uiopler.github.io", + "owner": { + "username": "uiopler", + "email": "uiopler.dev@gmail.com", + "discord": "uiopler#6948" + }, + "record": { + "CNAME": "uiopler.github.io" + } +} diff --git a/domains/ujalakhasiya.json b/domains/ujalakhasiya.json new file mode 100644 index 000000000..63dbce92d --- /dev/null +++ b/domains/ujalakhasiya.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio site.", + "repo": "https://github.com/ujalakhasiya/ujalakhasiya.github.io", + "owner": { + "username": "ujalakhasiya", + "email": "" + }, + "record": { + "CNAME": "ujalakhasiya.github.io" + } +} diff --git a/domains/uk.json b/domains/uk.json new file mode 100644 index 000000000..458840eb2 --- /dev/null +++ b/domains/uk.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "record": { + "URL": "https://ukriu.github.io/", + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=forwardemailnet@ukriu.com" + } +} diff --git a/domains/ukasimov.json b/domains/ukasimov.json new file mode 100644 index 000000000..8e310b7eb --- /dev/null +++ b/domains/ukasimov.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ukasimov", + "email": "ukasimov_dev@outlook.com", + "telegram": "t.me/ukasimov_dev" + }, + "description": "Uktambek Kasimov Portfolio", + "record": { + "A": ["89.232.184.198"] + } +} diff --git a/domains/ukrio.json b/domains/ukrio.json new file mode 100644 index 000000000..9604f8703 --- /dev/null +++ b/domains/ukrio.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com", + "discord": "ukriu" + }, + "record": { + "URL": "https://ukriu.github.io", + "TXT": "v=spf1 include:spf.improvmx.com ~all", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } +} diff --git a/domains/ukriu.json b/domains/ukriu.json new file mode 100644 index 000000000..af1b4f1d4 --- /dev/null +++ b/domains/ukriu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukriu", + "email": "isadev@ukriu.com" + }, + "record": { + "URL": "https://ukriu.github.io" + } +} diff --git a/domains/umarahsan.json b/domains/umarahsan.json new file mode 100644 index 000000000..139682c06 --- /dev/null +++ b/domains/umarahsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "umarxz559", + "email": "umarxz559@gmail.com" + }, + "record": { + "A": ["141.147.52.210"] + } +} diff --git a/domains/umer936.json b/domains/umer936.json new file mode 100644 index 000000000..b28482e75 --- /dev/null +++ b/domains/umer936.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "umer936", + "email": "umer936@gmail.com" + }, + "record": { + "URL": "https://umer936.com" + } +} diff --git a/domains/umesh.json b/domains/umesh.json new file mode 100644 index 000000000..f3868f619 --- /dev/null +++ b/domains/umesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "compCoder007", + "email": "competentcoder007@gmail.com" + }, + "record": { + "CNAME": "compcoder007.github.io" + } +} diff --git a/domains/undeadevs.json b/domains/undeadevs.json new file mode 100644 index 000000000..8c051acf9 --- /dev/null +++ b/domains/undeadevs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "undeadevs", + "email": "jangantanyaaku14@gmail.com" + }, + "record": { + "CNAME": "undeadevs.github.io" + } +} diff --git a/domains/undefined.json b/domains/undefined.json new file mode 100644 index 000000000..f9d8d472b --- /dev/null +++ b/domains/undefined.json @@ -0,0 +1,22 @@ +{ + "description": "This subdomain is for my personal portfolio website.", + "repo": "https://github.com/baokhang4930/baokhang4930.github.io", + "owner": { + "username": "baokhang4930", + "email": "baokhang4930@gmail.com", + "twitter": "undefiined__" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/unicatevn.json b/domains/unicatevn.json new file mode 100644 index 000000000..918e28ed4 --- /dev/null +++ b/domains/unicatevn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "unicatevn", + "email": "tuananh.vga@gmail.com" + }, + "record": { + "CNAME": "unicatevn.com" + } +} diff --git a/domains/uniclicker2.m1dnight.json b/domains/uniclicker2.m1dnight.json deleted file mode 100644 index 0cbbd1b72..000000000 --- a/domains/uniclicker2.m1dnight.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "UniClicker2 Based in JS", - "repo": "https://UniClicker-2-Webveiw-Edition.m1dnightdev.repl.co", - "owner": { - "username": "M1dnight", - "email": "m1dnightgmrofficial@gmail.com" - }, - "record": { - "CNAME": "2b82bbc0-2fa0-40ac-89fe-530e73b20c0b.id.repl.co" - } -} diff --git a/domains/unidentifiedx.json b/domains/unidentifiedx.json index bfd489104..a0fa9e633 100644 --- a/domains/unidentifiedx.json +++ b/domains/unidentifiedx.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "UnidentifiedX", - "email": "sunzizhuo33@gmail.com" - }, - "record": { - "CNAME": "unidentifiedx.github.io" - } - } - +{ + "owner": { + "username": "UnidentifiedX", + "email": "sunzizhuo33@gmail.com" + }, + "record": { + "CNAME": "unidentifiedx.github.io" + } +} diff --git a/domains/unknown-user2.json b/domains/unknown-user2.json deleted file mode 100644 index 4e6a704c1..000000000 --- a/domains/unknown-user2.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My website", - "repo": "https://github.com/Unknown-User2/Unknown-User2.github.io", - "owner": { - "username": "Unknown-User2", - "email": "unknown.us3r222@gmail.com" - }, - "record": { - "CNAME": "Unknown-User2.github.io" - } -} diff --git a/domains/unnst.json b/domains/unnst.json new file mode 100644 index 000000000..9e96de052 --- /dev/null +++ b/domains/unnst.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "482migs", + "email": "amberisamab@gmail.com" + }, + "record": { + "CNAME": "unnst.github.io" + } +} diff --git a/domains/untitled.json b/domains/untitled.json new file mode 100644 index 000000000..81b800ddc --- /dev/null +++ b/domains/untitled.json @@ -0,0 +1,11 @@ +{ + "description": "Hosting my website", + "repo": "https://github.com/VihaanAnand/VihaanAnand.github.io", + "owner": { + "username": "VihaanAnand", + "email": "macos14sonoma@gmail.com" + }, + "record": { + "CNAME": "VihaanAnand.github.io" + } +} diff --git a/domains/unwork-id.json b/domains/unwork-id.json deleted file mode 100644 index 03fa5f30d..000000000 --- a/domains/unwork-id.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Unwork ID Website", - "repo": "https://github.com/Unwork-ID", - "owner": { - "username": "tokisaki13", - "email": "support@unwork.my.id" - }, - "record": { - "URL": "https://unwork.my.id" - } -} diff --git a/domains/upcraft.json b/domains/upcraft.json index 8d0bfc2e3..e089e876b 100644 --- a/domains/upcraft.json +++ b/domains/upcraft.json @@ -1,11 +1,10 @@ { - "owner": { - "username": "upcraftlp", - "email": "", - "twitter": "upcraftlp" - }, - "record": { - "URL": "https://upcraft.dev" - } + "owner": { + "username": "upcraftlp", + "email": "", + "twitter": "upcraftlp" + }, + "record": { + "URL": "https://upcraft.dev" } - \ No newline at end of file +} diff --git a/domains/upd.oxmc.json b/domains/upd.oxmc.json new file mode 100644 index 000000000..61a9bd4f7 --- /dev/null +++ b/domains/upd.oxmc.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "oxmc", + "email": "oxmc7769.mail@gmail.com", + "discord": "oxmc7769" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": "forward-email=contact:oxmc7769.mail@gmail.com" + } +} diff --git a/domains/uptime-ryo.json b/domains/uptime-ryo.json new file mode 100644 index 000000000..c43440b7b --- /dev/null +++ b/domains/uptime-ryo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrosGaming", + "email": "dgfrosdgfros@gmail.com" + }, + "record": { + "A": ["69.197.135.203"] + } +} diff --git a/domains/uptime.acronical.json b/domains/uptime.acronical.json new file mode 100644 index 000000000..fa8380b23 --- /dev/null +++ b/domains/uptime.acronical.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "record": { + "A": ["138.68.133.84"] + } +} diff --git a/domains/uptime.stefdp.json b/domains/uptime.stefdp.json new file mode 100644 index 000000000..9f2b1dbbb --- /dev/null +++ b/domains/uptime.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "", + "discord": "694986201739952229", + "github_id": 81536172, + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IpOYbPWBUcNp4Tgw32QASUSoI0QE_q5cFcyg6OXpDYy8Eg3QGBagIVG4mvt70DgnRFuK5IKE0NY9Bxr32RdWrBGDSUxlKtlJQ9WpQIkLV-I7A7F5Kym4QzM58anHX0fggGtzHi_TaXcZGI-1Rw0KMnaq91hHfnez4e3O_Q-Mf-SD55CPqwibG3YoXwWM-H3Q_iKWibEX5mzD1wppmT8IO_2lO5Ne1V8HKlZ5_SWd8t9JyEDB7CsGNcpTLnUMDwE67Pw_92FqU0iNDTwDKG7oZK1x4JG4rmZcvU0_CTOWW02TRWT_evf8XdAT9V6Me6OpCWvD1LlTgmdkYsResxTKxw.7rSUKyX20MsaT6H7mJFWJA.M-wdjyAOxmgWiRQbLzzMJDumoFfOzUYoXplEvrth469Ib361dIke2yOiFyk-PIMsds3-GQYnmujRqcn8wxzyKnaTapsC4g0aAit-DdtKv7s.iCc6o2XSd76RHqUN6a03og" + }, + "record": { + "CNAME": "proxy.stefdp.is-a.dev" + } +} diff --git a/domains/uptime.trung.json b/domains/uptime.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/uptime.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/uptimes.yug.json b/domains/uptimes.yug.json new file mode 100644 index 000000000..270e6d1aa --- /dev/null +++ b/domains/uptimes.yug.json @@ -0,0 +1,12 @@ +{ + "description": "Uptime website for my stuff, gonna use hetrixtools for now, might change to something else later", + "repo": "N/A", + "owner": { + "username": "YUG38", + "email": "4yugpatel123@gmail.com", + "discord": "name_yug" + }, + "record": { + "CNAME": "reports.hetrixtools.com" + } +} diff --git a/domains/uralamin.json b/domains/uralamin.json new file mode 100644 index 000000000..3157bbec5 --- /dev/null +++ b/domains/uralamin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MrAlaminH", + "email": "", + "discord": "440574272856129547" + }, + "record": { + "CNAME": "retro-folio.vercel.app" + } +} diff --git a/domains/urduck.json b/domains/urduck.json deleted file mode 100644 index 1918d7e4a..000000000 --- a/domains/urduck.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "description": "MaskDuck's personal website!", - "repo": "https://github.com/maskducks/maskducks.github.io", - "owner": { - "username": "MaskDuck", - "email": "", - "discord": "MaskDuck#7325", - "twitter": "MaskDuck1", - "reddit": "u/maskduck", - "note": "My Discord discriminator sometimes is not 1337 and sometimes I will change it. If you want to find me on Discord, my ID is 716134528409665586." - }, - "record": { - "CNAME": "maskducks.github.io" - } -} diff --git a/domains/urging.json b/domains/urging.json new file mode 100644 index 000000000..e3d2583f6 --- /dev/null +++ b/domains/urging.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UrgingOfc", + "email": "diogo.lopes.silva.ch@gmail.com" + }, + "record": { + "A": ["198.91.81.13"] + } +} diff --git a/domains/url.aditya.json b/domains/url.aditya.json new file mode 100644 index 000000000..18dab9f28 --- /dev/null +++ b/domains/url.aditya.json @@ -0,0 +1,13 @@ +{ + "description": "subdomain for link redirection", + "repo": "https://github.com/dedomil", + "owner": { + "username": "dedomil", + "email": "ishqaddy@gmail.com", + "twitter": "aadixl", + "discord": "dedomil" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/us.mcstatus.json b/domains/us.mcstatus.json new file mode 100644 index 000000000..1caa482a4 --- /dev/null +++ b/domains/us.mcstatus.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "EducatedSuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "A": [ + "34.120.54.55" + ], + "AAAA": [ + "2600:1901:0:6d85::" + ] + } +} diff --git a/domains/usakhil.json b/domains/usakhil.json new file mode 100644 index 000000000..d5c62cbdc --- /dev/null +++ b/domains/usakhil.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "usakhil121", + "email": "usakhil121@gmail.com" + }, + + "record": { + "CNAME": "usakhil121.github.io" + } +} diff --git a/domains/use-ho2.json b/domains/use-ho2.json new file mode 100644 index 000000000..5366d809e --- /dev/null +++ b/domains/use-ho2.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hussain22g", + "email": "hussainaltahoo944@gmail.com" + }, + "record": { + "CNAME": "ho2.pages.dev" + } +} diff --git a/domains/used-to-be-daddy.json b/domains/used-to-be-daddy.json deleted file mode 100644 index c6884e296..000000000 --- a/domains/used-to-be-daddy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "I used to be daddy", - "owner": { - "username": "MouseMoosz", - "email": "mousemoosz@protonmail.com" - }, - "record": { - "URL": "https://mousemoosz.is-a.dev" - } -} diff --git a/domains/useless.json b/domains/useless.json deleted file mode 100644 index 2eb0f885b..000000000 --- a/domains/useless.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "ItzAfroBoy", - "email": "me.caramackid@gmail.com" - }, - "record": { - "A": ["209.250.230.249"] - } - } - \ No newline at end of file diff --git a/domains/user0.json b/domains/user0.json new file mode 100644 index 000000000..fbb4ad490 --- /dev/null +++ b/domains/user0.json @@ -0,0 +1,13 @@ +{ + "description": "My own web profile", + "repo": "https://github.com/user0-07161/user0-07161.github.io", + "owner": { + "username": "user0-07161", + "email": "user0thenyancat@proton.me", + "discord": "1213799919920484364" + }, + + "record": { + "CNAME": "user0-07161.github.io" + } +} diff --git a/domains/username.json b/domains/username.json deleted file mode 100644 index 577b6c70b..000000000 --- a/domains/username.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A custom portfolio website for me", - "repo": "https://replit.com/@DragonRoyale/personalA", - "owner": { - "username": "DragonRoyal", - "email": "aarav.singhania50@gmail.com" - }, - "record": { - "CNAME": "c7054742-05bd-453b-b5fd-d3ed47ee0215.id.repl.co" - } -} diff --git a/domains/usingh.json b/domains/usingh.json new file mode 100644 index 000000000..669dc4a20 --- /dev/null +++ b/domains/usingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dr-hofstadter", + "email": "utsav.raj.338@gmail.com" + }, + "record": { + "CNAME": "dr-hofstadter.github.io" + } +} diff --git a/domains/usman.json b/domains/usman.json deleted file mode 100644 index 9d8675805..000000000 --- a/domains/usman.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Usman's personal developer website", - "repo": "https://github.com/umahmood21", - "owner": { - "username": "umahmood21", - "email": "umahmood214@gmail.com" - }, - "record": { - "CNAME": "umahmood.me" - } -} diff --git a/domains/utils.json b/domains/utils.json new file mode 100644 index 000000000..61cd102b9 --- /dev/null +++ b/domains/utils.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Blob2763", + "email": "blob2763@gmail.com" + }, + "record": { + "CNAME": "blob2763.github.io" + } +} diff --git a/domains/utkarsh.json b/domains/utkarsh.json new file mode 100644 index 000000000..27aa394c1 --- /dev/null +++ b/domains/utkarsh.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/utkarshkrsingh/website", + "owner": { + "username": "Utkarshkrsingh", + "email": "utkarshkrsingh@proton.me" + }, + "record": { + "CNAME": "utkarshkrsingh.github.io" + } +} diff --git a/domains/uto.json b/domains/uto.json new file mode 100644 index 000000000..48e5b27c4 --- /dev/null +++ b/domains/uto.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "utoshu", + "email": "", + "discord": "537265937200709672" + }, + + "record": { + "CNAME": "uto.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/utsav.json b/domains/utsav.json new file mode 100644 index 000000000..669dc4a20 --- /dev/null +++ b/domains/utsav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dr-hofstadter", + "email": "utsav.raj.338@gmail.com" + }, + "record": { + "CNAME": "dr-hofstadter.github.io" + } +} diff --git a/domains/uuphoria2.json b/domains/uuphoria2.json new file mode 100644 index 000000000..f429aa66c --- /dev/null +++ b/domains/uuphoria2.json @@ -0,0 +1,11 @@ +{ + "description": "This is to be used on my blog.", + "repo": "https://github.com/uuphoria2/uuphoria2.github.io", + "owner": { + "username": "uuphoria2", + "email": "gman36147@gmail.com" + }, + "record": { + "CNAME": "uuphoria2.github.io" + } +} diff --git a/domains/uwu.json b/domains/uwu.json new file mode 100644 index 000000000..da3053a49 --- /dev/null +++ b/domains/uwu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/uynilo9.json b/domains/uynilo9.json new file mode 100644 index 000000000..1d45c6b28 --- /dev/null +++ b/domains/uynilo9.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "uynilo9", + "email": "uynilo9@outlook.com", + "twitter": "uynilo9" + }, + "record": { + "CNAME": "uynilo9.pages.dev" + } +} diff --git a/domains/uzi.json b/domains/uzi.json new file mode 100644 index 000000000..b3c35ea75 --- /dev/null +++ b/domains/uzi.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "crischutu07", + "email": "", + "discord": "1001747794954039368" + }, + + "record": { + "CNAME": "crischutu07.github.io" + } + } + diff --git a/domains/v0.json b/domains/v0.json new file mode 100644 index 000000000..9a2269538 --- /dev/null +++ b/domains/v0.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YoruAkio", + "email": "yoruakio@proton.me" + }, + "record": { + "CNAME": "vo-kio.pages.dev" + } +} diff --git a/domains/v1.neon.json b/domains/v1.neon.json new file mode 100644 index 000000000..4ba1f40e7 --- /dev/null +++ b/domains/v1.neon.json @@ -0,0 +1,13 @@ +{ + "description": "V1 of My Portfolio (neon.is-a.dev)", + "repo": "https://github.com/GoodBoyNeon/v1", + "owner": { + "username": "GoodBoyNeon", + "discord": "neonthedeveloper", + "twitter": "NeonTheNerd", + "email": "goodboyneon03@gmail.com" + }, + "record": { + "CNAME": "goodboyneon.github.io" + } +} diff --git a/domains/v205.json b/domains/v205.json new file mode 100644 index 000000000..6b0b43598 --- /dev/null +++ b/domains/v205.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "V205Arduino", + "email": "s@v205.obl.ong", + "discord": "1159944006587924490" + }, + + "record": { + "CNAME": "v205.hackclub.app" + } +} diff --git a/domains/v3x.json b/domains/v3x.json new file mode 100644 index 000000000..c03de000b --- /dev/null +++ b/domains/v3x.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "v3vishal", + "discord": "v3xg", + "email": "" + }, + "record": { + "CNAME": "v3vishal.github.io" + } +} diff --git a/domains/vacer.json b/domains/vacer.json new file mode 100644 index 000000000..7d40b2385 --- /dev/null +++ b/domains/vacer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Strongboost", + "email": "gigantenjaeger.junior@gmail.com" + }, + "record": { + "A": ["5.253.246.227"] + } +} diff --git a/domains/vachanmn.json b/domains/vachanmn.json index 001b5295a..ae385acda 100644 --- a/domains/vachanmn.json +++ b/domains/vachanmn.json @@ -1,12 +1,9 @@ - - { - "owner": { - "username": "vachanmn123", - "email": "vachanmn123@gmail.com" - }, - - "record": { - "A": ["185.199.108.153"] - } - } - \ No newline at end of file +{ + "owner": { + "username": "vachanmn123", + "email": "vachanmn123@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/vadimhl.json b/domains/vadimhl.json deleted file mode 100644 index d4c5ae018..000000000 --- a/domains/vadimhl.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "My site", - "owner": { - "username": "vadimhl", - "email": "vadimhl@gmail.com" - }, - "record": { - "A": ["130.61.49.110"] - } -} diff --git a/domains/vaibhav.json b/domains/vaibhav.json deleted file mode 100644 index 0eef4c650..000000000 --- a/domains/vaibhav.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Vaibhav-Kashyap07", - "email": "", - "discord": "Vaibhav Kashyap#5747" - }, - "repo": "https://github.com/Vaibhav-Kashyap07/Vaibhav-Kashyap07.github.io", - "record": { - "CNAME": "Vaibhav-Kashyap07.github.io" - } -} diff --git a/domains/vaibhavsys.json b/domains/vaibhavsys.json deleted file mode 100644 index f239ad6e4..000000000 --- a/domains/vaibhavsys.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "VaibhavSys", - "email": "vaibhavdhi@proton.me" - }, - "record": { - "URL": "https://www.vaibhav.studio" - } -} diff --git a/domains/valeron.json b/domains/valeron.json new file mode 100644 index 000000000..67530b01c --- /dev/null +++ b/domains/valeron.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Valeron-T", + "email": "valeron.toscano@xaviers.edu.in" + }, + "record": { + "URL": "https://valwebsitedata.z29.web.core.windows.net/" + } +} diff --git a/domains/valo-io.json b/domains/valo-io.json new file mode 100644 index 000000000..3451aed67 --- /dev/null +++ b/domains/valo-io.json @@ -0,0 +1,13 @@ +{ + "description": "Static page, displaying the links to my socials", + "repo": "https://github.com/valo-io/valo-io.github.io", + "owner": { + "username": "valo-io", + "email": "starfleet.valowolf@gmail.com", + "twitter": "Valo_iO", + "discord": "valo_io" + }, + "record": { + "CNAME": "valo-io.github.io" + } +} diff --git a/domains/vamtic.json b/domains/vamtic.json new file mode 100644 index 000000000..0b0d9b23f --- /dev/null +++ b/domains/vamtic.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "vamtic", + "email": "vamtic@yahoo.com" + }, + "record": { + "A": ["89.106.200.1"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": ["v=spf1 include:spf.improvmx.com ~all", "google-site-verification=c87D0Hk4uYmuX7ztxpSafWM2aRVNibOeA7gLv7SK2ag"] + } +} diff --git a/domains/vanillia.json b/domains/vanillia.json index 137151631..a10d14844 100644 --- a/domains/vanillia.json +++ b/domains/vanillia.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "caffein3", - "email": "sketched@disroot.org", - "discord": "sketched#1613" - }, - "record": { - "MX": ["mail.postale.io"], - "TXT": "v=spf1 mx ~all" - } -} + "owner": { + "username": "caffein3", + "email": "sketched@disroot.org", + "discord": "sketched#1613" + }, + "record": { + "MX": ["mail.postale.io"], + "TXT": "v=spf1 mx ~all" + } +} diff --git a/domains/vansh.json b/domains/vansh.json new file mode 100644 index 000000000..99919fe4e --- /dev/null +++ b/domains/vansh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vansh-goel", + "email": "goelvansh2@gmail.com" + }, + "record": { + "CNAME": "vansh-goel.github.io" + }, + "description": "Personal Portfolio" +} diff --git a/domains/vapedevv.json b/domains/vapedevv.json index 7095c9bd5..10bbaa733 100644 --- a/domains/vapedevv.json +++ b/domains/vapedevv.json @@ -1,12 +1,12 @@ { - "description": "My discord profile & portfolio", - "repo": "https://github.com/jadjasjafsafasfasfsa/gkdgskgkskgksbbsdbsgsd", - "owner": { - "username": "jadjasjafsafasfasfsa", - "email": "vapedev2@gmail.com", - "discord": "vapedevv#5640" - }, - "record": { - "CNAME": "jadjasjafsafasfasfsa.github.io" - } -} + "description": "My discord profile & portfolio", + "repo": "https://github.com/jadjasjafsafasfasfsa/gkdgskgkskgksbbsdbsgsd", + "owner": { + "username": "jadjasjafsafasfasfsa", + "email": "vapedev2@gmail.com", + "discord": "vapedevv#5640" + }, + "record": { + "CNAME": "jadjasjafsafasfasfsa.github.io" + } +} diff --git a/domains/varexity.json b/domains/varexity.json new file mode 100644 index 000000000..49a7ce293 --- /dev/null +++ b/domains/varexity.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "varexity", + "email": "varexity@gmail.com" + }, + "record": { + "CNAME": "varexity.github.io" + } +} diff --git a/domains/varunkumarbilwal.json b/domains/varunkumarbilwal.json index ea0717939..3682309f0 100644 --- a/domains/varunkumarbilwal.json +++ b/domains/varunkumarbilwal.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "varunkumarbilwal", + "email": "varunkumarbilwal@gmail.com" + }, - { - "owner": { - "username": "varunkumarbilwal", - "email": "varunkumarbilwal@gmail.com" - }, - - "record": { - "CNAME": "varunkumarbilwal.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "varunkumarbilwal.github.io" + } +} diff --git a/domains/vasilismylonas.json b/domains/vasilismylonas.json deleted file mode 100644 index bfe2ccc69..000000000 --- a/domains/vasilismylonas.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "VasilisMylonas", - "email": "vasilismylonas@protonmail.com" - }, - - "record": { - "CNAME": "vasilismylonas.github.io" - } -} diff --git a/domains/vaskian.json b/domains/vaskian.json deleted file mode 100644 index b505e5617..000000000 --- a/domains/vaskian.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Vaskian is a Dev", - "repo": "https://github.com/Nami2012", - "owner": { - "username": "Nami2012", - "email": "namithasadeeshbabu@gmail.com" - }, - "record": { - "URL": "https://vaskian.me" - } -} diff --git a/domains/vaxad.json b/domains/vaxad.json new file mode 100644 index 000000000..e209e12ec --- /dev/null +++ b/domains/vaxad.json @@ -0,0 +1,11 @@ +{ + "description": "Varad's personal developer website", + "repo": "https://github.com/vaxad/portfolio3.0", + "owner": { + "username": "vaxad", + "email": "varadprabhu111@gmail.com" + }, + "record": { + "URL": "https://varadprabhu.vercel.app" + } +} \ No newline at end of file diff --git a/domains/vbc6.json b/domains/vbc6.json new file mode 100644 index 000000000..25e05a758 --- /dev/null +++ b/domains/vbc6.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "tsb3-a2", + "email": "tsb3.a2@proton.me" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/vbkg.json b/domains/vbkg.json index b86f8c5b7..a5d5e977b 100644 --- a/domains/vbkg.json +++ b/domains/vbkg.json @@ -1,10 +1,13 @@ { - "owner": { - "username": "qekbd7c6", - "email": "qekbd7c6@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx1.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "qekbd7c6", + "email": "qekbd7c6@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx1.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/ved.json b/domains/ved.json new file mode 100644 index 000000000..b3265de53 --- /dev/null +++ b/domains/ved.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ved-patel226", + "email": "talk2ved11@gmail.com" + }, + "record": { + "CNAME": "ved-patel226.github.io" + } +} diff --git a/domains/veeju.json b/domains/veeju.json new file mode 100644 index 000000000..ee93f7282 --- /dev/null +++ b/domains/veeju.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pocopepe", + "email": "avijusanjai@gmail.com" + }, + "record": { + "CNAME": "portfolio-4m8.pages.dev" + } +} diff --git a/domains/veer.json b/domains/veer.json deleted file mode 100644 index cf1986de8..000000000 --- a/domains/veer.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "TheVeerRana", - "email": "hello@veer.codes" - }, - "record": { - "CNAME": "veer.codes" - } -} diff --git a/domains/veirt.json b/domains/veirt.json index f934b71fb..b808da15b 100644 --- a/domains/veirt.json +++ b/domains/veirt.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Veirt", - "email": "wetrau8zs@mozmail.com" - }, - "record": { - "CNAME": "veirt.github.io" - } - } - +{ + "owner": { + "username": "Veirt", + "email": "wetrau8zs@mozmail.com" + }, + "record": { + "CNAME": "veirt.github.io" + } +} diff --git a/domains/venarimusic.json b/domains/venarimusic.json new file mode 100644 index 000000000..c11bc1fff --- /dev/null +++ b/domains/venarimusic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zirmith", + "email": "f2v74yt@gmail.com" + }, + "record": { + "CNAME": "vens-music-cove.onrender.com" + } +} diff --git a/domains/vendors.syntaxloopers.json b/domains/vendors.syntaxloopers.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/vendors.syntaxloopers.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/venquidev.json b/domains/venquidev.json index 3cee3629f..ae1517736 100644 --- a/domains/venquidev.json +++ b/domains/venquidev.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "venquidev", + "email": "edwinrey5211@gmail.com" + }, - { - "owner": { - "username": "venquidev", - "email": "edwinrey5211@gmail.com" - }, - - "record": { - "CNAME": "venquidev.pages.dev" - } - } - \ No newline at end of file + "record": { + "CNAME": "venquidev.pages.dev" + } +} diff --git a/domains/ver0z.json b/domains/ver0z.json deleted file mode 100644 index 8319ebb9f..000000000 --- a/domains/ver0z.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "ver0zdev", - "email": "ziadfr@icloud.com" - }, - - "record": { - "URL": "https://ver0z.dev" - } - } - diff --git a/domains/vercel.cutedog5695.json b/domains/vercel.cutedog5695.json new file mode 100644 index 000000000..a71d11e68 --- /dev/null +++ b/domains/vercel.cutedog5695.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "", + "discord": "716306888492318790", + "twitter": "cutedog5695" + }, + "record": { + "CNAME": "cutedog5695test.vercel.app" + } +} diff --git a/domains/vercel.uwu.json b/domains/vercel.uwu.json new file mode 100644 index 000000000..304ea2a5c --- /dev/null +++ b/domains/vercel.uwu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "orxngc", + "discord": "orangc", + "email": "orangc@proton.me" + }, + "record": { + "CNAME": "orxngc-github-io.vercel.app" + } +} diff --git a/domains/vercelstats.json b/domains/vercelstats.json new file mode 100644 index 000000000..df488964d --- /dev/null +++ b/domains/vercelstats.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "urasdbwd", + "email": "", + "discord": "291889282032074752", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Rk-tjtU1eVZHHNI82WkQoEiO7wtfqi_6oY-9xBg7tg1mIJpxyKGdsiwV_TAp3mX-iG_U9htCCFHbJLhGfX4RqVkdUiHmyawfIjohS0VRBqRLOJd3-9ReuVtGUpQ_DOaRiRAk-2Hlhk_ezQL4AiuhXHD28mmIYeKUStsdzBlbRmpQlwoYM-2yFIKMEMkh-CRc-icSqg4qfGW5L-a9b4ZWpJyjueT-Im_zFuSOlxxNw2973ReDrufBlH9aDP5Jaf182kkLC_3Tqal06AFP3E9_fDDop6I9LHgGSxDgdGxsk6sk_JqNiCuEPj5FPrtyzT8w8d2wrgPbT6JAm2TbATwPpg.is8KsKYKveS3VWScvBcJcw.jR2xMNvc4N8daMiq4nI4_XWM0DHse1UNfSoArKF9udkm5-8e9LDupPjzNeA-gLaSXE_bLOxbq3ofTUqFWrckSdQodJfJzqCaU_fhrYxGmX8.T8FA4E_QlW4nmGGOhNUFAg" + }, + + "record": { + "A": ["193.149.164.209"] + } + } + \ No newline at end of file diff --git a/domains/vercte.json b/domains/vercte.json deleted file mode 100644 index a82033348..000000000 --- a/domains/vercte.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "lopste", - "email": "lopstedener@gmail.com" - }, - "record": { - "URL": "https://vercte.net" - } - } - diff --git a/domains/verite.json b/domains/verite.json deleted file mode 100644 index f9d5c36bd..000000000 --- a/domains/verite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/makuzaverite/veritem.me", - "owner": { - "username": "makuzaverite", - "email": "mugaboverite@gmail.com", - "twitter": "makuza_mugabo_v" - }, - "record": { - "URL": "https://veritem.me" - } -} diff --git a/domains/versions.johna.json b/domains/versions.johna.json new file mode 100644 index 000000000..cd82b41ad --- /dev/null +++ b/domains/versions.johna.json @@ -0,0 +1,11 @@ +{ + "description": "A list of previous designs for my website", + "repo": "https://github.com/Johna-123/site-versions", + "owner": { + "username": "Johna-123", + "email": "j-verstraaten@hotmail.com" + }, + "record": { + "CNAME": "version-johna.pages.dev" + } +} diff --git a/domains/verstandlxs.json b/domains/verstandlxs.json new file mode 100644 index 000000000..e67dedc0c --- /dev/null +++ b/domains/verstandlxs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "byKeksYT", + "email": "community@verstandlxs.de" + }, + "record": { + "CNAME": "verstandlxs.eu" + } +} diff --git a/domains/vesly.json b/domains/vesly.json new file mode 100644 index 000000000..8147fd31d --- /dev/null +++ b/domains/vesly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Veslydev", + "email": "theflashtrdublaj@gmail.com" + }, + "record": { + "A": ["88.209.248.121"] + } +} diff --git a/domains/vhardik.json b/domains/vhardik.json new file mode 100644 index 000000000..edc213e29 --- /dev/null +++ b/domains/vhardik.json @@ -0,0 +1,11 @@ +{ + "description": "Hardik Portofolio", + "repo": "https://github.com/Hardik-Vanani/portfolio", + "owner": { + "username": "Hardik-Vanani", + "email": "vananihardik8553@gmail.com" + }, + "record": { + "CNAME": "hardik-vanani.github.io" + } +} diff --git a/domains/vi0leta.json b/domains/vi0leta.json new file mode 100644 index 000000000..1af90edd0 --- /dev/null +++ b/domains/vi0leta.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vi0letadev", + "email": "vi0leta@riseup.net" + }, + + "record": { + "A": ["37.27.4.76"] + } +} diff --git a/domains/vibez.json b/domains/vibez.json new file mode 100644 index 000000000..39114e3b1 --- /dev/null +++ b/domains/vibez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PayDash", + "email": "Theoneand200@gmail.com" + }, + "record": { + "CNAME": "paydash.github.io" + } +} diff --git a/domains/vic.json b/domains/vic.json index 02080b927..a939602f6 100644 --- a/domains/vic.json +++ b/domains/vic.json @@ -1,12 +1,12 @@ { - "description": "my personal website", - "repo": "https://github.com/v1ctorio/v1ctorio.github.io", - "owner": { - "username": "victorioxd", - "email": "vicxd@pm.me", - "twitter": "vicjajsalu2" - }, - "record": { - "CNAME": "v1ctorio.github.io" - } -} + "description": "my personal website", + "repo": "https://github.com/v1ctorio/v1ctorio.github.io", + "owner": { + "username": "victorioxd", + "email": "vicxd@pm.me", + "twitter": "vicjajsalu2" + }, + "record": { + "CNAME": "v1ctorio.github.io" + } +} diff --git a/domains/victor.json b/domains/victor.json index 3de89e2cd..0c432294a 100644 --- a/domains/victor.json +++ b/domains/victor.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "victoroliveira", + "email": "victoroliveira.eng@gmail.com" + }, - { - "owner": { - "username": "victoroliveira", - "email": "victoroliveira.eng@gmail.com" - }, - - "record": { - "CNAME": "victoroliveira.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "victoroliveira.github.io" + } +} diff --git a/domains/victormak.json b/domains/victormak.json new file mode 100644 index 000000000..bcff28194 --- /dev/null +++ b/domains/victormak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DreamerChaserHAH", + "email": "ehekunhah@gmail.com" + }, + "record": { + "CNAME": "dreamerchaserhah.github.io" + } +} diff --git a/domains/victormenezes.json b/domains/victormenezes.json deleted file mode 100644 index 68f0904f1..000000000 --- a/domains/victormenezes.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Victor Menezes Personal Website", - "repo": "https://github.com/teixeiravictor/my-blog", - "owner": { - "username": "teixeiravictor", - "email": "victormenezes8990@gmail.com" - }, - "record": { - "A": ["168.220.95.204"] - } -} diff --git a/domains/victoroliveira.json b/domains/victoroliveira.json index 3de89e2cd..0c432294a 100644 --- a/domains/victoroliveira.json +++ b/domains/victoroliveira.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "victoroliveira", + "email": "victoroliveira.eng@gmail.com" + }, - { - "owner": { - "username": "victoroliveira", - "email": "victoroliveira.eng@gmail.com" - }, - - "record": { - "CNAME": "victoroliveira.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "victoroliveira.github.io" + } +} diff --git a/domains/victorvickie.json b/domains/victorvickie.json new file mode 100644 index 000000000..44b254078 --- /dev/null +++ b/domains/victorvickie.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "VICTORVICKIE", + "email": "s.vickie14@gmail.com", + "discord": "448131424655114250" + }, + + "record": { + "URL": "https://vk.is-a.dev" + } +} diff --git a/domains/vien.json b/domains/vien.json index a4c79c07a..e5bfbe783 100644 --- a/domains/vien.json +++ b/domains/vien.json @@ -1,4 +1,3 @@ - { "owner": { "username": "VienDeveloper", @@ -8,4 +7,3 @@ "CNAME": "viendeveloper.github.io" } } - diff --git a/domains/viggo.json b/domains/viggo.json new file mode 100644 index 000000000..1c5678681 --- /dev/null +++ b/domains/viggo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ViggAlm", + "email": "ViggAlm@gmail.com", + "discord": "930932488040226876" + }, + + "record": { + "CNAME": "viggalm.github.io" + } +} diff --git a/domains/viggu.json b/domains/viggu.json deleted file mode 100644 index 27faebff7..000000000 --- a/domains/viggu.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "VIGGU-7", - "email": "vigneshofficialyt@gmail.com", - "twitter": "VIGGU_8" - }, - "record": { - "CNAME": "0177c904-af82-4e29-a07f-f5b89af06586.id.repl.co" - } -} diff --git a/domains/vigkrishna.json b/domains/vigkrishna.json new file mode 100644 index 000000000..d95b228b0 --- /dev/null +++ b/domains/vigkrishna.json @@ -0,0 +1,11 @@ +{ + "description": "vigkrishna.is-a.dev", + "repo": "https://vigkrishna.github.io/Portfolio_2023", + "owner": { + "username": "vigkrishna", + "email": "vigkrishna@yahoo.com" + }, + "record": { + "CNAME": "vigkrishna.github.io" + } +} diff --git a/domains/vihanga.json b/domains/vihanga.json new file mode 100644 index 000000000..fa92d2df2 --- /dev/null +++ b/domains/vihanga.json @@ -0,0 +1,12 @@ +{ + "description": "For my personal projects site.", + "repo": "https://github.com/vihangaashin/vihangaashin.github.io", + "owner": { + "username": "vihangaashin", + "email": "vihangapubg44@gmail.com", + "twitter": "vihangayt" + }, + "record": { + "CNAME": "vihangaashin.github.io" + } +} diff --git a/domains/vihangayt.json b/domains/vihangayt.json new file mode 100644 index 000000000..6fc71b507 --- /dev/null +++ b/domains/vihangayt.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vihangaashin", + "email": "vihangapubg44@gmail.com", + "discord": "1088099426570092594" + }, + "record": { + "CNAME": "vihangapi.vercel.app" + } +} diff --git a/domains/vikram.json b/domains/vikram.json index b14c8e994..99fdaff36 100644 --- a/domains/vikram.json +++ b/domains/vikram.json @@ -1,12 +1,12 @@ { - "description": "This domain will be used for my personal website.", - "repo": "https://github.com/vikramv20/vikramv20.github.io", - "owner": { - "username": "vikramv20", - "email": "vs423502@gmail.com", - "twitter": "vikram_v18" - }, - "record": { - "CNAME": "vikramv20.github.io" - } -} + "description": "This domain will be used for my personal website.", + "repo": "https://github.com/vikramisdev/vikram", + "owner": { + "username": "vikramisdev", + "email": "vs423502@gmail.com", + "twitter": "vikramisdev" + }, + "record": { + "CNAME": "vikramisdev.netlify.app" + } +} diff --git a/domains/vikrant.json b/domains/vikrant.json deleted file mode 100644 index 4bc05451a..000000000 --- a/domains/vikrant.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "150207", - "email": "daredevil.vikrant@gmail.com" - }, - "record": { - "URL": "https://github.com/vikrant7251" - } -} diff --git a/domains/vilari.json b/domains/vilari.json new file mode 100644 index 000000000..51bf8a171 --- /dev/null +++ b/domains/vilari.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VilariStorms", + "email": "vilari@anonymail.nl" + }, + "record": { + "A": ["24.199.103.194"] + } +} diff --git a/domains/vimalsaraswat.json b/domains/vimalsaraswat.json new file mode 100644 index 000000000..677ca4ac5 --- /dev/null +++ b/domains/vimalsaraswat.json @@ -0,0 +1,12 @@ +{ + "description": "Vimal Saraswat Portfolio", + "repo": "https://github.com/vimalsaraswat/vimalsaraswat.github.io", + "owner": { + "username": "vimalsaraswat", + "email": "saraswatvimal1@gmail.com", + "twitter": "vimalsaraswat00" + }, + "record": { + "CNAME": "vimalsaraswat.github.io" + } +} diff --git a/domains/vinceale7082.json b/domains/vinceale7082.json new file mode 100644 index 000000000..64ad9a8f8 --- /dev/null +++ b/domains/vinceale7082.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "VinceAle7082", + "email": "vinceale7082@gmail.com", + "discord": "1078447459900063816", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw" + }, + + "record": { + "A": ["37.183.129.150"] + } +} diff --git a/domains/vincyxir.json b/domains/vincyxir.json index 6f754aaa1..10c26981d 100644 --- a/domains/vincyxir.json +++ b/domains/vincyxir.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vincyxiroff", - "email": "vincyxir@gmail.com" - }, - "record": { - "CNAME": "vincyxiroff.github.io" - } + "owner": { + "username": "vincyxiroff", + "email": "vincyxir@gmail.com" + }, + "record": { + "CNAME": "vincyxiroff.github.io" + } } diff --git a/domains/vineet.json b/domains/vineet.json index e009e7107..a3c3a0a18 100644 --- a/domains/vineet.json +++ b/domains/vineet.json @@ -1,12 +1,12 @@ { - "description": "Link to my Landing Page", - "repo": "https://github.com/iamv1n/iamv1n.github.io", - "owner": { - "username": "iamv1n", - "email": "vineet@iamv1n.xyz", - "twitter": "vineetstwt" - }, - "record": { - "URL": "https://iamv1n.xyz" - } + "description": "Link to my Landing Page", + "repo": "https://github.com/iamv1n/iamv1n.github.io", + "owner": { + "username": "iamv1n", + "email": "vind3v17@gmail.com", + "twitter": "vineetstwt" + }, + "record": { + "URL": "https://iamv1n.github.io" + } } diff --git a/domains/vineetkhemnani.json b/domains/vineetkhemnani.json new file mode 100644 index 000000000..673371587 --- /dev/null +++ b/domains/vineetkhemnani.json @@ -0,0 +1,11 @@ +{ + "description": "Subdomain for my personal portfolio", + "repo": "https://github.com/vineetkhemnani/vineetkhemnani.github.io", + "owner": { + "username": "vineetkhemnani", + "email": "vineetkhemnani09@gmail.com" + }, + "record": { + "CNAME": "vineetkhemnani.github.io" + } +} diff --git a/domains/viniciusmanoel.json b/domains/viniciusmanoel.json deleted file mode 100644 index 2aea1f054..000000000 --- a/domains/viniciusmanoel.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "vncsmnl", - "email": "viniciusmanoel07@hotmail.com" - }, - - "record": { - "CNAME": "viniciusmanoel.ml" - } - } - \ No newline at end of file diff --git a/domains/vinn.json b/domains/vinn.json new file mode 100644 index 000000000..e4ee201d5 --- /dev/null +++ b/domains/vinn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VinnDev", + "email": "vinndeveloper@gmail.com" + }, + "record": { + "CNAME": "vinndev.github.io" + } +} diff --git a/domains/vion.json b/domains/vion.json deleted file mode 100644 index cc0cb83f8..000000000 --- a/domains/vion.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "VIONYT", - "email": "yt.vion@gmail.com" - }, - "record": { - "URL": "https://vion.moe" - } - } - \ No newline at end of file diff --git a/domains/viperadnan.json b/domains/viperadnan.json index 2d7ae0845..70e61f044 100644 --- a/domains/viperadnan.json +++ b/domains/viperadnan.json @@ -1,11 +1,11 @@ { - "description": "portfolio", - "repo": "https://github.com/viperadnan-git/viperadnan-git.github.io", - "owner": { - "username": "viperadnan-git", - "email": "viperadnan@gmail.com" - }, - "record": { - "CNAME": "viperadnan-git.github.io" - } + "description": "portfolio", + "repo": "https://github.com/viperadnan-git/viperadnan-git.github.io", + "owner": { + "username": "viperadnan-git", + "email": "viperadnan@gmail.com" + }, + "record": { + "CNAME": "viperadnan-git.github.io" + } } diff --git a/domains/viplav-mistry.json b/domains/viplav-mistry.json new file mode 100644 index 000000000..3c752af87 --- /dev/null +++ b/domains/viplav-mistry.json @@ -0,0 +1,11 @@ +{ + "description": "Persona dev website", + "repo": "https://github.com/viplav-mistry/viplav-mistry.github.io", + "owner": { + "username": "viplav-mistry", + "email": "" + }, + "record": { + "CNAME": "viplav-mistry.github.io" + } +} diff --git a/domains/vipul.json b/domains/vipul.json new file mode 100644 index 000000000..645e0f455 --- /dev/null +++ b/domains/vipul.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/VipulOG/VipulOG.github.io", + "owner": { + "username": "VipulOG", + "email": "vipultyagi386+github@gmail.com" + }, + "record": { + "CNAME": "VipulOG.github.io" + } +} diff --git a/domains/viral-gadhiya.json b/domains/viral-gadhiya.json index c1a5609f0..5154666e0 100644 --- a/domains/viral-gadhiya.json +++ b/domains/viral-gadhiya.json @@ -9,4 +9,3 @@ "CNAME": "viral-gadhiya.github.io" } } - diff --git a/domains/vishalkrsharma.json b/domains/vishalkrsharma.json new file mode 100644 index 000000000..61a833385 --- /dev/null +++ b/domains/vishalkrsharma.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "vishalkrsharma", + "email": "", + "discord": "daredev1l#0205" + }, + "description": "Vishal Kumar Sharma - Portfolio", + "repo": "https://github.com/vishalkrsharma/portfolio", + "record": { + "URL": "https://vishalkrsharma.vercel.app" + } +} diff --git a/domains/vishalxd.json b/domains/vishalxd.json new file mode 100644 index 000000000..2bad1d40e --- /dev/null +++ b/domains/vishalxd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Vishal-1756", + "email": "vishalborse2885@gmail.com" + }, + "record": { + "URL": "https://my-portfolio-vishal-1756.vercel.app/" + } +} diff --git a/domains/vishesh.json b/domains/vishesh.json deleted file mode 100644 index a4f49d36f..000000000 --- a/domains/vishesh.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Personal Website", - "repo": "https://github.com/VisheshBansal", - "owner": { - "username": "VisheshBansal", - "email": "hi@visheshbansal.ml", - "twitter": "VisheshBansal17" - }, - "record": { - "URL": "https://visheshbansal.ml" - } -} diff --git a/domains/vishnu.json b/domains/vishnu.json index f2887686c..8013950b7 100644 --- a/domains/vishnu.json +++ b/domains/vishnu.json @@ -1,11 +1,11 @@ { - "description": "Vishnu's personal website", - "repo": "https://github.com/vishnu012/vishnu012.github.io", - "owner": { - "username": "vishnu012", - "email": "vishnu012@pm.me" - }, - "record": { - "CNAME": "vishnu012.github.io" - } + "description": "Vishnu's personal website", + "repo": "https://github.com/vishnu012/vishnu012.github.io", + "owner": { + "username": "vishnu012", + "email": "vishnu012@pm.me" + }, + "record": { + "CNAME": "vishnu012.github.io" + } } diff --git a/domains/vishok.json b/domains/vishok.json new file mode 100644 index 000000000..b14343e4e --- /dev/null +++ b/domains/vishok.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mvishok", + "email": "mvishok2005@gmail.com" + }, + "record": { + "CNAME": "mvishok.github.io" + } +} diff --git a/domains/vishwapinnawala.json b/domains/vishwapinnawala.json new file mode 100644 index 000000000..966c730e7 --- /dev/null +++ b/domains/vishwapinnawala.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vishwapinnawala", + "email": "vishwaspinnawala@gmail.com" + }, + + "record": { + "A": ["198.91.81.12"] + } +} diff --git a/domains/vismbs.json b/domains/vismbs.json new file mode 100644 index 000000000..3fc62a53b --- /dev/null +++ b/domains/vismbs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gzfs", + "email": "vismbs@pm.me" + }, + "record": { + "A": ["150.230.141.111"] + } +} diff --git a/domains/visualdot.json b/domains/visualdot.json new file mode 100644 index 000000000..a334503f5 --- /dev/null +++ b/domains/visualdot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raidopaizer", + "email": "raidotp7@proton.me" + }, + "record": { + "CNAME": "dns.nekoweb.org" + } +} diff --git a/domains/vitalik.json b/domains/vitalik.json new file mode 100644 index 000000000..372c2886b --- /dev/null +++ b/domains/vitalik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "satoshi-prefers-monero", + "email": "satoshinakamoto@tuta.com" + }, + "record": { + "URL": "https://www.stephencastelphoto.com" + } +} diff --git a/domains/vivek.json b/domains/vivek.json index 0b99831d2..de9d64e68 100644 --- a/domains/vivek.json +++ b/domains/vivek.json @@ -1,13 +1,21 @@ -{ - "description": "Vivek's Website", - "repo": "https://github.com/vivek-oraon/vivek-oraon.github.io", - "owner": { - "username": "vivek-oraon", - "email": "vivekoraon@pm.me" - }, - "record": { - "A": ["185.199.109.153", "185.199.108.153", "185.199.111.153", "185.199.110.153"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} +{ + "description": "Vivek's Website", + "repo": "https://github.com/vivek-oraon/vivek-oraon.github.io", + "owner": { + "username": "vivek-oraon", + "email": "vivekoraon@pm.me" + }, + "record": { + "A": [ + "185.199.109.153", + "185.199.108.153", + "185.199.111.153", + "185.199.110.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/vivekpratapsingh.json b/domains/vivekpratapsingh.json new file mode 100644 index 000000000..b91daf6ec --- /dev/null +++ b/domains/vivekpratapsingh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vpsone", + "email": "onenewfacts@gmail.com" + }, + "record": { + "URL": "https://vivek-pratap-singh.vercel.app/" + } +} diff --git a/domains/vk.json b/domains/vk.json new file mode 100644 index 000000000..319c34f62 --- /dev/null +++ b/domains/vk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "VICTORVICKIE", + "email": "s.vickie14@gmail.com", + "discord": "448131424655114250" + }, + + "record": { + "CNAME": "victorvickie.github.io" + } +} diff --git a/domains/vlab.json b/domains/vlab.json deleted file mode 100644 index 90c702843..000000000 --- a/domains/vlab.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal Website", - "repo": "https://github.com/natura4917", - "owner": { - "username": "natura4917", - "email": "natura4917@gmail.com" - }, - "record": { - "A": ["152.67.216.65"] - } -} diff --git a/domains/vlppz.json b/domains/vlppz.json new file mode 100644 index 000000000..ea6db3d32 --- /dev/null +++ b/domains/vlppz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VladimirPapazov88", + "email": "vfr.123.op@gmail.com" + }, + "record": { + "CNAME": "main-website-2q4.pages.dev" + } +} diff --git a/domains/vma.json b/domains/vma.json new file mode 100644 index 000000000..aebf97aeb --- /dev/null +++ b/domains/vma.json @@ -0,0 +1,11 @@ +{ + "description": "Link for vmadev-ru personal site on GitHub pages", + "repo": "https://github.com/vmadev-ru/vmadev-ru.github.io", + "owner": { + "username": "vmadev-ru", + "email": "vmadev.ru@gmail.com" + }, + "record": { + "CNAME": "vmadev-ru.github.io" + } +} diff --git a/domains/vo.json b/domains/vo.json new file mode 100644 index 000000000..9a2269538 --- /dev/null +++ b/domains/vo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YoruAkio", + "email": "yoruakio@proton.me" + }, + "record": { + "CNAME": "vo-kio.pages.dev" + } +} diff --git a/domains/voh.json b/domains/voh.json new file mode 100644 index 000000000..3fe1dabaa --- /dev/null +++ b/domains/voh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TotallyVoh", + "email": "vohonganhPE@gmail.com" + }, + "record": { + "CNAME": "totallyvoh.github.io" + } +} diff --git a/domains/void.json b/domains/void.json index 2fccde29f..cb493ef4d 100644 --- a/domains/void.json +++ b/domains/void.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "tomgx", - "email": "deliveryservice01q@gmail.com" - }, - "record": { - "CNAME": "tomgx.github.io" - } -} + "owner": { + "username": "tomgx", + "email": "deliveryservice01q@gmail.com" + }, + "record": { + "CNAME": "tomgx.github.io" + } +} diff --git a/domains/vollow.json b/domains/vollow.json new file mode 100644 index 000000000..8fa708882 --- /dev/null +++ b/domains/vollow.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vollowx", + "email": "muffinslog@proton.me" + }, + "record": { + "CNAME": "vollowx.github.io" + } +} diff --git a/domains/vornexx.json b/domains/vornexx.json new file mode 100644 index 000000000..c89394853 --- /dev/null +++ b/domains/vornexx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vornex-gh", + "email": "", + "discord": "1149438819834269856", + "twitter": "vornexx_" + }, + "record": { + "CNAME": "vornexx.pages.dev" + } +} diff --git a/domains/voxel.json b/domains/voxel.json new file mode 100644 index 000000000..0b48e18ff --- /dev/null +++ b/domains/voxel.json @@ -0,0 +1,12 @@ +{ + "description": "personal website", + "repo": "https://github.com/voxel79/voxel79.github.io", + "owner": { + "username": "voxel79", + "email": "voxelcool@gmail.com", + "twitter": "voxelhaha" + }, + "record": { + "CNAME": "voxel79.github.io" + } +} diff --git a/domains/voxj.json b/domains/voxj.json new file mode 100644 index 000000000..b6afe1879 --- /dev/null +++ b/domains/voxj.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "voxj", + "email": "", + "discord": "1108039808649015336" + }, + + "record": { + "CNAME": "rawintosh.github.io" + } +} diff --git a/domains/vps.quincetart10.json b/domains/vps.quincetart10.json new file mode 100644 index 000000000..05a64bc57 --- /dev/null +++ b/domains/vps.quincetart10.json @@ -0,0 +1,13 @@ +{ + "description": "VPS", + "owner": { + "username": "QuinceTart10", + "email": "", + "discord": "862644161156218891" + }, + "record": { + "A": [ + "64.226.124.11" + ] + } +} diff --git a/domains/vrxxdev.json b/domains/vrxxdev.json new file mode 100644 index 000000000..febee3fa1 --- /dev/null +++ b/domains/vrxxdev.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Its-VrxxDev", + "email": "vrxxdev@gmail.com" + }, + "record": { + "CNAME": "5c89de66-4d03-4838-842d-4745a6da887d-00-mv6wfn8khxkg.pike.replit.dev" + } +} diff --git a/domains/vsecoder.json b/domains/vsecoder.json new file mode 100644 index 000000000..6e50c8520 --- /dev/null +++ b/domains/vsecoder.json @@ -0,0 +1,12 @@ +{ + "description": "Create resume page, and add this link in social", + "repo": "https://github.com/vsecoder/vsecoder.github.io", + "owner": { + "username": "vsecoder", + "email": "kreepmeister@gmail.com", + "twitter": "vsecoder" + }, + "record": { + "CNAME": "vsecoder.github.io" + } +} diff --git a/domains/vsh.json b/domains/vsh.json new file mode 100644 index 000000000..e4fec6333 --- /dev/null +++ b/domains/vsh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vshell-vxj", + "email": "mark.chexari@gmail.com" + }, + "record": { + "CNAME": "vshell-vxj.github.io" + } +} diff --git a/domains/vu.json b/domains/vu.json new file mode 100644 index 000000000..d0f09eab0 --- /dev/null +++ b/domains/vu.json @@ -0,0 +1,11 @@ +{ + "description": "Vu-is-Me", + "repo": "https://github.com/vuisme/", + "owner": { + "username": "vuisme", + "email": "me@vutn.net" + }, + "record": { + "A": ["140.245.62.158"] + } +} diff --git a/domains/vulcanocraft.json b/domains/vulcanocraft.json new file mode 100644 index 000000000..db184e905 --- /dev/null +++ b/domains/vulcanocraft.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "VulcanoSoftware", + "email": "", + "discord": "814891541205876767", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.LFE4hdd7T8k_kGv3iE8p5w1dHdG5P6bV0tWDLkePBkHeQytXDnnlDdlmdKFwEjt_eB1SbPjhAi1Q7Mej6jgJKoP8V5PH6uoAMef0CgBiRz9EQXH9fbzDy5LNYkmu76PZONduIejnPhxohKFIaSkbTZJqnz7962HCUwSNEDptIgumL3-l30iEZ6ytQDzMuwJc4eSrfFh0qIMxvanz4pD2X67uLP-OjEMcEVl9JT4MtsfMFql1e9be3pym-Gi_VSilIFTkZrBOkmyShzkK2YG44z2-iRDPh-p920OxTxpIkytub38_qJ8OMuWrB5uaQ_UhX-YZan4TbMQHXwDY0oRxZg.34fTFW_4uMTgOrh4prtEMA.NoIOnyezwNIixQEnzbBpT0P4Z7ny0WdRBpC87tNeeWSQ-3HFGekyeSht37N8iSYPJW9rShlfpglzqLRQXr0_jOCBQClLWWTWVYnsFWYtfNbKt4ziAJHzs1a-IXZLNi0Y.zVvP0gJYcOXQdhqXuK8XOQ" + }, + + "record": { + "CNAME": "vulcanocraft.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/vulpine.json b/domains/vulpine.json new file mode 100644 index 000000000..f09acfb0c --- /dev/null +++ b/domains/vulpine.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "VulpineFriend87", + "email": "", + "discord": "911268706112397392" + }, + + "record": { + "A": ["69.30.249.53"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": ["v=spf1 include:spf.improvmx.com ~all"] + } + } + diff --git a/domains/vumacc.json b/domains/vumacc.json new file mode 100644 index 000000000..5df07453a --- /dev/null +++ b/domains/vumacc.json @@ -0,0 +1,11 @@ +{ + "description": "My terminal-styled portfolio website", + "repo": "https://github.com/Vumacc/Terminal-Portfolio/", + "owner": { + "username": "Vumacc", + "email": "ays7.vumacc@gmail.com" + }, + "record": { + "URL": "https://vumack.web.app/" + } +} diff --git a/domains/vvc-bot.json b/domains/vvc-bot.json deleted file mode 100644 index 99ad7efec..000000000 --- a/domains/vvc-bot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My personal website", - "repo": "https://github.com/SmallFCraft1/vvc-bot.github.io", - "owner": { - "username": "Pham Huy", - "email": "huytqd@gmail.com" - }, - "record": { - "CNAME": "vvc-bot.github.io" - } -} diff --git a/domains/vvxrtues.json b/domains/vvxrtues.json new file mode 100644 index 000000000..4788c867b --- /dev/null +++ b/domains/vvxrtues.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vvirtues", + "email": "ezi2468@icloud.com" + }, + "record": { + "CNAME": "vvirtues.github.io" + } +} diff --git a/domains/vxj.json b/domains/vxj.json new file mode 100644 index 000000000..68372da4a --- /dev/null +++ b/domains/vxj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "voxj", + "email": "aglinkoyurjevich@gmail.com" + }, + "record": { + "CNAME": "voxj.github.io" + } +} diff --git a/domains/vxsualized.json b/domains/vxsualized.json new file mode 100644 index 000000000..bb5e85530 --- /dev/null +++ b/domains/vxsualized.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vxsualized", + "email": "vncntwbr0207@gmail.com" + }, + "record": { + "URL": "https://www.youtube.com/watch?v=dqw4w9wgxcq" + } +} diff --git a/domains/vysakh.json b/domains/vysakh.json index bd802a614..b85ce80f0 100644 --- a/domains/vysakh.json +++ b/domains/vysakh.json @@ -1,12 +1,11 @@ { - "description": "Personal Website", - "repo": "https://github.com/vyshuks/vyshuks.github.io", - "owner": { - "username": "vyshuks", - "email": "vyshuks@gmail.com" - }, - "record": { - "CNAME": "vyshuks.github.io" - } -} - + "description": "Personal Website", + "repo": "https://github.com/vyshuks/vyshuks.github.io", + "owner": { + "username": "vyshuks", + "email": "vyshuks@gmail.com" + }, + "record": { + "CNAME": "vyshuks.github.io" + } +} diff --git a/domains/w.json b/domains/w.json new file mode 100644 index 000000000..2f3788f33 --- /dev/null +++ b/domains/w.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@m.is-a.dev" + }, + + "record": { + "CNAME": "hrsn.dev" + } +} diff --git a/domains/wablesanket.json b/domains/wablesanket.json deleted file mode 100644 index bb073193b..000000000 --- a/domains/wablesanket.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "My Portfolio", - "repo": "https://github.com/Sanketwable/Portfolio", - "owner": { - "username": "sanketwable", - "email": "sanketwable123@gmail.com", - "twitter": "Wable_Sanket_" - }, - "record": { - "URL": "https://wablesanket.xyz" - } -} diff --git a/domains/wacky.json b/domains/wacky.json new file mode 100644 index 000000000..ff1252d9f --- /dev/null +++ b/domains/wacky.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Turtles127", + "email": "turtles127855@gmail.com", + "discord": "838934801972723713" + }, + + "record": { + "CNAME": "wacky.pages.dev" + } +} diff --git a/domains/wade-cheng.json b/domains/wade-cheng.json new file mode 100644 index 000000000..a5791cd45 --- /dev/null +++ b/domains/wade-cheng.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wade-cheng", + "email": "wadecheng3301@gmail.com" + }, + "record": { + "CNAME": "wade-cheng.github.io" + } +} diff --git a/domains/wadeslider.json b/domains/wadeslider.json deleted file mode 100644 index b6025a969..000000000 --- a/domains/wadeslider.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "WadeSlider", - "email": "alexisarturodh@gmail.com" - }, - "record": { - "CNAME": "wadeslider.pages.dev" - } - } - \ No newline at end of file diff --git a/domains/waffle.json b/domains/waffle.json new file mode 100644 index 000000000..879b053d9 --- /dev/null +++ b/domains/waffle.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thunderbrown", + "email": "", + "discord": "1136724508963786853", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.IOt6Fe7HwzPWLgMCnhEWxnQ5iIO_7N-JQQxbASxBod0HEN6leTAkKtT12vE4eQ8LQl-KyngOrCV3DXqMsm0TBQ-i50SATi0ulBUm0Y4DK5BE1ImiiI5r1k9wTNcIkscbjoPx-9UCXHJu4YSCCBO2ue1qabXS_qZBMoca9YoBhIRkm4TQdTHtQpBgPdEhQxpUTMLufSthViymi0gLtfrvN370LB5Ifn6uKEwqELbPgCguPrdgfRZ2IoDMmqIAjPammrzY38o4su-V11VHfaP2zmLbNirp68G1K5CM_4-vR_asABGGaZKL4UDeWSkXjWJ8vEPWtgDSWn9DdVvhALmpww.Twlxj_UzjVXZAApZdWop-w.iXs53ZGTHNcvbSqnMr8I7NMo9Uqc0snEg1Fwt148F9rGVw-WQnLrIJn3TiRHQE5t4yailES23tKfkjcyBzAM2ZQ794d8QZflOFRNmLatJe0.0oCcRtNlsAJPcsbek9kM3w" + }, + "record": { + "CNAME": "thunderbrown.github.io" + } +} diff --git a/domains/wahid.json b/domains/wahid.json index 7ef9feb70..f955df9bd 100644 --- a/domains/wahid.json +++ b/domains/wahid.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "SimplyVoid", - "email": "wahidislamlinad@pm.me" - }, - "record": { - "CNAME": "simplyvoid.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "SimplyVoid", + "email": "wahidislamlinad@pm.me" + }, + "record": { + "CNAME": "simplyvoid.github.io" + } +} diff --git a/domains/wahid7852.json b/domains/wahid7852.json new file mode 100644 index 000000000..9e204221e --- /dev/null +++ b/domains/wahid7852.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio site for Abdul Wahid Khan", + "repo": "https://github.com/Wahid7852/Wahid7852.github.io", + "owner": { + "username": "Wahid7852", + "email": "wahidzk0091@gmail.com" + }, + "record": { + "URL": "https://wahid-wahid7852.vercel.app" + } +} diff --git a/domains/waiyanmt.json b/domains/waiyanmt.json index af1f99edd..7d2c29e6e 100644 --- a/domains/waiyanmt.json +++ b/domains/waiyanmt.json @@ -1,4 +1,3 @@ - { "owner": { "username": "WillowMT", diff --git a/domains/waki.json b/domains/waki.json new file mode 100644 index 000000000..08dba2bbc --- /dev/null +++ b/domains/waki.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "aiwaki", + "email": "", + "discord": "351012170839883776" + }, + + "record": { + "CNAME": "waki.pages.dev" + } + } + diff --git a/domains/wan.json b/domains/wan.json new file mode 100644 index 000000000..bb33e8864 --- /dev/null +++ b/domains/wan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wansies", + "email": "taio6@duck.com" + }, + "record": { + "CNAME": "wansies.github.io" + } +} diff --git a/domains/wansc.json b/domains/wansc.json new file mode 100644 index 000000000..7e4a4db92 --- /dev/null +++ b/domains/wansc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "661111", + "email": "3227988255@qq.com" + }, + "record": { + "CNAME": "661111.github.io" + } +} diff --git a/domains/wansies.json b/domains/wansies.json new file mode 100644 index 000000000..c7d9bd3de --- /dev/null +++ b/domains/wansies.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wansiie", + "email": "Janeiscool4ever@web.de" + }, + "record": { + "URL": "https://helix-pullover-d4c.notion.site/wansie-3655baf5f6de40cc8be7aa8cbf67f095" + } +} diff --git a/domains/warofzen.json b/domains/warofzen.json new file mode 100644 index 000000000..e10a19eff --- /dev/null +++ b/domains/warofzen.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site", + "repo": "https://github.com/warofzen/warofzen.github.io", + "owner": { + "username": "warofzen", + "email": "warofzen1@proton.me" + }, + "record": { + "CNAME": "warofzen.github.io" + } +} diff --git a/domains/wasabi.json b/domains/wasabi.json deleted file mode 100644 index 1808c84fc..000000000 --- a/domains/wasabi.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "WasabiThumb", - "email": "wasabithumbs@gmail.com" - }, - - "record": { - "CNAME": "wasabicodes.xyz" - } - } - diff --git a/domains/wb.json b/domains/wb.json new file mode 100644 index 000000000..dccb9a1a7 --- /dev/null +++ b/domains/wb.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "davidctinescu", + "email": "", + "discord": "908591344379899944" + }, + "record": { + "A": ["156.67.25.171"] + } +} diff --git a/domains/wdh.json b/domains/wdh.json new file mode 100644 index 000000000..a56e0e845 --- /dev/null +++ b/domains/wdh.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "MaskDuck", + "email": "", + "discord": "716134528409665586", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.hrR-hCSQVXgc9HR5dgQtzdudsQw4N2SwhMOi2wgv3EVMuqZScgijTFAVAANjFynfR-w87WZ6uYNGdl7STDcxsCVf4aTb3bBgvIYrxdn94sjUhvjr9QwfQ_FByjGbcUcdYFqD80Gkzm9j-ywB4gB3plRZ_W8j7cFR0arXrtnbCUjWEvdT5C20zPnlNcgpIOgQT0sd3R_ByX8aKyoo0U66CbWBgfyVTofOBRXFDhOmdbg5-R2_tLVbj0_2keVKaw0rh6H7Vw8ASbRyfgyg4ZTpXYxqlUlnSIpuDvSUutQRaNCCRZJzi49GuDnHT9_c7vEyd16YhIDTjYf4FkQWr_uVZA.6kXO1_LRrVcp1rz5s8Ubzg.LGclXJMQDX3Bri0DVIldYYdRbrrU4maBGcFUYDObHVFKntkmigw_6xCbQZR8JbXDSkfctECmVEsQoG_iOVnXKLDiUyyDevOGZMn3rwY4MQ5374p82B6l1LDFBbuyFX4o.wty6s6UmUNnx3WcrJAljkw" + }, + + "record": { + "CNAME": "maskduck.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/weatherly.json b/domains/weatherly.json deleted file mode 100644 index 888209c96..000000000 --- a/domains/weatherly.json +++ /dev/null @@ -1,11 +0,0 @@ - { - "owner": { - "username": "iibeboQ", - "email": "qqqbeboo@yahoo.com" - }, - - "record": { - "CNAME": "6b592936-765b-4034-8e0e-d2be0efcacff.id.repl.co" - } - } - diff --git a/domains/web-sh.sx9.json b/domains/web-sh.sx9.json deleted file mode 100644 index 6f77a209e..000000000 --- a/domains/web-sh.sx9.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "SX-9", - "email": "hello@mail.sx9.is-a.dev" - }, - "record": { - "CNAME": "sx-9.github.io" - } - } - \ No newline at end of file diff --git a/domains/web.json b/domains/web.json deleted file mode 100644 index 88c5e71a9..000000000 --- a/domains/web.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "LellisV2", - "email": "lellis2x@gmail.com" - }, - "record": { - "A": ["193.25.215.223"] - } -} diff --git a/domains/webb.json b/domains/webb.json deleted file mode 100644 index c96846688..000000000 --- a/domains/webb.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "johanoloflindberg", - "email": "johan@webbab.se" - }, - - "record": { - "URL": "https://webb.io" - } - } - \ No newline at end of file diff --git a/domains/webber.json b/domains/webber.json index 0e7869b6c..6b7d38610 100644 --- a/domains/webber.json +++ b/domains/webber.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "webbertakken", + "email": "webber.nl@gmail.com" + }, - { - "owner": { - "username": "webbertakken", - "email": "webber.nl@gmail.com" - }, - - "record": { - "URL": "https://takken.io" - } - } - \ No newline at end of file + "record": { + "URL": "https://takken.io" + } +} diff --git a/domains/webmail.mrjunkyz.json b/domains/webmail.mrjunkyz.json new file mode 100644 index 000000000..1ac66d3d8 --- /dev/null +++ b/domains/webmail.mrjunkyz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/webmail.noteswallah.json b/domains/webmail.noteswallah.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/webmail.noteswallah.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/webmail.somyadipghosh.json b/domains/webmail.somyadipghosh.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/webmail.somyadipghosh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/webmail.teamcodearc.json b/domains/webmail.teamcodearc.json new file mode 100644 index 000000000..726befd50 --- /dev/null +++ b/domains/webmail.teamcodearc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/webouille.json b/domains/webouille.json new file mode 100644 index 000000000..0dd5101df --- /dev/null +++ b/domains/webouille.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrPidouille", + "email": "valentinrobin7500@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/webster.json b/domains/webster.json new file mode 100644 index 000000000..e5194fa83 --- /dev/null +++ b/domains/webster.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ItzWebster", + "email": "itzwebster@oliverbot.xyz", + "discord": "481068576363773972" + }, + + "record": { + "CNAME": "itzwebster.xyz" + } + } + diff --git a/domains/weeebdev.json b/domains/weeebdev.json new file mode 100644 index 000000000..5def70684 --- /dev/null +++ b/domains/weeebdev.json @@ -0,0 +1,12 @@ + + { + "owner": { + "username": "weeebdev", + "email": "mr.adil777@gmail.com" + }, + + "record": { + "CNAME": "weeebdev.github.io" + } + } + diff --git a/domains/weissx.json b/domains/weissx.json new file mode 100644 index 000000000..d442f3731 --- /dev/null +++ b/domains/weissx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alfari24", + "email": "ari@alfari.id" + }, + "record": { + "A": ["194.15.36.220"] + } +} diff --git a/domains/werz.json b/domains/werz.json index cce72d58f..8ace144dd 100644 --- a/domains/werz.json +++ b/domains/werz.json @@ -1,12 +1,12 @@ { - "description": "portfolio", - "repo": "https://github.com/0xwerz/0xwerz.github.io", - "owner": { - "username": "0xwerz", - "email": "moussarabie40@gmail.com", - "twitter": "cyberwerz" - }, - "record": { - "CNAME": "0xwerz.github.io" - } -} + "description": "portfolio", + "repo": "https://github.com/0xwerz/0xwerz.github.io", + "owner": { + "username": "0xwerz", + "email": "moussarabie40@gmail.com", + "twitter": "cyberwerz" + }, + "record": { + "CNAME": "0xwerz.github.io" + } +} diff --git a/domains/wes.json b/domains/wes.json new file mode 100644 index 000000000..52ed3db03 --- /dev/null +++ b/domains/wes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "westhecool", + "email": "wesley@westhedev.xyz" + }, + "record": { + "CNAME": "wesley-is-a-dev.pages.dev" + } +} \ No newline at end of file diff --git a/domains/wesley.json b/domains/wesley.json index 478acc3fb..52ed3db03 100644 --- a/domains/wesley.json +++ b/domains/wesley.json @@ -1,10 +1,9 @@ { - "repo": "https://github.com/westhecool/register", - "owner": { - "username": "westhecool", - "email": "wesley@wmail.eu.org" - }, - "record": { - "CNAME": "cname-alt-mail-server.sv1.wesdns.cf" - } -} + "owner": { + "username": "westhecool", + "email": "wesley@westhedev.xyz" + }, + "record": { + "CNAME": "wesley-is-a-dev.pages.dev" + } +} \ No newline at end of file diff --git a/domains/what.json b/domains/what.json index 3eb3bb753..706e2b55a 100644 --- a/domains/what.json +++ b/domains/what.json @@ -1,13 +1,13 @@ { - "description": "Personal Website", - "repo": "https://github.com/What-Question-Mark/What-Question-Mark.github.io", - "owner": { - "username": "What-Question-Mark", - "email": "jack.weller@hotmail.com", - "twitter": "whatqm", - "discord": "discord-username-and-discriminator" - }, - "record": { - "CNAME": "what-question-mark.github.io" - } -} + "description": "Personal Website", + "repo": "https://github.com/What-Question-Mark/What-Question-Mark.github.io", + "owner": { + "username": "What-Question-Mark", + "email": "jack.weller@hotmail.com", + "twitter": "whatqm", + "discord": "discord-username-and-discriminator" + }, + "record": { + "CNAME": "what-question-mark.github.io" + } +} diff --git a/domains/whine.json b/domains/whine.json index 0ba3e78c8..b38be8071 100644 --- a/domains/whine.json +++ b/domains/whine.json @@ -1,22 +1,22 @@ { - "description": "whi_ne's personal site", - "repo": "https://github.com/whinee/whinee.github.io", - "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } -} \ No newline at end of file + "description": "whi_ne's personal site", + "repo": "https://github.com/whinee/whinee.github.io", + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/whoami.json b/domains/whoami.json new file mode 100644 index 000000000..db7205e46 --- /dev/null +++ b/domains/whoami.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "samir717le", + "email": "", + "discord": "1079245055845474354", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.phbb5LtneePR_tIQ8EBNXc5KTf5grZOsS7VJw7GabZ90PkCimdUUWaTI4pBCKn3Zb0s0u2AiylLUTNW_U1jJjqCJoxMijgk9auLvGSEnz9JSghEAnki9XpkqtqzeGquCffwJ7gfNHQaeVcdeBA6NwnJRSSGBfod9-7NROzCuZbQWsyVx84EMQ7_QRP3S4Cl-3clvrmSweUiRTwCnRYiGkcthLnBp9jpFmztk_qO3bS_Xog_rYd2IuPI_Ow468R4rx4X7AH855UEltcqD0tCynNKGsS_OIZZ9xt1jgZ-1LNgEN9FFpma0NnjsOi_nu2GJ9arw-tZvsluafHkIGDzGKw.ZPEBx6oboRurws0dAy2P9Q.E1BFAx54_k6QrBC3Lna9IVx6Oj0X6YwZ8DLU4UksCrROf-6RS1qtiCFjpfs9p0UKBUnHt6rh7rfVBikNNBAuJZwcIWGLALU9z46_Ptik3k4.KZefJpPD6kjihdewn-bhoQ" + }, + + "record": { + "CNAME": "letsedit.cloudns.be" + } + } + \ No newline at end of file diff --git a/domains/whos.json b/domains/whos.json new file mode 100644 index 000000000..c58e671bd --- /dev/null +++ b/domains/whos.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "IYSTREEM", + "email": "", + "discord": "774642006173286432", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h6b_Eqh-4chXFRqgLbGncVUloea43QbUVWWJ7lwq0Hjm91jmKsLP7FcpKX92p-MDKt9QStG5Sg8uu50Np4_Yq3jK8fQiBWjcWLC2ZCu5Yg7iem15euU8XHFF4biPuOVUtnLXQ-XkLqecnqASjsho8g4kTs27lhJljzgT12yTdLD9xA1bLX2rbMoLJ5OrH3T2ddRHdHJqPgKHLVTKmdi051tzYHH2nVJwKMPkhadXEayUIaFHX_WloTmyG9EFKdriGHQiInTdNwFMrj_raaCfhVJpsZJ3BHbi4GEN5BwW8balZYtJWJnbAwCAlPkUH9IPOCHVU6OEKlwwq_83fazLqA.RSWwLjsEdiZ_PGIQ-PdyJg.1_ILivbXeWRBeoS1hGJER3idxSBewkTUaAXCHrDN40mGs6S5CIq7bL23zTdy7U7MvmnkCm9bB-XSqv5yrDkys2Vl-_VdIWP8s_1zS01-XUg.oRmvR5xgtXQQ05ajizcLwA" + }, + + "record": { + "CNAME": "iystreem.free.nf" + } + } + \ No newline at end of file diff --git a/domains/whxyu.json b/domains/whxyu.json index 2c726ab8b..146ff5817 100644 --- a/domains/whxyu.json +++ b/domains/whxyu.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "yxu6fingers", - "email": "" - }, - "record": { - "CNAME": "yxu6fingers.github.io" - } - } - +{ + "owner": { + "username": "yxu6fingers", + "email": "" + }, + "record": { + "CNAME": "yxu6fingers.github.io" + } +} diff --git a/domains/whyleonardo.json b/domains/whyleonardo.json deleted file mode 100644 index 5f1b323d9..000000000 --- a/domains/whyleonardo.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "whyleonardo", - "email": "pleasefloyd73@gmail.com" - }, - "record": { - "URL": "https://nextjs-portfolio-chi-taupe.vercel.app" - } - } - diff --git a/domains/whyme.json b/domains/whyme.json index e1f8ee621..670078bd9 100644 --- a/domains/whyme.json +++ b/domains/whyme.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "unqxl", - "email": "andreyzero123@gmail.com" - }, - "record": { - "A": ["181.215.68.159"] - } - } - \ No newline at end of file +{ + "owner": { + "username": "unqxl", + "email": "andreyzero123@gmail.com" + }, + "record": { + "A": ["181.215.68.159"] + } +} diff --git a/domains/wiener234.json b/domains/wiener234.json new file mode 100644 index 000000000..3e02d61c1 --- /dev/null +++ b/domains/wiener234.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Wiener234", + "email": "wiemernils@gmail.com" + }, + "record": { + "A": ["130.61.152.39"] + } +} diff --git a/domains/wife.daddy.json b/domains/wife.daddy.json deleted file mode 100644 index 3bc54dda2..000000000 --- a/domains/wife.daddy.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Daddy's wife's website", - "owner": { - "username": "MaskDuck", - "email": "maskduckuwu@gmail.com" - }, - "record": { - "URL": "https://maskduck.is-a.dev" - } -} diff --git a/domains/wilbur.json b/domains/wilbur.json new file mode 100644 index 000000000..a1a4c3575 --- /dev/null +++ b/domains/wilbur.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ThisCatLikesCrypto", + "email": "contact@wilburwilliams.uk" + }, + "record": { + "CNAME": "ww-projects.pages.dev" + } +} diff --git a/domains/william.json b/domains/william.json index 72adff01c..2f3788f33 100644 --- a/domains/william.json +++ b/domains/william.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "WilliamDavidHarrison", - "email": "william@williamharrison.dev" - }, + "owner": { + "username": "wdhdev", + "email": "william@m.is-a.dev" + }, - "record": { - "CNAME": "wdhdns.com" - } + "record": { + "CNAME": "hrsn.dev" + } } diff --git a/domains/willo.json b/domains/willo.json index 914796fb5..189a1f5b8 100644 --- a/domains/willo.json +++ b/domains/willo.json @@ -7,8 +7,16 @@ "twitter": "willoizcitron" }, "record": { - "A": ["185.199.109.153", "185.199.108.153", "185.199.111.153", "185.199.110.153"], - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "A": [ + "185.199.109.153", + "185.199.108.153", + "185.199.111.153", + "185.199.110.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], "TXT": "v=spf1 include:spf.improvmx.com ~all" } } diff --git a/domains/win10sunvalley.json b/domains/win10sunvalley.json new file mode 100644 index 000000000..41ecc6f36 --- /dev/null +++ b/domains/win10sunvalley.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "winbo-yml-exe", + "email": "winbo-yml-exe@outlook.com" + }, + "record": { + "CNAME": "win10sunvalley.github.io" + } +} diff --git a/domains/win64.json b/domains/win64.json new file mode 100644 index 000000000..3248d0333 --- /dev/null +++ b/domains/win64.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "userwin64", + "email": "win64inquiries@gmail.com" + }, + "record": { + "CNAME": "userwin64.github.io" + } +} diff --git a/domains/winbo.json b/domains/winbo.json new file mode 100644 index 000000000..dc28d5dc9 --- /dev/null +++ b/domains/winbo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "winbo-yml-exe", + "email": "winbo-yml-exe@outlook.com" + }, + "record": { + "CNAME": "winbo-yml-exe.github.io" + } +} diff --git a/domains/wind.json b/domains/wind.json deleted file mode 100644 index 59f3baf85..000000000 --- a/domains/wind.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "WindTR's Website", - "owner": { - "username": "WindTR", - "email": "westselim20@gmail.com" - }, - "record": { - "URL": "https://wind.js.org" - } -} diff --git a/domains/windfarms.json b/domains/windfarms.json new file mode 100644 index 000000000..f0efa6d87 --- /dev/null +++ b/domains/windfarms.json @@ -0,0 +1,11 @@ +{ + "description": "WindFarms offical website", + "repo": "https://github.com/windfarms/windfarms.github.io", + "owner": { + "username": "windfarms", + "email": "windfarms@andrealicheri.anonaddy.com" + }, + "record": { + "CNAME": "windfarms.github.io" + } +} diff --git a/domains/window5.json b/domains/window5.json new file mode 100644 index 000000000..f0eff3f4f --- /dev/null +++ b/domains/window5.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Window5000", + "email": "spam.window5.spam@gmail.com" + }, + "record": { + "CNAME": "window5000.github.io" + } +} diff --git a/domains/windows10sunvalley.json b/domains/windows10sunvalley.json new file mode 100644 index 000000000..74af18d75 --- /dev/null +++ b/domains/windows10sunvalley.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "winbo-yml-exe", + "email": "winbo.yml@proton.me" + }, + "record": { + "CNAME": "windows10sunvalley.github.io" + } +} diff --git a/domains/windowsed.json b/domains/windowsed.json new file mode 100644 index 000000000..dc131c56b --- /dev/null +++ b/domains/windowsed.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "windowsed1225", + "email": "", + "discord": "906415095473655810", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.b4wkSB9hzfyZzAOO50m5Lmffz5ZpdPkeT6RBILTZckY94cbRa7BxRCVOAevnxu4zqonBcx017nf0Kgu1qP58hQV8rbPZM7bEeJwIuPh-gY_l1y_IkzE5Slq1CWvmFCBZvheUKYHFvPRcGGIqtxyKKaT6jcrJXv7xo_F2fldqbJ2NiJ88_u4WTXcfQ9CrPrPevocKfdesIrDwXnV2n2I0SpDV_QqycbmCcleRy3QzOpZMTHQyzAV_WA0B8OEkMftVSbiTr-S4WPRMpoZTRX7Er-l-ccC5HIs1c7P-twpXd4bphTsUBmWJL55dD0xq7vDQ2ouWq-o4ooqqZ3wmme-KvA.R7TKz12p_AeXBaX-7nEu9g.tjS2Ho_9HJkfxTIoz2MFeX34ptUfBAIh6vPSR_lMepN4Nz03-n_JxdpZW-5iEmDqBUUU82h7WteWeRKhyBkvi1syxFOnMRTBT4EveG-Ij9-skVlWjzeAQw-6WWRaGtDPfBSyZsTKyIb9iI2tVP7Kvw.jJ5K9-F9Rh-7DMlxCJ8yQA" + }, + + "record": { + "A": ["76.76.21.21"] + } + } + \ No newline at end of file diff --git a/domains/winter.json b/domains/winter.json deleted file mode 100644 index 3a385cc2a..000000000 --- a/domains/winter.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "virtualWinter", - "email": "me@winter-is-a-dev.ml" - }, - "record": { - "A": ["45.14.224.83"] - } -} diff --git a/domains/winters.json b/domains/winters.json new file mode 100644 index 000000000..5e7f7007a --- /dev/null +++ b/domains/winters.json @@ -0,0 +1,12 @@ +{ + "description": "This subdomain would be used as my personal portfolio website and also as a blogging website wherein i'll write about web security topics and CTF challenges", + "repo": "https://github.com/winters0x64/winters0x64.github.io", + "owner": { + "username": "winters0x64", + "email": "arun0x168codes@gmail.com", + "twitter": "ArunKr1shnan" + }, + "record": { + "CNAME": "winters0x64.github.io" + } +} diff --git a/domains/wiredmind.json b/domains/wiredmind.json new file mode 100644 index 000000000..b3fb028f1 --- /dev/null +++ b/domains/wiredmind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WiredMind2", + "email": "admin@tetrazero.com" + }, + "record": { + "URL": "https://tetrazero.com" + } +} diff --git a/domains/wisnu.json b/domains/wisnu.json deleted file mode 100644 index d8fa00485..000000000 --- a/domains/wisnu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Wisnu Personal Website", - "repo": "https://github.com/waxaranai", - "owner": { - "username": "Waxaranai", - "email": "waxaranai@gmail.com" - }, - "record": { - "URL": "https://wisnu.me" - } -} diff --git a/domains/witchboo.json b/domains/witchboo.json new file mode 100644 index 000000000..965a7c682 --- /dev/null +++ b/domains/witchboo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WitchBoo", + "email": "soconfirmo@hotmail.com" + }, + "record": { + "CNAME": "witchboo.github.io" + } +} diff --git a/domains/withsang.json b/domains/withsang.json new file mode 100644 index 000000000..a77fd6b64 --- /dev/null +++ b/domains/withsang.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "withSang", + "email": "jsa5115@naver.com" + }, + "record": { + "URL": "https://github.com/withsang" + } +} diff --git a/domains/wizardsword.json b/domains/wizardsword.json new file mode 100644 index 000000000..2543958b0 --- /dev/null +++ b/domains/wizardsword.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "MukuJhansi", + "email": "", + "discord": "1115658967012626542" + }, + + "record": { + "A": ["216.24.57.1"] + } + } + \ No newline at end of file diff --git a/domains/wizq.json b/domains/wizq.json new file mode 100644 index 000000000..ed1e3025c --- /dev/null +++ b/domains/wizq.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Wizqdev", + "email": "prajwal2079@gmail.com", + "discord": "778254181303451658" + }, + + "record": { + "CNAME": "proxy.private.danbot.host" + } +} diff --git a/domains/wkrzywiec.json b/domains/wkrzywiec.json index 7ff381617..50d6599b3 100644 --- a/domains/wkrzywiec.json +++ b/domains/wkrzywiec.json @@ -1,12 +1,12 @@ { - "description": "My blog and portfolio", - "repo": "https://github.com/wkrzywiec/wkrzywiec.github.io", - "owner": { - "username": "wkrzywiec", - "email": "", - "twitter": "wkrzywiec" - }, - "record": { - "CNAME": "wkrzywiec.github.io" - } -} + "description": "My blog and portfolio", + "repo": "https://github.com/wkrzywiec/wkrzywiec.github.io", + "owner": { + "username": "wkrzywiec", + "email": "", + "twitter": "wkrzywiec" + }, + "record": { + "CNAME": "wkrzywiec.github.io" + } +} diff --git a/domains/wlodekm.json b/domains/wlodekm.json new file mode 100644 index 000000000..37c301a0a --- /dev/null +++ b/domains/wlodekm.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for the stuff that i host on my pc", + "owner": { + "username": "WlodekM", + "email": "wlodekm.work@gmail.com" + }, + "record": { + "A": ["159.224.173.169"] + } +} diff --git a/domains/wojciechzieciak.json b/domains/wojciechzieciak.json new file mode 100644 index 000000000..971ff20c6 --- /dev/null +++ b/domains/wojciechzieciak.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xYundy", + "email": "wojciech.zieciak@gmail.com" + }, + "record": { + "URL": "https://xyundy.pl/" + } +} diff --git a/domains/wojtekgame.json b/domains/wojtekgame.json new file mode 100644 index 000000000..25a3d5498 --- /dev/null +++ b/domains/wojtekgame.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "WojtekCodesToday", + "email": "wojtek.game.private@gmail.com", + "discord": "1178278261516685393" + }, + + "record": { + "CNAME": "wojtekcodestoday.github.io" + } +} diff --git a/domains/wonder.json b/domains/wonder.json deleted file mode 100644 index f262d0e43..000000000 --- a/domains/wonder.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "wonderlandpark", - "email": "wonderlandpark@callisto.team" - }, - "record": { - "CNAME": "is-a.wonder.im" - } -} diff --git a/domains/woofer.json b/domains/woofer.json new file mode 100644 index 000000000..877eb9f25 --- /dev/null +++ b/domains/woofer.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "WooferTheWoof", + "email": "ivceball@gmail.com", + "discord": "wooferthywoof" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/workspace.trung.json b/domains/workspace.trung.json new file mode 100644 index 000000000..b99730c4e --- /dev/null +++ b/domains/workspace.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["35.185.84.140"] + } +} diff --git a/domains/worm.json b/domains/worm.json index 1d055c3cd..80db41904 100644 --- a/domains/worm.json +++ b/domains/worm.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "arq091", - "email": "poonyapat.thane@gmail.com" - }, - "record": { - "CNAME": "arq091.github.io" - } - } - +{ + "owner": { + "username": "arq091", + "email": "poonyapat.thane@gmail.com" + }, + "record": { + "CNAME": "arq091.github.io" + } +} diff --git a/domains/woundrite.json b/domains/woundrite.json new file mode 100644 index 000000000..8fcb0a604 --- /dev/null +++ b/domains/woundrite.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Woundrite", + "email": "ndbendale2004@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/wrdg.json b/domains/wrdg.json deleted file mode 100644 index c2adc49ee..000000000 --- a/domains/wrdg.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "wrdg", - "email": "wardog@wrdg.dev" - }, - - "record": { - "URL": "https://wrdg.net" - } - } - \ No newline at end of file diff --git a/domains/wrtks.json b/domains/wrtks.json new file mode 100644 index 000000000..591185bb0 --- /dev/null +++ b/domains/wrtks.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ali-valiev", + "email": "", + "discord": "722403528705966080", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qzWTS5IwVj5Xj8VbbYJFmPx-sqIIloyZCVEDxxC1d2gK0LK90b13vyGNLCHyzKroGUApUrYdIR36k1Kku58aIsf-8nthxZzHxLOf61SjOqcYAwhwc3S4TRauhnMH2JCiruEUsxeks4Bb9ZK-7M9v1hskwTB7jClvhSLaERWCwUEkDGXWJAlbKENVclL65-crJiV43oulWUp78DrLgR6knVsiS3JHsuCmC3-__OwznqYuRS5fmBFyTEwjA6QlJ33-Ndl74r2OBZTRdpTaZuZIplJjZ9gp7uweQkSxAg_ZnuKgLcpQQQYGrb9Ihz5KkTcYMgh_huFDEzwvf5sDD1c-RQ.ZtvRe7jdQLRGWaWZtnWr8w.pJJPlLk-aB7aXktqHxB4EIYj8NL-ibozzoMfQA8YJcPwIhfK1blJogw4m1qFyBm32U2WIi4qZhFnZZyUg4KtaKVtXfQwq9j_3JkyI9RCbDwRseLpbwVqA5W35goTHrF3.q2iUWtIQmwI1azAbxn5kUw" + }, + + "record": { + "CNAME": "wrrtks.github.io" + } + } + \ No newline at end of file diff --git a/domains/ws.json b/domains/ws.json index b8b8a40df..6b3edc504 100644 --- a/domains/ws.json +++ b/domains/ws.json @@ -1,11 +1,9 @@ { - "description": "an api for my discord bot", - "repo": "https://github.com/teamjoelee/me", "owner": { - "username": "teamjoelee", - "email": "tojoeleeofficial@gmail.com" + "username": "ais1175", + "email": "wutau179@gmail.com" }, "record": { - "CNAME": "a91c9e80-8282-444e-adb1-18be6d6ffbc2.repl.co" + "A": ["43.229.135.123"] } } diff --git a/domains/wscr.json b/domains/wscr.json deleted file mode 100644 index 736e1c212..000000000 --- a/domains/wscr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "a website for my discord bot", - "repo": "https://github.com/teamjoelee/me", - "owner": { - "username": "teamjoelee", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "3dfb27ff-3743-463e-a0a1-83ef6f7b7468.repl.co" - } -} diff --git a/domains/wtfchirag.json b/domains/wtfchirag.json new file mode 100644 index 000000000..802feb6b1 --- /dev/null +++ b/domains/wtfchirag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragksharma", + "email": "chiragksharma15@gmail.com" + }, + "record": { + "URL": "https://www.github.com/chiragksharma" + } +} diff --git a/domains/wtfdrshn.json b/domains/wtfdrshn.json new file mode 100644 index 000000000..abeb6309d --- /dev/null +++ b/domains/wtfdrshn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wtfdrshn", + "email": "itsmedarshan8@gmail.com" + }, + "record": { + "CNAME": "wtfdrshn-portfolio.web.app" + } +} diff --git a/domains/wu.json b/domains/wu.json new file mode 100644 index 000000000..83cf32431 --- /dev/null +++ b/domains/wu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SunWuyuan", + "email": "1847261658@qq.com" + }, + "record": { + "CNAME": "wuyuan.dev" + } +} diff --git a/domains/wumpus.json b/domains/wumpus.json new file mode 100644 index 000000000..5987a1510 --- /dev/null +++ b/domains/wumpus.json @@ -0,0 +1,11 @@ +{ + "description": "Fullstack web & mobile dev, quality assurance, automation, reverse engineering, and flexible", + "repo": "https://github.com/wumpus2000/wumpus2000.github.io", + "owner": { + "username": "Wumpus2000", + "email": "wumpusing@gmail.com" + }, + "record": { + "CNAME": "wumpus2000.github.io" + } +} diff --git a/domains/wusong.json b/domains/wusong.json new file mode 100644 index 000000000..aeb8e15ce --- /dev/null +++ b/domains/wusong.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bayunjiang", + "email": "master@bayun.org" + }, + + "record": { + "CNAME": "bayunjiang.github.io" + } +} diff --git a/domains/wuspico.json b/domains/wuspico.json new file mode 100644 index 000000000..693e635a1 --- /dev/null +++ b/domains/wuspico.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wuspicodev", + "email": "wuspico@gmail.com" + }, + "record": { + "URL": "https://wus.dragox.id.vn/" + } +} diff --git a/domains/wuyuan.json b/domains/wuyuan.json new file mode 100644 index 000000000..83cf32431 --- /dev/null +++ b/domains/wuyuan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SunWuyuan", + "email": "1847261658@qq.com" + }, + "record": { + "CNAME": "wuyuan.dev" + } +} diff --git a/domains/wwei.json b/domains/wwei.json index 53bb1f974..7c320bd5f 100644 --- a/domains/wwei.json +++ b/domains/wwei.json @@ -1,12 +1,10 @@ - - { - "description": "My github", - "owner": { - "username": "wwei-github", - "email": "ww418047394@gmail.com" - }, - "record": { - "URL": "https://github.com/wwei-github" - } -} + "description": "My github", + "owner": { + "username": "wwei-github", + "email": "ww418047394@gmail.com" + }, + "record": { + "URL": "https://github.com/wwei-github" + } +} diff --git a/domains/www.alvin.json b/domains/www.alvin.json new file mode 100644 index 000000000..7e13bcbcf --- /dev/null +++ b/domains/www.alvin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "alvinsjoy", + "email": "", + "discord": "825382504353234954" + }, + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/www.aswinmahesh.json b/domains/www.aswinmahesh.json new file mode 100644 index 000000000..7076da07a --- /dev/null +++ b/domains/www.aswinmahesh.json @@ -0,0 +1,13 @@ +{ + "description": "Aswin Mahesh Website", + "repo": "https://github.com/aswinmahesh", + "owner": { + "username": "aswinmahesh", + "email": "aswinmahesh.com+dns@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } + } \ No newline at end of file diff --git a/domains/www.aswinmaheshc.json b/domains/www.aswinmaheshc.json new file mode 100644 index 000000000..0a6dd39c0 --- /dev/null +++ b/domains/www.aswinmaheshc.json @@ -0,0 +1,13 @@ +{ + "description": "Aswin Mahesh C Website", + "repo": "https://github.com/aswinmahesh", + "owner": { + "username": "aswinmahesh", + "email": "aswinmahesh.com+dns@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } + } \ No newline at end of file diff --git a/domains/www.haseeb.json b/domains/www.haseeb.json new file mode 100644 index 000000000..2b586cf5f --- /dev/null +++ b/domains/www.haseeb.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Haseebprivate", + "email": "", + "discord": "1207534121052672090", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Ty69vVqW-3J6uW_4-3gCeQ4P0POpxbuAAuYHc8UDbAiUGQLJ63wn4wKcpqV57OCSJHXHtjYXx1pgjJbn0ZXLc8uNvqGH4FmkFRnNIc965Nc084e1tNecccsh8CWec6PyVCWwrnz0XEC6Sa6HaRdfTNWt26LVh7gg8giIo58xBh2iTs-kgi9z4RXcO9UxDjDFu0_59GEoN0H2Zf6T-orhS3Yh05JoJGgAsfJsHi-plKx1YnP1GkA0w9NNty9xSb5rwiwdkRe_f-eDfko6E7xEOe8DC-30-juJNIYySE4tW-OabivqyHKXkoAHODEMLUJBDmOQsafL6CfnhFFiJXM6Vg.4VlFBFqjfMvaC1ZZJtQpuA.xXr9WcHSGqDmzsetkikBztVVlb9XDBvwqdO59GJmVJT_rHhB8fZdJKsAC31y6jVvjaIPeBk0FUKvxLtcNXMqfQzHwAGtjgNINm_93tEQg5c.eW8TVU_U5J80UdQWyxRhAg" + }, + + "record": { + "CNAME": "haseeb-khalid.netlify.app" + } + } + \ No newline at end of file diff --git a/domains/www.jamied132.json b/domains/www.jamied132.json new file mode 100644 index 000000000..eaec72ecf --- /dev/null +++ b/domains/www.jamied132.json @@ -0,0 +1,13 @@ +{ + "description": "personal portfolio", + "repo": "github.com/jamied132/jamied132.github.io", + "owner": { + "username": "jamied132", + "email": "jamied132.email@gmail.com", + "wasteof.money": "jamied132", + "darflen": "jamied132" + }, + "record": { + "URL": "https://jamied132.is-a.dev" + } +} diff --git a/domains/www.json b/domains/www.json index 359253458..6ecfc95b2 100644 --- a/domains/www.json +++ b/domains/www.json @@ -1,9 +1,9 @@ { - "description": "www.is-a.dev", + "description": "The is-a.dev website", "repo": "https://github.com/is-a-dev/is-a-dev.github.io", "owner": { - "username": "phenax", - "email": "phenax5@gmail.com" + "username": "wdhdev", + "email": "" }, "record": { "CNAME": "is-a-dev.github.io" diff --git a/domains/www.lua.json b/domains/www.lua.json new file mode 100644 index 000000000..7fde7627e --- /dev/null +++ b/domains/www.lua.json @@ -0,0 +1,12 @@ +{ + "description": "Just a website for detailing the game development projects of Lua", + "owner": { + "username": "notxlua", + "email": "notxlua@gmail.com", + "discord": "778436572835086366" + }, + + "record": { + "A": ["75.119.201.51"] + } +} diff --git a/domains/www.mohan.json b/domains/www.mohan.json new file mode 100644 index 000000000..79e06db28 --- /dev/null +++ b/domains/www.mohan.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "mohankumarpaluru", + "email": "", + "discord": "272751100237578241", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q2d7CXJ-jVBCv3PUMEStpVqnk0Lc0YyspsLJEHjke1xPuQrHuMNElJxCERMxrkoDBTAJQS7AVwfGQxEASWM7urhwuWXP5ot3R1OE9QVdnQE-VdYZvit7DrbaboHCItT8K9B1ybWNkgd7oxSJArUiTJOQKXLna8BFWNFowN_4Hi833cWzBxRA_ZvwKB-Ve_vk-5ilpmuPVsUdbdRUSoOVdKBVbSYthwJ_bUKRRg6yVA-XG84M4_JaUb23mMcSBlE9dT-wC7n_iD6y06R4b284zAeqkrsBz-mg7CJ08ib8bu6RgGX_MTZpt-895KVQML1AmGDvMgnn8hP-2IbCfrQxIw.sZmo2jtMegZMGGFW7Eztzw.RCZ6ASMEZy18IC_cxR2WIX674_kJOaeRmWC4NETwulSudLLpHNQbm_41YvBsRfc9aUJ_3JyFoP524bukVS95-ztvYCAQk1Y5YLZDkLKbREGmMn1KGVYWsDHgIe9CyzvU.p8fsRd-LTtbJ1LIhd1YC_A" + }, + + "record": { + "CNAME": "mohan.is-a.dev" + } + } + \ No newline at end of file diff --git a/domains/www.priyansh.json b/domains/www.priyansh.json deleted file mode 100644 index d1d8dc1ad..000000000 --- a/domains/www.priyansh.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "priyanshprajapat", - "email": "priy@nsh.is-a.dev" - }, - "record": { - "URL": "https://priyansh.is-a.dev" - } -} diff --git a/domains/www.semant.json b/domains/www.semant.json deleted file mode 100644 index c8b339e90..000000000 --- a/domains/www.semant.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Website", - "owner": { - "username": "s3mant", - "email": "contact@semant.is-a.dev", - "discord": "445073800850046977" - }, - "record": { - "CNAME": "2755c31d-6389-4f53-8fd7-b83f99037ffd.id.repl.co" - } -} diff --git a/domains/www.udhaya.json b/domains/www.udhaya.json new file mode 100644 index 000000000..a30fdef28 --- /dev/null +++ b/domains/www.udhaya.json @@ -0,0 +1,10 @@ +{ + "description": "Netfily CNAME", + "owner": { + "username": "xaceduke", + "email": "kinghtth0@gmail.com" + }, + "record": { + "CNAME": "mainudhaya.netlify.app" + } +} diff --git a/domains/wzx.json b/domains/wzx.json index b770afba6..69b51f547 100644 --- a/domains/wzx.json +++ b/domains/wzx.json @@ -1,11 +1,11 @@ { - "description": "I want to use it as my profile page.", - "repo": "https://github.com/website-pages/profile", - "owner": { - "username": "website-pages", - "email": "unpu123456@outlook.com" - }, - "record": { - "CNAME": "website-pages.github.io" - } + "description": "I want to use it as my profile page.", + "repo": "https://github.com/website-pages/profile", + "owner": { + "username": "website-pages", + "email": "unpu123456@outlook.com" + }, + "record": { + "CNAME": "website-pages.github.io" + } } diff --git a/domains/x.json b/domains/x.json new file mode 100644 index 000000000..0f5d8195b --- /dev/null +++ b/domains/x.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "jvideo-sk", + "email": "", + "discord": "1030204181207859260" + }, + + "record": { + "CNAME": "jvideo.github.io" + } + } + \ No newline at end of file diff --git a/domains/x0ba.json b/domains/x0ba.json new file mode 100644 index 000000000..8faa5fe42 --- /dev/null +++ b/domains/x0ba.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x0ba", + "email": "mkshift@tuta.io" + }, + "record": { + "CNAME": "x0ba.github.io" + } +} diff --git a/domains/x4b1.json b/domains/x4b1.json new file mode 100644 index 000000000..68355976e --- /dev/null +++ b/domains/x4b1.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x4b1", + "email": "xmartinez1702@gmail.com" + }, + "record": { + "CNAME": "xmartinez.dev" + } +} diff --git a/domains/x8t.json b/domains/x8t.json new file mode 100644 index 000000000..0ee196af7 --- /dev/null +++ b/domains/x8t.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "x8t-code", + "email": "x8t@tuta.io" + }, + "record": { + "CNAME": "x8t-code.github.io" + } +} diff --git a/domains/x93.json b/domains/x93.json new file mode 100644 index 000000000..94b3bc5fe --- /dev/null +++ b/domains/x93.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "xavzen", + "email": "", + "discord": "1124747549450977280", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.imphI7TJ5piJal5QDZrae4MZOp5Qng5f9WDAiEKpI142edS-w_kZjSPLi4JGqJpOIB0HL7EZMKb9uzkkVSL263GrEARaCmlCz3be0Llw9CoJGokIoUlhuBMlZeIE0XWWMsVeYAmU3oxIEPblc9JPs11oeTv1xh2x_b2uEZIry3wP3evd9HPRWivyOHjsyoUeEJx9_okuoJ4ULSS0ZPg0D_wq6tVGA-HwMCg-wUmeqk5DWt_GIJx14hGWGzJrVF9e-b0tPt7iqTN_PH74856kmTuu6_P3K1fspLNqiujiiByYkP8H0sRW9gciBhUGZr925h9IdsHKvXyfd9HtDNgGeg.1DfQ7ov9yg7ggUGRZJqhmw.0tTEyez485OFHSzTbhOsySXdCiE6S0IAzOVi69pbmA_qZco42OYArEf3MHhNQM6p3Zl5Dz-NztfMB-z4tY1xqUCaOme8TgTpb-gYWXc2oh4.K1RLSfDaW92wTf2Lz2cnPQ" + }, + + "record": { + "CNAME": "guns.lol" + } + } + \ No newline at end of file diff --git a/domains/xabdoat.json b/domains/xabdoat.json new file mode 100644 index 000000000..daedb1078 --- /dev/null +++ b/domains/xabdoat.json @@ -0,0 +1,12 @@ +{ + "description": "xAbdo AT Main Web Page", + "repo": "https://github.com/xAbdoAT/xAbdoAT.github.io", + "owner": { + "username": "xAbdoAT", + "email": "email@address", + "twitter": "xAbdoAT" + }, + "record": { + "CNAME": "xabdoat.github.io" + } +} diff --git a/domains/xanudu.json b/domains/xanudu.json new file mode 100644 index 000000000..e1bddef37 --- /dev/null +++ b/domains/xanudu.json @@ -0,0 +1,11 @@ +{ + "description": "Xanudu Buster's Website", + "repo": "https://xanudubuster.github.io", + "owner": { + "username": "XanuduBuster", + "email": "xanubuster@proton.me" + }, + "record": { + "CNAME": "xanudubuster.github.io" + } +} diff --git a/domains/xap3y.json b/domains/xap3y.json new file mode 100644 index 000000000..887e42cca --- /dev/null +++ b/domains/xap3y.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xap3y", + "email": "worker@xap3y.space" + }, + "record": { + "URL": "https://xap3y.space" + } +} diff --git a/domains/xash.json b/domains/xash.json new file mode 100644 index 000000000..a38a3426d --- /dev/null +++ b/domains/xash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "7xa5h", + "email": "xash4492@gmail.com" + }, + "record": { + "CNAME": "7xa5h.github.io" + } +} diff --git a/domains/xcyth.json b/domains/xcyth.json deleted file mode 100644 index c784ac017..000000000 --- a/domains/xcyth.json +++ /dev/null @@ -1,10 +0,0 @@ - - { - "owner": { - "username": "Xcyth", - "email": "xcyth.dev@gmail.com" - }, - "record": { - "CNAME": "proxy.kastelapp.com" - } - } diff --git a/domains/xdlyy.json b/domains/xdlyy.json index 65ccccbad..fb8333852 100644 --- a/domains/xdlyy.json +++ b/domains/xdlyy.json @@ -1,10 +1,9 @@ - - { - "owner": { - "username": "xdlyy404", - "email": "fadlyid7@gmail.com" - }, - "record": { - "URL": "https://xdlyy404.github.io" - } - } +{ + "owner": { + "username": "xdlyy404", + "email": "fadlyid7@gmail.com" + }, + "record": { + "URL": "https://xdlyy404.github.io" + } +} diff --git a/domains/xdoxx123.json b/domains/xdoxx123.json new file mode 100644 index 000000000..8a426286d --- /dev/null +++ b/domains/xdoxx123.json @@ -0,0 +1,11 @@ +{ + "description": "xdoxx123.is-a.dev", + "repo": "https://github.com/xdoxx123/xdoxx123.github.io", + "owner": { + "username": "xdoxx123", + "email": "xdoxx124@gmail.com" + }, + "record": { + "CNAME": "xdoxx123.github.io" + } +} diff --git a/domains/xeno.json b/domains/xeno.json new file mode 100644 index 000000000..7752e3014 --- /dev/null +++ b/domains/xeno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lextra", + "email": "xenojusbetter@gmail.com" + }, + "record": { + "CNAME": "bloody.bio" + } +} diff --git a/domains/xeno9118.json b/domains/xeno9118.json new file mode 100644 index 000000000..830ec6510 --- /dev/null +++ b/domains/xeno9118.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aether1777", + "email": "bkevin39415@gmail.com" + }, + "record": { + "CNAME": "border.hop.io" + } +} diff --git a/domains/xenon.json b/domains/xenon.json new file mode 100644 index 000000000..c044009d6 --- /dev/null +++ b/domains/xenon.json @@ -0,0 +1,10 @@ +{ + "description": "Hi, I'm Xenon. I develop Discord bots, user interfaces and web applications.", + "owner": { + "username": "LMGXENON", + "email": "lmgxenon9066@gmail.com" + }, + "record": { + "CNAME": "xenon-ao1e.onrender.com" + } +} diff --git a/domains/xenside.json b/domains/xenside.json new file mode 100644 index 000000000..b1cb1e907 --- /dev/null +++ b/domains/xenside.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "XenSideNBTS", + "email": "xenside@xenside.is-a.dev" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/xevion.json b/domains/xevion.json index b05f6e222..5fc9c7534 100644 --- a/domains/xevion.json +++ b/domains/xevion.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Xevion", - "email": "xevion@xevion.dev" - }, - "record": { - "URL": "https://xevion.dev/?utm_source=is-a-dev" - } - } - +{ + "owner": { + "username": "Xevion", + "email": "xevion@xevion.dev" + }, + "record": { + "URL": "https://xevion.dev/?utm_source=is-a-dev" + } +} diff --git a/domains/xgarciadevs.json b/domains/xgarciadevs.json new file mode 100644 index 000000000..f7dfc5d76 --- /dev/null +++ b/domains/xgarciadevs.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "xgarciadevs", + "email": "", + "discord": "528637169544331291", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AEE26UaHZe8_LcuhJr1lzNzgeSkXmln0mE8UcQtMR0hViboJjLWgvqFz-SjvjwIAVojRtThKqDHSrLBDL6o348iAjyq40tkt4lBdXfr99WSaQMpFpHInnZt5oR8sxeudO5qIjUHQcfS-Yc0PjmkRTVAU9Tqux3y5Aq9zDVEuijnPTWZ2K_4jx9m9yl9sBIaWmnF_IsxQ8uyqjdbetOi5SjkKyAbRFWw7oOGFtYLj6TnoX3scmzttZ3KGmWJ0ZNS13Laox2HQcCpHxxK1S7KJ6pL5pMwVUPYky4HyHehxQKFg95i3MRzWuSTkodGtBdh49Pwh69QzrJqQb8att80uBA.TlnYc1bf6FVZiUS70wP29w.xE4-Bc5esGlMAfR9OgfYmSQn-nhzZTYuwyq_CazXX9AfLoNwe_uw322aB7BVJ0Ir9q7OhuxlgHH6p_Dr-eEGcTLSVrsXffpZ59QTVCmZtIo.8O7dpgd0M33X_CoKfigNyQ" + }, + + "record": { + "CNAME": "xgarciadevs.github.io" + } + } + \ No newline at end of file diff --git a/domains/xgorn.json b/domains/xgorn.json new file mode 100644 index 000000000..330b01ad5 --- /dev/null +++ b/domains/xgorn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "X-Gorn", + "email": "xgorntv@gmail.com" + }, + "record": { + "CNAME": "x-gorn.github.io" + } +} diff --git a/domains/xiaowu.json b/domains/xiaowu.json index 4e326fa77..c1b50fe0e 100644 --- a/domains/xiaowu.json +++ b/domains/xiaowu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "w-xuefeng", - "email": "xuefeng@wangxuefeng.com.cn" - }, - "record": { - "CNAME": "w-xuefeng.github.io" - } -} \ No newline at end of file + "owner": { + "username": "w-xuefeng", + "email": "xuefeng@wangxuefeng.com.cn" + }, + "record": { + "CNAME": "w-xuefeng.github.io" + } +} diff --git a/domains/xiaoxi-tw.json b/domains/xiaoxi-tw.json new file mode 100644 index 000000000..b0ed3594a --- /dev/null +++ b/domains/xiaoxi-tw.json @@ -0,0 +1,12 @@ +{ + "description": "for my website", + "repo": "https://github.com/jimmy20180130/jimmy20180130.github.io", + "owner": { + "username": "jimmy20180130", + "email": "jimmy20180130@gmail.com", + "twitter": "@jimmyyo45639462" + }, + "record": { + "CNAME": "jimmy20180130.github.io" + } +} diff --git a/domains/xinful.json b/domains/xinful.json new file mode 100644 index 000000000..432246c37 --- /dev/null +++ b/domains/xinful.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xinfull", + "email": "robertkitunda89@gmail.com" + }, + "record": { + "CNAME": "xinfull.github.io" + } +} diff --git a/domains/xkaper.json b/domains/xkaper.json new file mode 100644 index 000000000..8b131d773 --- /dev/null +++ b/domains/xkaper.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xkaper001", + "email": "imluckyayan@gmail.com" + }, + "record": { + "CNAME": "xkaper.webflow.io" + } +} diff --git a/domains/xkhronoz.json b/domains/xkhronoz.json new file mode 100644 index 000000000..e9f89b5ae --- /dev/null +++ b/domains/xkhronoz.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio Web App", + "repo": "https://github.com/xKhronoz/xKhronoz.github.io", + "owner": { + "username": "xKhronoz", + "email": "yeek3063@gmail.com" + }, + "record": { + "CNAME": "xkhronoz.github.io" + } +} diff --git a/domains/xkotelek.json b/domains/xkotelek.json new file mode 100644 index 000000000..85daca0ae --- /dev/null +++ b/domains/xkotelek.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "xKotelek", + "email": "98203141+xKotelek@users.noreply.github.com", + "discord": "803159847641284640" + }, + + "record": { + "CNAME": "xkotelek.github.io" + } + } + \ No newline at end of file diff --git a/domains/xkubsoneq.json b/domains/xkubsoneq.json deleted file mode 100644 index 9e8b13d90..000000000 --- a/domains/xkubsoneq.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "About me.", - "repo": "https://github.com/xKubsoneQ", - "owner": { - "username": "xKubsoneQ", - "email": "", - "twitter": "undef1n3d_" - }, - "record": { - "URL": "https://pomocnikbot.pl/dev/socials" - } -} diff --git a/domains/xlr.json b/domains/xlr.json new file mode 100644 index 000000000..64b10fb8c --- /dev/null +++ b/domains/xlr.json @@ -0,0 +1,11 @@ +{ + "description": "xlr personal website", + "repo": "https://github.com/llxlr/blog", + "owner": { + "username": "llxlr", + "email": "i@xhlr.top" + }, + "record": { + "URL": "https://white-album.top" + } +} diff --git a/domains/xmoj-bbs.json b/domains/xmoj-bbs.json new file mode 100644 index 000000000..cd33a9f41 --- /dev/null +++ b/domains/xmoj-bbs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PythonSmall-Q", + "email": "seanoj_noreply@yeah.net" + }, + "record": { + "CNAME": "xmoj-script.pages.dev" + } +} diff --git a/domains/xn--mt9h.json b/domains/xn--mt9h.json new file mode 100644 index 000000000..9a903f2a6 --- /dev/null +++ b/domains/xn--mt9h.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DynoW", + "email": "naffets0@gmail.com", + "discord": "455608238335983617" + }, + "record": { + "URL": "https://dyno.is-a.dev" + } +} diff --git a/domains/xndr.json b/domains/xndr.json deleted file mode 100644 index db4b078ec..000000000 --- a/domains/xndr.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Xandrrrr's CDN", - "repo": "https://github.com/Xander1233", - "owner": { - "username": "Xander1233", - "email": "", - "twitter": "XandrrrrR6" - }, - "record": { - "A": ["173.249.30.209"] - } -} diff --git a/domains/xpplg.json b/domains/xpplg.json deleted file mode 100644 index 79937f78d..000000000 --- a/domains/xpplg.json +++ /dev/null @@ -1,9 +0,0 @@ - { - "owner": { - "username": "Jantur-dev", - "email": "jantur29@gmail.com" - }, - "record": { - "CNAME": "d46b1013-50ed-4f41-b75e-3961b2b9aad6.id.repl.co" - } - } diff --git a/domains/xqwtxon.json b/domains/xqwtxon.json deleted file mode 100644 index 7209fc39a..000000000 --- a/domains/xqwtxon.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Programmer since 2016, Reverse-Engineer since 2019, I do a lot of Minecraft-related things.", - "repo": "https;//github.com/xqwtxon/website", - "owner": { - "username": "xqwtxon", - "email": "xqwtxon@hotmail.com", - "twitter": "xqwtxon", - "keybase": "@xqwtxon" - }, - "record": { - "CNAME": "xqwtxon.ml" - } -} diff --git a/domains/xrap1dx.json b/domains/xrap1dx.json new file mode 100644 index 000000000..f11ffb0c8 --- /dev/null +++ b/domains/xrap1dx.json @@ -0,0 +1,21 @@ +{ + "description": "making a cool portfolio website.", + "repo": "https://github.com/xrap1dx?tab=repositories", + "owner": { + "username": "xrap1dx", + "email": "sirrapid155@gmail.com" + }, + "record": { + "A": [ + "69.30.249.53" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all", + "zoho-verification=zb43908801.zmverify.zoho.eu" + ] + } +} diff --git a/domains/xrcs.json b/domains/xrcs.json index ff6bcc2e6..949f65e4d 100644 --- a/domains/xrcs.json +++ b/domains/xrcs.json @@ -1,12 +1,12 @@ { - "description": "xrcs personal website", - "repo": "https://github.com/xrcss/xrcss.github.io", - "owner": { - "username": "xrcss", - "discord": "xrcs#0001", - "email": "" - }, - "record": { - "CNAME": "xrcss.github.io" - } + "description": "xrcs personal website", + "repo": "https://github.com/xrcss/xrcss.github.io", + "owner": { + "username": "xrcss", + "discord": "xrcs#0001", + "email": "" + }, + "record": { + "CNAME": "xrcss.github.io" + } } diff --git a/domains/xream.json b/domains/xream.json index 9ab9af302..dee5b2ca1 100644 --- a/domains/xream.json +++ b/domains/xream.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "xream", + "email": "xreamxu@gmail.com" + }, - { - "owner": { - "username": "xream", - "email": "xreamxu@gmail.com" - }, - - "record": { - "A": ["150.230.219.72"] - } - } - \ No newline at end of file + "record": { + "A": ["150.230.219.72"] + } +} diff --git a/domains/xsamivs.json b/domains/xsamivs.json new file mode 100644 index 000000000..6b47dfc7b --- /dev/null +++ b/domains/xsamivs.json @@ -0,0 +1,14 @@ +{ + "description": "Development Website of xSamiVS", + "repo": "https://github.com/xSamiVS", + "owner": { + "username": "xSamiVS", + "email": "", + "discord": "xSamiVS - 455335173748162563" + }, + "record": { + "A": [ + "88.99.5.172" + ] + } +} diff --git a/domains/xsec.json b/domains/xsec.json new file mode 100644 index 000000000..c40405a98 --- /dev/null +++ b/domains/xsec.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mnikrsa21", + "email": "igcloud16@gmail.com" + }, + "record": { + "CNAME": "igcloudstore.my.id" + } +} diff --git a/domains/xtendera.json b/domains/xtendera.json new file mode 100644 index 000000000..b71936c1c --- /dev/null +++ b/domains/xtendera.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Xtendera", + "email": "", + "discord": "738775476604239933", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sq-KmAgGR-ZbJSMLfzyBL3owG_zZlnOxd_sd8s_VAsjDbDKq--kTGCOXfIMA84j1YOrfTdhx58vH3lT4GuXTfPeHIGm48DCoMj-AFFzZ4yZ7BglL2CXaVSXC3IqaVuEsNegoXrukgXOud3_ntJSZ8xUxsPd-scu4pfRAcj4K5Dg6cYxOaPLFHu2oGpMF3wwxmA4PiYJrMzzEQfbzUKIu_-Z3VaKTe0nNRsGj949wYhFA_aWiVmpHpIJmlKw0qir6rSK0v_6bQinsOHggQovs3Aaa6PY91oQSzDFflnaQ7B6DfsOqH2e71BRFn5bY9Lr7krSc2gRA7pPloHcLKtGWkw.AJ7kxDQt59jciByxVnW8Qg.xPNk-rj6MCK2920t9Hc3igwLH6_irc1EP8aanc6bOSVBYnS5LYBDpLJUPc1nSgbMUWpM0twRuVivMCFjrSmHzDpjukrcNG1gzaba8MoCgudw24ow1rLiN1B2JaJjw4Hf.QAoAeekZzCOVpsAzHH9qGg" + }, + + "record": { + "A": ["47.186.121.65"] + } + } + \ No newline at end of file diff --git a/domains/xtoast.json b/domains/xtoast.json new file mode 100644 index 000000000..952d6a87b --- /dev/null +++ b/domains/xtoast.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Toast0012", + "email": "aahansiwakoti1@gmail.com" + }, + "record": { + "CNAME": "toast-about-me.onrender.com" + } +} diff --git a/domains/xuefeng.json b/domains/xuefeng.json index 45719a39a..c1b50fe0e 100644 --- a/domains/xuefeng.json +++ b/domains/xuefeng.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "w-xuefeng", - "email": "xuefeng@wangxuefeng.com.cn" - }, - "record": { - "CNAME": "w-xuefeng.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "w-xuefeng", + "email": "xuefeng@wangxuefeng.com.cn" + }, + "record": { + "CNAME": "w-xuefeng.github.io" + } +} diff --git a/domains/xuxxi.json b/domains/xuxxi.json index 13593b042..271f5d7bb 100644 --- a/domains/xuxxi.json +++ b/domains/xuxxi.json @@ -1,11 +1,11 @@ { - "description": "XUXXI", - "repo": "https://github.com/XUXXI/xuxxi.github.io", - "owner": { - "username": "methaine", - "email": "keter@keemail.me" - }, - "record": { - "CNAME": "xuxxi.github.io" - } + "description": "XUXXI", + "repo": "https://github.com/XUXXI/xuxxi.github.io", + "owner": { + "username": "methaine", + "email": "keter@keemail.me" + }, + "record": { + "CNAME": "xuxxi.github.io" + } } diff --git a/domains/xuyife.json b/domains/xuyife.json new file mode 100644 index 000000000..f765988e2 --- /dev/null +++ b/domains/xuyife.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xuyife", + "email": "18916947008@163.com" + }, + "record": { + "CNAME": "xuyife.github.io" + } +} diff --git a/domains/xuyifei.json b/domains/xuyifei.json new file mode 100644 index 000000000..c6dc6532d --- /dev/null +++ b/domains/xuyifei.json @@ -0,0 +1,12 @@ +{ + "description": "Xuyifei's website’", + "repo": "https://github.com/xuyife/xuyife.github.io", + "owner": { + "username": "xuyife", + "email": "xuyifeiDev@outlook.com", + "twitter": "xuyifei" + }, + "record": { + "CNAME": "xuyife.github.io" + } +} diff --git a/domains/xyront.json b/domains/xyront.json new file mode 100644 index 000000000..da19de159 --- /dev/null +++ b/domains/xyront.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Xyront", + "email": "abalabalscratch@gmail.com" + }, + "record": { + "CNAME": "xyront.github.io" + } +} diff --git a/domains/xyz.json b/domains/xyz.json new file mode 100644 index 000000000..66ce08561 --- /dev/null +++ b/domains/xyz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BLCXD", + "email": "blctoblc223@gmail.com" + }, + "record": { + "CNAME": "blcpage.github.io" + } +} diff --git a/domains/xyzjesper.json b/domains/xyzjesper.json new file mode 100644 index 000000000..9d5e23ed4 --- /dev/null +++ b/domains/xyzjesper.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Portfolio", + "owner": { + "username": "xyzjesper", + "email": "contact@xyzjesper.dev" + }, + "record": { + "CNAME": "proxy.system.nexocrew.space" + } +} diff --git a/domains/xzfrost.json b/domains/xzfrost.json deleted file mode 100644 index 4b1807936..000000000 --- a/domains/xzfrost.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "XzFrosT", - "email": "mschodeihsan@gmail.com" - }, - "record": { - "CNAME": "ihsanhardiansah.me" - } - } - \ No newline at end of file diff --git a/domains/y.json b/domains/y.json new file mode 100644 index 000000000..1a06bbbaf --- /dev/null +++ b/domains/y.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "yunexiz.github.io" + } +} diff --git a/domains/ya.json b/domains/ya.json deleted file mode 100644 index 4d6cb0b1e..000000000 --- a/domains/ya.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "API For My Projects!", - "repo": "https://github.com/icancodebeauty/api", - "owner": { - "username": "icancodebeauty", - "email": "aditya@mail.aditya.is-a.dev", - "twitter": "CodeWithAadi" - }, - "record": { - "CNAME": "icancodebeauty.github.io" - } -} diff --git a/domains/yaakovschlachter.json b/domains/yaakovschlachter.json new file mode 100644 index 000000000..a0238bee9 --- /dev/null +++ b/domains/yaakovschlachter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CompuGenius", + "email": "contact@cgprograms.com" + }, + "record": { + "CNAME": "cgprograms.com" + } +} diff --git a/domains/yacineboussoufa.json b/domains/yacineboussoufa.json new file mode 100644 index 000000000..c819933b5 --- /dev/null +++ b/domains/yacineboussoufa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YacineBoussoufa", + "email": "yacine.boussoufa.yb@gmail.com" + }, + "record": { + "URL": "https://yacineboussoufa.it.eu.org" + } +} diff --git a/domains/yacoreq.json b/domains/yacoreq.json new file mode 100644 index 000000000..d9dec1faa --- /dev/null +++ b/domains/yacoreq.json @@ -0,0 +1,12 @@ +{ + "description": "yacoreq is a dev", + "repo": "https://github.com/yacoreq/yacoreq.github.io", + "owner": { + "username": "yacoreq", + "email": "yacoreq@gmail.com", + "discord": "685845264417816611" + }, + "record": { + "A": ["136.243.156.120"] + } +} diff --git a/domains/yaelmassieu.json b/domains/yaelmassieu.json index 462c22fef..e65db6531 100644 --- a/domains/yaelmassieu.json +++ b/domains/yaelmassieu.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "bystrokr", - "email": "jamesisajamessx@gmail.com" - }, - "record": { - "A": ["66.45.229.178"] - } - } - \ No newline at end of file +{ + "owner": { + "username": "bystrokr", + "email": "jamesisajamessx@gmail.com" + }, + "record": { + "A": ["66.45.229.178"] + } +} diff --git a/domains/yahya-rabii.json b/domains/yahya-rabii.json index 48a137f1d..447382535 100644 --- a/domains/yahya-rabii.json +++ b/domains/yahya-rabii.json @@ -1,10 +1,10 @@ -{ - "description": "MY PP website", - "owner": { - "username": "Yahya-rabii", - "email": "rabiiyahya1@gmail.com" - }, - "record": { - "CNAME": "yahya-rabii.github.io" - } -} \ No newline at end of file +{ + "description": "MY PP website", + "owner": { + "username": "Yahya-rabii", + "email": "rabiiyahya1@gmail.com" + }, + "record": { + "CNAME": "yahya-rabii.github.io" + } +} diff --git a/domains/yajat.json b/domains/yajat.json deleted file mode 100644 index c064f4797..000000000 --- a/domains/yajat.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Personal Website", - "repo": "https://github.com/iamyajat", - "owner": { - "username": "iamyajat", - "email": "me@iamyajat.co" - }, - "record": { - "URL": "https://www.iamyajat.co" - } -} diff --git a/domains/yakate.json b/domains/yakate.json new file mode 100644 index 000000000..aceacfc2d --- /dev/null +++ b/domains/yakate.json @@ -0,0 +1,12 @@ +{ + "description": "personal website", + "repo": "https://github.com/oyakate/oyakate.github.io", + "owner": { + "username": "oYakate", + "email": "trollekxmusic@gmail.com", + "discord": "842070971669544982" + }, + "record": { + "CNAME": "oYakate.github.io" + } +} diff --git a/domains/yakiyo.json b/domains/yakiyo.json index 9c53df721..fc54bfd37 100644 --- a/domains/yakiyo.json +++ b/domains/yakiyo.json @@ -1,13 +1,13 @@ -{ - "description": "Yakiyo. 18 y/o kid. Weeb and hobbyist Developer", - "repo": "https;//github.com/Yakiyo/Yakiyo.github.io", - "owner": { - "username": "Yakiyo", - "email": "", - "twitter": "Yakiyo8", - "discord": "Yakiyo#1206" - }, - "record": { - "CNAME": "yakiyo.github.io" - } - } \ No newline at end of file +{ + "description": "Yakiyo. 18 y/o kid. Weeb and hobbyist Developer", + "repo": "https;//github.com/Yakiyo/Yakiyo.github.io", + "owner": { + "username": "Yakiyo", + "email": "", + "twitter": "Yakiyo8", + "discord": "Yakiyo#1206" + }, + "record": { + "CNAME": "yakiyo.github.io" + } +} diff --git a/domains/yaman-malla.json b/domains/yaman-malla.json new file mode 100644 index 000000000..679e1b935 --- /dev/null +++ b/domains/yaman-malla.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yamanISyaman", + "email": "yaman.1423@gmail.com" + }, + "record": { + "CNAME": "yaman-malla.surge.sh" + } +} diff --git a/domains/yaman.json b/domains/yaman.json deleted file mode 100644 index a048ff561..000000000 --- a/domains/yaman.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Redirecting to my blog", - "repo": "https://github.com/julianyaman", - "owner": { - "username": "julianyaman", - "email": "mail@yaman.pro" - }, - "record": { - "URL": "https://julianyaman.com" - } -} diff --git a/domains/yandao.json b/domains/yandao.json index e4e179d2b..dc73eb55d 100644 --- a/domains/yandao.json +++ b/domains/yandao.json @@ -1,12 +1,12 @@ { - "description": "My personal profile page (power by gh-pages)", - "repo": "https://github.com/YanDao0313/yandao0313.github.io", - "owner": { - "username": "YanDao0313", - "email": "221202@ydlk.cc", - "twitter": "YanDao0313" - }, - "record": { - "CNAME": "yandao0313.github.io" - } -} + "description": "My personal profile page (power by gh-pages)", + "repo": "https://github.com/YanDao0313/yandao0313.github.io", + "owner": { + "username": "YanDao0313", + "email": "221202@ydlk.cc", + "twitter": "YanDao0313" + }, + "record": { + "CNAME": "yandao0313.github.io" + } +} diff --git a/domains/yang.json b/domains/yang.json index 084c11290..496806c00 100644 --- a/domains/yang.json +++ b/domains/yang.json @@ -1,12 +1,11 @@ - { - "description": "one personal blog", - "repo": "https://github.com/xuchao996/xuchao996.github.io", - "owner": { - "username": "xuchao996", - "email": "chao.xu996@gmail.com" - }, - "record": { - "CNAME": "xuchao996.github.io" - } -} + "description": "one personal blog", + "repo": "https://github.com/xuchao996/xuchao996.github.io", + "owner": { + "username": "xuchao996", + "email": "chao.xu996@gmail.com" + }, + "record": { + "CNAME": "xuchao996.github.io" + } +} diff --git a/domains/yash.json b/domains/yash.json new file mode 100644 index 000000000..0c16486dc --- /dev/null +++ b/domains/yash.json @@ -0,0 +1,18 @@ +{ + "description": "Link to my portfolio site.", + "repo": "https://github.com/real-yash/website", + "owner": { + "username": "real-yash", + "email": "connect@real-yash.is-a.dev" + }, + "record": { + "A": [ + "185.199.111.153", + "185.199.109.153", + "185.199.108.153", + "185.199.110.153" + ], + "MX": ["yash-isa-dev01i.mail.protection.outlook.com"], + "TXT": "v=spf1 include:spf.protection.outlook.com -all" + } +} diff --git a/domains/yashash.json b/domains/yashash.json deleted file mode 100644 index 1d2868164..000000000 --- a/domains/yashash.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Personal portfolio website", - "repo": "https://github.com/yashash1511/yashash1511.github.io", - "owner": { - "username": "yashash1511", - "email": "yashash1511@gmail.com" - }, - "record": { - "URL": "https://yashash1511.github.io" - } -} diff --git a/domains/yashasviallen.json b/domains/yashasviallen.json new file mode 100644 index 000000000..b06667a77 --- /dev/null +++ b/domains/yashasviallen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JavaProgswing", + "email": "yashasviallen@gmail.com" + }, + "record": { + "CNAME": "yashasviallen.dynv6.net" + } +} diff --git a/domains/yashgupta.json b/domains/yashgupta.json new file mode 100644 index 000000000..505710abe --- /dev/null +++ b/domains/yashgupta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yashhh999", + "email": "gupta25yash@gmail.com" + }, + "record": { + "CNAME": "yashhh999.github.io" + } +} diff --git a/domains/yashraj.json b/domains/yashraj.json index e6a4acc39..707c75638 100644 --- a/domains/yashraj.json +++ b/domains/yashraj.json @@ -2,11 +2,11 @@ "description": "My Personal Portfolio", "repo": "https://github.com/yashraj-n/yashraj-n.github.io", "owner": { - "username": "yashraj-n", - "email": "ynnarke52@gmail.com", - "twitter": "NarkeYashraj" + "username": "yashraj-n", + "email": "ynnarke52@gmail.com", + "twitter": "NarkeYashraj" }, "record": { - "CNAME": "yashraj-n.github.io" + "CNAME": "yashraj-n.github.io" } -} +} diff --git a/domains/yashrao.json b/domains/yashrao.json new file mode 100644 index 000000000..9295dbae5 --- /dev/null +++ b/domains/yashrao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "py-yash", + "email": "cwyash.rao@gmail.com" + }, + "record": { + "CNAME": "py-yash.github.io" + } +} diff --git a/domains/yasser.json b/domains/yasser.json new file mode 100644 index 000000000..fbaaf4ced --- /dev/null +++ b/domains/yasser.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yasserfds", + "email": "yasserfedsi34@gmail.com" + }, + "record": { + "URL": "https://yasserfedsi.vercel.app" + } +} diff --git a/domains/yassin.json b/domains/yassin.json new file mode 100644 index 000000000..d809f2761 --- /dev/null +++ b/domains/yassin.json @@ -0,0 +1,12 @@ +{ + "description": "my bio", + "repo": "https://github.com/ycssin/bio", + "owner": { + "username": "ycssin", + "email": "", + "twitter": "ycssin" + }, + "record": { + "CNAME": "ycssin.github.io" + } +} diff --git a/domains/yassine.json b/domains/yassine.json new file mode 100644 index 000000000..656451d87 --- /dev/null +++ b/domains/yassine.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yassine20011", + "email": "medalgamer47@gmail.com" + }, + + "record": { + "CNAME": "amjad.pages.dev" + } +} diff --git a/domains/ycyanx.json b/domains/ycyanx.json deleted file mode 100644 index fc72ae0c5..000000000 --- a/domains/ycyanx.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "yCyanxW's Website for Information!", - "repo": "https://github.com/yCyanxW/ycyanx.github-io", - "owner": { - "username": "yCyanxW", - "email": "ycyanxandxantham@gmail.com" - }, - "record": { - "CNAME": "59a8d912-6eac-4a09-97c0-a319d88b2b50.repl.co" - } -} diff --git a/domains/yean.json b/domains/yean.json new file mode 100644 index 000000000..902ae8461 --- /dev/null +++ b/domains/yean.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "joshex150", + "email": "joshex150@gmail.com" + }, + "record": { + "CNAME": "yean-tech.vercel.app" + } +} diff --git a/domains/yedu.json b/domains/yedu.json index e09826279..ce22574bf 100644 --- a/domains/yedu.json +++ b/domains/yedu.json @@ -1,12 +1,12 @@ { - "description": "Personal Page", - "repo": "https://github.com/YedukrishnanTY/web", - "owner": { - "username": "YeduKrishnanTY", - "email": "", - "discord": "Chandler._bing__#8780" - }, - "record": { - "CNAME": "YeduKrishnanTY.github.io" - } -} + "description": "Personal Page", + "repo": "https://github.com/YedukrishnanTY/web", + "owner": { + "username": "YeduKrishnanTY", + "email": "", + "discord": "Chandler._bing__#8780" + }, + "record": { + "CNAME": "YeduKrishnanTY.github.io" + } +} diff --git a/domains/yemzikk.json b/domains/yemzikk.json new file mode 100644 index 000000000..ca239356a --- /dev/null +++ b/domains/yemzikk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yemzikk", + "email": "muhammedziyad12@gmail.com" + }, + "record": { + "URL": "https://yemzikk.in/" + } +} diff --git a/domains/yeppiidev.json b/domains/yeppiidev.json index 20a597c5b..ad9255293 100644 --- a/domains/yeppiidev.json +++ b/domains/yeppiidev.json @@ -1,12 +1,12 @@ { - "description": "Just my personal website :^)", - "repo": "https://github.com/yeppiidev/yeppiidev.github.io", - "owner": { - "username": "yeppiidev", - "email": "yedoxstudios@gmail.com", - "twitter": "yeppiidev" - }, - "record": { - "CNAME": "yeppiidev.github.io" - } -} + "description": "Just my personal website :^)", + "repo": "https://github.com/yeppiidev/yeppiidev.github.io", + "owner": { + "username": "yeppiidev", + "email": "yedoxstudios@gmail.com", + "twitter": "yeppiidev" + }, + "record": { + "CNAME": "yeppiidev.github.io" + } +} diff --git a/domains/yeti.json b/domains/yeti.json new file mode 100644 index 000000000..45ad792af --- /dev/null +++ b/domains/yeti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yetimeh", + "email": "senukabandara2006@gmail.com" + }, + "record": { + "CNAME": "yetimeh.github.io" + } +} diff --git a/domains/yfa.json b/domains/yfa.json new file mode 100644 index 000000000..7f653ef42 --- /dev/null +++ b/domains/yfa.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "URL": "https://github.com/YouFoundAlpha" + } +} diff --git a/domains/yfadev.json b/domains/yfadev.json new file mode 100644 index 000000000..f21a82aa4 --- /dev/null +++ b/domains/yfadev.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "URL": "https://github.com/yfadev" + } +} diff --git a/domains/yieldray.json b/domains/yieldray.json new file mode 100644 index 000000000..2e4d2c1e0 --- /dev/null +++ b/domains/yieldray.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YieldRay", + "email": "yieldray@outlook.com" + }, + "record": { + "URL": "https://ray.deno.dev/" + } +} diff --git a/domains/yigit.json b/domains/yigit.json new file mode 100644 index 000000000..731117b2d --- /dev/null +++ b/domains/yigit.json @@ -0,0 +1,12 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/yigitdev05/yigitdev05.github.io", + "owner": { + "username": "yigitdev05", + "email": "yigitkabak@proton.me", + "discord": "yigit.dev" + }, + "record": { + "CNAME": "yigitdev05.github.io" + } +} diff --git a/domains/yigitkerem.json b/domains/yigitkerem.json deleted file mode 100644 index 47b688875..000000000 --- a/domains/yigitkerem.json +++ /dev/null @@ -1,13 +0,0 @@ - - { - "owner": { - "username": "yigitkeremoktay", - "email": "yigitkerem@theskyfallen.com" - }, - - "record": { - "MX": ["novea.skyfallen.org"], - "A": ["178.62.63.235"] - } - } - diff --git a/domains/yippymishy.json b/domains/yippymishy.json new file mode 100644 index 000000000..d2efca2c6 --- /dev/null +++ b/domains/yippymishy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yippymishy", + "email": "yippymishy@yippymishy.com" + }, + "record": { + "URL": "https://yippymishy.com" + } +} diff --git a/domains/yisus82.json b/domains/yisus82.json new file mode 100644 index 000000000..9bf61e251 --- /dev/null +++ b/domains/yisus82.json @@ -0,0 +1,12 @@ +{ + "description": "Personal webpage", + "repo": "https://github.com/yisus82/yisus82.github.io", + "owner": { + "username": "yisus82", + "email": "djalma8@gmail.com", + "twitter": "yisusbauer" + }, + "record": { + "CNAME": "yisus82.github.io" + } +} diff --git a/domains/yochietti.json b/domains/yochietti.json new file mode 100644 index 000000000..66e35d95a --- /dev/null +++ b/domains/yochietti.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yochie", + "email": "yoann.ochietti@gmail.com" + }, + "record": { + "URL": "https://yochie.github.io" + } +} diff --git a/domains/yokaicord.json b/domains/yokaicord.json new file mode 100644 index 000000000..2a24c1a70 --- /dev/null +++ b/domains/yokaicord.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zxPau", + "email": "pauu123123123@gmail.com" + }, + "record": { + "CNAME": "zxpau.github.io" + } +} diff --git a/domains/yol.json b/domains/yol.json new file mode 100644 index 000000000..74b4f4727 --- /dev/null +++ b/domains/yol.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "YoelNath", + "email": "yoelnathanael1@gmail.com" + }, + "record": { + "CNAME": "yoelnath.github.io" + } +} diff --git a/domains/yose.json b/domains/yose.json new file mode 100644 index 000000000..2ac61fbf5 --- /dev/null +++ b/domains/yose.json @@ -0,0 +1,13 @@ +{ + "description": "A one-page portfolio website", + "repo": "https://github.com/yohn-maistre/yohn-maistre.github.io", + "owner": { + "username": "yohn-maistre", + "email": "", + "twitter": "jind0sh", + "discord": "jind0sh#5330" + }, + "record": { + "CNAME": "yohn-maistre.github.io" + } +} diff --git a/domains/yosuke.json b/domains/yosuke.json new file mode 100644 index 000000000..559c675c1 --- /dev/null +++ b/domains/yosuke.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "CNAME": "yunexiz.pages.dev" + } +} diff --git a/domains/youfoundalpha.json b/domains/youfoundalpha.json new file mode 100644 index 000000000..8880a3772 --- /dev/null +++ b/domains/youfoundalpha.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "URL": "https://github.com/YouFoundAlpha", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all", + "$argon2id$v=19$m=64,t=512,p=2$LQgtmaW74soANOQER5HbUw$AsMbVQTJEn5K3tM8hb2dsQ" + ] + } +} diff --git a/domains/youfoundalpha.youfoundalpha.json b/domains/youfoundalpha.youfoundalpha.json new file mode 100644 index 000000000..2274c3b36 --- /dev/null +++ b/domains/youfoundalpha.youfoundalpha.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "", + "Discord": "661121998830960651", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "URL": "https://youfoundalpha.is-a.dev" + } +} diff --git a/domains/youple.json b/domains/youple.json new file mode 100644 index 000000000..b82d22a19 --- /dev/null +++ b/domains/youple.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nagdongdev-0713", + "email": "lyw8459@gmail.com" + }, + + "record": { + "MX": ["aspmx.daum.net"] + } +} diff --git a/domains/yourdad.json b/domains/yourdad.json new file mode 100644 index 000000000..787ed3d21 --- /dev/null +++ b/domains/yourdad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + "record": { + "CNAME": "roktim32.github.io" + } +} diff --git a/domains/yourfriend.json b/domains/yourfriend.json deleted file mode 100644 index 62c0dbe22..000000000 --- a/domains/yourfriend.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Yourfriend's Introduction", - "repo": "https://github.com/yourfriend", - "owner": { - "username": "yourfriend", - "email": "friend@yourfriend.lv" - }, - "record": { - "CNAME": "yourfriend.lv" - } -} diff --git a/domains/yourtilak.json b/domains/yourtilak.json new file mode 100644 index 000000000..23c7fd71e --- /dev/null +++ b/domains/yourtilak.json @@ -0,0 +1,11 @@ +{ + "description": "YourTilak.is-a.dev", + "repo": "https://github.com/YourTilak/YourTilak.github.io", + "owner": { + "username": "YourTilak", + "email": "rj05tilak@gmail.com" + }, + "record": { + "CNAME": "yourtilak.github.io" + } +} diff --git a/domains/yourz.json b/domains/yourz.json new file mode 100644 index 000000000..d8e15e041 --- /dev/null +++ b/domains/yourz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Yourz", + "email": "crazilou@vip.qq.com" + }, + "record": { + "CNAME": "yourz.github.io" + } +} diff --git a/domains/youssef.json b/domains/youssef.json new file mode 100644 index 000000000..424b4a6f1 --- /dev/null +++ b/domains/youssef.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "youssefsiam38", + "email": "youssef1yasser38@gmail.com" + }, + "record": { + "URL": "https://www.linkedin.com/in/youssefsiam38" + } +} diff --git a/domains/yp.shockbs.json b/domains/yp.shockbs.json new file mode 100644 index 000000000..987e9af9c --- /dev/null +++ b/domains/yp.shockbs.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "TXT": "v=spf1 include:mailgun.org ~all", + "MX": ["mxa.mailgun.org","mxb.mailgun.org"] + } +} diff --git a/domains/ypratham.json b/domains/ypratham.json index eeaed2906..a615a076f 100644 --- a/domains/ypratham.json +++ b/domains/ypratham.json @@ -1,8 +1,8 @@ { "description": "Pratham Yadav Portfolio", - "repo": "https://github.com/ypratham/portfolio.github.io", + "repo": "https://github.com/ypratham/ypratham.github.io", "owner": { - "username": "ypratahm", + "username": "ypratham", "email": "ypratham0014@gmail.com" }, "record": { diff --git a/domains/yrrahbot.acronical.json b/domains/yrrahbot.acronical.json new file mode 100644 index 000000000..fa8380b23 --- /dev/null +++ b/domains/yrrahbot.acronical.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "record": { + "A": ["138.68.133.84"] + } +} diff --git a/domains/yrrahevents.acronical.json b/domains/yrrahevents.acronical.json new file mode 100644 index 000000000..8635bd042 --- /dev/null +++ b/domains/yrrahevents.acronical.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AcronicalYT", + "email": "acronicalbusiness@gmail.com" + }, + "record": { + "CNAME": "yrrahevents.pages.dev" + } +} diff --git a/domains/yuk1ch.json b/domains/yuk1ch.json deleted file mode 100644 index 444719681..000000000 --- a/domains/yuk1ch.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "ImRaid", - "email": "itsraidlol@gmail.com", - "discord": "! Yuk1ch#7484", - "telegram": "@Yuk1ch" - }, - "record": { - "CNAME": "d1d16500-13c2-4fc8-a658-87d258da2316.id.repl.co" - } -} diff --git a/domains/yukii.json b/domains/yukii.json new file mode 100644 index 000000000..195895263 --- /dev/null +++ b/domains/yukii.json @@ -0,0 +1,11 @@ +{ + "description": "My website", + "repo": "https://github.com/YukiVN/yukivn.github.io", + "owner": { + "username": "YukiVN", + "email": "mejmayfoof@gmail.com" + }, + "record": { + "CNAME": "yukivn.pages.dev" + } +} diff --git a/domains/yuko.json b/domains/yuko.json new file mode 100644 index 000000000..64f02ae30 --- /dev/null +++ b/domains/yuko.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "DreamLikeAmonster", + "email": "", + "discord": "918872621892911164", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FyzirrX9msJ22dfqcMb_F476tQ5rUYYmG681OE-Iel2p4ng72GCkf6U1y2jE3W8y8EpmY4SIZLyCQxnfkChRJB3Sf6SHBg54FaZYrhwZL6c42HNf5qbXPo1G8SMafzENqI4NuVFdpy4ctY-kqet3IUdELwb5Ca062tHi0f4ofxygXCvbPeL5Kwr7pttv87nFdrXyQXbONOyBSIEdkV_svZSqoIeN_pvYFwP6Ui5uPXLu1MK_wrhmDkCfsaq9fW1dhxJG9cg70pqTJLt9DsrhQydcG4CWC335MNjy4xPpSWWgIzraJGyf-tGpME8_gsYCSq0KFt7LDw8sDhfyJ-E_jQ.OErg6Z3UQeu0J_ICaJ2fNQ.BwUoHl2d0Hr1OfmCOg_m-LtJ_wwn_K2hSYsx3hiUvbzYzw5JTTM5c9phF5t_EX1ceBnp_-0cTtPOc7525aB8ThlWuEgqfa5yEd2XRy5GFpU._yB2iJ0EFbGg6MwFxU7p0A" + }, + + "record": { + "A": ["76.76.21.21"] + } + } + diff --git a/domains/yunexiz.json b/domains/yunexiz.json new file mode 100644 index 000000000..1f9a74c49 --- /dev/null +++ b/domains/yunexiz.json @@ -0,0 +1,29 @@ +{ + "owner": { + "username": "yunexiz", + "discord": "1040303561847881729", + "email": "" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "AAAA": [ + "2606:50c0:8000::153", + "2606:50c0:8001::153", + "2606:50c0:8002::153", + "2606:50c0:8003::153" + ], + "TXT": [ + "v=spf1 include:spf.improvmx.com ~all", + "google-site-verification=JaMCz_HK22wQhiZbF-51XTXAzEEt3qBYCMo2g_86BWo" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } +} diff --git a/domains/yuphie.json b/domains/yuphie.json index 040bdb1db..8dbb16181 100644 --- a/domains/yuphie.json +++ b/domains/yuphie.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "yuphiedev", - "email": "mizuto.discord@gmail.com" - }, - "record": { - "URL": "https://yuphie.vercel.app" - } - } - \ No newline at end of file +{ + "owner": { + "username": "yuphiedev", + "email": "mizuto.discord@gmail.com" + }, + "record": { + "URL": "https://yuphie.vercel.app" + } +} diff --git a/domains/yuphiee.json b/domains/yuphiee.json index 040bdb1db..8dbb16181 100644 --- a/domains/yuphiee.json +++ b/domains/yuphiee.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "yuphiedev", - "email": "mizuto.discord@gmail.com" - }, - "record": { - "URL": "https://yuphie.vercel.app" - } - } - \ No newline at end of file +{ + "owner": { + "username": "yuphiedev", + "email": "mizuto.discord@gmail.com" + }, + "record": { + "URL": "https://yuphie.vercel.app" + } +} diff --git a/domains/yuri.json b/domains/yuri.json new file mode 100644 index 000000000..64fed4d33 --- /dev/null +++ b/domains/yuri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MaiYurito", + "email": "reachgamers9999@gmail.com" + }, + "record": { + "URL": "https://yuri.only-fans.club/" + } +} diff --git a/domains/yurihsq.json b/domains/yurihsq.json index 3694e7044..c2e0d26ff 100644 --- a/domains/yurihsq.json +++ b/domains/yurihsq.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "Mai1ii", - "email": "micomacabali14@gmail.com" - }, - "record": { - "CNAME": "mai1ii.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com" + }, + "record": { + "CNAME": "mai1ii.github.io" + } +} diff --git a/domains/yurikawa.json b/domains/yurikawa.json deleted file mode 100644 index 6620f4bf7..000000000 --- a/domains/yurikawa.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "description": "For my Anime Images API", - "repo": "https://github.com/KASKUSTTV", - "owner": { - "username": "KASKUSTTV", - "email": "kaskus45@protonmail.com" - }, - "record": { - "A": [ - "164.132.74.251", - "164.132.75.251", - "164.132.76.251", - "164.132.77.251" - ] - } -} diff --git a/domains/yurito.json b/domains/yurito.json new file mode 100644 index 000000000..19d199040 --- /dev/null +++ b/domains/yurito.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MaiYurito", + "email": "reachgamers9999@gmail.com" + }, + "record": { + "CNAME": "yurito.pages.dev" + } +} diff --git a/domains/yush.json b/domains/yush.json index 3bc39faf9..76fe3109f 100644 --- a/domains/yush.json +++ b/domains/yush.json @@ -1,11 +1,14 @@ -{ - "owner": { - "username": "OpAayush", - "email": "aayush.agrawalm@gmail.com" - }, - "description": "mail domain", - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } - } +{ + "owner": { + "username": "OpAayush", + "email": "aayush.agrawalm@gmail.com" + }, + "description": "mail domain", + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/yuting.json b/domains/yuting.json new file mode 100644 index 000000000..be7a831aa --- /dev/null +++ b/domains/yuting.json @@ -0,0 +1,11 @@ +{ + "description": "yuting.is-a.dev", + "repo": "https://github.com/wyuting0/wyuting0.github.io", + "owner": { + "username": "wyuting0", + "email": "wyuting2011@gmail.com" + }, + "record": { + "CNAME": "wyuting0.github.io" + } +} diff --git a/domains/yutong.json b/domains/yutong.json deleted file mode 100644 index 523e68be4..000000000 --- a/domains/yutong.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Test description", - "repo": "https://Global-Clicks.yutonghan2.repl.co", - "owner": { - "username": "yutonghanofficial", - "email": "realyutonghan@gmail.com" - }, - "record": { - "CNAME": "e5ac2ad9-5903-4c72-9092-7da12688a4c2.id.repl.co" - } -} diff --git a/domains/yuukari.json b/domains/yuukari.json index c6ec01c32..befe036fc 100644 --- a/domains/yuukari.json +++ b/domains/yuukari.json @@ -1,12 +1,12 @@ { - "description": "My dev homepage, which I have publish info about me, pet/commercial projects, etc.", - "repo": "https://github.com/Yuukari/yuukari.github.io", - "owner": { - "username": "Yuukari", - "email": "yuukarichan@yandex.com", - "telegram": "@iamyuukari" - }, - "record": { - "CNAME": "yuukari.github.io" - } -} \ No newline at end of file + "description": "My dev homepage, which I have publish info about me, pet/commercial projects, etc.", + "repo": "https://github.com/Yuukari/yuukari.github.io", + "owner": { + "username": "Yuukari", + "email": "yuukarichan@yandex.com", + "telegram": "iamyuukari" + }, + "record": { + "CNAME": "yuukari.github.io" + } +} diff --git a/domains/yuuto.json b/domains/yuuto.json new file mode 100644 index 000000000..9d5762877 --- /dev/null +++ b/domains/yuuto.json @@ -0,0 +1,12 @@ +{ + "description": "Yuuto's discord portfolio", + "repo": "https://github.com/user93485/yuuto", + "owner": { + "username": "user93485", + "email": "yuutodiscordlol@gmail.com", + "discord": "YUUTO#9199" + }, + "record": { + "CNAME": "user93485.github.io" + } +} diff --git a/domains/yuwind.json b/domains/yuwind.json new file mode 100644 index 000000000..4d2a14fcb --- /dev/null +++ b/domains/yuwind.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Dn1w", + "email": "", + "discord": "923208452581511199", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nQF2bwIsViYIuC1FZ48r68zYQXusR7tgmol1Y5mNRhqkWD_x5XQ1F5KRN48xYpq_fIDcUQ-uBxgmradSBDnoiTB96eE_uq4MlQvjzpg2GXbcOgCc6E0usOvjMTMshcVbpGbEmWNOAzuXyIBT12VndaD9gNhU_n33a5_Qrb2FhTzI8XMrBjc8897so97IT3QFC1edNTi33ABhPOaiPo4rK82nb45BIt6RZDQijOwfi1GA05_q8HP1XMRqkxbTGSHKR6CWTOslEEEgaqFz8bxPBJLrzM-Hxq9yQZzF_9hcYhMDgzVapYORnLPhRD6BXB7NHh6TI7FDSLnXNu5fO-N_Yg.bkOu7XBiNIrQusCKH9gfmQ.gCG0QcEarPJlx_edap0C_5adBlpcSToQZTM7PLljXybcM_r8FKeErxGGHXdJVR9SjykisjgdfX33mkzgZm53CiDAQDOS6qdOGvCf9C8REQc.xMycJJl9UiQgpeO7QyfzPw" + }, + + "record": { + "CNAME": "yuwindev.github.io" + } + } + \ No newline at end of file diff --git a/domains/yuzuki.json b/domains/yuzuki.json new file mode 100644 index 000000000..b518957aa --- /dev/null +++ b/domains/yuzuki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SuzukiYuzuki", + "email": "hotococoa104@gmail.com" + }, + "record": { + "CNAME": "suzukiyuzuki.github.io" + } +} diff --git a/domains/yxlr.json b/domains/yxlr.json index dfec816bd..eddf02ac0 100644 --- a/domains/yxlr.json +++ b/domains/yxlr.json @@ -1,9 +1,9 @@ - { - "owner": { - "username": "yxlr123", - "email": "dbh2858304517@gmail.com" - }, - "record": { - "CNAME": "yxlr123.github.io" - } - } +{ + "owner": { + "username": "yxlr123", + "email": "dbh2858304517@gmail.com" + }, + "record": { + "CNAME": "yxlr123.github.io" + } +} diff --git a/domains/yxz.json b/domains/yxz.json new file mode 100644 index 000000000..739cbc466 --- /dev/null +++ b/domains/yxz.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/yz9551/blog", + "owner": { + "username": "yz9551", + "email": "yixuan0808@gmail.com" + }, + "record": { + "CNAME": "yz9551.github.io" + } +} diff --git a/domains/z.json b/domains/z.json new file mode 100644 index 000000000..63cb18490 --- /dev/null +++ b/domains/z.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ae9lxcsRx9K7NJv-AcRXmgm-8sWQp-2e6Pxly82K9_797Wy3RjBtVGaq9snYtOkL-Qm9Oj845TiS8DV-ae7fPyWYwHgzrDj99tuRjVFyrvWfCbglvOWWHODsjV5lJpJZQjuHQn08O1Ptv69N5E2-imTQegZhcn5pkMiTCW8VpuXNXD_1Viu5_xSUYXYaAsaY-G0QYNLK3IPky8zorgdC4-5w23htVxmbiAMTtqHHOJx-wqv2R-xya96-BlQ_P8GtCTG5XJQzdqrqz630012T_tdD5VL5wbBbsCcWI4EoHqGZcBt4LhUL0GPnr9jnWuTcoBVyMSevG6plNjPF9wc6WQ.cOsFit33h3r9GZdCYQ8B3Q.iOkTaYYCBBWaWv9ZtDxpCL4ix4zMWwIYcIMuje17bYUcWom6plFOQFmG24WCucDMgbeMd_eM0NdttpHYRdl7VaM_E4zTUMViGInDWEO1ucI2whNYUt3Cf1Zev1851l44.eoIzam49yND7K-OzfY6Rag" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } + } + diff --git a/domains/z2ftzxm.json b/domains/z2ftzxm.json new file mode 100644 index 000000000..c3ebc9d94 --- /dev/null +++ b/domains/z2ftzxm.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "zigzaglm13", + "email": "", + "discord": "1221383096901828720", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Cirj_NnJqGzTCyDDB1ZQPcvjcYaQIeqFtrXRrIuAi_HeGGkRjMGyJCXQ093JUJzTgCiFLiMiw49j6Aqhmo-NhIof2E4vzK30xAronlDnhDRQZoWSTlWxqJxZAcSb98ZJ0OQgTr24-mpFa0fTKBBtkp9hm-tD62oV20BFyKFK1OOY-c-nW-rym1DXshxwzzHV7I9VXUIlsQdvDV_M-ggJXj2HtmkkOjBgYOUqTBykkd3TgMzKgQ8_e_O0U0ulPnh9_PuHenwSe2MS0rmD3hRsbBJIFhzk1GJxDbBPM7_pJyAl-BUXULwOSpAYgN4w9FB9kRjGuMUcfeTu4mMNZY7dcA.4nC_ZORHozUubbeN0gM1aQ.Dl67xlT2xKuAYnjsoxzeYmggQMpUa6N3K-7sKGHZ-g_I8_4ToENfzpvpKDvIe7dKowfVwpYp56vrp7QI0rxeoVNSd38rigBnSTII6UmLQKY.E3Xv9CXUrXmGOQiH_icE0w" + }, + + "record": { + "CNAME": "zigzaglm13.github.io" + } + } + diff --git a/domains/z4ff.json b/domains/z4ff.json deleted file mode 100644 index 9da0522c6..000000000 --- a/domains/z4ff.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "my website", - "owner": { - "username": "z4ff", - "email": "z3ffdebunked@gmail.com" - }, - "record": { - "CNAME": "0c0ac41f-740d-47d1-b813-f75e5f5a5800.repl.co" - } -} diff --git a/domains/z4xi.json b/domains/z4xi.json index 6834b17a8..2f7053bff 100644 --- a/domains/z4xi.json +++ b/domains/z4xi.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "z4xi", - "email": "z4xi@shitposting.expert" - }, - "record": { - "URL": "https://velvety-granita-c85dd5.netlify.app" - } - } - +{ + "owner": { + "username": "z4xi", + "email": "z4xi@shitposting.expert" + }, + "record": { + "URL": "https://velvety-granita-c85dd5.netlify.app" + } +} diff --git a/domains/za.json b/domains/za.json new file mode 100644 index 000000000..fca885201 --- /dev/null +++ b/domains/za.json @@ -0,0 +1,14 @@ +{ + "description": "Zeeshan's Email", + "owner": { + "email": "itsshanihere42@gmail.com", + "username": "m-zeeshan42" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/zai.json b/domains/zai.json new file mode 100644 index 000000000..e774887a4 --- /dev/null +++ b/domains/zai.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zai-Kun", + "email": "", + "discord": "1100460955390988410", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.m6cKdJTirBBSL5dhwU-39VbjpjyfPP_9mSRhao-tr5TYYAZ2KnkwkYsCWJ9euM2LB4GZyUqNCviMtjOM1AXoxWq_lVH7pHgvC8I3a-HeKX0TNcy819o5nlrINjiM4770f09woEl5GVw3bGajgeJLWTPmj7PTWBvQkQ3Ug9Iuye7HmZ-UAIgh8kEw7LJzhyOKS2UTIgrA4hFF7epgCXSrma27dhHqTOjDPeg30dBO1aF8LNaF9GRnAn_IZE8Lah1ZFB9kqZRta466Zuzz8k5ztk4d-cPZEpuR6s6QIpHnddumx_hIt386nsfyQezQIo6TF5InIMT6fWkXUxDlkTyYqQ.D2xW1pY3dTkoLE7rwujNmw.PAHfsXDfCMvwEnw2-xyEYy1PCsEnfFJrkz9wAUOzUebiQsVvJ8_EjuuRFj9okzrjerIpOt2jVSyc_d9F6JFKR4AD9vbFtsMgQ0ni-6wdH6I.2MpIxeaOipjNwh0uvaaAEw" + }, + "record": { + "CNAME": "zai-kun.vercel.app" + } +} diff --git a/domains/zaid-kadri.json b/domains/zaid-kadri.json new file mode 100644 index 000000000..3783cd1c9 --- /dev/null +++ b/domains/zaid-kadri.json @@ -0,0 +1,11 @@ +{ + "description": "This is my website", + "repo": "https://github.com/zaid-kadri/zaid-kadri.github.io", + "owner": { + "username": "zaid-kadri", + "email": "" + }, + "record": { + "URL": "https://zaid-kadri.github.io" + } +} diff --git a/domains/zakaria-didah.json b/domains/zakaria-didah.json new file mode 100644 index 000000000..beb862cc3 --- /dev/null +++ b/domains/zakaria-didah.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "zakaria-didah", + "email": "zakariadidah@gmail.com", + "discord": "788397929308225546" + }, + + "record": { + "A": ["158.179.209.175"] + } + } + diff --git a/domains/zaman.json b/domains/zaman.json new file mode 100644 index 000000000..cbbc86337 --- /dev/null +++ b/domains/zaman.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "asimuzzaman", + "email": "eii8mo9om@mozmail.com" + }, + "record": { + "CNAME": "asimuzzaman.pages.dev" + }, + "description": "Personal website of @asimuzzaman" +} diff --git a/domains/zarqi.ezzoubair.json b/domains/zarqi.ezzoubair.json new file mode 100644 index 000000000..e2c8dec17 --- /dev/null +++ b/domains/zarqi.ezzoubair.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/zarqi.json b/domains/zarqi.json new file mode 100644 index 000000000..e2c8dec17 --- /dev/null +++ b/domains/zarqi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/zax.json b/domains/zax.json new file mode 100644 index 000000000..ef9f3d221 --- /dev/null +++ b/domains/zax.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "zaxerion", + "email": "xxunxxunxx@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/zay.json b/domains/zay.json new file mode 100644 index 000000000..46e562603 --- /dev/null +++ b/domains/zay.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zayzzay", + "email": "yzerianyoung08@gmail.com", + "discord": "352264519235403787" + }, + + "record": { + "CNAME": "zayzzay.github.io" + } +} diff --git a/domains/zayaanar.json b/domains/zayaanar.json new file mode 100644 index 000000000..2e0b7b5f1 --- /dev/null +++ b/domains/zayaanar.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "userandaname", + "email": "", + "discord": "823939421686071386", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.a62ohGnPWnZcxwliAblMFZoEcnjztiOXGJrf3viuLFutyG5cwvSgEFmeYQAiODGndCak3XXgSJwLyFiS-HIsLWG6ViBhu9A48zkUMTv6IHO7OUFE9kNiGIqhp3S8h8lhaaxA3zW_OuOIQBoLFJnL0RqQgOd2QC6P-v1Fm6Aab3HMCGYN5tNwk1Jpl5vwisxnCG-PDUWrrgJ8PbMGRUa2Sa5qvFOJK0LML3yDqKOlFUGs9XmBcbTMc2KVdGjAm0F8l1w0WRDyx15hNFu_ppB7yaIS91o7iJS-g-ViSWf3-Hj0gCyUl1sHPQi3-2IE5GaNtfqVLQGNC2Kh6NBAkRRT7g.09Llm3K10Q7Tl3ceKAy76g.6NdcyRztDAFkqDFs5CWyaShozcshoMQ2qq1p7D8wQTG6O8shr8lbczRgMQZhgvzrq7u1g6HMQnW8bQdDdn2Mb1Jj3_qcHXnCUub6exAZONY.0ZXI8zVi0kGV0Qm7uvJOrA" + }, + + "record": { + "CNAME": "userandaname.github.io" + } + } + diff --git a/domains/zb60458066.klent.json b/domains/zb60458066.klent.json new file mode 100644 index 000000000..b01f30800 --- /dev/null +++ b/domains/zb60458066.klent.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kleeiny", + "email": "kleeinlmao@gmail.com", + "discord": "763581985410121769" + }, + + "record": { + "CNAME": "zmverify.zoho.com" + } +} diff --git a/domains/zeaxey.json b/domains/zeaxey.json new file mode 100644 index 000000000..0641f48df --- /dev/null +++ b/domains/zeaxey.json @@ -0,0 +1,12 @@ +{ + "description": "website.", + "repo": "https://github.com/Pixel556/website", + "owner": { + "username": "Pixel556", + "email": "therealzeaxey123@gmail.com", + "discord": "862644161156218891" + }, + "record": { + "CNAME": "pixel556.github.io" + } +} diff --git a/domains/zedfr.json b/domains/zedfr.json new file mode 100644 index 000000000..3f3b9667c --- /dev/null +++ b/domains/zedfr.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Not-oss", + "email": "", + "discord": "1071844093438726239", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.iCd7adkhXsDQ8JjsJXo0hr510PjPxN2DcPcJGhFr_33zbF5sHTZBbI5b0S7EXFgglMpHCIltY9aKCQ7GwZehq4DzvQU8BvHtEPvzwx-rscogCljZ6UF_DpOkypzju7gUtWHmQ1H8_UCXxh3Yv03PSsu9_FY59LgZsyGmSvQXQdJL1yEuuLMAN7ICeV-g8VVrptbPkru2F3KlKcpiPOgjJRojs53StmnnnRJbjJ_vhWdyN0bM69hutYKbi5XrOnN2ZfegaYvXrFZba1Dpj6n3nfrQmXBpA7UN08c6-JXvQuY63lGqv0I5mq03VzIitqqpQhMe0R3d40M7mZY7MgNKtQ.RvJhse7ZgSNv1TQ2fpsbxA.t3NwcxEB9GGJgs4GRpwUriu3ztxjwCKa7ARRXHtV5rO-VRVfPyHRGYG2UbnhZ7CQmlgaSrIMXAuystYoBbrszA.AqqWqZUgymarQHujxpm-sA" + }, + + "record": { + "A": ["89.168.59.222"] + } + } + \ No newline at end of file diff --git a/domains/zedxos.json b/domains/zedxos.json new file mode 100644 index 000000000..76231da70 --- /dev/null +++ b/domains/zedxos.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zedxos", + "email": "danpineda12345678910@gmail.com", + "discord": "966170177815339008" + }, + + "record": { + "CNAME": "cheerful-monstera-e4af4f.netlify.app" + } + } diff --git a/domains/zeeshan.json b/domains/zeeshan.json new file mode 100644 index 000000000..19cab1a91 --- /dev/null +++ b/domains/zeeshan.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio Website", + "repo": "https://github.com/m-zeeshan42/m-zeeshan42.github.io", + "owner": { + "username": "m-zeeshan42", + "email": "zeeshanashraf424@gmail.com" + + }, + "record": { + "CNAME": "m-zeeshan42.github.io" + } +} diff --git a/domains/zelriano36.json b/domains/zelriano36.json new file mode 100644 index 000000000..6d61a6c5d --- /dev/null +++ b/domains/zelriano36.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zelriano36", + "email": "bastien.salvetat@gmail.com" + }, + "record": { + "CNAME": "zelriano36.github.io" + } +} diff --git a/domains/zemerik.json b/domains/zemerik.json new file mode 100644 index 000000000..40d6b86bc --- /dev/null +++ b/domains/zemerik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zemerik", + "email": "zemerikY@gmail.com" + }, + "record": { + "CNAME": "zemerik.github.io" + } +} diff --git a/domains/zen.json b/domains/zen.json index 723fe5a51..a575e85ce 100644 --- a/domains/zen.json +++ b/domains/zen.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "zeraAI", - "email": "parkzen68@gmail.com" - }, - "record": { - "CNAME": "zeraai.github.io" - } -} + "owner": { + "username": "zeraAI", + "email": "parkzen68@gmail.com" + }, + "record": { + "CNAME": "zeraai.github.io" + } +} diff --git a/domains/zener.json b/domains/zener.json new file mode 100644 index 000000000..e92434834 --- /dev/null +++ b/domains/zener.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio site", + "repo": "https://github.com/zenerq/zenerq.github.io", + "owner": { + "username": "zenerq", + "email": "rokosamje@gmail.com" + }, + "record": { + "CNAME": "zenerq.github.io" + } +} diff --git a/domains/zenpai.json b/domains/zenpai.json new file mode 100644 index 000000000..94baaf6a8 --- /dev/null +++ b/domains/zenpai.json @@ -0,0 +1,12 @@ +{ + "description": "zenpai.is-a.dev", + "repo": "https://github.com/ZenpaiAng/ZenpaiAng.github.io", + "owner": { + "username": "ZenpaiAng", + "email": "zenpaiang@gmail.com", + "discord": "zenpaiang" + }, + "record": { + "CNAME": "ZenpaiAng.github.io" + } +} diff --git a/domains/zenzoya.json b/domains/zenzoya.json new file mode 100644 index 000000000..7f922b704 --- /dev/null +++ b/domains/zenzoya.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ZenZoyaUDR", + "email": "", + "discord": "915228509440454707" + }, + + "record": { + "CNAME": "zenzoya.netlify.app" + } + } + \ No newline at end of file diff --git a/domains/zeor154.json b/domains/zeor154.json deleted file mode 100644 index bc57f3884..000000000 --- a/domains/zeor154.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Zeor154", - "email": "driop12bu@gmail.com" - }, - "record": { - "A": ["45.130.141.88"] - } - } - \ No newline at end of file diff --git a/domains/zeoz.json b/domains/zeoz.json new file mode 100644 index 000000000..7ea8094e7 --- /dev/null +++ b/domains/zeoz.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "nysr-dev", + "email": "", + "discord": "908554139888410635", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.DzFKuCJ9aSSXdV5Zva5ADifL9VFv8bwoGWvWEIzfzZHqSPsEFxpnIhQcOPCtuvPDQRkDd11dj2zpqv9gonnte79XPhqg_PqJsW_XH6e8RyK6GBaG0DqQrVhvubLKIUg7B7FwrIdIrVKt4gDInHEUx6IrwvR3qKbWfRbwu4XLB16IBzSQq9Vz96E9SHin7GDqcPviViTouT8KF_GGkWgPvFFysHnaSdXjMPch_zXX5fPgQ58p0P7um6lDVMSykwh4gZm4i6mhgAsUxGQVHY6ifQoIWxVcuMv8_JuIEyVj8X_EUzT5gqn9BWSpOoLHbFQ8nw-ydSDUWqK91zLCahTnlg.coaoSKqOk2tuipR3_ZQaow.RemUOjorEtATO2ekibtnjk3opGgUR9d9PF1IFij9rr1tDLKGe7T_mlHMqP-ma_wf7mBI63bVZOghlj2svObhPyV5Bx1uh9s5JWhpqOiB8ms._qNk5He5L58v1darIO3xGw" + }, + + "record": { + "CNAME": "nysr.host" + } + } + \ No newline at end of file diff --git a/domains/zephyr.json b/domains/zephyr.json new file mode 100644 index 000000000..a9da2c48e --- /dev/null +++ b/domains/zephyr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ALVINTAN159", + "email": "alvintan159@gmail.com", + "discord": "985731141640286258" + }, + + "record": { + "A": ["69.197.135.203"] + } +} diff --git a/domains/zer0.json b/domains/zer0.json new file mode 100644 index 000000000..3a57f388f --- /dev/null +++ b/domains/zer0.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zer0Dev-exe", + "email": "zero", + "discord": "817515739711406140" + }, + + "record": { + "CNAME": "zer0dev-exe.github.io" + } +} diff --git a/domains/zeranamu.json b/domains/zeranamu.json new file mode 100644 index 000000000..1332a3249 --- /dev/null +++ b/domains/zeranamu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zeranamu", + "email": "zeranamu@gmail.com" + }, + "record": { + "CNAME": "zeranamu.github.io" + } +} diff --git a/domains/zerolandcode.json b/domains/zerolandcode.json new file mode 100644 index 000000000..87efeb6c7 --- /dev/null +++ b/domains/zerolandcode.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zerolandcode", + "email": "rolteoln@gmail.com" + }, + "record": { + "CNAME": "zerolandcode.github.io" + } +} diff --git a/domains/zerow.json b/domains/zerow.json new file mode 100644 index 000000000..1a91b90cb --- /dev/null +++ b/domains/zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "A": ["45.158.77.64"] + } +} diff --git a/domains/zerowho.json b/domains/zerowho.json deleted file mode 100644 index 07edb4a5a..000000000 --- a/domains/zerowho.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "ZeroDev's personal developer website", - "repo": "https://github.com/TadashiKazuo", - "owner": { - "username": "TadashiKazuo", - "email": "kudo.andrew.2005@gmail.com" - }, - "record": { - "CNAME": "andrewnoob.tk" - } -} diff --git a/domains/zester.json b/domains/zester.json new file mode 100644 index 000000000..5aa995ece --- /dev/null +++ b/domains/zester.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sxtxnzester", + "email": "lollo11020210@gmail.com", + "discord": "1133362142461050980" + }, + + "record": { + "CNAME": "sxtxnzester.github.io" + } +} diff --git a/domains/zeus.json b/domains/zeus.json new file mode 100644 index 000000000..e19bd2f9a --- /dev/null +++ b/domains/zeus.json @@ -0,0 +1,14 @@ +{ + "description": "Portfolio website", + "repo": "https://github.com/t1devzeus/register", + "owner": { + "username": "t1devzeus", + "email": "dev.caspian.hayashi@gmail.com", + "discord": "944959943310737408" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +} diff --git a/domains/zevobla.json b/domains/zevobla.json new file mode 100644 index 000000000..cf317bf93 --- /dev/null +++ b/domains/zevobla.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Zevobla", + "email": "", + "discord": "467539292877750284", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Yl52Rrzzsl6pjhBgVkYA_NfGUZUHIp18-pe5PQVvoVI_7U_nksgv91HNcy56xoSJ9A8WUJCeE8qwfsenu9qwHVyWlAuNuWKfEMdM4vAI0V_AuW_1YaIm-0ObrxQsOPMohv9n7e6b5vSLz3f7EKsbiqtebvwF1ebxxqN85t64ZrfCSEBATl3sCjR-vLAORej4Kj3MpgKe7Le1qsoey3u5SR1FvGezQh3PLljcKlR72g0TKvkn8WnF2JicERNDNFJYnwipt-G0HyvibpTsh7trMrcrSEfDYFxGkDLYhgHo02RvUhXer4mtCCvMUX2MgsGraqxDBdASwfk62Jn2EINU6Q.PxrZtoeRnAFNvkmvd0vAMg.xokePgy944ELwFNV_7CzH4K_ylDYFqd_rC-XnvJAt22K2dYKk5SVjftxmLJhwib-BcZh-Aqx7FkRmR3bytAKic2a_vdnmkV6c_tuDbSsJviXViBKpPDPhDF2DoWRBvTI.b2HHi1Vk1_cUmFDkZOclbw" + }, + + "record": { + "A": ["77.238.238.131"] + } + } + \ No newline at end of file diff --git a/domains/zffu.json b/domains/zffu.json index d08726ef0..8ce8a7a6c 100644 --- a/domains/zffu.json +++ b/domains/zffu.json @@ -1,11 +1,11 @@ - - { - "owner": { - "username": "Radi0o", - "email": "radi0o0@outlook.com" - }, - "record": { - "CNAME": "zffu.ml" - } - } - \ No newline at end of file +{ + "description": "zffu.is-a.dev", + "owner": { + "username": "Zffu", + "email": "zffumc@gmail.com", + "discord": "Zffu" + }, + "record": { + "CNAME": "zffu.github.io" + } +} diff --git a/domains/zhenchai.json b/domains/zhenchai.json index eae1aca01..67d696439 100644 --- a/domains/zhenchai.json +++ b/domains/zhenchai.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "zhenchai00", - "email": "zhenchai0000@gmail.com" - }, - "record": { - "CNAME": "zhenchai00.github.io" - } - } - \ No newline at end of file +{ + "owner": { + "username": "zhenchai00", + "email": "zhenchai0000@gmail.com" + }, + "record": { + "CNAME": "zhenchai00.github.io" + } +} diff --git a/domains/zhiyao.json b/domains/zhiyao.json index e8f97e1f2..720e26bde 100644 --- a/domains/zhiyao.json +++ b/domains/zhiyao.json @@ -1,11 +1,11 @@ { - "description": "志遥(至尧)的个人博客", - "repo": "https://github.com/lizhiyao/lizhiyao.github.io", - "owner": { - "username": "lizhiyao", - "email": "dancerlzy@gmail.com" - }, - "record": { - "CNAME": "lizhiyao.github.io" - } -} + "description": "志遥(至尧)的个人博客", + "repo": "https://github.com/lizhiyao/lizhiyao.github.io", + "owner": { + "username": "lizhiyao", + "email": "dancerlzy@gmail.com" + }, + "record": { + "CNAME": "lizhiyao.github.io" + } +} diff --git a/domains/zhu.json b/domains/zhu.json new file mode 100644 index 000000000..7e1b5f027 --- /dev/null +++ b/domains/zhu.json @@ -0,0 +1,12 @@ +{ + "description": "A Jekyll site used for share my idears", + "repo": "https://github.com/azhu021/jekyll.github.io", + "owner": { + "username": "azhu021", + "email": "pub@azhu.site", + "twitter": "azhu021" + }, + "record": { + "CNAME": "azhu021.github.io" + } +} diff --git a/domains/zhycorp.json b/domains/zhycorp.json deleted file mode 100644 index 5d082b41c..000000000 --- a/domains/zhycorp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A simple non-static site for Zhycorp", - "repo": "https://github.com/zhycorp", - "owner": { - "username": "zhycorp", - "email": "support@zhycorp.xyz" - }, - "record": { - "CNAME": "rd73mzgq7jp59yq0.preview.edgeapp.net" - } -} diff --git a/domains/zick.json b/domains/zick.json new file mode 100644 index 000000000..1a5d68263 --- /dev/null +++ b/domains/zick.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "LucasZick", + "email": "lucasalexandrezick@gmail.com" + }, + "record": { + "A": ["144.22.193.227"], + "MX": [ + "mx.zoho.com", + "mx2.zoho.com", + "mx3.zoho.com" + ], + "TXT": [ + "v=spf1 include:zoho.com ~all", + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCdZp0j5EFJS+OJzSad09+rt4K73CiPfeNahs2qXKBdaRLSrELeRbh4m8dccFi81fAjtPXpU5EonVVj4fssytg06MJCJWbdb02NqwZGS3tm29maZV2UFBb0Fqj4uqNRy1LKynl37jA8XkshE0xyteyFvX3d9Ibf4n7W1VlDhF1HpwIDAQAB" + ] + } +} diff --git a/domains/ziko.json b/domains/ziko.json new file mode 100644 index 000000000..941c1e6bc --- /dev/null +++ b/domains/ziko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "zakaria-didah", + "email": "zakariadidah@gmail.com", + "discord": "788397929308225546" + }, + "record": { + "A": ["158.179.209.175"] + } +} diff --git a/domains/ziriksi.json b/domains/ziriksi.json new file mode 100644 index 000000000..79afd1e19 --- /dev/null +++ b/domains/ziriksi.json @@ -0,0 +1,12 @@ +{ + "description": "Ziriksi's website.", + "repo": "https://github.com/cloudcloudskies/coolziriksi.github.io", + "owner": { + "username": "cloudcloudskies", + "email": "cloudskies@perso.be", + "twitter": "cloudskies13" + }, + "record": { + "CNAME": "cloudcloudskies.github.io" + } +} diff --git a/domains/zishan.json b/domains/zishan.json deleted file mode 100644 index d49be3d94..000000000 --- a/domains/zishan.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "notzishan", - "discord": "LukeLy#8025", - "email": "rizwankhan28081979@gmail.com" - }, - "record": { - "CNAME": "542e524c-fe94-4ee5-b51a-7ef228234d95.id.repl.co" - } -} diff --git a/domains/ziyad.json b/domains/ziyad.json new file mode 100644 index 000000000..4937e4ace --- /dev/null +++ b/domains/ziyad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "o-lumix", + "email": "lumixofficiel@gmail.com" + }, + + "record": { + "CNAME": "o-lumix.github.io" + } +} diff --git a/domains/ziyn.json b/domains/ziyn.json new file mode 100644 index 000000000..de9454b43 --- /dev/null +++ b/domains/ziyn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ziyndev", + "email": "NotZiyn@gmail.com" + }, + "record": { + "CNAME": "ziyn.pages.dev" + } +} diff --git a/domains/zjfc.json b/domains/zjfc.json index 7d8a05948..1bbcdc5d8 100644 --- a/domains/zjfc.json +++ b/domains/zjfc.json @@ -1,11 +1,11 @@ { - "description": "GitHub Pages", - "repo": "https://github.com/Endermanbugzjfc/Endermanbugzjfc.github.io", - "owner": { - "username": "Endermanbugzjfc", - "email": "endermanbugzjfc@gmail.com" - }, - "record": { - "CNAME": "endermanbugzjfc.github.io" - } + "description": "GitHub Pages", + "repo": "https://github.com/Endermanbugzjfc/Endermanbugzjfc.github.io", + "owner": { + "username": "Endermanbugzjfc", + "email": "endermanbugzjfc@gmail.com" + }, + "record": { + "CNAME": "endermanbugzjfc.github.io" + } } diff --git a/domains/zk.json b/domains/zk.json new file mode 100644 index 000000000..dc7c9fa51 --- /dev/null +++ b/domains/zk.json @@ -0,0 +1,11 @@ +{ + "description": "ZK's Website", + "repo": "https://github.com/p55d2k", + "owner": { + "username": "p55d2k", + "email": "peanutandscuffy1@gmail.com" + }, + "record": { + "CNAME": "zk-website-cwo.pages.dev" + } +} diff --git a/domains/zkwinkle.json b/domains/zkwinkle.json new file mode 100644 index 000000000..524adf7d9 --- /dev/null +++ b/domains/zkwinkle.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zkwinkle", + "email": "ignaevc@gmail.com" + }, + "record": { + "A": ["198.74.54.85"] + } +} diff --git a/domains/zmail._domainkey.alora.json b/domains/zmail._domainkey.alora.json new file mode 100644 index 000000000..1d8f5e252 --- /dev/null +++ b/domains/zmail._domainkey.alora.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "aloramiaa", + "email": "alora@alora.is-a.dev", + "discord": "1236292707371057216" + }, + "record": { + "TXT": [ + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCpDj1YvQ59sHlGFLqD3vweqrGkr8cDp8CT5V+xBirlBb05D4V5YCvkIDgcDSu5O6yB28PXkzfWgvpGGPDIYQr1fW/zmoktXlwKE53cQv8aEfPmF8u9zucBLUqtFhb5WxBDfd4LSBaSbggLILD2/i8yP2TNQQO2F07IeVCoQFY12wIDAQAB" + ] + } +} diff --git a/domains/zmail._domainkey.chandsi.json b/domains/zmail._domainkey.chandsi.json new file mode 100644 index 000000000..e9ed3e91b --- /dev/null +++ b/domains/zmail._domainkey.chandsi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Gauravisdev", + "email": "", + "discord": "1119494339735867422", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QGI-jdpZpGtm5id_KBQnUjBud23siGGUxNcDIZlIJeFrkn5yoJnwzkEgvIeCMVJHfVc0s9-au_Ys2GaF7ho1BV0VMiZRec_CDLlXJloYACrJao6GZpgniHi7nEM_yo_ppea0qoSbHdkB78OVLFbdiMGXuQHAUgl93lyvQxpYncxmuoB45Lt4PHPeNI13oA_b2cl-4KJdWnIdZROHV70oiz0HeQtdT4-rOho4sXy_POgF-5U4cQPIRCv7Sn4vkwR5yues9ALzlmOxd6y2sq4oiGCnzfmoiPV9nOxs1y7GolnNQ-xEkMv_C2eLhmL7Dz2Ku0xfvHgqJ6D7GNpokYqwyQ.jmNMhGE5MROTfsXre5BEOQ.SKe9K2hsOV3DYE-UJQCaH46_tw41m_CXwao0xScbwgHIO0AWGaPsxhfrnON43gUmcCpEy9x5ZGYL27qiXB2YAGSJoQwWjamxtMDeySxCmvE.WEUQ4x98SHvxgv2HeQz0sw" + }, + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCF2Yx1xPXuy5EhlMEsj7hI0WrdcGdljE9U1dpwWaaQBDpPKlqljSUOhynejmAonmOs0XXZI6ULQ8bOMB9NVjX4SNErYgOYYmsTyj0TKZ0+8HsaksqO/8giBbANte1HSa7xQdjhV+pnzr5HbVWT2dJpuvhvyvRXEZNzB85USEuFeQIDAQAB" + } +} diff --git a/domains/zmail._domainkey.cyteon.json b/domains/zmail._domainkey.cyteon.json new file mode 100644 index 000000000..4f0f8cd9d --- /dev/null +++ b/domains/zmail._domainkey.cyteon.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "Cyteon", + "email": "", + "discord": "871722786006138960", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Q9RhtbUP-u9Q4KAp7lbLAVHYORrtuE70vWDcr_S9DFFixPK3glDOVM9gUHMBsQcv0W0jfXsURDrcN0orvGrTmpn30_CQUBL0XAoBYcL5zC7wBavaXAP6v8YHXQmThdsZknwCfsrlAHK5bjOQR_Hke7H89XUnvjONABGMGozVLrveJsjsRUDrxuxggPlcnMDbaOGwZNNHqz7npcmSPe_Kpd5D2xTUjknMcVn9TlgBf0IjO8EAI0UhJUISLjQdT61Fttes2LP9L_h8cyrkFCHcvrBBrQgc05ijPsp5Yb4DC_drzsoLG1WnWObLNNffOUtf-f_CjAA_edIo-6ZA-4nWkg.v45Ib0akIwdqLrzLUFLWVw.m8Ski3CnEUcpfG3Z_ZE4QeSMzmezHxmIv_fXV23LHHr6NehYWI6W_ei45EsfAS-T9c8feeFxDlFm4NP-JOna1kxiQDFwUkApRgJJm3TR8ZY.pFZ7T7Kzts1Y1wtOzXTpRQ" + }, + + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCs7X4KSEMP6dXlPwSETCh/il7XAIUiR7qIxgInLFC7+IFYIywbvhZ6eB12CfMc2BRQLYz63Zfkia9O7wbSe0q8A9kfxA9wLT6oaErohOYqqJizVHHyH/BmswsL3z7oYA06OzUeTY9rFXbetoTcoeXl2iSGHgmLIZpFK4mXzbJneQIDAQAB" + } + } + diff --git a/domains/zmail._domainkey.esb.json b/domains/zmail._domainkey.esb.json new file mode 100644 index 000000000..13fd79992 --- /dev/null +++ b/domains/zmail._domainkey.esb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EducatedsuddenBucket", + "email": "educatedsuddenbucket@gmail.com" + }, + "record": { + "TXT": [ + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCOCPIlvAEZxJibdx9OiUyJHoj63GUkBafTzg5XI4kfG7LFcONNdJwjxbOipmriktgDwyltEM4ZC1kw+Vf3mSYwIqtfuMmFZXBawYW9nU7KbNqH2xLZF+7z0SkHdyB0ODm78ouiQLdr6IPc+ZSjyZD0M3eOMlXnwsBrCzhM+itKowIDAQAB" + ] + } +} diff --git a/domains/zmail._domainkey.juststudio.json b/domains/zmail._domainkey.juststudio.json new file mode 100644 index 000000000..404cbe924 --- /dev/null +++ b/domains/zmail._domainkey.juststudio.json @@ -0,0 +1,11 @@ +{ + "description": "zoho mail for juststudio.is-a.dev domain", + "owner": { + "username": "JustDeveloper1", + "email": "support@juststudio.is-a.dev", + "discord": "1117482901353812088" + }, + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCjezgYOcTrOFw6uITe2KXiQ7MTEzCI76YKzGNPCeN7ttYlbZ/+KRg+iNPNcinf96ClHDhw7fooDSkmTnsCwXdK29gidrXFljATKEB3bilriDYTdtesd+kCHVS5XqUWHKfAdhFZpQcV97DwX1mzTb17JOi8R9HJ8KqJ00/+eir+EQIDAQAB" + } +} diff --git a/domains/zmail._domainkey.neca.json b/domains/zmail._domainkey.neca.json new file mode 100644 index 000000000..16151dea0 --- /dev/null +++ b/domains/zmail._domainkey.neca.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nekotamogas", + "email": "dazzerdev@gmail.com", + "discord": "797458672225091594" + }, + + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIHzsnS94jaMTbcflV4QMBR4P3YCgegw1NoV7t7rkElCnZ7LEJIWLMCMheXN+ipQUclpDZ8Lw6m8B7mm4tm8P79hTuM6rmhsqcQb8w/g3u6kUDhK/eq2QoDhUienbpKTsR4pZesu9yIW0DL5wYxHT2zpxQN7zO8+8b4IzFSPnmHQIDAQAB" + } + } diff --git a/domains/zmail._domainkey.sewt.json b/domains/zmail._domainkey.sewt.json new file mode 100644 index 000000000..98c7074f1 --- /dev/null +++ b/domains/zmail._domainkey.sewt.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "SkyExploreWasTaken", + "email": "", + "discord": "1049263707177353247", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg" + }, + "record": { + "TXT": [ + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCb62fTLbpIcDigh68ZI+8EZGMV2LzLtIKTxoRwHhpONIg7eyimcOoeIv2uwYuHrNTnlZvQleD+eolnYEvJA6TTogkgkcOKX8FmPQmrh/MKLW0t8GU257DvxPC2MoGJR592tVyAyod+xOweKvWREvD+9JM8cozWnkvH2inTbud4bQIDAQAB" + ] + } +} diff --git a/domains/zmail._domainkey.zumate.json b/domains/zmail._domainkey.zumate.json new file mode 100644 index 000000000..016f50610 --- /dev/null +++ b/domains/zmail._domainkey.zumate.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "userandaname", + "email": "", + "discord": "823939421686071386", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.reOdbyp6Plxic0IjF6RuL5lNhiMqzBWweBtnJ-Fpqduom7hhoabj7svWmeD5k0QxutV10NOtl_AlZbmxGOnLZGhZzg8p4Pa1uvOnq9iMrJybaxC36vNieiv0tHy5j8NbMkSUlHjaWOOtHaLMKj0gDVzz3A_QLZAkYusb1zbehSq7CamcojGG4_HZvabGE7OJhWjX1jsr1xp5YmGvRUsDEmKkcQmQFqvRwiDT8rqWd56o8OdqDzehXxRdHyBygYJuuHLGN3iTYeEUEAjj88c3tk1aZNrjStPZdVfxtHrMJCZ76Ny5R1NVOucJVlXQziy6P78lrKneqg5Wo26sietPtA.y3_0JbSixF-j9GIwRYdeqw.XkuJbAg67qp0AVL3ti1-ZTV4XHumSSqgRouDhip2qpv60pIy9cv4hBqtAl5V3W3Mjbo6UJjCKQ-j-xsGYic3xmW4_RQu_b7ezL9r9ykqILs.8XLHqBfk0A3VExJarQ8g8g" + }, + + "record": { + "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCThzWhBz8eg5c4bE11qwCi95FvVOoSVi+8N70lAA3TRwkxAvgiUkiOj39M+9hgIvQ/8v3+VCerHvDmShl+AxatGvM0vrEZ7ZTQx0nT6YGeCYgebmhAQKyhqnGOL6YmDGHr0MkosD5/ApW1yPjwL0PqbXtALG9vMTyaI7dtZLDBHwIDAQAB" + } + } + diff --git a/domains/zoey.json b/domains/zoey.json new file mode 100644 index 000000000..7c84a8835 --- /dev/null +++ b/domains/zoey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zoey2936", + "email": "zoey@z0ey.de" + }, + "record": { + "CNAME": "ip.z0ey.de" + } +} diff --git a/domains/zomb.json b/domains/zomb.json new file mode 100644 index 000000000..604b8a311 --- /dev/null +++ b/domains/zomb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eyesmad", + "email": "eagam0002@mymail.lausd.net" + }, + "record": { + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/zonghao.json b/domains/zonghao.json new file mode 100644 index 000000000..242e4dc46 --- /dev/null +++ b/domains/zonghao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ZHTang29", + "email": "e0725226@u.nus.edu" + }, + "record": { + "URL": "https://zonghao-portfolio.web.app/" + } +} diff --git a/domains/zoom.json b/domains/zoom.json new file mode 100644 index 000000000..20fad6138 --- /dev/null +++ b/domains/zoom.json @@ -0,0 +1,13 @@ +{ + "description": "A way of showing my github website", + "repo": "https://github.com/theoldzoom/theoldzoom.github.io", + "owner": { + "username": "theoldzoom", + "email": "theoldzoom@gmail.com", + "twitter": "theoldzoom", + "discord": "theoldzoom" + }, + "record": { + "CNAME": "theoldzoom.github.io" + } +} diff --git a/domains/zoosio.json b/domains/zoosio.json new file mode 100644 index 000000000..781af4488 --- /dev/null +++ b/domains/zoosio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "239626", + "email": "maz.nos@gmail.com", + "discord": "788741120364511242" + }, + + "record": { + "A": ["95.216.242.35"] + } +} diff --git a/domains/zorex.json b/domains/zorex.json new file mode 100644 index 000000000..a31ed12ba --- /dev/null +++ b/domains/zorex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "iksmfua", + "email": "realiksm@gmail.com", + "twitter": "WaleedthemodYT" + }, + "record": { + "A": ["34.111.179.208"], + "TXT": "replit-verify=73d19ce6-ad19-4956-a800-4e647b4b7cd4" + } +} diff --git a/domains/zoro.xen.json b/domains/zoro.xen.json deleted file mode 100644 index 9ca209ef4..000000000 --- a/domains/zoro.xen.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Backend API for t.me/roronoa_zoro_robot", - "owner": { - "username": "xenmods", - "email": "ilumomin04@gmail.com" - }, - "record": { - "CNAME": "b6c9cd01-6ea5-4c58-b942-4194bdb11578.cname.koyeb.app" - } -} diff --git a/domains/zplusfour.json b/domains/zplusfour.json index 8bef0a33a..4304e0846 100644 --- a/domains/zplusfour.json +++ b/domains/zplusfour.json @@ -1,12 +1,15 @@ { - "owner": { - "username": "zplusfour", - "email": "zgjoniur@gmail.com", - "discord": "zplusfour#0001" - }, + "owner": { + "username": "zplusfour", + "email": "zgjoniur@gmail.com", + "discord": "zplusfour#0001" + }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/zstg.json b/domains/zstg.json new file mode 100644 index 000000000..3cb52fbac --- /dev/null +++ b/domains/zstg.json @@ -0,0 +1,12 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/zstg/zstg.github.io", + "owner": { + "username": "zstg", + "email": "zestig@duck.com", + "twitter": "zstg" + }, + "record": { + "CNAME": "zstg.github.io" + } +} \ No newline at end of file diff --git a/domains/ztrdiamond.json b/domains/ztrdiamond.json new file mode 100644 index 000000000..f8c7fd9da --- /dev/null +++ b/domains/ztrdiamond.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ZTRdiamond", + "email": "rikosimon9@gmail.com" + }, + "record": { + "URL": "https://ztrdiamond.vercel.app/" + } +} diff --git a/domains/ztz.json b/domains/ztz.json deleted file mode 100644 index 4235e9fd8..000000000 --- a/domains/ztz.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "ZTzTopia", - "email": "zentay36@gmail.com" - }, - - "record": { - "A": ["34.173.97.174"] - } - } - diff --git a/domains/ztzt.json b/domains/ztzt.json new file mode 100644 index 000000000..e4bf8b108 --- /dev/null +++ b/domains/ztzt.json @@ -0,0 +1,12 @@ +{ + "description": "ztzt.is-a.dev", + "repo": "https://github.com/ztztmc/ztztmc.github.io", + "owner": { + "username": "ztztmc", + "email": "2timessharp@gmail.com", + "discord": "ztzt" + }, + "record": { + "CNAME": "ztztmc.github.io" + } +} diff --git a/domains/zuhaib.json b/domains/zuhaib.json index 87319d500..86d334d13 100644 --- a/domains/zuhaib.json +++ b/domains/zuhaib.json @@ -6,6 +6,6 @@ "email": "theshahzuhaib96@gmail.com" }, "record": { - "CNAME": "powrhouseofthecell.github.io" + "CNAME": "powrhouseofthecell.github.io" } } diff --git a/domains/zuhair.json b/domains/zuhair.json index 15be82753..e89431506 100644 --- a/domains/zuhair.json +++ b/domains/zuhair.json @@ -1,12 +1,10 @@ +{ + "owner": { + "username": "ZuhairTarif", + "email": "20-42115-1@student.aiub.edu" + }, - { - "owner": { - "username": "ZuhairTarif", - "email": "20-42115-1@student.aiub.edu" - }, - - "record": { - "CNAME": "ZuhairTarif.github.io" - } - } - \ No newline at end of file + "record": { + "CNAME": "ZuhairTarif.github.io" + } +} diff --git a/domains/zumate.json b/domains/zumate.json new file mode 100644 index 000000000..b53e656ba --- /dev/null +++ b/domains/zumate.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "userandaname", + "email": "", + "discord": "823939421686071386", + "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.reOdbyp6Plxic0IjF6RuL5lNhiMqzBWweBtnJ-Fpqduom7hhoabj7svWmeD5k0QxutV10NOtl_AlZbmxGOnLZGhZzg8p4Pa1uvOnq9iMrJybaxC36vNieiv0tHy5j8NbMkSUlHjaWOOtHaLMKj0gDVzz3A_QLZAkYusb1zbehSq7CamcojGG4_HZvabGE7OJhWjX1jsr1xp5YmGvRUsDEmKkcQmQFqvRwiDT8rqWd56o8OdqDzehXxRdHyBygYJuuHLGN3iTYeEUEAjj88c3tk1aZNrjStPZdVfxtHrMJCZ76Ny5R1NVOucJVlXQziy6P78lrKneqg5Wo26sietPtA.y3_0JbSixF-j9GIwRYdeqw.XkuJbAg67qp0AVL3ti1-ZTV4XHumSSqgRouDhip2qpv60pIy9cv4hBqtAl5V3W3Mjbo6UJjCKQ-j-xsGYic3xmW4_RQu_b7ezL9r9ykqILs.8XLHqBfk0A3VExJarQ8g8g" + }, + + "record": { + "TXT": ["zoho-verification=zb15561523.zmverify.zoho.com", "v=spf1 include:zohomail.com ~all"], + "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"] + } + } diff --git a/domains/zuntie.json b/domains/zuntie.json deleted file mode 100644 index ded7f6328..000000000 --- a/domains/zuntie.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "Zuntie", - "email": "ZuntieDev@gmail.com" - }, - "record": { - "CNAME": "zuntie.github.io" - } - } - \ No newline at end of file diff --git a/domains/zuygui.json b/domains/zuygui.json new file mode 100644 index 000000000..6172d552d --- /dev/null +++ b/domains/zuygui.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zuygui", + "email": "maxime@halbitte.fr" + }, + "record": { + "CNAME": "zuygui.github.io" + } +} diff --git a/domains/zvdxc.json b/domains/zvdxc.json new file mode 100644 index 000000000..2d357bd7c --- /dev/null +++ b/domains/zvdxc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zvdxc", + "email": "zvdxc11@gmail.com" + }, + "record": { + "CNAME": "mysite-e7j.pages.dev" + } +} diff --git a/domains/zwei.json b/domains/zwei.json new file mode 100644 index 000000000..02ad53c00 --- /dev/null +++ b/domains/zwei.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zwei", + "email": "post@zwei.de.eu.org" + }, + "record": { + "CNAME": "bestzwei.github.io" + } +} diff --git a/domains/zwyz.json b/domains/zwyz.json new file mode 100644 index 000000000..c1cba54d5 --- /dev/null +++ b/domains/zwyz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "madisonwirtanen", + "email": "isadev@imkk.uk" + }, + "record": { + "CNAME": "madisonwirtanen.github.io" + } +} diff --git a/domains/zxpau.json b/domains/zxpau.json new file mode 100644 index 000000000..2a24c1a70 --- /dev/null +++ b/domains/zxpau.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zxPau", + "email": "pauu123123123@gmail.com" + }, + "record": { + "CNAME": "zxpau.github.io" + } +} diff --git a/domains/zylo.json b/domains/zylo.json new file mode 100644 index 000000000..b26333371 --- /dev/null +++ b/domains/zylo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zylo23", + "email": "pyyupsk@proton.me" + }, + "description": "👋 Hello! I'm Zylo, a passionate developer with expertise in efficient web solutions. Explore my portfolio and contact me on GitHub.", + "repo": "https://github.com/Zylo23/personal-website", + "record": { + "CNAME": "zylo23.pages.dev" + } +} diff --git a/domains/zymi.json b/domains/zymi.json new file mode 100644 index 000000000..b78dcf38e --- /dev/null +++ b/domains/zymi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zyminotfound", + "email": "notzymi0@gmail.com" + }, + "record": { + "CNAME": "zyminotfound.github.io" + } +} diff --git a/domains/zync.kenny.json b/domains/zync.kenny.json new file mode 100644 index 000000000..a206964f4 --- /dev/null +++ b/domains/zync.kenny.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "KennySB-dev", + "email": "kennybugeja@gmail.com", + "discord": "kenny.sb", + "github_id": 75525014 + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/zyronixbot.mznking.json b/domains/zyronixbot.mznking.json new file mode 100644 index 000000000..287e887ed --- /dev/null +++ b/domains/zyronixbot.mznking.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mznking", + "email": "maazinking23@gmail.com" + }, + "record": { + "CNAME": "zyronixbot.onrender.com" + } +} diff --git a/domains/zyrouge.json b/domains/zyrouge.json index e980c87fd..cd4b99e23 100644 --- a/domains/zyrouge.json +++ b/domains/zyrouge.json @@ -5,6 +5,6 @@ "twitter": "_zyrouge_" }, "record": { - "CNAME": "zyrouge.github.io" + "URL": "https://zyrouge.me/" } } diff --git a/domains/zytre.json b/domains/zytre.json new file mode 100644 index 000000000..6b9848785 --- /dev/null +++ b/domains/zytre.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GGLVXD", + "email": "gglvmax@gmail.com", + "discord": "689774740893859840" + }, + + "record": { + "CNAME": "forum.gglvxd.eu.org" + } +} diff --git a/media/logo.svg b/media/logo.svg index 5cd981207..d3e0eb0d3 100644 --- a/media/logo.svg +++ b/media/logo.svg @@ -1 +1,46 @@ -.is-a.dev \ No newline at end of file + + + + + + + diff --git a/media/logo_circle.png b/media/logo_circle.png new file mode 100644 index 000000000..dae6ae51b Binary files /dev/null and b/media/logo_circle.png differ diff --git a/media/staff_logo.png b/media/staff_logo.png new file mode 100644 index 000000000..14f51a84a Binary files /dev/null and b/media/staff_logo.png differ diff --git a/package.json b/package.json index e79c3126e..ccc8dbd41 100644 --- a/package.json +++ b/package.json @@ -3,27 +3,20 @@ "version": "1.0.0", "description": "Register *.is-a.dev domains for free", "scripts": { - "test": "ENV=test jest", "lint": "eslint utils scripts domains --ext .json,.js", - "publish-records": "node ./scripts/register-domains.js", + "publish-records": "bun run -b ./scripts/register-domains.js", "dc": "docker-compose -p is-a-dev", - "dc:start": "yarn dc up", - "dc:shell": "yarn dc run dev /bin/bash" + "dc:start": "bun run dc up", + "dc:shell": "bun run dc run dev /bin/bash" }, "repository": { "type": "git", "url": "https://github.com/is-a-dev/register" }, - "keywords": [ - "subdomain" - ], "author": "Akshay Nair ", "license": "GPL-3.0", "dependencies": { - "dotenv": "^8.2.0", - "jest": "^26.4.2", - "node-fetch": "^2.6.1", - "qs": "^6.9.4", + "ip-regex": "^5.0.0", "ramda": "^0.27.1" }, "devDependencies": { diff --git a/scripts/action-utils.js b/scripts/action-utils.js index f4fde5761..38a33a420 100644 --- a/scripts/action-utils.js +++ b/scripts/action-utils.js @@ -1,8 +1,8 @@ module.exports = { - hasLabel: (context, label) => { - const pr = context.payload.pull_request || context.payload.issue; - const { labels = [] } = pr; + hasLabel: (context, label) => { + const pr = context.payload.pull_request || context.payload.issue; + const { labels = [] } = pr; - return !!labels.find(({ name }) => name === label); - }, + return !!labels.find(({ name }) => name === label); + }, }; diff --git a/scripts/certbot-auth.sh b/scripts/certbot-auth.sh new file mode 100755 index 000000000..6b4ee8bc7 --- /dev/null +++ b/scripts/certbot-auth.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +echo "$PWD"; + +echo "AUTH ::[$CERTBOT_VALIDATION]::[$CERTBOT_TOKEN]::[$CERTBOT_REMAINING_CHALLENGES]"; +echo "[$CERTBOT_DOMAIN]"; + +sleep 1; +./scripts/certbot.sh acme_txt "$CERTBOT_VALIDATION"; + +echo "Going to sleep for a few minutes..."; + +# TODO: Check if $CERTBOT_VALIDATION == $(./scripts/certbot.sh get-acme)? +sleep $((3*60)); + +./scripts/certbot.sh check; + diff --git a/scripts/certbot.sh b/scripts/certbot.sh index 3468e7395..ee84aa6d7 100755 --- a/scripts/certbot.sh +++ b/scripts/certbot.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -export ENV=production +export NODE_ENV=production DRY_RUN=0 if_dry_run() { [[ $DRY_RUN == 1 ]] && echo "$1" || echo "$2"; } @@ -13,13 +13,16 @@ generate_certificate() { --logs-dir $outdir/logs \ certonly \ --manual \ + --preferred-challenges=dns \ + --manual-auth-hook=./scripts/certbot-auth.sh \ -m 'phenax5@gmail.com' \ -d '*.is-a.dev,is-a.dev' \ + --agree-tos \ $(if_dry_run "--dry-run" ""); echo "+-----------------------------------------------+"; - echo "| Certificates output to: |"; - echo "| $outdir |"; + echo "| Certificate output: |"; + echo "|= $outdir"; echo "+-----------------------------------------------+"; } @@ -29,7 +32,7 @@ update_record() { local name="$3"; local address="$4"; local ttl=${5:-"1"}; - echo " + bun -e " const { domainService } = require('./utils/domain-service'); const { ENV, DOMAIN_DOMAIN } = require('./utils/constants'); const method = '$method'; @@ -54,52 +57,27 @@ update_record() { } main().catch(console.error); - " | node - + " } update_acme_txt_record() { update_record add TXT '_acme-challenge' "$1"; } -update_www_record() { - update_record remove CNAME 'www' "is-a-dev.github.io"; - sleep 1; - update_record add A 'www' "68.65.123.44"; -} - -upload_acme_file() { - local key="$1"; - local value="$2"; - echo " - const { cpanel } = require('./utils/lib/cpanel'); - const { ENV, DOMAIN_DOMAIN, DOMAIN_USER } = require('./utils/constants'); - - const file = { - dir: '/home/' + DOMAIN_USER + '/public_html/.well-known/acme-challenge', - file: '$key', - content: '$value', - }; - - console.log('Uploading acme validation file to', DOMAIN_DOMAIN, '(', ENV, ')...'); - cpanel.file.write(file).then(console.log).catch(console.error); - " | node -; -} - reset_acme() { - update_record remove A 'www' "68.65.123.44"; sleep 1; - update_record add CNAME 'www' "is-a-dev.github.io"; update_record remove TXT '_acme-challenge' ''; + update_record remove TXT '_acme-challenge' ''; + # update_record add CNAME 'www' "is-a-dev.github.io"; } +get_acme() { dig +noall +answer _acme-challenge.is-a.dev TXT | awk '{print $5}'; } + case "$1" in - check) - echo "TXT record:: $(dig +noall +answer _acme-challenge.is-a.dev TXT | awk '{print $5}')"; - ;; - config_www) update_www_record ;; - acme_txt) update_acme_txt_record "$2" ;; - acme_file) upload_acme_file "$2" "$3" ;; + check) echo "TXT record:: $(get_acme)" ;; + get-acme) get_acme ;; cert) generate_certificate ;; + acme_txt) update_acme_txt_record "$2" ;; reset) reset_acme ;; *) echo "Invalid command"; exit 1; ;; esac @@ -107,9 +85,6 @@ esac ### STEPS ### # Run ./scripts/certbot.sh cert -# Run ./scripts/certbot.sh acme_txt "" -# Run ./scripts/certbot.sh acme_file "" "" -# Run ./scripts/certbot.sh config_www # cp -r /tmp/is-a-dev-whatever /opt/app/code/is-a-dev-cert # Upload cert.pem and privkey.pem (from config/live/is-a.dev/) contents to SSL > Manage SSL Sites # Run ./scripts/certbot.sh reset diff --git a/scripts/migrate.js b/scripts/migrate.js deleted file mode 100644 index 7ae1c3daa..000000000 --- a/scripts/migrate.js +++ /dev/null @@ -1,30 +0,0 @@ -const fs = require('fs'); -const path = require('path'); -const R = require('ramda'); -const { DOMAINS_PATH } = require('../utils/constants'); - -const migrate = ([file, domain]) => [ - file, - { - ...domain, - record: file !== '@.json' && /\.is-a\.dev$/.test(domain.record.URL || '') - ? R.dissoc('URL', domain.record) - : domain.record, - } -]; - -const main = async () => { - const domains = await fs.promises.readdir(DOMAINS_PATH).then(R.map(async file => [ - file, - JSON.parse(await fs.promises.readFile(path.join(DOMAINS_PATH, file), 'utf-8')), - ])).then(ps => Promise.all(ps)); - - const newDomains = domains.map(migrate); - - await Promise.all(newDomains.map(([file, json]) => { - return fs.promises.writeFile(path.join(DOMAINS_PATH, file), JSON.stringify(json, null, 2)); - })); -}; - -main(); - diff --git a/scripts/register-domains.js b/scripts/register-domains.js index 370949af6..94bc02089 100644 --- a/scripts/register-domains.js +++ b/scripts/register-domains.js @@ -1,61 +1,76 @@ -const R = require('ramda'); -const { VALID_RECORD_TYPES, DOMAIN_HOST_IP, TTL, ENV } = require('../utils/constants'); -const { domainService: dc } = require('../utils/domain-service'); -const { getDomains: gd } = require('../utils/get-domain'); +const R = require("ramda"); +const { + VALID_RECORD_TYPES, + DOMAIN_HOST_IP, + TTL, + ENV, +} = require("../utils/constants"); +const { domainService: dc } = require("../utils/domain-service"); +const { getDomains: gd } = require("../utils/get-domain"); const getRecords = R.compose(R.toPairs, R.pick(VALID_RECORD_TYPES)); const address = (type, value) => { - if ('URL' === type) return `${value}`.replace(/\/$/g, ''); - if ('TXT' === type) return value; - return (type === 'CNAME' ? `${value}`.toLowerCase() : `${value}`).replace(/[/.]$/g, ''); + if ("URL" === type) return `${value}`.replace(/\/$/g, ""); + if ("TXT" === type) return value; + return (type === "CNAME" ? `${value}`.toLowerCase() : `${value}`).replace( + /[/.]$/g, + "", + ); }; -const toHostList = R.chain(data => { - // URL redirection must contain explicit A record - // Wildcard A record breaks when used with MX - // Ref: https://github.com/is-a-dev/register/issues/2365 - if (data.record.URL && data.record.MX) { - data.record.A = [ DOMAIN_HOST_IP ] - } +const toHostList = R.chain((data) => { + // URL redirection must contain explicit A record + // Wildcard A record breaks when used with MX + // Ref: https://github.com/is-a-dev/register/issues/2365 + if ((data.record.URL && data.record.MX) || data.name === "@") { + data.record.A = [DOMAIN_HOST_IP]; + } - const records = getRecords(data.record); + const records = getRecords(data.record); - return R.chain(([recordType, values]) => { - const valueList = Array.isArray(values) ? values : [values]; + return R.chain(([recordType, values]) => { + const valueList = Array.isArray(values) ? values : [values]; - return valueList.map((value, index) => ({ - name: data.name, - type: recordType, - address: address(recordType, value), - ttl: TTL, - ...(recordType === 'MX' ? { priority: index + 20 } : {}) - })) - }, records) + return valueList.map((value, index) => ({ + name: data.name, + type: recordType, + address: address(recordType, value), + ttl: TTL, + ...(recordType === "MX" ? { priority: index + 20 } : {}), + })); + }, records); }); -const registerDomains = async ({ domainService, getDomains, log = () => { } }) => { - const domains = await getDomains().then(toHostList); +const registerDomains = async ({ + domainService, + getDomains, + log = () => {}, +}) => { + const domains = await getDomains().then(toHostList); - if (domains.length === 0) - return Promise.reject(new Error('Nothing to register')); + if (domains.length === 0) + return Promise.reject(new Error("Nothing to register")); - log(`${domains.length} records found`); - return domainService.updateHosts(domains); + log(`${domains.length} records found`); + return domainService.updateHosts(domains); }; const main = async () => { - console.log(`Running in ${ENV} mode`); - const result = await registerDomains({ domainService: dc, getDomains: gd, log: console.log }); - console.log(result); + console.log(`Running in ${ENV} mode`); + const result = await registerDomains({ + domainService: dc, + getDomains: gd, + log: console.log, + }); + console.log(result); }; if (require.main === module) { - main().catch(e => { - console.error(e); - process.exit(1); - }); + main().catch((e) => { + console.error(e); + process.exit(1); + }); } else { - module.exports = { toHostList, registerDomains }; + module.exports = { toHostList, registerDomains }; } - diff --git a/scripts/reply.js b/scripts/reply.js index 233f56ed4..dd4df142d 100644 --- a/scripts/reply.js +++ b/scripts/reply.js @@ -1,4 +1,3 @@ - const getInstructions = () => ` The changes have been published!! It should reflect in less than 24 hours. @@ -35,16 +34,15 @@ Help me in my mission to keep this service alive forever by donating! `; module.exports = { - async instructions(context, github) { - const pr = context.payload.issue || context.payload.pull_request; - const { number } = pr; + async instructions(context, github) { + const pr = context.payload.issue || context.payload.pull_request; + const { number } = pr; - await github.issues.createComment({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: number, - body: getInstructions(), - }); - } + await github.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: number, + body: getInstructions(), + }); + }, }; - diff --git a/tests/cpanel.test.js b/tests/cpanel.test.js index d2fbd35a3..b2415f8b4 100644 --- a/tests/cpanel.test.js +++ b/tests/cpanel.test.js @@ -1,195 +1,210 @@ -const R = require('ramda'); -const { CpanelClient } = require('../utils/lib/cpanel'); +const R = require("ramda"); +const { CpanelClient } = require("../utils/lib/cpanel"); -const mockFetch = (expectRequest, decorate = R.identity) => (reqUrl, request) => { - expectRequest(reqUrl, request); - return Promise.resolve({ - json: async () => decorate(request), - }); -}; - -describe('Cpanel client', () => { - describe('fetchzonerecords', () => { - it('should make the correct request', async () => { - const fetch = mockFetch((url, request) => { - expect(url).toBe('https://example.com:2000/json-api/cpanel?customonly=1&domain=a.b&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2'); - expect(request).toEqual({ - headers: { - Authorization: 'cpanel boy:boybyebye', - }, - rejectUnauthorized: false, +const mockFetch = + (expectRequest, decorate = R.identity) => + (reqUrl, request) => { + expectRequest(reqUrl, request); + return Promise.resolve({ + json: async () => decorate(request), }); - }); + }; - const cpanel = CpanelClient({ - host: 'example.com', - port: 2000, - username: 'boy', - apiKey: 'boybyebye', - domain: 'a.b', - dependencies: { fetch }, - }); +describe("Cpanel client", () => { + describe("fetchzonerecords", () => { + it("should make the correct request", async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe( + "https://example.com:2000/json-api/cpanel?customonly=0&domain=a.b&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2", + ); + expect(request).toEqual({ + headers: { + Authorization: "cpanel boy:boybyebye", + }, + rejectUnauthorized: false, + }); + }); - await cpanel.zone.fetch(); + const cpanel = CpanelClient({ + host: "example.com", + port: 2000, + username: "boy", + apiKey: "boybyebye", + domain: "a.b", + dependencies: { fetch }, + }); + + await cpanel.zone.fetch(); + }); + + it("should make the correct request with query", async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe( + "https://example.com:2000/json-api/cpanel?customonly=0&domain=foobar.boeey&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2", + ); + expect(request).toEqual({ + headers: { + Authorization: "cpanel boy:boybyebye", + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: "example.com", + port: 2000, + username: "boy", + apiKey: "boybyebye", + domain: "a.b", + dependencies: { fetch }, + }); + + await cpanel.zone.fetch({ domain: "foobar.boeey" }); + }); }); - it('should make the correct request with query', async () => { - const fetch = mockFetch((url, request) => { - expect(url).toBe('https://example.com:2000/json-api/cpanel?customonly=1&domain=foobar.boeey&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2'); - expect(request).toEqual({ - headers: { - Authorization: 'cpanel boy:boybyebye', - }, - rejectUnauthorized: false, + describe("addzonerecord", () => { + it("should make the correct request", async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe( + "https://example.com:2000/json-api/cpanel?domain=a.b&name=googo&type=CNAME&cname=beey&ttl=2020&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=add_zone_record&cpanel_jsonapi_apiversion=2", + ); + expect(request).toEqual({ + headers: { + Authorization: "cpanel boy:boybyebye", + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: "example.com", + port: 2000, + username: "boy", + apiKey: "boybyebye", + domain: "a.b", + dependencies: { fetch }, + }); + + await cpanel.zone.add({ + name: "googo", + type: "boyee", + cname: "beey", + type: "CNAME", + ttl: 2020, + }); }); - }); - - const cpanel = CpanelClient({ - host: 'example.com', - port: 2000, - username: 'boy', - apiKey: 'boybyebye', - domain: 'a.b', - dependencies: { fetch }, - }); - - await cpanel.zone.fetch({ domain: 'foobar.boeey' }); }); - }); - describe('addzonerecord', () => { - it('should make the correct request', async () => { - const fetch = mockFetch((url, request) => { - expect(url).toBe('https://example.com:2000/json-api/cpanel?domain=a.b&name=googo&type=CNAME&cname=beey&ttl=2020&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=add_zone_record&cpanel_jsonapi_apiversion=2'); - expect(request).toEqual({ - headers: { - Authorization: 'cpanel boy:boybyebye', - }, - rejectUnauthorized: false, + describe("addzonerecord", () => { + it("should make the correct request", async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe( + "https://example.com:2000/json-api/cpanel?domain=a.b&line=500&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=remove_zone_record&cpanel_jsonapi_apiversion=2", + ); + expect(request).toEqual({ + headers: { + Authorization: "cpanel boy:boybyebye", + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: "example.com", + port: 2000, + username: "boy", + apiKey: "boybyebye", + domain: "a.b", + dependencies: { fetch }, + }); + + await cpanel.zone.remove({ + line: 500, + }); }); - }); - - const cpanel = CpanelClient({ - host: 'example.com', - port: 2000, - username: 'boy', - apiKey: 'boybyebye', - domain: 'a.b', - dependencies: { fetch }, - }); - - await cpanel.zone.add({ - name: 'googo', - type: 'boyee', - cname: 'beey', - type: 'CNAME', - ttl: 2020, - }); }); - }); - describe('addzonerecord', () => { - it('should make the correct request', async () => { - const fetch = mockFetch((url, request) => { - expect(url).toBe('https://example.com:2000/json-api/cpanel?domain=a.b&line=500&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=remove_zone_record&cpanel_jsonapi_apiversion=2'); - expect(request).toEqual({ - headers: { - Authorization: 'cpanel boy:boybyebye', - }, - rejectUnauthorized: false, + describe("fetchredirections", () => { + it("should make the correct request", async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe( + "https://example.com:2000/execute/Mime/list_redirects?cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=list_redirects&cpanel_jsonapi_apiversion=2", + ); + expect(request).toEqual({ + headers: { + Authorization: "cpanel boy:boybyebye", + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: "example.com", + port: 2000, + username: "boy", + apiKey: "boybyebye", + domain: "a.b", + dependencies: { fetch }, + }); + + await cpanel.redirection.fetch(); }); - }); - - const cpanel = CpanelClient({ - host: 'example.com', - port: 2000, - username: 'boy', - apiKey: 'boybyebye', - domain: 'a.b', - dependencies: { fetch }, - }); - - await cpanel.zone.remove({ - line: 500, - }); }); - }); + describe("addredirection", () => { + it("should make the correct request", async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe( + "https://example.com:2000/execute/Mime/add_redirect?domain=googo&destination=https%3A%2F%2Foodf.com&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=add_redirect&cpanel_jsonapi_apiversion=2", + ); + expect(request).toEqual({ + headers: { + Authorization: "cpanel boy:boybyebye", + }, + rejectUnauthorized: false, + }); + }); - describe('fetchredirections', () => { - it('should make the correct request', async () => { - const fetch = mockFetch((url, request) => { - expect(url).toBe('https://example.com:2000/execute/Mime/list_redirects?cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=list_redirects&cpanel_jsonapi_apiversion=2'); - expect(request).toEqual({ - headers: { - Authorization: 'cpanel boy:boybyebye', - }, - rejectUnauthorized: false, + const cpanel = CpanelClient({ + host: "example.com", + port: 2000, + username: "boy", + apiKey: "boybyebye", + domain: "a.b", + dependencies: { fetch }, + }); + + await cpanel.redirection.add({ + domain: "googo", + destination: "https://oodf.com", + }); }); - }); - - const cpanel = CpanelClient({ - host: 'example.com', - port: 2000, - username: 'boy', - apiKey: 'boybyebye', - domain: 'a.b', - dependencies: { fetch }, - }); - - await cpanel.redirection.fetch(); }); - }); - describe('addredirection', () => { - it('should make the correct request', async () => { - const fetch = mockFetch((url, request) => { - expect(url).toBe('https://example.com:2000/execute/Mime/add_redirect?domain=googo&destination=https%3A%2F%2Foodf.com&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=add_redirect&cpanel_jsonapi_apiversion=2'); - expect(request).toEqual({ - headers: { - Authorization: 'cpanel boy:boybyebye', - }, - rejectUnauthorized: false, + + describe("deleteredirection", () => { + it("should make the correct request", async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe( + "https://example.com:2000/execute/Mime/delete_redirect?domain=googo&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=delete_redirect&cpanel_jsonapi_apiversion=2", + ); + expect(request).toEqual({ + headers: { + Authorization: "cpanel boy:boybyebye", + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: "example.com", + port: 2000, + username: "boy", + apiKey: "boybyebye", + domain: "a.b", + dependencies: { fetch }, + }); + + await cpanel.redirection.remove({ domain: "googo" }); }); - }); - - const cpanel = CpanelClient({ - host: 'example.com', - port: 2000, - username: 'boy', - apiKey: 'boybyebye', - domain: 'a.b', - dependencies: { fetch }, - }); - - await cpanel.redirection.add({ - domain: 'googo', - destination: 'https://oodf.com' - }); }); - }); - - describe('deleteredirection', () => { - it('should make the correct request', async () => { - const fetch = mockFetch((url, request) => { - expect(url).toBe('https://example.com:2000/execute/Mime/delete_redirect?domain=googo&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=delete_redirect&cpanel_jsonapi_apiversion=2'); - expect(request).toEqual({ - headers: { - Authorization: 'cpanel boy:boybyebye', - }, - rejectUnauthorized: false, - }); - }); - - const cpanel = CpanelClient({ - host: 'example.com', - port: 2000, - username: 'boy', - apiKey: 'boybyebye', - domain: 'a.b', - dependencies: { fetch }, - }); - - await cpanel.redirection.remove({ domain: 'googo' }); - }); - }); }); - diff --git a/tests/domain-service.test.js b/tests/domain-service.test.js index 166712596..dfd6400ed 100644 --- a/tests/domain-service.test.js +++ b/tests/domain-service.test.js @@ -1,338 +1,421 @@ -const R = require('ramda'); -const { getDomainService, diffRecords } = require('../utils/domain-service'); -const { DOMAIN_DOMAIN } = require('../utils/constants'); +const R = require("ramda"); +const { getDomainService, diffRecords } = require("../utils/domain-service"); +const { DOMAIN_DOMAIN } = require("../utils/constants"); -const getCpanel = ({ zone, addZone, removeZone, redir, addRedir, removeRedir, addEmail, removeEmail } = {}) => ({ - zone: { - fetch: (_) => zone(), - add: (rec) => addZone(rec), - remove: (rec) => removeZone(rec), - }, - redirection: { - fetch: (_) => redir(), - add: (rec) => addRedir(rec), - remove: (rec) => removeRedir(rec), - }, - email: { - add: (rec) => addEmail(rec), - remove: (rec) => removeEmail(rec), - }, +const getCpanel = ({ + zone, + addZone, + removeZone, + redir, + addRedir, + removeRedir, + addEmail, + removeEmail, +} = {}) => ({ + zone: { + fetch: (_) => zone(), + add: (rec) => addZone(rec), + remove: (rec) => removeZone(rec), + }, + redirection: { + fetch: (_) => redir(), + add: (rec) => addRedir(rec), + remove: (rec) => removeRedir(rec), + }, + email: { + add: (rec) => addEmail(rec), + remove: (rec) => removeEmail(rec), + }, }); -describe('diffRecords', () => { - it('should show added record', () => { - const oldRecords = [ - { name: 'xx', type: 'CNAME', address: 'fck.com.' }, - { name: 'xa', type: 'A', address: '111.1.1212.1' }, - ]; - const newRecords = [ - { name: 'xx', type: 'CNAME', address: 'fck.com.' }, - { name: 'xa', type: 'A', address: '111.1.1212.1' }, - { name: 'boo', type: 'CNAME', address: 'x.com' }, - ]; +describe("diffRecords", () => { + it("should show added record", () => { + const oldRecords = [ + { name: "xx", type: "CNAME", address: "fck.com." }, + { name: "xa", type: "A", address: "111.1.1212.1" }, + ]; + const newRecords = [ + { name: "xx", type: "CNAME", address: "fck.com." }, + { name: "xa", type: "A", address: "111.1.1212.1" }, + { name: "boo", type: "CNAME", address: "x.com" }, + ]; - const result = diffRecords(oldRecords, newRecords); - expect(result).toEqual({ - remove: [], - add: [ - { name: 'boo', type: 'CNAME', address: 'x.com' }, - ], + const result = diffRecords(oldRecords, newRecords); + expect(result).toEqual({ + remove: [], + add: [{ name: "boo", type: "CNAME", address: "x.com" }], + }); }); - }); - it('should show edited records', () => { - const oldRecords = [ - { name: 'xx', type: 'CNAME', address: 'fck.com.' }, - { name: 'xa', type: 'A', address: '111.1.1212.1' }, - ]; - const newRecords = [ - { name: 'xx', type: 'CNAME', address: 'fck.com.' }, - { name: 'xa', type: 'A', address: '69.69.69.69' }, - ]; + it("should show edited records", () => { + const oldRecords = [ + { name: "xx", type: "CNAME", address: "fck.com." }, + { name: "xa", type: "A", address: "111.1.1212.1" }, + ]; + const newRecords = [ + { name: "xx", type: "CNAME", address: "fck.com." }, + { name: "xa", type: "A", address: "69.69.69.69" }, + ]; - const result = diffRecords(oldRecords, newRecords); - expect(result).toEqual({ - remove: [ - { name: 'xa', type: 'A', address: '111.1.1212.1' }, - ], - add: [ - { name: 'xa', type: 'A', address: '69.69.69.69' }, - ], + const result = diffRecords(oldRecords, newRecords); + expect(result).toEqual({ + remove: [{ name: "xa", type: "A", address: "111.1.1212.1" }], + add: [{ name: "xa", type: "A", address: "69.69.69.69" }], + }); }); - }); - it('should show added records with the same name and record type', () => { - const oldRecords = [ - { name: 'xx', type: 'CNAME', address: 'fck.com.' }, - { name: 'xa', type: 'A', address: '69.69.69.69' }, - ]; - const newRecords = [ - { name: 'xx', type: 'CNAME', address: 'fck.com.' }, - { name: 'xa', type: 'A', address: '69.69.69.69' }, - { name: 'xa', type: 'A', address: '69.69.4.20' }, - ]; + it("should show added records with the same name and record type", () => { + const oldRecords = [ + { name: "xx", type: "CNAME", address: "fck.com." }, + { name: "xa", type: "A", address: "69.69.69.69" }, + ]; + const newRecords = [ + { name: "xx", type: "CNAME", address: "fck.com." }, + { name: "xa", type: "A", address: "69.69.69.69" }, + { name: "xa", type: "A", address: "69.69.4.20" }, + ]; - const result = diffRecords(oldRecords, newRecords); - expect(result).toEqual({ - remove: [], - add: [ - { name: 'xa', type: 'A', address: '69.69.4.20' }, - ], + const result = diffRecords(oldRecords, newRecords); + expect(result).toEqual({ + remove: [], + add: [{ name: "xa", type: "A", address: "69.69.4.20" }], + }); }); - }); - it('should diff complex changes', () => { - const oldRecords = [ - { name: 'a', type: 'CNAME', address: 'fck.com.' }, - { name: 'b', type: 'A', address: '69.69.69.69' }, - { name: '111', type: 'CNAME', address: 'x' }, - { name: 'd', type: 'A', address: '69.69.4.20' }, - ]; - const newRecords = [ - { name: '111', type: 'CNAME', address: 'x' }, - { name: 'd', type: 'CNAME', address: 'duck.com' }, - { name: 'a', type: 'CNAME', address: 'og.com' }, - { name: 'b', type: 'A', address: '69.69.69.69' }, - { name: 'b', type: 'A', address: '69.69.4.20' }, - { name: 'c', type: 'CNAME', address: 'ccc.cc' }, - ]; + it("should diff complex changes", () => { + const oldRecords = [ + { name: "a", type: "CNAME", address: "fck.com." }, + { name: "b", type: "A", address: "69.69.69.69" }, + { name: "111", type: "CNAME", address: "x" }, + { name: "d", type: "A", address: "69.69.4.20" }, + ]; + const newRecords = [ + { name: "111", type: "CNAME", address: "x" }, + { name: "d", type: "CNAME", address: "duck.com" }, + { name: "a", type: "CNAME", address: "og.com" }, + { name: "b", type: "A", address: "69.69.69.69" }, + { name: "b", type: "A", address: "69.69.4.20" }, + { name: "c", type: "CNAME", address: "ccc.cc" }, + ]; - const result = diffRecords(oldRecords, newRecords); - expect(result).toEqual({ - remove: [ - { name: 'a', type: 'CNAME', address: 'fck.com.' }, - { name: 'd', type: 'A', address: '69.69.4.20' }, - ], - add: [ - { name: 'd', type: 'CNAME', address: 'duck.com' }, - { name: 'a', type: 'CNAME', address: 'og.com' }, - { name: 'b', type: 'A', address: '69.69.4.20' }, - { name: 'c', type: 'CNAME', address: 'ccc.cc' }, - ], + const result = diffRecords(oldRecords, newRecords); + expect(result).toEqual({ + remove: [ + { name: "a", type: "CNAME", address: "fck.com." }, + { name: "d", type: "A", address: "69.69.4.20" }, + ], + add: [ + { name: "d", type: "CNAME", address: "duck.com" }, + { name: "a", type: "CNAME", address: "og.com" }, + { name: "b", type: "A", address: "69.69.4.20" }, + { name: "c", type: "CNAME", address: "ccc.cc" }, + ], + }); }); - }); }); -describe('Domain service', () => { - const addZone = jest.fn(async () => ({})); - const removeZone = jest.fn(async () => ({})); - const addRedir = jest.fn(async () => ({})); - const removeRedir = jest.fn(async () => ({})); - const addEmail = jest.fn(async () => ({})); - const removeEmail = jest.fn(async () => ({})); +describe("Domain service", () => { + const addZone = jest.fn(async () => ({})); + const removeZone = jest.fn(async () => ({})); + const addRedir = jest.fn(async () => ({})); + const removeRedir = jest.fn(async () => ({})); + const addEmail = jest.fn(async () => ({})); + const removeEmail = jest.fn(async () => ({})); - const mockDS = ({ zones, redirections }) => getDomainService({ - cpanel: getCpanel({ - zone: async () => zones, - redir: async () => redirections, - addZone, - addEmail, - addRedir, - removeZone, - removeRedir, - removeEmail, - }) - }); + const mockDS = ({ zones, redirections }) => + getDomainService({ + cpanel: getCpanel({ + zone: async () => zones, + redir: async () => redirections, + addZone, + addEmail, + addRedir, + removeZone, + removeRedir, + removeEmail, + }), + }); - const getRecordCalls = recfn => recfn.mock.calls - .map(R.head) - .map(R.pick(['name', 'type', 'address', 'redirect', 'domain', 'line', 'priority', 'exchanger'])); + const getRecordCalls = (recfn) => + recfn.mock.calls + .map(R.head) + .map( + R.pick([ + "name", + "type", + "address", + "redirect", + "domain", + "line", + "priority", + "exchanger", + ]), + ); - beforeEach(() => { - addZone.mockClear(); - removeZone.mockClear(); - addRedir.mockClear(); - removeRedir.mockClear(); - addEmail.mockClear(); - removeEmail.mockClear(); - }); - - describe('getHosts', () => { - it('should resolve with a list of hosts', async () => { - const zones = [ - { name: 'xx', type: 'CNAME', address: 'fck.com.' }, - { name: 'xx', type: 'A', address: '111.1.1212.1' }, - ]; - const redirections = []; - const zone = async () => zones; - const redir = async () => redirections; - const mockDomainService = getDomainService({ cpanel: getCpanel({ zone, redir }) }); - const list = await mockDomainService.getHosts(); - - expect(list).toEqual([ - { name: 'xx', type: 'CNAME', address: 'fck.com' }, - { name: 'xx', type: 'A', address: '111.1.1212.1' }, - ]); + beforeEach(() => { + addZone.mockClear(); + removeZone.mockClear(); + addRedir.mockClear(); + removeRedir.mockClear(); + addEmail.mockClear(); + removeEmail.mockClear(); }); - it('should resolve with a redirections', async () => { - const zones = [ - { line: '111', name: 'xx', type: 'CNAME', address: 'fck.com.' }, - { line: '112', name: 'xx', type: 'A', address: '111.1.1212.1' }, - ]; - const redirections = [ - { domain: 'foo.booboo.xyz', destination: 'https://google.com' }, - { domain: 'foo1.booboo.xyz', destination: 'https://duck.com' }, - ]; - const zone = async () => zones; - const redir = async () => redirections; - const mockDomainService = getDomainService({ cpanel: getCpanel({ zone, redir }) }); - const list = await mockDomainService.getHosts(); + describe("getHosts", () => { + it("should resolve with a list of hosts", async () => { + const zones = [ + { name: "xx", type: "CNAME", address: "fck.com." }, + { name: "xx", type: "A", address: "111.1.1212.1" }, + ]; + const redirections = []; + const zone = async () => zones; + const redir = async () => redirections; + const mockDomainService = getDomainService({ + cpanel: getCpanel({ zone, redir }), + }); + const list = await mockDomainService.getHosts(); - expect(list).toEqual([ - { id: '111', name: 'xx', type: 'CNAME', address: 'fck.com' }, - { id: '112', name: 'xx', type: 'A', address: '111.1.1212.1' }, - { id: `foo.${DOMAIN_DOMAIN}`, name: 'foo', type: 'URL', address: 'https://google.com' }, - { id: `foo1.${DOMAIN_DOMAIN}`, name: 'foo1', type: 'URL', address: 'https://duck.com' }, - ]); - }); - }); + expect(list).toEqual([ + { name: "xx", type: "CNAME", address: "fck.com" }, + { name: "xx", type: "A", address: "111.1.1212.1" }, + ]); + }); - describe('updateHosts', () => { - it('should append new hosts with existing ones and set it', async () => { - const zones = [ - { line: 1, name: 'a', type: 'CNAME', address: 'boo' }, - { line: 2, name: 'b', type: 'CNAME', address: 'goo' }, - ]; - const redirections = []; + it("should resolve with a redirections", async () => { + const zones = [ + { line: "111", name: "xx", type: "CNAME", address: "fck.com." }, + { line: "112", name: "xx", type: "A", address: "111.1.1212.1" }, + ]; + const redirections = [ + { domain: "foo.booboo.xyz", destination: "https://google.com" }, + { domain: "foo1.booboo.xyz", destination: "https://duck.com" }, + ]; + const zone = async () => zones; + const redir = async () => redirections; + const mockDomainService = getDomainService({ + cpanel: getCpanel({ zone, redir }), + }); + const list = await mockDomainService.getHosts(); - const mockDomainService = mockDS({ zones, redirections }); - await mockDomainService.updateHosts([ - { name: 'a', type: 'CNAME', address: 'boo' }, - { name: 'b', type: 'CNAME', address: 'goo' }, - { name: 'c', type: 'A', address: '12.131321.213' }, - { name: 'c', type: 'MX', address: 'foobar.com', priority: 2 }, - ]); - - expect(addZone).toBeCalledTimes(1); - expect(getRecordCalls(addZone)).toEqual([ - { name: 'c', type: 'A', address: '12.131321.213' }, - ]); - - expect(addEmail).toBeCalledTimes(1); - expect(getRecordCalls(addEmail)).toEqual([ - { domain: 'c.is-a.dev', exchanger: 'foobar.com', priority: 2 }, - ]); - - expect(removeZone).toBeCalledTimes(0); - expect(removeEmail).toBeCalledTimes(0); + expect(list).toEqual([ + { id: "111", name: "xx", type: "CNAME", address: "fck.com" }, + { id: "112", name: "xx", type: "A", address: "111.1.1212.1" }, + { + id: `foo.${DOMAIN_DOMAIN}`, + name: "foo", + type: "URL", + address: "https://google.com", + }, + { + id: `foo1.${DOMAIN_DOMAIN}`, + name: "foo1", + type: "URL", + address: "https://duck.com", + }, + ]); + }); }); - it('should update matching host and set it', async () => { - const zones = [ - { line: 1, name: 'a', type: 'CNAME', address: 'boo' }, - { line: 2, name: 'b', type: 'CNAME', address: 'goo' }, - ]; - const redirections = []; + describe("updateHosts", () => { + it("should append new hosts with existing ones and set it", async () => { + const zones = [ + { line: 1, name: "a", type: "CNAME", address: "boo" }, + { line: 2, name: "b", type: "CNAME", address: "goo" }, + ]; + const redirections = []; - const mockDomainService = mockDS({ zones, redirections }); - await mockDomainService.updateHosts([ - { name: 'a', type: 'CNAME', address: 'boo' }, - { name: 'b', type: 'CNAME', address: 'googoogaga' }, - ]); + const mockDomainService = mockDS({ zones, redirections }); + await mockDomainService.updateHosts([ + { name: "a", type: "CNAME", address: "boo" }, + { name: "b", type: "CNAME", address: "goo" }, + { name: "c", type: "A", address: "12.131321.213" }, + { name: "c", type: "MX", address: "foobar.com", priority: 2 }, + ]); - expect(addZone).toBeCalledTimes(1); - expect(getRecordCalls(addZone)).toEqual([ - { name: 'b', type: 'CNAME', address: 'googoogaga' }, - ]); - expect(removeZone).toBeCalledTimes(1); - expect(getRecordCalls(removeZone)).toEqual([ - { line: 2 }, - ]); + expect(addZone).toHaveBeenCalledTimes(1); + expect(getRecordCalls(addZone)).toEqual([ + { name: "c", type: "A", address: "12.131321.213" }, + ]); + + expect(addEmail).toHaveBeenCalledTimes(1); + expect(getRecordCalls(addEmail)).toEqual([ + { domain: "c.is-a.dev", exchanger: "foobar.com", priority: 2 }, + ]); + + expect(removeZone).toHaveBeenCalledTimes(0); + expect(removeEmail).toHaveBeenCalledTimes(0); + }); + + it("should update matching host and set it", async () => { + const zones = [ + { line: 1, name: "a", type: "CNAME", address: "boo" }, + { line: 2, name: "b", type: "CNAME", address: "goo" }, + ]; + const redirections = []; + + const mockDomainService = mockDS({ zones, redirections }); + await mockDomainService.updateHosts([ + { name: "a", type: "CNAME", address: "boo" }, + { name: "b", type: "CNAME", address: "googoogaga" }, + ]); + + expect(addZone).toHaveBeenCalledTimes(1); + expect(getRecordCalls(addZone)).toEqual([ + { name: "b", type: "CNAME", address: "googoogaga" }, + ]); + expect(removeZone).toHaveBeenCalledTimes(1); + expect(getRecordCalls(removeZone)).toEqual([{ line: 2 }]); + }); + + it("should update matching host and set it", async () => { + const zones = [ + { line: 1, name: "a", type: "CNAME", address: "boo" }, + { line: 2, name: "b", type: "CNAME", address: "goo" }, + { line: 3, name: "b", type: "CNAME", address: "xaa" }, + ]; + const redirections = []; + + const mockDomainService = mockDS({ zones, redirections }); + await mockDomainService.updateHosts([ + { name: "a", type: "CNAME", address: "boo" }, + { name: "b", type: "CNAME", address: "googoogaga" }, + { name: "b", type: "CNAME", address: "farboo" }, + ]); + + expect(addZone).toHaveBeenCalledTimes(2); + expect(getRecordCalls(addZone)).toEqual([ + { name: "b", type: "CNAME", address: "googoogaga" }, + { name: "b", type: "CNAME", address: "farboo" }, + ]); + expect(removeZone).toHaveBeenCalledTimes(2); + expect(getRecordCalls(removeZone)).toEqual([ + { line: 3 }, + { line: 2 }, + ]); + }); + + it("should workout this complex example", async () => { + const zones = [ + { line: 1, name: "a", type: "CNAME", address: "world" }, + { line: 2, name: "b", type: "A", address: "1" }, + { line: 3, name: "b", type: "A", address: "2" }, + { line: 4, name: "c", type: "CNAME", address: "hello.com" }, + { + line: 5, + name: "c", + type: "MX", + address: "mx1.hello.com", + priority: 20, + }, + { + line: 6, + name: "c", + type: "MX", + address: "mx2.hello.com", + priority: 21, + }, + { + line: 7, + name: "b", + type: "MX", + address: "foo.bar", + priority: 20, + }, + { line: 101, name: "x", type: "A", address: "1" }, + { line: 99, name: "y", type: "A", address: "2" }, + { line: 100, name: "z", type: "A", address: "3" }, + ]; + const redirections = [ + { + domain: `b.${DOMAIN_DOMAIN}`, + destination: "https://foobar.com", + }, + { + domain: `c.${DOMAIN_DOMAIN}`, + destination: "https://goobar.com", + }, + { + domain: `x.${DOMAIN_DOMAIN}`, + destination: "https://example.com", + }, + ]; + + const mockDomainService = mockDS({ zones, redirections }); + await mockDomainService.updateHosts([ + { name: "a", type: "CNAME", address: "boo" }, + { name: "b", type: "A", address: "1" }, + { name: "b", type: "A", address: "2" }, + { name: "b", type: "A", address: "3" }, + { name: "b", type: "URL", address: "https://wowow.com" }, + { name: "c", type: "CNAME", address: "hello.com" }, + { name: "c", type: "URL", address: "https://goobar.com" }, + { name: "d", type: "CNAME", address: "helo.com" }, + { name: "d", type: "URL", address: "https://hhh.com" }, + { name: "x", type: "URL", address: "https://example69.com" }, + { + name: "c", + type: "MX", + address: "mx2.hello.com", + priority: 21, + }, + { name: "a", type: "MX", address: "example.com", priority: 20 }, + ]); + + expect(addZone).toHaveBeenCalledTimes(3); + expect(getRecordCalls(addZone)).toEqual([ + { name: "a", type: "CNAME", address: "boo" }, + { name: "b", type: "A", address: "3" }, + { name: "d", type: "CNAME", address: "helo.com" }, + ]); + expect(removeZone).toHaveBeenCalledTimes(4); + expect(getRecordCalls(removeZone)).toEqual([ + { line: 101 }, + { line: 100 }, + { line: 99 }, + { line: 1 }, + ]); + + expect(addEmail).toHaveBeenCalledTimes(1); + expect(getRecordCalls(addEmail)).toEqual([ + { + domain: "a.is-a.dev", + exchanger: "example.com", + priority: 20, + }, + ]); + expect(removeEmail).toHaveBeenCalledTimes(2); + expect(getRecordCalls(removeEmail)).toEqual([ + { domain: "b.is-a.dev", exchanger: "foo.bar", priority: 20 }, + { + domain: "c.is-a.dev", + exchanger: "mx1.hello.com", + priority: 20, + }, + ]); + + expect(addRedir).toHaveBeenCalledTimes(3); + expect(getRecordCalls(addRedir)).toEqual([ + { + domain: `b.${DOMAIN_DOMAIN}`, + type: "permanent", + redirect: "https://wowow.com", + }, + { + domain: `d.${DOMAIN_DOMAIN}`, + type: "permanent", + redirect: "https://hhh.com", + }, + { + domain: `x.${DOMAIN_DOMAIN}`, + type: "permanent", + redirect: "https://example69.com", + }, + ]); + expect(removeRedir).toHaveBeenCalledTimes(2); + expect(getRecordCalls(removeRedir)).toEqual([ + { domain: `b.${DOMAIN_DOMAIN}` }, + { domain: `x.${DOMAIN_DOMAIN}` }, + ]); + }); }); - - it('should update matching host and set it', async () => { - const zones = [ - { line: 1, name: 'a', type: 'CNAME', address: 'boo' }, - { line: 2, name: 'b', type: 'CNAME', address: 'goo' }, - { line: 3, name: 'b', type: 'CNAME', address: 'xaa' }, - ]; - const redirections = []; - - const mockDomainService = mockDS({ zones, redirections }); - await mockDomainService.updateHosts([ - { name: 'a', type: 'CNAME', address: 'boo' }, - { name: 'b', type: 'CNAME', address: 'googoogaga' }, - { name: 'b', type: 'CNAME', address: 'farboo' }, - ]); - - expect(addZone).toBeCalledTimes(2); - expect(getRecordCalls(addZone)).toEqual([ - { name: 'b', type: 'CNAME', address: 'googoogaga' }, - { name: 'b', type: 'CNAME', address: 'farboo' }, - ]); - expect(removeZone).toBeCalledTimes(2); - expect(getRecordCalls(removeZone)).toEqual([ - { line: 2 }, - { line: 3 }, - ]); - }); - - it('should workout this complex example', async () => { - const zones = [ - { line: 1, name: 'a', type: 'CNAME', address: 'world' }, - { line: 2, name: 'b', type: 'A', address: '1' }, - { line: 3, name: 'b', type: 'A', address: '2' }, - { line: 4, name: 'c', type: 'CNAME', address: 'hello.com' }, - { line: 5, name: 'c', type: 'MX', address: 'mx1.hello.com', priority: 20 }, - { line: 6, name: 'c', type: 'MX', address: 'mx2.hello.com', priority: 21 }, - { line: 7, name: 'b', type: 'MX', address: 'foo.bar', priority: 20 }, - ]; - const redirections = [ - { domain: `b.${DOMAIN_DOMAIN}`, destination: 'https://foobar.com' }, - { domain: `c.${DOMAIN_DOMAIN}`, destination: 'https://goobar.com' }, - { domain: `x.${DOMAIN_DOMAIN}`, destination: 'https://example.com' }, - ]; - - const mockDomainService = mockDS({ zones, redirections }); - await mockDomainService.updateHosts([ - { name: 'a', type: 'CNAME', address: 'boo' }, - { name: 'b', type: 'A', address: '1' }, - { name: 'b', type: 'A', address: '2' }, - { name: 'b', type: 'A', address: '3' }, - { name: 'b', type: 'URL', address: 'https://wowow.com' }, - { name: 'c', type: 'CNAME', address: 'hello.com' }, - { name: 'c', type: 'URL', address: 'https://goobar.com' }, - { name: 'd', type: 'CNAME', address: 'helo.com' }, - { name: 'd', type: 'URL', address: 'https://hhh.com' }, - { name: 'x', type: 'URL', address: 'https://example69.com' }, - { name: 'c', type: 'MX', address: 'mx2.hello.com', priority: 21 }, - { name: 'a', type: 'MX', address: 'example.com', priority: 20 }, - ]); - - expect(addZone).toBeCalledTimes(3); - expect(getRecordCalls(addZone)).toEqual([ - { name: 'a', type: 'CNAME', address: 'boo' }, - { name: 'b', type: 'A', address: '3' }, - { name: 'd', type: 'CNAME', address: 'helo.com' }, - ]); - expect(removeZone).toBeCalledTimes(1); - expect(getRecordCalls(removeZone)).toEqual([ - { line: 1 }, - ]); - - expect(addEmail).toBeCalledTimes(1); - expect(getRecordCalls(addEmail)).toEqual([ - { domain: 'a.is-a.dev', exchanger: 'example.com', priority: 20 }, - ]); - expect(removeEmail).toBeCalledTimes(2); - expect(getRecordCalls(removeEmail)).toEqual([ - { domain: 'c.is-a.dev', exchanger: 'mx1.hello.com', priority: 20 }, - { domain: 'b.is-a.dev', exchanger: 'foo.bar', priority: 20 }, - ]); - - expect(addRedir).toBeCalledTimes(3); - expect(getRecordCalls(addRedir)).toEqual([ - { domain: `b.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://wowow.com' }, - { domain: `d.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://hhh.com' }, - { domain: `x.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://example69.com' }, - ]); - expect(removeRedir).toBeCalledTimes(2); - expect(getRecordCalls(removeRedir)).toEqual([ - { domain: `b.${DOMAIN_DOMAIN}` }, - { domain: `x.${DOMAIN_DOMAIN}` }, - ]); - }); - }); }); - diff --git a/tests/domain-utils.test.js b/tests/domain-utils.test.js index 077896726..896cf017d 100644 --- a/tests/domain-utils.test.js +++ b/tests/domain-utils.test.js @@ -1,9 +1,8 @@ -const { getDomains } = require('../utils/get-domain'); +const { getDomains } = require("../utils/get-domain"); -describe('getDomains', () => { - it('should resolve with the list of domains', async () => { - const list = await getDomains(); - expect(Array.isArray(list)).toBe(true); - }); +describe("getDomains", () => { + it("should resolve with the list of domains", async () => { + const list = await getDomains(); + expect(Array.isArray(list)).toBe(true); + }); }); - diff --git a/tests/domains.test.js b/tests/domains.test.js index 44c2a5422..75971b00b 100644 --- a/tests/domains.test.js +++ b/tests/domains.test.js @@ -1,31 +1,37 @@ -const R = require('ramda'); -const fs = require('fs'); -const { getDomains } = require('../utils/get-domain'); -const { validateDomainData } = require('../utils/validations'); -const { DOMAINS_PATH } = require('../utils/constants'); +const R = require("ramda"); +const fs = require("fs"); +const { getDomains } = require("../utils/get-domain"); +const { validateDomainData } = require("../utils/validations"); +const { DOMAINS_PATH } = require("../utils/constants"); -describe('Domains', () => { - it('should all be json', async () => { - const files = await fs.promises.readdir(DOMAINS_PATH, {}); - expect(files.filter(f => !/\.json$/g.test(f)).length).toBe(0); - }); +describe("Domains", () => { + it("should all be json", async () => { + const files = await fs.promises.readdir(DOMAINS_PATH, {}); + expect(files.filter((f) => !/\.json$/g.test(f)).length).toBe(0); + }); - it('should be valid', (done) => { - getDomains() - .then(R.reject(R.propEq('name', '_psl'))) - .then(R.map(data => { - const { errors } = validateDomainData(data); - if (errors.length) { - const message = errors - .map(([key, { reason }]) => `[${data.name}.${key}]: ${reason}`) - .join('\n'); - return `\nValidation errors in ${data.name}.json: \n${message}`; - } - return ''; - })) - .then(R.filter(R.complement(R.isEmpty))) - .then(messages => messages.length ? done(messages.join('\n')) : done()) - .catch(done); - }); + it("should be valid", (done) => { + getDomains() + .then(R.reject(R.propEq("name", "_psl"))) + .then( + R.map((data) => { + const { errors } = validateDomainData(data); + if (errors.length) { + const message = errors + .map( + ([key, { reason }]) => + `[${data.name}.${key}]: ${reason}`, + ) + .join("\n"); + return `\nValidation errors in ${data.name}.json: \n${message}`; + } + return ""; + }), + ) + .then(R.filter(R.complement(R.isEmpty))) + .then((messages) => + messages.length ? done(messages.join("\n")) : done(), + ) + .catch(done); + }); }); - diff --git a/tests/register.test.js b/tests/register.test.js index 88eb4694e..6628df211 100644 --- a/tests/register.test.js +++ b/tests/register.test.js @@ -1,120 +1,242 @@ -const R = require('ramda'); -const { toHostList, registerDomains } = require('../scripts/register-domains'); -const { TTL, DOMAIN_DOMAIN } = require('../utils/constants'); -const { getDomainService } = require('../utils/domain-service'); +const R = require("ramda"); +const { toHostList, registerDomains } = require("../scripts/register-domains"); +const { TTL, DOMAIN_DOMAIN } = require("../utils/constants"); +const { getDomainService } = require("../utils/domain-service"); -const getCpanel = ({ zone, addZone, removeZone, redir, addRedir, removeRedir } = {}) => ({ - zone: { - fetch: (_) => zone(), - add: (rec) => addZone(rec), - remove: (rec) => removeZone(rec), - }, - redirection: { - fetch: (_) => redir(), - add: (rec) => addRedir(rec), - remove: (rec) => removeRedir(rec), - }, - email: { - add: (rec) => addEmail(rec), - remove: (rec) => removeEmail(rec), - }, +const getCpanel = ({ + zone, + addZone, + removeZone, + redir, + addRedir, + removeRedir, + addEmail, + removeEmail, +} = {}) => ({ + zone: { + fetch: (_) => zone(), + add: (rec) => addZone(rec), + remove: (rec) => removeZone(rec), + }, + redirection: { + fetch: (_) => redir(), + add: (rec) => addRedir(rec), + remove: (rec) => removeRedir(rec), + }, + email: { + add: (rec) => addEmail(rec), + remove: (rec) => removeEmail(rec), + }, }); -describe('toHostList', () => { - it('should flatten domain data to list of hosts (without https)', () => { - const res = toHostList([ - { name: 'akshay', record: { CNAME: 'phenax.github.io' } }, - { name: 'foobar', record: { CNAME: 'v.io' } }, - { name: 'xx', record: { A: ['1.2.3.4', '5.6.3.2', '1.2.31.1'] } }, - { name: 'xx', record: { CNAME: 'foobar.com', MX: ['as.com', 'f.com'] } }, - ]); +describe("toHostList", () => { + it("should flatten domain data to list of hosts (without https)", () => { + const res = toHostList([ + { name: "akshay", record: { CNAME: "phenax.github.io" } }, + { name: "foobar", record: { CNAME: "v.io" } }, + { name: "xx", record: { A: ["1.2.3.4", "5.6.3.2", "1.2.31.1"] } }, + { + name: "xx", + record: { CNAME: "foobar.com", MX: ["as.com", "f.com"] }, + }, + ]); - expect(res).toEqual([ - { name: 'akshay', type: 'CNAME', address: 'phenax.github.io', ttl: TTL }, - { name: 'foobar', type: 'CNAME', address: 'v.io', ttl: TTL }, - { name: 'xx', type: 'A', address: '1.2.3.4', ttl: TTL }, - { name: 'xx', type: 'A', address: '5.6.3.2', ttl: TTL }, - { name: 'xx', type: 'A', address: '1.2.31.1', ttl: TTL }, - { name: 'xx', type: 'CNAME', address: 'foobar.com', ttl: TTL }, - { name: 'xx', type: 'MX', address: 'as.com', priority: 20, ttl: TTL }, - { name: 'xx', type: 'MX', address: 'f.com', priority: 21, ttl: TTL }, - ]); - }); + expect(res).toEqual([ + { + name: "akshay", + type: "CNAME", + address: "phenax.github.io", + ttl: TTL, + }, + { name: "foobar", type: "CNAME", address: "v.io", ttl: TTL }, + { name: "xx", type: "A", address: "1.2.3.4", ttl: TTL }, + { name: "xx", type: "A", address: "5.6.3.2", ttl: TTL }, + { name: "xx", type: "A", address: "1.2.31.1", ttl: TTL }, + { name: "xx", type: "CNAME", address: "foobar.com", ttl: TTL }, + { + name: "xx", + type: "MX", + address: "as.com", + priority: 20, + ttl: TTL, + }, + { + name: "xx", + type: "MX", + address: "f.com", + priority: 21, + ttl: TTL, + }, + ]); + }); }); -describe('registerDomains', () => { - const addZone = jest.fn(async () => ({})); - const removeZone = jest.fn(async () => ({})); - const addRedir = jest.fn(async () => ({})); - const removeRedir = jest.fn(async () => ({})); - const addEmail = jest.fn(async () => ({})); - const removeEmail = jest.fn(async () => ({})); +describe("registerDomains", () => { + const addZone = jest.fn(async () => ({})); + const removeZone = jest.fn(async () => ({})); + const addRedir = jest.fn(async () => ({})); + const removeRedir = jest.fn(async () => ({})); + const addEmail = jest.fn(async () => ({})); + const removeEmail = jest.fn(async () => ({})); - const mockDS = ({ zones, redirections }) => getDomainService({ - cpanel: getCpanel({ - zone: async () => zones, - redir: async () => redirections, - addZone, - addEmail, - addRedir, - removeZone, - removeRedir, - removeEmail, - }) - }); + const mockDS = ({ zones, redirections }) => + getDomainService({ + cpanel: getCpanel({ + zone: async () => zones, + redir: async () => redirections, + addZone, + addEmail, + addRedir, + removeZone, + removeRedir, + removeEmail, + }), + }); - beforeEach(() => { - addZone.mockClear(); - removeZone.mockClear(); - addRedir.mockClear(); - removeRedir.mockClear(); - addEmail.mockClear(); - removeEmail.mockClear(); - }); + beforeEach(() => { + addZone.mockClear(); + removeZone.mockClear(); + addRedir.mockClear(); + removeRedir.mockClear(); + addEmail.mockClear(); + removeEmail.mockClear(); + }); - it('should register the new set of hosts generated from domains list', async () => { - const localHosts = [ - { name: 'a', record: { CNAME: 'hello' } }, - { name: 'b', record: { CNAME: 'xaa' } }, - ]; - const remoteHosts = [ - { line: 1, name: 'a', type: 'CNAME', address: 'hello' }, - { line: 2, name: 'b', type: 'CNAME', address: 'goo' }, - { line: 3, name: 'b', type: 'CNAME', address: 'xaa' }, - ]; - const remoteRedirections = []; + it("should register the new set of hosts generated from domains list", async () => { + const localHosts = [ + { name: "a", record: { CNAME: "hello" } }, + { name: "b", record: { CNAME: "xaa" } }, + ]; + const remoteHosts = [ + { line: 1, name: "a", type: "CNAME", address: "hello" }, + { line: 2, name: "b", type: "CNAME", address: "goo" }, + { line: 3, name: "b", type: "CNAME", address: "xaa" }, + ]; + const remoteRedirections = []; - const domainService = mockDS({ zones: remoteHosts, redirections: remoteRedirections }); - await registerDomains({ getDomains: async () => localHosts, domainService }); + const domainService = mockDS({ + zones: remoteHosts, + redirections: remoteRedirections, + }); + await registerDomains({ + getDomains: async () => localHosts, + domainService, + }); - expect(addZone).toBeCalledTimes(0); - expect(removeZone).toBeCalledTimes(1); - expect(addRedir).toBeCalledTimes(0); - expect(removeRedir).toBeCalledTimes(0); - }); + expect(addZone).toHaveBeenCalledTimes(0); + expect(removeZone).toHaveBeenCalledTimes(1); + expect(addRedir).toHaveBeenCalledTimes(0); + expect(removeRedir).toHaveBeenCalledTimes(0); + }); - it('should add the new set hosts', async () => { - const localHosts = [ - { name: 'a', record: { CNAME: 'boo', URL: 'z' } }, - { name: 'b', record: { CNAME: 'xaa', URL: 'x' } }, - { name: 'c', record: { CNAME: 'yello', URL: 'https://google.com' } }, - ]; - const remoteHosts = [ - { line: 1, name: 'a', type: 'CNAME', address: 'boo' }, - { line: 2, name: 'b', type: 'CNAME', address: 'xaa' }, - ]; - const remoteRedirections = [ - { domain: `b.${DOMAIN_DOMAIN}`, destination: 'x' }, - { domain: `a.${DOMAIN_DOMAIN}`, destination: 'y' }, - ]; + it("should add the new set hosts", async () => { + const localHosts = [ + { name: "a", record: { CNAME: "boo" } }, + { + name: "b", + record: { + A: ["1.1.1.1", "1.1.1.2"], + MX: "somemx", + TXT: "some txt", + }, + }, + { name: "c", record: { URL: "https://google.com" } }, + { name: "d", record: { CNAME: "foobar" } }, + { + name: "e", + record: { A: ["2.2.2.2"], TXT: ["some", "extra", "txt"] }, + }, + ]; + const remoteHosts = [ + { line: 1, name: "a", type: "CNAME", address: "boo" }, + { line: 2, name: "b", type: "MX", address: "othermx" }, + { line: 3, name: "d", type: "CNAME", address: "foobaz" }, + ]; + const remoteRedirections = [ + { domain: `b.${DOMAIN_DOMAIN}`, destination: "x" }, + { domain: `a.${DOMAIN_DOMAIN}`, destination: "y" }, + ]; - const domainService = mockDS({ zones: remoteHosts, redirections: remoteRedirections }); - await registerDomains({ getDomains: async () => localHosts, domainService }); + const domainService = mockDS({ + zones: remoteHosts, + redirections: remoteRedirections, + }); + await registerDomains({ + getDomains: async () => localHosts, + domainService, + }); - expect(addZone).toBeCalledTimes(1); - expect(removeZone).toBeCalledTimes(0); - expect(addRedir).toBeCalledTimes(2); - expect(removeRedir).toBeCalledTimes(1); - }); + expect(addZone).toHaveBeenCalledTimes(8); + expect(addZone.mock.calls).toEqual([ + [{ name: "b", type: "A", address: "1.1.1.1", line: undefined }], + [{ name: "b", type: "A", address: "1.1.1.2", line: undefined }], + [ + { + name: "b", + type: "TXT", + address: "some txt", + txtdata: "some txt", + line: undefined, + }, + ], + [ + { + name: "d", + type: "CNAME", + cname: "foobar", + address: "foobar", + line: undefined, + }, + ], + [{ name: "e", type: "A", address: "2.2.2.2", line: undefined }], + [ + { + name: "e", + type: "TXT", + address: "some", + txtdata: "some", + line: undefined, + }, + ], + [ + { + name: "e", + type: "TXT", + address: "extra", + txtdata: "extra", + line: undefined, + }, + ], + [ + { + name: "e", + type: "TXT", + address: "txt", + txtdata: "txt", + line: undefined, + }, + ], + ]); + + expect(removeZone).toHaveBeenCalledTimes(1); + expect(removeZone.mock.calls).toEqual([[{ line: 3 }]]); + + expect(addRedir).toHaveBeenCalledTimes(1); + expect(addRedir.mock.calls).toEqual([ + [ + { + domain: "c.booboo.xyz", + redirect: "https://google.com", + redirect_wildcard: 1, + redirect_www: 1, + type: "permanent", + }, + ], + ]); + + expect(addEmail).toHaveBeenCalledTimes(1); + expect(addEmail.mock.calls).toEqual([ + [{ domain: "b.is-a.dev", exchanger: "somemx", priority: 20 }], + ]); + }); }); - diff --git a/tests/validations.test.js b/tests/validations.test.js index e97ddbb08..af27b68bb 100644 --- a/tests/validations.test.js +++ b/tests/validations.test.js @@ -1,108 +1,167 @@ -const { validateDomainData, isValidDomain } = require('../utils/validations'); -const INVALID_NAMES = require('../utils/invalid-domains.json'); +const { validateDomainData, isValidDomain } = require("../utils/validations"); +const INVALID_NAMES = require("../utils/invalid-domains.json"); const defaultDomain = { - name: 'aaa', - record: { - A: ['121.121.121.121'] - }, - owner: { - username: 'betsy', - email: 'betsyfuckyoassup@foobar.com', - }, + name: "aaa", + record: { + A: ["121.121.121.121"], + }, + owner: { + username: "betsy", + email: "betsyfuckyoassup@foobar.com", + }, }; -const getstroflen = len => Array(len).fill('a').join(''); +const getstroflen = (len) => Array(len).fill("a").join(""); -describe('isValidMX', () => { - it('should be valid mx record', () => { - const cases = [ - { mx: 'foobar.com', result: true }, - { mx: 'as.as', result: true }, - { mx: 'ASPMX.L.GOOGLE.COM', result: true }, - { mx: 'ALT4.ASPMX.L.GOOGLE.COM', result: true }, - { mx: 'hello', result: false }, - { mx: 'helalsds-asd5sjdsd.com', result: true }, - { mx: 'helalsds?asd5sjdsd.com', result: false }, - { mx: 'helalsds_asd5sjdsd.com', result: false }, +describe("isValidMX", () => { + it("should be valid mx record", () => { + const cases = [ + { mx: "foobar.com", result: true }, + { mx: "as.as", result: true }, + { mx: "ASPMX.L.GOOGLE.COM", result: true }, + { mx: "ALT4.ASPMX.L.GOOGLE.COM", result: true }, + { mx: "hello", result: false }, + { mx: "helalsds-asd5sjdsd.com", result: true }, + { mx: "helalsds?asd5sjdsd.com", result: false }, + { mx: "helalsds_asd5sjdsd.com", result: false }, + ]; + + cases.forEach(({ mx, result }) => { + expect(isValidDomain(mx)).toBe(result); + }); + }); +}); + +describe("validateDomainData", () => { + const invalidCases = [ + {}, + { name: "helo" }, + { name: "wwow", record: { A: ["12312"] } }, + ...[ + "", + " ", + undefined, + "hlo wld", + "g32++13", + "ajsdD_123yq", + "khsda%", + "122*dsd", + getstroflen(101), + ].map((name) => ({ + ...defaultDomain, + name, + })), + { ...defaultDomain, record: { CNAME: "sd", A: ["121,3213"] } }, + { ...defaultDomain, record: { A: ["121", "12"], FOOBAR: ["sd"] } }, + { ...defaultDomain, record: { A: [] } }, + { ...defaultDomain, owner: {} }, + { ...defaultDomain, owner: { username: "hwelo" } }, + { ...defaultDomain, owner: { email: "hwelo" } }, + { ...defaultDomain, record: { CNAME: "http://foobar.com" } }, + { ...defaultDomain, record: { CNAME: "https://foobar.com" } }, + { ...defaultDomain, record: { URL: "foobar.com" } }, + { + ...defaultDomain, + record: { CNAME: "foobar.com", A: ["11.22.22.33"] }, + }, + { + ...defaultDomain, + record: { CNAME: "foobar.com", MX: ["ALT4.ASPMX.L.GOOGLE.COM"] }, + }, + ...INVALID_NAMES.map((name) => ({ ...defaultDomain, name })).slice( + 0, + 1, + ), + { ...defaultDomain, name: "ww2.baa" }, + { ...defaultDomain, name: "help.baa" }, + { ...defaultDomain, name: "_github-pages-challenge-is-a-dev" }, + { ...defaultDomain, name: "_github-challenge-is-a-dev" }, + { ...defaultDomain, record: { AAAA: [] } }, + { ...defaultDomain, record: { AAAA: ["182.22.222.22", "::1"] } }, + { ...defaultDomain, record: { AAAA: "182.22.222.22" } }, + { ...defaultDomain, record: { A: "::1" } }, + { ...defaultDomain, name: "_discord" }, + { ...defaultDomain, name: "_gitlab-pages-verification-code" }, + { ...defaultDomain, name: "_acme-challenge" }, + { ...defaultDomain, name: "_dmarc" }, + { ...defaultDomain, name: "_gh-is-a-dev" }, + { ...defaultDomain, name: "_domainkey" }, + { ...defaultDomain, name: "_improvmx" }, + { ...defaultDomain, name: "_vercel" }, ]; - cases.forEach(({ mx, result }) => { - expect(isValidDomain(mx)).toBe(result); + const validCases = [ + defaultDomain, + ...[ + "hello", + "hello-world", + "11111111111", + "--wow--", + "wow--", + "--wow", + ].map((name) => ({ + ...defaultDomain, + name, + })), + { + ...defaultDomain, + description: getstroflen(99), + }, + { ...defaultDomain, record: { CNAME: "aa.sd" } }, + { ...defaultDomain, record: { URL: "https://foobar.com" } }, + { ...defaultDomain, record: { URL: "http://foobar.com/foobar/" } }, + { ...defaultDomain, record: { MX: ["ALT4.ASPMX.L.GOOGLE.COM"] } }, + { ...defaultDomain, record: { TXT: "foobar wow nice!!!" } }, + { + ...defaultDomain, + record: { A: ["1.1.1.1"], MX: ["mx1.example.com"] }, + }, + { ...defaultDomain, name: "gogo.foo.bar" }, + { ...defaultDomain, name: "ww9.baa" }, + { ...defaultDomain, name: "_github-pages-challenge-phenax.akshay" }, + { ...defaultDomain, name: "_github-pages-challenge-hello01-ga" }, + { ...defaultDomain, name: "_github-pages-challenge-hello01_ga" }, + { ...defaultDomain, name: "_github-challenge-phenax.akshay" }, + { ...defaultDomain, name: "_github-challenge-hello01-ga" }, + { ...defaultDomain, name: "_github-challenge-hello01_ga" }, + { + ...defaultDomain, + record: { TXT: ["foobar wow nice!!!", "more text"] }, + }, + { + ...defaultDomain, + record: { AAAA: ["::1", "2001:db8:3333:4444:5555:6666:7777:8888"] }, + }, + { ...defaultDomain, record: { A: ["122.222.222.222"] } }, + { ...defaultDomain, name: "_discord.subdomain" }, + { ...defaultDomain, name: "_gitlab-pages-verification-code.subdomain" }, + { ...defaultDomain, name: "_acme-challenge.subdomain" }, + { ...defaultDomain, name: "_dmarc.subdomain" }, + { ...defaultDomain, name: "_gh-phenax.akshay" }, + { ...defaultDomain, name: "_gh-hello01-ga" }, + { ...defaultDomain, name: "_gh-hello01_ga" }, + { ...defaultDomain, name: "_domainkey.subdomain" }, + { ...defaultDomain, name: "mx._domainkey.subdomain" }, + { ...defaultDomain, name: '_improvmx.subdomain' }, + { ...defaultDomain, name: '_vercel.subdomain' }, + { ...defaultDomain, name: "a.b" }, + ]; + + it("should return false for invalid data", () => { + invalidCases.forEach((data) => { + const { valid, errors } = validateDomainData(data); + expect(valid).toBe(false); + expect(errors.length).toBeGreaterThan(0); + }); + }); + + it("should return true if the name is valid", () => { + validCases.forEach((data) => { + const { valid, errors } = validateDomainData(data); + if (!valid) console.log(JSON.stringify(errors, null, 2)); + expect(valid).toBe(true); + expect(errors).toEqual([]); + }); }); - }); }); - -describe('validateDomainData', () => { - const invalidCases = [ - {}, - { name: 'helo' }, - { name: 'wwow', record: { A: ['12312'] } }, - ...['', ' ', undefined, 'hlo wld', 'g32++13', 'ajsdD_123yq', 'khsda%', '122*dsd', getstroflen(101)].map(name => ({ - ...defaultDomain, - name, - })), - { ...defaultDomain, record: { CNAME: 'sd', A: ['121,3213'] } }, - { ...defaultDomain, record: { A: ['121', '12'], FOOBAR: ['sd'] } }, - { ...defaultDomain, record: { A: [] } }, - { ...defaultDomain, owner: {}, }, - { ...defaultDomain, owner: { username: 'hwelo', }, }, - { ...defaultDomain, owner: { email: 'hwelo' }, }, - { ...defaultDomain, record: { CNAME: 'http://foobar.com' } }, - { ...defaultDomain, record: { CNAME: 'https://foobar.com' } }, - { ...defaultDomain, record: { URL: 'foobar.com' } }, - { ...defaultDomain, record: { CNAME: 'foobar.com', A: ['11.22.22.33'] } }, - { ...defaultDomain, record: { CNAME: 'foobar.com', MX: ['ALT4.ASPMX.L.GOOGLE.COM'] } }, - ...INVALID_NAMES.map(name => ({ ...defaultDomain, name })).slice(0, 1), - { ...defaultDomain, record: { TXT: ['foobar wow nice!!!'] } }, - { ...defaultDomain, name: 'a.b' }, - { ...defaultDomain, name: 'ww2.baa' }, - { ...defaultDomain, name: 'help.baa' }, - { ...defaultDomain, name: '_github-pages-challenge-is-a-dev' }, - { ...defaultDomain, name: '_github-challenge-is-a-dev' }, - ]; - - const validCases = [ - defaultDomain, - ...['hello', 'hello-world', '11111111111', '--wow--', 'wow--', '--wow'].map(name => ({ - ...defaultDomain, - name, - })), - { - ...defaultDomain, - description: getstroflen(99), - }, - { ...defaultDomain, record: { CNAME: 'aa.sd' } }, - { ...defaultDomain, record: { URL: 'https://foobar.com' } }, - { ...defaultDomain, record: { URL: 'http://foobar.com/foobar/' } }, - { ...defaultDomain, record: { MX: ['ALT4.ASPMX.L.GOOGLE.COM'] } }, - { ...defaultDomain, record: { TXT: 'foobar wow nice!!!' } }, - { ...defaultDomain, record: { A: ['1.1.1.1'], MX: ['mx1.example.com'] } }, - { ...defaultDomain, name: 'gogo.foo.bar' }, - { ...defaultDomain, name: 'ww9.baa' }, - { ...defaultDomain, name: '_github-pages-challenge-phenax.akshay' }, - { ...defaultDomain, name: '_github-pages-challenge-hello01-ga' }, - { ...defaultDomain, name: '_github-pages-challenge-hello01_ga' }, - { ...defaultDomain, name: '_github-challenge-phenax.akshay' }, - { ...defaultDomain, name: '_github-challenge-hello01-ga' }, - { ...defaultDomain, name: '_github-challenge-hello01_ga' }, - ]; - - it('should return false for invalid data', () => { - invalidCases.forEach(data => { - const { valid, errors } = validateDomainData(data); - expect(valid).toBe(false); - expect(errors.length).toBeGreaterThan(0); - }); - }); - - it('should return true if the name is valid', () => { - validCases.forEach(data => { - const { valid, errors } = validateDomainData(data); - if (!valid) console.log(JSON.stringify(errors, null, 2)); - expect(valid).toBe(true); - expect(errors).toEqual([]); - }); - }); -}); - diff --git a/utils/constants.js b/utils/constants.js index 022bd6646..b0cf0079d 100644 --- a/utils/constants.js +++ b/utils/constants.js @@ -1,34 +1,30 @@ -const path = require('path'); +const path = require("path"); -const { ENV = 'test', CI } = process.env; - -if (!CI) { - require('dotenv').config({ path: path.resolve(`.env.${ENV}`) }); -} +const { NODE_ENV: ENV = "test" } = process.env; const { - DOMAIN_USER, - DOMAIN_API_KEY, - DOMAIN_DOMAIN, - DOMAIN_API_HOST, - DOMAIN_API_PORT, - DOMAIN_HOST_IP, + DOMAIN_USER, + DOMAIN_API_KEY, + DOMAIN_DOMAIN, + DOMAIN_API_HOST, + DOMAIN_API_PORT, + DOMAIN_HOST_IP, } = process.env; -const IS_TEST = ENV === 'test'; +const IS_TEST = ENV === "test"; -const DOMAINS_PATH = path.resolve('domains'); +const DOMAINS_PATH = path.resolve("domains"); module.exports = { - ENV, - IS_TEST, - VALID_RECORD_TYPES: ['CNAME', 'A', 'URL', 'MX', 'TXT'], - DOMAIN_DOMAIN: DOMAIN_DOMAIN || 'booboo.xyz', - DOMAIN_USER: IS_TEST ? 'testuser' : DOMAIN_USER, - DOMAIN_API_KEY: IS_TEST ? 'testkey' : DOMAIN_API_KEY, - DOMAIN_API_HOST: IS_TEST ? 'example.com' : DOMAIN_API_HOST, - DOMAIN_API_PORT: IS_TEST ? 6969 : DOMAIN_API_PORT, - DOMAIN_HOST_IP, - DOMAINS_PATH, - TTL: 5 * 60 * 60, + ENV, + IS_TEST, + VALID_RECORD_TYPES: ["CNAME", "A", "URL", "MX", "TXT", "AAAA"], + DOMAIN_DOMAIN: DOMAIN_DOMAIN || "booboo.xyz", + DOMAIN_USER: IS_TEST ? "testuser" : DOMAIN_USER, + DOMAIN_API_KEY: IS_TEST ? "testkey" : DOMAIN_API_KEY, + DOMAIN_API_HOST: IS_TEST ? "example.com" : DOMAIN_API_HOST, + DOMAIN_API_PORT: IS_TEST ? 6969 : DOMAIN_API_PORT, + DOMAIN_HOST_IP, + DOMAINS_PATH, + TTL: 5 * 60 * 60, }; diff --git a/utils/domain-service.js b/utils/domain-service.js index 81421f7aa..b76eeac01 100644 --- a/utils/domain-service.js +++ b/utils/domain-service.js @@ -1,154 +1,206 @@ -const R = require('ramda'); -const { cpanel } = require('./lib/cpanel'); -const { DOMAIN_DOMAIN } = require('./constants'); -const { then, log, print, lazyTask, batchLazyTasks } = require('./helpers'); +const R = require("ramda"); +const { cpanel } = require("./lib/cpanel"); +const { DOMAIN_DOMAIN, VALID_RECORD_TYPES } = require("./constants"); +const { then, log, print, lazyTask, batchLazyTasks } = require("./helpers"); const BATCH_SIZE = 1; const recordToRedirection = ({ name, address }) => ({ - domain: name === '@' ? DOMAIN_DOMAIN : `${name}.${DOMAIN_DOMAIN}`, - redirect: address, - type: 'permanent', - redirect_wildcard: 1, - redirect_www: 1, + domain: name === "@" ? DOMAIN_DOMAIN : `${name}.${DOMAIN_DOMAIN}`, + redirect: address, + type: "permanent", + redirect_wildcard: 1, + redirect_www: 1, }); const recordToZone = ({ name, type, address, id, priority }) => ({ - line: id, - name: name === '@' ? `${DOMAIN_DOMAIN}.` : name, - type, - address, - ...(type === 'MX' ? { priority } : {}), - ...(type === 'CNAME' ? { cname: address } : {}), - ...(type === 'TXT' ? { txtdata: address } : {}), + line: id, + name: name === "@" ? `${DOMAIN_DOMAIN}.` : name, + type, + address, + ...(type === "MX" ? { priority } : {}), + ...(type === "CNAME" ? { cname: address } : {}), + ...(type === "TXT" ? { txtdata: address } : {}), }); -const cleanName = name => - name === DOMAIN_DOMAIN ? '@' : `${name}`.replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), '').toLowerCase(); +const cleanName = (name) => + [DOMAIN_DOMAIN, `${DOMAIN_DOMAIN}.`].includes(name) + ? "@" + : `${name}` + .replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), "") + .toLowerCase(); const zoneToRecord = ({ - name, - type, - cname, - address, - priority, - preference, - exchange, - record, - line: id -}) => - ({ + name, + type, + cname, + address, + priority, + preference, + exchange, + record, + line: id, +}) => ({ id, name: cleanName(name), type: `${type}`, - address: `${exchange || cname || address || record}`.replace(/\.$/g, '').toLowerCase(), + address: `${exchange || cname || address || record}` + .replace(/\.$/g, "") + .toLowerCase(), priority: priority || preference, - }); +}); const redirectionToRecord = ({ domain, destination }) => ({ - id: domain, - name: cleanName(domain), - type: 'URL', - address: `${destination}`.replace(/\/$/g, ''), + id: domain, + name: cleanName(domain), + type: "URL", + address: `${destination}`.replace(/\/$/g, ""), }); const recordToEmailMx = ({ name, address, priority }) => ({ - domain: `${name}.is-a.dev`, - exchanger: address, - priority, -}) + domain: `${name}.is-a.dev`, + exchanger: address, + priority, +}); -const getHostKey = host => - `${host.name.toLowerCase()}##${host.type.toLowerCase()}##${host.address.toLowerCase()}`; +const getHostKey = (host) => + `${host.name.toLowerCase()}##${host.type.toLowerCase()}##${host.address.toLowerCase()}`; + +const isReserved = (domain) => + domain.name.startsWith("*") || !VALID_RECORD_TYPES.includes(domain.type); const diffRecords = (oldRecords, newRecords) => { - const isMatchingRecord = (a, b) => getHostKey(a) === getHostKey(b); + const isMatchingRecord = (a, b) => getHostKey(a) === getHostKey(b); - const remove = R.differenceWith(isMatchingRecord, oldRecords, newRecords); - const add = R.differenceWith(isMatchingRecord, newRecords, oldRecords) - .filter(r => !['www'].includes(r.name)); + const remove = R.differenceWith(isMatchingRecord, oldRecords, newRecords); + const add = R.differenceWith(isMatchingRecord, newRecords, oldRecords); - return { add, remove }; + return { add, remove }; }; -const executeBatch = (batches) => batches.reduce((promise, batch, index) => { - return promise.then(async () => { - log('>>> Running batch number:', index + 1, `(size: ${batch.length})`); +const executeBatch = (batches) => + batches.reduce((promise, batch, index) => { + return promise.then(async () => { + log( + ">>> Running batch number:", + index + 1, + `(size: ${batch.length})`, + ); - const values = await Promise.all(batch.map(fn => fn().catch(e => console.error(e)))); + const values = await Promise.all( + batch.map((fn) => fn().catch((e) => console.error(e))), + ); - const results = values.map(data => R.pathOr({ result: data }, ['cpanelresult', 'data', 0], data)); - const failed = results.filter(x => (x.result || {}).status != 1); + const results = values.map((data) => + R.pathOr({ result: data }, ["cpanelresult", "data", 0], data), + ); + const failed = results.filter((x) => (x.result || {}).status != 1); - log(`${values.length - failed.length}/${values.length}`); - failed.length && log(JSON.stringify(failed, null, 2)); + log(`${values.length - failed.length}/${values.length}`); + failed.length && log(JSON.stringify(failed, null, 2)); - return null; - }); -}, Promise.resolve()); + return null; + }); + }, Promise.resolve()); const getDomainService = ({ cpanel }) => { - const fetchZoneRecords = R.compose(then(R.map(zoneToRecord)), cpanel.zone.fetch); - const fetchRedirections = R.compose(then(R.map(redirectionToRecord)), cpanel.redirection.fetch); + const fetchZoneRecords = R.compose( + then(R.reject(isReserved)), + then(R.map(zoneToRecord)), + cpanel.zone.fetch, + ); + const fetchRedirections = R.compose( + then(R.map(redirectionToRecord)), + cpanel.redirection.fetch, + ); - const addZoneRecord = lazyTask(R.compose( - R.ifElse(R.propEq('type', 'MX'), - R.compose(cpanel.email.add, recordToEmailMx), - cpanel.zone.add - ), - recordToZone, - print(r => `Adding zone for ${r.name}: (${r.type} ${r.address})...`), - )); - const removeZoneRecord = lazyTask(R.compose( - R.ifElse(R.propEq('type', 'MX'), - R.compose(cpanel.email.remove, recordToEmailMx), - R.compose(cpanel.zone.remove, R.pick(['line'])) - ), - recordToZone, - print(r => `Deleting zone for ${r.name}: (${r.type} ${r.address})...`), - )); - const addRedirection = lazyTask(R.compose( - cpanel.redirection.add, - recordToRedirection, - print(({ name }) => `Adding redirection for ${name}`), - )); - const removeRedirection = lazyTask(R.compose( - cpanel.redirection.remove, - R.pick(['domain']), - recordToRedirection, - print(({ name }) => `Deleting redirection for ${name}`), - )); + const addZoneRecord = lazyTask( + R.compose( + R.ifElse( + R.propEq("type", "MX"), + R.compose(cpanel.email.add, recordToEmailMx), + cpanel.zone.add, + ), + recordToZone, + print( + (r) => `Adding zone for ${r.name}: (${r.type} ${r.address})...`, + ), + ), + ); + const removeZoneRecord = lazyTask( + R.compose( + R.ifElse( + R.propEq("type", "MX"), + R.compose(cpanel.email.remove, recordToEmailMx), + R.compose(cpanel.zone.remove, R.pick(["line"])), + ), + recordToZone, + print( + (r) => + `Deleting zone for ${r.name}: (${r.type} ${r.address})...`, + ), + ), + ); + const addRedirection = lazyTask( + R.compose( + cpanel.redirection.add, + recordToRedirection, + print(({ name }) => `Adding redirection for ${name}`), + ), + ); + const removeRedirection = lazyTask( + R.compose( + cpanel.redirection.remove, + R.pick(["domain"]), + recordToRedirection, + print(({ name }) => `Deleting redirection for ${name}`), + ), + ); - const getHosts = () => - Promise.all([fetchZoneRecords(), fetchRedirections()]).then(R.flatten); + const getHosts = () => + Promise.all([fetchZoneRecords(), fetchRedirections()]).then(R.flatten); - const addRecords = R.compose(batchLazyTasks(BATCH_SIZE), R.filter(Boolean), R.map(R.cond([ - [R.propEq('name', 'www'), R.always(null)], // Ignore www - [R.propEq('type', 'URL'), addRedirection], - [R.T, addZoneRecord], - ]))); - const removeRecords = R.compose(batchLazyTasks(BATCH_SIZE), R.map(R.cond([ - [R.propEq('type', 'URL'), removeRedirection], - [R.T, removeZoneRecord], - ]))); + const addRecords = R.compose( + batchLazyTasks(BATCH_SIZE), + R.filter(Boolean), + R.map( + R.cond([ + [R.propEq("type", "URL"), addRedirection], + [R.T, addZoneRecord], + ]), + ), + ); + const removeRecords = R.compose( + batchLazyTasks(BATCH_SIZE), + R.map( + R.cond([ + [R.propEq("type", "URL"), removeRedirection], + [R.T, removeZoneRecord], + ]), + ), + R.sort((a, b) => b.id - a.id), + ); - const updateHosts = async hosts => { - const remoteHostList = await getHosts(); - const { add, remove } = diffRecords(remoteHostList, hosts); - console.log(`Adding ${add.length}; Removing ${remove.length}`) + const updateHosts = async (hosts) => { + const remoteHostList = await getHosts(); + const { add, remove } = diffRecords(remoteHostList, hosts); + console.log(`Adding ${add.length}; Removing ${remove.length}`); - await executeBatch([ - ...removeRecords(remove), - ...addRecords(add), - ]); - return { added: add.length, removed: remove.length }; - }; + await executeBatch([...removeRecords(remove), ...addRecords(add)]); + return { added: add.length, removed: remove.length }; + }; - return { getHosts, get: cpanel.zone.fetch, addZoneRecord, removeZoneRecord, updateHosts }; + return { + getHosts, + get: cpanel.zone.fetch, + addZoneRecord, + removeZoneRecord, + updateHosts, + }; }; const domainService = getDomainService({ cpanel }); module.exports = { - getDomainService, - domainService, - diffRecords, + getDomainService, + domainService, + diffRecords, }; diff --git a/utils/get-domain.js b/utils/get-domain.js index d6529032d..064240358 100644 --- a/utils/get-domain.js +++ b/utils/get-domain.js @@ -1,22 +1,27 @@ -const fs = require('fs'); -const path = require('path'); -const R = require('ramda'); -const {DOMAINS_PATH} = require('./constants'); +const fs = require("fs"); +const path = require("path"); +const R = require("ramda"); +const { DOMAINS_PATH } = require("./constants"); -const toDomain = str => path.join(DOMAINS_PATH, str); +const toDomain = (str) => path.join(DOMAINS_PATH, str); -const parseDomain = name => str => { - try {return JSON.parse(str);} - catch (e) {throw new Error(`Error: Cant parse ${name} => ${str}`);} +const parseDomain = (name) => (str) => { + try { + return JSON.parse(str); + } catch (e) { + throw new Error(`Error: Could not parse ${name} => ${str}`); + } }; -const toDomainData = name => R.compose(parseDomain(name), R.toString, fs.readFileSync, toDomain)(name); +const toDomainData = (name) => + R.compose(parseDomain(name), R.toString, fs.readFileSync, toDomain)(name); const getDomains = () => - fs.promises.readdir(DOMAINS_PATH, {}) - .then(R.map(name => ({ - ...toDomainData(name), - name: name.replace(/\.json$/, ''), - }))); + fs.promises.readdir(DOMAINS_PATH, {}).then( + R.map((name) => ({ + ...toDomainData(name), + name: name.replace(/\.json$/, ""), + })), + ); -module.exports = {getDomains}; +module.exports = { getDomains }; diff --git a/utils/helpers.js b/utils/helpers.js index 171dce8cc..03369f2b7 100644 --- a/utils/helpers.js +++ b/utils/helpers.js @@ -1,52 +1,54 @@ -const R = require('ramda'); -const { IS_TEST } = require('./constants'); +const R = require("ramda"); +const { IS_TEST } = require("./constants"); const log = IS_TEST ? () => {} : console.log; -const print = fn => x => log(fn(x)) || x; +const print = (fn) => (x) => log(fn(x)) || x; -const between = (min, max) => num => num >= min && num <= max; -const testRegex = regex => str => !!(str && str.match(regex)); +const between = (min, max) => (num) => num >= min && num <= max; +const testRegex = (regex) => (str) => !!(str && str.match(regex)); -const validate = pattern => data => R.compose( - invalidPairs => invalidPairs.length - ? { errors: invalidPairs, valid: false } - : { errors: [], valid: true }, - R.filter(([key, { fn }]) => fn ? !fn(data[key]) : false), - R.toPairs, -)(pattern); +const validate = (pattern) => (data) => + R.compose( + (invalidPairs) => + invalidPairs.length + ? { errors: invalidPairs, valid: false } + : { errors: [], valid: true }, + R.filter(([key, { fn }]) => (fn ? !fn(data[key]) : false)), + R.toPairs, + )(pattern); const or = R.anyPass; const and = R.allPass; -const then = fn => p => p.then(fn); +const then = (fn) => (p) => p.then(fn); -const lazyTask = fn => data => () => fn(data); +const lazyTask = (fn) => (data) => () => fn(data); -const batchLazyTasks = count => tasks => tasks.reduce((batches, task) => { - if (batches.length === 0) return [[task]]; +const batchLazyTasks = (count) => (tasks) => + tasks.reduce((batches, task) => { + if (batches.length === 0) return [[task]]; - const full = R.init(batches); - const last = R.last(batches); + const full = R.init(batches); + const last = R.last(batches); - if (last.length >= count) return [...batches, [task]]; - return [...full, [...last, task]]; -}, []); + if (last.length >= count) return [...batches, [task]]; + return [...full, [...last, task]]; + }, []); -const withLengthGte = n => R.compose(R.gte(R.__, n), R.length); -const withLengthEq = n => R.compose(R.equals(n), R.length); +const withLengthGte = (n) => R.compose(R.gte(R.__, n), R.length); +const withLengthEq = (n) => R.compose(R.equals(n), R.length); module.exports = { - or, - and, - validate, - between, - testRegex, - log, - print, - then, - lazyTask, - batchLazyTasks, - withLengthEq, - withLengthGte, + or, + and, + validate, + between, + testRegex, + log, + print, + then, + lazyTask, + batchLazyTasks, + withLengthEq, + withLengthGte, }; - diff --git a/utils/invalid-domains.json b/utils/invalid-domains.json index a8943f3c4..736faa9bd 100644 --- a/utils/invalid-domains.json +++ b/utils/invalid-domains.json @@ -1,18 +1,27 @@ [ - "_acme-challenge", - "_github-challenge-is-a-dev", - "_github-pages-challenge-is-a-dev", - "help", - "no-reply", - "noreply", - "notification", - "notifications", - "support", - "ww", - "ww1", - "ww2", - "ww3", - "ww4", - "wwww", - "your-domain-name" + "0", + "_acme-challenge", + "_discord", + "_dmarc", + "_domainkey", + "_gh-is-a-dev", + "_github-challenge-is-a-dev", + "_github-pages-challenge-is-a-dev", + "_gitlab-pages-verification-code", + "_improvmx", + "_vercel", + "con", + "help", + "no-reply", + "noreply", + "notification", + "notifications", + "support", + "ww", + "ww1", + "ww2", + "ww3", + "ww4", + "wwww", + "your-domain-name" ] diff --git a/utils/lib/cpanel.js b/utils/lib/cpanel.js index 29743295a..573a22e5e 100644 --- a/utils/lib/cpanel.js +++ b/utils/lib/cpanel.js @@ -1,101 +1,123 @@ -const R = require('ramda'); -const fetch = require('node-fetch'); -const qs = require('qs'); -const { DOMAIN_API_HOST, DOMAIN_API_PORT, DOMAIN_USER, DOMAIN_API_KEY, DOMAIN_DOMAIN } = require('../constants'); +const R = require("ramda"); +const qs = require("querystring"); +const { + DOMAIN_API_HOST, + DOMAIN_API_PORT, + DOMAIN_USER, + DOMAIN_API_KEY, + DOMAIN_DOMAIN, +} = require("../constants"); const CpanelClient = (options) => { - const api = ({ basePath = '', action = '' }) => (module, func, defaultQuery = {}) => (q = {}) => { - const query = { - ...defaultQuery, - ...q, - cpanel_jsonapi_user: options.username, - cpanel_jsonapi_module: module, - cpanel_jsonapi_func: func, - cpanel_jsonapi_apiversion: 2, + const api = + ({ basePath = "", action = "" }) => + (module, func, defaultQuery = {}) => + (q = {}) => { + const query = { + ...defaultQuery, + ...q, + cpanel_jsonapi_user: options.username, + cpanel_jsonapi_module: module, + cpanel_jsonapi_func: func, + cpanel_jsonapi_apiversion: 2, + }; + + const request = { + headers: { + Authorization: `cpanel ${options.username}:${options.apiKey}`, + }, + rejectUnauthorized: false, + }; + + const path = `${basePath}/${action}?${qs.stringify(query)}`; + const reqUrl = `https://${options.host}:${options.port}/${path}`; + + const { fetch } = options.dependencies; + return fetch(reqUrl, request).then((res) => res.json()); + }; + + const api2 = api({ basePath: "json-api", action: "cpanel" }); + const uapi = (module, func, defaultQuery) => + api({ basePath: "execute", action: `${module}/${func}` })( + module, + func, + defaultQuery, + ); + + return { + zone: { + // { customonly, domain } + // -> [{ class, ttl, name, line, Line, cname, type, record }] + fetch: R.compose( + (p) => p.then(R.pathOr([], ["cpanelresult", "data"])), + api2("ZoneEdit", "fetchzone_records", { + customonly: 0, + domain: options.domain, + }), + ), + + // { name, type(A|CNAME), cname, address, ttl } + // -> {} + add: api2("ZoneEdit", "add_zone_record", { + domain: options.domain, + }), + + // { line } + // -> {} + remove: api2("ZoneEdit", "remove_zone_record", { + domain: options.domain, + }), + }, + redirection: { + // {} + // -> [{ domain, destination }] + fetch: R.compose( + (p) => p.then(R.pathOr([], ["data"])), + uapi("Mime", "list_redirects"), + ), + + // { domain, redirect, type(permanent|tmp), redirect_wildcard(0|1), redirect(0|1|2) } + // -> {} + add: uapi("Mime", "add_redirect"), + + // { domain } + // -> {} + remove: uapi("Mime", "delete_redirect"), + }, + file: { + write: uapi("Fileman", "save_file_content", { + from_charset: "UTF-8", + to_charset: "UTF-8", + fallback: 1, + }), + }, + email: { + // { domain, exchanger, priority } + // -> {} + add: uapi("Email", "add_mx", { alwaysaccept: "auto" }), + + // { domain, exchanger, priority } + // -> {} + remove: uapi("Email", "delete_mx", { alwaysaccept: "auto" }), + }, }; - - const request = { - headers: { - Authorization: `cpanel ${options.username}:${options.apiKey}`, - }, - rejectUnauthorized: false, - }; - - const path = `${basePath}/${action}?${qs.stringify(query)}`; - const reqUrl = `https://${options.host}:${options.port}/${path}`; - - const { fetch } = options.dependencies; - return fetch(reqUrl, request).then(res => res.json()); - }; - - const api2 = api({ basePath: 'json-api', action: 'cpanel' }); - const uapi = (module, func, defaultQuery) => - api({ basePath: 'execute', action: `${module}/${func}` })(module, func, defaultQuery); - - return { - zone: { - // { customonly, domain } - // -> [{ class, ttl, name, line, Line, cname, type, record }] - fetch: R.compose( - p => p.then(R.pathOr([], ['cpanelresult', 'data'])), - api2('ZoneEdit', 'fetchzone_records', { customonly: 1, domain: options.domain }) - ), - - // { name, type(A|CNAME), cname, address, ttl } - // -> {} - add: api2('ZoneEdit', 'add_zone_record', { domain: options.domain }), - - // { line } - // -> {} - remove: api2('ZoneEdit', 'remove_zone_record', { domain: options.domain }), - }, - redirection: { - // {} - // -> [{ domain, destination }] - fetch: R.compose( - p => p.then(R.pathOr([], ['data'])), - uapi('Mime', 'list_redirects'), - ), - - // { domain, redirect, type(permanent|tmp), redirect_wildcard(0|1), redirect(0|1|2) } - // -> {} - add: uapi('Mime', 'add_redirect'), - - // { domain } - // -> {} - remove: uapi('Mime', 'delete_redirect'), - }, - file: { - write: uapi('Fileman', 'save_file_content', { from_charset: 'UTF-8', to_charset: 'UTF-8', fallback: 1 }), - }, - email: { - // { domain, exchanger, priority } - // -> {} - add: uapi('Email', 'add_mx', { alwaysaccept: 'auto' }), - - // { domain, exchanger, priority } - // -> {} - remove: uapi('Email', 'delete_mx', { alwaysaccept: 'auto' }), - }, - }; }; if (!DOMAIN_API_KEY) { - console.error('Api key cannot be empty'); - process.exit(1); + console.error("Api key cannot be empty"); + process.exit(1); } const cpanel = CpanelClient({ - host: DOMAIN_API_HOST, - port: DOMAIN_API_PORT, - username: DOMAIN_USER, - apiKey: DOMAIN_API_KEY, - domain: DOMAIN_DOMAIN, - dependencies: { fetch }, + host: DOMAIN_API_HOST, + port: DOMAIN_API_PORT, + username: DOMAIN_USER, + apiKey: DOMAIN_API_KEY, + domain: DOMAIN_DOMAIN, + dependencies: { fetch }, }); module.exports = { - cpanel, - CpanelClient, + cpanel, + CpanelClient, }; - diff --git a/utils/validations.js b/utils/validations.js index 963e8ed3d..eea099cd4 100644 --- a/utils/validations.js +++ b/utils/validations.js @@ -1,84 +1,129 @@ -const R = require('ramda'); -const { VALID_RECORD_TYPES } = require('./constants'); -const { or, and, validate, between, testRegex, withLengthEq, withLengthGte } = require('./helpers'); -const INVALID_NAMES = require('./invalid-domains.json'); +const R = require("ramda"); +const { VALID_RECORD_TYPES } = require("./constants"); +const { + or, + and, + validate, + between, + testRegex, + withLengthEq, + withLengthGte, +} = require("./helpers"); +const INVALID_NAMES = require("./invalid-domains.json"); +const ipRegex_ = require("ip-regex"); +const ipRegex = ipRegex_.default ?? ipRegex_; -const isValidURL = and([R.is(String), testRegex(/^https?:\/\//ig)]); +const isValidURL = and([R.is(String), testRegex(/^https?:\/\//gi)]); -const isValidDomain = and([R.is(String), testRegex(/^(([a-z0-9-]+)\.)+[a-z]+$/ig)]); - -const validateCnameRecord = type => and([ - R.propIs(String, type), - R.compose(withLengthEq(1), R.keys), // CNAME cannot be used with any other record - R.propSatisfies(withLengthGte(4), type), - R.propSatisfies(isValidDomain, type), +const isValidDomain = and([ + R.is(String), + testRegex(/^(([a-z0-9-_]+)\.)*(([a-z0-9-]+)\.)+[a-z]+$/gi), ]); -const validateARecord = type => and([ - R.propIs(Array, type), - R.propSatisfies(withLengthGte(1), type), -]); +const validateCnameRecord = (type) => + and([ + R.propIs(String, type), + R.compose(withLengthEq(1), R.keys), // CNAME cannot be used with any other record + R.propSatisfies(withLengthGte(4), type), + R.propSatisfies(isValidDomain, type), + ]); -const validateMXRecord = type => and([ - R.propIs(Array, type), - R.propSatisfies(withLengthGte(1), type), - R.propSatisfies(R.all(isValidDomain), type), -]); +const validateARecord = (type) => + and([ + R.propIs(Array, type), + R.propSatisfies(withLengthGte(1), type), + R.all(testRegex(ipRegex.v4({ exact: true }))), + ]); -const checkRestrictedNames = R.complement(R.includes(R.__, INVALID_NAMES)) +const validateMXRecord = (type) => + and([ + R.propIs(Array, type), + R.propSatisfies(withLengthGte(1), type), + R.propSatisfies(R.all(isValidDomain), type), + ]); + +const validateAAAARecord = R.propSatisfies( + and([ + R.is(Array), + withLengthGte(1), + R.all(testRegex(ipRegex.v6({ exact: true }))), + ]), +); + +const checkRestrictedNames = R.complement(R.includes(R.__, INVALID_NAMES)); + +const extraSupportedNames = [ + testRegex(/^_github(-pages)?-challenge-[a-z0-9-_]+$/i), + R.equals("_discord"), + R.equals("_gitlab-pages-verification-code"), + R.equals("_acme-challenge"), + R.equals("_dmarc"), + R.equals("_domainkey"), + R.equals("_improvmx"), + R.equals("_vercel"), + testRegex(/^_gh-[a-z0-9-_]+$/i), +]; const validateDomainData = validate({ - name: { - reason: 'The name of the file is invalid. It must be lowercased, alphanumeric and each component must be more than 2 characters long', - fn: or([ - R.equals('@'), - and([ - R.is(String), - R.compose( - R.all(or([ + name: { + reason: "The name of the file is invalid. It must be lowercased, alphanumeric and each component must be between 1-100 characters long.", + fn: or([ + R.equals("@"), and([ - testRegex(/^_github(-pages)?-challenge-[a-z0-9-_]+$/i), // Exception for github verification records - checkRestrictedNames, + R.is(String), + checkRestrictedNames, + R.compose( + R.all( + or([ + and([ + R.compose(between(1, 100), R.length), + testRegex(/^[a-z0-9-]+$/g), + checkRestrictedNames, + ]), + ...extraSupportedNames, + ]), + ), + R.split("."), + ), ]), - and([ - R.compose(between(2, 100), R.length), - testRegex(/^[a-z0-9-]+$/g), - checkRestrictedNames, - ]) - ])), - R.split('.'), - ), - ]) - ]), - }, - description: { reason: '', fn: R.T, }, - repo: { reason: '', fn: R.T, }, - owner: { - reason: '`owner` needs valid username and email properties', - fn: and([ - R.is(Object), - R.complement(R.isEmpty), - R.where({ - username: and([R.is(String), withLengthGte(1)]), - email: R.is(String), - }), - ]), - }, - record: { - reason: 'Invalid record. CNAME records have to be a host name and A records has to be a list of ips', - fn: and([ - R.is(Object), - R.compose(R.isEmpty, R.difference(R.__, VALID_RECORD_TYPES), R.keys), - R.cond([ - [R.has('CNAME'), validateCnameRecord('CNAME')], - [R.has('A'), validateARecord('A')], - [R.has('URL'), R.propSatisfies(isValidURL, 'URL')], - [R.has('MX'), validateMXRecord('MX')], - [R.has('TXT'), R.propSatisfies(R.is(String), 'TXT')], - [R.T, R.T], - ]), - ]), - }, + ]), + }, + description: { reason: "", fn: R.T }, + repo: { reason: "", fn: R.T }, + owner: { + reason: "`owner` key needs valid username and email properties.", + fn: and([ + R.is(Object), + R.complement(R.isEmpty), + R.where({ + username: and([R.is(String), withLengthGte(1)]), + email: R.is(String), + }), + ]), + }, + record: { + reason: "Invalid record(s) found. Please check the record types and values.", + fn: and([ + R.is(Object), + R.compose( + R.isEmpty, + R.difference(R.__, VALID_RECORD_TYPES), + R.keys, + ), + R.cond([ + [R.has("CNAME"), validateCnameRecord("CNAME")], + [R.has("A"), validateARecord("A")], + [R.has("URL"), R.propSatisfies(isValidURL, "URL")], + [R.has("MX"), validateMXRecord("MX")], + [ + R.has("TXT"), + R.propSatisfies(or([R.is(String), R.is(Array)]), "TXT"), + ], + [R.has("AAAA"), validateAAAARecord("AAAA")], + [R.T, R.T], + ]), + ]), + }, }); module.exports = { validateDomainData, isValidDomain }; diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index e4955e514..000000000 --- a/yarn.lock +++ /dev/null @@ -1,4002 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" - integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== - dependencies: - "@babel/highlight" "^7.10.4" - -"@babel/core@^7.1.0", "@babel/core@^7.7.5": - version "7.12.3" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz" - integrity sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.1" - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helpers" "^7.12.1" - "@babel/parser" "^7.12.3" - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.12.1" - "@babel/types" "^7.12.1" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.1" - json5 "^2.1.2" - lodash "^4.17.19" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/generator@^7.12.1", "@babel/generator@^7.12.5": - version "7.12.5" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz" - integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A== - dependencies: - "@babel/types" "^7.12.5" - jsesc "^2.5.1" - source-map "^0.5.0" - -"@babel/helper-function-name@^7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz" - integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== - dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/helper-get-function-arity@^7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz" - integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== - dependencies: - "@babel/types" "^7.10.4" - -"@babel/helper-member-expression-to-functions@^7.12.1": - version "7.12.1" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz" - integrity sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ== - dependencies: - "@babel/types" "^7.12.1" - -"@babel/helper-module-imports@^7.12.1": - version "7.12.5" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz" - integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== - dependencies: - "@babel/types" "^7.12.5" - -"@babel/helper-module-transforms@^7.12.1": - version "7.12.1" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz" - integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== - dependencies: - "@babel/helper-module-imports" "^7.12.1" - "@babel/helper-replace-supers" "^7.12.1" - "@babel/helper-simple-access" "^7.12.1" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/helper-validator-identifier" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.12.1" - "@babel/types" "^7.12.1" - lodash "^4.17.19" - -"@babel/helper-optimise-call-expression@^7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz" - integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== - dependencies: - "@babel/types" "^7.10.4" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz" - integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== - -"@babel/helper-replace-supers@^7.12.1": - version "7.12.5" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz" - integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.12.1" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.12.5" - "@babel/types" "^7.12.5" - -"@babel/helper-simple-access@^7.12.1": - version "7.12.1" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz" - integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== - dependencies: - "@babel/types" "^7.12.1" - -"@babel/helper-split-export-declaration@^7.11.0": - version "7.11.0" - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz" - integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== - dependencies: - "@babel/types" "^7.11.0" - -"@babel/helper-validator-identifier@^7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz" - integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== - -"@babel/helpers@^7.12.1": - version "7.12.5" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz" - integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== - dependencies: - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.12.5" - "@babel/types" "^7.12.5" - -"@babel/highlight@^7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz" - integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.12.3", "@babel/parser@^7.12.5": - version "7.12.5" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz" - integrity sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ== - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.1" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz" - integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.12.1" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz" - integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/template@^7.10.4", "@babel/template@^7.3.3": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz" - integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/parser" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5": - version "7.12.5" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz" - integrity sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.12.5" - "@babel/types" "^7.12.5" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.19" - -"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": - version "7.12.6" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz" - integrity sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA== - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - lodash "^4.17.19" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@cnakazawa/watch@^1.0.3": - version "1.0.4" - resolved "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz" - integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== - dependencies: - exec-sh "^0.3.2" - minimist "^1.2.0" - -"@eslint/eslintrc@^0.2.1": - version "0.2.1" - resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz" - integrity sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA== - dependencies: - ajv "^6.12.4" - debug "^4.1.1" - espree "^7.3.0" - globals "^12.1.0" - ignore "^4.0.6" - import-fresh "^3.2.1" - js-yaml "^3.13.1" - lodash "^4.17.19" - minimatch "^3.0.4" - strip-json-comments "^3.1.1" - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.2" - resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz" - integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== - -"@jest/console@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz" - integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g== - dependencies: - "@jest/types" "^26.6.2" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^26.6.2" - jest-util "^26.6.2" - slash "^3.0.0" - -"@jest/core@^26.6.3": - version "26.6.3" - resolved "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz" - integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw== - dependencies: - "@jest/console" "^26.6.2" - "@jest/reporters" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-changed-files "^26.6.2" - jest-config "^26.6.3" - jest-haste-map "^26.6.2" - jest-message-util "^26.6.2" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-resolve-dependencies "^26.6.3" - jest-runner "^26.6.3" - jest-runtime "^26.6.3" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" - jest-watcher "^26.6.2" - micromatch "^4.0.2" - p-each-series "^2.1.0" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz" - integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA== - dependencies: - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - jest-mock "^26.6.2" - -"@jest/fake-timers@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz" - integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA== - dependencies: - "@jest/types" "^26.6.2" - "@sinonjs/fake-timers" "^6.0.1" - "@types/node" "*" - jest-message-util "^26.6.2" - jest-mock "^26.6.2" - jest-util "^26.6.2" - -"@jest/globals@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz" - integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA== - dependencies: - "@jest/environment" "^26.6.2" - "@jest/types" "^26.6.2" - expect "^26.6.2" - -"@jest/reporters@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz" - integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - chalk "^4.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.2" - graceful-fs "^4.2.4" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^4.0.3" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.0.2" - jest-haste-map "^26.6.2" - jest-resolve "^26.6.2" - jest-util "^26.6.2" - jest-worker "^26.6.2" - slash "^3.0.0" - source-map "^0.6.0" - string-length "^4.0.1" - terminal-link "^2.0.0" - v8-to-istanbul "^7.0.0" - optionalDependencies: - node-notifier "^8.0.0" - -"@jest/source-map@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz" - integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA== - dependencies: - callsites "^3.0.0" - graceful-fs "^4.2.4" - source-map "^0.6.0" - -"@jest/test-result@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz" - integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ== - dependencies: - "@jest/console" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^26.6.3": - version "26.6.3" - resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz" - integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw== - dependencies: - "@jest/test-result" "^26.6.2" - graceful-fs "^4.2.4" - jest-haste-map "^26.6.2" - jest-runner "^26.6.3" - jest-runtime "^26.6.3" - -"@jest/transform@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz" - integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA== - dependencies: - "@babel/core" "^7.1.0" - "@jest/types" "^26.6.2" - babel-plugin-istanbul "^6.0.0" - chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.4" - jest-haste-map "^26.6.2" - jest-regex-util "^26.0.0" - jest-util "^26.6.2" - micromatch "^4.0.2" - pirates "^4.0.1" - slash "^3.0.0" - source-map "^0.6.1" - write-file-atomic "^3.0.0" - -"@jest/types@^26.6.2": - version "26.6.2" - resolved "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz" - integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^15.0.0" - chalk "^4.0.0" - -"@sinonjs/commons@^1.7.0": - version "1.8.1" - resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz" - integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^6.0.1": - version "6.0.1" - resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz" - integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA== - dependencies: - "@sinonjs/commons" "^1.7.0" - -"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": - version "7.1.12" - resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz" - integrity sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.2" - resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz" - integrity sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.0" - resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz" - integrity sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": - version "7.0.15" - resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.15.tgz" - integrity sha512-Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A== - dependencies: - "@babel/types" "^7.3.0" - -"@types/graceful-fs@^4.1.2": - version "4.1.4" - resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz" - integrity sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg== - dependencies: - "@types/node" "*" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.3" - resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz" - integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== - -"@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.0" - resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz" - integrity sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/node@*": - version "14.14.7" - resolved "https://registry.npmjs.org/@types/node/-/node-14.14.7.tgz" - integrity sha512-Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY/OF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg== - -"@types/normalize-package-data@^2.4.0": - version "2.4.0" - resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz" - integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== - -"@types/prettier@^2.0.0": - version "2.1.5" - resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz" - integrity sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ== - -"@types/stack-utils@^2.0.0": - version "2.0.0" - resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz" - integrity sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw== - -"@types/yargs-parser@*": - version "15.0.0" - resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz" - integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== - -"@types/yargs@^15.0.0": - version "15.0.9" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.9.tgz" - integrity sha512-HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g== - dependencies: - "@types/yargs-parser" "*" - -abab@^2.0.3: - version "2.0.5" - resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz" - integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== - -acorn-globals@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz" - integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== - dependencies: - acorn "^7.1.1" - acorn-walk "^7.1.1" - -acorn-jsx@^5.2.0: - version "5.3.1" - resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz" - integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== - -acorn-walk@^7.1.1: - version "7.2.0" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn@^7.1.1, acorn@^7.4.0: - version "7.4.1" - resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4: - version "6.12.6" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-colors@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz" - integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== - -ansi-escapes@^4.2.1: - version "4.3.1" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz" - integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== - dependencies: - type-fest "^0.11.0" - -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - -ansi-regex@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" - integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== - -ansi-styles@^3.2.0, ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" - -anymatch@^3.0.3: - version "3.1.1" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz" - integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= - -asn1@~0.2.3: - version "0.2.4" - resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz" - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== - dependencies: - safer-buffer "~2.1.0" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= - -astral-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz" - integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= - -atob@^2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz" - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= - -aws4@^1.8.0: - version "1.11.0" - resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz" - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== - -babel-jest@^26.6.3: - version "26.6.3" - resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz" - integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA== - dependencies: - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/babel__core" "^7.1.7" - babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^26.6.2" - chalk "^4.0.0" - graceful-fs "^4.2.4" - slash "^3.0.0" - -babel-plugin-istanbul@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz" - integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^4.0.0" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz" - integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.0.0" - "@types/babel__traverse" "^7.0.6" - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz" - integrity sha512-mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - -babel-preset-jest@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz" - integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ== - dependencies: - babel-plugin-jest-hoist "^26.6.2" - babel-preset-current-node-syntax "^1.0.0" - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= - -base@^0.11.1: - version "0.11.2" - resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" - -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz" - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= - dependencies: - tweetnacl "^0.14.3" - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^2.3.1: - version "2.3.2" - resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - -braces@^3.0.1: - version "3.0.2" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -browser-process-hrtime@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" - integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase@^5.0.0, camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.0.0: - version "6.2.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" - integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== - -capture-exit@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz" - integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== - dependencies: - rsvp "^4.8.4" - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz" - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= - -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz" - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - -cjs-module-lexer@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz" - integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw== - -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" - -cliui@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" - integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^6.2.0" - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= - -collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -combined-stream@^1.0.6, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.7.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== - dependencies: - safe-buffer "~5.1.1" - -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - -core-util-is@1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - -cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^7.0.0, cross-spawn@^7.0.2: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -cssom@^0.4.4: - version "0.4.4" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz" - integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.2.0: - version "2.3.0" - resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== - dependencies: - cssom "~0.3.6" - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz" - integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= - dependencies: - assert-plus "^1.0.0" - -data-urls@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz" - integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== - dependencies: - abab "^2.0.3" - whatwg-mimetype "^2.3.0" - whatwg-url "^8.0.0" - -debug@^2.2.0, debug@^2.3.3: - version "2.6.9" - resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: - version "4.2.0" - resolved "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz" - integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== - dependencies: - ms "2.1.2" - -decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - -decimal.js@^10.2.0: - version "10.2.1" - resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz" - integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw== - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= - -deep-is@^0.1.3, deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= - -deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= - dependencies: - is-descriptor "^0.1.0" - -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - dependencies: - is-descriptor "^1.0.0" - -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -diff-sequences@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz" - integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -domexception@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz" - integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== - dependencies: - webidl-conversions "^5.0.0" - -dotenv@^8.2.0: - version "8.2.0" - resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz" - integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== - -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz" - integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= - dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" - -emittery@^0.7.1: - version "0.7.2" - resolved "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz" - integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ== - -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -enquirer@^2.3.5: - version "2.3.6" - resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" - integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== - dependencies: - ansi-colors "^4.1.1" - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escodegen@^1.14.1: - version "1.14.3" - resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz" - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== - dependencies: - esprima "^4.0.1" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -eslint-plugin-es@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz" - integrity sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ== - dependencies: - eslint-utils "^2.0.0" - regexpp "^3.0.0" - -eslint-plugin-json@^2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-2.1.2.tgz" - integrity sha512-isM/fsUxS4wN1+nLsWoV5T4gLgBQnsql3nMTr8u+cEls1bL8rRQO5CP5GtxJxaOfbcKqnz401styw+H/P+e78Q== - dependencies: - lodash "^4.17.19" - vscode-json-languageservice "^3.7.0" - -eslint-plugin-node@^11.1.0: - version "11.1.0" - resolved "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz" - integrity sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g== - dependencies: - eslint-plugin-es "^3.0.0" - eslint-utils "^2.0.0" - ignore "^5.1.1" - minimatch "^3.0.4" - resolve "^1.10.1" - semver "^6.1.0" - -eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -eslint-utils@^2.0.0, eslint-utils@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz" - integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== - dependencies: - eslint-visitor-keys "^1.1.0" - -eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" - integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== - -eslint-visitor-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz" - integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== - -eslint@^7.11.0: - version "7.13.0" - resolved "https://registry.npmjs.org/eslint/-/eslint-7.13.0.tgz" - integrity sha512-uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ== - dependencies: - "@babel/code-frame" "^7.0.0" - "@eslint/eslintrc" "^0.2.1" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.0.1" - doctrine "^3.0.0" - enquirer "^2.3.5" - eslint-scope "^5.1.1" - eslint-utils "^2.1.0" - eslint-visitor-keys "^2.0.0" - espree "^7.3.0" - esquery "^1.2.0" - esutils "^2.0.2" - file-entry-cache "^5.0.1" - functional-red-black-tree "^1.0.1" - glob-parent "^5.0.0" - globals "^12.1.0" - ignore "^4.0.6" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - js-yaml "^3.13.1" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash "^4.17.19" - minimatch "^3.0.4" - natural-compare "^1.4.0" - optionator "^0.9.1" - progress "^2.0.0" - regexpp "^3.1.0" - semver "^7.2.1" - strip-ansi "^6.0.0" - strip-json-comments "^3.1.0" - table "^5.2.3" - text-table "^0.2.0" - v8-compile-cache "^2.0.3" - -espree@^7.3.0: - version "7.3.0" - resolved "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz" - integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw== - dependencies: - acorn "^7.4.0" - acorn-jsx "^5.2.0" - eslint-visitor-keys "^1.3.0" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.2.0: - version "1.3.1" - resolved "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz" - integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1, estraverse@^4.2.0: - version "4.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.1.0, estraverse@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" - integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -exec-sh@^0.3.2: - version "0.3.4" - resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz" - integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== - -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz" - integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== - dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - human-signals "^1.1.1" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.0" - onetime "^5.1.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -expect@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz" - integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA== - dependencies: - "@jest/types" "^26.6.2" - ansi-styles "^4.0.0" - jest-get-type "^26.3.0" - jest-matcher-utils "^26.6.2" - jest-message-util "^26.6.2" - jest-regex-util "^26.0.0" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -extend@~3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -extglob@^2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -extsprintf@1.3.0, extsprintf@^1.2.0: - version "1.3.0" - resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz" - integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= - -fast-deep-equal@^3.1.1: - version "3.1.3" - resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fb-watchman@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz" - integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== - dependencies: - bser "2.1.1" - -file-entry-cache@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz" - integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== - dependencies: - flat-cache "^2.0.1" - -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -flat-cache@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz" - integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== - dependencies: - flatted "^2.0.0" - rimraf "2.6.3" - write "1.0.3" - -flatted@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz" - integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== - -for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" - integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= - dependencies: - map-cache "^0.2.2" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@^2.1.2: - version "2.2.1" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.2.1.tgz" - integrity sha512-bTLYHSeC0UH/EFXS9KqWnXuOl/wHK5Z/d+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -functional-red-black-tree@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz" - integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= - -gensync@^1.0.0-beta.1: - version "1.0.0-beta.2" - resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.1: - version "2.0.5" - resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-stream@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-stream@^5.0.0: - version "5.2.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz" - integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= - dependencies: - assert-plus "^1.0.0" - -glob-parent@^5.0.0: - version "5.1.1" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== - dependencies: - is-glob "^4.0.1" - -glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: - version "7.1.6" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^12.1.0: - version "12.4.0" - resolved "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz" - integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== - dependencies: - type-fest "^0.8.1" - -graceful-fs@^4.2.4: - version "4.2.4" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz" - integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== - -growly@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz" - integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz" - integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= - -har-validator@~5.1.3: - version "5.1.5" - resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz" - integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== - dependencies: - ajv "^6.12.3" - har-schema "^2.0.0" - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= - dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" - -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hosted-git-info@^2.1.4: - version "2.8.8" - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz" - integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== - -html-encoding-sniffer@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz" - integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== - dependencies: - whatwg-encoding "^1.0.5" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz" - integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -human-signals@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz" - integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== - -iconv-lite@0.4.24: - version "0.4.24" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -ignore@^4.0.6: - version "4.0.6" - resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz" - integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== - -ignore@^5.1.1: - version "5.1.8" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz" - integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== - -import-fresh@^3.0.0, import-fresh@^3.2.1: - version "3.2.2" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz" - integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-local@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz" - integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2: - version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ip-regex@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz" - integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= - -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= - -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== - dependencies: - ci-info "^2.0.0" - -is-core-module@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz" - integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA== - dependencies: - has "^1.0.3" - -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== - dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" - -is-docker@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz" - integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-glob@^4.0.0, is-glob@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== - dependencies: - is-extglob "^2.1.1" - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= - dependencies: - kind-of "^3.0.2" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-potential-custom-element-name@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz" - integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c= - -is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= - -is-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== - -is-typedarray@^1.0.0, is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= - -is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= - -istanbul-lib-coverage@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz" - integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== - -istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz" - integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== - dependencies: - "@babel/core" "^7.7.5" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.0.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz" - integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz" - integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -jest-changed-files@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz" - integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ== - dependencies: - "@jest/types" "^26.6.2" - execa "^4.0.0" - throat "^5.0.0" - -jest-cli@^26.6.3: - version "26.6.3" - resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz" - integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg== - dependencies: - "@jest/core" "^26.6.3" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.4" - import-local "^3.0.2" - is-ci "^2.0.0" - jest-config "^26.6.3" - jest-util "^26.6.2" - jest-validate "^26.6.2" - prompts "^2.0.1" - yargs "^15.4.1" - -jest-config@^26.6.3: - version "26.6.3" - resolved "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz" - integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg== - dependencies: - "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^26.6.3" - "@jest/types" "^26.6.2" - babel-jest "^26.6.3" - chalk "^4.0.0" - deepmerge "^4.2.2" - glob "^7.1.1" - graceful-fs "^4.2.4" - jest-environment-jsdom "^26.6.2" - jest-environment-node "^26.6.2" - jest-get-type "^26.3.0" - jest-jasmine2 "^26.6.3" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" - micromatch "^4.0.2" - pretty-format "^26.6.2" - -jest-diff@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz" - integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== - dependencies: - chalk "^4.0.0" - diff-sequences "^26.6.2" - jest-get-type "^26.3.0" - pretty-format "^26.6.2" - -jest-docblock@^26.0.0: - version "26.0.0" - resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz" - integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w== - dependencies: - detect-newline "^3.0.0" - -jest-each@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz" - integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A== - dependencies: - "@jest/types" "^26.6.2" - chalk "^4.0.0" - jest-get-type "^26.3.0" - jest-util "^26.6.2" - pretty-format "^26.6.2" - -jest-environment-jsdom@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz" - integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q== - dependencies: - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - jest-mock "^26.6.2" - jest-util "^26.6.2" - jsdom "^16.4.0" - -jest-environment-node@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz" - integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag== - dependencies: - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - jest-mock "^26.6.2" - jest-util "^26.6.2" - -jest-get-type@^26.3.0: - version "26.3.0" - resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz" - integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== - -jest-haste-map@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz" - integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w== - dependencies: - "@jest/types" "^26.6.2" - "@types/graceful-fs" "^4.1.2" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.4" - jest-regex-util "^26.0.0" - jest-serializer "^26.6.2" - jest-util "^26.6.2" - jest-worker "^26.6.2" - micromatch "^4.0.2" - sane "^4.0.3" - walker "^1.0.7" - optionalDependencies: - fsevents "^2.1.2" - -jest-jasmine2@^26.6.3: - version "26.6.3" - resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz" - integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg== - dependencies: - "@babel/traverse" "^7.1.0" - "@jest/environment" "^26.6.2" - "@jest/source-map" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - expect "^26.6.2" - is-generator-fn "^2.0.0" - jest-each "^26.6.2" - jest-matcher-utils "^26.6.2" - jest-message-util "^26.6.2" - jest-runtime "^26.6.3" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - pretty-format "^26.6.2" - throat "^5.0.0" - -jest-leak-detector@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz" - integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg== - dependencies: - jest-get-type "^26.3.0" - pretty-format "^26.6.2" - -jest-matcher-utils@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz" - integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw== - dependencies: - chalk "^4.0.0" - jest-diff "^26.6.2" - jest-get-type "^26.3.0" - pretty-format "^26.6.2" - -jest-message-util@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz" - integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA== - dependencies: - "@babel/code-frame" "^7.0.0" - "@jest/types" "^26.6.2" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.4" - micromatch "^4.0.2" - pretty-format "^26.6.2" - slash "^3.0.0" - stack-utils "^2.0.2" - -jest-mock@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz" - integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew== - dependencies: - "@jest/types" "^26.6.2" - "@types/node" "*" - -jest-pnp-resolver@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz" - integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== - -jest-regex-util@^26.0.0: - version "26.0.0" - resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz" - integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== - -jest-resolve-dependencies@^26.6.3: - version "26.6.3" - resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz" - integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg== - dependencies: - "@jest/types" "^26.6.2" - jest-regex-util "^26.0.0" - jest-snapshot "^26.6.2" - -jest-resolve@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz" - integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ== - dependencies: - "@jest/types" "^26.6.2" - chalk "^4.0.0" - graceful-fs "^4.2.4" - jest-pnp-resolver "^1.2.2" - jest-util "^26.6.2" - read-pkg-up "^7.0.1" - resolve "^1.18.1" - slash "^3.0.0" - -jest-runner@^26.6.3: - version "26.6.3" - resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz" - integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ== - dependencies: - "@jest/console" "^26.6.2" - "@jest/environment" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.7.1" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-config "^26.6.3" - jest-docblock "^26.0.0" - jest-haste-map "^26.6.2" - jest-leak-detector "^26.6.2" - jest-message-util "^26.6.2" - jest-resolve "^26.6.2" - jest-runtime "^26.6.3" - jest-util "^26.6.2" - jest-worker "^26.6.2" - source-map-support "^0.5.6" - throat "^5.0.0" - -jest-runtime@^26.6.3: - version "26.6.3" - resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz" - integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw== - dependencies: - "@jest/console" "^26.6.2" - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/globals" "^26.6.2" - "@jest/source-map" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/yargs" "^15.0.0" - chalk "^4.0.0" - cjs-module-lexer "^0.6.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.2.4" - jest-config "^26.6.3" - jest-haste-map "^26.6.2" - jest-message-util "^26.6.2" - jest-mock "^26.6.2" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" - slash "^3.0.0" - strip-bom "^4.0.0" - yargs "^15.4.1" - -jest-serializer@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz" - integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g== - dependencies: - "@types/node" "*" - graceful-fs "^4.2.4" - -jest-snapshot@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz" - integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og== - dependencies: - "@babel/types" "^7.0.0" - "@jest/types" "^26.6.2" - "@types/babel__traverse" "^7.0.4" - "@types/prettier" "^2.0.0" - chalk "^4.0.0" - expect "^26.6.2" - graceful-fs "^4.2.4" - jest-diff "^26.6.2" - jest-get-type "^26.3.0" - jest-haste-map "^26.6.2" - jest-matcher-utils "^26.6.2" - jest-message-util "^26.6.2" - jest-resolve "^26.6.2" - natural-compare "^1.4.0" - pretty-format "^26.6.2" - semver "^7.3.2" - -jest-util@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz" - integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q== - dependencies: - "@jest/types" "^26.6.2" - "@types/node" "*" - chalk "^4.0.0" - graceful-fs "^4.2.4" - is-ci "^2.0.0" - micromatch "^4.0.2" - -jest-validate@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz" - integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ== - dependencies: - "@jest/types" "^26.6.2" - camelcase "^6.0.0" - chalk "^4.0.0" - jest-get-type "^26.3.0" - leven "^3.1.0" - pretty-format "^26.6.2" - -jest-watcher@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz" - integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ== - dependencies: - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - jest-util "^26.6.2" - string-length "^4.0.1" - -jest-worker@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz" - integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^7.0.0" - -jest@^26.4.2: - version "26.6.3" - resolved "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz" - integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q== - dependencies: - "@jest/core" "^26.6.3" - import-local "^3.0.2" - jest-cli "^26.6.3" - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.0" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz" - integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz" - integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= - -jsdom@^16.4.0: - version "16.4.0" - resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz" - integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w== - dependencies: - abab "^2.0.3" - acorn "^7.1.1" - acorn-globals "^6.0.0" - cssom "^0.4.4" - cssstyle "^2.2.0" - data-urls "^2.0.0" - decimal.js "^10.2.0" - domexception "^2.0.1" - escodegen "^1.14.1" - html-encoding-sniffer "^2.0.1" - is-potential-custom-element-name "^1.0.0" - nwsapi "^2.2.0" - parse5 "5.1.1" - request "^2.88.2" - request-promise-native "^1.0.8" - saxes "^5.0.0" - symbol-tree "^3.2.4" - tough-cookie "^3.0.1" - w3c-hr-time "^1.0.2" - w3c-xmlserializer "^2.0.0" - webidl-conversions "^6.1.0" - whatwg-encoding "^1.0.5" - whatwg-mimetype "^2.3.0" - whatwg-url "^8.0.0" - ws "^7.2.3" - xml-name-validator "^3.0.0" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema@0.2.3: - version "0.2.3" - resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz" - integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" - integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= - -json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= - -json5@^2.1.2: - version "2.1.3" - resolved "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz" - integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== - dependencies: - minimist "^1.2.5" - -jsonc-parser@^2.3.1: - version "2.3.1" - resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz" - integrity sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg== - -jsprim@^1.2.2: - version "1.4.1" - resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz" - integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.2.3" - verror "1.10.0" - -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= - dependencies: - is-buffer "^1.1.5" - -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= - dependencies: - is-buffer "^1.1.5" - -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -lines-and-columns@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" - integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash.sortby@^4.7.0: - version "4.7.0" - resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= - -lodash@^4.17.14, lodash@^4.17.19: - version "4.17.20" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz" - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== - -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -makeerror@1.0.x: - version "1.0.11" - resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= - dependencies: - tmpl "1.0.x" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= - dependencies: - object-visit "^1.0.0" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -micromatch@^3.1.4: - version "3.1.10" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.2" - -micromatch@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz" - integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== - dependencies: - braces "^3.0.1" - picomatch "^2.0.5" - -mime-db@1.44.0: - version "1.44.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz" - integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== - -mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.27" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz" - integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== - dependencies: - mime-db "1.44.0" - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - -mixin-deep@^1.2.0: - version "1.3.2" - resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== - dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" - -mkdirp@^0.5.1: - version "0.5.5" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz" - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== - dependencies: - minimist "^1.2.5" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -nanomatch@^1.2.9: - version "1.2.13" - resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -node-fetch@^2.6.1: - version "2.6.1" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" - integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= - -node-modules-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz" - integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= - -node-notifier@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz" - integrity sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA== - dependencies: - growly "^1.3.0" - is-wsl "^2.2.0" - semver "^7.3.2" - shellwords "^0.1.1" - uuid "^8.3.0" - which "^2.0.2" - -normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= - dependencies: - remove-trailing-separator "^1.0.1" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - dependencies: - path-key "^2.0.0" - -npm-run-path@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -nwsapi@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz" - integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" - -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= - dependencies: - isobject "^3.0.0" - -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - dependencies: - isobject "^3.0.1" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -onetime@^5.1.0: - version "5.1.2" - resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.3" - -p-each-series@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz" - integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ== - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-json@^5.0.0: - version "5.1.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz" - integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse5@5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz" - integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== - -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-key@^2.0.0, path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz" - integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= - -picomatch@^2.0.4, picomatch@^2.0.5: - version "2.2.2" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz" - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== - -pirates@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz" - integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== - dependencies: - node-modules-regexp "^1.0.0" - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - -pretty-format@^26.6.2: - version "26.6.2" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz" - integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== - dependencies: - "@jest/types" "^26.6.2" - ansi-regex "^5.0.0" - ansi-styles "^4.0.0" - react-is "^17.0.1" - -progress@^2.0.0: - version "2.0.3" - resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -prompts@^2.0.1: - version "2.4.0" - resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz" - integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -psl@^1.1.28: - version "1.8.0" - resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz" - integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -qs@^6.9.4: - version "6.9.4" - resolved "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz" - integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== - -qs@~6.5.2: - version "6.5.2" - resolved "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz" - integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== - -ramda@^0.27.1: - version "0.27.1" - resolved "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz" - integrity sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw== - -react-is@^17.0.1: - version "17.0.1" - resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz" - integrity sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA== - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - -regexpp@^3.0.0, regexpp@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz" - integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== - -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - -repeat-element@^1.1.2: - version "1.1.3" - resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== - -repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= - -request-promise-core@1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz" - integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== - dependencies: - lodash "^4.17.19" - -request-promise-native@^1.0.8: - version "1.0.9" - resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz" - integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== - dependencies: - request-promise-core "1.1.4" - stealthy-require "^1.1.1" - tough-cookie "^2.3.3" - -request@^2.88.2: - version "2.88.2" - resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.3" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.5.0" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= - -resolve@^1.10.0, resolve@^1.10.1, resolve@^1.18.1, resolve@^1.3.2: - version "1.19.0" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz" - integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== - dependencies: - is-core-module "^2.1.0" - path-parse "^1.0.6" - -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - -rimraf@2.6.3: - version "2.6.3" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - dependencies: - glob "^7.1.3" - -rimraf@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -rsvp@^4.8.4: - version "4.8.5" - resolved "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz" - integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== - -safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= - dependencies: - ret "~0.1.10" - -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: - version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sane@^4.0.3: - version "4.1.0" - resolved "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz" - integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== - dependencies: - "@cnakazawa/watch" "^1.0.3" - anymatch "^2.0.0" - capture-exit "^2.0.0" - exec-sh "^0.3.2" - execa "^1.0.0" - fb-watchman "^2.0.0" - micromatch "^3.1.4" - minimist "^1.1.1" - walker "~1.0.5" - -saxes@^5.0.0: - version "5.0.1" - resolved "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz" - integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== - dependencies: - xmlchars "^2.2.0" - -"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0: - version "5.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^6.0.0, semver@^6.1.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.2.1, semver@^7.3.2: - version "7.3.2" - resolved "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz" - integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - -set-value@^2.0.0, set-value@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= - dependencies: - shebang-regex "^1.0.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shellwords@^0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - -signal-exit@^3.0.0, signal-exit@^3.0.2: - version "3.0.3" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz" - integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slice-ansi@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz" - integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== - dependencies: - ansi-styles "^3.2.0" - astral-regex "^1.0.0" - is-fullwidth-code-point "^2.0.0" - -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" - -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - dependencies: - kind-of "^3.2.0" - -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== - dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" - -source-map-resolve@^0.5.0: - version "0.5.3" - resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz" - integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== - dependencies: - atob "^2.1.2" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" - -source-map-support@^0.5.6: - version "0.5.19" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= - -source-map@^0.5.0, source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.7.3: - version "0.7.3" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - -spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.6" - resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz" - integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw== - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= - -sshpk@^1.7.0: - version "1.16.1" - resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - bcrypt-pbkdf "^1.0.0" - dashdash "^1.12.0" - ecc-jsbn "~0.1.1" - getpass "^0.1.1" - jsbn "~0.1.0" - safer-buffer "^2.0.2" - tweetnacl "~0.14.0" - -stack-utils@^2.0.2: - version "2.0.3" - resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz" - integrity sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw== - dependencies: - escape-string-regexp "^2.0.0" - -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= - dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - -stealthy-require@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz" - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= - -string-length@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz" - integrity sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -string-width@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - -string-width@^4.1.0, string-width@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz" - integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.0" - -strip-ansi@^5.1.0: - version "5.2.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - -strip-ansi@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== - dependencies: - ansi-regex "^5.0.0" - -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-hyperlinks@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz" - integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -symbol-tree@^3.2.4: - version "3.2.4" - resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -table@^5.2.3: - version "5.4.6" - resolved "https://registry.npmjs.org/table/-/table-5.4.6.tgz" - integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== - dependencies: - ajv "^6.10.2" - lodash "^4.17.14" - slice-ansi "^2.1.0" - string-width "^3.0.0" - -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= - -throat@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz" - integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== - -tmpl@1.0.x: - version "1.0.4" - resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz" - integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= - -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= - dependencies: - kind-of "^3.0.2" - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -to-regex@^3.0.1, to-regex@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - -tough-cookie@^2.3.3, tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - -tough-cookie@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz" - integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== - dependencies: - ip-regex "^2.1.0" - psl "^1.1.28" - punycode "^2.1.1" - -tr46@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz" - integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg== - dependencies: - punycode "^2.1.1" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= - dependencies: - safe-buffer "^5.0.1" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - dependencies: - prelude-ls "~1.1.2" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.11.0: - version "0.11.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz" - integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" - -union-value@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^2.0.1" - -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= - dependencies: - has-value "^0.3.1" - isobject "^3.0.0" - -uri-js@^4.2.2: - version "4.4.0" - resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz" - integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== - dependencies: - punycode "^2.1.0" - -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= - -use@^3.1.0: - version "3.1.1" - resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - -uuid@^3.3.2: - version "3.4.0" - resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz" - integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - -uuid@^8.3.0: - version "8.3.1" - resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz" - integrity sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg== - -v8-compile-cache@^2.0.3: - version "2.2.0" - resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz" - integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== - -v8-to-istanbul@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.0.0.tgz" - integrity sha512-fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - source-map "^0.7.3" - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -vscode-json-languageservice@^3.7.0: - version "3.10.0" - resolved "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.10.0.tgz" - integrity sha512-8IvuRSQnjznu+obqy6Dy4S4H68Ke7a3Kb+A0FcdctyAMAWEnrORpCpMOMqEYiPLm/OTYLVWJ7ql3qToDTozu4w== - dependencies: - jsonc-parser "^2.3.1" - vscode-languageserver-textdocument "^1.0.1" - vscode-languageserver-types "3.16.0-next.2" - vscode-nls "^5.0.0" - vscode-uri "^2.1.2" - -vscode-languageserver-textdocument@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz" - integrity sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA== - -vscode-languageserver-types@3.16.0-next.2: - version "3.16.0-next.2" - resolved "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0-next.2.tgz" - integrity sha512-QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q== - -vscode-nls@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz" - integrity sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA== - -vscode-uri@^2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz" - integrity sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A== - -w3c-hr-time@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" - integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== - dependencies: - browser-process-hrtime "^1.0.0" - -w3c-xmlserializer@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz" - integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== - dependencies: - xml-name-validator "^3.0.0" - -walker@^1.0.7, walker@~1.0.5: - version "1.0.7" - resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= - dependencies: - makeerror "1.0.x" - -webidl-conversions@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz" - integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== - -webidl-conversions@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz" - integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== - -whatwg-encoding@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== - dependencies: - iconv-lite "0.4.24" - -whatwg-mimetype@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== - -whatwg-url@^8.0.0: - version "8.4.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz" - integrity sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^2.0.2" - webidl-conversions "^6.1.0" - -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= - -which@^1.2.9: - version "1.3.1" - resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1, which@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -write-file-atomic@^3.0.0: - version "3.0.3" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" - integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== - dependencies: - imurmurhash "^0.1.4" - is-typedarray "^1.0.0" - signal-exit "^3.0.2" - typedarray-to-buffer "^3.1.5" - -write@1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/write/-/write-1.0.3.tgz" - integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== - dependencies: - mkdirp "^0.5.1" - -ws@^7.2.3: - version "7.4.0" - resolved "https://registry.npmjs.org/ws/-/ws-7.4.0.tgz" - integrity sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ== - -xml-name-validator@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== - -xmlchars@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== - -y18n@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== - -yargs-parser@^18.1.2: - version "18.1.3" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" - integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs@^15.4.1: - version "15.4.1" - resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" - integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== - dependencies: - cliui "^6.0.0" - decamelize "^1.2.0" - find-up "^4.1.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^4.2.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^18.1.2"