diff --git a/.env b/.env.example similarity index 100% rename from .env rename to .env.example diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 3970a803f..d64517868 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,12 +1,15 @@ - +## Requirements +Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above. -### Requirements -- [x] You're not using Vercel or Netlify. -- [x] You have completed your website, there's no type of placeholder at the website. *This requirement is optional if you are registering a domain for emails.* -- [x] The website is reachable. -- [x] The CNAME record doesn't contain `https://` or `/`. -- [x] There is sufficient information at the `owner` field. - - *You should have your email presented. If you don't want to share email, you can leave email an empty string (`""`) and add any other social such as Discord/Twitter/etc.* +Please note that we reserve the rights not to accept any domain at our own discretion. -### Link to Website - +- [ ] The file is in the `domains` folder and is in the JSON format. +- [ ] 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. + + +## 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 e31889d09..1c5f7d0ca 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -1,23 +1,16 @@ name: Checks -on: [pull_request] +on: [pull_request, workflow_dispatch] jobs: validation: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 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 - - name: Run tests - uses: borales/actions-yarn@v2.0.0 - with: - cmd: test + bun-version: 1.0.3 + - run: bun install + - run: bun test diff --git a/.github/workflows/publish-records.yml b/.github/workflows/publish-records.yml index 92cb4bd01..522179f4d 100644 --- a/.github/workflows/publish-records.yml +++ b/.github/workflows/publish-records.yml @@ -11,17 +11,16 @@ jobs: if: github.repository == 'is-a-dev/register' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: borales/actions-yarn@v2.0.0 + - uses: actions/checkout@v3 + - 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: 1.0.3 + - 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 +28,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/stale.yml b/.github/workflows/stale.yml index 786060ccc..f4cc4fe4a 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: 14 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/.github/workflows/wildcard.yml b/.github/workflows/wildcard.yml new file mode 100644 index 000000000..b7622fc2d --- /dev/null +++ b/.github/workflows/wildcard.yml @@ -0,0 +1,69 @@ +name: Wildcard temp record + +on: + workflow_dispatch: + inputs: + recordcontent: + description: "Record Content" + required: true + default: "warning" + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Generate JSON file + run: | + echo '{ + "owner": { + "username": "is-a-dev", + "email": "hello@maintainers.is-a.dev" + }, + "record": { + "TXT": "${{ github.event.inputs.recordcontent }}" + } + }' > ./domains/_acme-challenge.json + + - name: test + run: cat domains/_acme-challenge.json + + - uses: oven-sh/setup-bun@v1 + with: + bun-version: 1.0.3 + - run: bun install + + - name: Publishing records + env: + CI: 1 + NODE_ENV: production + ENV: production + DOMAIN_USER: ${{ secrets.DOMAIN_USER }} + DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }} + DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }} + DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }} + DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }} + DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }} + run: bun run publish-records + - name: Sleep + run: sleep 10m + shell: bash + + - name: Remove + run: rm domains/_acme-challenge.json + shell: bash + + - name: removing records + env: + CI: 1 + NODE_ENV: production + ENV: production + DOMAIN_USER: ${{ secrets.DOMAIN_USER }} + DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }} + DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }} + DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }} + DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }} + DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }} + run: bun run publish-records 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 581058a51..8baab2bf1 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,9 +1,11 @@ -# Code of conduct +# Code of Conduct This is a Code of Conduct for any interactions in this repository. This includes pull requests, issues, etc. -* **Don't be a dick** - It's not that complicated. Just be nice to people. -* **Don't abuse the service** - This service is intended for developers to get a cleaner URL for their personal websites. -* **No Wrongful Uses Of The Service** - Do not use this site as a way, to promote hacking, scams, fraud, and other illegal activites. +- **Use common sense** - It's not that complicated. Just be nice to people. +- **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/README.md b/README.md index 526a4220e..a550559cc 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,34 @@ -![is-a-dev Banner](https://raw.githubusercontent.com/is-a-dev/register/main/media/banner.png) +

+ is-a-dev Banner +

+ +

+ Domains + Open Pull Requests + Open Issues +

is-a.dev

-

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

+

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

-## Registration -Try out our new fast and easy subdomain registration service [here](https://register.is-a.dev)! +

+ Discord Server +

-Or via the CI +## Issues -```bash - npm install @is-a-dev/cli -g - is-a-dev create -``` +If you have any problems then feel free to open a issue on github. +If you have an issue that contains confidental infomation then email hello@maintainers.is-a.dev any other emails will be ignored. -**Manual Registration**: +## Register + +### Automated Registration +Easiest method: Use the [manage website](https://manage.is-a.dev), sign in with your GitHub account and click the register page in the navbar. Fill out some questions and it will all happen automatically! + +Another method is to join our [Discord server](https://discord.gg/PZCGHz4RhQ), 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. + +### Manual Registration - [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). @@ -22,19 +36,32 @@ Or via the CI - After the pull request is merged, please allow up to 24 hours for the changes to propagate. - Enjoy your new `.is-a.dev` domain! -## Status -You can check the uptime of the service via our [status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw). +### CLI Registration +For issues with the CLI, **DO NOT OPEN AN ISSUE ON THIS REPOSITORY**, instead open an issue [here](https://github.com/wdhdev/is-a-dev-cli/issues/new). -[![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) +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 +``` + +## Status +You can check the uptime of our services on our [status dashboard](https://status.is-a.dev). ### Similar Services -- [is-a-good.dev](https://github.com/is-a-good-dev/register) -- [thedev.id](https://github.com/thedev-id/thedev.id) -- [is-not-a.dev](https://is-not-a.dev) -- [is-really.cool](https://github.com/is-really-cool/register) -- [cluster.ws & wip.la](https://github.com/Olivr/free-domain) -- [js.org](https://github.com/js-org/js.org) (*JavaScript projects only*) +If you want to find services similar to is-a.dev, take a look on [free-for.life](https://free-for.life/#/?id=domains). ### Donate If you like this project, please consider donating so we can keep this project running forever! diff --git a/SECURITY.md b/SECURITY.md index b382809f4..27e5fc6e0 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 repo. -For higher severity vulnerabilities and bugs, kindly email them to me at [akshay-n0@protonmail.com](mailto:akshay-n0@protonmail.com). + +For higher severity vulnerabilities and bugs, please email the maintainers at [hello@maintainers.is-a.dev](mailto:hello@maintainers.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..f12b139a1 --- /dev/null +++ b/domains/00.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "rayrsn@proton.me" + }, + "record": { + "URL": "https://rayr.link" + } +} diff --git a/domains/00001.json b/domains/00001.json index 9aef9da6d..9bfd58afc 100644 --- a/domains/00001.json +++ b/domains/00001.json @@ -1,11 +1,11 @@ { - "description": "SatyamV7.is-a.dev", - "repo": "https://github.com/SatyamV7/SatyamV7.github.io", - "owner": { - "username": "SatyamV7", - "email": "satyamverma46@outlook.com" - }, - "record": { - "CNAME": "SatyamV7.github.io" - } + "description": "SatyamV7.is-a.dev", + "repo": "https://github.com/SatyamV7/SatyamV7.github.io", + "owner": { + "username": "SatyamV7", + "email": "satyamverma46@outlook.com" + }, + "record": { + "CNAME": "SatyamV7.github.io" + } } diff --git a/domains/01.json b/domains/01.json new file mode 100644 index 000000000..f12b139a1 --- /dev/null +++ b/domains/01.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "rayrsn@proton.me" + }, + "record": { + "URL": "https://rayr.link" + } +} diff --git a/domains/0ad.json b/domains/0ad.json new file mode 100644 index 000000000..92bab7200 --- /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/0bun.json b/domains/0bun.json new file mode 100644 index 000000000..4adae4bfb --- /dev/null +++ b/domains/0bun.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "zerobun", + "email": "tareku2003@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/0x0.json b/domains/0x0.json index 050170310..63ceb45a8 100644 --- a/domains/0x0.json +++ b/domains/0x0.json @@ -1,13 +1,13 @@ { - "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": { - "CNAME": "insomnia247.nl" - } + "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": { + "CNAME": "insomnia247.nl" + } } diff --git a/domains/0x3st.json b/domains/0x3st.json index a9a3f8263..a70c76c1e 100644 --- a/domains/0x3st.json +++ b/domains/0x3st.json @@ -1,12 +1,12 @@ { - "description": "Yamaishi's website", - "repo": "https://github.com/0x3st/0x3st.github.io", - "owner": { - "username": "0x3st", - "email": "t.yamaishi@qq.com", - "twitter": "TenkutiYamaishi" - }, - "record": { - "CNAME": "0x3st.github.io" - } + "description": "Yamaishi's website", + "repo": "https://github.com/0x3st/0x3st.github.io", + "owner": { + "username": "0x3st", + "email": "t.yamaishi@qq.com", + "twitter": "TenkutiYamaishi" + }, + "record": { + "CNAME": "0x3st.github.io" + } } diff --git a/domains/0xaryan.json b/domains/0xaryan.json new file mode 100644 index 000000000..aeeb2c4fc --- /dev/null +++ b/domains/0xaryan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aryan-212", + "email": "aryananandxic07@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/0xflotus.json b/domains/0xflotus.json index ac0e446cc..874c434d5 100644 --- a/domains/0xflotus.json +++ b/domains/0xflotus.json @@ -1,11 +1,11 @@ { - "description": "0xflotus' personal developer website", - "repo": "https://github.com/0xflotus/0xflotus.github.io", - "owner": { - "username": "0xflotus", - "email": "0xflotus@gmail.com" - }, - "record": { - "CNAME": "0xflotus.github.io" - } + "description": "0xflotus' personal developer website", + "repo": "https://github.com/0xflotus/0xflotus.github.io", + "owner": { + "username": "0xflotus", + "email": "0xflotus@gmail.com" + }, + "record": { + "CNAME": "0xflotus.github.io" + } } diff --git a/domains/0xviel.json b/domains/0xviel.json index 32f519919..342e28801 100644 --- a/domains/0xviel.json +++ b/domains/0xviel.json @@ -1,12 +1,12 @@ { - "description": "0xviel github page", - "repo": "https://github.com/nobuyaki/nobuyaki.github.io", - "owner": { - "username": "nobuyaki", - "email": "contact@0xviel.my.id", - "discord": "445073800850046977" - }, - "record": { - "CNAME": "nobuyaki.github.io" - } + "description": "0xviel github page", + "repo": "https://github.com/nobuyaki/nobuyaki.github.io", + "owner": { + "username": "nobuyaki", + "email": "contact@0xviel.my.id", + "discord": "445073800850046977" + }, + "record": { + "CNAME": "nobuyaki.github.io" + } } diff --git a/domains/1024.json b/domains/1024.json new file mode 100644 index 000000000..457912853 --- /dev/null +++ b/domains/1024.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cy920820", + "email": "cuiyang673308817@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/123.json b/domains/123.json new file mode 100644 index 000000000..529c35c6c --- /dev/null +++ b/domains/123.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NuroHimself", + "email": "nurorust2023@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/1ly4s0.json b/domains/1ly4s0.json new file mode 100644 index 000000000..c1b07732a --- /dev/null +++ b/domains/1ly4s0.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "1ly4s0", + "email": "ilyaslamzouri2@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/1rogman.json b/domains/1rogman.json index 693de4e20..db16e313d 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/207.json b/domains/207.json new file mode 100644 index 000000000..69067d1b4 --- /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..342630f45 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/20gn.json b/domains/20gn.json new file mode 100644 index 000000000..2e996496d --- /dev/null +++ b/domains/20gn.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "20GN", + "email": "da20gn@outlook.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/21z.json b/domains/21z.json new file mode 100644 index 000000000..827a7ea01 --- /dev/null +++ b/domains/21z.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "21Z", + "email": "hamdankalliyil@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/2fa.phoenix.json b/domains/2fa.phoenix.json new file mode 100644 index 000000000..189cb852b --- /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/37cut.json b/domains/37cut.json new file mode 100644 index 000000000..3f8040e76 --- /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/3kh0.json b/domains/3kh0.json new file mode 100644 index 000000000..0c3b4c076 --- /dev/null +++ b/domains/3kh0.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "3kh0", + "email": "echo-the-coder@tuta.io" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/3pls0de.json b/domains/3pls0de.json index 849a5e20c..1ab690702 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/404.json b/domains/404.json new file mode 100644 index 000000000..526c6b323 --- /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/44.json b/domains/44.json new file mode 100644 index 000000000..acfa04f77 --- /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/4d62.json b/domains/4d62.json new file mode 100644 index 000000000..3ec25e3b4 --- /dev/null +++ b/domains/4d62.json @@ -0,0 +1,11 @@ +{ + "description": "Personal profile", + "repo": "https://github.com/4d62/4d62.github.io", + "owner": { + "username": "4d62", + "email": "4d62@proton.me" + }, + "record": { + "CNAME": "4d62.github.io" + } +} diff --git a/domains/4k5h4y.json b/domains/4k5h4y.json index c553aff26..6b3a66c96 100644 --- a/domains/4k5h4y.json +++ b/domains/4k5h4y.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "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/4kh0.json b/domains/4kh0.json new file mode 100644 index 000000000..bfa0623b9 --- /dev/null +++ b/domains/4kh0.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EurekaMathSkillIssue", + "email": "ataharmolla@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/600.json b/domains/600.json index a8d626411..7fa42144b 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..5d3141892 --- /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/6502.json b/domains/6502.json index 8843bd54d..a89b320e2 100644 --- a/domains/6502.json +++ b/domains/6502.json @@ -1,11 +1,11 @@ { - "description": "Portfolio website for 6502", - "repo": "https://github.com/nobody5050/nobody5050.github.io", - "owner": { - "username": "Nobody5050", - "email": "levibelland@gmail.com" - }, - "record": { - "CNAME": "nobody5050.github.io" - } + "description": "Portfolio website for 6502", + "repo": "https://github.com/nobody5050/nobody5050.github.io", + "owner": { + "username": "Nobody5050", + "email": "levibelland@gmail.com" + }, + "record": { + "CNAME": "nobody5050.github.io" + } } diff --git a/domains/70a5.json b/domains/70a5.json new file mode 100644 index 000000000..99f2d8448 --- /dev/null +++ b/domains/70a5.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "70A5", + "email": "joas.van.der.eerden@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/9yma.net.json b/domains/9yma.net.json new file mode 100644 index 000000000..3bfd2f73f --- /dev/null +++ b/domains/9yma.net.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "baratt-88", + "email": "anisaputry0708@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/@.json b/domains/@.json index 36cd14e7b..56f1851e8 100644 --- a/domains/@.json +++ b/domains/@.json @@ -1,11 +1,11 @@ { - "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" - }, - "record": { - "URL": "http://www.is-a.dev" - } + "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" + }, + "record": { + "URL": "http://www.is-a.dev" + } } diff --git a/domains/_discord.0xviel.json b/domains/_discord.0xviel.json new file mode 100644 index 000000000..e06950f22 --- /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.alpha.json b/domains/_discord.alpha.json new file mode 100644 index 000000000..55dd40074 --- /dev/null +++ b/domains/_discord.alpha.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "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..98bc1dba9 --- /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.api.stefdp.json b/domains/_discord.api.stefdp.json new file mode 100644 index 000000000..2b3f4ed36 --- /dev/null +++ b/domains/_discord.api.stefdp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "TXT": "dh=e71ddcd3beca6bbd44125eb4d861d4cf28eed0c8" + } +} diff --git a/domains/_discord.cutedog5695.json b/domains/_discord.cutedog5695.json new file mode 100644 index 000000000..a5a5a6012 --- /dev/null +++ b/domains/_discord.cutedog5695.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "cutedog5695@gmail.com", + "discord": "cutedog5695", + "twitter": "cutedog5695" + }, + "record": { + "TXT": "dh=f85ce7cf4e6ff1f6136767a12c041fbbcb446045" + } +} diff --git a/domains/_discord.dashboard.gattinhosbot.json b/domains/_discord.dashboard.gattinhosbot.json new file mode 100644 index 000000000..557328c83 --- /dev/null +++ b/domains/_discord.dashboard.gattinhosbot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "stefano.delprete.08@gmail.com" + }, + "record": { + "TXT": "dh=8fb11c7ecad141914be5cc41aa1b4569dcd14f6c" + } +} diff --git a/domains/_discord.dyno.json b/domains/_discord.dyno.json new file mode 100644 index 000000000..4390e6390 --- /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.enderpoint.json b/domains/_discord.enderpoint.json new file mode 100644 index 000000000..760e1edb2 --- /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.gattinhosbot.json b/domains/_discord.gattinhosbot.json new file mode 100644 index 000000000..2ddfbbf41 --- /dev/null +++ b/domains/_discord.gattinhosbot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "TXT": "dh=03933534192052d1ca904fb933de9acde3b4ed48" + } +} diff --git a/domains/_discord.hchs-bot.json b/domains/_discord.hchs-bot.json new file mode 100644 index 000000000..499b83c06 --- /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.jadebetty.json b/domains/_discord.jadebetty.json new file mode 100644 index 000000000..1f2b319a4 --- /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..363a429d5 --- /dev/null +++ b/domains/_discord.jirafey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jirafey", + "email": "jirafey@tuta.io" + }, + "record": { + "TXT": "dh=3c80d94ed181b223255b5fbf35f8fda6a402058f" + } +} diff --git a/domains/_discord.kleb.json b/domains/_discord.kleb.json new file mode 100644 index 000000000..620d054d6 --- /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.krazy.json b/domains/_discord.krazy.json new file mode 100644 index 000000000..e4299a3a6 --- /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.neon.json b/domains/_discord.neon.json new file mode 100644 index 000000000..751eb6274 --- /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" + } +} \ No newline at end of file diff --git a/domains/_discord.orange.json b/domains/_discord.orange.json new file mode 100644 index 000000000..8d6997e4d --- /dev/null +++ b/domains/_discord.orange.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sahmed011", + "email": "sufyanmishal@gmail.com" + }, + "record": { + "TXT": "dh=7e7e671a8b44d02fde9ab6f6df7baf94086c96fd" + } +} diff --git a/domains/_discord.oxmc.json b/domains/_discord.oxmc.json new file mode 100644 index 000000000..a2d545a8c --- /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.receiptify.json b/domains/_discord.receiptify.json new file mode 100644 index 000000000..b4b582798 --- /dev/null +++ b/domains/_discord.receiptify.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "TXT": "dh=4ded2f0ba889f8dad38ad210e9a015c180dcc6c8" + } +} diff --git a/domains/_discord.sdp.json b/domains/_discord.sdp.json new file mode 100644 index 000000000..61a337e89 --- /dev/null +++ b/domains/_discord.sdp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "TXT": "dh=a34d656a6fb91723bfe4f87e413345df85ca74f7" + } +} diff --git a/domains/_discord.shing.json b/domains/_discord.shing.json new file mode 100644 index 000000000..aab849dc9 --- /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.stefdp.json b/domains/_discord.stefdp.json new file mode 100644 index 000000000..270e9428a --- /dev/null +++ b/domains/_discord.stefdp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "TXT": "dh=f6d71b43aecaa5a4ea3534d21f11f6b0e4559d8a" + } +} diff --git a/domains/_discord.tat2008.json b/domains/_discord.tat2008.json new file mode 100644 index 000000000..27778b99e --- /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.tomgxz.json b/domains/_discord.tomgxz.json new file mode 100644 index 000000000..070c5894a --- /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..16ce4cbfd --- /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.xiaoxi-tw.json b/domains/_discord.xiaoxi-tw.json new file mode 100644 index 000000000..d1ba73ad1 --- /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=9e975563be399e84dd4007a4638f27e79128dcab" + } +} diff --git a/domains/_discord.yfa.json b/domains/_discord.yfa.json new file mode 100644 index 000000000..16c3b5efc --- /dev/null +++ b/domains/_discord.yfa.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "dh=b8044fd4f0628a706be5fd878fae96886bae23b7" + } +} diff --git a/domains/_discord.ziyn.json b/domains/_discord.ziyn.json new file mode 100644 index 000000000..c050be621 --- /dev/null +++ b/domains/_discord.ziyn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ZiynCS", + "email": "NotZiyn@gmail.com" + }, + "record": { + "TXT": "dh=b7efba321635b7528ef7d9a605d747b343fa135d" + } +} \ No newline at end of file diff --git a/domains/_github-challenge-SpicyDevs-org.spicy.json b/domains/_github-challenge-SpicyDevs-org.spicy.json new file mode 100644 index 000000000..e6af619d0 --- /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..db1e677a9 --- /dev/null +++ b/domains/_github-challenge-is-a-dev-org.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + + "record": { + "TXT": "2c9dfbe7c8" + } +} diff --git a/domains/_github-challenge-yfadev-org.alpha.json b/domains/_github-challenge-yfadev-org.alpha.json new file mode 100644 index 000000000..ac9fe096c --- /dev/null +++ b/domains/_github-challenge-yfadev-org.alpha.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "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..99114f25d --- /dev/null +++ b/domains/_github-challenge-yfadev-org.yfa.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "3436b41d67" + } +} diff --git a/domains/_github-challenge-yfadev-org.yfadev.json b/domains/_github-challenge-yfadev-org.yfadev.json new file mode 100644 index 000000000..e7ee3c7b6 --- /dev/null +++ b/domains/_github-challenge-yfadev-org.yfadev.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "TXT": "ed3c92c01a" + } +} 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..6b1955b74 --- /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..fd3b72f06 --- /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-Adolar0042.adolar0042.json b/domains/_github-pages-challenge-Adolar0042.adolar0042.json new file mode 100644 index 000000000..38abcd5c9 --- /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-Arch881010.arch.json b/domains/_github-pages-challenge-Arch881010.arch.json new file mode 100644 index 000000000..180d212f0 --- /dev/null +++ b/domains/_github-pages-challenge-Arch881010.arch.json @@ -0,0 +1,13 @@ +{ + "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": "c1yd4.arch@inbox.testmail.app", + "discord": "arch1010", + "discord-id": "410248634593050627" + }, + "record": { + "TXT": "f7ef0429540150e9e2d26e968dc4de" + } +} diff --git a/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json b/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json new file mode 100644 index 000000000..838943fcc --- /dev/null +++ b/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "cutedog5695@gmail.com", + "discord": "cutedog5695", + "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..4543d155d --- /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-Diordnas.cassie.json b/domains/_github-pages-challenge-Diordnas.cassie.json new file mode 100644 index 000000000..8b903baa8 --- /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..fea4fdbf5 --- /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-LevaniVashadze.levani.json b/domains/_github-pages-challenge-LevaniVashadze.levani.json new file mode 100644 index 000000000..93a1a3eab --- /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-Noma4321.noma.json b/domains/_github-pages-challenge-Noma4321.noma.json new file mode 100644 index 000000000..4fc6c3265 --- /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-Sife-shuo.sife.json b/domains/_github-pages-challenge-Sife-shuo.sife.json new file mode 100644 index 000000000..e47131410 --- /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-Stacksyz.stacksyz.json b/domains/_github-pages-challenge-Stacksyz.stacksyz.json new file mode 100644 index 000000000..f87475ea1 --- /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-TorchedSammy.sammy.json b/domains/_github-pages-challenge-TorchedSammy.sammy.json new file mode 100644 index 000000000..60d74c0dc --- /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..556184ec3 --- /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-aakankshabhende.aakanksha.json b/domains/_github-pages-challenge-aakankshabhende.aakanksha.json new file mode 100644 index 000000000..275ab5b10 --- /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-acutewoof.acutewoof.json b/domains/_github-pages-challenge-acutewoof.acutewoof.json new file mode 100644 index 000000000..4245b70a1 --- /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..b02648add --- /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..d30d3bb88 --- /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-aldenizenmc.aldenizenmc.json b/domains/_github-pages-challenge-aldenizenmc.aldenizenmc.json new file mode 100644 index 000000000..b0ac5a460 --- /dev/null +++ b/domains/_github-pages-challenge-aldenizenmc.aldenizenmc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AldenizenMC", + "email": "aldenizen09@gmail.com" + }, + "record": { + "TXT": "3a73c3c550c151965f6781677b6d2d" + } +} diff --git a/domains/_github-pages-challenge-amalpotra.amarjeet.json b/domains/_github-pages-challenge-amalpotra.amarjeet.json new file mode 100644 index 000000000..099fc38b6 --- /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..957cf3eb5 --- /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..85a7981ac --- /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..018df0818 --- /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.api-docs.json b/domains/_github-pages-challenge-andrewstech.api-docs.json deleted file mode 100644 index 5ee487a99..000000000 --- a/domains/_github-pages-challenge-andrewstech.api-docs.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - - "record": { - "TXT": "1da68d46a844dc520679ed5171da1b" - } - } - diff --git a/domains/_github-pages-challenge-andrewstech.privacy.json b/domains/_github-pages-challenge-andrewstech.privacy.json deleted file mode 100644 index 6f9498ece..000000000 --- a/domains/_github-pages-challenge-andrewstech.privacy.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "null" - }, - "record": { - "TXT": "f4099fcae5cf0ea04f853bc649c5b1" - } - } - \ No newline at end of file diff --git a/domains/_github-pages-challenge-andyfaizan.andy.json b/domains/_github-pages-challenge-andyfaizan.andy.json new file mode 100644 index 000000000..b9d80f2af --- /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-anshtyagi0093.anshtyagi.json b/domains/_github-pages-challenge-anshtyagi0093.anshtyagi.json new file mode 100644 index 000000000..1136aacc8 --- /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..f644d9a2e --- /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..257fe1155 --- /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..d5c69a01f --- /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..ae74eff4c --- /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..e4b981af1 --- /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..0d3441db1 --- /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..3f682337f --- /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..774d76a90 --- /dev/null +++ b/domains/_github-pages-challenge-avellea.avellea.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "avellea", + "email": "is-a-dev@win11react.com" + }, + "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..5bfed34ce --- /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 new file mode 100644 index 000000000..58469efd5 --- /dev/null +++ b/domains/_github-pages-challenge-axviii3.axviii3.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AXVIII3", + "email": "anirbanrc2286@gmail.com" + }, + "record": { + "TXT": "f99b7081b391b0e77e8b9bd80ea50e" + } +} diff --git a/domains/_github-pages-challenge-ayvacs.ave.json b/domains/_github-pages-challenge-ayvacs.ave.json index 07951a5d8..f0c10d786 100644 --- a/domains/_github-pages-challenge-ayvacs.ave.json +++ b/domains/_github-pages-challenge-ayvacs.ave.json @@ -1,11 +1,11 @@ { - "description": "Personal site for github@ayvacs (GH Pages verification)", - "repo": "https://github.com/ayvacs/ayvacs.github.io", - "owner": { - "username": "ayvacs", - "email": "ayvacs@proton.me" - }, - "record": { - "TXT": "5a1e6c3195a98bf63ceba5a88f4be2" - } -} \ No newline at end of file + "description": "Personal site for github@ayvacs (GH Pages verification)", + "repo": "https://github.com/ayvacs/ayvacs.github.io", + "owner": { + "username": "ayvacs", + "email": "ayvacs@proton.me" + }, + "record": { + "TXT": "5a1e6c3195a98bf63ceba5a88f4be2" + } +} 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..121d73e1e --- /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-bad-boy-codes.semant.json b/domains/_github-pages-challenge-bad-boy-codes.semant.json deleted file mode 100644 index fdb83da00..000000000 --- a/domains/_github-pages-challenge-bad-boy-codes.semant.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Bad-Boy-Codes", - "email": "contact@mail.badboy.is-a.dev" - }, - "record": { - "TXT":"137038fe5e46e3f5a6859e5985b8fd" - } -} diff --git a/domains/_github-pages-challenge-berzcode.saurabhkirve.json b/domains/_github-pages-challenge-berzcode.saurabhkirve.json new file mode 100644 index 000000000..a4f402de8 --- /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..c24215daa --- /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..50565643e --- /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..fad6d3d7a --- /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..b0595747d --- /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..49e09b122 --- /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-boredcodebyk.boredcodebyk.json b/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json new file mode 100644 index 000000000..08a7feb51 --- /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..bd5de8f82 --- /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..073aabc3b --- /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-cfhoiril.iamchoiiril.json b/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json new file mode 100644 index 000000000..5d89dfc4b --- /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-charmingdisorder.alexey.json b/domains/_github-pages-challenge-charmingdisorder.alexey.json new file mode 100644 index 000000000..6738fc537 --- /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..ffea13a10 --- /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..e6d64eee0 --- /dev/null +++ b/domains/_github-pages-challenge-clay990.suraj.json @@ -0,0 +1,9 @@ +{ + "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..283b85328 --- /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..7eebe0abd --- /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..7e10484dd --- /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..2be33bebe --- /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..3f227a18d --- /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-crystalbajgai.crystal.json b/domains/_github-pages-challenge-crystalbajgai.crystal.json new file mode 100644 index 000000000..a356970af --- /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-danilofuchs.danilofuchs.json b/domains/_github-pages-challenge-danilofuchs.danilofuchs.json new file mode 100644 index 000000000..122ce8335 --- /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-deltafumble.deltafumble.json b/domains/_github-pages-challenge-deltafumble.deltafumble.json new file mode 100644 index 000000000..81a444eda --- /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-dev-420.dev-420.json b/domains/_github-pages-challenge-dev-420.dev-420.json new file mode 100644 index 000000000..2751e7330 --- /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-dumprr.dumprr.json b/domains/_github-pages-challenge-dumprr.dumprr.json new file mode 100644 index 000000000..37acbe038 --- /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..8f3394198 --- /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..53deda04d --- /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..6fd94688a --- /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..1e3ed00dc --- /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..55eae9232 --- /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..38a0488ad --- /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..56b3810db --- /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..bee86756a --- /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..088cebcb7 --- /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..ab60d6e9f --- /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..0df317748 --- /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..ba21b7cf8 --- /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..bb079d007 --- /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..3a74ce877 --- /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-gautamkrishnar.gkr.json b/domains/_github-pages-challenge-gautamkrishnar.gkr.json new file mode 100644 index 000000000..5128b0ad1 --- /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-habeel06.habeel.json b/domains/_github-pages-challenge-habeel06.habeel.json new file mode 100644 index 000000000..a8d160e24 --- /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..5380b91fa --- /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..e60ad7c0a --- /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-hmonsterg.soap.json b/domains/_github-pages-challenge-hmonsterg.soap.json new file mode 100644 index 000000000..85ccb3fe3 --- /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-iakzs.iakzs.json b/domains/_github-pages-challenge-iakzs.iakzs.json new file mode 100644 index 000000000..906e52d2a --- /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..7e672213f --- /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..585d900e8 --- /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..0e731476e --- /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..9c8bbd25e --- /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..cfbfea095 --- /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..b140d7ed7 --- /dev/null +++ b/domains/_github-pages-challenge-inkilu.gautham.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "inkilu", + "email": "gauthamgkm@gmail.com" + }, + "record": { + "TXT": "c49ff3bbd82885e942c6785d410fd0" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-inkilu.inkilu.json b/domains/_github-pages-challenge-inkilu.inkilu.json new file mode 100644 index 000000000..29c4c880b --- /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..999103014 --- /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.team.json b/domains/_github-pages-challenge-is-a-dev.team.json new file mode 100644 index 000000000..d7e139dbd --- /dev/null +++ b/domains/_github-pages-challenge-is-a-dev.team.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + + "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..f24f41cbe --- /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..6b21937d0 --- /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..23c499b7e --- /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..8648e23de --- /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..9e8218f8e --- /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..7cad3e2a5 --- /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..79336d6fb --- /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..79d775fb8 --- /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..2d32ac0a9 --- /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..9d88ddde9 --- /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..aa279e5f8 --- /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..6d20e50fc --- /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..7b95efe3b --- /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..5451bef64 --- /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-jy1263.ayanamy.json b/domains/_github-pages-challenge-jy1263.ayanamy.json index 155f5b2b2..5f67a37b9 100644 --- a/domains/_github-pages-challenge-jy1263.ayanamy.json +++ b/domains/_github-pages-challenge-jy1263.ayanamy.json @@ -1,12 +1,12 @@ { - "description": "AyanAmy's About Page - Verification", - "repo": "https://github.com/jy1263/jy1263.github.io", - "owner": { - "username": "jy1263", - "email": "", - "twitter": "jy126orjy126" - }, - "record": { - "TXT": "250303a2dde21ac34ad10792da01fa" - } + "description": "AyanAmy's About Page - Verification", + "repo": "https://github.com/jy1263/jy1263.github.io", + "owner": { + "username": "jy1263", + "email": "", + "twitter": "jy126orjy126" + }, + "record": { + "TXT": "250303a2dde21ac34ad10792da01fa" + } } diff --git a/domains/_github-pages-challenge-k22rma.k22rma.json b/domains/_github-pages-challenge-k22rma.k22rma.json new file mode 100644 index 000000000..ab9247e88 --- /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..9951926b4 --- /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..e4e4ccbab --- /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-krix12.krix.json b/domains/_github-pages-challenge-krix12.krix.json new file mode 100644 index 000000000..b97e41309 --- /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-labus3.madhav.json b/domains/_github-pages-challenge-labus3.madhav.json new file mode 100644 index 000000000..d2de31abb --- /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-liancastellon.liancg.json b/domains/_github-pages-challenge-liancastellon.liancg.json new file mode 100644 index 000000000..70d71bcfa --- /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-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..901232893 --- /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-loisvelasco.loisvelasco.json b/domains/_github-pages-challenge-loisvelasco.loisvelasco.json new file mode 100644 index 000000000..f40a9489b --- /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..97d9ca686 --- /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..00a1678b7 --- /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..4c9dbb811 --- /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..09ab347fc --- /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..d1e2bdd0c --- /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-mikeymoo5.moothecow.json b/domains/_github-pages-challenge-mikeymoo5.moothecow.json new file mode 100644 index 000000000..289eb7ee9 --- /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..1c0086982 --- /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-n0r1uno.steffen.json b/domains/_github-pages-challenge-n0r1uno.steffen.json new file mode 100644 index 000000000..199d4248e --- /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-natblida68.ashwa.json b/domains/_github-pages-challenge-natblida68.ashwa.json new file mode 100644 index 000000000..3032c35f4 --- /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-night0721.night.json b/domains/_github-pages-challenge-night0721.night.json new file mode 100644 index 000000000..15d4b7d75 --- /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-noahziheng.noahgao.json b/domains/_github-pages-challenge-noahziheng.noahgao.json new file mode 100644 index 000000000..7ded89aa7 --- /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..0f576e906 --- /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..c8f9d1c87 --- /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..a8882ab7e --- /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..8d3dad05e --- /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..16ab59eae --- /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..cd471292d --- /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..89cf97685 --- /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..7da08967a --- /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-opaayush.aayush.json b/domains/_github-pages-challenge-opaayush.aayush.json index 1f573c3b7..7e4227d86 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..3ebe04465 --- /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..eea69ba30 --- /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-oxmc.oxmc.json b/domains/_github-pages-challenge-oxmc.oxmc.json new file mode 100644 index 000000000..1d97dc9ce --- /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..5e30a445b --- /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..fd1bf5895 --- /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..12a6c27ee --- /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..829e3424a --- /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..cc1ca36ad --- /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..2121a5953 --- /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..ae7d218ab --- /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-prakhillohiya.prakhillohiya.json b/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json new file mode 100644 index 000000000..d54751e7b --- /dev/null +++ b/domains/_github-pages-challenge-prakhillohiya.prakhillohiya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prakhillohiya", + "email": "prakhillohiya@gmail.com" + }, + "record": { + "TXT": "31f067f6796f63a3cb4e0110ff10df" + } +} \ No newline at end of file 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..d7a137996 --- /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..1be7e5094 --- /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-revolutionisme.biplob.json b/domains/_github-pages-challenge-revolutionisme.biplob.json new file mode 100644 index 000000000..ff497e53f --- /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..26f89e82a --- /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..90cc26348 --- /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..be8ce37c2 --- /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..18934564f --- /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..9c4b916a2 --- /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..94a7792a0 --- /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..ba5758f00 --- /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..b4fe2a945 --- /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-rv178.rv178.json b/domains/_github-pages-challenge-rv178.rv178.json new file mode 100644 index 000000000..6d75e0244 --- /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..5e6acfc84 --- /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-s3mant.semant.json b/domains/_github-pages-challenge-s3mant.semant.json new file mode 100644 index 000000000..b4ee9f869 --- /dev/null +++ b/domains/_github-pages-challenge-s3mant.semant.json @@ -0,0 +1,9 @@ +{ + "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..02aa7cb59 --- /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-sebitalent04.sebitalent04.json b/domains/_github-pages-challenge-sebitalent04.sebitalent04.json new file mode 100644 index 000000000..751ba793f --- /dev/null +++ b/domains/_github-pages-challenge-sebitalent04.sebitalent04.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SebiTalent04", + "email": "" + }, + "record": { + "TXT": "8139f556926b84918edeb68fa50b47" + } +} diff --git a/domains/_github-pages-challenge-sekharmalla.chandra.json b/domains/_github-pages-challenge-sekharmalla.chandra.json new file mode 100644 index 000000000..ffeee5e5f --- /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..4755dc59d --- /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..cec9443d4 --- /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..8880d0515 --- /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" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-shays24.shays.json b/domains/_github-pages-challenge-shays24.shays.json new file mode 100644 index 000000000..13e1d9a4a --- /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..d014fec6f --- /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..658ae1817 --- /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..fecff0dae --- /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-skandabhairava.terroid.json b/domains/_github-pages-challenge-skandabhairava.terroid.json new file mode 100644 index 000000000..09fdebe82 --- /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..83dd2b1bf --- /dev/null +++ b/domains/_github-pages-challenge-sohrubh.saurabh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sohrubh", + "email": "saurabhyadav5931@gmail.com" + }, + "record": { + "TXT": "0c51849fbc5921380ddc445251597b" + } +} \ No newline at end of file diff --git a/domains/_github-pages-challenge-spaxly.spaxly.json b/domains/_github-pages-challenge-spaxly.spaxly.json new file mode 100644 index 000000000..cf7bc9338 --- /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..f7526d18c --- /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-studiousgamer.natya.json b/domains/_github-pages-challenge-studiousgamer.natya.json new file mode 100644 index 000000000..f10969e60 --- /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..612e5e22d --- /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-superuser-l.it.json b/domains/_github-pages-challenge-superuser-l.it.json new file mode 100644 index 000000000..ff1a7f754 --- /dev/null +++ b/domains/_github-pages-challenge-superuser-l.it.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tr1xem", + "email": "kmtechnical2006@gmail.com" + }, + "record": { + "TXT": "612be6ed1c46c3f2ae43faf700aa5a" + } +} diff --git a/domains/_github-pages-challenge-superuser-l.this.json b/domains/_github-pages-challenge-superuser-l.this.json new file mode 100644 index 000000000..a55138be4 --- /dev/null +++ b/domains/_github-pages-challenge-superuser-l.this.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tr1xem", + "email": "kmtechnical2006@gmail.com" + }, + "record": { + "TXT": "baf1449796e1170dc35913dbe7d01f" + } +} diff --git a/domains/_github-pages-challenge-sxurabh.saurabhkirve.json b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json new file mode 100644 index 000000000..d553d8bdd --- /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..1742811f9 --- /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..6421e5ab6 --- /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..dcac94657 --- /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..7c4ba84c9 --- /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-tclement0922.tclement0922.json b/domains/_github-pages-challenge-tclement0922.tclement0922.json new file mode 100644 index 000000000..cc5b7e8d7 --- /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..69a98ffad --- /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..7b66f9344 --- /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..4c744e650 --- /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-thehackerdude1083.thehackerdude1083.json b/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json new file mode 100644 index 000000000..dc913c8db --- /dev/null +++ b/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheHackerDude1083", + "email": "shaheeransari57@gmail.com" + }, + "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..30f3eabd4 --- /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-thesanju.thesanju.json b/domains/_github-pages-challenge-thesanju.thesanju.json new file mode 100644 index 000000000..505e1b7fe --- /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..e178a474c --- /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..b6aa6a5d1 --- /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..32b401538 --- /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..0997b0279 --- /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..dd3b2619e --- /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-turquoisetnt.tnt.json b/domains/_github-pages-challenge-turquoisetnt.tnt.json new file mode 100644 index 000000000..97919665f --- /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..59cca99da --- /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-vachanmn123.vachanmn.json b/domains/_github-pages-challenge-vachanmn123.vachanmn.json new file mode 100644 index 000000000..3984c1d87 --- /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..9030562df --- /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-vikramv20.vikramv20.json b/domains/_github-pages-challenge-vikramv20.vikramv20.json new file mode 100644 index 000000000..5452fc57d --- /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..af7fe02fc --- /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..7a4e5fed6 --- /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..e40943839 --- /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..c90ab14b0 --- /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.data.json b/domains/_github-pages-challenge-wdhdev.data.json new file mode 100644 index 000000000..b49214e4c --- /dev/null +++ b/domains/_github-pages-challenge-wdhdev.data.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@williamharrison.dev" + }, + + "record": { + "TXT": "dd771e3f8e535c62bb471e3760dc66" + } +} diff --git a/domains/_github-pages-challenge-wdhdev.raw-api.json b/domains/_github-pages-challenge-wdhdev.raw-api.json new file mode 100644 index 000000000..9c0dbc10a --- /dev/null +++ b/domains/_github-pages-challenge-wdhdev.raw-api.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@williamharrison.dev" + }, + + "record": { + "TXT": "f702ea064c3d034b70bb3576bba918" + } +} diff --git a/domains/_github-pages-challenge-window5000.window5.json b/domains/_github-pages-challenge-window5000.window5.json new file mode 100644 index 000000000..f59ec13f1 --- /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-xxtgamerxx.brin.json b/domains/_github-pages-challenge-xxtgamerxx.brin.json new file mode 100644 index 000000000..140438a05 --- /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..6a24ccb0c --- /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..704fc54cf --- /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-zyrouge.zyrouge.json b/domains/_github-pages-challenge-zyrouge.zyrouge.json new file mode 100644 index 000000000..030687aed --- /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/_psl.json b/domains/_psl.json index 6647add63..0b84b6e84 100644 --- a/domains/_psl.json +++ b/domains/_psl.json @@ -1,11 +1,11 @@ { - "description": "PSL validation record for is-a.dev", - "repo": "https://github.com/is-a-dev/is-a-dev.github.io", - "owner": { - "username": "phenax", - "email": "phenax5@gmail.com" - }, - "record": { - "TXT": "https://github.com/publicsuffix/list/pull/1327" - } + "description": "PSL validation record for is-a.dev", + "repo": "https://github.com/is-a-dev/is-a-dev.github.io", + "owner": { + "username": "phenax", + "email": "phenax5@gmail.com" + }, + "record": { + "TXT": "https://github.com/publicsuffix/list/pull/1327" + } } diff --git a/domains/a-ditya.json b/domains/a-ditya.json index 9d9fe4af7..92d39a912 100644 --- a/domains/a-ditya.json +++ b/domains/a-ditya.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "AdityaOP2008", - "discord": "844843800874582048", - "email": "bw.dev@yahoo.com" - }, - "record": { - "CNAME": "c7106b01-6b1c-4d4f-b0a5-6c82b3e9a4a4.id.repl.co" - } + "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-furry.json b/domains/a-furry.json index 531fec104..9eaeed630 100644 --- a/domains/a-furry.json +++ b/domains/a-furry.json @@ -1,12 +1,12 @@ { - "description": "Ashley's website", - "repo": "https://github.com/Sxshley/sxshley.github.io", - "owner": { - "username": "Sxshley", - "email": "tsuuunyaaa@gmail.com", - "twitter": "TsU1" - }, - "record": { - "CNAME": "sxshley.github.io" - } + "description": "Ashley's website", + "repo": "https://github.com/Sxshley/sxshley.github.io", + "owner": { + "username": "Sxshley", + "email": "tsuuunyaaa@gmail.com", + "twitter": "TsU1" + }, + "record": { + "CNAME": "sxshley.github.io" + } } diff --git a/domains/a-j.json b/domains/a-j.json new file mode 100644 index 000000000..17469e2f2 --- /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/a1x5h04.json b/domains/a1x5h04.json new file mode 100644 index 000000000..64b1c61ec --- /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/aadarshksingh.json b/domains/aadarshksingh.json new file mode 100644 index 000000000..d4f64db9f --- /dev/null +++ b/domains/aadarshksingh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aadarshKsingh", + "email": "aadarshkumarsingh198@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aadi.json b/domains/aadi.json new file mode 100644 index 000000000..87147f0ea --- /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/aakanksha.json b/domains/aakanksha.json index b02cd9637..10da01cb4 100644 --- a/domains/aakanksha.json +++ b/domains/aakanksha.json @@ -2,10 +2,10 @@ "description": "Aakanksha's .is-a.dev domain", "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", "owner": { - "username": "aakankshabhende", - "email": "aakanksha0407@gmail.com" + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" }, "record": { - "CNAME": "aakankshabhende.github.io" + "CNAME": "aakankshabhende.github.io" } - } \ No newline at end of file +} diff --git a/domains/aakash.json b/domains/aakash.json index 21a9add4f..3c0c2c0ad 100644 --- a/domains/aakash.json +++ b/domains/aakash.json @@ -1,9 +1,10 @@ { - "owner": { - "username": "Shinyzenith", - "email": "aakashsensharma@gmail.com" - }, - "record": { - "CNAME": "shinyzenith.github.io" - } + "repo": "https://github.com/shinyzenith/website", + "owner": { + "username": "Shinyzenith", + "email": "aakashsensharma@gmail.com" + }, + "record": { + "CNAME": "shinyzenith.github.io" + } } diff --git a/domains/aakashcse.json b/domains/aakashcse.json new file mode 100644 index 000000000..f29055f82 --- /dev/null +++ b/domains/aakashcse.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GauravPlxyz", + "email": "polsagyipols6@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aakashs.json b/domains/aakashs.json index 88fa2b76f..7d1f7463f 100644 --- a/domains/aakashs.json +++ b/domains/aakashs.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/Aakash-kun/Aakash-kun.github.io", - "owner": { - "username": "Aakash-kun", - "email": "aakashshivhare1704@gmail.com", - "discord": "AakashS#9630" - }, - "record": { - "CNAME": "Aakash-kun.github.io" - } + "repo": "https://github.com/Aakash-kun/Aakash-kun.github.io", + "owner": { + "username": "Aakash-kun", + "email": "aakashshivhare1704@gmail.com", + "discord": "AakashS#9630" + }, + "record": { + "CNAME": "Aakash-kun.github.io" + } } diff --git a/domains/aakhilv.json b/domains/aakhilv.json index de8ba652a..7f4c2cce0 100644 --- a/domains/aakhilv.json +++ b/domains/aakhilv.json @@ -1,12 +1,12 @@ { - "description": "A personal portfolio site for all my projects and commissions.", - "repo": "https://github.com/aakhilv/portfolio", - "owner": { - "username": "aakhilv", - "email": "bluninja165@gmail.com", - "twitter": "corruptblu" - }, - "record": { - "CNAME": "aakhilv.github.io" - } + "description": "A personal portfolio site for all my projects and commissions.", + "repo": "https://github.com/aakhilv/portfolio", + "owner": { + "username": "aakhilv", + "email": "bluninja165@gmail.com", + "twitter": "corruptblu" + }, + "record": { + "CNAME": "aakhilv.github.io" + } } diff --git a/domains/aakrisht.json b/domains/aakrisht.json new file mode 100644 index 000000000..4ecc72ead --- /dev/null +++ b/domains/aakrisht.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AakrishtSP", + "email": "akrisht62@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aaksa.json b/domains/aaksa.json new file mode 100644 index 000000000..aaa92c4ff --- /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/aantarip.json b/domains/aantarip.json new file mode 100644 index 000000000..fdca6031e --- /dev/null +++ b/domains/aantarip.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "antoripdas", + "email": "aantaripdas@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aaraam.json b/domains/aaraam.json index 7021124bb..cdac570fa 100644 --- a/domains/aaraam.json +++ b/domains/aaraam.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/aaraam/aaraam.github.io", - "owner": { - "username": "aaraam", - "email": "aaraam.goblin@gmail.com" - }, - "record": { - "CNAME": "aaraam.github.io" - } + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/aaraam/aaraam.github.io", + "owner": { + "username": "aaraam", + "email": "aaraam.goblin@gmail.com" + }, + "record": { + "CNAME": "aaraam.github.io" + } } diff --git a/domains/aarav-puri.json b/domains/aarav-puri.json new file mode 100644 index 000000000..8e104b237 --- /dev/null +++ b/domains/aarav-puri.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CoderApuri", + "email": "puri.aarav@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aarav.json b/domains/aarav.json new file mode 100644 index 000000000..b744909bf --- /dev/null +++ b/domains/aarav.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AaravAtGit", + "email": "aarav54897@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aargh.json b/domains/aargh.json index a1eef442d..1f7459ef0 100644 --- a/domains/aargh.json +++ b/domains/aargh.json @@ -1,11 +1,11 @@ { - "description": "aargh.is-a.dev", - "repo": "https://github.com/FloatingComet62/floatingcomet62.github.io", - "owner": { - "username": "FloatingComet62", - "email": "shubh2007rai@gmail.com" - }, - "record": { - "CNAME": "floatingcomet62.github.io" - } + "description": "aargh.is-a.dev", + "repo": "https://github.com/FloatingComet62/floatingcomet62.github.io", + "owner": { + "username": "FloatingComet62", + "email": "shubh2007rai@gmail.com" + }, + "record": { + "CNAME": "floatingcomet62.github.io" + } } diff --git a/domains/aarno.json b/domains/aarno.json index 5d3f92cc3..18ed5203b 100644 --- a/domains/aarno.json +++ b/domains/aarno.json @@ -1,11 +1,11 @@ { - "description": "My Personal Website.", - "repo": "https://github.com/DorianAarno/dorianaarno.github.io", - "owner": { - "username": "DorianAarno", - "email": "aarnodorian56@gmail.com" - }, - "record": { - "CNAME": "dorianaarno.github.io" - } + "description": "My Personal Website.", + "repo": "https://github.com/DorianAarno/dorianaarno.github.io", + "owner": { + "username": "DorianAarno", + "email": "aarnodorian56@gmail.com" + }, + "record": { + "CNAME": "dorianaarno.github.io" + } } diff --git a/domains/aaron.json b/domains/aaron.json index 67201e645..08726b68c 100644 --- a/domains/aaron.json +++ b/domains/aaron.json @@ -1,11 +1,11 @@ { - "description": "Aaron's personal developer website", - "repo": "https://github.com/aaron-harvey", - "owner": { - "username": "aaronharvey", - "email": "aaron@lolsup.com" - }, - "record": { - "CNAME": "lolsup.com" - } -} + "owner": { + "username": "gbgdonttalk", + "email": "d1qtwmsmdga@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aaryan.json b/domains/aaryan.json deleted file mode 100644 index f03f05836..000000000 --- a/domains/aaryan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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/" - } -} diff --git a/domains/aashutosh.json b/domains/aashutosh.json index 0d59751a8..3ac0989bb 100644 --- a/domains/aashutosh.json +++ b/domains/aashutosh.json @@ -1,10 +1,10 @@ { - "description": "Aashutosh Rathi's Space on Web", - "owner": { - "username": "aashutoshrathi", - "email": "me@aashutosh.dev" - }, - "record": { - "CNAME": "aashutosh.dev" - } + "description": "Aashutosh Rathi's Space on Web", + "owner": { + "username": "aashutoshrathi", + "email": "me@aashutosh.dev" + }, + "record": { + "CNAME": "aashutosh.dev" + } } diff --git a/domains/aayank.json b/domains/aayank.json new file mode 100644 index 000000000..269b5017e --- /dev/null +++ b/domains/aayank.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "aayank13", + "email": "aayank1306@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/aayush-bharti.json b/domains/aayush-bharti.json new file mode 100644 index 000000000..a5f6f87e9 --- /dev/null +++ b/domains/aayush-bharti.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AayushBharti", + "email": "aayushbh2002@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/aayush.json b/domains/aayush.json index ac503c299..a28610357 100644 --- a/domains/aayush.json +++ b/domains/aayush.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "OpAayush", - "email": "aayushmagrawal@gmail.com", - "discord": "Aayu5h#1737" - }, - "record": { - "CNAME": "opaayush.pages.dev" - } + "owner": { + "username": "OpAayush", + "email": "aayushmagrawal@gmail.com", + "discord": "Aayu5h#1737" + }, + "record": { + "CNAME": "opaayush.pages.dev" + } } diff --git a/domains/aayushakacloudy.json b/domains/aayushakacloudy.json index 1f76e391d..cc9bb29fb 100644 --- a/domains/aayushakacloudy.json +++ b/domains/aayushakacloudy.json @@ -1,11 +1,11 @@ { - "description": "Aayush aka Cloudy's Arcade Home", - "repo": "https://github.com/gamedevCloudy/gamedevCloudy.github.io", - "owner": { - "username": "gamedevCloudy", - "email": "aaayush.dev@gmail.com" - }, - "record": { - "CNAME": "gamedevCloudy.github.io" - } + "description": "Aayush aka Cloudy's Arcade Home", + "repo": "https://github.com/gamedevCloudy/gamedevCloudy.github.io", + "owner": { + "username": "gamedevCloudy", + "email": "aaayush.dev@gmail.com" + }, + "record": { + "CNAME": "gamedevCloudy.github.io" + } } diff --git a/domains/aayushbh.json b/domains/aayushbh.json new file mode 100644 index 000000000..0b1cdb994 --- /dev/null +++ b/domains/aayushbh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AayushBharti", + "email": "aayushbh2002@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aayushbharti.json b/domains/aayushbharti.json new file mode 100644 index 000000000..0b1cdb994 --- /dev/null +++ b/domains/aayushbharti.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AayushBharti", + "email": "aayushbh2002@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ababo.json b/domains/ababo.json deleted file mode 100644 index 5eb5c2ef5..000000000 --- a/domains/ababo.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "this a link to my website", - "owner": { - "username": "zbj2", - "email": "devavcado@gmail.com" - }, - "record": { - "CNAME": "zbj2.github.io" - } -} diff --git a/domains/abdallah.json b/domains/abdallah.json new file mode 100644 index 000000000..8e5735abe --- /dev/null +++ b/domains/abdallah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abdallahmehiz", + "email": "abdallah.mehiz@univ-bba.dz" + }, + + "record": { + "CNAME": "abdallah.mehiz.xyz" + } +} diff --git a/domains/abdeba.json b/domains/abdeba.json new file mode 100644 index 000000000..dbf5d3b0e --- /dev/null +++ b/domains/abdeba.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abde0ba", + "email": "abdesoft1@gmail.com" + }, + "record": { + "URL": "https://ab-portfolio-one.vercel.app" + } +} diff --git a/domains/abdel.json b/domains/abdel.json new file mode 100644 index 000000000..cab8ce785 --- /dev/null +++ b/domains/abdel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "netsterX", + "email": "mb3202879@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/abdelghani.json b/domains/abdelghani.json new file mode 100644 index 000000000..e35dd9f69 --- /dev/null +++ b/domains/abdelghani.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdessattarElyagoubi", + "email": "abdeldroid2@gmail.com" + }, + "record": { + "CNAME": "abdessattar-elyagoubi.github.io" + } +} diff --git a/domains/abdeljallil.json b/domains/abdeljallil.json new file mode 100644 index 000000000..0bfe2c46c --- /dev/null +++ b/domains/abdeljallil.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AleaToir3", + "email": "aleatoir3@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/abdessattar.json b/domains/abdessattar.json new file mode 100644 index 000000000..5049083e5 --- /dev/null +++ b/domains/abdessattar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdessattarElyagoubi", + "email": "abdeldroid2@gmail.com" + }, + "record": { + "CNAME": "abdessattarelyagoubi.github.io" + } +} diff --git a/domains/abdo.json b/domains/abdo.json new file mode 100644 index 000000000..6adc0831c --- /dev/null +++ b/domains/abdo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xAbdoAT", + "email": "ABDO199877@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/abdul.json b/domains/abdul.json deleted file mode 100644 index 6d64abb4f..000000000 --- a/domains/abdul.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "Abdul1810", - "email": "abdulking8010@gmail.com", - "discord": "Abdul ♥#5464" - }, - "record": { - "CNAME": "rahman.works" - } -} diff --git a/domains/abdullah.json b/domains/abdullah.json index a39ae9040..afec302bb 100644 --- a/domains/abdullah.json +++ b/domains/abdullah.json @@ -1,11 +1,10 @@ - { - "owner": { - "username": "adistar964", - "email": "adistar964@gmail.com" - }, - "description":"this is for my personal website made.", - "record": { - "CNAME": "adistar964.github.io" - } + "owner": { + "username": "adistar964", + "email": "adistar964@gmail.com" + }, + "description": "this is for my personal website made.", + "record": { + "CNAME": "adistar964.github.io" + } } diff --git a/domains/abdulrahman.json b/domains/abdulrahman.json index 7689caa2a..d76b4a9dd 100644 --- a/domains/abdulrahman.json +++ b/domains/abdulrahman.json @@ -1,11 +1,11 @@ { - "description": "Personal site to showcase my future works.", - "repo": "https://github.com/abdulrahman1s/abdulrahman1s.github.io", - "owner": { - "username": "abdulrahman1s", - "email": "abdulrahman.8alah@gmail.com" - }, - "record": { - "CNAME": "abdulrahman1s.github.io" - } + "description": "Personal site to showcase my future works.", + "repo": "https://github.com/abdulrahman1s/abdulrahman1s.github.io", + "owner": { + "username": "abdulrahman1s", + "email": "mail@abdulrahman.dev" + }, + "record": { + "URL": "https://abdulrahman.dev" + } } diff --git a/domains/abdulrshaikh.json b/domains/abdulrshaikh.json index 0ff5b2b12..58f9a3015 100644 --- a/domains/abdulrshaikh.json +++ b/domains/abdulrshaikh.json @@ -1,11 +1,11 @@ { - "description": "Abdul's personal developer website", - "repo": "https://github.com/ariskycode/ariskycode.github.io", - "owner": { - "username": "ariskycode", - "email": "arirfanshaikh23@gmail.com" - }, - "record": { - "CNAME": "ariskycode.github.io" - } + "description": "Abdul's personal developer website", + "repo": "https://github.com/ariskycode/ariskycode.github.io", + "owner": { + "username": "ariskycode", + "email": "arirfanshaikh23@gmail.com" + }, + "record": { + "CNAME": "ariskycode.github.io" + } } diff --git a/domains/abegehr.json b/domains/abegehr.json new file mode 100644 index 000000000..1aaa3b06c --- /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 6b09263fb..acc15e859 100644 --- a/domains/abelblue.json +++ b/domains/abelblue.json @@ -1,12 +1,11 @@ { "description": "Abel Mitiku's website", - "repo": "https://github.com/abel-blue/portfolio", + "repo": "https://github.com/abel-blue/abelblue.dev", "owner": { - "username": "abel-blue", - "email": "abelmgetnet@gmail.com" + "username": "abel-blue", + "email": "abelmgetnet@gmail.com" }, "record": { - "CNAME": "abel-blue.github.io" + "CNAME": "abel-blue.github.io" } - } - \ No newline at end of file +} diff --git a/domains/abeltranp94.json b/domains/abeltranp94.json index 8fc1b502b..0c1d485f8 100644 --- a/domains/abeltranp94.json +++ b/domains/abeltranp94.json @@ -1,11 +1,11 @@ { - "description": "Ariel Beltrán Paneque", - "repo": "https://github.com/abeltranp9476/abeltranp94.github.io", - "owner": { - "username": "abeltranp9476", - "email": "abeltran.9476@gmail.com" - }, - "record": { - "CNAME": "abeltranp9476.github.io" - } + "description": "Ariel Beltrán Paneque", + "repo": "https://github.com/abeltranp9476/abeltranp94.github.io", + "owner": { + "username": "abeltranp9476", + "email": "abeltran.9476@gmail.com" + }, + "record": { + "CNAME": "abeltranp9476.github.io" + } } diff --git a/domains/abh80.json b/domains/abh80.json index c53647599..f35acd920 100644 --- a/domains/abh80.json +++ b/domains/abh80.json @@ -1,12 +1,12 @@ { - "description": "Link to my portfolio site.", - "repo": "https://github.com/abh80/abh80.github.io", - "owner": { - "username": "abh80", - "email": "boatgithub27@gmail.com", - "twitter": "trackerstars" - }, - "record": { - "CNAME": "abh80.github.io" - } + "description": "Link to my portfolio site.", + "repo": "https://github.com/abh80/abh80.github.io", + "owner": { + "username": "abh80", + "email": "boatgithub27@gmail.com", + "twitter": "trackerstars" + }, + "record": { + "CNAME": "abh80.github.io" + } } diff --git a/domains/abhay.json b/domains/abhay.json index d83ae3885..e86124761 100644 --- a/domains/abhay.json +++ b/domains/abhay.json @@ -1,11 +1,11 @@ { - "description": "Abhay's portfolio website", - "repo": "https://github.com/daggron/daggron.github.io", - "owner": { - "username": "Daggron", - "email": "returnofking04@gmail.com" - }, - "record": { - "CNAME": "codeinator.me" - } -} + "owner": { + "username": "MRJ-Badshah", + "email": "illegalhacker2.0@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/abhi.json b/domains/abhi.json new file mode 100644 index 000000000..5d2e9d9e6 --- /dev/null +++ b/domains/abhi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "actuallyabhi", + "email": "mabhishek7081@zohomail.in" + }, + "record": { + "URL": "https://actuallyabhi.netlify.app" + } +} diff --git a/domains/abhigyantrips.json b/domains/abhigyantrips.json index 7a981f390..52b51afaa 100644 --- a/domains/abhigyantrips.json +++ b/domains/abhigyantrips.json @@ -1,11 +1,11 @@ { - "description": "A personal website, with biodata.", - "repo": "https://github.com/abhigyantrips/abhigyantrips.github.io", - "owner": { - "username": "abhigyantrips", - "email": "abhigyantrips@gmail.com" - }, - "record": { - "CNAME": "abhigyantrips.github.io" - } + "description": "A personal website, with biodata.", + "repo": "https://github.com/abhigyantrips/abhigyantrips.github.io", + "owner": { + "username": "abhigyantrips", + "email": "abhigyantrips@gmail.com" + }, + "record": { + "CNAME": "abhigyantrips.github.io" + } } diff --git a/domains/abhijit.json b/domains/abhijit.json new file mode 100644 index 000000000..747e159da --- /dev/null +++ b/domains/abhijit.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FIRSTB0SS", + "email": "abhiwa6@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/abhinav.json b/domains/abhinav.json new file mode 100644 index 000000000..c0b04b27d --- /dev/null +++ b/domains/abhinav.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "abhinavcool42", + "email": "abhinavcool42@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/abhinavdalal.json b/domains/abhinavdalal.json deleted file mode 100644 index 7d7bd2f98..000000000 --- a/domains/abhinavdalal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Abhinav Dalal's website", - "repo": "https://github.com/b-om/b-om.github.io", - "owner": { - "username": "abhinavdalal", - "email": "abhinavdalal@gmail.com" - }, - "record": { - "CNAME": "b-om.github.io" - } -} diff --git a/domains/abhint.json b/domains/abhint.json index d9e6cc780..ad6277994 100644 --- a/domains/abhint.json +++ b/domains/abhint.json @@ -1,12 +1,12 @@ { - "description": "Personal portfolio written in HTML and JS", - "repo": "https://github.com/abhint/abhint.github.io", - "owner": { - "username": "abhint", - "email": "notifyabhijith@gmail.com", - "twitter": "abhint6" - }, - "record": { - "CNAME": "abhint.github.io" - } + "description": "Personal portfolio written in HTML and JS", + "repo": "https://github.com/abhint/abhint.github.io", + "owner": { + "username": "abhint", + "email": "notifyabhijith@gmail.com", + "twitter": "abhint6" + }, + "record": { + "CNAME": "abhint.github.io" + } } diff --git a/domains/abhisekp.json b/domains/abhisekp.json index 3fab010d3..ec7117141 100644 --- a/domains/abhisekp.json +++ b/domains/abhisekp.json @@ -1,13 +1,13 @@ { - "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" - } + "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.json b/domains/abhishek.json index b0097a288..010d6df1b 100644 --- a/domains/abhishek.json +++ b/domains/abhishek.json @@ -1,11 +1,11 @@ { - "description": "Abhishek's personal website", - "repo": "https://github.com/nullpointxr", - "owner": { - "username": "nullpointxr", - "email": "abhishek.sankar.in@protonmail.com" - }, - "record": { - "CNAME": "abhisheks.me" - } + "description": "Abhishek's personal website", + "repo": "https://github.com/nullpointxr", + "owner": { + "username": "nullpointxr", + "email": "abhishek.sankar.in@protonmail.com" + }, + "record": { + "CNAME": "abhisheks.me" + } } diff --git a/domains/abhishekkumar.json b/domains/abhishekkumar.json index 81ca81759..6a040bf20 100644 --- a/domains/abhishekkumar.json +++ b/domains/abhishekkumar.json @@ -1,11 +1,11 @@ { - "description": "Abhishek's personal developer website", - "repo": "https://github.com/Abhishek-569", - "owner": { - "username": "Abhishek-569", - "email": "akabhishek4444@gmail.com" - }, - "record": { - "URL": "https://akabhishek4444.wixsite.com/abhishek-kumar" - } + "description": "Abhishek's personal developer website", + "repo": "https://github.com/Abhishek-569", + "owner": { + "username": "Abhishek-569", + "email": "akabhishek4444@gmail.com" + }, + "record": { + "URL": "https://akabhishek4444.wixsite.com/abhishek-kumar" + } } diff --git a/domains/abhishekpanda.json b/domains/abhishekpanda.json new file mode 100644 index 000000000..103021ac7 --- /dev/null +++ b/domains/abhishekpanda.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "goesbyabhi", + "email": "abxisxekpanda@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/abhishekpb.json b/domains/abhishekpb.json new file mode 100644 index 000000000..f65db0321 --- /dev/null +++ b/domains/abhishekpb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "abhishek-pb1", + "email": "studentabhishekpb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/abhishekyadav.json b/domains/abhishekyadav.json new file mode 100644 index 000000000..59b9a08a9 --- /dev/null +++ b/domains/abhishekyadav.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "demoxs", + "email": "devatjps@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/abishek.json b/domains/abishek.json index cd33a0738..bfdd3d118 100644 --- a/domains/abishek.json +++ b/domains/abishek.json @@ -1,11 +1,11 @@ { - "description": "Abishek's portfolio website", - "repo": "https://github.com/vj-abishek/vj-abishek.github.io", - "owner": { - "username": "vj-abishek", - "email": "abigosearch@gmail.com" - }, - "record": { - "CNAME": "vj-abishek.github.io" - } + "description": "Abishek's portfolio website", + "repo": "https://github.com/vj-abishek/vj-abishek.github.io", + "owner": { + "username": "vj-abishek", + "email": "abigosearch@gmail.com" + }, + "record": { + "CNAME": "vj-abishek.github.io" + } } diff --git a/domains/abubakar.json b/domains/abubakar.json index dda6395cb..c0eb9cfc2 100644 --- a/domains/abubakar.json +++ b/domains/abubakar.json @@ -1,12 +1,12 @@ { - "description": "My personal portfolio", - "repo": "https://github.com/AbubakarKang/AbubakarKang.github.io", - "owner": { - "username": "AbubakarKang", - "email": "", - "discord": "TheHacker#4418" - }, - "record": { - "CNAME": "abubakarkang.github.io" - } + "description": "My personal portfolio", + "repo": "https://github.com/AbubakarKang/AbubakarKang.github.io", + "owner": { + "username": "AbubakarKang", + "email": "", + "discord": "TheHacker#4418" + }, + "record": { + "CNAME": "abubakarkang.github.io" + } } diff --git a/domains/abv.json b/domains/abv.json new file mode 100644 index 000000000..e182b420b --- /dev/null +++ b/domains/abv.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "leburgue", + "email": "albertonazijew@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/abysmal.json b/domains/abysmal.json index 0f09f0d66..055447ac5 100644 --- a/domains/abysmal.json +++ b/domains/abysmal.json @@ -7,4 +7,4 @@ "record": { "URL": "https://abysmal.eu.org" } -} +} diff --git a/domains/ac21.json b/domains/ac21.json index cc9e15090..eff863e45 100644 --- a/domains/ac21.json +++ b/domains/ac21.json @@ -1,11 +1,11 @@ { - "description": "Atharva Chandwadkar's Portfolio", - "repo": "https://github.com/atharva21-stack/atharva21-stack.github.io", - "owner": { - "username": "atharva21-stack", - "email": "chandwadkar28@gmail.com" - }, - "record": { - "CNAME": "atharva21-stack.github.io" - } + "description": "Atharva Chandwadkar's Portfolio", + "repo": "https://github.com/atharva21-stack/atharva21-stack.github.io", + "owner": { + "username": "atharva21-stack", + "email": "chandwadkar28@gmail.com" + }, + "record": { + "CNAME": "atharva21-stack.github.io" + } } diff --git a/domains/acaiberii.json b/domains/acaiberii.json index 8e0faf623..3de6036e2 100644 --- a/domains/acaiberii.json +++ b/domains/acaiberii.json @@ -1,11 +1,11 @@ { - "description": "acaiberii's website", - "repo": "https://github.com/acaiberii/acaiberii.github.io", - "owner": { - "username": "acaiberii", - "email": "studiouifxdesignersandcoders@gmail.com" - }, - "record": { - "CNAME": "acaiberii.github.io" - } + "description": "acaiberii's website", + "repo": "https://github.com/acaiberii/acaiberii.github.io", + "owner": { + "username": "acaiberii", + "email": "studiouifxdesignersandcoders@gmail.com" + }, + "record": { + "CNAME": "acaiberii.github.io" + } } diff --git a/domains/ace.json b/domains/ace.json index 933f8cc2f..54f26cdf9 100644 --- a/domains/ace.json +++ b/domains/ace.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "diamond-gold", "email": "diamond-gold-ace@outlook.com" - }, + }, - "record": { + "record": { "URL": "https://github.com/diamond-gold" - } } - +} diff --git a/domains/acey.json b/domains/acey.json index 43405681e..9ee2ddcaf 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" - } + "owner": { + "username": "AceyDoCodes", + "email": "aceygoesboom@gmail.com" + }, + "record": { + "CNAME": "website-5qo.pages.dev" + } } diff --git a/domains/acgaming.json b/domains/acgaming.json index 0b54207eb..a5aaf22c6 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/achim.json b/domains/achim.json index 9baa79b91..e3ffc2ee6 100644 --- a/domains/achim.json +++ b/domains/achim.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "nohli", - "email": "", - "twitter": "joachi_" - }, - "record": { - "CNAME":"achim.io" - } + "owner": { + "username": "nohli", + "email": "", + "twitter": "joachi_" + }, + "record": { + "CNAME": "achim.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/achraf.json b/domains/achraf.json index e5173a56b..a08a93bb5 100644 --- a/domains/achraf.json +++ b/domains/achraf.json @@ -1,11 +1,11 @@ { - "description": "Achraf's Website!", - "repo": "https://github.com/Ax-r/ax-r.github.io", - "owner": { - "username": "Ax-r", - "email": "hostmaster@netcourrier.com" - }, - "record": { - "CNAME": "ax-r.github.io" - } + "description": "Achraf's Website!", + "repo": "https://github.com/Ax-r/ax-r.github.io", + "owner": { + "username": "Ax-r", + "email": "hostmaster@netcourrier.com" + }, + "record": { + "CNAME": "ax-r.github.io" + } } diff --git a/domains/activities.maskduck.json b/domains/activities.maskduck.json index 6fb6a6599..975df8bbd 100644 --- a/domains/activities.maskduck.json +++ b/domains/activities.maskduck.json @@ -1,12 +1,12 @@ { - "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" - } + "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/acto.json b/domains/acto.json new file mode 100644 index 000000000..263e78197 --- /dev/null +++ b/domains/acto.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "waitwhatActo", + "email": "acton.clever@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/acutewoof.json b/domains/acutewoof.json index d2509f5b9..9f0a89bd8 100644 --- a/domains/acutewoof.json +++ b/domains/acutewoof.json @@ -1,11 +1,11 @@ { - "description": "ACuteWoof's Personal Site", - "repo": "https://github.com/acutewoof/acutewoof.github.io", - "owner": { - "username": "acutewoof", - "email": "acutewoof@gmail.com" - }, - "record": { - "CNAME": "acutewoof.github.io" - } + "description": "ACuteWoof's Personal Site", + "repo": "https://github.com/acutewoof/acutewoof.github.io", + "owner": { + "username": "acutewoof", + "email": "acutewoof@gmail.com" + }, + "record": { + "CNAME": "acutewoof.github.io" + } } diff --git a/domains/ad1107.json b/domains/ad1107.json new file mode 100644 index 000000000..70d9295d3 --- /dev/null +++ b/domains/ad1107.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ad1107", + "email": "nguyenanhducxmen@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ad956.json b/domains/ad956.json new file mode 100644 index 000000000..08d95ea1a --- /dev/null +++ b/domains/ad956.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ad956", + "email": "anandsuthar956@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/adais.json b/domains/adais.json new file mode 100644 index 000000000..4ef3365ea --- /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..bca392249 --- /dev/null +++ b/domains/adam.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AdamEXu", + "email": "adam.yi.xu@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/adamkarepin.json b/domains/adamkarepin.json new file mode 100644 index 000000000..d89d64518 --- /dev/null +++ b/domains/adamkarepin.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portfolio website", + "repo": "https://github.com/K7Adam/my-webfolio-angular", + "owner": { + "username": "K7Adam", + "email": "", + "twitter": "7AdamK" + }, + "record": { + "CNAME": "8b23b621a9d04b0718dd.b-cdn.net" + } +} diff --git a/domains/adamousmer.json b/domains/adamousmer.json new file mode 100644 index 000000000..1f417a07c --- /dev/null +++ b/domains/adamousmer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AdamOusmer", + "email": "aousmer03@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mx01.mail.icloud.com", "mx02.mail.icloud.com"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 include:icloud.com ~all" + } +} diff --git a/domains/adarsh-a-inamdar.json b/domains/adarsh-a-inamdar.json new file mode 100644 index 000000000..e13ae528c --- /dev/null +++ b/domains/adarsh-a-inamdar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Adarsh-Inamdar", + "email": "adarshinamdar2003@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/adarsh.json b/domains/adarsh.json index 34a1bac8b..e77137895 100644 --- a/domains/adarsh.json +++ b/domains/adarsh.json @@ -1,11 +1,9 @@ { - "description": "Adarsh's personal developer website", - "repo": "https://github.com/Adarsh1999/adarsh-portfolio.github.io", - "owner": { - "username": "Adarsh1999", - "email": "adarshguptamaurya@gmail.com" - }, - "record": { - "CNAME": "adarsh-portfolio.github.io" - } + "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..aec903bc4 --- /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/adarshr.json b/domains/adarshr.json deleted file mode 100644 index 1ea461cf1..000000000 --- a/domains/adarshr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Adarsh's portfolio!", - "repo": "https://github.com/adarsh-qclw/adarsh-qclw.github.io", - "owner": { - "username": "adarsh-qclw", - "email": "adoo2001@gmail.com" - }, - "record": { - "CNAME": "adarsh-qclw.github.io" - } -} diff --git a/domains/adarshs.json b/domains/adarshs.json index a235a68d2..e70f165c2 100644 --- a/domains/adarshs.json +++ b/domains/adarshs.json @@ -1,11 +1,11 @@ { - "description": "The portfolio of Adarsh S", - "repo": "https://github.com/adarshsuresh07", - "owner": { - "username": "adarshsuresh07", - "email": "adarshsuresh@cet.ac.in" - }, - "record": { - "CNAME": "adarshsuresh07.github.io" - } + "description": "The portfolio of Adarsh S", + "repo": "https://github.com/adarshsuresh07", + "owner": { + "username": "adarshsuresh07", + "email": "adarshsuresh@cet.ac.in" + }, + "record": { + "CNAME": "adarshsuresh07.github.io" + } } diff --git a/domains/adarshvijay.json b/domains/adarshvijay.json index ca764aa88..e291fa901 100644 --- a/domains/adarshvijay.json +++ b/domains/adarshvijay.json @@ -1,11 +1,11 @@ { - "description": "Adarsh Vijay's Site for things he doesn't know yet", - "repo": "https://github.com/adarsh-av13/adarsh-av13.github.io", - "owner": { - "username": "adarsh-av13", - "email": "dra4474@gmail.com" - }, - "record": { - "CNAME": "adarsh-av13.github.io" - } + "description": "Adarsh Vijay's Site for things he doesn't know yet", + "repo": "https://github.com/adarsh-av13/adarsh-av13.github.io", + "owner": { + "username": "adarsh-av13", + "email": "dra4474@gmail.com" + }, + "record": { + "CNAME": "adarsh-av13.github.io" + } } diff --git a/domains/addison.json b/domains/addison.json new file mode 100644 index 000000000..5b971887f --- /dev/null +++ b/domains/addison.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duckmob", + "email": "coxy.addison@gmail.com" + }, + "record": { + "CNAME": "dcd5055c-f746-4223-a171-5f536111d3c5.id.repl.co" + } +} diff --git a/domains/adeshsingh.json b/domains/adeshsingh.json new file mode 100644 index 000000000..0ca51bda7 --- /dev/null +++ b/domains/adeshsingh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cppqtdev", + "email": "akshworkmail@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/adhi.json b/domains/adhi.json new file mode 100644 index 000000000..802731ba8 --- /dev/null +++ b/domains/adhi.json @@ -0,0 +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" + } +} diff --git a/domains/adhitht.json b/domains/adhitht.json new file mode 100644 index 000000000..a8fa25cab --- /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/adi.json b/domains/adi.json index 5b629d332..893449813 100644 --- a/domains/adi.json +++ b/domains/adi.json @@ -1,11 +1,11 @@ { - "description": "Adrian is a dev", - "repo": "https://github.com/stryfe200fps/adrian", - "owner": { - "username": "stryfe200fps", - "email": "fsdainsleif@gmail.com" - }, - "record": { - "CNAME": "stryfe200fps.github.io" - } + "description": "Adrian is a dev", + "repo": "https://github.com/stryfe200fps/adrian", + "owner": { + "username": "stryfe200fps", + "email": "fsdainsleif@gmail.com" + }, + "record": { + "CNAME": "stryfe200fps.github.io" + } } diff --git a/domains/adigen.json b/domains/adigen.json index cb5dafb48..fc64052e0 100644 --- a/domains/adigen.json +++ b/domains/adigen.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "mradigen", - "email": "mr.adigen@protonmail.com" - }, - "record": { - "CNAME": "mradigen.github.io" - } + "owner": { + "username": "mradigen", + "email": "mr.adigen@protonmail.com" + }, + "record": { + "CNAME": "mradigen.github.io" + } } diff --git a/domains/adioblu.json b/domains/adioblu.json new file mode 100644 index 000000000..0e3ead462 --- /dev/null +++ b/domains/adioblu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "adyoblu", + "email": "adyoblu2000@yahoo.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aditya.json b/domains/aditya.json index 05720c444..36eb0ce3d 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" + } +} \ No newline at end of file diff --git a/domains/adityabh.json b/domains/adityabh.json new file mode 100644 index 000000000..22cfc4c44 --- /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/adityabhattacharya.json b/domains/adityabhattacharya.json new file mode 100644 index 000000000..3f14149cd --- /dev/null +++ b/domains/adityabhattacharya.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AdityaBhattacharya1", + "email": "utoprocess@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/adityajyoti.json b/domains/adityajyoti.json new file mode 100644 index 000000000..d79405ed0 --- /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/adityakotha.json b/domains/adityakotha.json new file mode 100644 index 000000000..f787d6cd4 --- /dev/null +++ b/domains/adityakotha.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "adityakotha2001", + "email": "adityakotha2001@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/adityapcgaming.json b/domains/adityapcgaming.json new file mode 100644 index 000000000..21ebbc25c --- /dev/null +++ b/domains/adityapcgaming.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Clyders", + "email": "adityapcgaming1@gmail.com" + }, + "record": { + "CNAME": "8a7f7c6e-2287-4f07-a605-5ca7824b3f38.id.repl.co" + } +} diff --git a/domains/adityaredflag.json b/domains/adityaredflag.json new file mode 100644 index 000000000..16d679383 --- /dev/null +++ b/domains/adityaredflag.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "adityaREDFLAG", + "email": "adi.redflag@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/adityavag.json b/domains/adityavag.json new file mode 100644 index 000000000..ffe3f17f3 --- /dev/null +++ b/domains/adityavag.json @@ -0,0 +1,11 @@ +{ + "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/adiy.json b/domains/adiy.json new file mode 100644 index 000000000..451552dd0 --- /dev/null +++ b/domains/adiy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "adiyadav123", + "email": "ramanandyadav7650@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/adnan.json b/domains/adnan.json new file mode 100644 index 000000000..3cc9b43b5 --- /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/adnanahmed.json b/domains/adnanahmed.json new file mode 100644 index 000000000..ac6d25ac2 --- /dev/null +++ b/domains/adnanahmed.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "adnahmed", + "email": "khanadnanahmed01@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/adolar0042.json b/domains/adolar0042.json index c3c75d935..3f8ed564d 100644 --- a/domains/adolar0042.json +++ b/domains/adolar0042.json @@ -1,12 +1,11 @@ - - { - "description": "personal website", - "repo": "https://github.com/adolar0042/adolar0042.github.io", - "owner": { - "username": "Adolar0042", - "email": "adolar0042@gmail.com" - }, - "record": { - "CNAME": "adolar0042.github.io" - } +{ + "description": "personal website", + "repo": "https://github.com/adolar0042/adolar0042.github.io", + "owner": { + "username": "Adolar0042", + "email": "adolar0042@gmail.com" + }, + "record": { + "CNAME": "adolar0042.github.io" + } } diff --git a/domains/adonisfx.json b/domains/adonisfx.json new file mode 100644 index 000000000..1b623a922 --- /dev/null +++ b/domains/adonisfx.json @@ -0,0 +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" + } +} diff --git a/domains/adri.json b/domains/adri.json index 96e1ea032..0bb488f72 100644 --- a/domains/adri.json +++ b/domains/adri.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "adripo", - "email": "adripo@hi2.in" - }, - "record": { - "URL": "https://adri.ninja" - } + "owner": { + "username": "adripo", + "email": "adripo@hi2.in" + }, + "record": { + "URL": "https://github.com/adripo" + } } diff --git a/domains/adrian.json b/domains/adrian.json index 2d7f15c7b..f841d282c 100644 --- a/domains/adrian.json +++ b/domains/adrian.json @@ -1,11 +1,11 @@ { - "description": "The awesome portfolio site for Adrian Grimm", - "repo": "https://github.com/usmcamgrimm/usmcamgrimm.github.io", - "owner": { - "username": "usmcamgrimm", - "email": "usmcamgrimm@gmail.com" - }, - "record": { - "CNAME": "usmcamgrimm.github.io" - } + "description": "The awesome portfolio site for Adrian Grimm", + "repo": "https://github.com/usmcamgrimm/usmcamgrimm.github.io", + "owner": { + "username": "usmcamgrimm", + "email": "usmcamgrimm@gmail.com" + }, + "record": { + "CNAME": "usmcamgrimm.github.io" + } } diff --git a/domains/adriantandara.json b/domains/adriantandara.json new file mode 100644 index 000000000..5cd6e0771 --- /dev/null +++ b/domains/adriantandara.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "adriantandara", + "email": "adrian.tandara05@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/adriichu.json b/domains/adriichu.json index 2119a1940..31e50ac14 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" + "username": "Adriichu", + "email": "adriichu@proton.me", + "twitter": "Adriichuu", + "discord": "Aaron#0069" }, "record": { "CNAME": "aaron-web.pages.dev" - } - } + } +} diff --git a/domains/advik.json b/domains/advik.json new file mode 100644 index 000000000..06031f4e6 --- /dev/null +++ b/domains/advik.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Advik-B", + "email": "advik.b@gmail.com", + "discord": "765739254164357121" + }, + + "record": { + "CNAME": "advik-b.github.io" + } + } + diff --git a/domains/aedotris.json b/domains/aedotris.json new file mode 100644 index 000000000..f9831cc11 --- /dev/null +++ b/domains/aedotris.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "levinhkhangzz", + "email": "levinhkhang631@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/aeolus.json b/domains/aeolus.json new file mode 100644 index 000000000..76e6816dd --- /dev/null +++ b/domains/aeolus.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AeolusDev", + "email": "aeolusdeveloper@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aerial-ace1.json b/domains/aerial-ace1.json new file mode 100644 index 000000000..3cfb704dc --- /dev/null +++ b/domains/aerial-ace1.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aerial-ace1", + "email": "abhinav.pottigari@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/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/afcu.json b/domains/afcu.json new file mode 100644 index 000000000..14438577e --- /dev/null +++ b/domains/afcu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "afcunotify", + "email": "rockkahan12@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/afrtite.json b/domains/afrtite.json new file mode 100644 index 000000000..32fea9454 --- /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..eaec94ac5 --- /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..c4a79ece3 100644 --- a/domains/ag.json +++ b/domains/ag.json @@ -1,11 +1,11 @@ { - "description": "My personal Website", - "repo": "https://github.com/andreasgrafen/andreasgrafen", - "owner": { - "username": "andreasgrafen", - "email": "software@grafen.info" - }, - "record": { - "URL": "https://andreas.grafen.info" - } + "description": "My personal Website", + "repo": "https://github.com/andreasgrafen/andreasgrafen", + "owner": { + "username": "andreasgrafen", + "email": "software@grafen.info" + }, + "record": { + "URL": "https://andreas.grafen.info" + } } diff --git a/domains/agam778.json b/domains/agam778.json index 3a41fe69b..287208b30 100644 --- a/domains/agam778.json +++ b/domains/agam778.json @@ -1,11 +1,11 @@ { - "description": "Agam's Website", - "repo": "https://github.com/agam778", - "owner": { - "username": "agam778", - "email": "agam778@zohomail.in" - }, - "record": { - "CNAME": "agamsblog.pages.dev" - } + "description": "Agam's Website", + "repo": "https://github.com/agam778", + "owner": { + "username": "agam778", + "email": "agam778@zohomail.in" + }, + "record": { + "CNAME": "agamsblog.pages.dev" + } } diff --git a/domains/agamjot-singh.json b/domains/agamjot-singh.json new file mode 100644 index 000000000..3a18e21b3 --- /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/aggelos-007.json b/domains/aggelos-007.json deleted file mode 100644 index 75e1b3194..000000000 --- a/domains/aggelos-007.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "aggelos-007", - "email": "aggeloss007@gmail.com" - }, - "record": { - "CNAME": "72ea0bf6-bb1e-4fe3-82f2-a3e0b5d75a0b.id.repl.co" - } -} diff --git a/domains/agold.json b/domains/agold.json index eeddcd96e..705acc5c1 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/agrim.json b/domains/agrim.json index a0ffc37f0..7ecd451c4 100644 --- a/domains/agrim.json +++ b/domains/agrim.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/Agrim-Bansal/Agrim-Bansal.github.io", - "owner": { - "username": "Agrim-Bansal", - "email": "agrimx2@gmail.com" - }, - "record": { - "CNAME": "agrim-bansal.github.io" - } + "repo": "https://github.com/Agrim-Bansal/Agrim-Bansal.github.io", + "owner": { + "username": "Agrim-Bansal", + "email": "agrimx2@gmail.com" + }, + "record": { + "CNAME": "agrim-bansal.github.io" + } } diff --git a/domains/aguspedhot.json b/domains/aguspedhot.json new file mode 100644 index 000000000..8e08bae79 --- /dev/null +++ b/domains/aguspedhot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Pedhot-Dev", + "email": "wanzgamerz2@gmail.com" + }, + "record": { + "CNAME": "aguspedhot.000webhostapp.com" + } +} diff --git a/domains/ahaan.json b/domains/ahaan.json new file mode 100644 index 000000000..71e5a6572 --- /dev/null +++ b/domains/ahaan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ahaan1984", + "email": "ahaansekhar1984@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ahku.json b/domains/ahku.json new file mode 100644 index 000000000..a6114c8f9 --- /dev/null +++ b/domains/ahku.json @@ -0,0 +1,10 @@ +{ + "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-ainul.json b/domains/ahmad-ainul.json deleted file mode 100644 index 654510833..000000000 --- a/domains/ahmad-ainul.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ahmad Ainul Personal Site", - "repo": "https://github.com/indiealistic", - "owner": { - "username": "indiealistic", - "email": "ahmad@indiealistic.studio" - }, - "record": { - "CNAME": "30240e0a1ae9ba26d3f8.b-cdn.net" - } -} diff --git a/domains/ahmad-muhajir.json b/domains/ahmad-muhajir.json new file mode 100644 index 000000000..a37bbecaf --- /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/ahmadeyamin.json b/domains/ahmadeyamin.json index b24d22523..3bdec094f 100644 --- a/domains/ahmadeyamin.json +++ b/domains/ahmadeyamin.json @@ -1,11 +1,11 @@ { - "description": "Eyamin Personal Website", - "repo": "https://github.com/ahmadeyamin/ahmadeyamin.github.io", - "owner": { - "username": "ahmadeyamin", - "email": "ahmadeyamin@gmail.com" - }, - "record": { - "CNAME": "ahmadeyamin.pages.dev" - } + "description": "Eyamin Personal Website", + "repo": "https://github.com/ahmadeyamin/ahmadeyamin.github.io", + "owner": { + "username": "ahmadeyamin", + "email": "ahmadeyamin@gmail.com" + }, + "record": { + "CNAME": "ahmadeyamin.pages.dev" + } } 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/ahmedashraf.json b/domains/ahmedashraf.json index 382661f1f..554378c77 100644 --- a/domains/ahmedashraf.json +++ b/domains/ahmedashraf.json @@ -1,11 +1,11 @@ { - "description": "My Portfolio", - "repo": "https://github.com/AhmedrAshraf/ahmedrashraf", - "owner": { - "username": "ahmedrashraf", - "email": "ahmedr.0331@gmail.com" - }, - "record": { - "CNAME": "ahmedrashraf.github.io" - } + "description": "My Portfolio", + "repo": "https://github.com/AhmedrAshraf/ahmedrashraf", + "owner": { + "username": "ahmedrashraf", + "email": "ahmedr.0331@gmail.com" + }, + "record": { + "CNAME": "ahmedrashraf.github.io" + } } diff --git a/domains/ahmedeldin.json b/domains/ahmedeldin.json new file mode 100644 index 000000000..fb9967e34 --- /dev/null +++ b/domains/ahmedeldin.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio Website", + "owner": { + "username": "ahmed-eldin", + "email": "ahmedeldin98@gmail.com" + }, + "record": { + "CNAME": "ahmed-eldin.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/ahmosys.json b/domains/ahmosys.json index 6bdaaba2f..eae799fec 100644 --- a/domains/ahmosys.json +++ b/domains/ahmosys.json @@ -1,12 +1,12 @@ { - "description": "Ahmosys's personal website", - "repo": "https://github.com/ahmosys/ahmosys.github.io", - "owner": { - "username": "Ahmosys", - "email": "ahmosyspro@protonmail.com", - "twitter": "ahmosys" - }, - "record": { - "CNAME": "ahmosys.github.io" - } + "description": "Ahmosys's personal website", + "repo": "https://github.com/ahmosys/ahmosys.github.io", + "owner": { + "username": "Ahmosys", + "email": "ahmosyspro@protonmail.com", + "twitter": "ahmosys" + }, + "record": { + "CNAME": "ahmosys.github.io" + } } diff --git a/domains/ahsan.json b/domains/ahsan.json deleted file mode 100644 index 3f1cb9fd6..000000000 --- a/domains/ahsan.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Ahsan's Personal Website", - "owner": { - "username": "aqureshi", - "email": "ahsan.qureshi8@gmail.com" - }, - "record": { - "CNAME": "www.thisisahsan.com" - } -} diff --git a/domains/ahsw.json b/domains/ahsw.json index 5a9ab36d7..0bdd5571c 100644 --- a/domains/ahsw.json +++ b/domains/ahsw.json @@ -1,11 +1,11 @@ { - "description": "Ahsw Personal Website", - "repo": "https://github.com/Ahsw7", - "owner": { - "username": "Ahsw", - "email": "jasjusjambu.segar@gmail.com" - }, - "record": { - "CNAME": "rd73mzgq78p59yq0.preview.edgeapp.net" - } + "description": "Ahsw Personal Website", + "repo": "https://github.com/Ahsw7", + "owner": { + "username": "Ahsw", + "email": "jasjusjambu.segar@gmail.com" + }, + "record": { + "CNAME": "rd73mzgq78p59yq0.preview.edgeapp.net" + } } diff --git a/domains/ahuja-m.json b/domains/ahuja-m.json new file mode 100644 index 000000000..a21f5cb83 --- /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/aidan.json b/domains/aidan.json new file mode 100644 index 000000000..555fcbdc4 --- /dev/null +++ b/domains/aidan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AidanTheJsDev", + "email": "24aidanwhite@usd266.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aidhani.json b/domains/aidhani.json new file mode 100644 index 000000000..be5b3c9ec --- /dev/null +++ b/domains/aidhani.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AidhaniDev", + "email": "aidhanidev@gmail.com" + }, + + "record": { + "URL": "https://sites.google.com/view/aidhanidev/home" + } +} diff --git a/domains/aiko.json b/domains/aiko.json index 76095a0e0..f8cf8dfbd 100644 --- a/domains/aiko.json +++ b/domains/aiko.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "AikoNee", "email": "shenzie1131@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "aiko.pages.dev" - } } - \ No newline at end of file +} 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/ainul.json b/domains/ainul.json deleted file mode 100644 index 654510833..000000000 --- a/domains/ainul.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ahmad Ainul Personal Site", - "repo": "https://github.com/indiealistic", - "owner": { - "username": "indiealistic", - "email": "ahmad@indiealistic.studio" - }, - "record": { - "CNAME": "30240e0a1ae9ba26d3f8.b-cdn.net" - } -} diff --git a/domains/aivietnamllm.json b/domains/aivietnamllm.json new file mode 100644 index 000000000..100cd8b28 --- /dev/null +++ b/domains/aivietnamllm.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "BachNgoH", + "email": "nlmbao2015@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file 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/aizuu.json b/domains/aizuu.json index 928524511..0214d9baa 100644 --- a/domains/aizuu.json +++ b/domains/aizuu.json @@ -1,11 +1,11 @@ { - "description": "Aizuu's Personal Website", - "repo": "https://github.com/VeguiIzumi", - "owner": { - "username": "Aizuu", - "email": "baby@alvindaldi.my.id" - }, - "record": { - "URL": "https://aizuu.my.id" - } + "description": "Aizuu's Personal Website", + "repo": "https://github.com/VeguiIzumi", + "owner": { + "username": "Aizuu", + "email": "baby@alvindaldi.my.id" + }, + "record": { + "URL": "https://aizuu.my.id" + } } diff --git a/domains/aj.json b/domains/aj.json new file mode 100644 index 000000000..d79405ed0 --- /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/ajay-charotariya.json b/domains/ajay-charotariya.json new file mode 100644 index 000000000..fe1d4d837 --- /dev/null +++ b/domains/ajay-charotariya.json @@ -0,0 +1,11 @@ +{ + "description": "Ajay charotariya.", + "repo": "https://github.com/ajay-charotariya/ajay-charotariya.github.io", + "owner": { + "username": "ajay-charotariya", + "email": "" + }, + "record": { + "CNAME": "ajay-charotariya.github.io" + } +} diff --git a/domains/ajayisdev.json b/domains/ajayisdev.json new file mode 100644 index 000000000..8dcf283c5 --- /dev/null +++ b/domains/ajayisdev.json @@ -0,0 +1,11 @@ +{ + "description": "want to use it for hosting my portfolio site", + "repo": "https://github.com/AjayIsDev/AjayIsDev.github.io", + "owner": { + "username": "AjayIsDev", + "email": "ajays.dev.contact@gmail.com" + }, + "record": { + "CNAME": "AjayIsDev.github.io" + } +} diff --git a/domains/ajaykrshna.json b/domains/ajaykrshna.json new file mode 100644 index 000000000..41d834eec --- /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" + } +} \ No newline at end of file diff --git a/domains/ajit-thakor.json b/domains/ajit-thakor.json new file mode 100644 index 000000000..988ce109c --- /dev/null +++ b/domains/ajit-thakor.json @@ -0,0 +1,11 @@ +{ + "description": "Ajit Portfolio.", + "repo": "https://github.com/ajit-thakor/ajit-thakor.github.io", + "owner": { + "username": "ajit-thakor", + "email": "" + }, + "record": { + "CNAME": "ajit-thakor.github.io" + } +} diff --git a/domains/ajlemon.json b/domains/ajlemon.json new file mode 100644 index 000000000..f01e0357b --- /dev/null +++ b/domains/ajlemon.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Atharvjha7", + "email": "jha.atharv27@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ak-dev.json b/domains/ak-dev.json new file mode 100644 index 000000000..7413f5fbd --- /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/ak.json b/domains/ak.json index 9eb611b67..89d6320ee 100644 --- a/domains/ak.json +++ b/domains/ak.json @@ -1,13 +1,13 @@ { - "description": "AK's Dev Website", - "repo": "https://github.com/AKGaming0001", - "owner": { - "username": "AKGaming0001", - "email": "", - "twitter": "NotAKGaming", - "discord": "AKGaming#7664" - }, - "record": { - "CNAME": "akgaming0001.github.io" - } + "description": "AK's Dev Website", + "repo": "https://github.com/AKGaming0001", + "owner": { + "username": "AKGaming0001", + "email": "", + "twitter": "NotAKGaming", + "discord": "AKGaming#7664" + }, + "record": { + "CNAME": "akgaming0001.github.io" + } } diff --git a/domains/akai.json b/domains/akai.json new file mode 100644 index 000000000..28483700d --- /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 index 52edf781b..6e3eebef0 100644 --- a/domains/akas.json +++ b/domains/akas.json @@ -1,11 +1,11 @@ { - "description": "Akas Portfolio", - "repo": "https://github.com/akasrai/akasrai.github.io", - "owner": { - "username": "akasrai", - "email": "akasky70@gmail.com" - }, - "record": { - "CNAME": "akasrai.github.io" - } -} + "owner": { + "username": "akasrai", + "email": "akasky70@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/akash.json b/domains/akash.json index 9ed22c1e9..ff5b01645 100644 --- a/domains/akash.json +++ b/domains/akash.json @@ -1,11 +1,11 @@ { - "description": "Akash Santhosh is a Dev", - "repo": "https://github.com/akash-santhosh/is-a-dev", - "owner": { - "username": "akash-santhosh", - "email": "akashsanthosh@icloud.com" - }, - "record": { - "CNAME": "akash-santhosh.github.io" - } -} + "owner": { + "username": "SquareSmp", + "email": "squaresmp@asia.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/akashmadhu.json b/domains/akashmadhu.json deleted file mode 100644 index 7e7ccfc3a..000000000 --- a/domains/akashmadhu.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my-portfolio website", - "repo": "https://github.com/akashmadhu4", - "owner": { - "username": "akashmadhu4", - "email": "akashmadhu4@gmail.com" - }, - "record": { - "CNAME": "akashmadhu.engineer" - } -} diff --git a/domains/akki.json b/domains/akki.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/akki.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/aknb.json b/domains/aknb.json new file mode 100644 index 000000000..9b633dd50 --- /dev/null +++ b/domains/aknb.json @@ -0,0 +1,9 @@ +{ + "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/akpi.json b/domains/akpi.json new file mode 100644 index 000000000..edc06ecb0 --- /dev/null +++ b/domains/akpi.json @@ -0,0 +1,12 @@ +{ + "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", "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDmKWCucfCBImz9pOWBPV5+SO3KNqeQSt6Jusv+3Rbm8BbSv8H0x+E0TEe4JjfNNUmVQ7zNlZFJK4Hlv453aXBNbkk9kzsekW8qm4ZGjeQwMBo2f4V6tkxPFtcYnUfNskc3194C5gH4AusJ4WMbYOe9GNxCRhuok+5tIGciJXxbWQIDAQAB"] + } +} diff --git a/domains/akshat.json b/domains/akshat.json new file mode 100644 index 000000000..5113df671 --- /dev/null +++ b/domains/akshat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nerkoux", + "email": "akshatmehta_14434@mpsjaipur.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/akshath.json b/domains/akshath.json new file mode 100644 index 000000000..af635e002 --- /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/akshatt.json b/domains/akshatt.json new file mode 100644 index 000000000..d7bc03d75 --- /dev/null +++ b/domains/akshatt.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "noob0701", + "email": "akshat250870@gmail.com" + }, + + "record": { + "CNAME": "main.dfn6axfpgkelx.amplifyapp.com" + } +} diff --git a/domains/akshay-ashok.json b/domains/akshay-ashok.json deleted file mode 100644 index 3cc96ca03..000000000 --- a/domains/akshay-ashok.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Akshay Ashok has a is a dev domain", - "repo": "https://github.com/Akshay090/akshay090.github.io", - "owner": { - "username": "Akshay090", - "email": "aks28id@gmail.com" - }, - "record": { - "CNAME": "akshay090.github.io" - } -} diff --git a/domains/akshay-n.json b/domains/akshay-n.json index a255c39e3..817649a61 100644 --- a/domains/akshay-n.json +++ b/domains/akshay-n.json @@ -1,12 +1,12 @@ { - "description": "Akshay's email alias", - "repo": "https://github.com/phenax/phenax.github.io", - "owner": { - "username": "phenax", - "email": "phenax5@gmail.com" - }, - "record": { - "TXT": "v=spf1 include:spf.improvmx.com ~all", - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] - } + "description": "Akshay's email alias", + "repo": "https://github.com/phenax/phenax.github.io", + "owner": { + "username": "phenax", + "email": "phenax5@gmail.com" + }, + "record": { + "TXT": "v=spf1 include:spf.improvmx.com ~all", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"] + } } diff --git a/domains/akshay.json b/domains/akshay.json index ff8803950..03969670a 100644 --- a/domains/akshay.json +++ b/domains/akshay.json @@ -1,11 +1,11 @@ { - "description": "Akshay's portfolio website and blog", - "repo": "https://github.com/phenax/phenax.github.io", - "owner": { - "username": "phenax", - "email": "phenax5@gmail.com" - }, - "record": { - "CNAME": "phenax.github.io" - } + "description": "Akshay's portfolio website and blog", + "repo": "https://github.com/phenax/ediblemonad.dev", + "owner": { + "username": "phenax", + "email": "phenax5@gmail.com" + }, + "record": { + "URL": "https://ediblemonad.dev" + } } diff --git a/domains/akshayan.json b/domains/akshayan.json index e487935fc..3d56d8727 100644 --- a/domains/akshayan.json +++ b/domains/akshayan.json @@ -1,11 +1,11 @@ { - "description": "Akshayan's Profile", - "repo": "https://github.com/akshayans/akshayans.github.io", - "owner": { - "username": "akshayans", - "email": "akshayan@afhstudio.ml" - }, - "record": { - "CNAME": "akshayans.github.io" - } + "description": "Akshayan's Profile", + "repo": "https://github.com/akshayans/akshayans.github.io", + "owner": { + "username": "akshayans", + "email": "akshayan@afhstudio.ml" + }, + "record": { + "CNAME": "akshayans.github.io" + } } diff --git a/domains/akshayashok.json b/domains/akshayashok.json new file mode 100644 index 000000000..75225c01f --- /dev/null +++ b/domains/akshayashok.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "akshy3", + "email": "akshayashok209@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/akshayks.json b/domains/akshayks.json new file mode 100644 index 000000000..234714bc5 --- /dev/null +++ b/domains/akshayks.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "akshaynox", + "email": "mail.akshayks@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/akshtt.json b/domains/akshtt.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/akshtt.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/akta-chavda.json b/domains/akta-chavda.json new file mode 100644 index 000000000..fc025907e --- /dev/null +++ b/domains/akta-chavda.json @@ -0,0 +1,11 @@ +{ + "description": "ankita chavda.", + "repo": "https://github.com/akta-chavda/akta-chavda.github.io", + "owner": { + "username": "akta-chavda", + "email": "" + }, + "record": { + "CNAME": "akta-chavda.github.io" + } +} diff --git a/domains/al-bagra.json b/domains/al-bagra.json new file mode 100644 index 000000000..0f4444470 --- /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/alan.json b/domains/alan.json index eb5e2843d..df9d2f420 100644 --- a/domains/alan.json +++ b/domains/alan.json @@ -1,11 +1,11 @@ { - "description": "Alan's personal developer website", - "repo": "https://github.com/schirrel", - "owner": { - "username": "schirrel", - "email": "alan@schirrel.dev" - }, - "record": { - "CNAME": "schirrel.dev" - } + "description": "Alan's personal developer website", + "repo": "https://github.com/schirrel", + "owner": { + "username": "schirrel", + "email": "alan@schirrel.dev" + }, + "record": { + "URL": "https://schirrel.dev" + } } diff --git a/domains/albert.json b/domains/albert.json new file mode 100644 index 000000000..b2b0731f7 --- /dev/null +++ b/domains/albert.json @@ -0,0 +1,12 @@ +{ + "description": "Albert's Portfolio Website", + "repo": "https://github.com/albert1033/albert-portfolio", + "owner": { + "username": "albert1033", + "email": "vuongdingtuong.an@gmail.com", + "twitter": "albert_26_10" + }, + "record": { + "CNAME": "albert1033.github.io" + } +} diff --git a/domains/albin.json b/domains/albin.json new file mode 100644 index 000000000..d4039d5a8 --- /dev/null +++ b/domains/albin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ALBINPRAVEEN", + "email": "albinpraveen135790@gmail.com" + }, + "record": { + "URL": "https://albinpraveen.vercel.app" + } +} diff --git a/domains/albinpraveen.json b/domains/albinpraveen.json new file mode 100644 index 000000000..e723d839f --- /dev/null +++ b/domains/albinpraveen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ALBINPRAVEEN", + "email": "albinpraveen135790@gmail.com" + }, + "record": { + "CNAME": "albinpraveen.github.io" + } +} diff --git a/domains/albinvar.json b/domains/albinvar.json index 80deb66b7..212aae1e4 100644 --- a/domains/albinvar.json +++ b/domains/albinvar.json @@ -1,11 +1,11 @@ { - "description": "Albin's Personal Website", - "repo": "https://github.com/albinvar/albinvar.github.io", - "owner": { - "username": "albinvar", - "email": "albinvar@pm.me" - }, - "record": { - "CNAME": "albinvar.github.io" - } + "description": "Albin's Personal Website", + "repo": "https://github.com/albinvar/albinvar.github.io", + "owner": { + "username": "albinvar", + "email": "albinvar@pm.me" + }, + "record": { + "CNAME": "albinvar.github.io" + } } diff --git a/domains/albuman.json b/domains/albuman.json new file mode 100644 index 000000000..84e78e300 --- /dev/null +++ b/domains/albuman.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AlbumanO", + "email": "oliver.young4@student.education.wa.edu.au" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/alby.json b/domains/alby.json new file mode 100644 index 000000000..57d3ebe1e --- /dev/null +++ b/domains/alby.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ALBINPRAVEEN", + "email": "albinpraveen135790@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/alchion.json b/domains/alchion.json new file mode 100644 index 000000000..77592c7b8 --- /dev/null +++ b/domains/alchion.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Alchion", + "email": "pythonmc2021@163.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/alcyoneus.json b/domains/alcyoneus.json new file mode 100644 index 000000000..a90eb77e5 --- /dev/null +++ b/domains/alcyoneus.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "alcyoneuss", + "email": "datemage+xd1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/aldenizenmc.json b/domains/aldenizenmc.json new file mode 100644 index 000000000..d6bf95472 --- /dev/null +++ b/domains/aldenizenmc.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/AldenizenMC/AldenizenMC.github.io", + "owner": { + "username": "AldenizenMC", + "email": "aldenizen09@gmail.com" + }, + "record": { + "CNAME": "AldenizenMC.github.io" + } +} diff --git a/domains/alejosm.json b/domains/alejosm.json new file mode 100644 index 000000000..59ce3a498 --- /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/aleks.json b/domains/aleks.json index 9ee4c832c..9b851ad1b 100644 --- a/domains/aleks.json +++ b/domains/aleks.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "ConnorDoesDev", - "email": "connor@cstudios.gay", - "discord": "Connor!#0800" - }, - "description": "this is-a.dev page is for a friend of mine, he didn't want to make a github account lol. we're currently working on the site, just wanted to make sure.", - "record": { - "CNAME": "connordoesdev.github.io" - } + "owner": { + "username": "ConnorDoesDev", + "email": "connor@cstudios.gay", + "discord": "Connor!#0800" + }, + "description": "this is-a.dev page is for a friend of mine, he didn't want to make a github account lol. we're currently working on the site, just wanted to make sure.", + "record": { + "CNAME": "connordoesdev.github.io" + } } diff --git a/domains/alenalex.json b/domains/alenalex.json new file mode 100644 index 000000000..c7c0cfbce --- /dev/null +++ b/domains/alenalex.json @@ -0,0 +1,12 @@ +{ + "description": "My own personal is-a-dev subdomain", + "repo": "https://github.com/AlenGeoAlex", + "owner": { + "username": "AlenGeoAlex", + "email": "alengeoalex@gmail.com", + "discord": "< 𝓐𝓵𝓮𝓷_𝓐𝓵𝓮𝔁 !>#6771" + }, + "record": { + "URL": "https://alenalex.me" + } +} diff --git a/domains/alephdiallo.json b/domains/alephdiallo.json new file mode 100644 index 000000000..8add0f2c9 --- /dev/null +++ b/domains/alephdiallo.json @@ -0,0 +1,15 @@ +{ + "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/alessandro.json b/domains/alessandro.json index ccda7c8f5..dcd706b7f 100644 --- a/domains/alessandro.json +++ b/domains/alessandro.json @@ -1,11 +1,11 @@ { - "description": "Alessandro's portfolio", - "repo": "https://github.com/alessandroaussems/portfolio", - "owner": { - "username": "alessandroaussems", - "email": "me@alessandroaussems.be" - }, - "record": { - "URL": "https://alessandroaussems.be" - } + "description": "Alessandro's portfolio", + "repo": "https://github.com/alessandroaussems/portfolio", + "owner": { + "username": "alessandroaussems", + "email": "me@alessandroaussems.be" + }, + "record": { + "URL": "https://alessandroaussems.be" + } } diff --git a/domains/alestor123.json b/domains/alestor123.json index 9807d60dc..473d8e34a 100644 --- a/domains/alestor123.json +++ b/domains/alestor123.json @@ -1,11 +1,11 @@ { - "description": "A Mortal Web Developer With Immortal Dreams", - "repo": "https://github.com/alestor123/alestor123.github.io", - "owner": { - "username": "alestor123", - "email": "alestoraldous@gmail.com" - }, - "record": { - "CNAME": "alestor123.github.io" - } + "description": "A Mortal Web Developer With Immortal Dreams", + "repo": "https://github.com/alestor123/alestor123.github.io", + "owner": { + "username": "alestor123", + "email": "alestoraldous@gmail.com" + }, + "record": { + "CNAME": "alestor123.github.io" + } } diff --git a/domains/alex-s.json b/domains/alex-s.json new file mode 100644 index 000000000..44cc30e86 --- /dev/null +++ b/domains/alex-s.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ultra980", + "email": "ultra980@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/alex.json b/domains/alex.json index c27579060..357e03311 100644 --- a/domains/alex.json +++ b/domains/alex.json @@ -1,11 +1,11 @@ { - "description": "Alex's personal developer website", - "repo": "https://github.com/alexmorrisnz", - "owner": { - "username": "alexmorrisnz", - "email": "alex@navra.nz" - }, - "record": { - "CNAME": "alexmorris.nz" - } + "description": "Alex's personal developer website", + "repo": "https://github.com/alexmorrisnz", + "owner": { + "username": "alexmorrisnz", + "email": "alex@navra.nz" + }, + "record": { + "CNAME": "alexmorris.nz" + } } 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..0644e2692 --- /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/alexcodesgames.json b/domains/alexcodesgames.json new file mode 100644 index 000000000..f11299499 --- /dev/null +++ b/domains/alexcodesgames.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AlexCodesGames", + "email": "alexPazder@hotmail.ca" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/alexey.json b/domains/alexey.json index bb3509cf7..06803f3d8 100644 --- a/domains/alexey.json +++ b/domains/alexey.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "charmingdisorder", - "email": "null" - }, - "record": { + "email": "" + }, + "record": { "CNAME": "charmingdisorder.github.io" - } } - \ No newline at end of file +} diff --git a/domains/alexidk.json b/domains/alexidk.json index 05a2b7cf2..cb4499dc1 100644 --- a/domains/alexidk.json +++ b/domains/alexidk.json @@ -1,11 +1,11 @@ { - "description": "My developer website.", - "repo": "https://github.com/Alex-idk", - "owner": { - "username": "Alex-idk", - "email": "alex@alexidk.dev" - }, - "record": { - "URL": "https://alexidk.dev" - } + "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..be66814ff 100644 --- a/domains/alexis.json +++ b/domains/alexis.json @@ -9,4 +9,4 @@ "record": { "CNAME": "alexis-elaxis.github.io" } -} +} diff --git a/domains/alexjoseph.json b/domains/alexjoseph.json index 94e6eb662..cb31aaea7 100644 --- a/domains/alexjoseph.json +++ b/domains/alexjoseph.json @@ -1,11 +1,11 @@ { - "description": "This is my first githib page", - "repo": "https://github.com/alexkjoseph/alexkjoseph.github.io", - "owner": { - "username": "alexkjoseph", - "email": "aj71563@gmail.com" - }, - "record": { - "CNAME": "alexkjoseph.github.io" - } + "description": "This is my first githib page", + "repo": "https://github.com/alexkjoseph/alexkjoseph.github.io", + "owner": { + "username": "alexkjoseph", + "email": "aj71563@gmail.com" + }, + "record": { + "CNAME": "alexkjoseph.github.io" + } } diff --git a/domains/alexlykesas.json b/domains/alexlykesas.json index 884493aca..3cf45f5d0 100644 --- a/domains/alexlykesas.json +++ b/domains/alexlykesas.json @@ -1,11 +1,11 @@ { - "description": "Alex Lykesas's personal developer website", - "repo": "https://github.com/Alexookah/alexlykesas.com", - "owner": { - "username": "alexookah", - "email": "alexlykesas@gmail.com" - }, - "record": { - "URL": "https://alexlykesas.com" - } + "description": "Alex Lykesas's personal developer website", + "repo": "https://github.com/Alexookah/alexlykesas.com", + "owner": { + "username": "alexookah", + "email": "alexlykesas@gmail.com" + }, + "record": { + "URL": "https://alexlykesas.com" + } } diff --git a/domains/alexmercerind.json b/domains/alexmercerind.json index 58812cc82..534f8cd04 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/alexpcooper.json b/domains/alexpcooper.json index e54ab8c03..331ae945e 100644 --- a/domains/alexpcooper.json +++ b/domains/alexpcooper.json @@ -1,11 +1,11 @@ { - "description": "Developer in the United Kingdom", - "repo": "https://github.com/alexpcooper", - "record": { - "URL": "https://alexpcooper.co.uk" - }, - "owner": { - "username": "alexpcooper", - "email": "dev@alexpcooper.co.uk" - } + "description": "Developer in the United Kingdom", + "repo": "https://github.com/alexpcooper", + "record": { + "URL": "https://alexpcooper.co.uk" + }, + "owner": { + "username": "alexpcooper", + "email": "dev@alexpcooper.co.uk" + } } diff --git a/domains/alexr.json b/domains/alexr.json new file mode 100644 index 000000000..d1147a63c --- /dev/null +++ b/domains/alexr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "4lexR", + "email": "amelia.R0se@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/alexsquibbs.json b/domains/alexsquibbs.json index f60c3b1ca..21d99399f 100644 --- a/domains/alexsquibbs.json +++ b/domains/alexsquibbs.json @@ -1,13 +1,13 @@ { - "description": "alexsquibbs.is-a.dev --> alexsquibbs.com", - "record": { - "URL": "https://alexsquibbs.com" - }, - "repo": "https://github.com/alexsquibbs", - "owner": { - "discord": "alex squibbs#7777", - "email": "alexsquibbs.is-a.dev@alexsquibbs.com", - "twitter": "alexsquibbs", - "username": "alexsquibbs" - } + "description": "alexsquibbs.is-a.dev --> alexsquibbs.com", + "record": { + "URL": "https://alexsquibbs.com" + }, + "repo": "https://github.com/alexsquibbs", + "owner": { + "discord": "alex squibbs#7777", + "email": "alexsquibbs.is-a.dev@alexsquibbs.com", + "twitter": "alexsquibbs", + "username": "alexsquibbs" + } } diff --git a/domains/algebraic-effects.akshay.json b/domains/algebraic-effects.akshay.json index 563a84c7b..7bb605b90 100644 --- a/domains/algebraic-effects.akshay.json +++ b/domains/algebraic-effects.akshay.json @@ -1,11 +1,11 @@ { - "description": "Docs for algebraic effects library", - "repo": "https://github.com/phenax/algebraic-effects", - "owner": { - "username": "phenax", - "email": "phenax5@gmail.com" - }, - "record": { - "CNAME": "phenax.github.io" - } + "description": "Docs for algebraic effects library", + "repo": "https://github.com/phenax/algebraic-effects", + "owner": { + "username": "phenax", + "email": "phenax5@gmail.com" + }, + "record": { + "CNAME": "phenax.github.io" + } } diff --git a/domains/algmapper.json b/domains/algmapper.json new file mode 100644 index 000000000..d616d1915 --- /dev/null +++ b/domains/algmapper.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Alg-MapPer", + "email": "abu7atm9@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file 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..9f7d2a511 --- /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..d7d475c49 100644 --- a/domains/ali.json +++ b/domains/ali.json @@ -8,4 +8,4 @@ "record": { "CNAME": "hmd-ali.github.io" } -} \ No newline at end of file +} diff --git a/domains/alian.json b/domains/alian.json new file mode 100644 index 000000000..6013a6ce8 --- /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/aliazhar.json b/domains/aliazhar.json new file mode 100644 index 000000000..358445ab5 --- /dev/null +++ b/domains/aliazhar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aliazhar0", + "email": "aliazhar1906@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aliezan.json b/domains/aliezan.json new file mode 100644 index 000000000..dacfaacd2 --- /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..e638a8338 --- /dev/null +++ b/domains/alijafari.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "alijafari-gd", + "email": "ali.jafari.sn@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/alimd.json b/domains/alimd.json index a8f47d554..561617290 100644 --- a/domains/alimd.json +++ b/domains/alimd.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "AliMD", "email": "ali@mihandoost.com" - }, + }, - "record": { + "record": { "CNAME": "alimd.github.io" - } } - \ No newline at end of file +} diff --git a/domains/alireza.json b/domains/alireza.json index 5b9e70bd4..4b22e2db6 100644 --- a/domains/alireza.json +++ b/domains/alireza.json @@ -7,4 +7,4 @@ "record": { "CNAME": "hashnode.network" } -} +} diff --git a/domains/alisabry.json b/domains/alisabry.json index 7889c32cf..6670c75e6 100644 --- a/domains/alisabry.json +++ b/domains/alisabry.json @@ -1,10 +1,10 @@ - { - "owner": { +{ + "owner": { "username": "ali-sabry", "email": "alisabry.official@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://alisabry.netlify.app" - } } +} diff --git a/domains/alkadhumi.json b/domains/alkadhumi.json new file mode 100644 index 000000000..3f0a9bb45 --- /dev/null +++ b/domains/alkadhumi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "alkadhumi", + "email": "alihassan7722@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/allan.json b/domains/allan.json deleted file mode 100644 index 1c6a8edea..000000000 --- a/domains/allan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Allan's personal website", - "repo": "https://github.com/abarriel", - "owner": { - "username": "abarriel", - "email": "abarriel@student.42.fr" - }, - "record": { - "CNAME": "abarriel.github.io" - } -} diff --git a/domains/allancoding.json b/domains/allancoding.json new file mode 100644 index 000000000..8590559c0 --- /dev/null +++ b/domains/allancoding.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "allancoding", + "email": "allancoding.dev@gmail.com", + "twitter": "allancoding", + "discord": "allancoding" + }, + "record": { + "CNAME": "allancoding.github.io" + } +} diff --git a/domains/allen.json b/domains/allen.json index 2d8ed18ad..31faab294 100644 --- a/domains/allen.json +++ b/domains/allen.json @@ -1,12 +1,12 @@ { - "description": "A full-stack developer.", - "repo": "https://github.com/xiaofuyesnew", - "owner": { - "username": "xiaofuyesnew", - "email": "xiaofuyesnew@qq.com", - "twitter": "xiaofuyesnew" - }, - "record": { - "URL": "https://github.com/xiaofuyesnew" - } + "description": "A full-stack developer.", + "repo": "https://github.com/xiaofuyesnew", + "owner": { + "username": "xiaofuyesnew", + "email": "xiaofuyesnew@qq.com", + "twitter": "xiaofuyesnew" + }, + "record": { + "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/allvaa.json b/domains/allvaa.json index 1cfb0ca93..ae737fc14 100644 --- a/domains/allvaa.json +++ b/domains/allvaa.json @@ -1,12 +1,12 @@ { - "description": "Allvaa's personal website", - "repo": "https://github.com/Allvaa", - "owner": { - "username": "Allvaa", - "email": "", - "twitter": "allvzx" - }, - "record": { - "URL": "https://allvaa.my.id" - } + "description": "Allvaa's personal website", + "repo": "https://github.com/Allvaa", + "owner": { + "username": "Allvaa", + "email": "", + "twitter": "allvzx" + }, + "record": { + "URL": "https://allvaa.my.id" + } } diff --git a/domains/ally.json b/domains/ally.json index 28df78154..6ce7dbd7e 100644 --- a/domains/ally.json +++ b/domains/ally.json @@ -1,11 +1,11 @@ { - "description": "Ally's personal website", - "repo": "https://github.com/AllyTally", - "owner": { - "username": "AllyTally", - "email": "alexiatilde@gmail.com" - }, - "record": { - "URL": "https://ally.moe" - } + "description": "Ally's personal website", + "repo": "https://github.com/AllyTally", + "owner": { + "username": "AllyTally", + "email": "alexiatilde@gmail.com" + }, + "record": { + "URL": "https://ally.moe" + } } diff --git a/domains/almatch.json b/domains/almatch.json index f7e5e3d5a..9a76efa5f 100644 --- a/domains/almatch.json +++ b/domains/almatch.json @@ -1,11 +1,11 @@ { - "description": "Imad", - "repo": "https://github.com/imadboy89", - "owner": { - "username": "imadboy89", - "email": "imad.kh@outlook.com" - }, - "record": { - "CNAME":"imadboy89.github.io" - } + "description": "Imad", + "repo": "https://github.com/imadboy89", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "CNAME": "imadboy89.github.io" + } } diff --git a/domains/almaz.json b/domains/almaz.json new file mode 100644 index 000000000..910dd32c2 --- /dev/null +++ b/domains/almaz.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "AlmaziikDev", + "email": "almazgamer228@gmail.com" + }, + "record": { + "A": [ + "109.71.252.37" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/almightynan.json b/domains/almightynan.json index ecd3e380c..dbb1b5ec7 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" + "username": "almightynan", + "email": "almightynan@gmail.com" }, - "record": { - "CNAME": "a88a0a2a-4e01-4d66-845c-db47023b86c3.id.repl.co" - } + "record": { + "CNAME": "almightynandev-production.up.railway.app" + } } diff --git a/domains/almuqbel.json b/domains/almuqbel.json new file mode 100644 index 000000000..0896bebd8 --- /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 new file mode 100644 index 000000000..ba3ccbd84 --- /dev/null +++ b/domains/alokik.json @@ -0,0 +1,9 @@ +{ + "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..0c0d212b1 --- /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/alperen.json b/domains/alperen.json index 0d11c2ee1..c5be1ec14 100644 --- a/domains/alperen.json +++ b/domains/alperen.json @@ -1,11 +1,11 @@ { - "description": "Alperen Aslan Portfolio", - "repo": "https://github.com/alperenasln/alperenasln.github.io", - "owner": { - "username": "alperenasln", - "email": "alperenaslan55@gmail.com" - }, - "record": { - "CNAME": "alperenasln.github.io" - } + "description": "Alperen Aslan Portfolio", + "repo": "https://github.com/alperenasln/alperenasln.github.io", + "owner": { + "username": "alperenasln", + "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..2e27c31f0 --- /dev/null +++ b/domains/alpha.json @@ -0,0 +1,21 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "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/alphabet.json b/domains/alphabet.json new file mode 100644 index 000000000..72cbedb30 --- /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/alraakib.json b/domains/alraakib.json deleted file mode 100644 index e8df4e8c5..000000000 --- a/domains/alraakib.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "alraakib", - "email": "alraakib@gmail.com" - }, - "record": { - "CNAME": "portrkb.netlify.app" - } - } - \ No newline at end of file diff --git a/domains/altude.json b/domains/altude.json new file mode 100644 index 000000000..734a07eca --- /dev/null +++ b/domains/altude.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "altude", + "email": "altude@skiff.com" + }, + "record": { + "CNAME": "altude.pages.dev" + } +} diff --git a/domains/aluwi.json b/domains/aluwi.json new file mode 100644 index 000000000..3769af7bb --- /dev/null +++ b/domains/aluwi.json @@ -0,0 +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" + } +} diff --git a/domains/alvin.json b/domains/alvin.json new file mode 100644 index 000000000..7a0af849b --- /dev/null +++ b/domains/alvin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alvinbengeorge", + "email": "alvinallen333@gmail.com" + }, + "record": { + "CNAME": "alvinbengeorge.vercel.app" + } +} diff --git a/domains/am.json b/domains/am.json new file mode 100644 index 000000000..dcedc2de9 --- /dev/null +++ b/domains/am.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sa-mustafa", + "email": "s.a.mustafa@yandex.com" + }, + "record": { + "CNAME": "dev.imagesmith.io" + } +} diff --git a/domains/amal-sebastian.json b/domains/amal-sebastian.json index 9f4c18d39..11df910da 100644 --- a/domains/amal-sebastian.json +++ b/domains/amal-sebastian.json @@ -1,11 +1,11 @@ { - "description": "Amal's personal developer website", - "repo": "https://github.com/amalsebs/amalsebs.github.io", - "owner": { - "username": "amalsebs", - "email": "amalsebastian48@gmail.com" - }, - "record": { - "CNAME": "amalsebs.github.io" - } + "description": "Amal's personal developer website", + "repo": "https://github.com/amalsebs/amalsebs.github.io", + "owner": { + "username": "amalsebs", + "email": "amalsebastian48@gmail.com" + }, + "record": { + "CNAME": "amalsebs.github.io" + } } diff --git a/domains/amal.json b/domains/amal.json index 9f4c18d39..11df910da 100644 --- a/domains/amal.json +++ b/domains/amal.json @@ -1,11 +1,11 @@ { - "description": "Amal's personal developer website", - "repo": "https://github.com/amalsebs/amalsebs.github.io", - "owner": { - "username": "amalsebs", - "email": "amalsebastian48@gmail.com" - }, - "record": { - "CNAME": "amalsebs.github.io" - } + "description": "Amal's personal developer website", + "repo": "https://github.com/amalsebs/amalsebs.github.io", + "owner": { + "username": "amalsebs", + "email": "amalsebastian48@gmail.com" + }, + "record": { + "CNAME": "amalsebs.github.io" + } } diff --git a/domains/amalsr.json b/domains/amalsr.json deleted file mode 100644 index 1729c3da8..000000000 --- a/domains/amalsr.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "A very simple but stupid website", - "repo": "https://github.com/asr1191/asr1191.github.io", - "owner": { - "username": "asr1191", - "email": "amalsraj95@gmail.com" - }, - "record": { - "CNAME": "asr1191.github.io" - } -} diff --git a/domains/aman.json b/domains/aman.json deleted file mode 100644 index 861e0de0e..000000000 --- a/domains/aman.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/jn-aman", - "owner": { - "username": "jn-aman", - "email": "aman.j@safepath.ai" - }, - "record": { - "CNAME": "amanwiki.netlify.app" - } -} diff --git a/domains/amanda.json b/domains/amanda.json new file mode 100644 index 000000000..08cab2ff2 --- /dev/null +++ b/domains/amanda.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "at669", + "email": "at669@cornell.edu" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amanthakur.json b/domains/amanthakur.json new file mode 100644 index 000000000..0c9999f30 --- /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/amar.json b/domains/amar.json new file mode 100644 index 000000000..a72ca1285 --- /dev/null +++ b/domains/amar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AyTea14", + "email": "muhdamar4687@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amar13.json b/domains/amar13.json deleted file mode 100644 index a6253e7e5..000000000 --- a/domains/amar13.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My personal portfolio", - "repo": "https://github.com/amar13mehta/amar13mehta.github.io", - "owner": { - "username": "amar13mehta", - "email": "amar13iam@gmail.com" - }, - "record": { - "CNAME": "amar13mehta.github.io" - } -} diff --git a/domains/amarjeet.json b/domains/amarjeet.json index c2d8bdb11..01bc01ae8 100644 --- a/domains/amarjeet.json +++ b/domains/amarjeet.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "amalpotra", - "email": "amarjeetmalpotra@outlook.com" - }, - "record": { - "CNAME": "amalpotra.github.io" - } + "owner": { + "username": "amalpotra", + "email": "amarjeetmalpotra@outlook.com" + }, + "record": { + "CNAME": "amalpotra.github.io" + } } diff --git a/domains/amazing.devs.json b/domains/amazing.devs.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/amazing.devs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amazing.json b/domains/amazing.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/amazing.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amazingdev.json b/domains/amazingdev.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/amazingdev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amazingdevel.json b/domains/amazingdevel.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/amazingdevel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amazingdevels.json b/domains/amazingdevels.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/amazingdevels.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amazingdevs.json b/domains/amazingdevs.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/amazingdevs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ambaskaryash.json b/domains/ambaskaryash.json new file mode 100644 index 000000000..2840f433d --- /dev/null +++ b/domains/ambaskaryash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ambaskaryash", + "email": "kimetsu119@gmail.com" + }, + "record": { + "CNAME": "ambaskaryash.github.io" + } +} diff --git a/domains/ambon.json b/domains/ambon.json new file mode 100644 index 000000000..ad97df8d3 --- /dev/null +++ b/domains/ambon.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BangMbon", + "email": "dci.reborn@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amelia.json b/domains/amelia.json new file mode 100644 index 000000000..d1147a63c --- /dev/null +++ b/domains/amelia.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "4lexR", + "email": "amelia.R0se@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amey.json b/domains/amey.json new file mode 100644 index 000000000..3f23d09bb --- /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/ameysawant.json b/domains/ameysawant.json new file mode 100644 index 000000000..0658eb823 --- /dev/null +++ b/domains/ameysawant.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "amey1355", + "email": "assawant06@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/amila.json b/domains/amila.json new file mode 100644 index 000000000..5840d39b4 --- /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/amin.json b/domains/amin.json new file mode 100644 index 000000000..96add1396 --- /dev/null +++ b/domains/amin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "amenm0", + "email": "mjmwtmjls@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amine-brahmi.json b/domains/amine-brahmi.json index 61f388199..6e5d0b655 100644 --- a/domains/amine-brahmi.json +++ b/domains/amine-brahmi.json @@ -1,11 +1,11 @@ { - "description": "My tech blog", - "owner": { - "username": "thou-mayest", - "email": "", - "twitter": "Dr_whoami_" - }, - "record": { - "CNAME": "thou-mayest.github.io" - } + "description": "My tech blog", + "owner": { + "username": "thou-mayest", + "email": "", + "twitter": "Dr_whoami_" + }, + "record": { + "CNAME": "thou-mayest.github.io" + } } diff --git a/domains/amine.json b/domains/amine.json deleted file mode 100644 index 82c236ca1..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/amirhossein-esanezhad.json b/domains/amirhossein-esanezhad.json new file mode 100644 index 000000000..30ff0bcde --- /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/amit.json b/domains/amit.json index 0a5f22ee2..bdf970313 100644 --- a/domains/amit.json +++ b/domains/amit.json @@ -1,11 +1,11 @@ { - "description": "Amit's website", - "repo": "https://github.com/amittkulkarni/amittkulkarni.github.io", - "owner": { - "username": "amittkulkarni", - "email": "amitcoolkarni@outlook.com" - }, - "record": { - "CNAME": "amittkulkarni.github.io" - } + "description": "Amit's website", + "repo": "https://github.com/amittkulkarni/amittkulkarni.github.io", + "owner": { + "username": "amittkulkarni", + "email": "amitcoolkarni@outlook.com" + }, + "record": { + "CNAME": "amittkulkarni.github.io" + } } diff --git a/domains/amity.json b/domains/amity.json new file mode 100644 index 000000000..27e397938 --- /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/amiyo.json b/domains/amiyo.json index c551b7e87..282e1cc1b 100644 --- a/domains/amiyo.json +++ b/domains/amiyo.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "DevAmiyo", - "email": "devamiyosp@gmail.com", - "repo": "https://github.com/DevAmiyo", - "discord": "Amiyo#7978", - "twitter": "AmiyoTweets" - }, - "record": { - "URL": "https://github.amiyo.tk" - } + "owner": { + "username": "DevAmiyo", + "email": "devamiyosp@gmail.com", + "repo": "https://github.com/DevAmiyo", + "discord": "Amiyo#7978", + "twitter": "AmiyoTweets" + }, + "record": { + "URL": "https://github.amiyo.tk" + } } diff --git a/domains/amjad.json b/domains/amjad.json index e6014a143..458903496 100644 --- a/domains/amjad.json +++ b/domains/amjad.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/amjadAH/amjadAH.github.io", - "owner": { - "username": "amjadAH", - "email": "amjad_ah_@hotmail.com", - "tiwtter": "amjad_ah_" - }, - "record": { - "CNAME": "amjadAH.github.io" - } + "repo": "https://github.com/amjadAH/amjadAH.github.io", + "owner": { + "username": "amjadAH", + "email": "amjad_ah_@hotmail.com", + "tiwtter": "amjad_ah_" + }, + "record": { + "CNAME": "amjadAH.github.io" + } } diff --git a/domains/ammy.json b/domains/ammy.json new file mode 100644 index 000000000..32f879584 --- /dev/null +++ b/domains/ammy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "panditamey", + "email": "codewithamey@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amodity.json b/domains/amodity.json new file mode 100644 index 000000000..26cbc9d64 --- /dev/null +++ b/domains/amodity.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "adytia-lika-ardiansyah", + "email": "nakpegiba.li@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amol254542.json b/domains/amol254542.json new file mode 100644 index 000000000..521f3c192 --- /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..bf67336b1 --- /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/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/amuffin.json b/domains/amuffin.json index 4d0538eed..98a7d5fdb 100644 --- a/domains/amuffin.json +++ b/domains/amuffin.json @@ -1,11 +1,11 @@ { - "description": "amuffins website", - "repo": "https://github.com/amagicmuffin/amagicmuffin.github.io", - "owner": { - "username": "amagicmuffin", - "email": "2014wcheng@gmail.com" - }, - "record": { - "CNAME": "amagicmuffin.github.io" - } + "description": "amuffins website", + "repo": "https://github.com/amagicmuffin/amagicmuffin.github.io", + "owner": { + "username": "amagicmuffin", + "email": "2014wcheng@gmail.com" + }, + "record": { + "CNAME": "amagicmuffin.github.io" + } } diff --git a/domains/amulyasingh.json b/domains/amulyasingh.json new file mode 100644 index 000000000..77aeb7865 --- /dev/null +++ b/domains/amulyasingh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AMULYASing", + "email": "amulyasingh370@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/amy.json b/domains/amy.json index 8d5d0b02e..236cd57db 100644 --- a/domains/amy.json +++ b/domains/amy.json @@ -1,11 +1,11 @@ { - "description": "Amy's is-a-dev domain", - "repo": "https://github.com/nullishamy/nullishamy.github.io", - "owner": { - "username": "nullishamy", - "email": "amycodes@null.net" - }, - "record": { - "CNAME": "nullishamy.github.io" - } + "description": "Amy's is-a-dev domain", + "repo": "https://github.com/nullishamy/nullishamy.github.io", + "owner": { + "username": "nullishamy", + "email": "amycodes@null.net" + }, + "record": { + "CNAME": "nullishamy.github.io" + } } diff --git a/domains/amya.json b/domains/amya.json new file mode 100644 index 000000000..32f879584 --- /dev/null +++ b/domains/amya.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "panditamey", + "email": "codewithamey@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/anakhalal.json b/domains/anakhalal.json new file mode 100644 index 000000000..3bf40404c --- /dev/null +++ b/domains/anakhalal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AdeebToPro", + "email": "blackfriday.xp@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/analogsombra.json b/domains/analogsombra.json new file mode 100644 index 000000000..b47529fb6 --- /dev/null +++ b/domains/analogsombra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "analog-sombra", + "email": "analogsombra@gmail.com" + }, + "record": { + "CNAME": "analog-sombra.github.io" + } +} diff --git a/domains/analytics.json b/domains/analytics.json new file mode 100644 index 000000000..df90b568a --- /dev/null +++ b/domains/analytics.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "CNAME": "dns.beadman-network.com" + } +} diff --git a/domains/anamay.json b/domains/anamay.json index 95bc7390a..825541ff4 100644 --- a/domains/anamay.json +++ b/domains/anamay.json @@ -2,10 +2,10 @@ "description": "Anamay's .is-a.dev domain", "repo": "https://github.com/anamaykashiv/anamaykashiv.github.io", "owner": { - "username": "anamaykashiv", - "email": "kashiv.anamay002@gmail.com" + "username": "anamaykashiv", + "email": "kashiv.anamay002@gmail.com" }, "record": { - "CNAME": "anamaykashiv.github.io" + "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..ddba91548 --- /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/anandyeole.json b/domains/anandyeole.json index dfef22de1..4b9433bf0 100644 --- a/domains/anandyeole.json +++ b/domains/anandyeole.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/anandyeole/anandyeole.github.io", - "owner": { - "username": "anandyeole", - "email": "anandyeole@duck.com" - }, - "record": { - "CNAME": "anandyeole.github.io" - } + "repo": "https://github.com/anandyeole/anandyeole.github.io", + "owner": { + "username": "anandyeole", + "email": "anandyeole@duck.com" + }, + "record": { + "CNAME": "anandyeole.github.io" + } } diff --git a/domains/ananth.json b/domains/ananth.json new file mode 100644 index 000000000..4b3b51064 --- /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/anas.json b/domains/anas.json index 96a8ab4e9..d18b7a5ca 100644 --- a/domains/anas.json +++ b/domains/anas.json @@ -1,11 +1,11 @@ { - "description": "Anasov Github Portfolio", - "repo": "https://github.com/ItzAnasov/ItzAnasov.github.io", - "owner": { - "username": "ItzAnasov", - "email": "anasybal@mail.ru" - }, - "record": { - "CNAME": "itzanasov.github.io" - } + "description": "Anasov Github Portfolio", + "repo": "https://github.com/ItzAnasov/ItzAnasov.github.io", + "owner": { + "username": "ItzAnasov", + "email": "anasybal@mail.ru" + }, + "record": { + "CNAME": "itzanasov.github.io" + } } diff --git a/domains/anautonell.json b/domains/anautonell.json index 6ccd9a8a7..53d49c4de 100644 --- a/domains/anautonell.json +++ b/domains/anautonell.json @@ -1,12 +1,12 @@ { - "description": "My Portofolio website!", - "repo": "https://github.com/anautonell/portofolio-website", - "owner": { - "username": "anautonell", - "email": "help@myprotect.xyz", - "twitter": "fastsecurerblx" - }, - "record": { - "CNAME": "anautonell.github.io" - } + "description": "My Portofolio website!", + "repo": "https://github.com/anautonell/portofolio-website", + "owner": { + "username": "anautonell", + "email": "help@myprotect.xyz", + "twitter": "fastsecurerblx" + }, + "record": { + "CNAME": "anautonell.github.io" + } } diff --git a/domains/anay-208.json b/domains/anay-208.json new file mode 100644 index 000000000..451065340 --- /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..451065340 --- /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..451065340 --- /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/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/andr.json b/domains/andr.json index 69528613d..2d815ee82 100644 --- a/domains/andr.json +++ b/domains/andr.json @@ -1,11 +1,11 @@ { - "description": "Domain for my personal blog", - "repo": "https://github.com/rbaks/rbaks.github.io", - "owner": { - "username": "rbaks", - "email": "andri.bakoson@gmail.com" - }, - "record": { - "CNAME": "rbaks.github.io" - } + "description": "Domain for my personal blog", + "repo": "https://github.com/rbaks/rbaks.github.io", + "owner": { + "username": "rbaks", + "email": "andri.bakoson@gmail.com" + }, + "record": { + "CNAME": "rbaks.github.io" + } } diff --git a/domains/andrea.json b/domains/andrea.json index 89e210ac2..6a5d8a781 100644 --- a/domains/andrea.json +++ b/domains/andrea.json @@ -1,11 +1,11 @@ { - "description": "Personal site", - "repo": "https://github.com/andrea-capigiri/", - "owner": { - "username": "andrea-capigiri", - "email": "uadopo+isadev@pm.me" - }, - "record": { - "A": ["212.237.38.154"] - } + "description": "Personal site", + "repo": "https://github.com/andrea-capigiri", + "owner": { + "username": "andrea-capigiri", + "email": "uadopo+isadev@pm.me" + }, + "record": { + "A": ["212.237.38.154"] + } } diff --git a/domains/andrei.json b/domains/andrei.json new file mode 100644 index 000000000..d6f8d4748 --- /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/andremor.json b/domains/andremor.json index 3bf00c31f..4be5f7d3a 100644 --- a/domains/andremor.json +++ b/domains/andremor.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "AndreMor8", "email": "me@andremor.dev" - }, - "record": { + }, + "record": { "URL": "https://andremor.dev" - } } - \ No newline at end of file +} 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/andrewstech.json b/domains/andrewstech.json index 20eaa3e20..06c4ac08f 100644 --- a/domains/andrewstech.json +++ b/domains/andrewstech.json @@ -1,12 +1,11 @@ { - "description": "My Portfolio", - "repo": "https://github.com/andrewstech/andrewstech", - "owner": { - "username": "andrewstech", - "email": "hello@andrewstech.me", - "twitter": "andrewstech1" - }, - "record": { - "CNAME": "andrewstech.github.io" - } + "owner": { + "username": "andrewstech", + "email": "andrew@win11react.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 mx a:mail.is-a.dev ip4:217.174.245.249 ~all", + "MX": ["mail.is-a.dev"] + } } diff --git a/domains/andrewtest.json b/domains/andrewtest.json new file mode 100644 index 000000000..b5900cfe6 --- /dev/null +++ b/domains/andrewtest.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "andrewstech", + "email": "is-a-dev@win11react.com" + }, + "record": { + "A": [ + "51.161.54.161", + "217.174.245.249" + ] + } +} diff --git a/domains/andrewtest22.json b/domains/andrewtest22.json new file mode 100644 index 000000000..b2c659267 --- /dev/null +++ b/domains/andrewtest22.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/andrianina.json b/domains/andrianina.json index 69528613d..2d815ee82 100644 --- a/domains/andrianina.json +++ b/domains/andrianina.json @@ -1,11 +1,11 @@ { - "description": "Domain for my personal blog", - "repo": "https://github.com/rbaks/rbaks.github.io", - "owner": { - "username": "rbaks", - "email": "andri.bakoson@gmail.com" - }, - "record": { - "CNAME": "rbaks.github.io" - } + "description": "Domain for my personal blog", + "repo": "https://github.com/rbaks/rbaks.github.io", + "owner": { + "username": "rbaks", + "email": "andri.bakoson@gmail.com" + }, + "record": { + "CNAME": "rbaks.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 new file mode 100644 index 000000000..e4c47bf23 --- /dev/null +++ b/domains/andronasef.json @@ -0,0 +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" + } +} diff --git a/domains/andros.json b/domains/andros.json index 8d17a744f..a44b9eb92 100644 --- a/domains/andros.json +++ b/domains/andros.json @@ -1,12 +1,12 @@ { - "description": "Andros's personal developer website", - "repo": "https://github.com/tanrax", - "owner": { - "username": "Andros Fenollosa Hurtado", - "email": "", - "twitter": "@androsfenollosa" - }, - "record": { - "URL": "https://programadorwebvalencia.com/" - } + "description": "Andros's personal developer website", + "repo": "https://github.com/tanrax", + "owner": { + "username": "tanrax", + "email": "", + "twitter": "androsfenollosa" + }, + "record": { + "URL": "https://programadorwebvalencia.com" + } } diff --git a/domains/andy.json b/domains/andy.json index e6d4ec8f3..e24c9777e 100644 --- a/domains/andy.json +++ b/domains/andy.json @@ -1,11 +1,11 @@ { - "description": "Andy's portfolio website", - "repo": "https://github.com/andyfaizan/andyfaizan.github.io", - "owner": { - "username": "andyfaizan", - "email": "andyfaizan@gmail.com" - }, - "record": { - "CNAME": "andyfaizan.github.io" - } + "description": "Andy's portfolio website", + "repo": "https://github.com/andyfaizan/andyfaizan.github.io", + "owner": { + "username": "andyfaizan", + "email": "andyfaizan@gmail.com" + }, + "record": { + "CNAME": "andyfaizan.github.io" + } } diff --git a/domains/angel.json b/domains/angel.json new file mode 100644 index 000000000..4947639f7 --- /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/angelo.json b/domains/angelo.json index 418998da4..dc667e61f 100644 --- a/domains/angelo.json +++ b/domains/angelo.json @@ -1,11 +1,11 @@ { - "description": "Link for Angelo's personal site on GitHub pages", - "repo": "https://github.com/angelofallars/angelofallars.github.io/", - "owner": { - "username": "angelofallars", - "email": "ba.fallaria@gmail.com" - }, - "record": { - "CNAME": "angelofallars.github.io" - } + "description": "Link for Angelo's personal site on GitHub pages", + "repo": "https://github.com/angelofallars/angelofallars.github.io", + "owner": { + "username": "angelofallars", + "email": "ba.fallaria@gmail.com" + }, + "record": { + "CNAME": "angelofallars.github.io" + } } diff --git a/domains/angelwuff.json b/domains/angelwuff.json index f697f47f9..edc74dc51 100644 --- a/domains/angelwuff.json +++ b/domains/angelwuff.json @@ -1,12 +1,12 @@ { - "description": "Angel Wuffy", - "repo": "https://github.com/Angelix1/Angelix1.github.io", - "owner": { - "username": "Angelix1", - "email": "", - "twitter": "AngelTheWolfy" - }, - "record": { - "CNAME": "Angelix1.github.io" - } + "description": "Angel Wuffy", + "repo": "https://github.com/Angelix1/Angelix1.github.io", + "owner": { + "username": "Angelix1", + "email": "", + "twitter": "AngelTheWolfy" + }, + "record": { + "CNAME": "Angelix1.github.io" + } } diff --git a/domains/anger.json b/domains/anger.json index 2f5e54211..3f0d534c0 100644 --- a/domains/anger.json +++ b/domains/anger.json @@ -9,5 +9,4 @@ "record": { "CNAME": "angerminecraftyt.github.io" } -} - +} diff --git a/domains/angi-talk.json b/domains/angi-talk.json new file mode 100644 index 000000000..5d2664cff --- /dev/null +++ b/domains/angi-talk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Angi-g", + "email": "dguyard@student.42.fr" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/angi.json b/domains/angi.json new file mode 100644 index 000000000..5d2664cff --- /dev/null +++ b/domains/angi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Angi-g", + "email": "dguyard@student.42.fr" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aniketrajsingh.json b/domains/aniketrajsingh.json new file mode 100644 index 000000000..432de6374 --- /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.json b/domains/anime.json new file mode 100644 index 000000000..66bd72ebc --- /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/anindra.json b/domains/anindra.json new file mode 100644 index 000000000..0cc9ad31f --- /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/anish.json b/domains/anish.json new file mode 100644 index 000000000..ae5c96a53 --- /dev/null +++ b/domains/anish.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "anish-mandal", + "email": "anishmandalme1234@outlook.com", + "twitter": "anishsay" + }, + "description": "This website is for my personal portfolio.", + "repo": "https://github.com/anish-mandal/anish-mandal.github.io", + "record": { + "CNAME": "anish-mandal.github.io" + } +} diff --git a/domains/aniwon.json b/domains/aniwon.json new file mode 100644 index 000000000..4495fc47d --- /dev/null +++ b/domains/aniwon.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Panwar0", + "email": "panwarnishchey+02@gmail.com", + "discord": "821976026984611850" + }, + + "record": { + "A": ["185.191.231.137"] + } + } + \ No newline at end of file diff --git a/domains/anjayy.json b/domains/anjayy.json new file mode 100644 index 000000000..c1004942b --- /dev/null +++ b/domains/anjayy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MacengBOT", + "email": "macengbot@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ankiprajapati.json b/domains/ankiprajapati.json new file mode 100644 index 000000000..cac33add8 --- /dev/null +++ b/domains/ankiprajapati.json @@ -0,0 +1,11 @@ +{ + "description": "ankit Prajapati.", + "repo": "https://github.com/ankiprajapati/ankiprajapati.github.io", + "owner": { + "username": "ankiprajapati", + "email": "" + }, + "record": { + "CNAME": "ankiprajapati.github.io" + } +} diff --git a/domains/ankit-acquaintsoft.json b/domains/ankit-acquaintsoft.json new file mode 100644 index 000000000..fd6d3bf4b --- /dev/null +++ b/domains/ankit-acquaintsoft.json @@ -0,0 +1,11 @@ +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/ankit-acquaintsoft/ankit-acquaintsoft.github.io", + "owner": { + "username": "ankit-dere", + "email": "" + }, + "record": { + "CNAME": "ankit-acquaintsoft.github.io" + } +} diff --git a/domains/ankit.json b/domains/ankit.json index 4a6c6fe38..004b200a4 100644 --- a/domains/ankit.json +++ b/domains/ankit.json @@ -1,11 +1,11 @@ { - "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" - }, - "record": { - "CNAME": "ankitjain-1.github.io" - } -} \ No newline at end of file + "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" + }, + "record": { + "CNAME": "ankitjain-1.github.io" + } +} diff --git a/domains/ankit42x.json b/domains/ankit42x.json new file mode 100644 index 000000000..c0f1865e8 --- /dev/null +++ b/domains/ankit42x.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ankit42x", + "email": "42ankitraj@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ 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/annihilatorrrr.json b/domains/annihilatorrrr.json index 600f87a54..2005a1c4a 100644 --- a/domains/annihilatorrrr.json +++ b/domains/annihilatorrrr.json @@ -1,12 +1,12 @@ { - "repo": "https://github.com/annihilatorrrr/annihilatorrrr.github.io", - "description": "My personal website.", - "owner": { - "username": "annihilatorrrr", - "email": "annihilatorspark@gmail.com", - "telegram": "annihilatorrrr" - }, - "record": { - "CNAME": "annihilatorrrr.github.io" - } + "repo": "https://github.com/annihilatorrrr/annihilatorrrr.github.io", + "description": "My personal website.", + "owner": { + "username": "annihilatorrrr", + "email": "annihilatorspark@gmail.com", + "telegram": "annihilatorrrr" + }, + "record": { + "CNAME": "annihilatorrrr.github.io" + } } diff --git a/domains/anon.json b/domains/anon.json index 44ebccde8..11d521260 100644 --- a/domains/anon.json +++ b/domains/anon.json @@ -1,11 +1,13 @@ { - "description": "Anondev's personal profile website", - "repo": "https://github.com/anondev-sudo/anondev-sudo", - "owner": { - "username": "anondev-sudo", - "email": "contact@anonym-dev.tk" - }, - "record": { - "CNAME": "anondev.up.railway.app" - } + "description": "Anondev's personal profile website", + "repo": "https://github.com/anondev-sudo/anondev-sudo", + "owner": { + "username": "anondev-sudo", + "email": "contact@anonym-dev.tk" + }, + "record": { + "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/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..f5a717a63 --- /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 new file mode 100644 index 000000000..8904dc4fb --- /dev/null +++ b/domains/ansari-saify.json @@ -0,0 +1,11 @@ +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/ansari-saify/ansari-saify.github.io", + "owner": { + "username": "ansari-saify", + "email": "" + }, + "record": { + "CNAME": "ansari-saify.github.io" + } +} diff --git a/domains/ansh.json b/domains/ansh.json new file mode 100644 index 000000000..6fda717e2 --- /dev/null +++ b/domains/ansh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ansh04196", + "email": "anshchouksey08@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/anshbhimani.json b/domains/anshbhimani.json new file mode 100644 index 000000000..168508a4f --- /dev/null +++ b/domains/anshbhimani.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AnshBhimani", + "email": "anshbhimani2003@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/anshdadwal.json b/domains/anshdadwal.json new file mode 100644 index 000000000..b8bc72be7 --- /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..9644150ea --- /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/anthony.json b/domains/anthony.json index a9586a5b3..d507a27aa 100644 --- a/domains/anthony.json +++ b/domains/anthony.json @@ -1,10 +1,10 @@ { - "description": "Anthony's personal developer website", - "owner": { - "username": "hubsta", - "email": "admin@thehubble.com.au" - }, - "record": { - "CNAME": "brisbaneweb.dev" - } + "description": "Anthony's personal developer website", + "owner": { + "username": "hubsta", + "email": "admin@thehubble.com.au" + }, + "record": { + "CNAME": "brisbaneweb.dev" + } } diff --git a/domains/anthony2be.json b/domains/anthony2be.json index c1dfcedf8..eed606095 100644 --- a/domains/anthony2be.json +++ b/domains/anthony2be.json @@ -1,12 +1,12 @@ { - "description": "Personal website", - "repo": "https://github.com/Anthony2be/Anthony2be.github.io", - "owner": { - "username": "Anthony2be", - "email": "adubovitsky1234@gmail.com", - "discord": "anthony2be#1900" - }, - "record": { - "CNAME": "anthony2be.github.io" - } + "description": "Personal website", + "repo": "github.com/Anthony2be/fresh-blog", + "owner": { + "username": "Anthony2be", + "email": "adubovitsky1234@gmail.com", + "discord": "anthony2be#1900" + }, + "record": { + "CNAME": "anthony2be-blog.deno.dev" + } } diff --git a/domains/anticens.json b/domains/anticens.json new file mode 100644 index 000000000..90e70ca93 --- /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..a23664d55 --- /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/anto.json b/domains/anto.json new file mode 100644 index 000000000..e66843a44 --- /dev/null +++ b/domains/anto.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "b5i", + "email": "bollengier.antoine@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/antogamer.json b/domains/antogamer.json index 273726cc2..8e0c3ebfb 100644 --- a/domains/antogamer.json +++ b/domains/antogamer.json @@ -1,9 +1,11 @@ { "owner": { "username": "AntogamerYT", - "email": "antonio.antogamer@gmail.com" + "email": "antonio.antogamer@gmail.com", + "discord": "thisisanto", + "twitter": "ThisIsAnto_" }, "record": { - "A": ["141.148.238.95"] + "A": ["141.144.196.233"] } } diff --git a/domains/antoine.json b/domains/antoine.json new file mode 100644 index 000000000..e66843a44 --- /dev/null +++ b/domains/antoine.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "b5i", + "email": "bollengier.antoine@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/antonio.json b/domains/antonio.json index 636e10ca0..fe387ce0e 100644 --- a/domains/antonio.json +++ b/domains/antonio.json @@ -1,11 +1,11 @@ { - "description": "For my personal landing page", - "repo": "https://github.com/YantCaccia/yantcaccia.github.io", - "owner": { - "username": "YantCaccia", - "email": "yantcaccia@gmail.com" - }, - "record": { - "CNAME": "yantcaccia.github.io" - } + "description": "For my personal landing page", + "repo": "https://github.com/YantCaccia/yantcaccia.github.io", + "owner": { + "username": "YantCaccia", + "email": "yantcaccia@gmail.com" + }, + "record": { + "CNAME": "yantcaccia.github.io" + } } diff --git a/domains/antoniod.json b/domains/antoniod.json new file mode 100644 index 000000000..3178c5a5f --- /dev/null +++ b/domains/antoniod.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "well-it-wasnt-me", + "email": "dangeloantonio179@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/antton.json b/domains/antton.json new file mode 100644 index 000000000..817cac904 --- /dev/null +++ b/domains/antton.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "antton-dev", + "email": "antton.chevrier@etik.com" + }, + "record": { + "CNAME": "antton-dev.github.io" + } +} diff --git a/domains/anttondev.json b/domains/anttondev.json new file mode 100644 index 000000000..f5540cad7 --- /dev/null +++ b/domains/anttondev.json @@ -0,0 +1,11 @@ +{ + "description": "Anttondev's portfolio", + "repo": "https://github.com/antton-dev/portfolio-challenge", + "owner": { + "username": "antton-dev", + "email": "antton.chevrier@etik.com" + }, + "record": { + "CNAME": "antton-dev.github.io" + } +} diff --git a/domains/anubhav.json b/domains/anubhav.json new file mode 100644 index 000000000..db76a0aed --- /dev/null +++ b/domains/anubhav.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Anubhav-Pathak", + "email": "anubhavpathak99@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/anubhav823.json b/domains/anubhav823.json index 182c7bb22..8de8f6727 100644 --- a/domains/anubhav823.json +++ b/domains/anubhav823.json @@ -1,11 +1,10 @@ { - "description": "anubhav823' personal developer website", - "repo": "", - "owner": { - "username": "anubhav823", - "email": "anubhav823@gmail.com" - }, - "record": { - "URL": "https://anubhav823.github.io/wordle" - } + "description": "anubhav823' personal developer website", + "owner": { + "username": "anubhav823", + "email": "anubhav823@gmail.com" + }, + "record": { + "URL": "https://anubhav823.github.io/wordle" + } } diff --git a/domains/anuj.json b/domains/anuj.json index 5a143337f..f47e4e858 100644 --- a/domains/anuj.json +++ b/domains/anuj.json @@ -1,12 +1,11 @@ - { - "description": "Anuj' Welcome to my portfolio", - "repo": "https://anujmutha.github.io/Portfolio/", - "owner": { - "username": "AnujMutha", - "email": "mutha.am16@gmail.com" - }, - "record": { - "CNAME": "anujmutha.github.io" - } + "description": "Anuj' Welcome to my portfolio", + "repo": "https://anujmutha.github.io/Portfolio", + "owner": { + "username": "AnujMutha", + "email": "mutha.am16@gmail.com" + }, + "record": { + "CNAME": "anujmutha.github.io" + } } diff --git a/domains/anujjamdade.json b/domains/anujjamdade.json new file mode 100644 index 000000000..612b3ff5d --- /dev/null +++ b/domains/anujjamdade.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "anujjamdade007", + "email": "jamdadeanuj@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/anukarop.json b/domains/anukarop.json new file mode 100644 index 000000000..1a4d1ac0a --- /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/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..1e937f41e --- /dev/null +++ b/domains/anurag.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "anurag-bit", + "email": "singh.ask@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/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/aozora.json b/domains/aozora.json index 35701f9af..1b9d644ec 100644 --- a/domains/aozora.json +++ b/domains/aozora.json @@ -1,11 +1,11 @@ { - "description": "Just my personal website", - "repo": "https://github.com/AozoraDev", - "owner": { - "username": "AozoraDev", - "email": "aozoradeveloper@gmail.com" - }, - "record": { - "CNAME": "website-production-5fc2.up.railway.app" - } + "description": "Just my personal website", + "repo": "https://github.com/AozoraDev", + "owner": { + "username": "AozoraDev", + "email": "aozoradeveloper@gmail.com" + }, + "record": { + "CNAME": "website-production-5fc2.up.railway.app" + } } diff --git a/domains/apa.json b/domains/apa.json new file mode 100644 index 000000000..e0542791b --- /dev/null +++ b/domains/apa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "eyesmad", + "email": "eagam0002@mymail.lausd.net" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/apanel.json b/domains/apanel.json new file mode 100644 index 000000000..779c3ad7e --- /dev/null +++ b/domains/apanel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Heroku403", + "email": "juhisharma0757@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/apexweb.json b/domains/apexweb.json new file mode 100644 index 000000000..583b71514 --- /dev/null +++ b/domains/apexweb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "shahfahad19", + "email": "sfahad4280@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/api-docs.json b/domains/api-docs.json deleted file mode 100644 index 11db6aeea..000000000 --- a/domains/api-docs.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - - "record": { - "CNAME": "andrewstech.github.io" - } - } - \ No newline at end of file diff --git a/domains/api-kirito.json b/domains/api-kirito.json index 3bb88291c..442b22f6f 100644 --- a/domains/api-kirito.json +++ b/domains/api-kirito.json @@ -1,11 +1,11 @@ { - "description": "For My API!", - "repo": "https://github.com/ThisMe124", - "owner": { - "username": "ThisMe124", - "email": "anonymous.orgn@gmail.com" - }, + "description": "For My API!", + "repo": "https://github.com/ThisMe124", + "owner": { + "username": "ThisMe124", + "email": "anonymous.orgn@gmail.com" + }, "record": { - "CNAME": "only-devs-production.up.railway.app" - } + "CNAME": "only-devs-production.up.railway.app" + } } diff --git a/domains/api-kyouka.json b/domains/api-kyouka.json deleted file mode 100644 index bbe4a625e..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": "kyouka-apis.herokuapp.com" - } -} diff --git a/domains/api.anshtyagi.json b/domains/api.anshtyagi.json new file mode 100644 index 000000000..addb913fe --- /dev/null +++ b/domains/api.anshtyagi.json @@ -0,0 +1,13 @@ +{ + "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.astra.json b/domains/api.astra.json new file mode 100644 index 000000000..5cf54865a --- /dev/null +++ b/domains/api.astra.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "LilyMusic", + "email": "lilymusicdiscord@gmail.com", + "discord": "981225782938579014" + }, + "record": { + "A": ["69.30.249.53"] + } + } diff --git a/domains/api.autoplay88.xyz.json b/domains/api.autoplay88.xyz.json new file mode 100644 index 000000000..cfc41a65d --- /dev/null +++ b/domains/api.autoplay88.xyz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "chaiyen123", + "email": "pasakornpakjeera@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/api.badboy.json b/domains/api.badboy.json deleted file mode 100644 index 4f07ae142..000000000 --- a/domains/api.badboy.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Suzumi Api", - "owner": { - "username": "bad-boy-codes", - "email": "contact@mail.badboy.is-a.dev", - "discord": "445073800850046977", - "twitter": "BadBoyGoesBrr" - }, - "record": { - "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co" - } -} diff --git a/domains/api.catzboy.json b/domains/api.catzboy.json index 376e4f271..86140611c 100644 --- a/domains/api.catzboy.json +++ b/domains/api.catzboy.json @@ -1,11 +1,11 @@ { - "description": "Api", - "repo": "https://github.com/Maruful007/Maruful007.github.io", - "owner": { - "username": "Maruful007", - "email": "marufulislamsami2007@gmail.com" - }, - "record": { - "CNAME": "maruful007.github.io" - } + "description": "Api", + "repo": "https://github.com/Maruful007/Maruful007.github.io", + "owner": { + "username": "Maruful007", + "email": "marufulislamsami2007@gmail.com" + }, + "record": { + "CNAME": "maruful007.github.io" + } } diff --git a/domains/api.dhyan99.json b/domains/api.dhyan99.json new file mode 100644 index 000000000..e4a9bcdcc --- /dev/null +++ b/domains/api.dhyan99.json @@ -0,0 +1,11 @@ +{ + "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.json b/domains/api.json index d5c11c05e..942fee6dc 100644 --- a/domains/api.json +++ b/domains/api.json @@ -1,11 +1,10 @@ { - "description": "Official is-a.dev API", - "repo": "https://github.com/MaskDuck/is-a-dev-api", - "owner": { - "username": "mtgsquad & MaskDuck", - "email": "mahir@molai.dev" - }, - "record": { - "CNAME": "is-a-dev-api-production.up.railway.app" - } + "owner": { + "username": "wdhdev", + "email": "william@williamharrison.dev" + }, + + "record": { + "CNAME": "wdhdns.com" + } } diff --git a/domains/api.karyakarsa.willo.json b/domains/api.karyakarsa.willo.json index 316f0aa73..2e5e1e4d6 100644 --- a/domains/api.karyakarsa.willo.json +++ b/domains/api.karyakarsa.willo.json @@ -1,12 +1,12 @@ { - "description": "api for karyakarsa", - "repo": "https://github.com/WilloIzCitron/karyakarsa-rest-api", - "owner": { - "username": "WilloIzCitron", - "email": "", - "twitter": "willoizcitron" - }, - "record": { - "CNAME": "karyakarsa-rest-api-production.up.railway.app" - } + "description": "api for karyakarsa", + "repo": "https://github.com/WilloIzCitron/karyakarsa-rest-api", + "owner": { + "username": "WilloIzCitron", + "email": "", + "twitter": "willoizcitron" + }, + "record": { + "CNAME": "karyakarsa-rest-api-production.up.railway.app" + } } diff --git a/domains/api.semant.json b/domains/api.semant.json index 4b95abfc5..774aa4e97 100644 --- a/domains/api.semant.json +++ b/domains/api.semant.json @@ -1,11 +1,11 @@ { - "description": "Semant Api", - "owner": { - "username": "semantcodes", - "email": "contact@semant.is-a.dev", - "discord": "445073800850046977" - }, - "record": { - "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co" - } + "description": "Semant Api", + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev", + "discord": "445073800850046977" + }, + "record": { + "A": ["69.30.249.53"] + } } diff --git a/domains/api.stefdp.json b/domains/api.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/api.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/api.zeppelin.maskduck.json b/domains/api.zeppelin.maskduck.json index 4ffcd8ccf..18310d23d 100644 --- a/domains/api.zeppelin.maskduck.json +++ b/domains/api.zeppelin.maskduck.json @@ -1,15 +1,15 @@ { - "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" - } + "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/apigeon.json b/domains/apigeon.json new file mode 100644 index 000000000..15b36dfc0 --- /dev/null +++ b/domains/apigeon.json @@ -0,0 +1,9 @@ +{ + "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/apiwebserver.json b/domains/apiwebserver.json new file mode 100644 index 000000000..ad97df8d3 --- /dev/null +++ b/domains/apiwebserver.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BangMbon", + "email": "dci.reborn@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/apollyon.json b/domains/apollyon.json deleted file mode 100644 index ed5b6f423..000000000 --- a/domains/apollyon.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Develop website", - "repo": "", - "owner": { - "username": "apollyon9", - "email": "blzzardst0rm@gmail.com", - "twitter": "sakurai072" - }, - "record": { - "URL": "https://eris9.repl.co" - } -} diff --git a/domains/apoloz.json b/domains/apoloz.json index dc2428e14..c8ddabd3e 100644 --- a/domains/apoloz.json +++ b/domains/apoloz.json @@ -1,11 +1,11 @@ { - "description": "Anatoliy Poloz portfolio", - "repo": "https://github.com/tolyod/tolyod.github.io", - "owner": { - "username": "tolyod", - "email": "anatoliy.poloz@gmail.com" - }, - "record": { - "A": ["185.185.71.114"] - } + "description": "Anatoliy Poloz portfolio", + "repo": "https://github.com/tolyod/tolyod.github.io", + "owner": { + "username": "tolyod", + "email": "anatoliy.poloz@gmail.com" + }, + "record": { + "A": ["185.185.71.114"] + } } diff --git a/domains/app.allancoding.json b/domains/app.allancoding.json new file mode 100644 index 000000000..2deb8c97c --- /dev/null +++ b/domains/app.allancoding.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "allancoding", + "email": "allancoding.dev@gmail.com", + "twitter": "allancoding", + "discord": "allancoding" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/appeals.json b/domains/appeals.json new file mode 100644 index 000000000..35e798d00 --- /dev/null +++ b/domains/appeals.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "mtgsquad", + "email": "mahir@molai.dev" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/appscom.json b/domains/appscom.json new file mode 100644 index 000000000..4822e0816 --- /dev/null +++ b/domains/appscom.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Addreou", + "email": "eduardomp.mendoza@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aqsakhan.json b/domains/aqsakhan.json index d45248c0e..0270c7385 100644 --- a/domains/aqsakhan.json +++ b/domains/aqsakhan.json @@ -9,4 +9,4 @@ "record": { "CNAME": "v1-7tp.pages.dev" } -} +} diff --git a/domains/aqua.json b/domains/aqua.json index 285fb0738..bbe376333 100644 --- a/domains/aqua.json +++ b/domains/aqua.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "AquaQuokka", "email": "aquaquokka@outlook.com" - }, + }, - "record": { - "URL": "https://aquaquokka.carrd.co" - } + "record": { + "CNAME": "aquaquokka.github.io" } - +} diff --git a/domains/arafat.json b/domains/arafat.json new file mode 100644 index 000000000..1793b599a --- /dev/null +++ b/domains/arafat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CodingWithArafat", + "email": "codingwitharafat@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/arafatrahaman.json b/domains/arafatrahaman.json index ba74f1746..e0c568786 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", + "repo": "https://github.com/Hieser21/portfolio", "owner": { - "username": "Hieser21", - "email": "rarafat883@gmail.com" + "username": "Hieser21", + "email": "rarafat883@gmail.com" }, "record": { - "CNAME": "arafatrahaman.up.railway.app" + "CNAME": "portfolio-gh9n.onrender.com" } - } +} diff --git a/domains/aramos.json b/domains/aramos.json index 66b453d05..04df44616 100644 --- a/domains/aramos.json +++ b/domains/aramos.json @@ -1,11 +1,11 @@ { - "description": "The awesome portfolio site for Alejandro Ramos", - "repo": "https://github.com/Al327/al327.github.io", - "owner": { - "username": "al327", - "email": "ramosgalejandro3f@gmail.com" - }, - "record": { - "CNAME": "al327.github.io" - } + "description": "The awesome portfolio site for Alejandro Ramos", + "repo": "https://github.com/Al327/al327.github.io", + "owner": { + "username": "al327", + "email": "ramosgalejandro3f@gmail.com" + }, + "record": { + "CNAME": "al327.github.io" + } } diff --git a/domains/araon.json b/domains/araon.json new file mode 100644 index 000000000..a900700e1 --- /dev/null +++ b/domains/araon.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Araon", + "email": "soumik.ghosh1998@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aravindh.json b/domains/aravindh.json new file mode 100644 index 000000000..5c373f0d3 --- /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/arboy.json b/domains/arboy.json new file mode 100644 index 000000000..75fb23a93 --- /dev/null +++ b/domains/arboy.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/ARBoyGo/arboygo.github.io", + "owner": { + "username": "ARBoyGo", + "email": "arboygo@duck.com" + }, + "record": { + "CNAME": "arboygo.github.io" + } +} diff --git a/domains/arcade.json b/domains/arcade.json index 8226779ee..7dcebb37d 100644 --- a/domains/arcade.json +++ b/domains/arcade.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "l3gacyb3ta", - "email": "", - "twitter": "l3gacyb3ta" - }, - "record": { - "URL": "https://arcade.omg.lol" - } + "owner": { + "username": "l3gacyb3ta", + "email": "", + "twitter": "l3gacyb3ta" + }, + "record": { + "URL": "https://arcade.omg.lol" + } } diff --git a/domains/arch.json b/domains/arch.json new file mode 100644 index 000000000..3ba605b85 --- /dev/null +++ b/domains/arch.json @@ -0,0 +1,13 @@ +{ + "description": "My personal website on arch.is-a.dev (main files in repo/repository).", + "repo": "https://github.com/Arch881010/Arch881010", + "owner": { + "username": "Arch881010", + "email": "c1yd4.arch@inbox.testmail.app", + "discord": "arch1010", + "discord-id": "410248634593050627" + }, + "record": { + "CNAME": "arch881010.github.io" + } +} diff --git a/domains/archelaus.json b/domains/archelaus.json index 39e9f2e0c..fe6ab726d 100644 --- a/domains/archelaus.json +++ b/domains/archelaus.json @@ -3,9 +3,9 @@ "repo": "https://github.com/archelaus/archelaus.github.io", "owner": { "username": "archelaus", - "email": "aa.18cs02@thdcihet.ac.in" + "email": "archelaus@skiff.com" }, "record": { "CNAME": "archelaus.github.io" } -} +} diff --git a/domains/arctix.json b/domains/arctix.json new file mode 100644 index 000000000..3fc5cf560 --- /dev/null +++ b/domains/arctix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Sibu07", + "email": "sarbes60@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/areen-c.json b/domains/areen-c.json new file mode 100644 index 000000000..7d70f7bbc --- /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..aa59afaa2 --- /dev/null +++ b/domains/areen.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "areen-c", + "email": "arikucinggila@Gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/argonnetworkmainframe.json b/domains/argonnetworkmainframe.json new file mode 100644 index 000000000..46797af02 --- /dev/null +++ b/domains/argonnetworkmainframe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "carterkimbler", + "email": "kimblercarter@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/arhammusheer.json b/domains/arhammusheer.json new file mode 100644 index 000000000..6faa7e728 --- /dev/null +++ b/domains/arhammusheer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arhammusheer", + "email": "arhammusheer@gmail.com" + }, + "record": { + "CNAME": "croissant.one" + } +} 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/arijit.json b/domains/arijit.json new file mode 100644 index 000000000..9a2071338 --- /dev/null +++ b/domains/arijit.json @@ -0,0 +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..aa22225a1 --- /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 8ceedd311..225faab31 100644 --- a/domains/arjix.json +++ b/domains/arjix.json @@ -1,6 +1,6 @@ { "description": "Most likely a page for my portfolio.", - "repo": "https://github.com/ArjixWasTaken/arjixwastaken.github.io/", + "repo": "https://github.com/ArjixWasTaken/arjixwastaken.github.io", "owner": { "username": "ArjixWasTaken", "email": "", diff --git a/domains/ark.json b/domains/ark.json new file mode 100644 index 000000000..6674f9466 --- /dev/null +++ b/domains/ark.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SamarthGhante", + "email": "samarthghante.dev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/arman.json b/domains/arman.json deleted file mode 100644 index 307beeb12..000000000 --- a/domains/arman.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "description": "Arman's personal website!", - "repo": "https://github.com/ItzArman09/website", - "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/armoredvortex.json b/domains/armoredvortex.json index c759272eb..67d475901 100644 --- a/domains/armoredvortex.json +++ b/domains/armoredvortex.json @@ -1,10 +1,10 @@ { - "description": "Personal Portfolio website", - "owner": { - "username": "armoredvortex", - "email": "rachitpandey@protonmail.com" - }, - "record": { - "CNAME": "armoredvortex.github.io" - } + "description": "Personal Portfolio website", + "owner": { + "username": "armoredvortex", + "email": "rachitpandey@protonmail.com" + }, + "record": { + "CNAME": "armoredvortex.github.io" + } } diff --git a/domains/arnav.json b/domains/arnav.json index 7aced6f20..46571c026 100644 --- a/domains/arnav.json +++ b/domains/arnav.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "arnav-kr", "email": "arnav-kumar@outlook.com" - }, + }, - "record": { + "record": { "CNAME": "arnav-kr.github.io" - } } - +} diff --git a/domains/arpana.json b/domains/arpana.json index f8db76b38..e094d8e88 100644 --- a/domains/arpana.json +++ b/domains/arpana.json @@ -1,12 +1,12 @@ { - "description": "Meet Arpana!", - "repo": "https://github.com/winter-code/winter-code", - "owner": { - "username": "winter-code", - "email": "arpana11mehta@gmail.com", - "twitter": "arpana_naa" - }, - "record": { - "CNAME": "winter-code.github.io" - } + "description": "Meet Arpana!", + "repo": "https://github.com/winter-code/winter-code", + "owner": { + "username": "winter-code", + "email": "arpana11mehta@gmail.com", + "twitter": "arpana_naa" + }, + "record": { + "CNAME": "winter-code.github.io" + } } diff --git a/domains/arpitbatra.json b/domains/arpitbatra.json new file mode 100644 index 000000000..a6ce35497 --- /dev/null +++ b/domains/arpitbatra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arpit-batra", + "email": "arpitbatra98@gmail.com" + }, + "record": { + "URL": "https://myportfolio-eb732.web.app" + } +} diff --git a/domains/arsdorint.json b/domains/arsdorint.json new file mode 100644 index 000000000..63592add4 --- /dev/null +++ b/domains/arsdorint.json @@ -0,0 +1,10 @@ +{ + "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/arslan.json b/domains/arslan.json index 4498ae49e..fbaa73978 100644 --- a/domains/arslan.json +++ b/domains/arslan.json @@ -1,11 +1,11 @@ { - "description": "Arslan's World (links and socials)", - "repo": "https://github.com/sandwiching/sandwiching.github.io", - "owner": { - "username": "sandwiching", - "email": "77godlike@bk.ru" - }, - "record": { - "CNAME": "sandwiching.github.io" - } + "description": "Arslan's World (links and socials)", + "repo": "https://github.com/sandwiching/sandwiching.github.io", + "owner": { + "username": "sandwiching", + "email": "77godlike@bk.ru" + }, + "record": { + "CNAME": "sandwiching.github.io" + } } diff --git a/domains/art.json b/domains/art.json index fbfcc4a11..59aa8227e 100644 --- a/domains/art.json +++ b/domains/art.json @@ -1,11 +1,11 @@ { - "description": "Art's personal developer website", - "repo": "https://github.com/dotiful", - "owner": { - "username": "dotiful", - "email": "dots.util@gmail.com" - }, - "record": { - "CNAME": "dotiful.github.io" - } + "description": "Art's personal developer website", + "repo": "https://github.com/dotiful", + "owner": { + "username": "dotiful", + "email": "dots.util@gmail.com" + }, + "record": { + "CNAME": "dotiful.github.io" + } } diff --git a/domains/arter.json b/domains/arter.json index ef9448b9c..1c698ab4c 100644 --- a/domains/arter.json +++ b/domains/arter.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "animemoeus", - "email": "arter.tendean.07@gmail.com" - }, - "record": { - "URL": "https://animemoe.us" - } + "owner": { + "username": "animemoeus", + "email": "arter.tendean.07@gmail.com" + }, + "record": { + "URL": "https://animemoe.us" + } } diff --git a/domains/arthur.json b/domains/arthur.json index 76e713a34..c24fefc04 100644 --- a/domains/arthur.json +++ b/domains/arthur.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Arthurdw", - "email": "mail@arthurdw.com" - }, - "repo": "https://github.com/arthurdw", - "record": { - "URL": "https://www.arthurdw.com" - } + "owner": { + "username": "Arthurdw", + "email": "mail@arthurdw.com" + }, + "repo": "https://github.com/arthurdw", + "record": { + "URL": "https://www.arthurdw.com" + } } diff --git a/domains/artiefuzzz.json b/domains/artiefuzzz.json index da964b39a..bfcc143ce 100644 --- a/domains/artiefuzzz.json +++ b/domains/artiefuzzz.json @@ -1,11 +1,11 @@ { - "description": "ArtieFuzzz's personal website", - "repo": "https://github.com/ArtieFuzzz/artiefuzzz.github.io", - "owner": { - "username": "ArtieFuzzz", - "email": "jardenz.den@gmail.com" - }, - "record": { - "CNAME": "artiefuzzz.github.io" - } + "description": "ArtieFuzzz's personal website", + "repo": "https://github.com/ArtieFuzzz/artiefuzzz.github.io", + "owner": { + "username": "ArtieFuzzz", + "email": "jardenz.den@gmail.com" + }, + "record": { + "CNAME": "artiefuzzz.github.io" + } } diff --git a/domains/artix.json b/domains/artix.json new file mode 100644 index 000000000..72121f9b3 --- /dev/null +++ b/domains/artix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alex1028199", + "email": "yu1234u73f.com@gmail.com" + }, + "record": { + "CNAME": "proxy.private.danbot.host" + } +} diff --git a/domains/arul.json b/domains/arul.json index dd6c83823..5ee2d7f73 100644 --- a/domains/arul.json +++ b/domains/arul.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "arulprabakaran", - "email": "", - "twitter": "arulpraba" - }, - "record": { - "URL": "https://arulprabakaran.web.app/" - } + "owner": { + "username": "arulprabakaran", + "email": "", + "twitter": "arulpraba" + }, + "record": { + "URL": "https://arulprabakaran.web.app" + } } diff --git a/domains/arunava.json b/domains/arunava.json new file mode 100644 index 000000000..9f5ef52e2 --- /dev/null +++ b/domains/arunava.json @@ -0,0 +1,11 @@ +{ + "description": "is-a.dev subdomain for my portfolio", + "repo": "https://github.com/its-ag/arunava.tech", + "owner": { + "username": "its-ag", + "email": "itsag0024@gmail.com" + }, + "record": { + "CNAME": "its-ag.github.io" + } +} diff --git a/domains/arunodmanohara.json b/domains/arunodmanohara.json new file mode 100644 index 000000000..74a402204 --- /dev/null +++ b/domains/arunodmanohara.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "arunodmanoharaofficial", + "email": "arunodmanoharaofficial@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/arv.json b/domains/arv.json new file mode 100644 index 000000000..2e17cc5ad --- /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/arwi.json b/domains/arwi.json new file mode 100644 index 000000000..01e36ac38 --- /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/arya.json b/domains/arya.json index b3819cb72..bcaf4095a 100644 --- a/domains/arya.json +++ b/domains/arya.json @@ -1,11 +1,11 @@ { - "description": "Arya Vinodan's Website", - "repo": "https://github.com/aryavinodan", - "owner": { - "username": "aryavinodan", - "email": "aryavinodan2000@gmail.com" - }, - "record": { - "CNAME": "aryavinodan2000.github.io" - } + "description": "Arya Vinodan's Website", + "repo": "https://github.com/aryavinodan", + "owner": { + "username": "aryavinodan", + "email": "aryavinodan2000@gmail.com" + }, + "record": { + "CNAME": "aryavinodan2000.github.io" + } } diff --git a/domains/aryamaan.json b/domains/aryamaan.json index f88e58678..691d90fc4 100644 --- a/domains/aryamaan.json +++ b/domains/aryamaan.json @@ -1,20 +1,11 @@ - { - "owner": { +{ + "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" - } + }, + "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..05281c543 --- /dev/null +++ b/domains/aryan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ARYANOP-REEF", + "email": "aryanmenghare@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/asad-khan.json b/domains/asad-khan.json index c09d14a4c..4abe78cee 100644 --- a/domains/asad-khan.json +++ b/domains/asad-khan.json @@ -1,11 +1,11 @@ { - "description": "👋 Hello there! I'm Asad, nice to meet you. Building things that bring delight to users is what I enjoy, always learning new stuff everyday.", - "repo": "https://github.com/asadkhan777", - "owner": { - "username": "asadkhan777", - "email": "asadkhan1776@gmail.com" - }, - "record": { - "CNAME": "asadkhan777.github.io" - } + "description": "👋 Hello there! I'm Asad, nice to meet you. Building things that bring delight to users is what I enjoy, always learning new stuff everyday.", + "repo": "https://github.com/asadkhan777", + "owner": { + "username": "asadkhan777", + "email": "asadkhan1776@gmail.com" + }, + "record": { + "CNAME": "asadkhan777.github.io" + } } diff --git a/domains/ash.json b/domains/ash.json new file mode 100644 index 000000000..6152a1f7f --- /dev/null +++ b/domains/ash.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Drake-Ash", + "email": "ashwinv4444@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ashan.json b/domains/ashan.json new file mode 100644 index 000000000..862eb5662 --- /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..0d564b944 --- /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/asher.json b/domains/asher.json new file mode 100644 index 000000000..d6b8339c2 --- /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..27c38f7c4 --- /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/ashey.json b/domains/ashey.json new file mode 100644 index 000000000..bfd473234 --- /dev/null +++ b/domains/ashey.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "notashleel", + "email": "aumanshk@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/asheyxd.json b/domains/asheyxd.json new file mode 100644 index 000000000..bfd473234 --- /dev/null +++ b/domains/asheyxd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "notashleel", + "email": "aumanshk@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ashish-g-gupta.json b/domains/ashish-g-gupta.json new file mode 100644 index 000000000..8b1f945b8 --- /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/ashish.json b/domains/ashish.json index aade93089..a759cc492 100644 --- a/domains/ashish.json +++ b/domains/ashish.json @@ -1,11 +1,11 @@ { - "description": "Ashish's personal developer website", - "repo": "https://github.com/ashiishme", - "owner": { - "username": "ashiishme", - "email": "contact@ashiish.me" - }, - "record": { - "CNAME": "ashiish.me" - } + "description": "Ashish's personal developer website", + "repo": "https://github.com/ashiishme", + "owner": { + "username": "ashiishme", + "email": "contact@ashiish.me" + }, + "record": { + "CNAME": "ashiish.me" + } } diff --git a/domains/ashishbinu.json b/domains/ashishbinu.json new file mode 100644 index 000000000..fc314d529 --- /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/ashl3y.json b/domains/ashl3y.json index 7b97aacb9..f9f03fd45 100644 --- a/domains/ashl3y.json +++ b/domains/ashl3y.json @@ -1,12 +1,12 @@ { - "description": "My personal developer portfolio.", - "repo": "https://github.com/ashl3ycodes/ashl3ycodes.github.io", - "owner": { - "username": "ashl3ycodes", - "email": "ashl3ycodes@protonmail.com", - "twitter": "ashl3ycodes" - }, - "record": { - "CNAME": "ashl3ycodes.github.io" - } + "description": "My personal developer portfolio.", + "repo": "https://github.com/ashl3ycodes/ashl3ycodes.github.io", + "owner": { + "username": "ashl3ycodes", + "email": "ashl3ycodes@protonmail.com", + "twitter": "ashl3ycodes" + }, + "record": { + "CNAME": "ashl3ycodes.github.io" + } } diff --git a/domains/ashleymavericks.json b/domains/ashleymavericks.json index 2aa81aab6..33680d0a0 100644 --- a/domains/ashleymavericks.json +++ b/domains/ashleymavericks.json @@ -1,11 +1,11 @@ { - "description": "Portfolio Website", - "repo": "https://github.com/ashleymavericks/Portfolio-Site", - "owner": { - "username": "ashlyemavericks", - "email": "singhanurag024@gmail.com" - }, - "record": { - "URL": "https://anuragsingh.dev" - } + "description": "Portfolio Website", + "repo": "https://github.com/ashleymavericks/Portfolio-Site", + "owner": { + "username": "ashlyemavericks", + "email": "singhanurag024@gmail.com" + }, + "record": { + "URL": "https://anuragsingh.dev" + } } diff --git a/domains/ashutosh-pandey.json b/domains/ashutosh-pandey.json new file mode 100644 index 000000000..f84861c5d --- /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/ashutosh.json b/domains/ashutosh.json index 27719cb8a..1186e3ea4 100644 --- a/domains/ashutosh.json +++ b/domains/ashutosh.json @@ -1,11 +1,11 @@ { - "description": "Ashutosh Kumar's Portfolio", - "repo": "https://github.com/Ashutoshcoder/ashutoshcoder.github.io", - "owner": { - "username": "Ashutoshcoder", - "email": "ashutoshkumardbms@gmail.com" - }, - "record": { - "CNAME": "ashutoshcoder.github.io" - } + "description": "Ashutosh Kumar's Portfolio", + "repo": "https://github.com/Ashutoshcoder/ashutoshcoder.github.io", + "owner": { + "username": "Ashutoshcoder", + "email": "ashutoshkumardbms@gmail.com" + }, + "record": { + "CNAME": "ashutoshcoder.github.io" + } } diff --git a/domains/ashutoshgupta.json b/domains/ashutoshgupta.json new file mode 100644 index 000000000..64afb72c0 --- /dev/null +++ b/domains/ashutoshgupta.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "imAshutoshGupta", + "email": "aguptaworkspace@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ashutoshkumar.json b/domains/ashutoshkumar.json index 3d75958e1..f8d97941d 100644 --- a/domains/ashutoshkumar.json +++ b/domains/ashutoshkumar.json @@ -1,10 +1,10 @@ { - "description": "Ashutosh Kumar's Portfolio", - "owner": { - "username": "Ashutoshcoder", - "email": "ashutoshkumardbms@gmail.com" - }, - "record": { - "CNAME": "ashutoshkumar.me" - } + "description": "Ashutosh Kumar's Portfolio", + "owner": { + "username": "Ashutoshcoder", + "email": "ashutoshkumardbms@gmail.com" + }, + "record": { + "CNAME": "ashutoshkumar.me" + } } diff --git a/domains/ashvani-kumar.json b/domains/ashvani-kumar.json new file mode 100644 index 000000000..17afeab15 --- /dev/null +++ b/domains/ashvani-kumar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AshvaniRaman", + "email": "ashvani.gcpublic@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ashwa.json b/domains/ashwa.json index da0927317..97a6a0c7e 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": { +{ + "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" + }, + "record": { + "CNAME": "natblida68.github.io" } - } - +} diff --git a/domains/ashwin.json b/domains/ashwin.json index 57d855556..d4794b671 100644 --- a/domains/ashwin.json +++ b/domains/ashwin.json @@ -1,12 +1,12 @@ { - "description": "sample repo", - "repo": "https://github.com/ashwin3082002/ashwin3082002.github.io", - "owner": { - "username": "ashwin3082002", - "email": "ashwin3082002@gmail.com", - "twitter": "ashwin3082002" - }, - "record": { - "CNAME": "ashwin3082002.github.io" - } + "description": "sample repo", + "repo": "https://github.com/ashwin3082002/ashwin3082002.github.io", + "owner": { + "username": "ashwin3082002", + "email": "ashwin3082002@gmail.com", + "twitter": "ashwin3082002" + }, + "record": { + "CNAME": "ashwin3082002.github.io" + } } diff --git a/domains/asif.json b/domains/asif.json new file mode 100644 index 000000000..7b000624e --- /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/asim.json b/domains/asim.json index 577d94bf1..f6cec0bd5 100644 --- a/domains/asim.json +++ b/domains/asim.json @@ -1,11 +1,11 @@ { - "description": "Asim Bera's Portfolio", - "repo": "https://github.com/asimbera/asimbera.github.io", - "owner": { - "username": "asimbera", - "email": "asimbera@outlook.in" - }, - "record": { - "CNAME": "asimbera.github.io" - } + "description": "Asim Bera's Portfolio", + "repo": "https://github.com/asimbera/asimbera.github.io", + "owner": { + "username": "asimbera", + "email": "asimbera@outlook.in" + }, + "record": { + "CNAME": "asimbera.github.io" + } } diff --git a/domains/aslipatov.json b/domains/aslipatov.json new file mode 100644 index 000000000..1fcc03765 --- /dev/null +++ b/domains/aslipatov.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LipatovAlexander", + "email": "lipatov.work@bk.ru" + }, + "record": { + "CNAME": "lipatovalexander.github.io" + } +} diff --git a/domains/asmin.json b/domains/asmin.json new file mode 100644 index 000000000..a13d7cc92 --- /dev/null +++ b/domains/asmin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AsminGiri", + "email": "asmingiriofficial@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/asmo.json b/domains/asmo.json new file mode 100644 index 000000000..de762a484 --- /dev/null +++ b/domains/asmo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Asmo343", + "email": "jan.glomb1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/asp.json b/domains/asp.json index 643ba0d9f..79686a1fc 100644 --- a/domains/asp.json +++ b/domains/asp.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "aspekts", "email": "marcus.kamuntu@gmail.com" - }, - "record": { + }, + "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 new file mode 100644 index 000000000..1b95e7180 --- /dev/null +++ b/domains/aspect.json @@ -0,0 +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" + } +} 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..9d3db8c62 --- /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..65ede161f --- /dev/null +++ b/domains/asteria.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "asteriau", + "email": "dorahaladita@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/asthriona.json b/domains/asthriona.json new file mode 100644 index 000000000..f4d9c4a39 --- /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/astra.json b/domains/astra.json new file mode 100644 index 000000000..5cf54865a --- /dev/null +++ b/domains/astra.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "LilyMusic", + "email": "lilymusicdiscord@gmail.com", + "discord": "981225782938579014" + }, + "record": { + "A": ["69.30.249.53"] + } + } diff --git a/domains/astris.api.json b/domains/astris.api.json new file mode 100644 index 000000000..fc0608365 --- /dev/null +++ b/domains/astris.api.json @@ -0,0 +1,13 @@ +{ + "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/astro.json b/domains/astro.json new file mode 100644 index 000000000..7c7961232 --- /dev/null +++ b/domains/astro.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "777advait", + "email": "advait.nsj@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/asuna.json b/domains/asuna.json index 4fc2b8989..7b2c18dfe 100644 --- a/domains/asuna.json +++ b/domains/asuna.json @@ -1,11 +1,11 @@ { - "description": "Asuna Personal Website", - "repo": "https://github.com/ehAsuna/ehAsuna.github.io", - "owner": { - "username": "ehAsuna", - "email": "codeasaurousteam@gmail.com" - }, - "record": { - "CNAME": "ehAsuna.github.io" - } + "description": "Asuna Personal Website", + "repo": "https://github.com/ehAsuna/ehAsuna.github.io", + "owner": { + "username": "ehAsuna", + "email": "codeasaurousteam@gmail.com" + }, + "record": { + "CNAME": "ehAsuna.github.io" + } } diff --git a/domains/aswin-vs.json b/domains/aswin-vs.json new file mode 100644 index 000000000..da7f5ed2f --- /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/aswin.json b/domains/aswin.json index c16350ea7..4319027e1 100644 --- a/domains/aswin.json +++ b/domains/aswin.json @@ -1,11 +1,11 @@ { - "description": "Aswin's personal portfolio", - "repo": "https://github.com/aswinskumar67/iamaswin.github.io", - "owner": { - "username": "aswinskumar67", - "email": "aswin.skumaro2bme@gmail.com" - }, - "record": { - "CNAME": "aswinskumar67.github.io" - } + "description": "Aswin's personal portfolio", + "repo": "https://github.com/aswinskumar67/iamaswin.github.io", + "owner": { + "username": "aswinskumar67", + "email": "aswin.skumaro2bme@gmail.com" + }, + "record": { + "CNAME": "aswinskumar67.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..6e098d7ae --- /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/atechadventurer.json b/domains/atechadventurer.json index 562f3ed46..ebb152232 100644 --- a/domains/atechadventurer.json +++ b/domains/atechadventurer.json @@ -1,11 +1,11 @@ { - "description": "ATechAdventurer's Site", - "repo": "https://github.com/ATechAdventurer", - "owner": { - "username": "ATechAdventurer", - "email": "cam.steeleis@gmail.com" - }, - "record": { - "URL": "https://github.com/ATechAdventurer" - } + "description": "ATechAdventurer's Site", + "repo": "https://github.com/ATechAdventurer", + "owner": { + "username": "ATechAdventurer", + "email": "cam.steeleis@gmail.com" + }, + "record": { + "URL": "https://github.com/ATechAdventurer" + } } diff --git a/domains/atharv-jha.json b/domains/atharv-jha.json new file mode 100644 index 000000000..f01e0357b --- /dev/null +++ b/domains/atharv-jha.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Atharvjha7", + "email": "jha.atharv27@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/atharv.json b/domains/atharv.json index 23357630c..3d05ae5b4 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..7e7ba7b5f 100644 --- a/domains/atharva.json +++ b/domains/atharva.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/atharvalt/atharvalt.github.io", - "owner": { - "username": "atharvalt", - "email": "atharva.upadhyay1099@gmail.com", - "discord": "シAtharva#5374" - }, - "record": { - "CNAME": "atharvalt.github.io" - } + "repo": "https://github.com/atharvaupadhyay/atharvaupadhyay.github.io", + "owner": { + "username": "atharvaupadhyay", + "email": "atharva.upadhyay1099@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/atharvaupadhyay.json b/domains/atharvaupadhyay.json new file mode 100644 index 000000000..d243d4020 --- /dev/null +++ b/domains/atharvaupadhyay.json @@ -0,0 +1,12 @@ +{ + "repo": "https://github.com/atharvaupadhyay/atharvaupadhyay.github.io", + "owner": { + "username": "atharvaupadhyay", + "email": "atharva.upadhyay1099@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com", "hosts.is-a.dev"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/athifrahmawan.json b/domains/athifrahmawan.json new file mode 100644 index 000000000..afbb8c491 --- /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/athir.json b/domains/athir.json new file mode 100644 index 000000000..ea712e13c --- /dev/null +++ b/domains/athir.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tharth0ur", + "email": "athir.aldefaie1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/athira-li.json b/domains/athira-li.json index 62a1ec2c1..827d91584 100644 --- a/domains/athira-li.json +++ b/domains/athira-li.json @@ -1,11 +1,11 @@ { - "description": "Athira's Web-Dev Home", - "repo": "https://github.com/Athira-L-I/Athira-L-I.github.io", - "owner": { - "username": "Athira-L-I", - "email": "athirali4582@gmail.com" - }, - "record": { - "CNAME": "Athira-L-I.github.io" - } + "description": "Athira's Web-Dev Home", + "repo": "https://github.com/Athira-L-I/Athira-L-I.github.io", + "owner": { + "username": "Athira-L-I", + "email": "athirali4582@gmail.com" + }, + "record": { + "CNAME": "Athira-L-I.github.io" + } } diff --git a/domains/atlas.json b/domains/atlas.json deleted file mode 100644 index dbd3e65a3..000000000 --- a/domains/atlas.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Portfolio website", - "repo": "https://github.com/robertdrakedennis/portfolio", - "owner": { - "username": "robertdrakedennis", - "email": "robertdennispersonal@gmail.com" - }, - "record": { - "CNAME": "robertdennis.netlify.app" - } -} diff --git a/domains/attaditya.json b/domains/attaditya.json deleted file mode 100644 index 4db27b576..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.repl.co/" - } -} diff --git a/domains/attafriski.json b/domains/attafriski.json new file mode 100644 index 000000000..0c2d87856 --- /dev/null +++ b/domains/attafriski.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "attaf-riski", + "email": "atafriski27@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/atuel.json b/domains/atuel.json new file mode 100644 index 000000000..8660097a1 --- /dev/null +++ b/domains/atuel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "atuell", + "email": "stanasqwe@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/atul.json b/domains/atul.json index a560b78ff..397adf467 100644 --- a/domains/atul.json +++ b/domains/atul.json @@ -1,11 +1,11 @@ { - "description": "Coming Soon", - "repo": "https://github.com/AtulPatil-me/AtulPatil-me.github.io", - "owner": { - "username": "Atul-Patil-99", - "email": "atuluttampatil.1757@gmail.com" - }, - "record": { - "CNAME": "atulpatil-me.github.io" - } + "description": "Coming Soon", + "repo": "https://github.com/AtulPatil-me/AtulPatil-me.github.io", + "owner": { + "username": "Atul-Patil-99", + "email": "atuluttampatil.1757@gmail.com" + }, + "record": { + "CNAME": "atulpatil-me.github.io" + } } 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..05fbe0c32 --- /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/augustine.json b/domains/augustine.json index 6db08d29c..796363474 100644 --- a/domains/augustine.json +++ b/domains/augustine.json @@ -1,11 +1,11 @@ { - "description": "Augustine's personal developer website", - "repo": "https://github.com/augustineaykara", - "owner": { - "username": "augustineaykara", - "email": "augustineaykara@gmail.com" - }, - "record": { - "URL": "http://augustine.aykara4.com" - } + "description": "Augustine's personal developer website", + "repo": "https://github.com/augustineaykara", + "owner": { + "username": "augustineaykara", + "email": "augustineaykara@gmail.com" + }, + "record": { + "URL": "http://augustine.aykara4.com" + } } diff --git a/domains/auq3l.json b/domains/auq3l.json new file mode 100644 index 000000000..b7acb8b83 --- /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..e2b36b773 --- /dev/null +++ b/domains/aura.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "auravoid", + "email": "github@auravoid.dev" + }, + + "record": { + "CNAME": "auravoid.github.io" + } +} diff --git a/domains/austin.json b/domains/austin.json deleted file mode 100644 index e4ef8f7c3..000000000 --- a/domains/austin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Austin's personal developer website", - "repo": "https://github.com/austindyoung", - "owner": { - "username": "austindyoung", - "email": "austin@doesweb.dev", - "twitter": "" - }, - "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/ausy.json b/domains/ausy.json new file mode 100644 index 000000000..e0678931f --- /dev/null +++ b/domains/ausy.json @@ -0,0 +1,11 @@ +{ + "description": "austinfenne.is-a.dev", + "repo": "https://https://github.com/FenneAustin/FenneAustin.github.io", + "owner": { + "username": "FenneAustin", + "email": "austindfenne@gmail.com" + }, + "record": { + "CNAME": "fenneaustin.github.io" + } +} diff --git a/domains/auth.json b/domains/auth.json deleted file mode 100644 index 36646103a..000000000 --- a/domains/auth.json +++ /dev/null @@ -1,10 +0,0 @@ - { - "owner": { - "username": "@is-a-dev/maintainers", - "email": "mahir@molai.dev" - }, - "record": { - "A": ["199.36.158.100"] - } - } - diff --git a/domains/authorises.json b/domains/authorises.json index 3396108d2..70a34b734 100644 --- a/domains/authorises.json +++ b/domains/authorises.json @@ -8,4 +8,4 @@ "record": { "CNAME": "authorises.github.io" } -} +} diff --git a/domains/autobean.json b/domains/autobean.json new file mode 100644 index 000000000..c49ac6ea1 --- /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/auuub.json b/domains/auuub.json new file mode 100644 index 000000000..ddd70f4fc --- /dev/null +++ b/domains/auuub.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "auuub", + "email": "gonzales.gabrielbaral+github@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/avarnex.json b/domains/avarnex.json deleted file mode 100644 index 9b1df1344..000000000 --- a/domains/avarnex.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "avarnex' personal website", - "repo": "https://github.com/avarnex/avarnex.github.io", - "owner": { - "username": "avarnex", - "email": "avarnex@paranoid.email" - }, - "record": { - "CNAME": "avarnex.github.io" - } -} 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/avellea.json b/domains/avellea.json index b6a105c4d..b9cad219f 100644 --- a/domains/avellea.json +++ b/domains/avellea.json @@ -1,12 +1,12 @@ { - "description": "Personal website.", - "repo": "https://github.com/Avellea/Avellea.github.io/", - "owner": { - "username": "Avellea", - "email": "", - "discord": "Ave#2776" - }, - "record": { - "CNAME": "avellea.github.io" - } + "description": "Personal website.", + "repo": "https://github.com/Avellea/Avellea.github.io", + "owner": { + "username": "Avellea", + "email": "", + "discord": "Ave#2776" + }, + "record": { + "CNAME": "avellea.github.io" + } } diff --git a/domains/avery.json b/domains/avery.json index af5e85347..6d4153062 100644 --- a/domains/avery.json +++ b/domains/avery.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "caverym", - "email": "averylapine@gmail.com", - "discord": "Avery~#1845" - }, - "description": "A cool domain that will most likely use!", - "record": { - "CNAME": "caverym.net" - } + "owner": { + "username": "caverym", + "email": "averylapine@gmail.com", + "discord": "Avery~#1845" + }, + "description": "A cool domain that will most likely use!", + "record": { + "CNAME": "caverym.net" + } } diff --git a/domains/avg.json b/domains/avg.json index 9facc3b20..9eedf1aed 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" - }, - "record": { - "URL": "https://averagehelper.github.io" - } + "owner": { + "username": "AverageHelper", + "email": "", + "mastodon": "@avghelper@average.name" + }, + "record": { + "URL": "https://average.name" + } } diff --git a/domains/avi.json b/domains/avi.json new file mode 100644 index 000000000..a423d3823 --- /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..62dacdc06 --- /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/avikek.json b/domains/avikek.json new file mode 100644 index 000000000..6da227cf9 --- /dev/null +++ b/domains/avikek.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "notabhixhek", + "email": "abhishek.fodikar29@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/avnoor-gamerz.json b/domains/avnoor-gamerz.json index 92d607ea7..88ec0faaf 100644 --- a/domains/avnoor-gamerz.json +++ b/domains/avnoor-gamerz.json @@ -1,12 +1,12 @@ { - "description": "Official WEBSITE OF aVNOOR gAMERZ", - "repo": "https://github.com/Avnoor-Gamerz/avnoor-gamerz.github.io", - "owner": { - "username": "avnoor-gamerz", - "email": "avnoorchahal001@gmail.com", - "twitter": "avnoor-gamerz" - }, - "record": { - "CNAME": "avnoor-gamerz.github.io" - } + "description": "Official WEBSITE OF aVNOOR gAMERZ", + "repo": "https://github.com/Avnoor-Gamerz/avnoor-gamerz.github.io", + "owner": { + "username": "avnoor-gamerz", + "email": "avnoorchahal001@gmail.com", + "twitter": "avnoor-gamerz" + }, + "record": { + "CNAME": "avnoor-gamerz.github.io" + } } diff --git a/domains/avon.json b/domains/avon.json index f6246e3a8..3a5269343 100644 --- a/domains/avon.json +++ b/domains/avon.json @@ -1,10 +1,10 @@ { - "owner":{ - "username": "avonryle", - "discord": "avonryle#3155", - "email": "avonryle@cloudteam.me" - }, - "record": { - "CNAME": "b496390d-18ef-4629-990f-a6bb296f35d6.id.repl.co" - } + "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..021faebab --- /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/awan.json b/domains/awan.json index 7890ad975..610503119 100644 --- a/domains/awan.json +++ b/domains/awan.json @@ -1,11 +1,11 @@ { - "description": "Awan Shrestha's Site", - "owner": { - "username": "awanshrestha", - "email": "awa1shrestha@gmail.com", - "twitter": "awanshrestha1" - }, - "record": { - "URL": "https://awan.com.np" - } + "description": "Awan Shrestha's Site", + "owner": { + "username": "awanshrestha", + "email": "awa1shrestha@gmail.com", + "twitter": "awanshrestha1" + }, + "record": { + "URL": "https://awan.com.np" + } } diff --git a/domains/aware.json b/domains/aware.json new file mode 100644 index 000000000..e8e1899ce --- /dev/null +++ b/domains/aware.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AngerminecraftYT", + "email": "david.boltong@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ax.json b/domains/ax.json deleted file mode 100644 index 4fb9067e6..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/axd.json b/domains/axd.json index eb11f6a16..cfe73b8b2 100644 --- a/domains/axd.json +++ b/domains/axd.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "alexdhg", - "email": "me@alexdhg.com" - }, - "record": { - "URL": "https://alexdhg.com" - } + "owner": { + "username": "alexdhg", + "email": "alex.zr71@gmail.com" + }, + "record": { + "URL": "https://axxd.me" + } } diff --git a/domains/axel.json b/domains/axel.json new file mode 100644 index 000000000..9ff7c9fdb --- /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/axewbotx.json b/domains/axewbotx.json new file mode 100644 index 000000000..f5f10af9d --- /dev/null +++ b/domains/axewbotx.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/axin.json b/domains/axin.json deleted file mode 100644 index a3e510531..000000000 --- a/domains/axin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Personal website", - "repo": "https://github.com/axindev/axindev.github.io", - "owner": { - "username": "axindev", - "email": "", - "discord": "axin!#9073" - }, - "record": { - "CNAME": "axindev.github.io" - } -} diff --git a/domains/axolotlextnd.json b/domains/axolotlextnd.json deleted file mode 100644 index 4516c7886..000000000 --- a/domains/axolotlextnd.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "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/axviii3.json b/domains/axviii3.json new file mode 100644 index 000000000..47c35c9e6 --- /dev/null +++ b/domains/axviii3.json @@ -0,0 +1,11 @@ +{ + "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/ayaan.json b/domains/ayaan.json new file mode 100644 index 000000000..71c2d2acd --- /dev/null +++ b/domains/ayaan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dexjr", + "email": "dexjrdexjr@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ayaangrover.json b/domains/ayaangrover.json new file mode 100644 index 000000000..04408422c --- /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..0069f747a --- /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/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/aymenjelassi.json b/domains/aymenjelassi.json new file mode 100644 index 000000000..c98f7f421 --- /dev/null +++ b/domains/aymenjelassi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jelassiaymen94", + "email": "jelassiaymen094@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/aymo.json b/domains/aymo.json new file mode 100644 index 000000000..c02cc7d5d --- /dev/null +++ b/domains/aymo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NotAymo", + "email": "ninecraftoff@outlook.com" + }, + "record": { + "A": ["65.19.141.67"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/aypro.json b/domains/aypro.json index a5e78fa37..8db6e084b 100644 --- a/domains/aypro.json +++ b/domains/aypro.json @@ -1,11 +1,11 @@ { - "description": "Aypro's personal website", - "repo": "https://github.com/aypro-droid/aypro-droid.github.io", - "owner": { - "username": "aypro-droid", - "email": "ayprogaming1@gmail.com" - }, - "record": { - "CNAME": "aypro-droid.github.io" - } + "description": "Aypro's personal website", + "repo": "https://github.com/aypro-droid/aypro-droid.github.io", + "owner": { + "username": "aypro-droid", + "email": "ayprogaming1@gmail.com" + }, + "record": { + "CNAME": "aypro-droid.github.io" + } } diff --git a/domains/ayrox.json b/domains/ayrox.json new file mode 100644 index 000000000..1194d5dd7 --- /dev/null +++ b/domains/ayrox.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ayroxtv", + "email": "me@robinbridoux.fr" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ayush.json b/domains/ayush.json index 54169c393..6ada4c27b 100644 --- a/domains/ayush.json +++ b/domains/ayush.json @@ -1,12 +1,12 @@ { - "description": "My Website", - "repo": "https://github.com/Itzayushzz/Itzayushzz.github.io", - "owner": { - "username": "Itzayushzz", - "email": "", - "discord": "Ayush_Ezz#6057" - }, - "record": { - "CNAME": "itzayushzz.github.io" - } + "description": "My Website", + "repo": "https://github.com/Itzayushzz/Itzayushzz.github.io", + "owner": { + "username": "Itzayushzz", + "email": "", + "discord": "Ayush_Ezz#6057" + }, + "record": { + "CNAME": "itzayushzz.github.io" + } } diff --git a/domains/ayushi.json b/domains/ayushi.json new file mode 100644 index 000000000..e89ab5238 --- /dev/null +++ b/domains/ayushi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Vixen-1", + "email": "ayushisaxena24111999@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ayushmann.json b/domains/ayushmann.json new file mode 100644 index 000000000..3de43983b --- /dev/null +++ b/domains/ayushmann.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ayushmann025", + "email": "aayush.srivastava25@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ayushmansarkar.json b/domains/ayushmansarkar.json new file mode 100644 index 000000000..44e4af66d --- /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..ba9ecfa45 100644 --- a/domains/ayushshivaji.json +++ b/domains/ayushshivaji.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "ayushclashroyale", "email": "ayushclashroyale@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "ayushclashroyale.github.io" - } } - \ No newline at end of file +} diff --git a/domains/ayuv.json b/domains/ayuv.json new file mode 100644 index 000000000..736b8f756 --- /dev/null +++ b/domains/ayuv.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "bugholic", + "email": "masterav2001@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/ayxdacat.json b/domains/ayxdacat.json new file mode 100644 index 000000000..42963d8d1 --- /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/azeez.json b/domains/azeez.json new file mode 100644 index 000000000..b791ca25c --- /dev/null +++ b/domains/azeez.json @@ -0,0 +1,14 @@ +{ + "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" + } +} \ No newline at end of file diff --git a/domains/azer.json b/domains/azer.json index d0380e4f4..edafa2dff 100644 --- a/domains/azer.json +++ b/domains/azer.json @@ -1,10 +1,10 @@ { - "description": "Personal page of Azer Sadykhzadeh", - "owner": { - "username": "sadykhzadeh", - "email": "azer.piano14@gmail.com" - }, - "record": { - "CNAME": "sadykhzadeh.github.io" - } + "description": "Personal page of Azer Sadykhzadeh", + "owner": { + "username": "sadykhzadeh", + "email": "azer.piano14@gmail.com" + }, + "record": { + "CNAME": "sadykhzadeh.github.io" + } } diff --git a/domains/azul.json b/domains/azul.json new file mode 100644 index 000000000..fe69cc94c --- /dev/null +++ b/domains/azul.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TheRealGeoDash2019", + "email": "TheRealGeoDash2019@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/azurezeng.json b/domains/azurezeng.json new file mode 100644 index 000000000..fc337ac8e --- /dev/null +++ b/domains/azurezeng.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AzureZeng", + "email": "weedycn@outlook.com" + }, + "record": { + "CNAME": "azurezeng.com" + } +} diff --git a/domains/azw.json b/domains/azw.json new file mode 100644 index 000000000..fc337ac8e --- /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/b0q.json b/domains/b0q.json new file mode 100644 index 000000000..d8f361965 --- /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/b45i.json b/domains/b45i.json index 67b1acd2b..f1b3205d4 100644 --- a/domains/b45i.json +++ b/domains/b45i.json @@ -1,11 +1,11 @@ { - "description": "B45i - Home Page", - "repo": "https://github.com/B45i/b45i.github.io", - "owner": { - "username": "B45i", - "email": "amalshajan2011@gmail.com" - }, - "record": { - "CNAME": "b45i.github.io" - } + "description": "B45i - Home Page", + "repo": "https://github.com/B45i/b45i.github.io", + "owner": { + "username": "B45i", + "email": "amalshajan2011@gmail.com" + }, + "record": { + "CNAME": "b45i.github.io" + } } diff --git a/domains/b5i.json b/domains/b5i.json new file mode 100644 index 000000000..e66843a44 --- /dev/null +++ b/domains/b5i.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "b5i", + "email": "bollengier.antoine@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/b69029a2925ad960f5af027cd6d10ed9.json b/domains/b69029a2925ad960f5af027cd6d10ed9.json new file mode 100644 index 000000000..bef44eee2 --- /dev/null +++ b/domains/b69029a2925ad960f5af027cd6d10ed9.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com" + }, + "record": { + "CNAME": "verify.bing.com" + } +} diff --git a/domains/ba9.json b/domains/ba9.json new file mode 100644 index 000000000..e3eb54898 --- /dev/null +++ b/domains/ba9.json @@ -0,0 +1,10 @@ +{ + "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/baba.json b/domains/baba.json new file mode 100644 index 000000000..6b83db4ba --- /dev/null +++ b/domains/baba.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Babakinha", + "email": "sangueotario@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bacherik.json b/domains/bacherik.json new file mode 100644 index 000000000..f46f42656 --- /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/backend.jzitnik.json b/domains/backend.jzitnik.json new file mode 100644 index 000000000..1e1d45e20 --- /dev/null +++ b/domains/backend.jzitnik.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JZITNIK-github", + "email": "klindkubak@zohomail.eu", + "discord": "jzitnik" + }, + "record": { + "CNAME": "backend-92l0.onrender.com" + } +} diff --git a/domains/bad.boy.json b/domains/bad.boy.json deleted file mode 100644 index 6e61ebeb3..000000000 --- a/domains/bad.boy.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": "edge.redirect.pizza" - } -} diff --git a/domains/badboy.json b/domains/badboy.json deleted file mode 100644 index 1a6bea1a4..000000000 --- a/domains/badboy.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "Bad Boy's Website", - "owner": { - "username": "bad-boy-codes", - "email": "contact@mail.badboy.is-a.dev", - "discord": "445073800850046977", - "note": "My Discord ID is 445073800850046977.", - "twitter": "BadBoyGoesBrr" - }, - "record": { - "CNAME": "4baf80cb-7f87-4d2c-8e40-938f4045acfd.id.repl.co" - } -} diff --git a/domains/badzlan.json b/domains/badzlan.json new file mode 100644 index 000000000..a0fbb273d --- /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..c0654a2ea --- /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 index 02420e017..9fd34f4f1 100644 --- a/domains/baijiu.yec.json +++ b/domains/baijiu.yec.json @@ -1,11 +1,11 @@ { - "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" - } + "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/balam314.json b/domains/balam314.json index 0ca22dcf3..6730eac60 100644 --- a/domains/balam314.json +++ b/domains/balam314.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "BalaM314", - "email": "bulldozerUS@outlook.com" - }, - "record": { - "URL": "https://balam314.github.io/BalaM314" - } + "owner": { + "username": "BalaM314", + "email": "bulldozerUS@outlook.com" + }, + "record": { + "URL": "https://balam314.github.io/BalaM314" + } } diff --git a/domains/balduzz.json b/domains/balduzz.json new file mode 100644 index 000000000..df74a7998 --- /dev/null +++ b/domains/balduzz.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Bbalduzz", + "email": "edoardoba2004@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file 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/balls.json b/domains/balls.json new file mode 100644 index 000000000..b158aaa9e --- /dev/null +++ b/domains/balls.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ConnorDoesDev", + "email": "halil_ismail@yahoo.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bampa.json b/domains/bampa.json new file mode 100644 index 000000000..c061438ac --- /dev/null +++ b/domains/bampa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "bampenes", + "email": "rafinhabampa@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/banana.json b/domains/banana.json index de86f28d1..b9a8c0f3f 100644 --- a/domains/banana.json +++ b/domains/banana.json @@ -1,11 +1,11 @@ { - "description": "banana's website", - "repo": "https://github.com/BANanaD3V/bananadev-ml", - "owner": { - "username": "BANanaD3V", - "email": "banana@bananadev.ml" - }, - "record": { - "CNAME": "bananad3v.github.io" - } + "description": "banana's website", + "repo": "https://github.com/BANanaD3V/bananadev-ml", + "owner": { + "username": "BANanaD3V", + "email": "banana@bananadev.ml" + }, + "record": { + "CNAME": "bananad3v.github.io" + } } diff --git a/domains/bangladesh.json b/domains/bangladesh.json new file mode 100644 index 000000000..fbd218162 --- /dev/null +++ b/domains/bangladesh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hemal80", + "email": "hemalfnmondal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bank.json b/domains/bank.json index 4c45c9c86..b907ee8a4 100644 --- a/domains/bank.json +++ b/domains/bank.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "tithanayut", - "email": "b@thanayut.in.th" - }, - "description": "Bank Thanayut's Personal Site", - "record": { - "URL": "https://thanayut.in.th" - } + "owner": { + "username": "tithanayut", + "email": "b@thanayut.in.th" + }, + "description": "Bank Thanayut's Personal Site", + "record": { + "URL": "https://thanayut.in.th" + } } diff --git a/domains/bao.json b/domains/bao.json new file mode 100644 index 000000000..1d98a98d4 --- /dev/null +++ b/domains/bao.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gibaohung-dev", + "email": "thisismegiabao@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/baptiste.json b/domains/baptiste.json new file mode 100644 index 000000000..38e7e7271 --- /dev/null +++ b/domains/baptiste.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BapRx", + "email": "rouxbaptiste@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/baquir.json b/domains/baquir.json index ce53bed23..ca86d86ed 100644 --- a/domains/baquir.json +++ b/domains/baquir.json @@ -1,11 +1,11 @@ { - "description": "My Portfolio Website", - "repo": "https://github.com/mohd-baquir-qureshi/mohd-baquir-qureshi.github.io", - "owner": { - "username": "mohd-baquir-qureshi", - "email": "dumboo0798@gmail.com" - }, - "record": { - "CNAME": "mohd-baquir-qureshi.github.io" - } + "description": "My Portfolio Website", + "repo": "https://github.com/mohd-baquir-qureshi/mohd-baquir-qureshi.github.io", + "owner": { + "username": "mohd-baquir-qureshi", + "email": "dumboo0798@gmail.com" + }, + "record": { + "CNAME": "mohd-baquir-qureshi.github.io" + } } diff --git a/domains/bar.vaibhav.json b/domains/bar.vaibhav.json new file mode 100644 index 000000000..9ac720b45 --- /dev/null +++ b/domains/bar.vaibhav.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "VaibhavSys", + "email": "vaibhavsys@protonmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/bardia.json b/domains/bardia.json new file mode 100644 index 000000000..3842ca546 --- /dev/null +++ b/domains/bardia.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abardia", + "email": "a.bardia@yahoo.de" + }, + "record": { + "CNAME": "abardia.github.io" + } +} diff --git a/domains/bartoszm77.json b/domains/bartoszm77.json index e42611544..b94c93cb9 100644 --- a/domains/bartoszm77.json +++ b/domains/bartoszm77.json @@ -1,12 +1,12 @@ { - "description": "bartoszm77.is-a.dev", - "repo": "https://github.com/b2rt0szm77/b2rt0szm77.github.io", - "owner": { - "username": "bartoszm77", - "email": "", - "discord": "bartoszm77#3458" - }, - "record": { - "CNAME": "b2rt0szm77.github.io" + "description": "bartoszm77.is-a.dev", + "repo": "https://github.com/b2rt0szm77/b2rt0szm77.github.io", + "owner": { + "username": "bartoszm77", + "email": "", + "discord": "bartoszm77#3458" + }, + "record": { + "CNAME": "b2rt0szm77.github.io" } } diff --git a/domains/bashafk.json b/domains/bashafk.json new file mode 100644 index 000000000..9b3d3361d --- /dev/null +++ b/domains/bashafk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "IbrahimKhan2004", + "email": "OfficialIbrahimKhan2004@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..41a0a47e4 --- /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/basil.json b/domains/basil.json index bc0a52de9..27eaf9c8c 100644 --- a/domains/basil.json +++ b/domains/basil.json @@ -1,12 +1,12 @@ { - "description": "Basils' website", - "repo": "https://github.com/LowSpecCorgi/LowSpecCorgi.github.io", - "owner": { - "username": "LowSpecCorgi", - "email": "haroldthesenpai@gmail.com", - "twitter": "basilicous" - }, - "record": { - "CNAME": "LowSpeCorgi.github.io" - } + "description": "Basils' website", + "repo": "https://github.com/LowSpecCorgi/LowSpecCorgi.github.io", + "owner": { + "username": "LowSpecCorgi", + "email": "haroldthesenpai@gmail.com", + "twitter": "basilicous" + }, + "record": { + "CNAME": "LowSpeCorgi.github.io" + } } diff --git a/domains/bast.json b/domains/bast.json index 302ae95f6..8339f3bca 100644 --- a/domains/bast.json +++ b/domains/bast.json @@ -1,5 +1,5 @@ { - "description": "Bast's Programming Blog", + "description": "Bast's unimaginatively named programming blog", "owner": { "username": "bast0006", "email": "bast@bast-development.com" diff --git a/domains/batema.json b/domains/batema.json index 2e9225f58..c6a201e3b 100644 --- a/domains/batema.json +++ b/domains/batema.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lukas-batema", - "email": "lukasbatema@gmail.com" - }, - "record": { - "URL": "https://batemadevelopment.com/" - } + "owner": { + "username": "lukas-batema", + "email": "lukasbatema@gmail.com" + }, + "record": { + "URL": "https://batemadevelopment.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/bayu.json b/domains/bayu.json new file mode 100644 index 000000000..4d88b6558 --- /dev/null +++ b/domains/bayu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BayuBatam2008", + "email": "bayusimamora2008@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/bd.json b/domains/bd.json new file mode 100644 index 000000000..da9579258 --- /dev/null +++ b/domains/bd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "asma019", + "email": "asmaparvin019@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bdays.suki.json b/domains/bdays.suki.json new file mode 100644 index 000000000..2f1cd119d --- /dev/null +++ b/domains/bdays.suki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SukiPlayz", + "email": "sukimayoo@outlook.com" + }, + "record": { + "A": ["69.30.249.53"] + } + } diff --git a/domains/bdloser.json b/domains/bdloser.json new file mode 100644 index 000000000..45477ee8e --- /dev/null +++ b/domains/bdloser.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "bdloser404", + "email": "ssh.mail.test@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bear.json b/domains/bear.json index 9109f56fe..8160c37eb 100644 --- a/domains/bear.json +++ b/domains/bear.json @@ -1,12 +1,12 @@ { - "description": "Bear's Portfolio Website", - "repo": "https://github.com/bearts/bearts.github.io", + "description": "Bear's Portfolio Website", + "repo": "https://github.com/bearts/bearts.github.io", "owner": { "username": "bearts", "email": "anujparihar@yahoo.com", "twitter": "anujpflash" - }, - "record": { - "CNAME": "bearts.github.io" - } + }, + "record": { + "CNAME": "bearts.github.io" + } } diff --git a/domains/bebo.json b/domains/bebo.json new file mode 100644 index 000000000..ee06a6d1d --- /dev/null +++ b/domains/bebo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Fbhfvj", + "email": "bebogeorge2008@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/bedanth.json b/domains/bedanth.json index e63d09d00..b898e2885 100644 --- a/domains/bedanth.json +++ b/domains/bedanth.json @@ -1,11 +1,11 @@ { - "description": "Bedant Hota's Portfolio", - "repo": "https://github.com/bedantH/bedantH.github.io", - "owner": { - "username": "bedantH", - "email": "mohanesh.h2003@gmail.com" - }, - "record": { - "CNAME": "bedanth-github-io.pages.dev" - } + "description": "Bedant Hota's Portfolio", + "repo": "https://github.com/bedantH/bedantH.github.io", + "owner": { + "username": "bedantH", + "email": "mohanesh.h2003@gmail.com" + }, + "record": { + "CNAME": "bedanth-github-io.pages.dev" + } } 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/belka.json b/domains/belka.json new file mode 100644 index 000000000..2c71953b8 --- /dev/null +++ b/domains/belka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zshmeta", + "email": "zshmeta@gmail.com" + }, + "record": { + "A": ["84.235.229.48"] + } +} diff --git a/domains/belle.json b/domains/belle.json index 4763b602e..4c3075d16 100644 --- a/domains/belle.json +++ b/domains/belle.json @@ -1,11 +1,11 @@ { - "description": "Belle's website", - "repo": "https://github.com/bellesea/personalwebsite", - "owner": { - "username": "bellesea", - "email": "bellesee1212@gmail.com" - }, - "record": { - "CNAME": "bellesea.github.io" - } + "description": "Belle's website", + "repo": "https://github.com/bellesea/personalwebsite", + "owner": { + "username": "bellesea", + "email": "bellesee1212@gmail.com" + }, + "record": { + "CNAME": "bellesea.github.io" + } } diff --git a/domains/ben.json b/domains/ben.json index c305e3a7f..c963c0b92 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" - }, - "record": { - "CNAME": "ben.is-a.dev.s3-website.us-east-2.amazonaws.com" - } + "owner": { + "username": "justpiple", + "email": "me@benspace.xyz" + }, + "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/benediktreck.json b/domains/benediktreck.json new file mode 100644 index 000000000..604c5ded1 --- /dev/null +++ b/domains/benediktreck.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "usr577", + "email": "benedikt.reck@oesdorf.de" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/benjae.json b/domains/benjae.json new file mode 100644 index 000000000..712786f1a --- /dev/null +++ b/domains/benjae.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "benjiae", + "email": "benjaminang2009@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/benjo.json b/domains/benjo.json index a76f250b0..cf90b8ee6 100644 --- a/domains/benjo.json +++ b/domains/benjo.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Golgrax", - "email": "", - "twitter": "BughawBenjo" - }, - "record": { - "CNAME": "09a88fc1-344d-44cf-8b92-98cc1383dff6.id.repl.co" - } + "owner": { + "username": "Golgrax", + "email": "", + "twitter": "BughawBenjo" + }, + "record": { + "CNAME": "benjo.pages.dev" + } } 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 new file mode 100644 index 000000000..fdac7dac9 --- /dev/null +++ b/domains/bento64.json @@ -0,0 +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" + } +} diff --git a/domains/bera.json b/domains/bera.json new file mode 100644 index 000000000..583cd07b1 --- /dev/null +++ b/domains/bera.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yusufberad", + "email": "ybdanisik@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/berry.json b/domains/berry.json index 40581dbbe..ffefd6998 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..02a6540e4 --- /dev/null +++ b/domains/berzcodetechnologies.json @@ -0,0 +1,10 @@ +{ + "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..78df35194 --- /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/berztech.json b/domains/berztech.json new file mode 100644 index 000000000..d7f43da5b --- /dev/null +++ b/domains/berztech.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sxurabh", + "email": "saurabhkirve@gmail.com" + }, + "record": { + "CNAME": "berztech.vercel.app" + } +} diff --git a/domains/beta.auth.json b/domains/beta.auth.json deleted file mode 100644 index e8bb2b5cd..000000000 --- a/domains/beta.auth.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "andrewstech", - "email": "andrew@win11react.com" - }, - "record": { - "A": ["199.36.158.100"] - } - } - \ No newline at end of file diff --git a/domains/beta.json b/domains/beta.json deleted file mode 100644 index d88dc13cb..000000000 --- a/domains/beta.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "andrewstech", - "email": "andrew@win11react.com" - }, - "record": { - "URL": "https://register.is-a.dev/" - } - } - diff --git a/domains/beta.omxpro.json b/domains/beta.omxpro.json deleted file mode 100644 index c49987bcc..000000000 --- a/domains/beta.omxpro.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "this is a subdomain for the beta version of my portfolio", - "repo": "https://github.com/omxproYT/omxproyt.github.io", - "owner": { - "username": "omxproYT", - "email": "omsenjalia@gmail.com", - "twitter": "DaRealOmxpro" - }, - "record": { - "CNAME": "omxproYT.github.io" - } -} diff --git a/domains/bhadra.json b/domains/bhadra.json index b579dc80b..1995bb764 100644 --- a/domains/bhadra.json +++ b/domains/bhadra.json @@ -1,11 +1,11 @@ { - "description": "Personal Website", - "repo": "https://github.com/BhadraJayakumarSandhya/BhadraJayakumarSandhya.github.io", - "owner": { - "username": "BhadraJayakumarSandhya", - "email": "tomjerryparu@gmail.com" - }, - "record": { - "CNAME": "BhadraJayakumarSandhya.github.io" - } + "description": "Personal Website", + "repo": "https://github.com/BhadraJayakumarSandhya/BhadraJayakumarSandhya.github.io", + "owner": { + "username": "BhadraJayakumarSandhya", + "email": "tomjerryparu@gmail.com" + }, + "record": { + "CNAME": "BhadraJayakumarSandhya.github.io" + } } diff --git a/domains/bharat.json b/domains/bharat.json new file mode 100644 index 000000000..093dcaee2 --- /dev/null +++ b/domains/bharat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "imbharat420", + "email": "imbharat420@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bhargav-gohil.json b/domains/bhargav-gohil.json index caf0466cc..762c4d79c 100644 --- a/domains/bhargav-gohil.json +++ b/domains/bhargav-gohil.json @@ -1,11 +1,11 @@ { - "description": "Bhargav Gohil's personal developer website", - "repo": "https://github.com/bhargav252000/bhargav252000.github.io", - "owner": { - "username": "bhargav252000", - "email": "bhargavgohil25@gmail.com" - }, - "record": { - "CNAME": "bhargav252000.github.io" - } + "description": "Bhargav Gohil's personal developer website", + "repo": "https://github.com/bhargav252000/bhargav252000.github.io", + "owner": { + "username": "bhargav252000", + "email": "bhargavgohil25@gmail.com" + }, + "record": { + "CNAME": "bhargav252000.github.io" + } } diff --git a/domains/bhargav.json b/domains/bhargav.json new file mode 100644 index 000000000..27dc03188 --- /dev/null +++ b/domains/bhargav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bhargavmehta01", + "email": "bhargav.mehta01@gmail.com" + }, + "record": { + "CNAME": "bhargavmehta01.github.io" + } +} diff --git a/domains/bhattcodes.json b/domains/bhattcodes.json index c6df48317..fac65050f 100644 --- a/domains/bhattcodes.json +++ b/domains/bhattcodes.json @@ -1,11 +1,11 @@ { - "description": "Aman Bhatt's personal website", - "repo": "https://github.com/bhattcodes/bhattcodes.github.io", - "owner": { - "username": "bhattcodes", - "email": "bhatt.codes@gmail.com" - }, - "record": { - "CNAME": "bhattcodes.github.io" - } + "description": "Aman Bhatt's personal website", + "repo": "https://github.com/bhattcodes/bhattcodes.github.io", + "owner": { + "username": "bhattcodes", + "email": "bhatt.codes@gmail.com" + }, + "record": { + "CNAME": "bhattcodes.github.io" + } } diff --git a/domains/bhavesh-acquaintsoft.json b/domains/bhavesh-acquaintsoft.json new file mode 100644 index 000000000..0041de9dd --- /dev/null +++ b/domains/bhavesh-acquaintsoft.json @@ -0,0 +1,11 @@ +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/bhavesh-acquaintsoft/bhavesh-acquaintsoft.github.io", + "owner": { + "username": "bhavesh-acquaintsoft", + "email": "" + }, + "record": { + "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..653328abd --- /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 index 9ddb9f3b1..4e6c5d378 100644 --- a/domains/bhavishya.json +++ b/domains/bhavishya.json @@ -1,12 +1,11 @@ - - { - "owner": { +{ + "owner": { "username": "BH00TXD", "email": "ghost25112006@gmail.com" - }, - - "record": { - "A": ["164.132.74.251"] - } + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bhavishyadahiya.json b/domains/bhavishyadahiya.json new file mode 100644 index 000000000..5b0391be7 --- /dev/null +++ b/domains/bhavishyadahiya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BH00TXD", + "email": "ghost25112006@gmail.com" + }, + "record": { + "CNAME": "proxy.private.danbot.host" + } +} diff --git a/domains/bhavyasingh.json b/domains/bhavyasingh.json new file mode 100644 index 000000000..30d7131fb --- /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/bhumkah-patel.json b/domains/bhumkah-patel.json new file mode 100644 index 000000000..9c2130117 --- /dev/null +++ b/domains/bhumkah-patel.json @@ -0,0 +1,11 @@ +{ + "description": "bhumika patel.", + "repo": "https://github.com/bhumkah-patel/bhumkah-patel.github.io", + "owner": { + "username": "bhumkah-patel", + "email": "" + }, + "record": { + "CNAME": "bhumkah-patel.github.io" + } +} diff --git a/domains/bibhu.json b/domains/bibhu.json new file mode 100644 index 000000000..b984c7e89 --- /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/bicepsfako.json b/domains/bicepsfako.json deleted file mode 100644 index 57a8bf4a9..000000000 --- a/domains/bicepsfako.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Bicepsfako's personal developer website", - "repo": "https://github.com/Bicepsfako", - "owner": { - "username": "Bicepsfako", - "email": "bicepsfako@gmail.com" - }, - "record": { - "CNAME": "bicepsfako.netlify.app" - } -} diff --git a/domains/bigyan.json b/domains/bigyan.json new file mode 100644 index 000000000..118cfe41e --- /dev/null +++ b/domains/bigyan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "callmebasistha", + "email": "callmebasistha@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bilal.json b/domains/bilal.json new file mode 100644 index 000000000..4a7b17413 --- /dev/null +++ b/domains/bilal.json @@ -0,0 +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" + } +} diff --git a/domains/bilalkhan.json b/domains/bilalkhan.json new file mode 100644 index 000000000..126087e49 --- /dev/null +++ b/domains/bilalkhan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "b4bekkie", + "email": "iambekkie99@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bill.json b/domains/bill.json new file mode 100644 index 000000000..daad64907 --- /dev/null +++ b/domains/bill.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CMBill", + "email": "callmebill@billw.cn" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bimal.json b/domains/bimal.json index 9f69d553d..945f65efb 100644 --- a/domains/bimal.json +++ b/domains/bimal.json @@ -1,12 +1,12 @@ { - "description": "My personal website goes here", - "repo": "https://github.com/bimal-inc/bimal-inc.github.io", - "owner": { - "username": "bimal-inc", - "email": "bimalyadavemail7@gmail.com", - "twitter": "@bimalinc" - }, - "record": { - "CNAME": "bimal-inc.github.io" - } + "description": "My personal website goes here", + "repo": "https://github.com/bimal-inc/bimal-inc.github.io", + "owner": { + "username": "bimal-inc", + "email": "bimalyadavemail7@gmail.com", + "twitter": "bimalinc" + }, + "record": { + "CNAME": "bimal-inc.github.io" + } } diff --git a/domains/bing-chilling.json b/domains/bing-chilling.json new file mode 100644 index 000000000..58d1a3ccd --- /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/bipin-bheda.json b/domains/bipin-bheda.json new file mode 100644 index 000000000..93e454772 --- /dev/null +++ b/domains/bipin-bheda.json @@ -0,0 +1,11 @@ +{ + "description": "Bipin Bheda Profile.", + "repo": "https://github.com/bipin-bheda/bipin-bheda.github.io", + "owner": { + "username": "bipin-bheda", + "email": "" + }, + "record": { + "CNAME": "bipin-bheda.github.io" + } +} diff --git a/domains/biplob.json b/domains/biplob.json index 62139944b..282c462e4 100644 --- a/domains/biplob.json +++ b/domains/biplob.json @@ -1,11 +1,9 @@ { - "description": "Biplob's website", - "repo": "https://github.com/revolutionisme/revolutionisme.github.io", - "owner": { - "username": "revolutionisme", - "email": "revolutionisme+github@gmail.com" - }, - "record": { - "CNAME": "revolutionisme.github.io" - } + "owner": { + "username": "revolutionisme", + "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..e81b046ee --- /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/bitter-130.json b/domains/bitter-130.json new file mode 100644 index 000000000..2a9cfef4f --- /dev/null +++ b/domains/bitter-130.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Bitter130", + "email": "devid.bitter.130@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bitter130.json b/domains/bitter130.json new file mode 100644 index 000000000..2a9cfef4f --- /dev/null +++ b/domains/bitter130.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Bitter130", + "email": "devid.bitter.130@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bk.json b/domains/bk.json new file mode 100644 index 000000000..e7d9f49df --- /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..90e48e005 --- /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/blackdx.json b/domains/blackdx.json new file mode 100644 index 000000000..03b7b6878 --- /dev/null +++ b/domains/blackdx.json @@ -0,0 +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" + } +} diff --git a/domains/blaine.json b/domains/blaine.json index eff049886..e9920dac7 100644 --- a/domains/blaine.json +++ b/domains/blaine.json @@ -1,11 +1,11 @@ { - "description": "The face of Blaine, on the web", - "repo": "https://github.com/Blakeinstein/Blakeinstein.github.io", - "owner": { - "username": "Blakeinstein", - "email": "rishi1998@gmail.com" - }, - "record": { - "URL": "https://blaine.vip" - } + "description": "The face of Blaine, on the web", + "repo": "https://github.com/Blakeinstein/Blakeinstein.github.io", + "owner": { + "username": "Blakeinstein", + "email": "rishi1998@gmail.com" + }, + "record": { + "URL": "https://blaine.vip" + } } diff --git a/domains/blake.json b/domains/blake.json index 1366c9473..c1bfd94da 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..937ac3add --- /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..f52843c4a 100644 --- a/domains/blast.json +++ b/domains/blast.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "ReBlast", - "email": "", - "discord": "Blast#9400" - }, - "description": "Personal website with links to my social medias, will probably add portfolio", - "record": { - "CNAME": "reblast.github.io" - } + "owner": { + "username": "ReBlast", + "email": "", + "discord": "Blast#9400" + }, + "description": "Personal website with links to my social medias, will probably add portfolio", + "record": { + "CNAME": "reblast.github.io" + } } diff --git a/domains/blazyflash.json b/domains/blazyflash.json new file mode 100644 index 000000000..bc2a714a6 --- /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..6b3cc9860 --- /dev/null +++ b/domains/blc.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "BLCXD", + "email": "blctoblc223@gmail.com", + "discord": "723837167499083788" + }, + + "record": { + "CNAME": "blcpage.github.io" + } + } + \ No newline at end of file diff --git a/domains/blek.json b/domains/blek.json new file mode 100644 index 000000000..df17670cf --- /dev/null +++ b/domains/blek.json @@ -0,0 +1,11 @@ +{ + "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..9dc9857e6 --- /dev/null +++ b/domains/blema.json @@ -0,0 +1,11 @@ +{ + "owner":{ + "username":"ruben-as", + "email":"ruben.aja.85@gmail.com" + }, + "record":{ + "A":[ + "212.227.32.105" + ] + } +} diff --git a/domains/blessingmwiti.json b/domains/blessingmwiti.json new file mode 100644 index 000000000..fba1db140 --- /dev/null +++ b/domains/blessingmwiti.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "blessingmwiti", + "email": "blessingmwiti@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/blinx.json b/domains/blinx.json new file mode 100644 index 000000000..5cc427158 --- /dev/null +++ b/domains/blinx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cabingory", + "email": "blinxduh@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/blob.json b/domains/blob.json new file mode 100644 index 000000000..6fb11d7a9 --- /dev/null +++ b/domains/blob.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BlobDeveloper", + "email": "blob.dev@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/blob2763.json b/domains/blob2763.json new file mode 100644 index 000000000..8da1a718d --- /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/block.json b/domains/block.json new file mode 100644 index 000000000..a21466fe4 --- /dev/null +++ b/domains/block.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CookieTriste", + "email": "romain.tocsin@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/blockchaindevpanther.json b/domains/blockchaindevpanther.json new file mode 100644 index 000000000..311226885 --- /dev/null +++ b/domains/blockchaindevpanther.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "2618Zahid", + "email": "zahidhassankalaroa104@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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.catzboy.json b/domains/blog.catzboy.json index e11095ae3..695d43e96 100644 --- a/domains/blog.catzboy.json +++ b/domains/blog.catzboy.json @@ -1,11 +1,11 @@ { - "description": "Catzboy's Blog", - "repo": "https://github.com/Maruful007/Maruful007.github.io", - "owner": { - "username": "Maruful007", - "email": "marufulislamsami2007@gmail.com" - }, - "record": { - "CNAME": "maruful007.github.io" - } + "description": "Catzboy's Blog", + "repo": "https://github.com/Maruful007/Maruful007.github.io", + "owner": { + "username": "Maruful007", + "email": "marufulislamsami2007@gmail.com" + }, + "record": { + "CNAME": "maruful007.github.io" + } } diff --git a/domains/blog.dhruva.json b/domains/blog.dhruva.json index 6a513ff40..254acf7d8 100644 --- a/domains/blog.dhruva.json +++ b/domains/blog.dhruva.json @@ -1,11 +1,10 @@ - { - "description": "my hashnode blog", - "owner": { - "username": "carrotfarmer", - "email": "dhruvas17068@gmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } + "description": "my hashnode blog", + "owner": { + "username": "carrotfarmer", + "email": "dhruvas17068@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } } diff --git a/domains/blog.efrecon.json b/domains/blog.efrecon.json new file mode 100644 index 000000000..887f54956 --- /dev/null +++ b/domains/blog.efrecon.json @@ -0,0 +1,11 @@ +{ + "description": "efrecon's blog", + "repo": "https://github.com/efrecon/efrecon.github.io", + "owner": { + "username": "efrecon", + "email": "efrecon+github@gmail.com" + }, + "record": { + "CNAME": "efrecon.github.io" + } +} diff --git a/domains/blog.ron.json b/domains/blog.ron.json new file mode 100644 index 000000000..9c98d6524 --- /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.syntaxloopers.json b/domains/blog.syntaxloopers.json new file mode 100644 index 000000000..324dfe7e2 --- /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.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..ef2fc325b 100644 --- a/domains/blogs.aakanksha.json +++ b/domains/blogs.aakanksha.json @@ -2,10 +2,10 @@ "description": "Aakanksha's Blog", "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", "owner": { - "username": "aakankshabhende", - "email": "aakanksha0407@gmail.com" + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" }, "record": { - "CNAME": "hashnode.network" + "CNAME": "hashnode.network" } - } \ No newline at end of file +} diff --git a/domains/blogs.shaunak.json b/domains/blogs.shaunak.json index 1af1bd18c..a3461174b 100644 --- a/domains/blogs.shaunak.json +++ b/domains/blogs.shaunak.json @@ -1,11 +1,11 @@ { - "description": "Shaunak's Blog", - "repo": "https://github.com/Shaunak-Pandya/Shaunak-Pandya.github.io", - "owner": { - "username": "Shaunak-Pandya", - "email": "shaunak.n.pandya@gmail.com" - }, - "record": { - "CNAME": "hashnode.network" - } + "description": "Shaunak's Blog", + "repo": "https://github.com/Shaunak-Pandya/Shaunak-Pandya.github.io", + "owner": { + "username": "Shaunak-Pandya", + "email": "shaunak.n.pandya@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } } diff --git a/domains/bloomy.json b/domains/bloomy.json new file mode 100644 index 000000000..f0aec18e7 --- /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..350a7adb1 100644 --- a/domains/blox.json +++ b/domains/blox.json @@ -6,4 +6,4 @@ "record": { "CNAME": "soudblox.github.io" } -} +} diff --git a/domains/blucifer.json b/domains/blucifer.json new file mode 100644 index 000000000..da16bd99e --- /dev/null +++ b/domains/blucifer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "blucifer1337", + "email": "blucifer1337@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/blue.json b/domains/blue.json index 7f84fc175..2f9386f4a 100644 --- a/domains/blue.json +++ b/domains/blue.json @@ -1,12 +1,11 @@ { - "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", - "owner": { - "username": "Jimmy-Blue", - "email": "ngolong1396@hotmail.com", - "twitter": "https://twitter.com/JimmyBlue00" - }, - "record": { - "CNAME": "jimmy-blue.github.io" - } -} + "owner": { + "username": "B1ue-Dev", + "email": "ngolong1396@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/blueberry.json b/domains/blueberry.json index cbffb1225..592ee628b 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..6a0f9e884 --- /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/blueysh.json b/domains/blueysh.json new file mode 100644 index 000000000..786440bd6 --- /dev/null +++ b/domains/blueysh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "blueysh", + "email": "jan.santi@icloud.com" + }, + "record": { + "URL": "https://blueysh.me" + } +} diff --git a/domains/blurnope.json b/domains/blurnope.json index 4292de666..31a4fc470 100644 --- a/domains/blurnope.json +++ b/domains/blurnope.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/blurnope/blurnope.github.io", - "owner": { - "username": "blurnope", - "email": "cynosuregone@gmail.com", - "discord": "blurnope.#2655" - }, - "record": { - "CNAME": "blurnope.github.io" - } + "repo": "https://github.com/blurnope/blurnope.github.io", + "owner": { + "username": "blurnope", + "email": "cynosuregone@gmail.com", + "discord": "blurnope.#2655" + }, + "record": { + "CNAME": "blurnope.github.io" + } } diff --git a/domains/bmbs.json b/domains/bmbs.json new file mode 100644 index 000000000..2397ce3ce --- /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/bmh.json b/domains/bmh.json new file mode 100644 index 000000000..99bb03bc0 --- /dev/null +++ b/domains/bmh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bm-hien", + "email": "buiminhhien001@gmail.com" + }, + "record": { + "URL": "https://bm-hien.github.io" + } +} diff --git a/domains/bmhien.json b/domains/bmhien.json new file mode 100644 index 000000000..f8e3db3bb --- /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/bni.co.id.json b/domains/bni.co.id.json new file mode 100644 index 000000000..a650d4c88 --- /dev/null +++ b/domains/bni.co.id.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dana-fintech-id", + "email": "csferdisambo2023@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bnyro.json b/domains/bnyro.json new file mode 100644 index 000000000..30b407e6b --- /dev/null +++ b/domains/bnyro.json @@ -0,0 +1,10 @@ +{ + "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..2418f306f --- /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/boba.json b/domains/boba.json index d6226cdb3..7056ca2d9 100644 --- a/domains/boba.json +++ b/domains/boba.json @@ -1,11 +1,11 @@ { - "description": "A personal blog.", - "repo": "https://github.com/tarob0ba/tarob0ba.github.io", - "owner": { - "username": "tarob0ba", - "email": "beckett@chatter-social.com" - }, - "record": { - "CNAME": "tarob0ba.github.io" - } + "description": "A personal blog.", + "repo": "https://github.com/tarob0ba/tarob0ba.github.io", + "owner": { + "username": "tarob0ba", + "email": "beckett@chatter-social.com" + }, + "record": { + "CNAME": "tarob0ba.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..276ac82e7 --- /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/bogdan.json b/domains/bogdan.json new file mode 100644 index 000000000..822b0d427 --- /dev/null +++ b/domains/bogdan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MrBogdanYT", + "email": "hysbskyblockgod@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/boggy.json b/domains/boggy.json new file mode 100644 index 000000000..01ae7849e --- /dev/null +++ b/domains/boggy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "boggy539", + "email": "boggydev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bolt.json b/domains/bolt.json index 5c0693a25..96647d944 100644 --- a/domains/bolt.json +++ b/domains/bolt.json @@ -1,11 +1,11 @@ { - "description": "Bolt's portfolio website", - "repo": "https://github.com/Adityeahhh/portfolio", - "owner": { - "username": "Adityeahhh", - "email": "adty200807@gmail.com" - }, - "record": { - "CNAME": "adityeahhh.github.io" - } + "description": "Bolt's portfolio website", + "repo": "https://github.com/Adityeahhh/portfolio", + "owner": { + "username": "Adityeahhh", + "email": "adty200807@gmail.com" + }, + "record": { + "CNAME": "adityeahhh.github.io" + } } diff --git a/domains/bongopentester.json b/domains/bongopentester.json new file mode 100644 index 000000000..2124d1588 --- /dev/null +++ b/domains/bongopentester.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "iamunixtz", + "email": "unixtz@protonmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/bongoshop.json b/domains/bongoshop.json new file mode 100644 index 000000000..0ee6b86bd --- /dev/null +++ b/domains/bongoshop.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "iamunixtz", + "email": "unixtz@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/boolean44.json b/domains/boolean44.json index cde6bc82b..2f0ae8308 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 + "owner": { + "username": "boolean44-repos", + "email": "serenitypalmer10@gmail.com" + }, + "record": { + "CNAME": "boolean44-repos.github.io" + } +} diff --git a/domains/boon.json b/domains/boon.json new file mode 100644 index 000000000..513192653 --- /dev/null +++ b/domains/boon.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio site for me.", + "owner": { + "username": "uwuCaitlin", + "email": "", + "discord": "boon#6660" + }, + "record": { + "URL": "https://boons.pics" + } +} diff --git a/domains/booogle.json b/domains/booogle.json new file mode 100644 index 000000000..0ccd953d1 --- /dev/null +++ b/domains/booogle.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HoaQuyingVN", + "email": "phu.hoa.dp@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/borboss.json b/domains/borboss.json new file mode 100644 index 000000000..33dd07cc7 --- /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..9b3e1a499 100644 --- a/domains/boredcodebyk.json +++ b/domains/boredcodebyk.json @@ -1,11 +1,11 @@ { - "description": "Portfolio/Personal landing page", - "repo": "https://github.com/boredcodebyk/boredcodebyk.github.io", - "owner": { - "username": "boredcodebyk", - "email": "" - }, - "record": { - "CNAME": "boredcodebyk.github.io" - } + "description": "Portfolio/Personal landing page", + "repo": "https://github.com/boredcodebyk/boredcodebyk.github.io", + "owner": { + "username": "boredcodebyk", + "email": "khromabyk+dev@gmail.com" + }, + "record": { + "CNAME": "boredcodebyk.github.io" + } } diff --git a/domains/boris1993.json b/domains/boris1993.json index 1df9959bc..f3a570c18 100644 --- a/domains/boris1993.json +++ b/domains/boris1993.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "boris1993", - "email": "boris1993@live.cn" - }, - "description": "boris1993.is-a.dev", - "record": { - "CNAME": "boris1993.github.io" - } + "owner": { + "username": "boris1993", + "email": "boris1993@live.cn" + }, + "description": "boris1993.is-a.dev", + "record": { + "CNAME": "boris1993.github.io" + } } diff --git a/domains/bot.api.json b/domains/bot.api.json deleted file mode 100644 index 7606515f6..000000000 --- a/domains/bot.api.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Official Is A Dev bot API", - "repo": "https://github.com/mtgsquad/is-a-dev-bot", - "owner": { - "username": "Mahir", - "email": "mahir@molai.dev" - }, - "record": { - "CNAME": "is-a-dev-bot-production.up.railway.app" - } -} diff --git a/domains/bot.dracx.json b/domains/bot.dracx.json new file mode 100644 index 000000000..68f770565 --- /dev/null +++ b/domains/bot.dracx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DarindaDraX", + "email": "123kishanvish@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} 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/bota.json b/domains/bota.json new file mode 100644 index 000000000..bdfc5f15c --- /dev/null +++ b/domains/bota.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "botaprojects", + "email": "peliculas.espanol.latino.x@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/botolbaba.json b/domains/botolbaba.json new file mode 100644 index 000000000..70b20e6f3 --- /dev/null +++ b/domains/botolbaba.json @@ -0,0 +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" + } +} 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..b8c78ecb4 --- /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/bovas.json b/domains/bovas.json new file mode 100644 index 000000000..6f55a92df --- /dev/null +++ b/domains/bovas.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bovas", + "email": "bovaskjacobb2009@gmail.com" + }, + + "record": { + "URL": "https://dev.bovas.repl.co" + } +} diff --git a/domains/box.json b/domains/box.json index 384db423c..a8b6b8d82 100644 --- a/domains/box.json +++ b/domains/box.json @@ -1,12 +1,14 @@ - - { - "owner": { +{ + "description": "Personal Website", + "repo": "https://github.com/Default-Box/website", + "owner": { "username": "Default-Box", - "email": "thedefaultbox@gmail.com" - }, + "email": "", + "twitter": "DefaultBox_", + "discord": "Default Box#8900" + }, - "record": { - "CNAME": "my-website-production-1d23.up.railway.app" - } + "record": { + "CNAME": "Default-Box.github.io" } - +} diff --git a/domains/boxey.json b/domains/boxey.json new file mode 100644 index 000000000..85b77fcbc --- /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..a646fe009 --- /dev/null +++ b/domains/bracketproto.json @@ -0,0 +1,10 @@ +{ + "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"] + } +} 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/brahianf.json b/domains/brahianf.json new file mode 100644 index 000000000..507cf50ef --- /dev/null +++ b/domains/brahianf.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "brahianf1", + "email": "floresbrahian@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/brandnewwick.json b/domains/brandnewwick.json new file mode 100644 index 000000000..1674a48de --- /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 new file mode 100644 index 000000000..b497a8a52 --- /dev/null +++ b/domains/brandon-hoffman.json @@ -0,0 +1,11 @@ +{ + "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/brandon.json b/domains/brandon.json index 9544482cf..a50cf578f 100644 --- a/domains/brandon.json +++ b/domains/brandon.json @@ -1,11 +1,11 @@ { - "description": "Brandon Hexsel - Full Stack Engineer", - "repo": "https://github.com/b-hexsoul/b-hexsoul.github.io", - "owner": { - "username": "b-hexsoul", - "email": "brandon.hexsel@gmail.com" - }, - "record": { - "CNAME": "b-hexsoul.github.io" - } + "description": "Brandon Hexsel - Full Stack Engineer", + "repo": "https://github.com/b-hexsoul/b-hexsoul.github.io", + "owner": { + "username": "b-hexsoul", + "email": "brandon.hexsel@gmail.com" + }, + "record": { + "CNAME": "b-hexsoul.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/brawley.json b/domains/brawley.json index 6b0af71e8..7cfa402bd 100644 --- a/domains/brawley.json +++ b/domains/brawley.json @@ -1,10 +1,10 @@ { - "description": "Discord Bot's Website", - "owner": { - "username": "brawlie", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "URL": "https://brawley.js.org" - } + "description": "Discord Bot's Website", + "owner": { + "username": "brawlie", + "email": "tojoeleeofficial@gmail.com" + }, + "record": { + "URL": "https://brawley.js.org" + } } diff --git a/domains/bread.json b/domains/bread.json new file mode 100644 index 000000000..e16e859ba --- /dev/null +++ b/domains/bread.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "soggycatalltheway", + "email": "hurvzee+partizao@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/breadomaticc.json b/domains/breadomaticc.json index e2f98517f..f50482113 100644 --- a/domains/breadomaticc.json +++ b/domains/breadomaticc.json @@ -1,11 +1,11 @@ { - "description": "BreadoMatic Beginner Dev", - "repo": "https://github.com/breadomaticc/breadomaticc.github.io", - "owner": { - "username": "breadomaticc", - "email": "animaxionpd@gmail.com" - }, - "record": { - "CNAME": "breadomaticc.github.io" - } + "description": "BreadoMatic Beginner Dev", + "repo": "https://github.com/breadomaticc/breadomaticc.github.io", + "owner": { + "username": "breadomaticc", + "email": "animaxionpd@gmail.com" + }, + "record": { + "CNAME": "breadomaticc.github.io" + } } diff --git a/domains/bree.json b/domains/bree.json index e2f781cce..290007f4f 100644 --- a/domains/bree.json +++ b/domains/bree.json @@ -1,11 +1,11 @@ { - "description": "Bree is a Dev", - "repo": "https://github.com/breekoy/breekoy.github.io", - "owner": { - "username": "breekoy", - "email": "mcwall.breekoy@gmail.com" - }, - "record": { - "CNAME": "breekoy.github.io" - } + "description": "Bree is a Dev", + "repo": "https://github.com/breekoy/breekoy.github.io", + "owner": { + "username": "breekoy", + "email": "mcwall.breekoy@gmail.com" + }, + "record": { + "CNAME": "breekoy.github.io" + } } 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/brian.json b/domains/brian.json index 6f3b89d78..1fb05058b 100644 --- a/domains/brian.json +++ b/domains/brian.json @@ -1,11 +1,11 @@ { - "description": "fittsqo's is-a.dev domain", - "repo": "https://github.com/fittsqo/fittsqo.github.io", - "owner": { - "username": "fittsqo", - "email": "fittsqo@gmail.com" - }, - "record": { - "CNAME": "fittsqo.github.io" - } + "description": "fittsqo's is-a.dev domain", + "repo": "https://github.com/fittsqo/fittsqo.github.io", + "owner": { + "username": "fittsqo", + "email": "fittsqo@gmail.com" + }, + "record": { + "CNAME": "fittsqo.github.io" + } } diff --git a/domains/brin.json b/domains/brin.json index 2b4ccbf78..7abb43fbc 100644 --- a/domains/brin.json +++ b/domains/brin.json @@ -1,11 +1,11 @@ { - "description": "Personal site", - "repo": "https://github.com/xXTgamerXx/xXTgamerXx.github.io", - "owner": { - "username": "xXTgamerXx", - "email": "trin.n2848@gmail.com" - }, - "record": { - "CNAME": "xxtgamerxx.github.io" - } + "description": "Personal site", + "repo": "https://github.com/xXTgamerXx/xXTgamerXx.github.io", + "owner": { + "username": "xXTgamerXx", + "email": "trin.n2848@gmail.com" + }, + "record": { + "CNAME": "xxtgamerxx.github.io" + } } diff --git a/domains/brnsystems.json b/domains/brnsystems.json new file mode 100644 index 000000000..34bed2cd7 --- /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/brokiem.json b/domains/brokiem.json index 2c54ca794..547fcbcc6 100644 --- a/domains/brokiem.json +++ b/domains/brokiem.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "brokiem", "email": "milyhqvideo@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "brokiem.github.io" - } } - \ No newline at end of file +} diff --git a/domains/brooklyn.json b/domains/brooklyn.json index 8664b03d8..8ad95abd7 100644 --- a/domains/brooklyn.json +++ b/domains/brooklyn.json @@ -1,12 +1,12 @@ { - "description": "im brooklyn :3", - "repo": "https://github.com/BrooklynWasHere/brooklynwashere.github.io", - "owner": { - "username": "BrooklynWasHere", - "email": "redmiror@outlook.com", - "twitter": "BrooklynCilekli" - }, - "record": { - "CNAME": "brooklynwashere.github.io" - } + "description": "im brooklyn :3", + "repo": "https://github.com/BrooklynWasHere/brooklynwashere.github.io", + "owner": { + "username": "BrooklynWasHere", + "email": "redmiror@outlook.com", + "twitter": "BrooklynCilekli" + }, + "record": { + "CNAME": "brooklynwashere.github.io" + } } diff --git a/domains/brownvinci.json b/domains/brownvinci.json new file mode 100644 index 000000000..578104e67 --- /dev/null +++ b/domains/brownvinci.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BrownVinci", + "email": "DigitalBrownVinci@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/brpro.json b/domains/brpro.json new file mode 100644 index 000000000..1727d584e --- /dev/null +++ b/domains/brpro.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raxidbou4nja", + "email": "rachid.boughnja@gmail.com" + }, + "record": { + "A": ["150.136.61.251"] + } +} diff --git a/domains/bruhx.json b/domains/bruhx.json new file mode 100644 index 000000000..b9256f765 --- /dev/null +++ b/domains/bruhx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Bruhxz54", + "email": "pollyx73@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bruno.json b/domains/bruno.json index 9c305fe0b..122e77a2e 100644 --- a/domains/bruno.json +++ b/domains/bruno.json @@ -1,10 +1,10 @@ { - "description": "Bruno Henrique Paiva's personal website", - "owner": { - "username": "brunohpaiva", - "email": "me@bruno.codes" - }, - "record": { - "URL": "https://bruno.codes" - } + "description": "Bruno Henrique Paiva's personal website", + "owner": { + "username": "brunohpaiva", + "email": "me@bruno.codes" + }, + "record": { + "URL": "https://bruno.codes" + } } 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/bryan.json b/domains/bryan.json index d0e9ed6fc..6a61a38cf 100644 --- a/domains/bryan.json +++ b/domains/bryan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "evilbryan590", - "email": "evilbryan590@gmail.com" - }, - "record": { - "CNAME": "evilbryan590.github.io" - } + "owner": { + "username": "evilbryan590", + "email": "evilbryan590@gmail.com" + }, + "record": { + "CNAME": "evilbryan590.github.io" + } } diff --git a/domains/bryce.json b/domains/bryce.json new file mode 100644 index 000000000..9e432bec6 --- /dev/null +++ b/domains/bryce.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "addinz", + "email": "leachbryce8@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/bs.json b/domains/bs.json index e7daac5a3..2f4d1f307 100644 --- a/domains/bs.json +++ b/domains/bs.json @@ -1,11 +1,11 @@ { - "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" - } + "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/bsapi.json b/domains/bsapi.json index 1d9a5df2e..7fa0d1471 100644 --- a/domains/bsapi.json +++ b/domains/bsapi.json @@ -1,11 +1,11 @@ { - "description": "documentation for bsapi.js", - "repo": "https://github.com/botstudios/bsapi.js-docs", - "owner": { - "username": "leecheeyong", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "botstudios.github.io" - } + "description": "documentation for bsapi.js", + "repo": "https://github.com/botstudios/bsapi.js-docs", + "owner": { + "username": "leecheeyong", + "email": "tojoeleeofficial@gmail.com" + }, + "record": { + "CNAME": "botstudios.github.io" + } } diff --git a/domains/bulkypanda.json b/domains/bulkypanda.json new file mode 100644 index 000000000..d7b27a2f4 --- /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/bumbleboss.json b/domains/bumbleboss.json new file mode 100644 index 000000000..9979ce838 --- /dev/null +++ b/domains/bumbleboss.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Bumbleboss", + "email": "me@bumbleboss.xyz" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bur.json b/domains/bur.json new file mode 100644 index 000000000..ef7e46335 --- /dev/null +++ b/domains/bur.json @@ -0,0 +1,11 @@ +{ + "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/burandby.json b/domains/burandby.json index 9d661b37a..37d578508 100644 --- a/domains/burandby.json +++ b/domains/burandby.json @@ -1,11 +1,11 @@ { - "description": "Pico-8 in-browser emulator.", - "repo": "https://github.com/burandby", - "owner": { - "username": "burandby", - "email": "bur.and.by@gmail.com" - }, - "record": { - "CNAME": "burandby.github.io" - } + "description": "Pico-8 in-browser emulator.", + "repo": "https://github.com/burandby", + "owner": { + "username": "burandby", + "email": "bur.and.by@gmail.com" + }, + "record": { + "CNAME": "burandby.github.io" + } } diff --git a/domains/bv.json b/domains/bv.json new file mode 100644 index 000000000..5bcad695b --- /dev/null +++ b/domains/bv.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "eyesmad", + "email": "eagam0002@mymail.lausd.net" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/byigit.json b/domains/byigit.json new file mode 100644 index 000000000..91445aac3 --- /dev/null +++ b/domains/byigit.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "byigitt", + "email": "c2228009@student.cankaya.edu.tr" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/bypass.jesgran.json b/domains/bypass.jesgran.json new file mode 100644 index 000000000..f48e7a4c7 --- /dev/null +++ b/domains/bypass.jesgran.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Jesgran", + "email": "calzdani20@libero.it" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/c00l.json b/domains/c00l.json new file mode 100644 index 000000000..bdd33ad63 --- /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/c22.json b/domains/c22.json new file mode 100644 index 000000000..affe361a4 --- /dev/null +++ b/domains/c22.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "c22dev", + "email": "constclerc@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/cagdas.json b/domains/cagdas.json new file mode 100644 index 000000000..448aaab81 --- /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..d61673cba --- /dev/null +++ b/domains/caiden.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Caiden-P", + "email": "iididhejejdj@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/caiden.xyz.json b/domains/caiden.xyz.json new file mode 100644 index 000000000..d61673cba --- /dev/null +++ b/domains/caiden.xyz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Caiden-P", + "email": "iididhejejdj@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/caillou.json b/domains/caillou.json new file mode 100644 index 000000000..6e761d1bd --- /dev/null +++ b/domains/caillou.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ManIsHot", + "email": "palpafett@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/cakihorse.json b/domains/cakihorse.json new file mode 100644 index 000000000..fe8e1d290 --- /dev/null +++ b/domains/cakihorse.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cakihorse", + "email": "cakihorse06@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/cal.json b/domains/cal.json index 6c270a0e8..d57b9ff34 100644 --- a/domains/cal.json +++ b/domains/cal.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "Recal", "email": "recalibratedgh@gmail.com" - }, - "record": { + }, + "record": { "URL": "https://github.com/recal" - } } - +} diff --git a/domains/calamity.json b/domains/calamity.json new file mode 100644 index 000000000..1af848257 --- /dev/null +++ b/domains/calamity.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "calamitywoah", + "email": "krivojta@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/calculator.notaperson535.json b/domains/calculator.notaperson535.json index 6ac8d89c9..7149dcd74 100644 --- a/domains/calculator.notaperson535.json +++ b/domains/calculator.notaperson535.json @@ -1,11 +1,11 @@ { - "description": "My modern calculator", - "repo": "https://github.com/notAperson535/moderncalculator", - "owner": { - "username": "notAperson535", - "email": "notAperson939@gmail.com" - }, - "record": { - "CNAME": "notAperson535.github.io" - } + "description": "My modern calculator", + "repo": "https://github.com/notAperson535/moderncalculator", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } } diff --git a/domains/caleb.json b/domains/caleb.json index 615f01dd3..63ed2018e 100644 --- a/domains/caleb.json +++ b/domains/caleb.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "cjdenio", - "email": "", - "twitter": "CalebDenio" - }, - "repo": "https://github.com/cjdenio/site-frontend", - "record": { - "URL": "https://calebden.io" - } + "owner": { + "username": "cjdenio", + "email": "", + "twitter": "CalebDenio" + }, + "repo": "https://github.com/cjdenio/site-frontend", + "record": { + "URL": "https://calebden.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 new file mode 100644 index 000000000..376b5ab2e --- /dev/null +++ b/domains/callumjt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "callumjt", + "email": "cjblack2009@icloud.com" + }, + "record": { + "CNAME": "callumjt.github.io" + } +} diff --git a/domains/cameo007.json b/domains/cameo007.json new file mode 100644 index 000000000..3f8373e10 --- /dev/null +++ b/domains/cameo007.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Cameo007", + "email": "pascal.1.dietrich@hotmail.com" + }, + "record": { + "CNAME": "mintux.de" + } +} diff --git a/domains/campusgeeks.json b/domains/campusgeeks.json new file mode 100644 index 000000000..77ccd712a --- /dev/null +++ b/domains/campusgeeks.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "jona42-ui", + "email": "jonathanthembo123@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/canarddu38.json b/domains/canarddu38.json new file mode 100644 index 000000000..1991f5841 --- /dev/null +++ b/domains/canarddu38.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "canarddu38", + "email": "julescanardcoin@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/canaris.json b/domains/canaris.json index 01d0c8843..0fadf5322 100644 --- a/domains/canaris.json +++ b/domains/canaris.json @@ -1,11 +1,11 @@ { - "description": "My Personal Website.", - "repo": "https://github.com/DET171/det171.github.io", - "owner": { - "username": "Canaris", - "email": "mrgeek484@gmail.com" - }, - "record": { - "CNAME": "canaris.pages.dev" - } + "description": "My Personal Website.", + "repo": "https://github.com/DET171/det171.github.io", + "owner": { + "username": "Canaris", + "email": "mrgeek484@gmail.com" + }, + "record": { + "CNAME": "canaris.pages.dev" + } } diff --git a/domains/caodoc.json b/domains/caodoc.json new file mode 100644 index 000000000..b9765fa0b --- /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/carince.json b/domains/carince.json new file mode 100644 index 000000000..e2f0d3370 --- /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/carlosgiralt.json b/domains/carlosgiralt.json index bf56ce54a..29b866c4c 100644 --- a/domains/carlosgiralt.json +++ b/domains/carlosgiralt.json @@ -1,12 +1,12 @@ { - "description": "code-a-bit", - "repo": "https://github.com/carlosgiralt/carlosgiralt.github.io", - "owner": { - "username": "carlosgiralt", - "email": "", - "twitter": "@cagiraltt" - }, - "record": { - "CNAME": "carlosgiralt.github.io" - } + "description": "code-a-bit", + "repo": "https://github.com/carlosgiralt/carlosgiralt.github.io", + "owner": { + "username": "carlosgiralt", + "email": "", + "twitter": "cagiraltt" + }, + "record": { + "CNAME": "carlosgiralt.github.io" + } } diff --git a/domains/carmelo.json b/domains/carmelo.json index f43014bbf..b4cb9f67b 100644 --- a/domains/carmelo.json +++ b/domains/carmelo.json @@ -1,12 +1,12 @@ { - "description": "Carmelo Velardo", - "repo": "https://github.com/2dvisio/2dvisio.github.io", - "owner": { - "username": "2dvisio", - "email": "[name.lastname]@gmail.com", - "twitter": "2dvisio" - }, - "record": { - "CNAME": "2dvisio.github.io" - } + "description": "Carmelo Velardo", + "repo": "https://github.com/2dvisio/2dvisio.github.io", + "owner": { + "username": "2dvisio", + "email": "[name.lastname]@gmail.com", + "twitter": "2dvisio" + }, + "record": { + "CNAME": "2dvisio.github.io" + } } diff --git a/domains/carol3n.json b/domains/carol3n.json new file mode 100644 index 000000000..958d48639 --- /dev/null +++ b/domains/carol3n.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Carol3n", + "email": "20cs031.caroline@sjec.ac.in" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/carsonday.json b/domains/carsonday.json new file mode 100644 index 000000000..6dd0531ce --- /dev/null +++ b/domains/carsonday.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "CarsonDay11", + "email": "carson@carsonday.pro" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/cartar.json b/domains/cartar.json index 24e228209..95ff94e2a 100644 --- a/domains/cartar.json +++ b/domains/cartar.json @@ -1,12 +1,12 @@ { - "description": "Main domain for file server.", - "repo": "https://github.com/realCartar", - "owner": { - "username": "realCartar", - "email": "", - "twitter": "cartar0058" - }, - "record": { - "A": ["154.53.34.33"] - } + "description": "Main domain for file server.", + "repo": "https://github.com/realCartar", + "owner": { + "username": "realCartar", + "email": "", + "twitter": "cartar0058" + }, + "record": { + "A": ["154.53.34.33"] + } } diff --git a/domains/cartyoo.json b/domains/cartyoo.json new file mode 100644 index 000000000..16b6fdb77 --- /dev/null +++ b/domains/cartyoo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Cartyoo", + "email": "cartyoogaming@gmail.com" + }, + "record": { + "CNAME": "cartyoo.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/casper.json b/domains/casper.json index 6bdae7c6e..7c55f515a 100644 --- a/domains/casper.json +++ b/domains/casper.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "KZacharski", - "email": "apki@kacperzacharski.pl" - }, - "record": { - "CNAME": "puffercat.xyz" - } + "owner": { + "username": "KZacharski", + "email": "apki@kacperzacharski.pl" + }, + "record": { + "CNAME": "puffercat.xyz" + } } diff --git a/domains/casperong.json b/domains/casperong.json new file mode 100644 index 000000000..3f67e8a47 --- /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..6357cb664 100644 --- a/domains/cassie.json +++ b/domains/cassie.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Diordnas", - "email": "alessandroeliot@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" - } + "description": "Personal website", + "repo": "https://github.com/diordnas/diordnas.github.io", + "owner": { + "username": "Diordnas", + "email": "cassthepurple@gmail.com" + }, + "record": { + "CNAME": "diordnas.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/catboy.json b/domains/catboy.json new file mode 100644 index 000000000..9a451ccdf --- /dev/null +++ b/domains/catboy.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "SlycIsACatboy", + "email": "noahhz942@gmail.com" + }, + "record": { + "A": [ + "137.184.119.127" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/catr3kd.json b/domains/catr3kd.json new file mode 100644 index 000000000..2785127bb --- /dev/null +++ b/domains/catr3kd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CatR3kd", + "email": "oliverlivesay@gmail.com" + }, + "record": { + "URL": "https://catr3kd.repl.co" + } +} diff --git a/domains/catsarecoo.json b/domains/catsarecoo.json index c1b17babe..a75d297e0 100644 --- a/domains/catsarecoo.json +++ b/domains/catsarecoo.json @@ -1,11 +1,11 @@ { - "description": "Invites Bot Site", - "repo": "https://catsarecoo.github.io/", - "owner": { - "username": "catsarecoo", - "email": "twistedpandora91@gmail.com" - }, - "record": { - "CNAME": "catsarecoo.github.io" - } + "description": "Invites Bot Site", + "repo": "https://catsarecoo.github.io", + "owner": { + "username": "catsarecoo", + "email": "twistedpandora91@gmail.com" + }, + "record": { + "CNAME": "catsarecoo.github.io" + } } diff --git a/domains/cattopytheweb.json b/domains/cattopytheweb.json new file mode 100644 index 000000000..b3d119421 --- /dev/null +++ b/domains/cattopytheweb.json @@ -0,0 +1,14 @@ +{ + "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/catzboy.json b/domains/catzboy.json index 5a35b961c..4a206256e 100644 --- a/domains/catzboy.json +++ b/domains/catzboy.json @@ -1,11 +1,11 @@ { - "description": "Catzboy Profilo", - "repo": "https://github.com/Maruful007/Maruful007.github.io", - "owner": { - "username": "Maruful007", - "email": "marufulislamsami2007@gmail.com" - }, - "record": { - "CNAME": "maruful007.github.io" - } + "description": "Catzboy Profilo", + "repo": "https://github.com/Maruful007/Maruful007.github.io", + "owner": { + "username": "Maruful007", + "email": "marufulislamsami2007@gmail.com" + }, + "record": { + "CNAME": "maruful007.github.io" + } } diff --git a/domains/caz.json b/domains/caz.json index b0a412822..b5a9a7019 100644 --- a/domains/caz.json +++ b/domains/caz.json @@ -1,6 +1,6 @@ { "description": "Just Another One Of Those Portfolios.", - "repo": "https://github.com/crazyaccess/crazyaccess.github.io/", + "repo": "https://github.com/crazyaccess/crazyaccess.github.io", "owner": { "username": "crazyaccess", "email": "caz@monke.team", diff --git a/domains/cb.json b/domains/cb.json index 2438155ed..eeea8e3ca 100644 --- a/domains/cb.json +++ b/domains/cb.json @@ -1,10 +1,10 @@ { - "description": "Coffeebank", - "owner": { - "username": "coffeebank", - "email": "coffeebank-is-a-dev@catdev.anonaddy.com" - }, - "record": { - "URL": "https://coffeebank.github.io" - } + "description": "Coffeebank", + "owner": { + "username": "coffeebank", + "email": "coffeebank-is-a-dev@catdev.anonaddy.com" + }, + "record": { + "URL": "https://coffeebank.github.io" + } } diff --git a/domains/cc.json b/domains/cc.json index 532b22dd8..7dee33e25 100644 --- a/domains/cc.json +++ b/domains/cc.json @@ -9,4 +9,4 @@ "record": { "CNAME": "iamcc.github.io" } -} +} diff --git a/domains/ccnicebruh.json b/domains/ccnicebruh.json new file mode 100644 index 000000000..7e39ad87a --- /dev/null +++ b/domains/ccnicebruh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CcNicebruh", + "email": "tangkeehee2002@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/ccortina.json b/domains/ccortina.json new file mode 100644 index 000000000..2146c0b9b --- /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 d074b16e4..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..3c40f5f81 --- /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.aayush.json b/domains/cdn.aayush.json index 6dc28a351..fc5d38d00 100644 --- a/domains/cdn.aayush.json +++ b/domains/cdn.aayush.json @@ -1,11 +1,11 @@ { - "description": "CDN for Aayu5h", - "repo": "https://github.com/OpAayush/cdn", - "owner": { - "username": "OpAayush", - "email": "aayush.agrawalm@gmail.com" - }, - "record": { - "CNAME": "opaayush.github.io" - } + "description": "CDN for Aayu5h", + "repo": "https://github.com/OpAayush/cdn", + "owner": { + "username": "OpAayush", + "email": "aayush.agrawalm@gmail.com" + }, + "record": { + "CNAME": "opaayush.github.io" + } } diff --git a/domains/cdn.arman.json b/domains/cdn.arman.json deleted file mode 100644 index f40f0de31..000000000 --- a/domains/cdn.arman.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Arman's content delivery network", - "owner": { - "username": "ItzArman09", - "email": "contact@mail.arman.is-a.dev" - }, - "record": { - "CNAME": "23f4d8ed-6b28-4e13-a9e9-bd913bbb2040.id.repl.co" - } -} 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.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.nziie.json b/domains/cdn.nziie.json index c8f3a22bc..a4fc38514 100644 --- a/domains/cdn.nziie.json +++ b/domains/cdn.nziie.json @@ -1,13 +1,11 @@ { - "description": "Nziie's cdn images", - "repo": "https://github.com/Nzii3/website", - "owner": { - "username": "Nzii3", - "email": "exeyst@gmail.com" - }, - "record": { - "A": [ - "104.196.232.237" - ] - } + "description": "Nziie's cdn images", + "repo": "https://github.com/Nzii3/website", + "owner": { + "username": "Nzii3", + "email": "exeyst@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } } diff --git a/domains/cdn.semant.json b/domains/cdn.semant.json index e1e74c232..5e4e750be 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" : "SemantCodes", - "email": "contact@semant.is-a.dev" - }, - "record": { - "CNAME": "89b424b5-8e2d-4678-93a9-b793cdf6fceb.id.repl.co" - } + "description": "My static database", + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev" + }, + "record": { + "CNAME": "web-0wfb.onrender.com" + } } diff --git a/domains/cdn.yfa.json b/domains/cdn.yfa.json new file mode 100644 index 000000000..65d3d6e3f --- /dev/null +++ b/domains/cdn.yfa.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "CNAME": "cdn-a12.pages.dev" + } +} 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/celestial.json b/domains/celestial.json new file mode 100644 index 000000000..e3a354207 --- /dev/null +++ b/domains/celestial.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Luongzz", + "email": "buivanluong0204@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/censor.json b/domains/censor.json index 5fa90ee8e..a453bbdb3 100644 --- a/domains/censor.json +++ b/domains/censor.json @@ -1,13 +1,13 @@ { - "description": "My personal Website", - "repo": "https://github.com/cens6r/cens6r.github.io", - "owner": { - "username": "censor", - "email": "cens6r.dev@gmail.com", - "discord": "cens6r#0001", - "note": "It is faster to contact me on Discord." - }, - "record": { - "CNAME": "cens6r.github.io" - } + "description": "My personal Website", + "repo": "https://github.com/cens6r/cens6r.github.io", + "owner": { + "username": "censor", + "email": "cens6r.dev@gmail.com", + "discord": "cens6r#0001", + "note": "It is faster to contact me on Discord." + }, + "record": { + "CNAME": "cens6r.github.io" + } } diff --git a/domains/ceon.json b/domains/ceon.json index c700b6212..334e401d6 100644 --- a/domains/ceon.json +++ b/domains/ceon.json @@ -1,11 +1,11 @@ { - "description": "Hey, I am Ceon!", - "repo": "https://github.com/internetmagduru", - "owner": { - "username": "internetmagduru", - "email": "ceon@ceon.tech" - }, -"record": { - "URL": "https://ceon.tech" - } + "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 new file mode 100644 index 000000000..24d1ae248 --- /dev/null +++ b/domains/certurix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Certurix", + "email": "certurix@outlook.fr" + }, + "record": { + "CNAME": "certurix.github.io" + } +} diff --git a/domains/cetus.json b/domains/cetus.json new file mode 100644 index 000000000..ac004992d --- /dev/null +++ b/domains/cetus.json @@ -0,0 +1,12 @@ +{ + "description": "Cetus's Portfolio", + "repo": "https://github.com/dev-cetus", + "owner": { + "username": "Cetus", + "email": "dev-cetus@proton.me", + "twitter": "dev_cetus" + }, + "record": { + "CNAME": "cetus-is-a-dev.pages.dev" + } +} diff --git a/domains/cf.json b/domains/cf.json new file mode 100644 index 000000000..ccf0968f1 --- /dev/null +++ b/domains/cf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bb4btjsj", + "email": "saragibb7@gmail.com" + }, + "record": { + "CNAME": "akile.autoip.x24hr.com" + } +} diff --git a/domains/cfp.json b/domains/cfp.json index b4947c1a0..f01b3757d 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": "cfp.gotdns.ch" + } +} diff --git a/domains/cgprograms.json b/domains/cgprograms.json index b4167e8fd..252362340 100644 --- a/domains/cgprograms.json +++ b/domains/cgprograms.json @@ -1,11 +1,11 @@ { - "description": "CompuGenius Programs creates programs and games to better the computer world.", - "repo": "https://github.com/CompuGenius/cgprograms", - "owner": { - "username": "compugenius", - "email": "github@cgprograms.com" - }, - "record": { - "URL": "https://cgprograms.com" - } + "description": "CompuGenius Programs creates programs and games to better the computer world.", + "repo": "https://github.com/CompuGenius/cgprograms", + "owner": { + "username": "compugenius", + "email": "github@cgprograms.com" + }, + "record": { + "URL": "https://cgprograms.com" + } } diff --git a/domains/cha0tic.json b/domains/cha0tic.json new file mode 100644 index 000000000..2ffd954f0 --- /dev/null +++ b/domains/cha0tic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cha0ticcoder", + "email": "chaoticplayern1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/chaaya.json b/domains/chaaya.json new file mode 100644 index 000000000..6f9c18be2 --- /dev/null +++ b/domains/chaaya.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Peter-0097", + "email": "chaayagames@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/chaey.json b/domains/chaey.json new file mode 100644 index 000000000..df35b7962 --- /dev/null +++ b/domains/chaey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qing762", + "email": "threatedblade@outlook.com" + }, + "record": { + "CNAME": "qing-website.onrender.com" + } +} \ No newline at end of file diff --git a/domains/chaman.json b/domains/chaman.json new file mode 100644 index 000000000..5ee5fb288 --- /dev/null +++ b/domains/chaman.json @@ -0,0 +1,9 @@ +{ + "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 4124c9dd4..8c0ba425a 100644 --- a/domains/chandra.json +++ b/domains/chandra.json @@ -1,12 +1,9 @@ { - "description": "An Data Analyst Portfolio", - "repo": "https://github.com/sekharmalla/portfolio/", - "owner": { - "username": "sekharmalla", - "email": "chandra.malla@msftcommunity.com", - "twitter": "ChandraSMalla" - }, - "record": { - "CNAME": "sekharmalla.github.io" - } + "owner": { + "username": "sekharmalla", + "email": "sekharmalla.vfx@gmail.com" + }, + "record": { + "CNAME": "sekharmalla.github.io" + } } diff --git a/domains/chandrabose.json b/domains/chandrabose.json new file mode 100644 index 000000000..f5ee8d388 --- /dev/null +++ b/domains/chandrabose.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "chandrabosep", + "email": "chandrabosep3112@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/chandrakant.json b/domains/chandrakant.json index 8bd3bde27..682e6fd3e 100644 --- a/domains/chandrakant.json +++ b/domains/chandrakant.json @@ -1,10 +1,10 @@ { - "description": "Chandrakant's Work", - "owner": { - "username": "chandrakaant", - "email": "chandrakantpatel23@gmail.com" - }, - "record": { - "CNAME": "chandrakaant.github.io" - } + "description": "Chandrakant's Work", + "owner": { + "username": "chandrakaant", + "email": "chandrakantpatel23@gmail.com" + }, + "record": { + "CNAME": "chandrakaant.github.io" + } } diff --git a/domains/chang.json b/domains/chang.json index 446500884..19ed423f6 100644 --- a/domains/chang.json +++ b/domains/chang.json @@ -9,4 +9,4 @@ "record": { "CNAME": "bobbyliu117.github.io" } -} \ No newline at end of file +} diff --git a/domains/changliu.json b/domains/changliu.json index 2114b6e95..05999e064 100644 --- a/domains/changliu.json +++ b/domains/changliu.json @@ -1,12 +1,12 @@ { - "description": "Chang Liu's Personal Website", - "repo": "https://github.com/changbobbyliu/changbobbyliu.github.io", - "owner": { - "username": "changbobbyliu", - "email": "changbobbyliu@gmail.com", - "twitter": "changliuisadev" - }, - "record": { - "CNAME": "changbobbyliu.github.io" - } + "description": "Chang Liu's Personal Website", + "repo": "https://github.com/changbobbyliu/changbobbyliu.github.io", + "owner": { + "username": "changbobbyliu", + "email": "changbobbyliu@gmail.com", + "twitter": "changliuisadev" + }, + "record": { + "CNAME": "changbobbyliu.github.io" + } } diff --git a/domains/chankit.json b/domains/chankit.json new file mode 100644 index 000000000..0eaec16e5 --- /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 new file mode 100644 index 000000000..770153872 --- /dev/null +++ b/domains/chaotic.json @@ -0,0 +1,10 @@ +{ + "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/charalampos.json b/domains/charalampos.json index b7ff755dc..d00beca29 100644 --- a/domains/charalampos.json +++ b/domains/charalampos.json @@ -1,11 +1,11 @@ { - "description": "Redirection domain for my personal website", - "repo": "https://github.com/cfanoulis/fanoulis.dev", - "owner": { - "username": "cfanoulis", - "email": "domains@fanoulis.dev" - }, - "record": { - "URL": "https://fanoulis.dev" - } + "description": "Redirection domain for my personal website", + "repo": "https://github.com/cfanoulis/fanoulis.dev", + "owner": { + "username": "cfanoulis", + "email": "domains@fanoulis.dev" + }, + "record": { + "URL": "https://fanoulis.dev" + } } diff --git a/domains/charcg.json b/domains/charcg.json index f49dbde7e..25983d84a 100644 --- a/domains/charcg.json +++ b/domains/charcg.json @@ -1,12 +1,12 @@ { - "description": "CharCG's Website", - "repo": "https://github.com/charcg/charcg.github.io", - "owner": { - "username": "CharCG", - "email": "charlescong91@gmail.com", - "twitter": "charlescong91" - }, - "record": { - "CNAME": "charcg.github.io" - } + "description": "CharCG's Website", + "repo": "https://github.com/charcg/charcg.github.io", + "owner": { + "username": "CharCG", + "email": "charlescong91@gmail.com", + "twitter": "charlescong91" + }, + "record": { + "CNAME": "charcg.github.io" + } } diff --git a/domains/charge.json b/domains/charge.json new file mode 100644 index 000000000..bcf1da85f --- /dev/null +++ b/domains/charge.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "windcharge", + "email": "wysockimichu@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/charlie.json b/domains/charlie.json index 64dd3b066..421ac71cd 100644 --- a/domains/charlie.json +++ b/domains/charlie.json @@ -1,11 +1,11 @@ { - "description": "Charlie is a Dev", - "repo": "https://github.com/cachrisman/cachrisman.github.io", - "owner": { - "username": "cachrisman", - "email": "charlie.chrisman@gmail.com" - }, - "record": { - "URL": "https://www.charliechrisman.com" - } + "description": "Charlie is a Dev", + "repo": "https://github.com/cachrisman/cachrisman.github.io", + "owner": { + "username": "cachrisman", + "email": "charlie.chrisman@gmail.com" + }, + "record": { + "URL": "https://www.charliechrisman.com" + } } diff --git a/domains/charlz.json b/domains/charlz.json index 9e1af4569..5b3fd74a7 100644 --- a/domains/charlz.json +++ b/domains/charlz.json @@ -1,10 +1,10 @@ { - "description": "Charlz's is-a.dev domain", - "owner": { - "username": "TofuBoy05", - "email": "charlzfelipe02@gmail.com" - }, - "record": { - "CNAME": "tofuboy05.github.io" - } + "description": "Charlz's is-a.dev domain", + "owner": { + "username": "TofuBoy05", + "email": "charlzfelipe02@gmail.com" + }, + "record": { + "CNAME": "tofuboy05.github.io" + } } 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/chasecraft.json b/domains/chasecraft.json new file mode 100644 index 000000000..0443ead1e --- /dev/null +++ b/domains/chasecraft.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "chasecraft88", + "email": "chase88gizmo@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/chat-with.sx9.json b/domains/chat-with.sx9.json index 9fc0ab82d..1510e8b6b 100644 --- a/domains/chat-with.sx9.json +++ b/domains/chat-with.sx9.json @@ -1,10 +1,9 @@ - { - "owner": { - "username": "SX-9", - "email": "satriakrach@gmail.com" - }, - "record": { - "CNAME": "5b57fe59-8f17-4bdf-9ece-d8dde3f9cab0.id.repl.co" - } - } - +{ + "owner": { + "username": "SX-9", + "email": "satriakrach@gmail.com" + }, + "record": { + "CNAME": "5b57fe59-8f17-4bdf-9ece-d8dde3f9cab0.id.repl.co" + } +} diff --git a/domains/chauhan-pradip.json b/domains/chauhan-pradip.json new file mode 100644 index 000000000..852c7b02a --- /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/checkmate-os.sx9.json b/domains/checkmate-os.sx9.json index 0efaa1984..1a7c9465d 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", - "twitter": "SX_Discord", - "discord": "SX-Spy-Agent#1377", - "email": "sx-91@outlook.com" - }, - "record": { - "CNAME": "sx-9.github.io" - } +{ + "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" + } } diff --git a/domains/cheeriomark1.json b/domains/cheeriomark1.json new file mode 100644 index 000000000..44a7d8932 --- /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/chef.json b/domains/chef.json index a106e812c..1c902cb03 100644 --- a/domains/chef.json +++ b/domains/chef.json @@ -1,11 +1,11 @@ { - "description": "Codechef SRM NCR Chapter", - "repo": "https://github.com/Codechef-SRM-NCR-Chapter/Codechef-SRM-NCR-Chapter.github.io.git", - "owner": { - "username": "Codechef-SRM-NCR-Chapter", - "email": "srmcodechefchapter@gmail.com" - }, - "record": { - "CNAME": "codechef-srm-ncr-chapter.github.io" - } + "description": "Codechef SRM NCR Chapter", + "repo": "https://github.com/Codechef-SRM-NCR-Chapter/Codechef-SRM-NCR-Chapter.github.io.git", + "owner": { + "username": "Codechef-SRM-NCR-Chapter", + "email": "srmcodechefchapter@gmail.com" + }, + "record": { + "CNAME": "codechef-srm-ncr-chapter.github.io" + } } diff --git a/domains/chenpeng.json b/domains/chenpeng.json index 9e533ff90..dc5669652 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", - "owner": { - "username": "chenpeng", - "email": "cp786156072@gmail.com", - "twitter": "chepy2019", - "discord": "Patrick Chen#9900" - }, - "record": { - "URL": "https://chpshy.github.io/" - } + "description": "Patrick Chen's develop site", + "repo": "https://github.com/PatrickChen928/patrickchen928.github.io", + "owner": { + "username": "PatrickChen928", + "email": "cp786156072@gmail.com" + }, + "record": { + "URL": "https://patrickchen928.github.io" + } } diff --git a/domains/chesko.json b/domains/chesko.json new file mode 100644 index 000000000..85ccde693 --- /dev/null +++ b/domains/chesko.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cheskoxd", + "email": "franchesko77lacayo@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/chethan.json b/domains/chethan.json new file mode 100644 index 000000000..75ee85d6e --- /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..9766ecb60 --- /dev/null +++ b/domains/chewieleaf.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "chewieleaf", + "email": "cchirrpy@outlook.com", + "discord": "898255050592366642" + }, + + "record": { + "TXT": "dh=440ef941b9b55391f86cf985e87ed861fc6e9512" + } + } + \ No newline at end of file diff --git a/domains/chino.json b/domains/chino.json new file mode 100644 index 000000000..3b3c078ac --- /dev/null +++ b/domains/chino.json @@ -0,0 +1,13 @@ +{ + "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/chintan-prajapati.json b/domains/chintan-prajapati.json new file mode 100644 index 000000000..d14ee4cf2 --- /dev/null +++ b/domains/chintan-prajapati.json @@ -0,0 +1,11 @@ +{ + "description": "Chintan Profile.", + "repo": "https://github.com/chintan-prajapati/chintan-prajapati.github.io", + "owner": { + "username": "chintan-prajapati", + "email": "" + }, + "record": { + "CNAME": "chintan-prajapati.github.io" + } +} diff --git a/domains/chip-1925.json b/domains/chip-1925.json index b382fe950..4d1d051ac 100644 --- a/domains/chip-1925.json +++ b/domains/chip-1925.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "The-Awesome-0038", - "email": "adityapundir275@gmail.com" - }, - "record": { - "URL": "https://theawesome.api.stdlib.com/discord-bot-dashboard@dev" - } + "owner": { + "username": "The-Awesome-0038", + "email": "adityapundir275@gmail.com" + }, + "record": { + "URL": "https://theawesome.api.stdlib.com/discord-bot-dashboard@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-adhvaryu.json b/domains/chirag-adhvaryu.json new file mode 100644 index 000000000..6ff3c9975 --- /dev/null +++ b/domains/chirag-adhvaryu.json @@ -0,0 +1,11 @@ +{ + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/Chirag-Adhvaryu/chirag-adhvaryu.github.io", + "owner": { + "username": "Chirag-Adhvaryu", + "email": "" + }, + "record": { + "CNAME": "chirag-adhvaryu.github.io" + } +} diff --git a/domains/chirag-parikh.json b/domains/chirag-parikh.json new file mode 100644 index 000000000..74431e4f3 --- /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..efbc7cd47 --- /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/chirathtimodh.json b/domains/chirathtimodh.json new file mode 100644 index 000000000..6e7e8f01c --- /dev/null +++ b/domains/chirathtimodh.json @@ -0,0 +1,9 @@ +{ + "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/chiutaalenga.json b/domains/chiutaalenga.json new file mode 100644 index 000000000..0a683c0c8 --- /dev/null +++ b/domains/chiutaalenga.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TakudzwaChiutaalenga", + "email": "takudzwachiutaalenga@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/chloe.json b/domains/chloe.json index 6070857fa..2cc65500a 100644 --- a/domains/chloe.json +++ b/domains/chloe.json @@ -1,12 +1,12 @@ { - "description": "Chloe's is-a-dev domain", - "repo": "https://github.com/chloeashlyn", - "owner": { - "username": "chloeashlyn", - "email": "", - "discord": "chloeashlyn#7272" - }, - "record": { - "URL": "https://chloeashlyn.vercel.app" - } + "description": "Chloe's is-a-dev domain", + "repo": "https://github.com/chloeashlyn", + "owner": { + "username": "chloeashlyn", + "email": "", + "discord": "chloeashlyn#7272" + }, + "record": { + "URL": "https://chloeashlyn.vercel.app" + } } diff --git a/domains/chris.json b/domains/chris.json index fcdfec6f8..6ef798a71 100644 --- a/domains/chris.json +++ b/domains/chris.json @@ -1,11 +1,11 @@ { - "description": "Chris' Site", - "repo": "https://github.com/Sp4nd3x/", - "owner": { - "username": "Sp4nd3x", - "email": "chrisisadev@gmail.com" - }, - "record": { - "CNAME": "sp4nd3x.github.io" - } + "description": "Chris' Site", + "repo": "https://github.com/Sp4nd3x", + "owner": { + "username": "Sp4nd3x", + "email": "chrisisadev@gmail.com" + }, + "record": { + "CNAME": "sp4nd3x.github.io" + } } diff --git a/domains/chris8889.json b/domains/chris8889.json index f4299369b..c13ea4291 100644 --- a/domains/chris8889.json +++ b/domains/chris8889.json @@ -1,11 +1,11 @@ { - "description": "testing", "owner": { - "username": "Chris8889", - "email": "chris88892@protonmail.com", - "Twitter": "@Chris8889" + "username": "Chris8889", + "email": "chris12089@protonmail.com" }, "record": { - "CNAME": "5d931f3a-d63d-4ccf-b14c-5b566fd0c5f0.id.repl.co" + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" } } diff --git a/domains/christian.json b/domains/christian.json new file mode 100644 index 000000000..b609db2e5 --- /dev/null +++ b/domains/christian.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DenDanskeMine", + "email": "christianhrose@outlook.dk" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/chriz.json b/domains/chriz.json new file mode 100644 index 000000000..b70df0172 --- /dev/null +++ b/domains/chriz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "orangecoding", + "email": "weakmap@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/chrystom.json b/domains/chrystom.json new file mode 100644 index 000000000..5fdbdded1 --- /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/chucha.json b/domains/chucha.json index 5857fb718..8c507af23 100644 --- a/domains/chucha.json +++ b/domains/chucha.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Sly-Little-Fox", - "email": "paranormal.studio123@gmail.com" - }, - "record": { - "CNAME": "sly-little-fox.github.io" - } + "owner": { + "username": "Sly-Little-Fox", + "email": "paranormal.studio123@gmail.com" + }, + "record": { + "CNAME": "sly-little-fox.github.io" + } } diff --git a/domains/chyves.json b/domains/chyves.json new file mode 100644 index 000000000..b28a77593 --- /dev/null +++ b/domains/chyves.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "notchyves", + "email": "chyvescontact@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ciaobot.json b/domains/ciaobot.json new file mode 100644 index 000000000..696fc63a1 --- /dev/null +++ b/domains/ciaobot.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "Ciao287", + "email": "", + "discord": "687333016921440317" + }, + "record": { + "A": [ + "84.46.245.191" + ], + "MX": [ + "mail.is-a.dev" + ], + "TXT": "v=spf1 include:mail.is-a.dev ~all" + } +} diff --git a/domains/cihatksm.json b/domains/cihatksm.json new file mode 100644 index 000000000..073417489 --- /dev/null +++ b/domains/cihatksm.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CihatKsm", + "email": "cihatksm@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/cindy.json b/domains/cindy.json index 62562d874..6fa1da298 100644 --- a/domains/cindy.json +++ b/domains/cindy.json @@ -2,11 +2,10 @@ "description": "portefolio website", "repo": "https://github.com/cindynatorella/cindynatorella.github.io", "owner": { - "username": "cindynatorella", - "email": "cindy.e.roullet@gmail.com" - + "username": "cindynatorella", + "email": "cindy.e.roullet@gmail.com" }, "record": { - "CNAME": "cindynatorella.github.io" + "CNAME": "cindynatorella.github.io" } - } \ No newline at end of file +} diff --git a/domains/cinnamonshrine.json b/domains/cinnamonshrine.json index e0d5d19ae..65f8fdeed 100644 --- a/domains/cinnamonshrine.json +++ b/domains/cinnamonshrine.json @@ -1,12 +1,12 @@ { - "description": "Main Pages", - "repo": "https://github.com/CinnamonShrine/CinnamonShrine.github.io", - "owner": { - "username": "CinnamonShrine", - "email": "marifbillah524@gmail.com", - "twitter": "CinnamonShrine" - }, - "record": { - "CNAME": "cinnamonshrine.github.io" - } + "description": "Main Pages", + "repo": "https://github.com/CinnamonShrine/CinnamonShrine.github.io", + "owner": { + "username": "CinnamonShrine", + "email": "marifbillah524@gmail.com", + "twitter": "CinnamonShrine" + }, + "record": { + "CNAME": "cinnamonshrine.github.io" + } } diff --git a/domains/circular.json b/domains/circular.json new file mode 100644 index 000000000..fdeaf3eaa --- /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/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/ck.json b/domains/ck.json index 814ca4948..33544155b 100644 --- a/domains/ck.json +++ b/domains/ck.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/plu5/plu5.github.io", - "owner": { - "username": "plu5", - "email": "ctre@users.sourceforge.net", - "twitter": "preminster" - }, - "record": { - "CNAME": "plu5.github.io" - } + "repo": "https://github.com/plu5/plu5.github.io", + "owner": { + "username": "plu5", + "email": "ctre@users.sourceforge.net", + "twitter": "preminster" + }, + "record": { + "CNAME": "plu5.github.io" + } } 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/clarex.json b/domains/clarex.json new file mode 100644 index 000000000..65313fade --- /dev/null +++ b/domains/clarex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "clarexdev", + "email": "erenclarex@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/classlink.json b/domains/classlink.json new file mode 100644 index 000000000..9a85bd8bc --- /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..994a2f470 --- /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 index f3a21a510..d6b5429e2 100644 --- a/domains/cli.json +++ b/domains/cli.json @@ -1,11 +1,10 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "null" - }, - "record": { - "CNAME": "andrewstech.github.io" - } +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + + "record": { + "URL": "https://npmjs.com/@is-a-dev/cli" } - \ No newline at end of file +} diff --git a/domains/clicpow.json b/domains/clicpow.json new file mode 100644 index 000000000..570d3436e --- /dev/null +++ b/domains/clicpow.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ClicpoW", + "email": "clicpowytb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 include:spf.improvmx.com ~all" + } +} diff --git a/domains/client.nziie.json b/domains/client.nziie.json new file mode 100644 index 000000000..ba5a5ea18 --- /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..3a74e0577 --- /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/cloneslist.aymo.json b/domains/cloneslist.aymo.json new file mode 100644 index 000000000..5db8bb2b2 --- /dev/null +++ b/domains/cloneslist.aymo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NotAymo", + "email": "ninecraftoff@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/closure.json b/domains/closure.json new file mode 100644 index 000000000..f023bc218 --- /dev/null +++ b/domains/closure.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ActivateClosur3", + "email": "activateclosureyt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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 index 0bacaa7a4..9055219f2 100644 --- a/domains/cloud9store.json +++ b/domains/cloud9store.json @@ -1,11 +1,11 @@ { - "description": "website", - "repo": "replit.com/@inmostgaming", - "owner": { - "username": "cloud9store", - "email": "sidneybuisnessandshop@gmail.com" - }, - "record": { - "CNAME": "fcfb75bd-9b46-4ba9-b588-ad5ce8ebd80f.repl.co" - } + "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/cloudy.json b/domains/cloudy.json index 1ef1c1033..a17f001e1 100644 --- a/domains/cloudy.json +++ b/domains/cloudy.json @@ -1,12 +1,12 @@ { - "description": "Cloudy's Site", - "repo": "https://github.com/cloudysleet/cloudysleet.github.io/", - "owner": { - "username": "Cloudysleet", - "email": "cloudzareonsky@gmail.com", - "twitter": "@cloudysleet" - }, - "record": { - "CNAME": "cloudysleet.github.io" - } + "description": "Cloudy's Site", + "repo": "https://github.com/cloudysleet/cloudysleet.github.io", + "owner": { + "username": "Cloudysleet", + "email": "cloudzareonsky@gmail.com", + "twitter": "cloudysleet" + }, + "record": { + "CNAME": "cloudysleet.github.io" + } } diff --git a/domains/cloudz.json b/domains/cloudz.json index 54f29cf17..02efb0fe3 100644 --- a/domains/cloudz.json +++ b/domains/cloudz.json @@ -1,11 +1,11 @@ { - "description": "Cloud'z Website", - "repo": "https://github.com/Cloudy408/cloudy408.github.io", - "owner": { - "username": "Cloudy408", - "email": "gamerscloud408@gmail.com" - }, - "record": { - "CNAME": "cloudy408.github.io" - } + "description": "Cloud'z Website", + "repo": "https://github.com/Cloudy408/cloudy408.github.io", + "owner": { + "username": "Cloudy408", + "email": "gamerscloud408@gmail.com" + }, + "record": { + "CNAME": "cloudy408.github.io" + } } diff --git a/domains/clp.json b/domains/clp.json new file mode 100644 index 000000000..f66c814c8 --- /dev/null +++ b/domains/clp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "chethaslp", + "email": "lchethas@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/clyde.json b/domains/clyde.json new file mode 100644 index 000000000..ef63e3704 --- /dev/null +++ b/domains/clyde.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "clydeofficial", + "email": "5675mustafa5675@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/cmd410.json b/domains/cmd410.json index b44a8845b..7ee848a7e 100644 --- a/domains/cmd410.json +++ b/domains/cmd410.json @@ -1,11 +1,11 @@ { - "description": "Crystal Melting Dot's site", - "repo": "https://github.com/cmd410/cmd410.github.io", - "owner": { - "username": "cmd410", - "email": "stresspassing@gmail.com" - }, - "record": { - "CNAME": "cmd410.github.io" - } + "description": "Crystal Melting Dot's site", + "repo": "https://github.com/cmd410/cmd410.github.io", + "owner": { + "username": "cmd410", + "email": "stresspassing@gmail.com" + }, + "record": { + "CNAME": "cmd410.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/coco.json b/domains/coco.json new file mode 100644 index 000000000..14d20b629 --- /dev/null +++ b/domains/coco.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "atharvaupadhyay", + "email": "atharva.upadhyay1099@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/code.creeper76.json b/domains/code.creeper76.json new file mode 100644 index 000000000..df1e79986 --- /dev/null +++ b/domains/code.creeper76.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Creeper76", + "email": "", + "discord": "777694273319469057" + }, + "record": { + "CNAME": "proxy.private.danbot.host" + } +} 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..c372c8070 --- /dev/null +++ b/domains/code.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/codefoster.json b/domains/codefoster.json index a21e921c2..1800ae075 100644 --- a/domains/codefoster.json +++ b/domains/codefoster.json @@ -1,11 +1,11 @@ { - "description": "The main for codefoster - a Software Engineer at Microsoft.", - "repo": "https://github.com/codefoster", - "owner": { - "username": "codefoster", - "email": "jeremy.foster@live.com" - }, - "record": { - "URL": "http://codefoster.com" - } + "description": "The main for codefoster - a Software Engineer at Microsoft.", + "repo": "https://github.com/codefoster", + "owner": { + "username": "codefoster", + "email": "jeremy.foster@live.com" + }, + "record": { + "URL": "http://codefoster.com" + } } 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/codershayan.json b/domains/codershayan.json new file mode 100644 index 000000000..918458d0c --- /dev/null +++ b/domains/codershayan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lightshayan", + "email": "Shayan.y.malik@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/codesz.json b/domains/codesz.json new file mode 100644 index 000000000..46eb03696 --- /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/codethoma.json b/domains/codethoma.json index fd7e1ae82..762946040 100644 --- a/domains/codethoma.json +++ b/domains/codethoma.json @@ -1,11 +1,11 @@ { - "description": "The ThunderDome", - "repo": "https://github.com/codethoma/", - "owner": { - "username": "codethoma", - "email": "mrthundergod@gmail.com" - }, - "record": { - "CNAME": "codethoma.github.io" - } + "description": "The ThunderDome", + "repo": "https://github.com/codethoma", + "owner": { + "username": "codethoma", + "email": "mrthundergod@gmail.com" + }, + "record": { + "CNAME": "codethoma.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/codingbobby.json b/domains/codingbobby.json new file mode 100644 index 000000000..24e71a812 --- /dev/null +++ b/domains/codingbobby.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CodingBobby", + "email": "codingbobby+github@posteo.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/codingkitten.json b/domains/codingkitten.json new file mode 100644 index 000000000..72991d5ef --- /dev/null +++ b/domains/codingkitten.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CodingKiten", + "email": "124260@chrlyceumdelft.nl" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/codwizer.json b/domains/codwizer.json new file mode 100644 index 000000000..362daf8e1 --- /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/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/cole.json b/domains/cole.json index f5cc0f02c..e554fa355 100644 --- a/domains/cole.json +++ b/domains/cole.json @@ -1,11 +1,11 @@ { - "description": "Link to colewilson.xyz", - "repo": "https://github.com/cole-wilson/colewilson.xyz", - "owner": { - "username": "cole-wilson", - "email": "support@colewilson.xyz" - }, - "record": { - "URL": "https://colewilson.xyz" - } + "description": "Link to colewilson.xyz", + "repo": "https://github.com/cole-wilson/colewilson.xyz", + "owner": { + "username": "cole-wilson", + "email": "support@colewilson.xyz" + }, + "record": { + "URL": "https://colewilson.xyz" + } } diff --git a/domains/colin.json b/domains/colin.json new file mode 100644 index 000000000..05d64bd3a --- /dev/null +++ b/domains/colin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ColinKarlsson", + "email": "karlssoncolin628@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/college-front.json b/domains/college-front.json new file mode 100644 index 000000000..2dfc9c789 --- /dev/null +++ b/domains/college-front.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amir-mohammad-HP", + "email": "hamidipour97@gmail.com" + }, + "record": { + "CNAME": "front.collegesaz.ir" + } +} diff --git a/domains/collin.json b/domains/collin.json new file mode 100644 index 000000000..e105f31b7 --- /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..3456bf2b1 --- /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..324dfe7e2 --- /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/community2.syntaxloopers.json b/domains/community2.syntaxloopers.json new file mode 100644 index 000000000..324dfe7e2 --- /dev/null +++ b/domains/community2.syntaxloopers.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/computer.guy.json b/domains/computer.guy.json new file mode 100644 index 000000000..0b9799197 --- /dev/null +++ b/domains/computer.guy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ocean-OS", + "email": "andrewhnolt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/computerguy.json b/domains/computerguy.json new file mode 100644 index 000000000..0b9799197 --- /dev/null +++ b/domains/computerguy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ocean-OS", + "email": "andrewhnolt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/connor.json b/domains/connor.json index 2fb2b310e..eac218faa 100644 --- a/domains/connor.json +++ b/domains/connor.json @@ -1,11 +1,11 @@ { - "description": "Personal portfolio.", - "repo": "https://github.com/ConnorDoesDev/connordoesdev.github.io", - "owner": { - "username": "ConnorDoesDev", - "email": "connor@cstudios.gay" - }, - "record": { - "CNAME": "connordoesdev.github.io" - } + "description": "Personal portfolio.", + "repo": "https://github.com/ConnorDoesDev/connordoesdev.github.io", + "owner": { + "username": "ConnorDoesDev", + "email": "connor@cstudios.gay" + }, + "record": { + "CNAME": "connordoesdev.github.io" + } } diff --git a/domains/conorsheehan1.json b/domains/conorsheehan1.json index 531453482..1559af875 100644 --- a/domains/conorsheehan1.json +++ b/domains/conorsheehan1.json @@ -1,11 +1,11 @@ { - "description": "ConorSheehan1's personal website and blog", - "repo": "https://github.com/ConorSheehan1/ConorSheehan1.github.io", - "owner": { - "username": "ConorSheehan1", - "email": "conor.sheehan.dev@gmail.com" - }, - "record": { - "CNAME": "conorsheehan1.github.io" - } + "description": "ConorSheehan1's personal website and blog", + "repo": "https://github.com/ConorSheehan1/ConorSheehan1.github.io", + "owner": { + "username": "ConorSheehan1", + "email": "conor.sheehan.dev@gmail.com" + }, + "record": { + "CNAME": "conorsheehan1.github.io" + } } diff --git a/domains/constvar.json b/domains/constvar.json new file mode 100644 index 000000000..e4d7af640 --- /dev/null +++ b/domains/constvar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "IfVar", + "email": "LZT7@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/contact.foxsophia.json b/domains/contact.foxsophia.json new file mode 100644 index 000000000..dbc06f980 --- /dev/null +++ b/domains/contact.foxsophia.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "foxsophia", + "email": "cchirrpy@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/contact.trung.json b/domains/contact.trung.json new file mode 100644 index 000000000..c4e2100b6 --- /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/contentbot.json b/domains/contentbot.json new file mode 100644 index 000000000..8abfa1dd0 --- /dev/null +++ b/domains/contentbot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Fqcxn", + "email": "", + "twitter": "FqcxnLmao", + "discord": "hong.kong" + }, + "record": { + "CNAME": "fqcxn.com" + } +} diff --git a/domains/convertlink.json b/domains/convertlink.json new file mode 100644 index 000000000..e3a354207 --- /dev/null +++ b/domains/convertlink.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Luongzz", + "email": "buivanluong0204@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/coolcodersj.json b/domains/coolcodersj.json index 0d57a28f7..7d5979fcc 100644 --- a/domains/coolcodersj.json +++ b/domains/coolcodersj.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "CoolCoderSJ", - "email": "CoolCoderSJ@gmail.com" - }, - "description": "Portfolio", - "record": { - "CNAME": "coolcodersj.github.io" - } + "owner": { + "username": "CoolCoderSJ", + "email": "CoolCoderSJ@gmail.com" + }, + "description": "Portfolio", + "record": { + "CNAME": "coolcodersj.github.io" + } } 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/copysland.json b/domains/copysland.json new file mode 100644 index 000000000..f776f83f2 --- /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..5f4f24f80 --- /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..bbc7fc6ce 100644 --- a/domains/corentin-sotoca.json +++ b/domains/corentin-sotoca.json @@ -5,9 +5,6 @@ "email": "corentin.sotoca@gmail.com" }, "record": { - "A": [ - "62.171.174.120" - ] - } - } - \ No newline at end of file + "A": ["62.171.174.120"] + } +} 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/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 306d6cfe8..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/cozymy.json b/domains/cozymy.json index 9d227224a..6373876d3 100644 --- a/domains/cozymy.json +++ b/domains/cozymy.json @@ -1,12 +1,12 @@ { - "description": "A personal portfolio site for all my projects.", - "repo": "https://github.com/cozymy/cozymy.github.io", - "owner": { - "username": "cozymy", - "email": "kunalkundrra@gmail.com", - "twitter": "kunalkundrra" - }, - "record": { - "CNAME": "cozymy.github.io" - } + "description": "A personal portfolio site for all my projects.", + "repo": "https://github.com/cozymy/cozymy.github.io", + "owner": { + "username": "cozymy", + "email": "kunalkundrra@gmail.com", + "twitter": "kunalkundrra" + }, + "record": { + "CNAME": "cozymy.github.io" + } } diff --git a/domains/cplusplus.json b/domains/cplusplus.json new file mode 100644 index 000000000..890cbc6fb --- /dev/null +++ b/domains/cplusplus.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "calicocat356", + "email": "matthew.e.organ@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/cr.json b/domains/cr.json index 7eb025b69..1182a52ae 100644 --- a/domains/cr.json +++ b/domains/cr.json @@ -1,11 +1,11 @@ { - "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" - } + "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/cr0nus.json b/domains/cr0nus.json index b895a86bc..c2b4381dd 100644 --- a/domains/cr0nus.json +++ b/domains/cr0nus.json @@ -1,12 +1,12 @@ { - "description": "A personal portfolio site for all my projects.", - "repo": "https://github.com/umgbhalla", - "owner": { - "username": "umgbhalla", - "email": "umg.bhalla88@gmail.com", - "twitter": "umgbhalla" - }, - "record": { - "CNAME": "umgbhalla.github.io" - } + "description": "A personal portfolio site for all my projects.", + "repo": "https://github.com/umgbhalla", + "owner": { + "username": "umgbhalla", + "email": "umg.bhalla88@gmail.com", + "twitter": "umgbhalla" + }, + "record": { + "CNAME": "umgbhalla.github.io" + } } diff --git a/domains/craftyy.json b/domains/craftyy.json new file mode 100644 index 000000000..aef118697 --- /dev/null +++ b/domains/craftyy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LosCraftos", + "email": "tommomo3@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/crazyg.json b/domains/crazyg.json new file mode 100644 index 000000000..ec67d741d --- /dev/null +++ b/domains/crazyg.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aCrazyg1", + "email": "huxiaodou768@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/crazymax.json b/domains/crazymax.json new file mode 100644 index 000000000..45d6d04ea --- /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/creature.json b/domains/creature.json index 3d4f5fdc2..f3d39e0c2 100644 --- a/domains/creature.json +++ b/domains/creature.json @@ -9,4 +9,4 @@ "record": { "CNAME": "pranay5463.github.io" } -} +} diff --git a/domains/creeper76.json b/domains/creeper76.json new file mode 100644 index 000000000..d11e76cc6 --- /dev/null +++ b/domains/creeper76.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Creeper76", + "email": "", + "discord": "777694273319469057" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/creepso.json b/domains/creepso.json new file mode 100644 index 000000000..5a399612c --- /dev/null +++ b/domains/creepso.json @@ -0,0 +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" + } +} diff --git a/domains/creepycraft.json b/domains/creepycraft.json new file mode 100644 index 000000000..20a8992cc --- /dev/null +++ b/domains/creepycraft.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Nonamendev", + "email": "ndevnoname@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/creve.json b/domains/creve.json index 9b06405fc..6155263d3 100644 --- a/domains/creve.json +++ b/domains/creve.json @@ -1,11 +1,11 @@ { - "description": "My site ig", - "owner": { - "username": "Creveoolus", - "email": "", - "discord": "Creve#0727" - }, - "record": { - "CNAME": "shielded-turnip-jvcv0g342r3gnbht5wr9tpio.herokudns.com" - } + "description": "My site ig", + "owner": { + "username": "Creveoolus", + "email": "", + "discord": "Creve#0727" + }, + "record": { + "CNAME": "shielded-turnip-jvcv0g342r3gnbht5wr9tpio.herokudns.com" + } } diff --git a/domains/crispy.json b/domains/crispy.json index e18a8c78c..ce8dd0ec8 100644 --- a/domains/crispy.json +++ b/domains/crispy.json @@ -1,11 +1,11 @@ { - "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" - } + "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..ac8b77d9e --- /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/crllect.json b/domains/crllect.json new file mode 100644 index 000000000..a2a94a22b --- /dev/null +++ b/domains/crllect.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "crllect", + "email": "crllect@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/crypt.json b/domains/crypt.json new file mode 100644 index 000000000..6497946bc --- /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 b86f1a32a..38528e502 100644 --- a/domains/crystal.json +++ b/domains/crystal.json @@ -3,10 +3,10 @@ "repo": "https://github.com/crystalbajgai/crystalbajgai.github.io", "owner": { "username": "crystalbajgai", - "email": "crystalnplol@gmail.com", - "twitter": "@CrystalNPYT" + "email": "crystalbajgai@gmail.com", + "twitter": "Crissy0__0" }, "record": { "CNAME": "crystalbajgai.github.io" } -} +} diff --git a/domains/cs.json b/domains/cs.json new file mode 100644 index 000000000..0f765b1d7 --- /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/csprance.json b/domains/csprance.json new file mode 100644 index 000000000..e194eefa1 --- /dev/null +++ b/domains/csprance.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "csprance", + "email": "chrissprance@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/ctk.json b/domains/ctk.json new file mode 100644 index 000000000..073417489 --- /dev/null +++ b/domains/ctk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CihatKsm", + "email": "cihatksm@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/cucusise.json b/domains/cucusise.json index 9d55e8185..0fc9b83ae 100644 --- a/domains/cucusise.json +++ b/domains/cucusise.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "Cucusise", "email": "cucusise@gmail.com" - }, - "record": { + }, + "record": { "CNAME": "cucusise.github.io" - } } - \ No newline at end of file +} diff --git a/domains/curse.json b/domains/curse.json new file mode 100644 index 000000000..834232292 --- /dev/null +++ b/domains/curse.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cursefroge", + "email": "ike.welborn@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/cutedog5695.json b/domains/cutedog5695.json new file mode 100644 index 000000000..eba498c23 --- /dev/null +++ b/domains/cutedog5695.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "cutedog5695@gmail.com", + "discord": "cutedog5695", + "twitter": "cutedog5695" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/cutie.json b/domains/cutie.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/cutie.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/cutt37.json b/domains/cutt37.json new file mode 100644 index 000000000..80a7e44fc --- /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/cuzimbisonratte.json b/domains/cuzimbisonratte.json index 618cadb03..72b705dc1 100644 --- a/domains/cuzimbisonratte.json +++ b/domains/cuzimbisonratte.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "CuzImBisonratte", "email": "cuzimbisonratte@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "cuzimbisonratte.github.io" - } } - +} diff --git a/domains/cv.tomgxz.json b/domains/cv.tomgxz.json new file mode 100644 index 000000000..16af9991a --- /dev/null +++ b/domains/cv.tomgxz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tomgxz", + "email": "tomgxz138@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/cyan.json b/domains/cyan.json index ecc119879..104389320 100644 --- a/domains/cyan.json +++ b/domains/cyan.json @@ -1,11 +1,11 @@ { - "description": "Just a personal website", - "repo": "https://github.com/cyanraze/cyanraze", - "owner": { - "username": "cyanraze", - "email": "239@duck.com" - }, - "record": { - "CNAME": "cyanraze.github.io" - } + "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/cyanic76.json b/domains/cyanic76.json index 4582efbfe..28444735a 100644 --- a/domains/cyanic76.json +++ b/domains/cyanic76.json @@ -1,11 +1,11 @@ { - "description": "Cyanic's website (link to cyanic.me)", - "repo": "https://codeberg.org/Cyanic76/pages", - "owner": { - "username": "Cyanic76", - "email": "git@cyanic.me" - }, - "record": { - "URL": "https://cyanic.me" - } + "description": "Cyanic's website (link to cyanic.me)", + "repo": "https://codeberg.org/Cyanic76/pages", + "owner": { + "username": "Cyanic76", + "email": "git@cyanic.me" + }, + "record": { + "URL": "https://cyanic.me" + } } diff --git a/domains/cyanide.json b/domains/cyanide.json index 205e97255..5773df852 100644 --- a/domains/cyanide.json +++ b/domains/cyanide.json @@ -2,11 +2,11 @@ "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" + "username": "cyanide1x", + "email": "contact@cyanidedev.mn", + "twitter": "cyanide1x" }, "record": { - "CNAME": "cyanide1x.github.io" + "CNAME": "cyanide1x.github.io" } } diff --git a/domains/cycno.json b/domains/cycno.json index ff6543c4f..4c21bd8ce 100644 --- a/domains/cycno.json +++ b/domains/cycno.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "CYCNO", "email": "daniyalchunna2@gmail.com" - }, - "record": { + }, + "record": { "CNAME": "cycno.github.io" - } } - \ No newline at end of file +} 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..9daeb5bbb --- /dev/null +++ b/domains/d3c.json @@ -0,0 +1,10 @@ +{ + "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..0bce66a10 --- /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/d3vboi.json b/domains/d3vboi.json new file mode 100644 index 000000000..cc135df1a --- /dev/null +++ b/domains/d3vboi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "d3vboi", + "email": "d3vboi@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/d4rabi.json b/domains/d4rabi.json new file mode 100644 index 000000000..f86455c0f --- /dev/null +++ b/domains/d4rabi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "d4rabi", + "email": "fauzan.idalfithri@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/daanbreur.json b/domains/daanbreur.json index 8c57f7d93..a18588910 100644 --- a/domains/daanbreur.json +++ b/domains/daanbreur.json @@ -1,10 +1,10 @@ { - "description": "My blog with writeups :)", - "owner": { - "username": "daanbreur", - "email": "me@daanbreur.systems" - }, - "record": { - "URL": "https://blog.daanbreur.systems/" - } + "description": "My blog with writeups :)", + "owner": { + "username": "daanbreur", + "email": "me@daanbreur.systems" + }, + "record": { + "URL": "https://blog.daanbreur.systems" + } } diff --git a/domains/daanschenkel.json b/domains/daanschenkel.json index b8368a96e..33851d31e 100644 --- a/domains/daanschenkel.json +++ b/domains/daanschenkel.json @@ -1,12 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "daanschenkel", "email": "daan@daanschenkel.nl" - }, - - "record": { + }, + "record": { "URL": "https://daanschenkel.nl" - } } - \ No newline at end of file +} diff --git a/domains/daboltgod.json b/domains/daboltgod.json new file mode 100644 index 000000000..badf104c1 --- /dev/null +++ b/domains/daboltgod.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/ItzPhoenixYaKnow/website", + "owner": { + "username": "ItzPhoenixYaknow", + "email": "daboltgod22@outlook.com" + }, + "record": { + "CNAME": "itzphoenixyaknow.github.io" + } +} diff --git a/domains/dadcuy.json b/domains/dadcuy.json index 718722149..7ec63ecbc 100644 --- a/domains/dadcuy.json +++ b/domains/dadcuy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Dadcuy", - "email": "dadcuy@gmail.com" - }, - "record": { - "CNAME": "dadcuy.github.io" - } + "owner": { + "username": "Dadcuy", + "email": "dadcuy@gmail.com" + }, + "record": { + "CNAME": "dadcuy.github.io" + } } 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/dag.json b/domains/dag.json new file mode 100644 index 000000000..c36cf2416 --- /dev/null +++ b/domains/dag.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Daglaroglou", + "email": "christos.daglaroglou@gmail.com" + }, + "record": { + "CNAME": "84d4959a-0b89-4158-b857-f2670a983f88.id.repl.co" + } +} diff --git a/domains/dailycat.json b/domains/dailycat.json new file mode 100644 index 000000000..e958fe686 --- /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/dailycats.json b/domains/dailycats.json new file mode 100644 index 000000000..0ff8cb152 --- /dev/null +++ b/domains/dailycats.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dainfloop.json b/domains/dainfloop.json index 0d83f0b1f..d79aa031a 100644 --- a/domains/dainfloop.json +++ b/domains/dainfloop.json @@ -1,14 +1,11 @@ { - "owner": { - "username": "DaInfLoop", - "email": "backupharoongames100@gmail.com" - }, - - "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "DaInfLoop", + "email": "backupharoongames100@gmail.com" + }, + + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/daku.json b/domains/daku.json new file mode 100644 index 000000000..02295d6f4 --- /dev/null +++ b/domains/daku.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "DakUOfficial", + "email": "dominiku718@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/dallonlahoda.json b/domains/dallonlahoda.json new file mode 100644 index 000000000..b8faf17fc --- /dev/null +++ b/domains/dallonlahoda.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "boomshakazulu", + "email": "dallonlahoda@hotmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/damned-support.json b/domains/damned-support.json new file mode 100644 index 000000000..d8e48b60d --- /dev/null +++ b/domains/damned-support.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "keshrlmfao", + "email": "kiwipointss555@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/damned.json b/domains/damned.json new file mode 100644 index 000000000..af720af97 --- /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/dan-habot.json b/domains/dan-habot.json index b69f8a9c7..ef72877d6 100644 --- a/domains/dan-habot.json +++ b/domains/dan-habot.json @@ -1,11 +1,11 @@ { - "description": "Fullstack web & mobile dev, quality assurance, automation, reverse engineering, and flexible", - "repo": "https://github.com/danhab99/danhab99.github.io", - "owner": { - "username": "danhab99", - "email": "dan.habot@gmail.com" - }, - "record": { - "CNAME": "danhab99.github.io" - } + "description": "Fullstack web & mobile dev, quality assurance, automation, reverse engineering, and flexible", + "repo": "https://github.com/danhab99/danhab99.github.io", + "owner": { + "username": "danhab99", + "email": "dan.habot@gmail.com" + }, + "record": { + "CNAME": "danhab99.github.io" + } } diff --git a/domains/dan.json b/domains/dan.json index 8f7023050..35b648db5 100644 --- a/domains/dan.json +++ b/domains/dan.json @@ -1,11 +1,11 @@ { - "description": "Dan's Blog and Portfolio", - "repo": "https://github.com/DanField12/DanField12.github.io.git", - "owner": { - "username": "DanField12", - "email": "dan.field643@gmail.com" - }, - "record": { - "CNAME": "DanField12.github.io" - } + "description": "Dan's Blog and Portfolio", + "repo": "https://github.com/DanField12/DanField12.github.io.git", + "owner": { + "username": "DanField12", + "email": "dan.field643@gmail.com" + }, + "record": { + "CNAME": "DanField12.github.io" + } } diff --git a/domains/dangdat.json b/domains/dangdat.json index 625501406..5cc2271c0 100644 --- a/domains/dangdat.json +++ b/domains/dangdat.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal portfolio", - "repo": "https://github.com/aurorakid/taotap", - "owner": { - "username": "aurorakid", - "email": "nguyendangdat412@gmail.com" - }, - "record": { - "CNAME": "aurorakid.github.io" - } + "description": "This website is a link to my personal portfolio", + "repo": "https://github.com/aurorakid/taotap", + "owner": { + "username": "aurorakid", + "email": "nguyendangdat412@gmail.com" + }, + "record": { + "CNAME": "aurorakid.github.io" + } } diff --git a/domains/dangxuanthai.json b/domains/dangxuanthai.json new file mode 100644 index 000000000..01b9a4508 --- /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/dani.json b/domains/dani.json index fa4d9f757..5eac250e0 100644 --- a/domains/dani.json +++ b/domains/dani.json @@ -1,12 +1,12 @@ { - "description": "Danidev's Website", - "repo": "https://github.com/Danidev819/danidev819.github.io", - "owner": { - "username": "Danidev819", - "email": "danidev82@gmail.com", - "twitter": "Danidev819" - }, - "record": { - "CNAME": "danidev819.github.io" - } + "description": "Danidev's Website", + "repo": "https://github.com/Danidev819/danidev819.github.io", + "owner": { + "username": "Danidev819", + "email": "danidev82@gmail.com", + "twitter": "Danidev819" + }, + "record": { + "CNAME": "danidev819.github.io" + } } diff --git a/domains/danialajamil.json b/domains/danialajamil.json new file mode 100644 index 000000000..826ad44fa --- /dev/null +++ b/domains/danialajamil.json @@ -0,0 +1,11 @@ +{ + "description": "danialajamil.is-a.dev", + "repo": "https://github.com/KawakazeRin/my-portfolio-site", + "owner": { + "username": "KawakazeRin", + "email": "satyamverma46@outlook.com" + }, + "record": { + "CNAME": "kawakazerin.github.io" + } +} diff --git a/domains/daniel-shuy.json b/domains/daniel-shuy.json deleted file mode 100644 index 49e8ee4bb..000000000 --- a/domains/daniel-shuy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "daniel-shuy", - "email": "daniel_shuy@hotmail.com" - }, - "record": { - "A": [ - "76.76.21.21" - ] - } -} diff --git a/domains/daniel.json b/domains/daniel.json index b3d4893fe..8087b4438 100644 --- a/domains/daniel.json +++ b/domains/daniel.json @@ -1,15 +1,15 @@ { - "description": "Hello! My name is Daniel, I am a developer that has been programming since 2018. This website shows some of the things I have created.", - "owner": { - "username": "hackermondev", - "email": "", - "twitter": "hackermondev" - }, - "record": { - "A": ["34.120.194.28"], + "description": "Hello! My name is Daniel, I am a developer that has been programming since 2018. This website shows some of the things I have created.", + "owner": { + "username": "hackermondev", + "email": "", + "twitter": "hackermondev" + }, + "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" - } + "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/daniel4-scratch.json b/domains/daniel4-scratch.json index 2200a0a51..198cb3bbe 100644 --- a/domains/daniel4-scratch.json +++ b/domains/daniel4-scratch.json @@ -1,11 +1,11 @@ { - "description": "Daniel barton's website", - "repo": "https://github.com/daniel4-scratch/daniel4-scrcatch.github.io", - "owner": { - "username": "daniel4-scratch", - "email": "llama552621@gmail.com" - }, - "record": { - "CNAME": "daniel4-scratch.github.io" - } + "description": "Daniel barton's website", + "repo": "https://github.com/daniel4-scratch/daniel4-scrcatch.github.io", + "owner": { + "username": "daniel4-scratch", + "email": "llama552621@gmail.com" + }, + "record": { + "CNAME": "daniel4-scratch.github.io" + } } 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/danielliu.json b/domains/danielliu.json new file mode 100644 index 000000000..cbbf23310 --- /dev/null +++ b/domains/danielliu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DanL2015", + "email": "danielliu@berkeley.edu" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/danix.json b/domains/danix.json deleted file mode 100644 index 01b7767d8..000000000 --- a/domains/danix.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Danix421", - "email": "danixdev421@gmail.com" - }, - "record": { - "CNAME": "danix421.up.railway.app" - } -} diff --git a/domains/dannydandan.json b/domains/dannydandan.json index a3160cdee..33851d31e 100644 --- a/domains/dannydandan.json +++ b/domains/dannydandan.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "daanschenkel", "email": "daan@daanschenkel.nl" - }, - "record": { + }, + "record": { "URL": "https://daanschenkel.nl" - } } - +} diff --git a/domains/dano.json b/domains/dano.json index 5a8e0e933..c5193f22a 100644 --- a/domains/dano.json +++ b/domains/dano.json @@ -1,12 +1,12 @@ { - "description": "Dano's resume", - "repo": "https://github.com/dano-syrus/dano-syrus.github.io", - "owner": { - "username": "dano-syrus", - "email": "danosyrus@tuta.io", - "discord": "dano#6811" - }, - "record": { - "CNAME": "dano-syrus.github.io" - } + "description": "Dano's resume", + "repo": "https://github.com/dano-syrus/dano-syrus.github.io", + "owner": { + "username": "dano-syrus", + "email": "danosyrus@tuta.io", + "discord": "dano#6811" + }, + "record": { + "CNAME": "dano-syrus.github.io" + } } diff --git a/domains/danterus.json b/domains/danterus.json index 0e5d3dc8e..5da10c54b 100644 --- a/domains/danterus.json +++ b/domains/danterus.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "danterusdev", - "email": "danterusdev@gmail.com" - }, - "record": { - "CNAME": "danterusdev.github.io" - } + "owner": { + "username": "danterusdev", + "email": "danterusdev@gmail.com" + }, + "record": { + "CNAME": "danterusdev.github.io" + } } diff --git a/domains/dany.json b/domains/dany.json index e7f067d6f..2c43a23fa 100644 --- a/domains/dany.json +++ b/domains/dany.json @@ -1,11 +1,11 @@ { - "description": "A blog where I document code.", - "owner": { - "username": "DanyTPG", - "email": "", - "discord": "DanyTPG#5025" - }, - "record": { - "CNAME": "docs-cz1.pages.dev" - } + "description": "A blog where I document code.", + "owner": { + "username": "DanyTPG", + "email": "", + "discord": "DanyTPG#5025" + }, + "record": { + "CNAME": "docs-cz1.pages.dev" + } } diff --git a/domains/daria.json b/domains/daria.json index 83fa7e075..3929cc39c 100644 --- a/domains/daria.json +++ b/domains/daria.json @@ -1,11 +1,11 @@ { - "description": "Daria is a dev", - "repo": "https://github.com/dariatrainor/dariatrainor.github.io", - "owner": { - "username": "dariatrainor", - "email": "dariasu@gmail.com" - }, - "record": { - "CNAME": "dariatrainor.github.io" - } + "description": "Daria is a dev", + "repo": "https://github.com/dariatrainor/dariatrainor.github.io", + "owner": { + "username": "dariatrainor", + "email": "dariasu@gmail.com" + }, + "record": { + "CNAME": "dariatrainor.github.io" + } } diff --git a/domains/darian.json b/domains/darian.json new file mode 100644 index 000000000..221284cf7 --- /dev/null +++ b/domains/darian.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "justDarian", + "email": "Darian.mohaseb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/darji-ravi.json b/domains/darji-ravi.json new file mode 100644 index 000000000..dfba8f90d --- /dev/null +++ b/domains/darji-ravi.json @@ -0,0 +1,11 @@ +{ + "description": "Ravi Profile.", + "repo": "https://github.com/darji-ravi/darji-ravi.github.io", + "owner": { + "username": "darji-ravi", + "email": "" + }, + "record": { + "CNAME": "darji-ravi.github.io" + } +} diff --git a/domains/dark-pizza.json b/domains/dark-pizza.json new file mode 100644 index 000000000..2b9e44366 --- /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 new file mode 100644 index 000000000..8078d3770 --- /dev/null +++ b/domains/dark.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BruhDark", + "email": "darkpxint@gmail.com" + }, + "record": { + "CNAME": "website-93d6f.web.app" + } +} \ No newline at end of file diff --git a/domains/darkdarcool.json b/domains/darkdarcool.json new file mode 100644 index 000000000..62b407aee --- /dev/null +++ b/domains/darkdarcool.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "darkdarcool", + "email": "darkdarcool@gmail.com" + }, + "record": { + "URL": "https://darkdarcool.me" + } +} diff --git a/domains/darkdevil.json b/domains/darkdevil.json index 9faf4830a..811bff878 100644 --- a/domains/darkdevil.json +++ b/domains/darkdevil.json @@ -1,23 +1,14 @@ { - "description": "darkdevil.is-a.dev", - "repo": "https://github.com/LRxDarkDevil/Personal-web", - "owner": { - "username": "LRxDarkDevil", - "email": "tahaadnanawan@gmail.com", - "discord": "LRxDark Dare Devil#0001" - }, - "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" - ], + "description": "darkdevil.is-a.dev", + "repo": "https://github.com/LRxDarkDevil/Personal-web", + "owner": { + "username": "LRxDarkDevil", + "email": "tahaadnanawan@gmail.com", + "discord": "LRxDark Dare Devil#0001" + }, + "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/darkwaves.json b/domains/darkwaves.json new file mode 100644 index 000000000..991333b43 --- /dev/null +++ b/domains/darkwaves.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "darkwaves-ofc", + "email": "jgi.vimukthi@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/darrem.json b/domains/darrem.json new file mode 100644 index 000000000..53371c867 --- /dev/null +++ b/domains/darrem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DarremMolko", + "email": "justdarrem@gmail.com" + }, + "record": { + "CNAME": "darrem.alwaysdata.net" + } +} diff --git a/domains/darren.json b/domains/darren.json index 73824a0a7..68f61269b 100644 --- a/domains/darren.json +++ b/domains/darren.json @@ -1,11 +1,11 @@ { - "description": "I use arch btw", - "repo": "https://github.com/DarrenOfficial", - "owner": { - "username": "DarrenOfficial", - "email": "github@darrennathanael.com" - }, - "record": { - "URL": "https://darrennathanael.com" - } + "description": "I use arch btw", + "repo": "https://github.com/DarrenOfficial", + "owner": { + "username": "DarrenOfficial", + "email": "github@darrennathanael.com" + }, + "record": { + "URL": "https://darrennathanael.com" + } } 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/dartanman.json b/domains/dartanman.json index 241595624..cd968ad2d 100644 --- a/domains/dartanman.json +++ b/domains/dartanman.json @@ -1,11 +1,11 @@ { - "description": "My portfolio", - "repo": "https://github.com/Dartanman", - "owner": { - "username": "Dartanman", - "email": "dartanmanplaysminecraft@gmail.com" - }, - "record": { - "URL": "https://sites.google.com/view/dartanman-portfolio" - } + "description": "My portfolio", + "repo": "https://github.com/Dartanman", + "owner": { + "username": "Dartanman", + "email": "dartanmanplaysminecraft@gmail.com" + }, + "record": { + "URL": "https://sites.google.com/view/dartanman-portfolio" + } } diff --git a/domains/dasdadssad.json b/domains/dasdadssad.json new file mode 100644 index 000000000..eeef95964 --- /dev/null +++ b/domains/dasdadssad.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MadaraV2492", + "email": "luleon252@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dasdebanna.json b/domains/dasdebanna.json new file mode 100644 index 000000000..56b94e2b7 --- /dev/null +++ b/domains/dasdebanna.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dasdebanna", + "email": "dasdebanna8@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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.stefdp.json b/domains/dashboard.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/dashboard.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} 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..d34afb123 100644 --- a/domains/dasshark.json +++ b/domains/dasshark.json @@ -1,12 +1,11 @@ - - { - "owner": { +{ + "owner": { "username": "DasSharkk", - "email": "affenheld@gmx.de" - }, - - "record": { - "URL": "https://dasshark.me" - } + "email": "dassharkk@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" } - +} diff --git a/domains/dast.json b/domains/dast.json index 4cd566fed..0ad019696 100644 --- a/domains/dast.json +++ b/domains/dast.json @@ -1,11 +1,11 @@ { - "description": "My personal website for portfolio, projects and help!", - "repo": "https://github.com/danielsebesta", - "owner": { - "username": "danielsebesta", - "email": "dany.sebesta@seznam.cz" - }, - "record": { - "A": ["194.163.149.155"] - } + "description": "My personal website for portfolio, projects and help!", + "repo": "https://github.com/danielsebesta", + "owner": { + "username": "danielsebesta", + "email": "dany.sebesta@seznam.cz" + }, + "record": { + "A": ["194.163.149.155"] + } } diff --git a/domains/data.json b/domains/data.json new file mode 100644 index 000000000..b704f1f2c --- /dev/null +++ b/domains/data.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@williamharrison.dev" + }, + + "record": { + "CNAME": "wdhdev.github.io" + } +} diff --git a/domains/datamind.json b/domains/datamind.json new file mode 100644 index 000000000..4e8d9c915 --- /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/datasets.json b/domains/datasets.json new file mode 100644 index 000000000..a8034091f --- /dev/null +++ b/domains/datasets.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pranavagrawal321", + "email": "pranavagrawal321@gmail.com" + }, + "record": { + "URL": "https://datasets-e2cm.onrender.com" + } +} diff --git a/domains/dave.json b/domains/dave.json new file mode 100644 index 000000000..34926836b --- /dev/null +++ b/domains/dave.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ceodavee", + "email": "ceodavee@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dave9123.json b/domains/dave9123.json index ed3d84ec9..827f9f6dd 100644 --- a/domains/dave9123.json +++ b/domains/dave9123.json @@ -1,10 +1,9 @@ { - "owner": { - "username": "dave9123", - "discord": "Dave9123#0757", - "email": "dave.turmawan@outlook.com" - }, - "record": { - "CNAME": "dave9123.netlify.app" - } + "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..4e9a07d67 --- /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/davidheredia.json b/domains/davidheredia.json new file mode 100644 index 000000000..470bd6929 --- /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 new file mode 100644 index 000000000..52225e6bb --- /dev/null +++ b/domains/davidpuerta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "david96182", + "email": "puertadavid96182@gmail.com" + }, + "record": { + "CNAME": "david96182.github.io" + } +} diff --git a/domains/davidxxd.json b/domains/davidxxd.json new file mode 100644 index 000000000..db12836a1 --- /dev/null +++ b/domains/davidxxd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zen-xP", + "email": "jorgedcrios@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/davin.json b/domains/davin.json new file mode 100644 index 000000000..63ee9e5ee --- /dev/null +++ b/domains/davin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rage65", + "email": "123thetechguy@gmail.com" + }, + "record": { + "CNAME": "deva65.duckdns.org" + } +} diff --git a/domains/davipatricio.json b/domains/davipatricio.json new file mode 100644 index 000000000..9e449f2e5 --- /dev/null +++ b/domains/davipatricio.json @@ -0,0 +1,11 @@ +{ + "description": "Davi Patricio's personal developer website", + "repo": "https://github.com/davipatricio/website", + "owner": { + "username": "davipatricio", + "email": "davipatricio@protonmail.com" + }, + "record": { + "URL": "https://davipatricio.vercel.app" + } +} 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..71a05945a --- /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/dax.json b/domains/dax.json new file mode 100644 index 000000000..173a7017d --- /dev/null +++ b/domains/dax.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dandepan303", + "email": "dandepan303@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/daxoron.json b/domains/daxoron.json index 908e699c0..0fe670a88 100644 --- a/domains/daxoron.json +++ b/domains/daxoron.json @@ -1,11 +1,11 @@ { - "description": "daxoron' personal developer website", - "repo": "https://github.com/daxoron/daxoron.github.io", - "owner": { - "username": "daxoron", - "email": "daxoron.dev@gmail.com" - }, - "record": { - "CNAME": "daxoron.github.io" - } + "description": "daxoron' personal developer website", + "repo": "https://github.com/daxoron/daxoron.github.io", + "owner": { + "username": "daxoron", + "email": "daxoron.dev@gmail.com" + }, + "record": { + "CNAME": "daxoron.github.io" + } } diff --git a/domains/dayowebevents.json b/domains/dayowebevents.json new file mode 100644 index 000000000..d4142911a --- /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.jakub.json b/domains/dc.jakub.json new file mode 100644 index 000000000..6333ae5c2 --- /dev/null +++ b/domains/dc.jakub.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jakubk15", + "email": "jakubk15@protonmail.com" + }, + "record": { + "URL": "https://discord.gg/FQ7jmGBd6c" + } +} 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/ddn-services.json b/domains/ddn-services.json new file mode 100644 index 000000000..f36a5b955 --- /dev/null +++ b/domains/ddn-services.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qlongdevdn", + "email": "quanglong.vaait@gmail.com" + }, + "record": { + "A": ["20.2.219.141"] + } +} diff --git a/domains/ddn.json b/domains/ddn.json new file mode 100644 index 000000000..4e6649133 --- /dev/null +++ b/domains/ddn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "qlongdevdn", + "email": "quanglong.vaait@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ddos777.json b/domains/ddos777.json new file mode 100644 index 000000000..6f4577245 --- /dev/null +++ b/domains/ddos777.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ARGHOZALI", + "email": "arghozalichannel@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/de.whine.json b/domains/de.whine.json index ea93bb80a..94e299a7c 100644 --- a/domains/de.whine.json +++ b/domains/de.whine.json @@ -1,12 +1,12 @@ { "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" }, "description": "whi_ne's deno subdomain", "record": { - "A": ["34.120.54.55"], - "TXT": "deno-com-validation=572b9c00ebc922b6f8367944" + "A": ["34.120.54.55"], + "TXT": "deno-com-validation=572b9c00ebc922b6f8367944" } -} \ No newline at end of file +} diff --git a/domains/dea.json b/domains/dea.json new file mode 100644 index 000000000..0c3bbe6ad --- /dev/null +++ b/domains/dea.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "devembrace", + "email": "rollxhowns@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/deadcode.json b/domains/deadcode.json new file mode 100644 index 000000000..c783a3e09 --- /dev/null +++ b/domains/deadcode.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RichardKanshen", + "email": "richard@kanshen.click" + }, + "record": { + "CNAME": "deadcodegames.github.io" + } +} diff --git a/domains/deadshot.json b/domains/deadshot.json index 9d4670aa4..b3b31c1de 100644 --- a/domains/deadshot.json +++ b/domains/deadshot.json @@ -1,12 +1,12 @@ { - "description": "My Official Website, Made with HTML5", - "repo": "https://github.com/deadshotofficial/deadshotofficial.github.io", - "owner": { - "username": "deadshotofficial", - "email": "raj.deadshot8888@gmail.com", - "twitter": "deadshot3r" - }, - "record": { - "CNAME": "deadshotofficial.github.io" - } + "description": "Updated Website 2023 Edition Haha", + "repo": "https://github.com/deadshotofficial/deadshotofficial.github.io", + "owner": { + "username": "deadshotofficial", + "email": "deadshot3r@pm.me", + "twitter": "deadshot3r" + }, + "record": { + "CNAME": "deadshotofficial.github.io" + } } diff --git a/domains/dean.json b/domains/dean.json new file mode 100644 index 000000000..a2888fa3c --- /dev/null +++ b/domains/dean.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "dandepan303", + "email": "dandepan303@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} 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/debargha.json b/domains/debargha.json index c6c9af50a..19854af23 100644 --- a/domains/debargha.json +++ b/domains/debargha.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "DebarghaXD", "email": "somachattaraj77@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "debargha.pages.dev" - } } - +} diff --git a/domains/debasishdutta.json b/domains/debasishdutta.json new file mode 100644 index 000000000..1a4af2829 --- /dev/null +++ b/domains/debasishdutta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "debasish-dutta", + "email": "ddmasterdon@gmail.com" + }, + "record": { + "CNAME": "debasish-dutta.github.io" + } +} diff --git a/domains/debertjamie.json b/domains/debertjamie.json index 299834afc..61280d08a 100644 --- a/domains/debertjamie.json +++ b/domains/debertjamie.json @@ -1,11 +1,11 @@ { - "description": "A personal website", - "repo": "https://github.com/debertjamie", - "owner": { - "username": "debertjamie", - "email": "debert123@protonmail.com" - }, - "record": { - "CNAME": "debertjamie.up.railway.app" - } + "description": "A personal website", + "repo": "https://github.com/debertjamie", + "owner": { + "username": "debertjamie", + "email": "debert123@protonmail.com" + }, + "record": { + "CNAME": "debertjamie.up.railway.app" + } } diff --git a/domains/debjit-mandal.json b/domains/debjit-mandal.json new file mode 100644 index 000000000..b2434505d --- /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/debug.json b/domains/debug.json index 44572a9ae..e5b0eafb9 100644 --- a/domains/debug.json +++ b/domains/debug.json @@ -1,11 +1,11 @@ { - "description": "Debug.Log's Website", + "description": "Debug.Log's Website", - "owner": { - "username": "extremepro999", - "email": "debugdotlog@zohomail.in" - }, - "record": { - "CNAME": "extremepro999.github.io" - } + "owner": { + "username": "extremepro999", + "email": "debugdotlog@zohomail.in" + }, + "record": { + "CNAME": "extremepro999.github.io" + } } diff --git a/domains/debxd.json b/domains/debxd.json new file mode 100644 index 000000000..8ed30e324 --- /dev/null +++ b/domains/debxd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DebXD", + "email": "debiprasadxd@protonmail.com" + }, + "record": { + "CNAME": "debxd.github.io" + } +} diff --git a/domains/declan.json b/domains/declan.json new file mode 100644 index 000000000..6621ea3ed --- /dev/null +++ b/domains/declan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ItsFranklinMyDudes", + "email": "franklindudes21@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/deecoyz.json b/domains/deecoyz.json new file mode 100644 index 000000000..c8bfa98db --- /dev/null +++ b/domains/deecoyz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "deecoyz", + "email": "swr86.a8z72.a38o4.qm65c.lt0bz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/deekshasharma.json b/domains/deekshasharma.json index c638d5893..ecd974cd9 100644 --- a/domains/deekshasharma.json +++ b/domains/deekshasharma.json @@ -1,10 +1,10 @@ { - "description": "Personal Portfolio", - "owner": { - "username": "Deeksha2501", - "email": "sharmadeeksha325@gmail.com" - }, - "record": { - "URL": "http://deekshasharma.vercel.app/" - } + "description": "Personal Portfolio", + "owner": { + "username": "Deeksha2501", + "email": "sharmadeeksha325@gmail.com" + }, + "record": { + "URL": "http://deekshasharma.vercel.app" + } } diff --git a/domains/deepak.json b/domains/deepak.json new file mode 100644 index 000000000..f031c76cd --- /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/deepankar.json b/domains/deepankar.json new file mode 100644 index 000000000..1ab1be648 --- /dev/null +++ b/domains/deepankar.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Deepankar-Siddharth", + "email": "deepankarsiddharthoff@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/deepesh.json b/domains/deepesh.json new file mode 100644 index 000000000..edfc2aad1 --- /dev/null +++ b/domains/deepesh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CycloneAddons", + "email": "cycloneaddon@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/defalco64.json b/domains/defalco64.json new file mode 100644 index 000000000..d4f64db9f --- /dev/null +++ b/domains/defalco64.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "aadarshKsingh", + "email": "aadarshkumarsingh198@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dehteam3.json b/domains/dehteam3.json index 74931407b..664dc24c6 100644 --- a/domains/dehteam3.json +++ b/domains/dehteam3.json @@ -1,12 +1,11 @@ - { - "description": "Hi, I am Thomas Aka dehteam3, I like coding, playing games", - "repo": "https://github.com/dehteam3/dehteam3.github.io", - "owner": { - "username": "dehteam3", - "email": "thomasemad2008@gmail.com" - }, - "record": { - "CNAME": "dehteam3.github.io" - } + "description": "Hi, I am Thomas Aka dehteam3, I like coding, playing games", + "repo": "https://github.com/dehteam3/dehteam3.github.io", + "owner": { + "username": "dehteam3", + "email": "thomasemad2008@gmail.com" + }, + "record": { + "CNAME": "dehteam3.github.io" + } } diff --git a/domains/deko.json b/domains/deko.json new file mode 100644 index 000000000..f49d98ccb --- /dev/null +++ b/domains/deko.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ukrioo", + "email": "u8k50850@gmail.com" + }, + "record": { + "URL": "https://ukrioo.github.io" + } +} diff --git a/domains/delasheras.json b/domains/delasheras.json new file mode 100644 index 000000000..2794d8db2 --- /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/deliable.json b/domains/deliable.json index 86994bae4..46cc5af22 100644 --- a/domains/deliable.json +++ b/domains/deliable.json @@ -1,10 +1,10 @@ { - "description": "hi! i am deliable, a developer. i love minecraft.", - "owner": { - "username": "Deliable", - "email": "rbstsoul@gmail.com" - }, - "record": { - "CNAME": "5e125b8d47-hosting.gitbook.io" - } + "description": "hi! i am deliable, a developer. i love minecraft.", + "owner": { + "username": "Deliable", + "email": "rbstsoul@gmail.com" + }, + "record": { + "CNAME": "5e125b8d47-hosting.gitbook.io" + } } diff --git a/domains/delta.json b/domains/delta.json index 62ee70d4d..273b81031 100644 --- a/domains/delta.json +++ b/domains/delta.json @@ -9,4 +9,4 @@ "record": { "CNAME": "protogendelta.github.io" } -} +} diff --git a/domains/deltafumble.json b/domains/deltafumble.json new file mode 100644 index 000000000..e8450990a --- /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..fe485b038 --- /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..257e7a089 --- /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/demon.json b/domains/demon.json new file mode 100644 index 000000000..f5f3e9158 --- /dev/null +++ b/domains/demon.json @@ -0,0 +1,9 @@ +{ + "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..3083ebd1b 100644 --- a/domains/demonitize.json +++ b/domains/demonitize.json @@ -1,19 +1,16 @@ { - "owner": { - "username": "demonitize", - "email": "", - "twitter": "demonitized_boi", - "twitch": "demonitized_boi", - "discord": "DEMONITIZED BOI#6969" - }, - "description": "Probably will use this to redirect to GitHub, because custom domain look cool", - "repo": "https://github.com/demonitize", - "record": { - "URL": "https://github.com/demonitize", - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "demonitize", + "email": "", + "twitter": "demonitized_boi", + "twitch": "demonitized_boi", + "discord": "DEMONITIZED BOI#6969" + }, + "description": "Probably will use this to redirect to GitHub, because custom domain look cool", + "repo": "https://github.com/demonitize", + "record": { + "URL": "https://github.com/demonitize", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "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/demonkingswarn.json b/domains/demonkingswarn.json index 23363baa4..ff77b802c 100644 --- a/domains/demonkingswarn.json +++ b/domains/demonkingswarn.json @@ -1,11 +1,11 @@ { - "description": "DemonKingSwarn's personal developer website", - "repo": "https://github.com/demonkingswarn/demonkingswarn.github.io", - "owner": { - "username": "DemonKingSwarn", - "email": "demonkingswarn@protonmail.com" - }, - "record": { - "CNAME": "demonkingswarn.github.io" - } + "description": "DemonKingSwarn's personal developer website", + "repo": "https://github.com/demonkingswarn/demonkingswarn.github.io", + "owner": { + "username": "DemonKingSwarn", + "email": "demonkingswarn@protonmail.com" + }, + "record": { + "CNAME": "demonkingswarn.github.io" + } } diff --git a/domains/den.json b/domains/den.json index 50b7996cc..bc4dbd1b4 100644 --- a/domains/den.json +++ b/domains/den.json @@ -1,12 +1,11 @@ { - "description": "This domain (den.is-a.dev) is used for blogging by Denver", - "repo": "", - "owner": { - "username": "DenStudies7700", - "discord": "ImDenver#7700", - "email": "" - }, - "record": { - "CNAME": "hashnode.network" + "description": "This domain (den.is-a.dev) is used for blogging by Denver", + "owner": { + "username": "DenStudies7700", + "discord": "ImDenver#7700", + "email": "" + }, + "record": { + "CNAME": "hashnode.network" } } diff --git a/domains/denboy0123.json b/domains/denboy0123.json new file mode 100644 index 000000000..88ba97237 --- /dev/null +++ b/domains/denboy0123.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "denboy0123", + "email": "pochtaproverka01@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/denis.json b/domains/denis.json new file mode 100644 index 000000000..ee6cb5b8d --- /dev/null +++ b/domains/denis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DenLes", + "email": "denislessard91@gmail.com" + }, + "record": { + "CNAME": "denles.github.io" + } +} diff --git a/domains/denism.json b/domains/denism.json new file mode 100644 index 000000000..a88cc1486 --- /dev/null +++ b/domains/denism.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "arabtalent", + "email": "lolhdselect@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/denix.json b/domains/denix.json index 30fc59357..2f7262fb4 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" - }, - "record": { - "CNAME": "denixsucks.github.io" - } + "owner": { + "username": "denixsucks", + "email": "dnz.odr@gmail.com", + "twitter": "denixsucks", + "discord": "denix#9748" + }, + "record": { + "CNAME": "denixsucks.github.io" + } } diff --git a/domains/denizak.json b/domains/denizak.json new file mode 100644 index 000000000..628446cfc --- /dev/null +++ b/domains/denizak.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "denizak", + "email": "denizakya@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/denizbee.json b/domains/denizbee.json new file mode 100644 index 000000000..4ffd1f002 --- /dev/null +++ b/domains/denizbee.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "denizbee", + "email": "denizbayramoglu@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dennis.json b/domains/dennis.json index 1e39a6ad4..5acb60e83 100644 --- a/domains/dennis.json +++ b/domains/dennis.json @@ -1,11 +1,11 @@ { - "description": "Dennis is a Dev", - "repo": "https://github.com/dvandervlag/dvandervlag.github.io", - "owner": { - "username": "dvandervlag", - "email": "dvandervlag@gmail.com" - }, - "record": { - "CNAME": "dvandervlag.github.io" - } + "description": "Dennis is a Dev", + "repo": "https://github.com/dvandervlag/dvandervlag.github.io", + "owner": { + "username": "dvandervlag", + "email": "dvandervlag@gmail.com" + }, + "record": { + "CNAME": "dvandervlag.github.io" + } } diff --git a/domains/denver.json b/domains/denver.json index 115485745..7d4f9b361 100644 --- a/domains/denver.json +++ b/domains/denver.json @@ -1,12 +1,12 @@ { - "description": "This domain (denver.is-a.dev) is used for scripting Denver's bio and as a portfolio", - "repo": "https://github.com/DenStudies7700/DenStudies7700.github.io", - "owner": { - "username": "DenStudies7700", - "discord": "ImDenver#7700", - "email": "" - }, - "record": { - "CNAME": "densite-development-7700.up.railway.app" + "description": "This domain (denver.is-a.dev) is used for scripting Denver's bio and as a portfolio", + "repo": "https://github.com/DenStudies7700/DenStudies7700.github.io", + "owner": { + "username": "DenStudies7700", + "discord": "ImDenver#7700", + "email": "" + }, + "record": { + "CNAME": "densite-development-7700.up.railway.app" } } diff --git a/domains/deoxy.json b/domains/deoxy.json index ee3d7c750..4a539f318 100644 --- a/domains/deoxy.json +++ b/domains/deoxy.json @@ -1,9 +1,11 @@ { - "owner": { - "username": "D3oxy", - "email": "deoxy@deoxy.tech" - }, - "record": { - "CNAME": "new.deoxy.tech" - } + "owner": { + "username": "d3oxy", + "email": "deoxy@deoxy.dev", + "discord": "DEOXY#1038", + "twitter": "d3oxyxd" + }, + "record": { + "URL": "https://deoxy.dev" + } } 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/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/designer.json b/domains/designer.json index 372fd5d72..3d6e4ae08 100644 --- a/domains/designer.json +++ b/domains/designer.json @@ -1,11 +1,11 @@ { - "description": "Designer Slash Developer", - "repo": "https://github.com/designbyadrian", - "owner": { - "username": "designbyadrian", - "email": "adrian@designbyadrian.com" - }, - "record": { - "CNAME": "designbyadrian.com" - } + "description": "Designer Slash Developer", + "repo": "https://github.com/designbyadrian", + "owner": { + "username": "designbyadrian", + "email": "adrian@designbyadrian.com" + }, + "record": { + "CNAME": "designbyadrian.com" + } } diff --git a/domains/destcom.json b/domains/destcom.json deleted file mode 100644 index 917578dd3..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/desteria.json b/domains/desteria.json new file mode 100644 index 000000000..da03eab85 --- /dev/null +++ b/domains/desteria.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HayBael", + "email": "rakhakhairydarka801@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/detox.json b/domains/detox.json index ac6cd4317..e80334443 100644 --- a/domains/detox.json +++ b/domains/detox.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/detox82517/detox82517.github.io", - "owner": { - "username": "Detox82517", - "email": "detox07@gmx.net" - }, - "record": { - "CNAME": "detox82517.github.io" - } + "repo": "https://github.com/detox82517/detox82517.github.io", + "owner": { + "username": "Detox82517", + "email": "detox07@gmx.net" + }, + "record": { + "CNAME": "detox82517.github.io" + } } diff --git a/domains/dev-dco.json b/domains/dev-dco.json new file mode 100644 index 000000000..1733f6ad4 --- /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-support.json b/domains/dev-support.json deleted file mode 100644 index 78555c103..000000000 --- a/domains/dev-support.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - - "record": { - "A": ["150.230.127.12"] - } - } - diff --git a/domains/dev.json b/domains/dev.json index d38e86931..7de8434dd 100644 --- a/domains/dev.json +++ b/domains/dev.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "gsdev215", - "email": "dev1050d2@gmail.com" - }, - "record": { - "CNAME": "gsdev215.github.io" - } + "owner": { + "username": "gsdev215", + "email": "dev1050d2@gmail.com" + }, + "record": { + "CNAME": "gsdev215.github.io" + } } diff --git a/domains/deva.json b/domains/deva.json new file mode 100644 index 000000000..738d70968 --- /dev/null +++ b/domains/deva.json @@ -0,0 +1,11 @@ +{ + "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/devan.json b/domains/devan.json index bc9be1737..8176a002f 100644 --- a/domains/devan.json +++ b/domains/devan.json @@ -1,10 +1,10 @@ { - "description": "devans cool looking domain that he wants for a portfolio", - "owner": { - "username": "devanwashere", - "email": "devan@devan.cool" - }, - "record": { - "CNAME": "devanwashere.github.io" - } + "description": "devans cool looking domain that he wants for a portfolio", + "owner": { + "username": "devanwashere", + "email": "devan@devan.cool" + }, + "record": { + "CNAME": "devanwashere.github.io" + } } diff --git a/domains/devanmed.json b/domains/devanmed.json index c6a2cd1c1..4c25b28d6 100644 --- a/domains/devanmed.json +++ b/domains/devanmed.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "devan2051", - "email": "", - "discord": "EvilPixel#5161" - }, - "record": { - "URL": "https://sites.google.com/view/devanmed/home" - } + "owner": { + "username": "devan2051", + "email": "", + "discord": "EvilPixel#5161" + }, + "record": { + "URL": "https://sites.google.com/view/devanmed/home" + } } diff --git a/domains/devchaudhary.json b/domains/devchaudhary.json new file mode 100644 index 000000000..be484a1cf --- /dev/null +++ b/domains/devchaudhary.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tushar202108", + "email": "chaudhrytusar2000@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/devcomp.json b/domains/devcomp.json index 53f875fe9..03de9a7ac 100644 --- a/domains/devcomp.json +++ b/domains/devcomp.json @@ -1,11 +1,11 @@ { - "description": "Cool looking redirection for my site.", - "repo": "https://github.com/CompeyDev", - "owner": { - "username": "CompeyDev", - "email": "hi@devcomp.xyz" - }, - "record": { - "URL": "https://p.devcomp.xyz" - } + "description": "Cool looking redirection for my site.", + "repo": "https://github.com/CompeyDev", + "owner": { + "username": "CompeyDev", + "email": "hi@devcomp.xyz" + }, + "record": { + "URL": "https://p.devcomp.xyz" + } } diff --git a/domains/devdk.json b/domains/devdk.json index eeac8cc5b..b838b3960 100644 --- a/domains/devdk.json +++ b/domains/devdk.json @@ -8,4 +8,4 @@ "record": { "CNAME": "DeveloperDmitryKolyadin.github.io" } -} \ No newline at end of file +} diff --git a/domains/devel.json b/domains/devel.json new file mode 100644 index 000000000..0883e9751 --- /dev/null +++ b/domains/devel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Atr-e", + "email": "eatr577@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/developer.json b/domains/developer.json index 3e2cd1158..843164525 100644 --- a/domains/developer.json +++ b/domains/developer.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Saharsh1223", - "email": "psaharsh2@gmail.com" - }, - "record": { - "CNAME": "sup4321.github.io" - } + "owner": { + "username": "Saharsh1223", + "email": "psaharsh2@gmail.com" + }, + "record": { + "CNAME": "sup4321.github.io" + } } diff --git a/domains/developerjosh.json b/domains/developerjosh.json index db5fc7e8a..6cc79d913 100644 --- a/domains/developerjosh.json +++ b/domains/developerjosh.json @@ -1,12 +1,12 @@ { - "description": "A personal portfolio site for all my projects and commissions.", - "repo": "https://github.com/DeveloperJosh/Blue", - "owner": { - "username": "DeveloperJosh", - "email": "joshwells409@gmail.com", - "youtube": "godly-hosting" - }, - "record": { - "CNAME": "developerjosh.github.io" - } + "description": "A personal portfolio site for all my projects and commissions.", + "repo": "https://github.com/DeveloperJosh/Blue", + "owner": { + "username": "DeveloperJosh", + "email": "joshwells409@gmail.com", + "youtube": "godly-hosting" + }, + "record": { + "CNAME": "developerjosh.github.io" + } } diff --git a/domains/devfate.json b/domains/devfate.json new file mode 100644 index 000000000..f9e1047d6 --- /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/devgd.json b/domains/devgd.json new file mode 100644 index 000000000..f1fe2de5f --- /dev/null +++ b/domains/devgd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dev8H24", + "email": "devsteamgaming91@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/devhavok.json b/domains/devhavok.json new file mode 100644 index 000000000..3bcaec0d9 --- /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/devmail.json b/domains/devmail.json new file mode 100644 index 000000000..035eb634b --- /dev/null +++ b/domains/devmail.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "is-a-dev@win11react.com", + "discord": "1094272477137481810" + }, + + "record": { + "A": ["217.174.245.249"] + } + } + diff --git a/domains/devmirza.json b/domains/devmirza.json new file mode 100644 index 000000000..cd3a0f436 --- /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..a59c1ce0f 100644 --- a/domains/devon.json +++ b/domains/devon.json @@ -1,11 +1,11 @@ { - "description": "Devon Powell is a full-stack software engineer", - "repo": "https://github.com/D-Pow/d-pow.github.io", - "owner": { - "username": "D-Pow", - "email": "dpow9373@gmail.com" - }, - "record": { - "CNAME": "d-pow.github.io" - } + "description": "Devon Powell is a full-stack software engineer", + "repo": "https://github.com/D-Pow/d-pow.github.io", + "owner": { + "username": "D-Pow", + "email": "D-Pow@users.noreply.github.com" + }, + "record": { + "CNAME": "d-pow.github.io" + } } diff --git a/domains/devpanther.json b/domains/devpanther.json new file mode 100644 index 000000000..311226885 --- /dev/null +++ b/domains/devpanther.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "2618Zahid", + "email": "zahidhassankalaroa104@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/devrealm.json b/domains/devrealm.json deleted file mode 100644 index 253460fd8..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/devs.json b/domains/devs.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/devs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dew.json b/domains/dew.json new file mode 100644 index 000000000..3fc9eef3b --- /dev/null +++ b/domains/dew.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dew-mortal", + "email": "dewmortal.cod@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dex.explorer.json b/domains/dex.explorer.json new file mode 100644 index 000000000..37c8f42d3 --- /dev/null +++ b/domains/dex.explorer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DexTheExplorer", + "email": "gianl.veronese@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/dexar.json b/domains/dexar.json new file mode 100644 index 000000000..824088eaf --- /dev/null +++ b/domains/dexar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dexaroffical", + "email": "5675mustafa5675@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dexo.json b/domains/dexo.json index 026a9312d..15ff08cfb 100644 --- a/domains/dexo.json +++ b/domains/dexo.json @@ -1,15 +1,10 @@ { - "description": "Ce cauti ma aici?", "owner": { "username": "DeXoHigh", - "email": "dexocash@gmail.com" + "email": "dexo1337@pm.me" }, "record": { - "A": ["185.141.25.116"], - "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/dhaloi.json b/domains/dhaloi.json new file mode 100644 index 000000000..2e8261da0 --- /dev/null +++ b/domains/dhaloi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dhaloi", + "email": "enis.salin@yaani.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dhanush.json b/domains/dhanush.json index 40caf33d6..c2e5fdd54 100644 --- a/domains/dhanush.json +++ b/domains/dhanush.json @@ -1,12 +1,11 @@ { - "description": "A personal site for all my stuff", - "repo": "https://github.com/b1ackshadow/b1ackshadow.github.io", - "owner": { - "username": "b1ackshadow", - "email": "actuallydc@gmail.com", - "twitter": "" - }, - "record": { - "CNAME": "b1ackshadow.github.io" - } + "description": "A personal site for all my stuff", + "repo": "https://github.com/b1ackshadow/b1ackshadow.github.io", + "owner": { + "username": "b1ackshadow", + "email": "actuallydc@gmail.com" + }, + "record": { + "CNAME": "b1ackshadow.github.io" + } } diff --git a/domains/dharmx.json b/domains/dharmx.json index 5f163dbc1..70e246272 100644 --- a/domains/dharmx.json +++ b/domains/dharmx.json @@ -1,12 +1,12 @@ { - "description": "Porfolio and Blog", - "repo": "https://github.com/dharmx/dharmx.github.io", - "owner": { - "username": "dharmx", - "email": "dharmx.dev@gmail.com", - "discord": "dharmx#2556" - }, - "record": { - "CNAME": "dharmx.github.io" - } + "description": "Porfolio and Blog", + "repo": "https://github.com/dharmx/dharmx.github.io", + "owner": { + "username": "dharmx", + "email": "dharmx.dev@gmail.com", + "discord": "dharmx#2556" + }, + "record": { + "CNAME": "dharmx.github.io" + } } diff --git a/domains/dharti-mungara.json b/domains/dharti-mungara.json new file mode 100644 index 000000000..f25ef4a13 --- /dev/null +++ b/domains/dharti-mungara.json @@ -0,0 +1,11 @@ +{ + "description": "Dharti mungara Profile.", + "repo": "https://github.com/dharti-mungara/dharti-mungara.github.io", + "owner": { + "username": "dharti-mungara", + "email": "" + }, + "record": { + "CNAME": "dharti-mungara.github.io" + } +} diff --git a/domains/dhaval-kareliya.json b/domains/dhaval-kareliya.json new file mode 100644 index 000000000..6b1eb3c61 --- /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/dheirya.json b/domains/dheirya.json index f86848c55..1ad4e23bf 100644 --- a/domains/dheirya.json +++ b/domains/dheirya.json @@ -1,12 +1,12 @@ { - "description": "An awesome portfolio site for Dheirya Tyagi", - "repo": "https://github.com/Dheirya/dheiryaweb", - "owner": { - "username": "Dheirya", - "email": "mail@socialrumbles.com", - "twitter": "fellow_doge" - }, - "record": { - "CNAME": "dheirya.pages.dev" - } + "description": "An awesome portfolio site for Dheirya Tyagi", + "repo": "https://github.com/Dheirya/dheiryaweb", + "owner": { + "username": "Dheirya", + "email": "mail@socialrumbles.com", + "twitter": "DheiryaTyagi" + }, + "record": { + "CNAME": "dheirya.pages.dev" + } } diff --git a/domains/dhinesh.json b/domains/dhinesh.json index 1e961e3b6..78c554b26 100644 --- a/domains/dhinesh.json +++ b/domains/dhinesh.json @@ -2,10 +2,10 @@ "description": "Dhinesh's portfolio website", "repo": "https://github.com/mdhinesh/mdhinesh.github.io", "owner": { - "username": "mdhinesh", - "email": "mdhinesh3103@gmail.com" + "username": "mdhinesh", + "email": "mdhinesh3103@gmail.com" }, "record": { - "CNAME": "mdhinesh.github.io" + "CNAME": "mdhinesh.github.io" } - } +} diff --git a/domains/dhiyazhar.json b/domains/dhiyazhar.json new file mode 100644 index 000000000..b05413d33 --- /dev/null +++ b/domains/dhiyazhar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dhiyazhar", + "email": "dhiyazhar@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dhruv.json b/domains/dhruv.json new file mode 100644 index 000000000..af9d53233 --- /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/dhruvil.json b/domains/dhruvil.json index 3f03f6c74..04702b8e7 100644 --- a/domains/dhruvil.json +++ b/domains/dhruvil.json @@ -6,6 +6,8 @@ "email": "dhruvil1808@gmail.com" }, "record": { - "CNAME": "DhruvilMoradiya.github.io" + "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/dhyan99.json b/domains/dhyan99.json new file mode 100644 index 000000000..722e5bb5a --- /dev/null +++ b/domains/dhyan99.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/dhyeypatel.json b/domains/dhyeypatel.json new file mode 100644 index 000000000..589ac2402 --- /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/diamondbroplayz.json b/domains/diamondbroplayz.json new file mode 100644 index 000000000..d280d0090 --- /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 index c6a285efd..af0bba065 100644 --- a/domains/dibster.json +++ b/domains/dibster.json @@ -1,14 +1,11 @@ { - "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" - } + "description": "ShareX Server/Protfolio Site.", + "owner": { + "username": "DEV-DIBSTER", + "email": "dibster@danbot.host", + "twitter": "DEV_DIBSTER" + }, + "record": { + "CNAME": "proxy.dib.localplayer.dev" + } } 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..6eabb26f4 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" - , + "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" - } -} + "username": "didimukhtar", + "email": "jamilatmukhtar2014@gmail.com" + }, + "record": { + "CNAME": "didimukhtar.github.io" + } +} diff --git a/domains/didntpot.json b/domains/didntpot.json index 7b5a516cf..6ae061169 100644 --- a/domains/didntpot.json +++ b/domains/didntpot.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "xDidntPot", "email": "didntpot@protonmail.com" - }, - "record": { + }, + "record": { "URL": "https://github.com/xdidntpot" - } } - \ No newline at end of file +} diff --git a/domains/didotb.json b/domains/didotb.json new file mode 100644 index 000000000..b98e6fec5 --- /dev/null +++ b/domains/didotb.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "didotb", + "email": "didotb@gmail.com", + "repo": "https://replit.com/@ddotb/reloctk", + "description": "Private owned URL Shortener - Using MongoDB, Flask, and SimpleLogin in Replit" + }, + "record": { + "A": ["35.186.245.55"], + "TXT": "replit-verify=68e4e002-91f5-446f-98a8-9add654ca897" + } +} diff --git a/domains/diedyesterday.json b/domains/diedyesterday.json new file mode 100644 index 000000000..c6df5ca85 --- /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/diego.json b/domains/diego.json new file mode 100644 index 000000000..931d7c143 --- /dev/null +++ b/domains/diego.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "diegohh0411", + "email": "diegohh0411@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/diji.json b/domains/diji.json new file mode 100644 index 000000000..03f9e7331 --- /dev/null +++ b/domains/diji.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "dijitiva", + "email": "hi@dijitiva.com.tr" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/dillonb07.json b/domains/dillonb07.json deleted file mode 100644 index ef8e36920..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": "dbarnes18", - "email": "dillonbarnes07@gmail.com" - }, - "record": { - "CNAME": "5056736b-b174-45ac-90aa-0576fb7e4aea.repl.co" - } -} diff --git a/domains/dilshad.json b/domains/dilshad.json new file mode 100644 index 000000000..784738b2b --- /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/dima.json b/domains/dima.json new file mode 100644 index 000000000..6dfb777d9 --- /dev/null +++ b/domains/dima.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dimashahbari", + "email": "dimashahbari@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dimas.json b/domains/dimas.json deleted file mode 100644 index 7b4f1b7ba..000000000 --- a/domains/dimas.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Portfolio", - "repo": "https://github.com/duangdeong/duangdeong.github.io", - "owner": { - "username": "duangdeong", - "email": "duangdeong@gmail.com", - "twitter": "DimasAndriano_" - }, - "record": { - "CNAME": "duangdeong.github.io" - } -} diff --git a/domains/dimasandriano.json b/domains/dimasandriano.json new file mode 100644 index 000000000..31afb01de --- /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..7a640e04a --- /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/dincertekin.json b/domains/dincertekin.json new file mode 100644 index 000000000..be51a3ca5 --- /dev/null +++ b/domains/dincertekin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dincertekin", + "email": "dincertekin@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dinesh-vaghasia.json b/domains/dinesh-vaghasia.json new file mode 100644 index 000000000..44a3c773e --- /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/dinesh.json b/domains/dinesh.json index 7f5fdfdce..7d0b77756 100644 --- a/domains/dinesh.json +++ b/domains/dinesh.json @@ -1,11 +1,11 @@ { - "description": "Dinesh Kumar's personal developer website", - "repo": "https://github.com/dinesh-ysl/dinesh-ysl.github.io", - "owner": { - "username": "dinesh-ysl", - "email": "dseera6@gmail.com" - }, - "record": { - "CNAME": "dinesh-ysl.github.io" - } + "description": "Dinesh Kumar's personal developer website", + "repo": "https://github.com/dinesh-ysl/dinesh-ysl.github.io", + "owner": { + "username": "dinesh-ysl", + "email": "dseera6@gmail.com" + }, + "record": { + "CNAME": "dinesh-ysl.github.io" + } } diff --git a/domains/dinhq.json b/domains/dinhq.json new file mode 100644 index 000000000..75ffcc642 --- /dev/null +++ b/domains/dinhq.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dinhqvn99", + "email": "trinhdinhquy@iesschool.edu.vn" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/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..90af28355 --- /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 index 1e7956dd9..02967bbc5 100644 --- a/domains/dipan.json +++ b/domains/dipan.json @@ -1,11 +1,11 @@ { - "description": "My Personal Portfolio - Dipan Roy", - "repo": "https://github.com/dipan29", - "owner": { - "username": "dipan29", - "email": "dipanroy@mindwebs.org" - }, - "record": { - "A": ["115.187.62.14"] - } + "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..2f337c549 --- /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..aacb530ee --- /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/discord-corp.json b/domains/discord-corp.json new file mode 100644 index 000000000..2d7f80d6b --- /dev/null +++ b/domains/discord-corp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JZ1324", + "email": "zheng.joshua2@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/discord.amulyasingh.json b/domains/discord.amulyasingh.json new file mode 100644 index 000000000..77aeb7865 --- /dev/null +++ b/domains/discord.amulyasingh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AMULYASing", + "email": "amulyasingh370@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/discord.badboy.json b/domains/discord.badboy.json deleted file mode 100644 index b3e3a3c4a..000000000 --- a/domains/discord.badboy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/Bad-Boy-Codes/Discord-Projects", - "description": "Discord Webhook and Interface Viewer.", - "owner": { - "username": "bad-boy-codes", - "email": "contact@mail.badboy.is-a.dev" - }, - "record": { - "CNAME": "bad-boy-codes.github.io" - } -} diff --git a/domains/discord.deadcode.json b/domains/discord.deadcode.json new file mode 100644 index 000000000..f05436350 --- /dev/null +++ b/domains/discord.deadcode.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RichardKanshen", + "email": "richard@kanshen.click" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/discord.jakub.json b/domains/discord.jakub.json new file mode 100644 index 000000000..6333ae5c2 --- /dev/null +++ b/domains/discord.jakub.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jakubk15", + "email": "jakubk15@protonmail.com" + }, + "record": { + "URL": "https://discord.gg/FQ7jmGBd6c" + } +} diff --git a/domains/discord.json b/domains/discord.json index 35a36caa8..79d14a447 100644 --- a/domains/discord.json +++ b/domains/discord.json @@ -1,11 +1,11 @@ { - "description": "a discord bot website", - "repo": "https://github.com/botstudios", - "owner": { - "username": "BotStudios", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "botstudios.github.io" - } + "description": "a discord bot website", + "repo": "https://github.com/botstudios", + "owner": { + "username": "BotStudios", + "email": "tojoeleeofficial@gmail.com" + }, + "record": { + "CNAME": "botstudios.github.io" + } } 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/discusser.json b/domains/discusser.json new file mode 100644 index 000000000..6d944bc2e --- /dev/null +++ b/domains/discusser.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Discusser", + "email": "noobly321growing@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/divik.json b/domains/divik.json index a04fc4ed3..11926e01c 100644 --- a/domains/divik.json +++ b/domains/divik.json @@ -1,11 +1,11 @@ { - "description": "My Personal site", - "repo": "https://github.com/Code19Master/portfolio", - "owner": { - "username": "Code19Master", - "email": "divikbabbar@gmail.com" - }, - "record": { - "CNAME": "code19master.github.io" - } + "description": "My Personal site", + "repo": "https://github.com/Code19Master/portfolio", + "owner": { + "username": "Code19Master", + "email": "divikbabbar@gmail.com" + }, + "record": { + "CNAME": "code19master.github.io" + } } diff --git a/domains/divine.json b/domains/divine.json new file mode 100644 index 000000000..5facc13dd --- /dev/null +++ b/domains/divine.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "divinewrites", + "email": "adivinecit21@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/divyadesh.json b/domains/divyadesh.json new file mode 100644 index 000000000..1d3cb5c22 --- /dev/null +++ b/domains/divyadesh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "divyadesh", + "email": "adeshsati24@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/divyam.json b/domains/divyam.json index bc6693301..d19cf759f 100644 --- a/domains/divyam.json +++ b/domains/divyam.json @@ -1,11 +1,11 @@ { - "description": "Divyam's personal website", - "repo": "https://github.com/DivyamAhuja/divyamahuja.github.io", - "owner": { - "username": "DivyamAhuja", - "email": "ahujadivyam@gmail.com" - }, - "record": { - "CNAME": "divyamahuja.github.io" - } + "description": "Divyam's personal website", + "repo": "https://github.com/DivyamAhuja/divyamahuja.github.io", + "owner": { + "username": "DivyamAhuja", + "email": "ahujadivyam@gmail.com" + }, + "record": { + "CNAME": "divyamahuja.github.io" + } } diff --git a/domains/divyansh.json b/domains/divyansh.json new file mode 100644 index 000000000..23b8705fe --- /dev/null +++ b/domains/divyansh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "divyanshxd", + "email": "divyanshv91@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/divyanshu.json b/domains/divyanshu.json new file mode 100644 index 000000000..b774c1d56 --- /dev/null +++ b/domains/divyanshu.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Divyanshu9822", + "email": "divyanshu9871@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/divyanshuprasad.json b/domains/divyanshuprasad.json new file mode 100644 index 000000000..b774c1d56 --- /dev/null +++ b/domains/divyanshuprasad.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Divyanshu9822", + "email": "divyanshu9871@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/diyar.json b/domains/diyar.json new file mode 100644 index 000000000..20fb59bab --- /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/dliu.json b/domains/dliu.json new file mode 100644 index 000000000..47a9ea7c1 --- /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..364f2bc30 --- /dev/null +++ b/domains/dmmay.json @@ -0,0 +1,9 @@ +{ + "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/dnoxl.json b/domains/dnoxl.json new file mode 100644 index 000000000..202e194ef --- /dev/null +++ b/domains/dnoxl.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dnoxl", + "email": "ifbimgamer@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/do-gia-huy.json b/domains/do-gia-huy.json new file mode 100644 index 000000000..35726dd75 --- /dev/null +++ b/domains/do-gia-huy.json @@ -0,0 +1,10 @@ +{ + "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/docs.json b/domains/docs.json index 6bc7fd236..5b6fb0a15 100644 --- a/domains/docs.json +++ b/domains/docs.json @@ -1,11 +1,11 @@ { - "description": "Documentation website for is-a-dev/register", - "repo": "is-a-dev/docs", - "owner": { - "username": "@is-a-dev/maintainers", - "email": "mahir@molai.dev" - }, - "record": { - "URL": "https://is-a.dev/docs" - } + "description": "Documentation website for is-a.dev", + "repo": "https://github.com/is-a-dev/docs", + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "URL": "https://www.is-a.dev/docs" + } } diff --git a/domains/docs.stefdp.json b/domains/docs.stefdp.json new file mode 100644 index 000000000..d024e4e66 --- /dev/null +++ b/domains/docs.stefdp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "CNAME": "c2d298f98c-hosting.gitbook.io" + } +} diff --git a/domains/dodinhphuc.json b/domains/dodinhphuc.json new file mode 100644 index 000000000..00f14b176 --- /dev/null +++ b/domains/dodinhphuc.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DoDinhPhuc1111", + "email": "prepegasus1111@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/doge-v4-proxy.json b/domains/doge-v4-proxy.json new file mode 100644 index 000000000..11e781f9f --- /dev/null +++ b/domains/doge-v4-proxy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zumwaltboi68", + "email": "alexander662022@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dogeleader.json b/domains/dogeleader.json new file mode 100644 index 000000000..11e781f9f --- /dev/null +++ b/domains/dogeleader.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zumwaltboi68", + "email": "alexander662022@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dogenetwork.json b/domains/dogenetwork.json new file mode 100644 index 000000000..11e781f9f --- /dev/null +++ b/domains/dogenetwork.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zumwaltboi68", + "email": "alexander662022@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dolba3b.json b/domains/dolba3b.json new file mode 100644 index 000000000..3d2ed21fc --- /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/domathdotid.json b/domains/domathdotid.json new file mode 100644 index 000000000..a978b39c4 --- /dev/null +++ b/domains/domathdotid.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DomathID", + "email": "admin@yukinoshita.web.id" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/domi.json b/domains/domi.json new file mode 100644 index 000000000..b503bf772 --- /dev/null +++ b/domains/domi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "domi-btnr", + "email": "me@domi-btnr.dev" + }, + "record": { + "CNAME": "domi-btnr.dev" + } +} diff --git a/domains/domin.json b/domains/domin.json deleted file mode 100644 index f78621af8..000000000 --- a/domains/domin.json +++ /dev/null @@ -1,13 +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", - "repo": "https://github.com/Domin-MND/", - "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..8a642bdbb 100644 --- a/domains/dominic.json +++ b/domains/dominic.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "mrhappyma", "email": "dominic@userexe.me" - }, - "record": { + }, + "record": { "URL": "https://userexe.me" - } } - \ No newline at end of file +} diff --git a/domains/dominik.json b/domains/dominik.json new file mode 100644 index 000000000..b50e14664 --- /dev/null +++ b/domains/dominik.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mezotv", + "email": "dominik@koch-bautechnik.de" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dommor.json b/domains/dommor.json new file mode 100644 index 000000000..2794d8db2 --- /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..3636d58ab 100644 --- a/domains/donate.gornostay25.json +++ b/domains/donate.gornostay25.json @@ -1,14 +1,9 @@ { - "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 index b3fabe52f..498e90b1c 100644 --- a/domains/donkaos.json +++ b/domains/donkaos.json @@ -1,11 +1,11 @@ -{ - "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" - } -} +{ + "description": "Donkas's personal developer website", + "repo": "https://github.com/donkaos501", + "owner": { + "username": "Donkaos", + "email": "donkaos501@outlook.com" + }, + "record": { + "URL": "https://donkaos.de/" + } +} diff --git a/domains/donno2048.json b/domains/donno2048.json new file mode 100644 index 000000000..9738ca276 --- /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..c4b0150e0 100644 --- a/domains/donut.json +++ b/domains/donut.json @@ -9,4 +9,4 @@ "record": { "CNAME": "donut2008.github.io" } -} +} diff --git a/domains/dooly.json b/domains/dooly.json index 2502c0f25..b8b85a5c9 100644 --- a/domains/dooly.json +++ b/domains/dooly.json @@ -1,12 +1,12 @@ { - "Dooly": "Dooly is a Dev.", - "repo": "https://github.com/entry0917/doolyweb/", - "owner": { - "username": "entry0917", - "email": "seeun0917@naver.com", - "twitter": "sense09173" - }, - "record": { - "CNAME": "entry0917.github.io" - } + "Dooly": "Dooly is a Dev.", + "repo": "https://github.com/entry0917/doolyweb", + "owner": { + "username": "entry0917", + "email": "seeun0917@naver.com", + "twitter": "sense09173" + }, + "record": { + "CNAME": "entry0917.github.io" + } } diff --git a/domains/doraemon.json b/domains/doraemon.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/doraemon.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/dot.json b/domains/dot.json new file mode 100644 index 000000000..8ca6450dd --- /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/dott.json b/domains/dott.json new file mode 100644 index 000000000..5879c9cf6 --- /dev/null +++ b/domains/dott.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Dott-rus", + "email": "antonamelin8@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/dqmn.json b/domains/dqmn.json new file mode 100644 index 000000000..f8cb5eedc --- /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..b7dede2db --- /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/dracx.json b/domains/dracx.json new file mode 100644 index 000000000..6de0d6e47 --- /dev/null +++ b/domains/dracx.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "DarindaDraX", + "email": "123kishanvish@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file 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/drastic.json b/domains/drastic.json new file mode 100644 index 000000000..4a5c732d4 --- /dev/null +++ b/domains/drastic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "drasticroy", + "email": "victiousroy@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/drasticroy.json b/domains/drasticroy.json new file mode 100644 index 000000000..4a5c732d4 --- /dev/null +++ b/domains/drasticroy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "drasticroy", + "email": "victiousroy@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/drdilyor.json b/domains/drdilyor.json index 82774e5a5..30273f4de 100644 --- a/domains/drdilyor.json +++ b/domains/drdilyor.json @@ -1,11 +1,11 @@ { - "description": "Drdilyor's website and (non-existent) blog", - "repo": "https://github.com/drdilyor/drdilyor.github.io", - "owner": { - "username": "drdilyor", - "email": "drdilyor@outlook.com" - }, - "record": { - "CNAME": "drdilyor.github.io" - } + "description": "Drdilyor's website and (non-existent) blog", + "repo": "https://github.com/drdilyor/drdilyor.github.io", + "owner": { + "username": "drdilyor", + "email": "drdilyor@outlook.com" + }, + "record": { + "CNAME": "drdilyor.github.io" + } } diff --git a/domains/drenxhyliqi.json b/domains/drenxhyliqi.json new file mode 100644 index 000000000..5e5c9573d --- /dev/null +++ b/domains/drenxhyliqi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "drenxhyliqi", + "email": "drenxhyliqi3@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/drish-xd.json b/domains/drish-xd.json index 55a94e8ee..60106a54b 100644 --- a/domains/drish-xd.json +++ b/domains/drish-xd.json @@ -1,11 +1,11 @@ { - "description": "Drish | Portfolio", - "repo": "https://github.com/Drish-xD/Drish-xD.github.io", - "owner": { - "username": "Drish-xD", - "email": "drish.xd@gmail.com" - }, - "record": { - "CNAME": "drish-xd.github.io" - } + "description": "Drish | Portfolio", + "repo": "https://github.com/Drish-xD/Drish-xD.github.io", + "owner": { + "username": "Drish-xD", + "email": "drish.xd@gmail.com" + }, + "record": { + "CNAME": "drish-xd.github.io" + } } diff --git a/domains/drively.json b/domains/drively.json new file mode 100644 index 000000000..cbb98ae6c --- /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/drizion.json b/domains/drizion.json new file mode 100644 index 000000000..70090b594 --- /dev/null +++ b/domains/drizion.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "drizion", + "email": "gabrieldasilvadevargas@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=drizion.is-a.dev,6f313e7f58cf1bdb9801" + } +} diff --git a/domains/drk-bot.json b/domains/drk-bot.json new file mode 100644 index 000000000..d5103dfed --- /dev/null +++ b/domains/drk-bot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dylan1522", + "email": "wpmar027092@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/drmonocle.json b/domains/drmonocle.json index 0f7638dfb..f590ec713 100644 --- a/domains/drmonocle.json +++ b/domains/drmonocle.json @@ -1,11 +1,11 @@ { - "description": "DrMonocle Website", - "repo": "https://github.com/monocledr/monocledr.github.io", - "owner": { - "username": "monocledr", - "email": "contact.drmonocle@gmail.com" - }, - "record": { - "CNAME": "monocledr.github.io" - } + "description": "DrMonocle Website", + "repo": "https://github.com/monocledr/monocledr.github.io", + "owner": { + "username": "monocledr", + "email": "contact.drmonocle@gmail.com" + }, + "record": { + "CNAME": "monocledr.github.io" + } } diff --git a/domains/drmzahid.json b/domains/drmzahid.json new file mode 100644 index 000000000..311226885 --- /dev/null +++ b/domains/drmzahid.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "2618Zahid", + "email": "zahidhassankalaroa104@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/droiders.json b/domains/droiders.json new file mode 100644 index 000000000..2c3e62741 --- /dev/null +++ b/domains/droiders.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "abdessattarElyagoubi", + "email": "abdeldroid2@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/drormaman.json b/domains/drormaman.json new file mode 100644 index 000000000..c32bf236a --- /dev/null +++ b/domains/drormaman.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website", + "owner": { + "username": "drormaman", + "email": "", + "twitter": "drormaman" + }, + "record": { + "CNAME": "drormaman.github.io" + } +} diff --git a/domains/drpleaserespect.json b/domains/drpleaserespect.json new file mode 100644 index 000000000..5ca6c4b45 --- /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/drv.su.json b/domains/drv.su.json new file mode 100644 index 000000000..7d2fd43c2 --- /dev/null +++ b/domains/drv.su.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dizzy123323", + "email": "dhruvksuru@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/drv123323.json b/domains/drv123323.json new file mode 100644 index 000000000..c90e8ec9f --- /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/dsaw.json b/domains/dsaw.json index 5b2ea128c..9891dbbeb 100644 --- a/domains/dsaw.json +++ b/domains/dsaw.json @@ -1,11 +1,11 @@ { - "description": "dsaw's blog", - "repo": "https://github.com/dsaw/dsaw.github.io", - "owner": { - "username": "dsaw", - "email": "dsawthedsawwhat@gmail.com" - }, - "record": { - "CNAME": "dsaw.github.io" - } + "description": "dsaw's blog", + "repo": "https://github.com/dsaw/dsaw.github.io", + "owner": { + "username": "dsaw", + "email": "dsawthedsawwhat@gmail.com" + }, + "record": { + "CNAME": "dsaw.github.io" + } } diff --git a/domains/dsgaasdgsdag.json b/domains/dsgaasdgsdag.json new file mode 100644 index 000000000..d8e48b60d --- /dev/null +++ b/domains/dsgaasdgsdag.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "keshrlmfao", + "email": "kiwipointss555@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dsgamer.json b/domains/dsgamer.json new file mode 100644 index 000000000..2b07a3083 --- /dev/null +++ b/domains/dsgamer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DhruvGamingzsoft", + "email": "dgashost@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dsrev.json b/domains/dsrev.json index d236671ae..615a9fccb 100644 --- a/domains/dsrev.json +++ b/domains/dsrev.json @@ -1,12 +1,12 @@ { - "description": "dsrev's blog", - "repo": "https://github.com/dsrev/dsrev.github.io", - "owner": { - "username": "dsrev", - "email": "dsrev@snopyta.org", - "twitter": "IlyaSProkopenko" - }, - "record": { - "CNAME": "dsrev.github.io" - } + "description": "dsrev's blog", + "repo": "https://github.com/dsrev/dsrev.github.io", + "owner": { + "username": "dsrev", + "email": "dsrev@snopyta.org", + "twitter": "IlyaSProkopenko" + }, + "record": { + "CNAME": "dsrev.github.io" + } } diff --git a/domains/duck.json b/domains/duck.json index 7365d0696..2d8be9689 100644 --- a/domains/duck.json +++ b/domains/duck.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Duck Dev", - "email": "craftblurdiscord@gmail.com" - }, - "record": { - "CNAME": "glitch.edgeapp.net" - } + "owner": { + "username": "ServerDeveloper9447", + "email": "craftblurdiscord@gmail.com" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } } diff --git a/domains/duckinc.json b/domains/duckinc.json index 2c6193504..09e91b46e 100644 --- a/domains/duckinc.json +++ b/domains/duckinc.json @@ -1,11 +1,11 @@ { - "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" - } + "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/duckysolucky.json b/domains/duckysolucky.json new file mode 100644 index 000000000..2adb4355a --- /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/dudani-meet.json b/domains/dudani-meet.json new file mode 100644 index 000000000..a296f4eab --- /dev/null +++ b/domains/dudani-meet.json @@ -0,0 +1,11 @@ +{ + "description": "Meet Portfolio.", + "repo": "https://github.com/dudani-meet/dudani-meet.github.io", + "owner": { + "username": "dudani-meet", + "email": "" + }, + "record": { + "CNAME": "dudani-meet.github.io" + } +} diff --git a/domains/dulackmugi.json b/domains/dulackmugi.json new file mode 100644 index 000000000..7f8f27d28 --- /dev/null +++ b/domains/dulackmugi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dulackmwas", + "email": "dulackmugi@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dumkalpoly.json b/domains/dumkalpoly.json index 0546f75f8..afab7f64a 100644 --- a/domains/dumkalpoly.json +++ b/domains/dumkalpoly.json @@ -1,11 +1,11 @@ { - "description": "Educational Website", - "repo": "https://github.com/dumkalpoly/dumkalpoly.github.io", - "owner": { - "username": "dumkalpoly", - "email": "dumkalpoly@yahoo.com" - }, - "record": { - "CNAME": "dumkalpoly.github.io" - } + "description": "Educational Website", + "repo": "https://github.com/dumkalpoly/dumkalpoly.github.io", + "owner": { + "username": "dumkalpoly", + "email": "dumkalpoly@yahoo.com" + }, + "record": { + "CNAME": "dumkalpoly.github.io" + } } diff --git a/domains/dumprr.json b/domains/dumprr.json new file mode 100644 index 000000000..e02aa7a2b --- /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/dunkan.json b/domains/dunkan.json index d33c932a2..5e785433f 100644 --- a/domains/dunkan.json +++ b/domains/dunkan.json @@ -1,11 +1,11 @@ { - "description": "Dunkan", - "owner": { - "username": "dcdunkan", - "email": "", - "twitter": "dcdunkan" - }, - "record": { - "URL": "https://github.com/dcdunkan" - } + "description": "Dunkan", + "owner": { + "username": "dcdunkan", + "email": "", + "twitter": "dcdunkan" + }, + "record": { + "URL": "https://github.com/dcdunkan" + } } diff --git a/domains/durlavkalita.json b/domains/durlavkalita.json new file mode 100644 index 000000000..e88d69b50 --- /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/dushmanta.json b/domains/dushmanta.json new file mode 100644 index 000000000..3d2daafbb --- /dev/null +++ b/domains/dushmanta.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio | Dushmanta", + "repo": "https://github.com/dushmanta05/dushmanta05.github.io", + "owner": { + "username": "dushmanta05", + "email": "dushmanta.dev@gmail.com", + "twitter": "dushmanta05" + }, + "record": { + "CNAME": "dushmanta05.github.io" + } +} diff --git a/domains/duy.json b/domains/duy.json new file mode 100644 index 000000000..3a30b641f --- /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..6da26c0c7 --- /dev/null +++ b/domains/duyhung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hungwt", + "email": "hungwt334@gmail.com" + }, + "record": { + "A": ["103.97.126.26"] + } +} diff --git a/domains/dwii.json b/domains/dwii.json index b5cd2203d..02898537c 100644 --- a/domains/dwii.json +++ b/domains/dwii.json @@ -1,11 +1,11 @@ { - "description": "DwiiUnknown is a dev.", - "repo": "https://github.com/ItzMeDwii/dwii", - "owner": { - "username": "ItzMeDwii", - "email": "dwiiunknown@gmail.com" - }, - "record": { - "URL": "https://dwii.my.id/" - } + "description": "DwiiUnknown is a dev.", + "repo": "https://github.com/ItzMeDwii/dwii", + "owner": { + "username": "ItzMeDwii", + "email": "dwiiunknown@gmail.com" + }, + "record": { + "URL": "https://dwii.my.id" + } } diff --git a/domains/dwk.json b/domains/dwk.json new file mode 100644 index 000000000..8f91072cc --- /dev/null +++ b/domains/dwk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Brickmasterr", + "email": "dwiki200304@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dxler.json b/domains/dxler.json new file mode 100644 index 000000000..d205c6b40 --- /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/dxomg.json b/domains/dxomg.json new file mode 100644 index 000000000..28a90de7a --- /dev/null +++ b/domains/dxomg.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dxomg", + "email": "dxomgmyfriend@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dydestroyer.json b/domains/dydestroyer.json index 27826914b..107acba75 100644 --- a/domains/dydestroyer.json +++ b/domains/dydestroyer.json @@ -1,12 +1,12 @@ { - "description": "DyDestroyer's github pages site, do not expect much at all", - "repo": "https://github.com/DyDestroyer1027/DyDestroyer1027.github.io", - "owner": { - "username": "DyDestroyer1027", - "email": "", - "discord": "dydestroyer#1027" - }, - "record": { - "CNAME": "dydestroyer1027.github.io" - } + "description": "DyDestroyer's github pages site, do not expect much at all", + "repo": "https://github.com/DyDestroyer1027/DyDestroyer1027.github.io", + "owner": { + "username": "DyDestroyer1027", + "email": "", + "discord": "dydestroyer#1027" + }, + "record": { + "CNAME": "dydestroyer1027.github.io" + } } 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/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..d27a31aec --- /dev/null +++ b/domains/dylanmarsili.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/Dylan-Marsili/dylan-marsili.github.io", + "owner": { + "username": "Dylan-Marsili", + "email": "marsilidylan@gmail.com", + "twitter": "dylan_marsili" + }, + "record": { + "CNAME": "dylan-marsili.github.io" + } +} diff --git a/domains/dynamic-homepage.json b/domains/dynamic-homepage.json new file mode 100644 index 000000000..59008a649 --- /dev/null +++ b/domains/dynamic-homepage.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vikramv20", + "email": "vs423502@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/dyno.json b/domains/dyno.json new file mode 100644 index 000000000..30ea2fb19 --- /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/eacbypasser.json b/domains/eacbypasser.json new file mode 100644 index 000000000..f326ce02d --- /dev/null +++ b/domains/eacbypasser.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EacBypasser", + "email": "tyroxtech@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/earth.sx9.json b/domains/earth.sx9.json new file mode 100644 index 000000000..f7f0e6184 --- /dev/null +++ b/domains/earth.sx9.json @@ -0,0 +1,9 @@ +{ + "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 22612fb6c..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/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/eazyblack.json b/domains/eazyblack.json index b6576582d..f10493244 100644 --- a/domains/eazyblack.json +++ b/domains/eazyblack.json @@ -1,11 +1,11 @@ { - "description": "eazyblack website.", - "repo": "https://github.com/EAZYBLACK/eazyblack.github.io", - "owner": { - "username": "eazyblack", - "email": "eazywhite40@gmail.com" - }, - "record": { - "CNAME": "eazyblack.github.io" - } + "description": "eazyblack website.", + "repo": "https://github.com/EAZYBLACK/eazyblack.github.io", + "owner": { + "username": "eazyblack", + "email": "eazywhite40@gmail.com" + }, + "record": { + "CNAME": "eazyblack.github.io" + } } diff --git a/domains/ebaa.json b/domains/ebaa.json new file mode 100644 index 000000000..71302f08b --- /dev/null +++ b/domains/ebaa.json @@ -0,0 +1,9 @@ +{ + "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..e5d4e409a --- /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/ecalzo.json b/domains/ecalzo.json index b54cac9a3..4500cb1e7 100644 --- a/domains/ecalzo.json +++ b/domains/ecalzo.json @@ -1,11 +1,11 @@ { - "description": "Evan's personal developer blog", - "repo": "https://github.com/Ecalzo/ecalzo.github.io", - "owner": { - "username": "ecalzo", - "email": "evancalz@me.com" - }, - "record": { - "CNAME": "ecalzo.github.io" - } + "description": "Evan's personal developer blog", + "repo": "https://github.com/Ecalzo/ecalzo.github.io", + "owner": { + "username": "ecalzo", + "email": "evancalz@me.com" + }, + "record": { + "CNAME": "ecalzo.github.io" + } } diff --git a/domains/echo.json b/domains/echo.json new file mode 100644 index 000000000..bd8136ae6 --- /dev/null +++ b/domains/echo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Silverstero", + "email": "pleasedontaddmyemail@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/echo2477.json b/domains/echo2477.json index b2dfb746d..f81636a2b 100644 --- a/domains/echo2477.json +++ b/domains/echo2477.json @@ -1,11 +1,11 @@ { - "description": "Echo's personal website", - "repo": "https://github.com/echo2477/echo2477.github.io", - "owner": { - "username": "echo2477", - "email": "pku.eko16@gmail.com" - }, - "record": { - "CNAME": "echo2477.github.io" - } + "description": "Echo's personal website", + "repo": "https://github.com/echo2477/echo2477.github.io", + "owner": { + "username": "echo2477", + "email": "pku.eko16@gmail.com" + }, + "record": { + "CNAME": "echo2477.github.io" + } } diff --git a/domains/eclair.json b/domains/eclair.json new file mode 100644 index 000000000..8b2634452 --- /dev/null +++ b/domains/eclair.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "assjgejcitif", + "email": "fluffy@dmc.chat" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/eclipse.json b/domains/eclipse.json index b5efee529..e609282e9 100644 --- a/domains/eclipse.json +++ b/domains/eclipse.json @@ -2,7 +2,7 @@ "owner": { "username": "Just-a-Unity-Dev", "email": "", - "twitter": "@eclips_e69" + "twitter": "eclips_e69" }, "description": "A little portfolio based with a basic account system for learning purposes.", "record": { 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..c5521af52 --- /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/edgar.json b/domains/edgar.json new file mode 100644 index 000000000..71794cbfa --- /dev/null +++ b/domains/edgar.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Edgar-4111", + "email": "", + "discord": "._edgar." + }, + "record": { + "CNAME": "proxy.private.danbot.host" + } +} diff --git a/domains/edjva.json b/domains/edjva.json new file mode 100644 index 000000000..c53010512 --- /dev/null +++ b/domains/edjva.json @@ -0,0 +1,10 @@ +{ + "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..8fe1e6321 --- /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/edrea.json b/domains/edrea.json index 58bfb8e38..71e0f8da2 100644 --- a/domains/edrea.json +++ b/domains/edrea.json @@ -1,11 +1,11 @@ { - "description": "Portfolio", - "repo": "https://github.com/RUW3T/peach.git", - "owner": { - "username": "Edrea", - "email": "edrea@metalunits.com" - }, - "record": { - "CNAME": "ruw3t.github.io" - } + "description": "Portfolio", + "repo": "https://github.com/RUW3T/peach.git", + "owner": { + "username": "Edrea", + "email": "edrea@metalunits.com" + }, + "record": { + "CNAME": "ruw3t.github.io" + } } diff --git a/domains/edward.json b/domains/edward.json index 3412f1872..9b4fd0a9d 100644 --- a/domains/edward.json +++ b/domains/edward.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "EdwardTheLegend", "email": "edward@edwardtlowe.com" - }, + }, - "record": { + "record": { "CNAME": "edwardthelegend.github.io" - } } - \ No newline at end of file +} diff --git a/domains/edwin.json b/domains/edwin.json index d15a104c9..207976914 100644 --- a/domains/edwin.json +++ b/domains/edwin.json @@ -1,10 +1,10 @@ { - "description": "My proud is-a.dev website", - "owner": { - "username": "edwinm", - "email": "edwin@bitstorm.org" - }, - "record": { - "CNAME": "bitstorm.org" - } + "description": "My proud is-a.dev website", + "owner": { + "username": "edwinm", + "email": "edwin@bitstorm.org" + }, + "record": { + "CNAME": "bitstorm.org" + } } diff --git a/domains/eesa.json b/domains/eesa.json index 446fad849..f8682c4a3 100644 --- a/domains/eesa.json +++ b/domains/eesa.json @@ -8,4 +8,4 @@ "record": { "CNAME": "eesa.zahed.ca" } -} +} diff --git a/domains/eeshwar.json b/domains/eeshwar.json new file mode 100644 index 000000000..a00c85567 --- /dev/null +++ b/domains/eeshwar.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "darkboi3301", + "email": "darkboi3301@gmail.com", + "discord": "790788825550028820" + }, + + "record": { + "CNAME": "eeshwar.pages.dev" + } + } + \ No newline at end of file diff --git a/domains/eevee.json b/domains/eevee.json new file mode 100644 index 000000000..a8b644af0 --- /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.json b/domains/efe.json index 17272cdac..605a62acc 100644 --- a/domains/efe.json +++ b/domains/efe.json @@ -1,11 +1,11 @@ { - "description": "personal website", - "repo": "https://github.com/0x656665", - "owner": { - "username": "0x656665", - "email": "efe@tutanota.de" - }, - "record": { - "URL": "https://efe.dev" - } + "description": "personal website", + "repo": "https://github.com/0x656665", + "owner": { + "username": "0x656665", + "email": "efe@tutanota.de" + }, + "record": { + "URL": "https://efe.dev" + } } diff --git a/domains/ehmad.json b/domains/ehmad.json new file mode 100644 index 000000000..4790085ac --- /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..7be868c03 --- /dev/null +++ b/domains/ehsan.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "eCodeVoyager", + "email": "mu23172@gmail.com" + }, + "record": { + "A": [ + "8.219.148.143" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/ejaz.json b/domains/ejaz.json index a6664dc9b..47050836e 100644 --- a/domains/ejaz.json +++ b/domains/ejaz.json @@ -1,12 +1,9 @@ { - "description": "My personal portfolio site.", - "repo": "https://github.com/ejaz/ejaz4.github.io", - "owner": { - "username": "ejaz4", - "email": "ejaz@ceccun.com", - "twitter": "ejazaIi" - }, - "record": { - "CNAME": "ejaz4.github.io" - } + "owner": { + "username": "ejaz4", + "email": "ejazali4@protonmail.ch" + }, + "record": { + "CNAME": "ejaz4.github.io" + } } diff --git a/domains/ekinvarli.json b/domains/ekinvarli.json index 9099f8213..cb6d06123 100644 --- a/domains/ekinvarli.json +++ b/domains/ekinvarli.json @@ -9,4 +9,4 @@ "record": { "CNAME": "eknvarli.github.io" } -} +} diff --git a/domains/ekrem.json b/domains/ekrem.json new file mode 100644 index 000000000..a8500254e --- /dev/null +++ b/domains/ekrem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "exrem", + "email": "eray6421@proton.me" + }, + "record": { + "CNAME": "exrem.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/elbenja.json b/domains/elbenja.json new file mode 100644 index 000000000..9f1fae5db --- /dev/null +++ b/domains/elbenja.json @@ -0,0 +1,12 @@ +{ + "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..31d9ff7a8 --- /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..2ac6a1e81 100644 --- a/domains/elbkr.json +++ b/domains/elbkr.json @@ -1,11 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "elbkr", "email": "zaakoukiayman@gmail.com", "twitter": "elbkrrr" - }, - "record": { + }, + "record": { "CNAME": "elbkr.github.io" - } } +} diff --git a/domains/eldano.json b/domains/eldano.json index 0cef3a142..83df9f692 100644 --- a/domains/eldano.json +++ b/domains/eldano.json @@ -1,12 +1,12 @@ { - "description": "Personal website for eldano dev", - "repo": "https://github.com/eldano/eldano.github.io", - "owner": { - "username": "eldano", - "email": "", - "twitter": "eldanov2" - }, - "record": { - "CNAME": "eldano.github.io" - } + "description": "Personal website for eldano dev", + "repo": "https://github.com/eldano/eldano.github.io", + "owner": { + "username": "eldano", + "email": "", + "twitter": "eldanov2" + }, + "record": { + "CNAME": "eldano.github.io" + } } diff --git a/domains/eldin.json b/domains/eldin.json new file mode 100644 index 000000000..00835e4b0 --- /dev/null +++ b/domains/eldin.json @@ -0,0 +1,11 @@ +{ + "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/eldinesh.json b/domains/eldinesh.json index 11b660c02..019330387 100644 --- a/domains/eldinesh.json +++ b/domains/eldinesh.json @@ -1,11 +1,11 @@ { - "description": "Dinesh Kumar's personal developer website", - "repo": "https://github.com/eldinesh/eldinesh.github.io", - "owner": { - "username": "eldinesh", - "email": "dseera6@gmail.com" - }, - "record": { - "CNAME": "eldinesh.github.io" - } + "description": "Dinesh Kumar's personal developer website", + "repo": "https://github.com/eldinesh/eldinesh.github.io", + "owner": { + "username": "eldinesh", + "email": "dseera6@gmail.com" + }, + "record": { + "CNAME": "eldinesh.github.io" + } } diff --git a/domains/eleger.json b/domains/eleger.json new file mode 100644 index 000000000..d68d62010 --- /dev/null +++ b/domains/eleger.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PrakashMalwad", + "email": "prakashmalwad8778999020@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/elementalst.json b/domains/elementalst.json new file mode 100644 index 000000000..581977216 --- /dev/null +++ b/domains/elementalst.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "syxnights", + "email": "hamzafelashry12@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/eletrixtalkapp.json b/domains/eletrixtalkapp.json new file mode 100644 index 000000000..0393698e9 --- /dev/null +++ b/domains/eletrixtalkapp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "boomerangBS", + "email": "boomerang1803@gmail.com" + }, + "record": { + "CNAME": "8de1bbe8-ffbb-4e58-a688-bb332d498d06.id.repl.co" + } +} diff --git a/domains/elf.json b/domains/elf.json index b3487c763..aa42e55bf 100644 --- a/domains/elf.json +++ b/domains/elf.json @@ -1,11 +1,11 @@ { - "description": "Elflanded's Development Website.", - "repo": "https://github.com/Elflanded/website", - "owner": { - "username": "Elflanded", - "email": "elflanded@gmail.com" - }, - "record": { - "CNAME": "elflanded.github.io" - } + "description": "Elflanded's Development Website.", + "repo": "https://github.com/Elflanded/website", + "owner": { + "username": "Elflanded", + "email": "elflanded@gmail.com" + }, + "record": { + "CNAME": "elflanded.github.io" + } } diff --git a/domains/elias.json b/domains/elias.json index 60f56f91a..bb71587f3 100644 --- a/domains/elias.json +++ b/domains/elias.json @@ -1,12 +1,12 @@ { - "description": "My personal website, im learning web dev!", - "repo": "https://github.com/EliasKernel/EliasKernel.github.io", - "owner": { - "username": "eliaskernel", - "email": "eliaskernel@protonmail.com", - "twitter": "eliaskernel" - }, - "record": { - "CNAME": "eliaskernel.github.io" - } + "description": "My personal website, im learning web dev!", + "repo": "https://github.com/EliasKernel/EliasKernel.github.io", + "owner": { + "username": "eliaskernel", + "email": "eliaskernel@protonmail.com", + "twitter": "eliaskernel" + }, + "record": { + "CNAME": "eliaskernel.github.io" + } } diff --git a/domains/elijah629.json b/domains/elijah629.json new file mode 100644 index 000000000..ac7c1ed87 --- /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/eliteflix.json b/domains/eliteflix.json new file mode 100644 index 000000000..08eaac118 --- /dev/null +++ b/domains/eliteflix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Legend256", + "email": "heroku.1st.dyno@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/elixss.json b/domains/elixss.json new file mode 100644 index 000000000..25cb935ef --- /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/ella.json b/domains/ella.json index 58f13e075..1f4fd0a1c 100644 --- a/domains/ella.json +++ b/domains/ella.json @@ -1,11 +1,11 @@ { - "description": "Ella's Portfolio", - "repo": "https://github.com/eilla1/ella.is-a.dev-redirect", - "owner": { - "username": "eilla1", - "email": "exu6056@gmail.com" - }, - "record": { - "CNAME": "eilla1.github.io" - } + "description": "Ella's Portfolio", + "repo": "https://github.com/eilla1/ella.is-a.dev-redirect", + "owner": { + "username": "eilla1", + "email": "exu6056@gmail.com" + }, + "record": { + "CNAME": "eilla1.github.io" + } } diff --git a/domains/elliott.json b/domains/elliott.json new file mode 100644 index 000000000..924175797 --- /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/elma.json b/domains/elma.json index 655ee71ba..ac10146db 100644 --- a/domains/elma.json +++ b/domains/elma.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "minibox24", - "email": "minibox724@gmail.com" - }, - "record": { - "CNAME": "isadev.minibox.xyz" - } + "owner": { + "username": "minibox24", + "email": "minibox724@gmail.com" + }, + "record": { + "CNAME": "isadev.minibox.xyz" + } } diff --git a/domains/eloisa.json b/domains/eloisa.json new file mode 100644 index 000000000..28f8bebe1 --- /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..ec08b6b9e 100644 --- a/domains/elvis.json +++ b/domains/elvis.json @@ -1,11 +1,10 @@ { "description": "Elvis's website", "owner": { - "username": "ElvisUpUp", - "email": "elvis4study@gmail.com" + "username": "ElvisUpUp", + "email": "elvis4study@gmail.com" }, "record": { - "URL": "https://github.com/ElvisUpUp" + "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..504da26c5 --- /dev/null +++ b/domains/elyagoubi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "abdessattarElyagoubi", + "email": "abdeldroid2@gmail.com" + }, + "record": { + "CNAME": "elyagoubis.github.io" + } +} diff --git a/domains/email.json b/domains/email.json deleted file mode 100644 index 73b8f2583..000000000 --- a/domains/email.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - - "record": { - "A": ["204.44.81.190"] - } - } - diff --git a/domains/email.nota.json b/domains/email.nota.json new file mode 100644 index 000000000..4e595cc90 --- /dev/null +++ b/domains/email.nota.json @@ -0,0 +1,13 @@ +{ + "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.trung.json b/domains/email.trung.json new file mode 100644 index 000000000..d033742cd --- /dev/null +++ b/domains/email.trung.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/email.zerow.json b/domains/email.zerow.json new file mode 100644 index 000000000..93285b0b7 --- /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/emhl.json b/domains/emhl.json index 0ba33bf67..6ee3d4e9c 100644 --- a/domains/emhl.json +++ b/domains/emhl.json @@ -1,11 +1,11 @@ { - "description": "personal page", - "repo": "https://github.com/emhl/emhl.github.io", - "owner": { - "username": "emhl", - "email": "stnr.emil@gmail.com" - }, - "record": { - "CNAME": "emhl.github.io" - } + "description": "personal page", + "repo": "https://github.com/emhl/emhl.github.io", + "owner": { + "username": "emhl", + "email": "stnr.emil@gmail.com" + }, + "record": { + "CNAME": "emhl.github.io" + } } diff --git a/domains/emily.json b/domains/emily.json index 481480df0..7fe67e645 100644 --- a/domains/emily.json +++ b/domains/emily.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "EmilyLove26", - "email": "EmilyLove@writeme.com", - "discord": "Emily Love#1251", - "note": "Koji Redirect" - }, - "description": "Redirects to my Koji Profile: https://koji.to/EmilyLove", - "record": { - "CNAME": "cnames.withkoji.com" - } + "owner": { + "username": "EmilyLove26", + "email": "EmilyLove@writeme.com", + "discord": "Emily Love#1251", + "note": "Koji Redirect" + }, + "description": "Redirects to my Koji Profile: https://koji.to/EmilyLove", + "record": { + "CNAME": "cnames.withkoji.com" + } } diff --git a/domains/emmanuel.json b/domains/emmanuel.json new file mode 100644 index 000000000..bb28a76c2 --- /dev/null +++ b/domains/emmanuel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Emmannuel", + "email": "21417080030624@cecytemorelos.edu.mx" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/emre.json b/domains/emre.json new file mode 100644 index 000000000..2fe4b8571 --- /dev/null +++ b/domains/emre.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "emredurak01", + "email": "emredurak01@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/emtyfay.json b/domains/emtyfay.json new file mode 100644 index 000000000..4cc20d40a --- /dev/null +++ b/domains/emtyfay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Emtyffx", + "email": "emtyfay4433@gmail.com" + }, + "record": { + "CNAME": "myblog-production.up.railway.app" + } +} diff --git a/domains/endercass.json b/domains/endercass.json new file mode 100644 index 000000000..b3da1c574 --- /dev/null +++ b/domains/endercass.json @@ -0,0 +1,11 @@ +{ + "description": "Endercass Portfolio", + "owner": { + "username": "Endercass", + "email": "", + "discord": "endercass" + }, + "record": { + "URL": "https://endercass.me" + } +} diff --git a/domains/enderdev.json b/domains/enderdev.json index 733156ddd..cf988935f 100644 --- a/domains/enderdev.json +++ b/domains/enderdev.json @@ -1,12 +1,12 @@ { - "description": "Personal site for EnderDev", - "repo": "https://github.com/EnderDev/EnderDev", - "owner": { - "username": "EnderDev", - "email": "kieran@dothq.co", - "twitter": "EnderDev_" - }, - "record": { - "CNAME": "enderdev.github.io" - } + "description": "Personal site for EnderDev", + "repo": "https://github.com/EnderDev/EnderDev", + "owner": { + "username": "EnderDev", + "email": "kieran@dothq.co", + "twitter": "EnderDev_" + }, + "record": { + "CNAME": "enderdev.github.io" + } } diff --git a/domains/enderpoint.json b/domains/enderpoint.json new file mode 100644 index 000000000..7770ee2a1 --- /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..17b9f39cd --- /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..8ac205386 --- /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..6bf271ed7 --- /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..d681d2440 --- /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 49b8a0170..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/epgeroy.json b/domains/epgeroy.json index 506c617fe..0e6171bb4 100644 --- a/domains/epgeroy.json +++ b/domains/epgeroy.json @@ -1,11 +1,11 @@ { - "description": "/home/epgeroy", - "repo": "https://github.com/epgeroy/epgeroy.github.io", - "owner": { - "username": "epgeroy", - "email": "epgeroy@gmail.com" - }, - "record": { - "CNAME": "epgeroy.github.io" - } + "description": "/home/epgeroy", + "repo": "https://github.com/epgeroy/epgeroy.github.io", + "owner": { + "username": "epgeroy", + "email": "epgeroy@gmail.com" + }, + "record": { + "CNAME": "epgeroy.github.io" + } } diff --git a/domains/epic.json b/domains/epic.json index 56a6821f7..d35d4590c 100644 --- a/domains/epic.json +++ b/domains/epic.json @@ -1,11 +1,11 @@ { - "description": "Epic's github", - "repo": "https://github.com/tag-epic", - "owner": { - "username": "tag-epic", - "email": "tagepicuwu@gmail.com" - }, - "record": { - "URL": "http://github.com/tag-epic" - } + "description": "Epic's github", + "repo": "https://github.com/tag-epic", + "owner": { + "username": "tag-epic", + "email": "tagepicuwu@gmail.com" + }, + "record": { + "URL": "https://github.com/tag-epic" + } } diff --git a/domains/epnq.json b/domains/epnq.json index 43558ab9d..391ecedbf 100644 --- a/domains/epnq.json +++ b/domains/epnq.json @@ -1,12 +1,12 @@ { - "description": "Personal Site", - "repo": "https://github.com/wensente27", - "owner": { - "username": "wensente27", - "email": "", - "twitter": "pnqe_eli" - }, - "record": { - "CNAME": "epnq.up.railway.app" - } + "description": "Personal Site", + "repo": "https://github.com/wensente27", + "owner": { + "username": "wensente27", + "email": "", + "twitter": "pnqe_eli" + }, + "record": { + "CNAME": "epnq.up.railway.app" + } } diff --git a/domains/epsooraj.json b/domains/epsooraj.json index 20048e770..c3a2a74a2 100644 --- a/domains/epsooraj.json +++ b/domains/epsooraj.json @@ -1,10 +1,10 @@ { - "description": "Sooraj Ep's website", - "owner": { - "username": "epsooraj", - "email": "epsooraj4@gmail.com" - }, - "record": { - "CNAME": "epsooraj.com" - } + "description": "Sooraj Ep's website", + "owner": { + "username": "epsooraj", + "email": "epsooraj4@gmail.com" + }, + "record": { + "CNAME": "epsooraj.com" + } } diff --git a/domains/erdem.json b/domains/erdem.json new file mode 100644 index 000000000..202405794 --- /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..f606d3d70 --- /dev/null +++ b/domains/erdogan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "erdogansad", + "email": "erdogan.sad@windowslive.com" + }, + "record": { + "A": ["87.248.157.245"] + } +} diff --git a/domains/erdogansad.json b/domains/erdogansad.json new file mode 100644 index 000000000..b67b86ca0 --- /dev/null +++ b/domains/erdogansad.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "erdogansad", + "email": "erdogan.sad@windowslive.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/erdwpe.json b/domains/erdwpe.json index de6c0492c..ac009cb04 100644 --- a/domains/erdwpe.json +++ b/domains/erdwpe.json @@ -1,12 +1,12 @@ { - "description": "erdwpe website", - "repo": "https://github.com/erdwpe/erdwpe.github.io", - "owner": { - "username": "erdwpe", - "email": "erdwpe@gmail.com", - "twitter": "erlanggadwip6" - }, - "record": { - "CNAME": "erdwpe.github.io" - } + "description": "erdwpe website", + "repo": "https://github.com/erdwpe/erdwpe.github.io", + "owner": { + "username": "erdwpe", + "email": "erdwpe@gmail.com", + "twitter": "erlanggadwip6" + }, + "record": { + "CNAME": "erdwpe.github.io" + } } diff --git a/domains/eren.json b/domains/eren.json new file mode 100644 index 000000000..c3364f4fc --- /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/eric.json b/domains/eric.json index d316896b6..46503b29d 100644 --- a/domains/eric.json +++ b/domains/eric.json @@ -1,11 +1,11 @@ { - "description": "Eric's website and blog", - "repo": "https://github.com/yurrriq", - "owner": { - "username": "yurrriq", - "email": "eric@ericb.me" - }, - "record": { - "CNAME": "yurrriq.github.io" - } + "description": "Eric's website and blog", + "repo": "https://github.com/yurrriq", + "owner": { + "username": "yurrriq", + "email": "eric@ericb.me" + }, + "record": { + "CNAME": "yurrriq.github.io" + } } diff --git a/domains/ericp3reira.json b/domains/ericp3reira.json deleted file mode 100644 index 4b5cd9e7f..000000000 --- a/domains/ericp3reira.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Frontend Engineer", - "repo": "https://github.com/ericp3reira/ericp3reira.github.io", - "owner": { - "username": "ericp3reira", - "email": "", - "twitter": "ericp3reira" - }, - "record": { - "CNAME": "ericp3reira.github.io" - } -} diff --git a/domains/ericpessoa.json b/domains/ericpessoa.json new file mode 100644 index 000000000..a25eb00fe --- /dev/null +++ b/domains/ericpessoa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Eric-Pessoa", + "email": "pessoa.eric@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/ericthomas.json b/domains/ericthomas.json index 655a0aa7b..0381229e1 100644 --- a/domains/ericthomas.json +++ b/domains/ericthomas.json @@ -1,11 +1,11 @@ { - "description": "Eric Thomas' Portfolio", - "repo": "https://github.com/ericthomasca", - "owner": { - "username": "ericthomasca", - "email": "eric@ericthomas.ca" - }, - "record": { - "URL": "https://ericthomas.ca" - } + "description": "Eric Thomas' Portfolio", + "repo": "https://github.com/ericthomasca", + "owner": { + "username": "ericthomasca", + "email": "eric@ericthomas.ca" + }, + "record": { + "URL": "https://ericthomas.ca" + } } diff --git a/domains/erik.json b/domains/erik.json index 2422f9cb7..11d2c8424 100644 --- a/domains/erik.json +++ b/domains/erik.json @@ -2,10 +2,10 @@ "description": "Erik Personal Website", "repo": "https://github.com/Erik3010", "owner": { - "username": "erik3010", - "email": "erikhau3010@gmail.com" + "username": "erik3010", + "email": "erikhau3010@gmail.com" }, "record": { - "CNAME": "erik3010.github.io" + "CNAME": "erik3010.github.io" } -} \ No newline at end of file +} diff --git a/domains/erisa.json b/domains/erisa.json index 718677080..378c14fbd 100644 --- a/domains/erisa.json +++ b/domains/erisa.json @@ -1,11 +1,11 @@ { - "description": "Blog for Erisa A.", - "repo": "https://github.com/Erisa", - "owner": { - "username": "Erisa", - "email": "seriel@erisa.moe" - }, - "record": { - "CNAME": "dev.cname.erisa.moe" - } + "description": "Blog for Erisa A.", + "repo": "https://github.com/Erisa", + "owner": { + "username": "Erisa", + "email": "seriel@erisa.moe" + }, + "record": { + "CNAME": "dev.cname.erisa.moe" + } } diff --git a/domains/ermal.json b/domains/ermal.json index 4dfe7daac..45ba4f7c4 100644 --- a/domains/ermal.json +++ b/domains/ermal.json @@ -1,21 +1,13 @@ { - "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/erogemaster225.json b/domains/erogemaster225.json new file mode 100644 index 000000000..87e5a953a --- /dev/null +++ b/domains/erogemaster225.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ErogeMaster225", + "email": "nguyentrongsang123@yahoo.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/erol.json b/domains/erol.json new file mode 100644 index 000000000..fe02fdf30 --- /dev/null +++ b/domains/erol.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "erolj", + "email": "" + }, + + "record": { + "URL": "https://erol.kawanua.id" + } +} diff --git a/domains/error404.json b/domains/error404.json new file mode 100644 index 000000000..10e108849 --- /dev/null +++ b/domains/error404.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Website / Portfolio", + "repo": "https://github.com/cabrothers/error404", + "owner": { + "username": "Cabrothers", + "email": "", + "discord": "err404code" + }, + "record": { + "CNAME": "cabrothers.github.io" + } +} diff --git a/domains/errornointernet.json b/domains/errornointernet.json new file mode 100644 index 000000000..e13b74cd1 --- /dev/null +++ b/domains/errornointernet.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ErrorNoInternet", + "email": "error.nointernet@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/esemv-evan.json b/domains/esemv-evan.json new file mode 100644 index 000000000..2da9277a8 --- /dev/null +++ b/domains/esemv-evan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "esemv07", + "email": "ruby.semaganda@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/esp.json b/domains/esp.json new file mode 100644 index 000000000..a43f13203 --- /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": ["141.145.192.190"] + } +} diff --git a/domains/essiessara.json b/domains/essiessara.json new file mode 100644 index 000000000..1797d71a5 --- /dev/null +++ b/domains/essiessara.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "essieessara", + "email": "esraaaebdelrehime@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/esteban.json b/domains/esteban.json new file mode 100644 index 000000000..cad902831 --- /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..c39e1befe --- /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/eternal.json b/domains/eternal.json new file mode 100644 index 000000000..e743e85fc --- /dev/null +++ b/domains/eternal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thatmarcboi", + "email": "marcacolwell@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/eternalluxury.json b/domains/eternalluxury.json new file mode 100644 index 000000000..1cae4205f --- /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/eternalnetwork.json b/domains/eternalnetwork.json new file mode 100644 index 000000000..ea24f9fa7 --- /dev/null +++ b/domains/eternalnetwork.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "neealdon3", + "email": "neealdon3@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ethan.json b/domains/ethan.json index ff47b39fc..fb9e631cb 100644 --- a/domains/ethan.json +++ b/domains/ethan.json @@ -1,10 +1,11 @@ { - "owner":{ - "username": "Darkcoder402", - "email": "ethanrodrigues25@gmail.com", - "twitter": "EthanRo97737635" - }, - "record":{ - "CNAME":"ethan-is-a-dev.tk" - } -} + "owner": { + "username": "simuIates", + "email": "e@zurly.lol" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ethxrnity.json b/domains/ethxrnity.json index 1212ebfb0..9baf05cb5 100644 --- a/domains/ethxrnity.json +++ b/domains/ethxrnity.json @@ -1,12 +1,12 @@ { - "description": "My personal website", - "repo": "https://github.com/ethxrnity/ethxrnity.github.io", - "owner": { - "username": "ethxrnity", - "email": "ethxrnity@gmail.com", - "twitter": "ethxrnity" - }, - "record": { - "CNAME": "ethxrnity.github.io" - } + "description": "My personal website", + "repo": "https://github.com/ethxrnity/ethxrnity.github.io", + "owner": { + "username": "ethxrnity", + "email": "ethxrnity@gmail.com", + "twitter": "ethxrnity" + }, + "record": { + "CNAME": "ethxrnity.github.io" + } } diff --git a/domains/ethyl.json b/domains/ethyl.json new file mode 100644 index 000000000..01d616d2a --- /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/eturbo.json b/domains/eturbo.json new file mode 100644 index 000000000..99ef594f1 --- /dev/null +++ b/domains/eturbo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Teapot4195", + "email": "huangalex409@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/eutrix.json b/domains/eutrix.json index 9faa10060..8cb932104 100644 --- a/domains/eutrix.json +++ b/domains/eutrix.json @@ -1,12 +1,12 @@ { - "description": "A website to show off my projects.", - "repo": "https://github.com/Eutrix/eutrix.github.io", - "owner": { - "username": "Eutrix", - "email": "", - "discord": "Tony25#4455" - }, - "record": { - "CNAME": "eutrix.github.io" - } + "description": "A website to show off my projects.", + "repo": "https://github.com/Eutrix/eutrix.github.io", + "owner": { + "username": "Eutrix", + "email": "", + "discord": "Tony25#4455" + }, + "record": { + "CNAME": "eutrix.github.io" + } } diff --git a/domains/eva.json b/domains/eva.json index b7ac01666..e5185b67e 100644 --- a/domains/eva.json +++ b/domains/eva.json @@ -1,9 +1,9 @@ { "owner": { - "username": "mowatermelon", - "email": "neefoxmo@gmail.com" + "username": "mowatermelon", + "email": "neefoxmo@gmail.com" }, "record": { - "URL": "https://t.iiwhy.cn/" + "URL": "https://t.iiwhy.cn" } - } \ No newline at end of file +} 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/evan.json b/domains/evan.json index 0cabc342e..7ef8d9a31 100644 --- a/domains/evan.json +++ b/domains/evan.json @@ -1,11 +1,11 @@ { - "description": "Personal Portfolio", - "repo": "https://github.com/GeopJr/geopjr.dev", - "owner": { - "username": "GeopJr", - "email": "domains@geopjr.dev" - }, - "record": { - "URL": "https://geopjr.dev" - } + "description": "Personal Portfolio", + "repo": "https://github.com/GeopJr/geopjr.dev", + "owner": { + "username": "GeopJr", + "email": "domains@geopjr.dev" + }, + "record": { + "URL": "https://geopjr.dev" + } } diff --git a/domains/evelio.json b/domains/evelio.json new file mode 100644 index 000000000..c3959dee6 --- /dev/null +++ b/domains/evelio.json @@ -0,0 +1,13 @@ +{ + "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/everybody.json b/domains/everybody.json new file mode 100644 index 000000000..e8e1899ce --- /dev/null +++ b/domains/everybody.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AngerminecraftYT", + "email": "david.boltong@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/evils.json b/domains/evils.json index c58083374..9168b3e2f 100644 --- a/domains/evils.json +++ b/domains/evils.json @@ -8,4 +8,4 @@ "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/ex.json b/domains/ex.json new file mode 100644 index 000000000..c0678af3d --- /dev/null +++ b/domains/ex.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "xqxyzl", + "email": "exemailhelp+3@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/example.json b/domains/example.json deleted file mode 100644 index 6ed30b9fb..000000000 --- a/domains/example.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "owner": { - "username": "MaskDuck", - "email": "", - "discord": "MaskDuck#7325" - }, - "description": "This domain serve no purpose and is intended for documentation purpose.", - "record": { - "URL": "https://is-a.dev" - } -} - diff --git a/domains/exotic.json b/domains/exotic.json new file mode 100644 index 000000000..fd96a622b --- /dev/null +++ b/domains/exotic.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ethaanol", + "email": "cashprivate10@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/ez.json b/domains/ez.json new file mode 100644 index 000000000..4e6a7710f --- /dev/null +++ b/domains/ez.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ClicpoW", + "email": "clicpowytb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ezedinff.json b/domains/ezedinff.json deleted file mode 100644 index d8a94401c..000000000 --- a/domains/ezedinff.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ezedin's personal developer website", - "repo": "https://github.com/ezedinff", - "owner": { - "username": "ezedinff", - "email": "ezedin.fedlu@gmail.com" - }, - "record": { - "CNAME": "black-horse-coder-blog.vercel.app" - } -} diff --git a/domains/ezzoubair.json b/domains/ezzoubair.json new file mode 100644 index 000000000..66bd72ebc --- /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/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..c0a64863b --- /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..be41afb25 --- /dev/null +++ b/domains/fa-fifi.json @@ -0,0 +1,10 @@ +{ + "description": "Personal portfolio website", + "owner": { + "username": "fa-fifi", + "email": "fafifi1997@gmail.com" + }, + "record": { + "CNAME": "fa-fifi.github.io" + } +} diff --git a/domains/fabiancrx.json b/domains/fabiancrx.json index de76e8c9b..fa928342b 100644 --- a/domains/fabiancrx.json +++ b/domains/fabiancrx.json @@ -1,11 +1,11 @@ { - "description": "home/croxx", - "repo": "https://github.com/fabiancrx/fabiancrx.github.io", - "owner": { - "username": "fabiancrx", - "email": "croxx5f@gmail.com" - }, - "record": { - "CNAME": "fabiancrx.github.io" - } + "description": "home/croxx", + "repo": "https://github.com/fabiancrx/fabiancrx.github.io", + "owner": { + "username": "fabiancrx", + "email": "croxx5f@gmail.com" + }, + "record": { + "CNAME": "fabiancrx.github.io" + } } diff --git a/domains/fae5.json b/domains/fae5.json new file mode 100644 index 000000000..c0a64863b --- /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/faelixyz.json b/domains/faelixyz.json new file mode 100644 index 000000000..a63ebf78e --- /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/fafu.json b/domains/fafu.json new file mode 100644 index 000000000..55ff9d28c --- /dev/null +++ b/domains/fafu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "fafu-10", + "email": "shimni22@skiff.com" + }, + "record": { + "CNAME": "fafu-10.github.io" + } +} diff --git a/domains/fahmifareed.json b/domains/fahmifareed.json new file mode 100644 index 000000000..d99bcc637 --- /dev/null +++ b/domains/fahmifareed.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "fahmifareed", + "email": "fahmifareed@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/faisal.json b/domains/faisal.json index 200413336..d2fea857d 100644 --- a/domains/faisal.json +++ b/domains/faisal.json @@ -1,12 +1,12 @@ { - "description": "Faisal Portfolio Website", - "repo": "https://github.com/faisal-fida/faisal-fida.github.io", - "owner": { - "username": "faisal-fida", - "email": "arainfaisal826@gmail.com", - "twitter": "faisalfida_4" - }, - "record": { - "CNAME": "faisal-fida.github.io" - } + "description": "Faisal Portfolio Website", + "repo": "https://github.com/faisal-fida/faisal-fida.github.io", + "owner": { + "username": "faisal-fida", + "email": "arainfaisal826@gmail.com", + "twitter": "faisalfida_4" + }, + "record": { + "CNAME": "faisal-fida.github.io" + } } diff --git a/domains/faiz.json b/domains/faiz.json index 61fe222c4..db8b3901d 100644 --- a/domains/faiz.json +++ b/domains/faiz.json @@ -1,11 +1,11 @@ { - "description": "faizath.github.io", - "repo": "https://github.com/faizath/faizath.github.io", - "owner": { - "username": "faizath", - "email": "faiz@ctemplar.com" - }, - "record": { - "URL": "https://faizath.github.io" - } + "description": "faizath.github.io", + "repo": "https://github.com/faizath/faizath.github.io", + "owner": { + "username": "faizath", + "email": "faiz@ctemplar.com" + }, + "record": { + "URL": "https://faizath.github.io" + } } diff --git a/domains/faizkhan.json b/domains/faizkhan.json new file mode 100644 index 000000000..d8da6ddd0 --- /dev/null +++ b/domains/faizkhan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dev28k", + "email": "faizkhan.dev@gmail.com" + }, + "record": { + "URL": "https://portfoliodev-dev28k.vercel.app/" + } +} diff --git a/domains/faizm.json b/domains/faizm.json new file mode 100644 index 000000000..714f45c4f --- /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/fake.json b/domains/fake.json index 161498b2f..e54aaf74f 100644 --- a/domains/fake.json +++ b/domains/fake.json @@ -1,16 +1,13 @@ { - "description": "Fake_Name131's Website", - "repo": "https://github.com/YEEETT", - "owner": { - "username": "Fake_Name131", - "email": "fake@fake.is-a.dev" - }, - "record": { - "A": ["185.199.108.153"], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "site", + "repo": "https://github.com/fakename131", + "owner": { + "username": "Fake_Name131", + "email": "fake@fake.is-a.dev" + }, + "record": { + "A": ["185.199.108.153"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/fakhri.json b/domains/fakhri.json new file mode 100644 index 000000000..0a7f76ef3 --- /dev/null +++ b/domains/fakhri.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FDMZ17", + "email": "devoloper.fdmz17@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/falguni-prajapati.json b/domains/falguni-prajapati.json new file mode 100644 index 000000000..c012b9bd8 --- /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 1be0aa1b4..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/farag.json b/domains/farag.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/farag.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/farhan.json b/domains/farhan.json new file mode 100644 index 000000000..12c9b95f6 --- /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/faris0520.json b/domains/faris0520.json index b9a5940af..47d8118b4 100644 --- a/domains/faris0520.json +++ b/domains/faris0520.json @@ -1,11 +1,11 @@ { - "description": "Just My Personal Website", - "owner": { - "username": "Faris0520", - "email": "", - "twitter": "Faris0520" - }, - "record": { - "CNAME": "glitch.edgeapp.net" - } + "description": "Just My Personal Website", + "owner": { + "username": "Faris0520", + "email": "", + "twitter": "Faris0520" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } } diff --git a/domains/farish.json b/domains/farish.json index f7dc35832..7629059a5 100644 --- a/domains/farish.json +++ b/domains/farish.json @@ -1,6 +1,5 @@ { "description": "Email", - "repo": "", "owner": { "username": "fxrysh", "discord": "Fxrysh#5947", diff --git a/domains/farjanul.json b/domains/farjanul.json new file mode 100644 index 000000000..53b60200d --- /dev/null +++ b/domains/farjanul.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "farjanul", + "email": "farjanul10@gmail.com" + }, + + "record": { + "CNAME": "farjanul.github.io" + } +} diff --git a/domains/farvessafiyudeen.json b/domains/farvessafiyudeen.json index 286ecbe2a..27298171b 100644 --- a/domains/farvessafiyudeen.json +++ b/domains/farvessafiyudeen.json @@ -1,11 +1,11 @@ { - "description": "this is my personal portfolio website", - "repo": "https://github.com/Farves-dev", - "owner": { - "username": "Farves-dev", - "email": "farvessafiyudeen@gmail.com" - }, - "record": { - "URL": "https://farsa.netlify.app" - } + "description": "this is my personal portfolio website", + "repo": "https://github.com/Farves-dev", + "owner": { + "username": "Farves-dev", + "email": "farvessafiyudeen@gmail.com" + }, + "record": { + "URL": "https://farsa.netlify.app" + } } diff --git a/domains/farzan.json b/domains/farzan.json index b98bf2cdf..407b644e7 100644 --- a/domains/farzan.json +++ b/domains/farzan.json @@ -1,11 +1,11 @@ { - "description": "Farzan F A is a Dev", - "repo": "https://github.com/Farzanfa/Farzanfa.github.io", - "owner": { - "username": "farzanfa", - "email": "farzanfa007@gmail.com" - }, - "record": { - "CNAME": "Farzanfa.github.io" - } + "description": "Farzan F A is a Dev", + "repo": "https://github.com/Farzanfa/Farzanfa.github.io", + "owner": { + "username": "farzanfa", + "email": "farzanfa007@gmail.com" + }, + "record": { + "CNAME": "Farzanfa.github.io" + } } diff --git a/domains/fasdaa.json b/domains/fasdaa.json new file mode 100644 index 000000000..ed8831943 --- /dev/null +++ b/domains/fasdaa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "boomer4boomer", + "email": "abdulkx06epic@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/fastering.json b/domains/fastering.json index ec3da1f81..3379ab466 100644 --- a/domains/fastering.json +++ b/domains/fastering.json @@ -1,11 +1,11 @@ { - "description": "Fastering18 portofolio website", - "repo": "https://github.com/Fastering18/Fastering18.github.io", - "owner": { - "username": "fastering18", - "email": "fastering18@gmail.com" - }, - "record": { - "CNAME": "fastering18.github.io" - } + "description": "Fastering18 portofolio website", + "repo": "https://github.com/Fastering18/Fastering18.github.io", + "owner": { + "username": "fastering18", + "email": "fastering18@gmail.com" + }, + "record": { + "CNAME": "fastering18.github.io" + } } 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/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..496e14d2d --- /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/fayasnoushad.json b/domains/fayasnoushad.json index 5aae04145..d69244f41 100644 --- a/domains/fayasnoushad.json +++ b/domains/fayasnoushad.json @@ -1,12 +1,12 @@ { - "description": "My personal site", - "repo": "https://github.com/FayasNoushad/fayasnoushad.github.io", - "owner": { - "username": "FayasNoushad", - "email": "", - "twitter": "FayasNoushad" - }, - "record": { - "CNAME": "FayasNoushad.github.io" - } + "description": "My personal site", + "repo": "https://github.com/FayasNoushad/fayasnoushad.github.io", + "owner": { + "username": "FayasNoushad", + "email": "", + "twitter": "FayasNoushad" + }, + "record": { + "CNAME": "FayasNoushad.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/fbi.json b/domains/fbi.json index 07f537c44..2137eb11f 100644 --- a/domains/fbi.json +++ b/domains/fbi.json @@ -1,11 +1,11 @@ { - "description": "2Much4U's Website", - "repo": "https://github.com/2m4u", - "owner": { - "username": "2M4U", - "email": "2m4u@fbi.is-a.dev" - }, - "record": { - "URL": "https://2m4u.netlify.app" - } + "description": "2Much4U's Website", + "repo": "https://github.com/2m4u", + "owner": { + "username": "2M4U", + "email": "2m4u@fbi.is-a.dev" + }, + "record": { + "URL": "https://2m4u.netlify.app" + } } diff --git a/domains/fcircle-doc.json b/domains/fcircle-doc.json index 2b7319f95..cec6a1339 100644 --- a/domains/fcircle-doc.json +++ b/domains/fcircle-doc.json @@ -1,11 +1,11 @@ { - "description": "fcircle-doc", - "repo": "https://github.com/hiltay/hexo-circle-of-friends-doc", - "owner": { - "username": "yyyz", - "email": "yyyzlyh@gmail.com" - }, - "record": { - "URL": "https://hiltay.github.io/hexo-circle-of-friends-doc" - } + "description": "fcircle-doc", + "repo": "https://github.com/hiltay/hexo-circle-of-friends-doc", + "owner": { + "username": "yyyz", + "email": "yyyzlyh@gmail.com" + }, + "record": { + "URL": "https://hiltay.github.io/hexo-circle-of-friends-doc" + } } diff --git a/domains/fd-gods-clan.json b/domains/fd-gods-clan.json new file mode 100644 index 000000000..5979a0f57 --- /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/fdciabdul.json b/domains/fdciabdul.json index c52c8c9bc..586106db5 100644 --- a/domains/fdciabdul.json +++ b/domains/fdciabdul.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "fdciabdul", - "email": "abdulmuttaqin456@gmail.com" - }, - "record": { - "CNAME": "fdciabdul.github.io" - } + "owner": { + "username": "fdciabdul", + "email": "abdulmuttaqin456@gmail.com" + }, + "record": { + "CNAME": "fdciabdul.github.io" + } } diff --git a/domains/fear.json b/domains/fear.json new file mode 100644 index 000000000..f051f90b5 --- /dev/null +++ b/domains/fear.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FearMyShotz", + "email": "supremeplayzbs@gmail.com" + }, + "record": { + "CNAME": "fearmyshotz.github.io" + } +} diff --git a/domains/fel1x0u.json b/domains/fel1x0u.json index 9bcaaca82..85ddb9ab0 100644 --- a/domains/fel1x0u.json +++ b/domains/fel1x0u.json @@ -2,11 +2,11 @@ "description": "Add some description", "repo": "https://github.com/fel1x0u/fel1x0u.github.io", "owner": { - "username": "fel1x0u", - "email": "felixcou@pm.me", - "twitter": "fel1x0u1" + "username": "fel1x0u", + "email": "felixcou@pm.me", + "twitter": "fel1x0u1" }, "record": { - "CNAME": "fel1x0u.github.io" + "CNAME": "fel1x0u.github.io" } - } \ No newline at end of file +} 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/felipesantos.json b/domains/felipesantos.json new file mode 100644 index 000000000..89a5dac07 --- /dev/null +++ b/domains/felipesantos.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "felipehasantos", + "email": "felipehasantosbusiness@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/felix.json b/domains/felix.json index 3fc0e4fdb..2a680d3de 100644 --- a/domains/felix.json +++ b/domains/felix.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "github-username", - "email": "mail@felixyeung.dev" - }, - "repo": "https://github.com/felixyeungdev", - "record": { - "URL": "https://felixyeung.dev" - } + "owner": { + "username": "github-username", + "email": "mail@felixyeung.dev" + }, + "repo": "https://github.com/felixyeungdev", + "record": { + "URL": "https://felixyeung.dev" + } } diff --git a/domains/felixalguzman.json b/domains/felixalguzman.json index 081da55bc..2741d88b1 100644 --- a/domains/felixalguzman.json +++ b/domains/felixalguzman.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "felixalguzman", "email": "code@felixalguzman.msk.do" - }, + }, - "record": { + "record": { "URL": "https://github.com/felixalguzman" - } } - \ No newline at end of file +} diff --git a/domains/felixtr.json b/domains/felixtr.json index aa74e2904..d42c818ac 100644 --- a/domains/felixtr.json +++ b/domains/felixtr.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/tphuc/tphuc.github.io", - "owner": { - "username": "tphuc", - "email": "felixtran2000@gmail.com" - }, - "record": { - "CNAME": "tphuc.github.io" - } + "repo": "https://github.com/tphuc/tphuc.github.io", + "owner": { + "username": "tphuc", + "email": "felixtran2000@gmail.com" + }, + "record": { + "CNAME": "tphuc.github.io" + } } diff --git a/domains/femboy.json b/domains/femboy.json new file mode 100644 index 000000000..d5e4eef55 --- /dev/null +++ b/domains/femboy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "antithense", + "email": "nuffimail33@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/fengkch.json b/domains/fengkch.json index 5304c5a2d..04c6b7f75 100644 --- a/domains/fengkch.json +++ b/domains/fengkch.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "sohokay", "email": "kaichangfeng@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://github.com/sohokay" - } } - +} diff --git a/domains/ffidhackseivathueppadi.json b/domains/ffidhackseivathueppadi.json new file mode 100644 index 000000000..019148936 --- /dev/null +++ b/domains/ffidhackseivathueppadi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thanishhari", + "email": "suganyauvthanis@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ffidhackseivathueppadilinklinklinkanup.json b/domains/ffidhackseivathueppadilinklinklinkanup.json new file mode 100644 index 000000000..019148936 --- /dev/null +++ b/domains/ffidhackseivathueppadilinklinklinkanup.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thanishhari", + "email": "suganyauvthanis@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ffj20.json b/domains/ffj20.json new file mode 100644 index 000000000..fb3467f48 --- /dev/null +++ b/domains/ffj20.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "FFJ-20", + "email": "", + "discord": "FFJ 2.0#6693" + }, + "record": { + "CNAME": "ffj-20.github.io" + } +} 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..8590559c0 --- /dev/null +++ b/domains/files.allancoding.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "allancoding", + "email": "allancoding.dev@gmail.com", + "twitter": "allancoding", + "discord": "allancoding" + }, + "record": { + "CNAME": "allancoding.github.io" + } +} diff --git a/domains/files.dqmn.json b/domains/files.dqmn.json new file mode 100644 index 000000000..00a56a724 --- /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.hosts.json b/domains/files.hosts.json new file mode 100644 index 000000000..6ec5353f8 --- /dev/null +++ b/domains/files.hosts.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com", + "discord": "1094272477137481810" + }, + + "record": { + "CNAME": "net.beadman-network.com" + } +} diff --git a/domains/files.nota.json b/domains/files.nota.json new file mode 100644 index 000000000..9f3b53c56 --- /dev/null +++ b/domains/files.nota.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "dewiscool", + "email": "zerolikecyber.2005@gmail.com", + "discord": "878821057748926534" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/filip-razek.json b/domains/filip-razek.json new file mode 100644 index 000000000..dff9eb679 --- /dev/null +++ b/domains/filip-razek.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FilipRazek", + "email": "filip.razek@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/filip769.json b/domains/filip769.json index a87d5f6bc..cda5062d0 100644 --- a/domains/filip769.json +++ b/domains/filip769.json @@ -1,11 +1,11 @@ { - "description": "My personal website", - "repo": "https://github.com/filip-769", - "owner": { - "username": "filip-769", - "email": "filipdev769@gmail.com" - }, - "record": { - "CNAME": "web-1.hostnow.cz" - } + "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..50dfaa666 --- /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/filo.json b/domains/filo.json new file mode 100644 index 000000000..f5700b00f --- /dev/null +++ b/domains/filo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Filo6699", + "email": "karka2-6@rambler.ru" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/fincho.json b/domains/fincho.json new file mode 100644 index 000000000..467b5683d --- /dev/null +++ b/domains/fincho.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "finchodev", + "email": "zeltux21@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/finny.json b/domains/finny.json new file mode 100644 index 000000000..8cea26add --- /dev/null +++ b/domains/finny.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FinnyMarigold58", + "email": "teganherring2016@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/finsniper.json b/domains/finsniper.json new file mode 100644 index 000000000..4af193110 --- /dev/null +++ b/domains/finsniper.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..9716d384e --- /dev/null +++ b/domains/fire.json @@ -0,0 +1,9 @@ +{ + "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..5979a0f57 --- /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 a07e46225..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 new file mode 100644 index 000000000..d1290cae2 --- /dev/null +++ b/domains/firework.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Firewoork", + "email": "iaintflxzra122@gmail.com" + }, + "record": { + "CNAME": "firewoork.github.io" + } +} diff --git a/domains/firmware.json b/domains/firmware.json new file mode 100644 index 000000000..ae300c14e --- /dev/null +++ b/domains/firmware.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ffirmware", + "email": "netpaths@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/fishycraft.json b/domains/fishycraft.json index 3b0110629..e7f72248f 100644 --- a/domains/fishycraft.json +++ b/domains/fishycraft.json @@ -1,12 +1,12 @@ { - "description": "Fishycraft's amazing site", - "repo": "https://github.com/Fishycraft/fishycraft.github.io", - "owner": { - "username": "Fishycraft", - "email": "fishycraft@yahoo.com", - "twitter": "Fishycrafted" - }, - "record": { - "CNAME": "fishycraft.github.io" - } + "description": "Fishycraft's amazing site", + "repo": "https://github.com/Fishycraft/fishycraft.github.io", + "owner": { + "username": "Fishycraft", + "email": "fishycraft@yahoo.com", + "twitter": "Fishycrafted" + }, + "record": { + "CNAME": "fishycraft.github.io" + } } diff --git a/domains/fitrahmunir.json b/domains/fitrahmunir.json new file mode 100644 index 000000000..bab2e1793 --- /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/fjavierlh.json b/domains/fjavierlh.json index d7d2f5ef2..4bca23143 100644 --- a/domains/fjavierlh.json +++ b/domains/fjavierlh.json @@ -1,11 +1,11 @@ { - "description": "F Javier López GitHub profile", - "repo": "https://github.com/fjavierlh/fjavierlh.github.io", - "owner": { - "username": "fjavierlh", - "email": "fjavierlh@gmail.com" - }, - "record": { - "CNAME": "fjavierlh.github.io" - } + "description": "F Javier López GitHub profile", + "repo": "https://github.com/fjavierlh/fjavierlh.github.io", + "owner": { + "username": "fjavierlh", + "email": "fjavierlh@gmail.com" + }, + "record": { + "CNAME": "fjavierlh.github.io" + } } diff --git a/domains/fjuro.json b/domains/fjuro.json new file mode 100644 index 000000000..d6c77f408 --- /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/flame.json b/domains/flame.json new file mode 100644 index 000000000..69b6a7d4f --- /dev/null +++ b/domains/flame.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "flame3301", + "email": "neongamerflame@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/flamexode.json b/domains/flamexode.json new file mode 100644 index 000000000..6fed6ae84 --- /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/flazepe.json b/domains/flazepe.json new file mode 100644 index 000000000..69cb91e4d --- /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/flex.json b/domains/flex.json new file mode 100644 index 000000000..185fc075b --- /dev/null +++ b/domains/flex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DiHaNCodeZ", + "email": "dihanshahriar5@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/floofy.exe.json b/domains/floofy.exe.json new file mode 100644 index 000000000..ea3617d81 --- /dev/null +++ b/domains/floofy.exe.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "floofywork", + "email": "floofywork@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/floppa.json b/domains/floppa.json index 9c3c36689..86d69f171 100644 --- a/domains/floppa.json +++ b/domains/floppa.json @@ -1,9 +1,11 @@ { - "owner":{ - "username": "Luxxy-GF", - "email": "floppa@luxxy.xyz" - }, - "record":{ - "CNAME":"sophie-is-sexy.co.uk" - } -} + "owner": { + "username": "Luxxy-GF", + "email": "deniedaddicted@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/floppy.json b/domains/floppy.json index 4058deba7..5e9f83b57 100644 --- a/domains/floppy.json +++ b/domains/floppy.json @@ -1,12 +1,12 @@ { - "description": "floppy's website", - "repo": "https://github.com/FloppyCodes/FloppyCodes.github.io", - "owner": { - "username": "FloppyCodes", - "email": "floppydisk2020@outlook.com", - "twitter": "FloppyWasTaken" - }, - "record": { - "CNAME": "floppycodes.github.io" - } + "description": "floppy's website", + "repo": "https://github.com/FloppyCodes/FloppyCodes.github.io", + "owner": { + "username": "FloppyCodes", + "email": "floppydisk2020@outlook.com", + "twitter": "FloppyWasTaken" + }, + "record": { + "CNAME": "floppycodes.github.io" + } } 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..370aa541d 100644 --- a/domains/florin.json +++ b/domains/florin.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "flc995", "email": "flc995@gmail.com" - }, - "record": { + }, + "record": { "CNAME": "flc995.github.io" - } } - +} 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/fluxate.json b/domains/fluxate.json new file mode 100644 index 000000000..d46a972aa --- /dev/null +++ b/domains/fluxate.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NxyyLOL", + "email": "nxyylol@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/fluxxyboi.json b/domains/fluxxyboi.json new file mode 100644 index 000000000..1db3d5818 --- /dev/null +++ b/domains/fluxxyboi.json @@ -0,0 +1,11 @@ +{ + "description": "My portfolio/bio website", + "owner": { + "username": "FluxxyBoi", + "email": "", + "discord": "FluxxyBoi#9402" + }, + "record": { + "URL": "https://anshop.dorik.io" + } +} 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..9b5e94c12 --- /dev/null +++ b/domains/flymeth.json @@ -0,0 +1,11 @@ +{ + "record": { + "URL": "https://flymeth.net" + }, + "owner": { + "username": "Flymeth", + "email": "flymeth.yt@gmail.com", + "twitter": "flymeth" + }, + "description": "I'm a dev and I love to be that" +} diff --git a/domains/fmode.json b/domains/fmode.json new file mode 100644 index 000000000..7989d2960 --- /dev/null +++ b/domains/fmode.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jOaawd", + "email": "jorti28@apps.pusd.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/fndn.json b/domains/fndn.json new file mode 100644 index 000000000..26396c245 --- /dev/null +++ b/domains/fndn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TrivCodez", + "email": "Jayeshpoudel+ha@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/fong.json b/domains/fong.json new file mode 100644 index 000000000..158a0fef0 --- /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/fonts.json b/domains/fonts.json deleted file mode 100644 index b46dce324..000000000 --- a/domains/fonts.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Fonts for is-a.dev", - "repo": "https://github.com/mtgsquad/is-a-dev-fonts", - "owner": { - "username": "mtgsquad", - "email": "mtgsquad.dev@protonmail.com", - "twitter": "mtgsquad_dev" - }, - "record": { - "CNAME": "is-a-dev-fonts.pages.dev" - } -} diff --git a/domains/foo.json b/domains/foo.json new file mode 100644 index 000000000..819345531 --- /dev/null +++ b/domains/foo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mkemal", + "email": "mkemalkorkmaz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/fordevs.json b/domains/fordevs.json new file mode 100644 index 000000000..6b4de7a3b --- /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..265ba27e6 --- /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..b91676b04 --- /dev/null +++ b/domains/formuna.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FormunaGit", + "email": "moonacula555555555@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/forsas.json b/domains/forsas.json index 8029c627a..c5860d688 100644 --- a/domains/forsas.json +++ b/domains/forsas.json @@ -1,11 +1,11 @@ { - "description": "Forsas website and blog", - "repo": "https://github.com/forsas/forsas.github.io", - "owner": { - "username": "forsas", - "email": "forsaslt@gmail.com" - }, - "record": { - "CNAME": "forsas.github.io" - } + "description": "Forsas website and blog", + "repo": "https://github.com/forsas/forsas.github.io", + "owner": { + "username": "forsas", + "email": "forsaslt@gmail.com" + }, + "record": { + "CNAME": "forsas.github.io" + } } diff --git a/domains/foufou-exe.json b/domains/foufou-exe.json index 537ba5fb1..0e8e6a640 100644 --- a/domains/foufou-exe.json +++ b/domains/foufou-exe.json @@ -1,12 +1,12 @@ { - "description": "Personal website", - "repo": "https://github.com/Foufou-exe/foufou-exe.github.io", - "owner": { - "username": "Foufou-exe", - "email": "thibaut.maurras34@gmail.com", - "twitter": "MaurrasT" - }, - "record": { - "CNAME": "foufou-exe.github.io" - } + "description": "Personal website", + "repo": "https://github.com/Foufou-exe/foufou-exe.github.io", + "owner": { + "username": "Foufou-exe", + "email": "thibaut.maurras34@gmail.com", + "twitter": "MaurrasT" + }, + "record": { + "CNAME": "foufou-exe.github.io" + } } diff --git a/domains/fourjuaneight.json b/domains/fourjuaneight.json index 2cef409e2..23fd8c9ec 100644 --- a/domains/fourjuaneight.json +++ b/domains/fourjuaneight.json @@ -1,11 +1,11 @@ { - "description": "Juan's personal site", - "repo": "https://github.com/fourjuaneight", - "owner": { - "username": "fourjuaneight", - "email": "juan@villela.co" - }, - "record": { - "URL": "https://juanvillela.dev" - } + "description": "Juan's personal site", + "repo": "https://github.com/fourjuaneight", + "owner": { + "username": "fourjuaneight", + "email": "juan@villela.co" + }, + "record": { + "URL": "https://juanvillela.dev" + } } diff --git a/domains/fox.json b/domains/fox.json index 9baec1bde..b16862a58 100644 --- a/domains/fox.json +++ b/domains/fox.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "fox-tech0", "email": "red@team-ruben.tk" - }, + }, - "record": { + "record": { "CNAME": "fox-tech0.github.io" - } } - \ No newline at end of file +} diff --git a/domains/foxie.arman.json b/domains/foxie.arman.json index 727b37a31..47665244c 100644 --- a/domains/foxie.arman.json +++ b/domains/foxie.arman.json @@ -1,16 +1,11 @@ { - "description": "Foxie's Homepage by arman", - "repo": "https://github.com/ItzArman09/foxie.js", - "owner": { - "username": "ItzArman09", - "email": "contact@mail.arman.is-a.dev" - }, - "record": { - "A": [ - "185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153" - ] - } + "description": "Foxie's Homepage by arman", + "repo": "https://github.com/ItzArman09/foxie.js", + "owner": { + "username": "ItzArman09", + "email": "contact@mail.arman.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/foxsden.json b/domains/foxsden.json new file mode 100644 index 000000000..23f47940f --- /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/foxsophia.json b/domains/foxsophia.json new file mode 100644 index 000000000..6bfd62947 --- /dev/null +++ b/domains/foxsophia.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "foxsophia", + "email": "cchirrpy@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/foxy4096.json b/domains/foxy4096.json index cba5df249..262ce6b0b 100644 --- a/domains/foxy4096.json +++ b/domains/foxy4096.json @@ -1,12 +1,12 @@ { - "description": "A Dumb Web Devloper Who Loves Django", - "repo": "https://github.com/foxy4096/foxy4096.github.io", - "owner": { - "username": "foxy4096", - "email": "adityapriyadarshi669@gmail.com", - "twitter": "Foxy4096" - }, - "record": { - "CNAME": "foxy4096.github.io" - } + "description": "A Dumb Web Devloper Who Loves Django", + "repo": "https://github.com/foxy4096/foxy4096.github.io", + "owner": { + "username": "foxy4096", + "email": "adityapriyadarshi669@gmail.com", + "twitter": "Foxy4096" + }, + "record": { + "CNAME": "foxy4096.github.io" + } } diff --git a/domains/fqcxn.json b/domains/fqcxn.json new file mode 100644 index 000000000..0bc31d071 --- /dev/null +++ b/domains/fqcxn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Fqcxn", + "email": "", + "twitter": "FqcxnLmao", + "discord": "hong.kong" + }, + "record": { + "CNAME": "fqcxn.github.io" + } +} diff --git a/domains/franciskafieh.json b/domains/franciskafieh.json index 73e05b07c..b138808e1 100644 --- a/domains/franciskafieh.json +++ b/domains/franciskafieh.json @@ -1,11 +1,11 @@ { - "description": "Francis Kafieh's Personal Blog", - "repo": "https://github.com/franciskafieh/franciskafieh.github.io", - "owner": { - "username": "franciskafieh", - "email": "kafieh.francis@gmail.com" - }, - "record": { - "CNAME": "franciskafieh.github.io" - } + "description": "Francis Kafieh's Personal Blog", + "repo": "https://github.com/franciskafieh/franciskafieh.github.io", + "owner": { + "username": "franciskafieh", + "email": "kafieh.francis@gmail.com" + }, + "record": { + "CNAME": "franciskafieh.github.io" + } } diff --git a/domains/frazix.json b/domains/frazix.json index 1add9d6f9..2b9d8b541 100644 --- a/domains/frazix.json +++ b/domains/frazix.json @@ -1,11 +1,11 @@ { - "description": "Frazix's personal developer website", - "repo": "https://github.com/Frazix12/Frazix12.github.io", - "owner": { - "username": "Frazix12", - "email": "frazixgaming22@gmail.com" - }, - "record": { - "CNAME": "frazix12.github.io" - } + "description": "Frazix's personal developer website", + "repo": "https://github.com/Frazix12/Frazix12.github.io", + "owner": { + "username": "Frazix12", + "email": "frazixgaming22@gmail.com" + }, + "record": { + "CNAME": "frazix12.github.io" + } } diff --git a/domains/frcat.json b/domains/frcat.json index 235e95ab1..fc53b6928 100644 --- a/domains/frcat.json +++ b/domains/frcat.json @@ -1,12 +1,12 @@ { - "description": "FRCat's Website", - "repo": "https://github.com/frcat/Website", - "owner": { - "username": "French-Cat", - "email": "", - "discord": "French Cat#0002" - }, - "record": { - "CNAME": "frcat.github.io" - } + "description": "FRCat's Website", + "repo": "https://github.com/frcat/Website", + "owner": { + "username": "French-Cat", + "email": "", + "discord": "French Cat#0002" + }, + "record": { + "CNAME": "frcat.github.io" + } } diff --git a/domains/frd.json b/domains/frd.json index 4bc729000..afadb735e 100644 --- a/domains/frd.json +++ b/domains/frd.json @@ -1,12 +1,11 @@ { - "description": "frd.is-a.dev.", - "repo": "https://github.com/superXdev/portfolio-next", - "owner": { - "username": "superXdev", - "email": "fikrizhanking@gmail.com" - }, - "record": { - "TXT": "vc-domain-verify=frd.is-a.dev,e04ccfeb28b2ba8ec702", - "URL": "https://fikri.vercel.app" - } + "description": "frd.is-a.dev.", + "repo": "https://github.com/superXdev/portfolio-next", + "owner": { + "username": "superXdev", + "email": "fikrizhanking@gmail.com" + }, + "record": { + "URL": "https://fikri.vercel.app" + } } diff --git a/domains/freddy007.json b/domains/freddy007.json new file mode 100644 index 000000000..38a2dfbc3 --- /dev/null +++ b/domains/freddy007.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "anonphoenix007", + "email": "phoenixgibson007@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/freebies.json b/domains/freebies.json index b009ff341..efca87625 100644 --- a/domains/freebies.json +++ b/domains/freebies.json @@ -1,12 +1,11 @@ { - "description": "Free Resources For Your Designs!", - "repo": "https://github.com/icancodebeauty/freebies", - "owner": { - "username": "icancodebeauty", - "email": "admin@itsjava.ml", - "twitter": "" - }, - "record": { - "CNAME": "icancodebeauty.github.io" - } + "description": "Free Resources For Your Designs!", + "repo": "https://github.com/icancodebeauty/freebies", + "owner": { + "username": "icancodebeauty", + "email": "admin@itsjava.ml" + }, + "record": { + "CNAME": "icancodebeauty.github.io" + } } diff --git a/domains/freehuntx.json b/domains/freehuntx.json index 5d0815d12..d2da9325d 100644 --- a/domains/freehuntx.json +++ b/domains/freehuntx.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "FreehuntX", - "email": "", - "twitter": "https://twitter.com/freehuntx" - }, - "record": { - "URL": "https://freehuntx.github.io/freehunt-webpage" - } + "owner": { + "username": "FreehuntX", + "email": "", + "twitter": "freehuntx" + }, + "record": { + "URL": "https://freehuntx.github.io/freehunt-webpage" + } } diff --git a/domains/freitaseric.json b/domains/freitaseric.json new file mode 100644 index 000000000..b1fdb5bae --- /dev/null +++ b/domains/freitaseric.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "uEriic", + "email": "ueriic0@gmail.com" + }, + "record": { + "CNAME": "ueriic.github.io" + } +} diff --git a/domains/friendslikebd.json b/domains/friendslikebd.json new file mode 100644 index 000000000..202c14640 --- /dev/null +++ b/domains/friendslikebd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Akdipukhan", + "email": "Akdipu258@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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 index de9e121a4..3e5d85d30 100644 --- a/domains/frog.json +++ b/domains/frog.json @@ -1,11 +1,11 @@ { - "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" - } + "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/frost.json b/domains/frost.json new file mode 100644 index 000000000..9675211db --- /dev/null +++ b/domains/frost.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "mackrz", + "email": "macio181@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": [ + "v=spf1 a mx ip4:217.174.245.249 ~all", + "_github-pages-challenge-mackrz.frost.is-a.dev=def12fb95f33931df81e99f8e01c5c" + ] + } +} \ No newline at end of file diff --git a/domains/frost2k5.json b/domains/frost2k5.json index f07b37e69..5f9e452db 100644 --- a/domains/frost2k5.json +++ b/domains/frost2k5.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "FrosT2k5", - "email": "androygaming@protonmail.com" - }, - "record": { - "CNAME": "frost2k5.github.io" - } + "owner": { + "username": "FrosT2k5", + "email": "androygaming@protonmail.com" + }, + "record": { + "CNAME": "frost2k5.github.io" + } } diff --git a/domains/frostx.json b/domains/frostx.json index 996568557..a46c76fa5 100644 --- a/domains/frostx.json +++ b/domains/frostx.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "frostx-official", - "email": "denialfrostiks589@gmail.com", - "discord": "Frost X#6215", - "note": "Type in discord, i wont answer in email probably lol" - }, - "description": "Making portfolio here lol.", - "record": { - "CNAME": "frostx-official.github.io" - } + "owner": { + "username": "frostx-official", + "email": "denialfrostiks589@gmail.com", + "discord": "Frost X#6215", + "note": "Type in discord, i wont answer in email probably lol" + }, + "description": "Making portfolio here lol.", + "record": { + "CNAME": "frostx-official.github.io" + } } diff --git a/domains/frozzare.json b/domains/frozzare.json index fa26ebf9a..6921bb6e5 100644 --- a/domains/frozzare.json +++ b/domains/frozzare.json @@ -1,10 +1,10 @@ { - "description": "Personal website of Fredrik Forsmo", - "owner": { - "username": "frozzare", - "email": "fredrik.forsmo@gmail.com" - }, - "record": { - "URL": "https://frozzare.com" - } + "description": "Personal website of Fredrik Forsmo", + "owner": { + "username": "frozzare", + "email": "fredrik.forsmo@gmail.com" + }, + "record": { + "URL": "https://frozzare.com" + } } diff --git a/domains/fsanchir.json b/domains/fsanchir.json index b611f607c..ed7018635 100644 --- a/domains/fsanchir.json +++ b/domains/fsanchir.json @@ -1,12 +1,11 @@ { - "description": "FSanchir", - "repo": "https://github.com/fsanchir/fsanchir.github.io", - "owner": { - "username": "fsanchir", - "email": "fsanchir@fsip.ml", - "twitter": "None!" - }, - "record": { - "CNAME": "fsanchir.github.io" - } + "description": "FSanchir", + "repo": "https://github.com/fsanchir/fsanchir.github.io", + "owner": { + "username": "fsanchir", + "email": "fsanchir@fsip.ml" + }, + "record": { + "CNAME": "fsanchir.github.io" + } } diff --git a/domains/fuccsoc.json b/domains/fuccsoc.json index 450629f09..a6d5eff39 100644 --- a/domains/fuccsoc.json +++ b/domains/fuccsoc.json @@ -4,9 +4,7 @@ "username": "fuccsoc", "email": "me@fuccsoc.com" }, - "record": { - "URL": "https://fuccsoc.com" + "URL": "https://fuccsoc.me" } - } - + } diff --git a/domains/fuentes.json b/domains/fuentes.json new file mode 100644 index 000000000..963f41076 --- /dev/null +++ b/domains/fuentes.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "fuentez145", + "email": "gilbert.fuentes@ctu.edu.ph" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/fullpwn.json b/domains/fullpwn.json index 3987438e6..42e7d0a8e 100644 --- a/domains/fullpwn.json +++ b/domains/fullpwn.json @@ -1,12 +1,12 @@ { - "description": "My main site.", - "repo": "https://github.com/fullpwn/fullpwn.github.io", - "owner": { - "username": "fullpwn", - "email": "fullpwn@cumallover.me", - "twitter": "fullpwn" - }, - "record": { - "CNAME": "fullpwn.github.io" - } + "description": "My main site.", + "repo": "https://github.com/fullpwn/fullpwn.github.io", + "owner": { + "username": "fullpwn", + "email": "fullpwn@cumallover.me", + "twitter": "fullpwn" + }, + "record": { + "CNAME": "fullpwn.github.io" + } } diff --git a/domains/fulminatingmoat.json b/domains/fulminatingmoat.json index 403673491..fab44249f 100644 --- a/domains/fulminatingmoat.json +++ b/domains/fulminatingmoat.json @@ -1,12 +1,12 @@ { - "description": "Website", - "repo": "https://github.com/fulminatingmoat", - "owner": { - "username": "fulminatingmoat", - "email": "fulminatingmoat@fulminatingmoat.com", - "discord": "ᅠᅠ#6266" - }, - "record": { - "URL": "https://fulminatingmoat.com" - } + "description": "Website", + "repo": "https://github.com/fulminatingmoat", + "owner": { + "username": "fulminatingmoat", + "email": "fulminatingmoat@fulminatingmoat.com", + "discord": "ᅠᅠ#6266" + }, + "record": { + "URL": "https://fulminatingmoat.com" + } } diff --git a/domains/fumi.json b/domains/fumi.json new file mode 100644 index 000000000..9d16e5084 --- /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/fundid.json b/domains/fundid.json new file mode 100644 index 000000000..853ddc73b --- /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/furkancetinkaya.json b/domains/furkancetinkaya.json index c0acfb817..ef091ac3b 100644 --- a/domains/furkancetinkaya.json +++ b/domains/furkancetinkaya.json @@ -9,4 +9,4 @@ "record": { "CNAME": "furkancetinkaya-me.pages.dev" } -} +} diff --git a/domains/furret.json b/domains/furret.json new file mode 100644 index 000000000..6fe80983e --- /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..e44bca5ef --- /dev/null +++ b/domains/furry.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Furrycality", + "email": "furrycality@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/furrycality.json b/domains/furrycality.json new file mode 100644 index 000000000..e44bca5ef --- /dev/null +++ b/domains/furrycality.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Furrycality", + "email": "furrycality@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/furti.json b/domains/furti.json index e30b31622..a61c6e9e1 100644 --- a/domains/furti.json +++ b/domains/furti.json @@ -9,4 +9,4 @@ "record": { "CNAME": "furtidev.github.io" } -} +} diff --git a/domains/furycraft.json b/domains/furycraft.json index 613343c05..5417e305a 100644 --- a/domains/furycraft.json +++ b/domains/furycraft.json @@ -1,13 +1,13 @@ { - "description": "Used as portfolio and to promote my work", + "description": "Used as portfolio and to promote my work", "repo": "https://github.com/FuryCraft/furycraft.github.io", - "owner": { - "username": "FuryCraft", - "email": "pro.furycraft@outlook.fr", - "twitter": "furycraft_", - "discord": "Fury_Craft#9831" - }, - "record": { - "CNAME": "furycraft.github.io" - } + "owner": { + "username": "FuryCraft", + "email": "pro.furycraft@outlook.fr", + "twitter": "furycraft_", + "discord": "Fury_Craft#9831" + }, + "record": { + "CNAME": "furycraft.github.io" + } } diff --git a/domains/futurex.json b/domains/futurex.json new file mode 100644 index 000000000..91845eeb9 --- /dev/null +++ b/domains/futurex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Fbhfvj", + "email": "bebogeorge2008@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ip4:217.174.245.249 ~all" + } +} diff --git a/domains/g-pratik.json b/domains/g-pratik.json new file mode 100644 index 000000000..8659f82e0 --- /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/gab.json b/domains/gab.json new file mode 100644 index 000000000..b7bbe734a --- /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/gabimaciel.json b/domains/gabimaciel.json index 3d80ee451..06411540b 100644 --- a/domains/gabimaciel.json +++ b/domains/gabimaciel.json @@ -2,17 +2,11 @@ "description": "Gabi's webpage", "repo": "https://github.com/gabriel-maciel", "owner": { - "username": "gabriel-maciel", - "email": "gabrielmaciel@duck.com" + "username": "gabriel-maciel", + "email": "gabrielmaciel@duck.com" }, "record": { - "A": [ - "147.182.139.182" - ], - "MX": [ - "ns1.digitalocean.com", - "ns2.digitalocean.com", - "ns3.digitalocean.com" - ] + "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..bbb7a65db --- /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/gabriel.json b/domains/gabriel.json new file mode 100644 index 000000000..5b87317f2 --- /dev/null +++ b/domains/gabriel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Gabriel-lrx", + "email": "gabriel.reheb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gabrielyong.json b/domains/gabrielyong.json new file mode 100644 index 000000000..0a80ee3e2 --- /dev/null +++ b/domains/gabrielyong.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gabr1234iel", + "email": "gabrrrly@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gaetan.json b/domains/gaetan.json index 4f026dfc8..49ee34bac 100644 --- a/domains/gaetan.json +++ b/domains/gaetan.json @@ -1,10 +1,10 @@ { - "description": "My own is-a-dev adress, redirecting to my website.", - "owner": { - "username": "ghrlt", - "email": "gaetan@ghr.lt" - }, - "record": { - "URL": "https://ghr.lt" - } + "description": "My own is-a-dev adress, redirecting to my website.", + "owner": { + "username": "ghrlt", + "email": "gaetan@ghr.lt" + }, + "record": { + "URL": "https://ghr.lt" + } } diff --git a/domains/gala.json b/domains/gala.json index 2e32197b1..047199323 100644 --- a/domains/gala.json +++ b/domains/gala.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "p0lygun", "email": "solankivibhakar82@gmail.com" - }, + }, - "record": { - "CNAME": "stilllearning.tech" - } + "record": { + "URL": "https://stilllearning.tech" } - \ No newline at end of file +} diff --git a/domains/galacyber.json b/domains/galacyber.json index 2f969f27b..4c6baefea 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/galaxyfps.riviox.json b/domains/galaxyfps.riviox.json new file mode 100644 index 000000000..9cac87a71 --- /dev/null +++ b/domains/galaxyfps.riviox.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RivioxGaming", + "email": "rivioxyt@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gamersindo.json b/domains/gamersindo.json index 62cc3414c..202fb1170 100644 --- a/domains/gamersindo.json +++ b/domains/gamersindo.json @@ -1,10 +1,10 @@ { - "description": "Personal portofolio", - "owner": { - "username": "gamersindo1223", - "email": "mrgamers11223@gmail.com" - }, - "record": { - "CNAME": "my-portofolio-ek3.pages.dev" - } + "description": "Personal portofolio", + "owner": { + "username": "gamersindo1223", + "email": "mrgamers11223@gmail.com" + }, + "record": { + "CNAME": "my-portofolio-ek3.pages.dev" + } } diff --git a/domains/gamersvault.json b/domains/gamersvault.json new file mode 100644 index 000000000..63e45546b --- /dev/null +++ b/domains/gamersvault.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "lucenstuff", + "email": "lucentiniagustin@hotmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/gamew.json b/domains/gamew.json index f49242527..95be2964d 100644 --- a/domains/gamew.json +++ b/domains/gamew.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "Faris0520", "email": "faris.6dsdiaf@gmail.com" - }, + }, - "record": { + "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..2d6a3fd5b 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/ganesh.json b/domains/ganesh.json index 34fbaf874..aca99b3f9 100644 --- a/domains/ganesh.json +++ b/domains/ganesh.json @@ -1,11 +1,11 @@ { - "description": "Ganesh Sekhar's Personal Portfolio", - "repo": "https://github.com/iamganeshsekhar/iamganeshsekhar.github.io", - "owner": { - "username": "iamganeshsekhar", - "email": "ganeshsekha6@gmail.com" - }, - "record": { - "CNAME": "iamganeshsekhar.github.io" - } + "description": "Ganesh Sekhar's Personal Portfolio", + "repo": "https://github.com/iamganeshsekhar/iamganeshsekhar.github.io", + "owner": { + "username": "iamganeshsekhar", + "email": "ganeshsekha6@gmail.com" + }, + "record": { + "CNAME": "iamganeshsekhar.github.io" + } } diff --git a/domains/ganyu.json b/domains/ganyu.json new file mode 100644 index 000000000..ab782125b --- /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/gapindang.json b/domains/gapindang.json new file mode 100644 index 000000000..4e01ccd01 --- /dev/null +++ b/domains/gapindang.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "pindang-cloud", + "email": "gavinku890@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/garden.json b/domains/garden.json index b7efda5aa..93c6e7bed 100644 --- a/domains/garden.json +++ b/domains/garden.json @@ -1,11 +1,11 @@ { - "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" - } + "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/gattinhosbot.json b/domains/gattinhosbot.json new file mode 100644 index 000000000..0bbfe6a46 --- /dev/null +++ b/domains/gattinhosbot.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ], + "MX": [ + "mail.is-a.dev" + ], + "TXT": [ + "v=spf1 mx a:mail.is-a.dev ~all" + ] + } +} diff --git a/domains/gaurav.json b/domains/gaurav.json index 67d9c2ee9..9d8d2329a 100644 --- a/domains/gaurav.json +++ b/domains/gaurav.json @@ -1,11 +1,11 @@ { - "description": "Gaurav Tewari", - "repo": "https://github.com/tewarig/tewarig.github.io", - "owner": { - "username": "Gaurav", - "email": "gauravtewari111@gmail.com" - }, - "record": { - "CNAME": "tewarig.github.io" - } + "description": "Gaurav Tewari", + "repo": "https://github.com/tewarig/tewarig.github.io", + "owner": { + "username": "tewarig", + "email": "gauravtewari111@gmail.com" + }, + "record": { + "CNAME": "tewarig.github.io" + } } diff --git a/domains/gaurav87565.json b/domains/gaurav87565.json new file mode 100644 index 000000000..bb4bb6705 --- /dev/null +++ b/domains/gaurav87565.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gaurav87565", + "email": "pavithrashreeuchil@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gauravg.json b/domains/gauravg.json new file mode 100644 index 000000000..104cf7ec5 --- /dev/null +++ b/domains/gauravg.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "iamkai4", + "email": "guptagaurav25608@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gauravgupta.json b/domains/gauravgupta.json new file mode 100644 index 000000000..c195138ae --- /dev/null +++ b/domains/gauravgupta.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GauravGupta256", + "email": "gauravgupta25608@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gauravgupta256.json b/domains/gauravgupta256.json new file mode 100644 index 000000000..c195138ae --- /dev/null +++ b/domains/gauravgupta256.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GauravGupta256", + "email": "gauravgupta25608@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gauravkulkarni.json b/domains/gauravkulkarni.json index 8f9de0d37..b7ca74a9b 100644 --- a/domains/gauravkulkarni.json +++ b/domains/gauravkulkarni.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "gkulk007", "email": "gaurav.kulkarni@mescoeorg.onmicrosoft.com" - }, + }, - "record": { + "record": { "CNAME": "gkulk007.github.io" - } } - +} diff --git a/domains/gautam.json b/domains/gautam.json index 45204e0e0..5499c7091 100644 --- a/domains/gautam.json +++ b/domains/gautam.json @@ -1,10 +1,11 @@ { - "owner": { - "username": "GautamMKGarg", - "email": "", - "twitter": "GautamMKGarg" - }, - "record": { - "URL": "https://www.fiverr.com/gautammkgarg" - } -} + "owner": { + "username": "coderGtm", + "email": "gautammehta0000@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gautham.json b/domains/gautham.json new file mode 100644 index 000000000..61dc2a366 --- /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/gavin.json b/domains/gavin.json new file mode 100644 index 000000000..09dcae56e --- /dev/null +++ b/domains/gavin.json @@ -0,0 +1,13 @@ +{ + "description": "Gavin Ferdinand Chee's Personal Portfolio", + "repo": "https://github.com/GavinFerdinandChee/GavinFerdinandChee.github.io", + "owner": { + "username": "GavinFerdinandChee", + "email": "gavin.ferdinand@proton.me", + "email_work": "chee.gavin@gmail.com", + "discord": "gavin#5968" + }, + "record": { + "CNAME": "GavinFerdinandChee.github.io" + } +} diff --git a/domains/gavinw.json b/domains/gavinw.json new file mode 100644 index 000000000..d34a47cb3 --- /dev/null +++ b/domains/gavinw.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/gavinwhite314/gavinwhite.net", + "owner": { + "username": "gavinwhite314", + "email": "gavinwhite314@gmail.com" + }, + "record": { + "URL": "https://www.gavinwhite.net" + } +} diff --git a/domains/gavrielsatrio.json b/domains/gavrielsatrio.json index 09b6e0234..2c4c3a3ed 100644 --- a/domains/gavrielsatrio.json +++ b/domains/gavrielsatrio.json @@ -1,11 +1,11 @@ { - "description": "Gavriel Satrio github pages", - "repo": "https://github.com/gavrielsatrio/gavrielsatrio.github.io", - "owner": { - "username": "gavrielsatrio", - "email": "gavriel228@gmail.com" - }, - "record": { - "CNAME": "gavrielsatrio.github.io" - } + "description": "Gavriel Satrio github pages", + "repo": "https://github.com/gavrielsatrio/gavrielsatrio.github.io", + "owner": { + "username": "gavrielsatrio", + "email": "gavriel228@gmail.com" + }, + "record": { + "CNAME": "gavrielsatrio.github.io" + } } diff --git a/domains/gbot.json b/domains/gbot.json new file mode 100644 index 000000000..85de0ee08 --- /dev/null +++ b/domains/gbot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "stefano.delprete.08@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gdbotlist.json b/domains/gdbotlist.json new file mode 100644 index 000000000..7da192031 --- /dev/null +++ b/domains/gdbotlist.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "coolsausage45", + "email": "hakekr27@gmail.com" + }, + "record": { + "CNAME": "coolsausage45.github.io" + } +} diff --git a/domains/geckopico.json b/domains/geckopico.json new file mode 100644 index 000000000..18274eb05 --- /dev/null +++ b/domains/geckopico.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "davior", + "email": "david.iorlano@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/geekysudhir.json b/domains/geekysudhir.json new file mode 100644 index 000000000..1aa160a39 --- /dev/null +++ b/domains/geekysudhir.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "GeekySudhir", + "email": "sdhrsingh271@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "a608d9751f86d011d10a8d58ca5a93" + } +} diff --git a/domains/geenzo.json b/domains/geenzo.json new file mode 100644 index 000000000..d3bb1f294 --- /dev/null +++ b/domains/geenzo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "geenzo69", + "email": "geenzogamer164@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/genevera.json b/domains/genevera.json new file mode 100644 index 000000000..fb7cdbfcc --- /dev/null +++ b/domains/genevera.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "genevera", + "email": "genevera.codes+github@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/geopjr.json b/domains/geopjr.json index 0cabc342e..7ef8d9a31 100644 --- a/domains/geopjr.json +++ b/domains/geopjr.json @@ -1,11 +1,11 @@ { - "description": "Personal Portfolio", - "repo": "https://github.com/GeopJr/geopjr.dev", - "owner": { - "username": "GeopJr", - "email": "domains@geopjr.dev" - }, - "record": { - "URL": "https://geopjr.dev" - } + "description": "Personal Portfolio", + "repo": "https://github.com/GeopJr/geopjr.dev", + "owner": { + "username": "GeopJr", + "email": "domains@geopjr.dev" + }, + "record": { + "URL": "https://geopjr.dev" + } } diff --git a/domains/george.json b/domains/george.json index 208f0ae5f..366e408c6 100644 --- a/domains/george.json +++ b/domains/george.json @@ -1,11 +1,11 @@ { - "description": "George Aykara's personal developer website", - "repo": "https://github.com/aykarageorge", - "owner": { - "username": "aykarageorge", - "email": "aykarageorge@gmail.com" - }, - "record": { - "URL": "https://george.aykara4.com" - } + "description": "George Aykara's personal developer website", + "repo": "https://github.com/aykarageorge", + "owner": { + "username": "aykarageorge", + "email": "aykarageorge@gmail.com" + }, + "record": { + "URL": "https://george.aykara4.com" + } } diff --git a/domains/georgee.json b/domains/georgee.json deleted file mode 100644 index 174a78729..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/georgekaran.json b/domains/georgekaran.json index ae89517f2..757fca2c0 100644 --- a/domains/georgekaran.json +++ b/domains/georgekaran.json @@ -1,11 +1,11 @@ { - "description": "George Karan - Personal Page", - "repo": "https://github.com/georgekaran", - "owner": { - "username": "georgekaran", - "email": "georgekaran12@gmail.com" - }, - "record": { - "URL": "https://georgekaran.com" - } + "description": "George Karan - Personal Page", + "repo": "https://github.com/georgekaran", + "owner": { + "username": "georgekaran", + "email": "georgekaran12@gmail.com" + }, + "record": { + "URL": "https://georgekaran.com" + } } diff --git a/domains/gerzhahp.json b/domains/gerzhahp.json new file mode 100644 index 000000000..00cc1a567 --- /dev/null +++ b/domains/gerzhahp.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "zh4dev", + "email": "safeusdev@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/getify.json b/domains/getify.json index ea9d18506..b36352598 100644 --- a/domains/getify.json +++ b/domains/getify.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "getify", - "email": "domains@dontsend.me" - }, - "record": { - "URL": "https://me.getify.com" - } + "owner": { + "username": "getify", + "email": "domains@dontsend.me" + }, + "record": { + "URL": "https://me.getify.com" + } } diff --git a/domains/gfn.json b/domains/gfn.json new file mode 100644 index 000000000..c185299db --- /dev/null +++ b/domains/gfn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kolims", + "email": "kolimss1111@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gg.json b/domains/gg.json new file mode 100644 index 000000000..90478b2c3 --- /dev/null +++ b/domains/gg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "741as", + "email": "1@gggf.link" + }, + "record": { + "CNAME": "1.1ddns.eu.org" + } +} diff --git a/domains/ggio.json b/domains/ggio.json new file mode 100644 index 000000000..861dc18a1 --- /dev/null +++ b/domains/ggio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dusiadudusia", + "email": "ds4667861@gmaiL.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/ghalibcraft.json b/domains/ghalibcraft.json new file mode 100644 index 000000000..175737f67 --- /dev/null +++ b/domains/ghalibcraft.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ghalib-craftLeProgrammeur", + "email": "ghalibmezeghiche2012@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ghex.json b/domains/ghex.json index 6642b98f8..f62a60932 100644 --- a/domains/ghex.json +++ b/domains/ghex.json @@ -1,12 +1,12 @@ { - "description": "My personal website", - "repo": "https://github.com/ghextercortes/ghextercortes.github.io", - "owner": { - "username": "ghextercortes", - "email": "ghextershumies@gmail.com", - "twitter": "CortesGhexter" - }, - "record": { - "CNAME": "ghextercortes.github.io" - } + "description": "My personal website", + "repo": "https://github.com/ghextercortes/ghextercortes.github.io", + "owner": { + "username": "ghextercortes", + "email": "ghextershumies@gmail.com", + "twitter": "CortesGhexter" + }, + "record": { + "CNAME": "ghextercortes.github.io" + } } diff --git a/domains/ghfli.json b/domains/ghfli.json new file mode 100644 index 000000000..549637464 --- /dev/null +++ b/domains/ghfli.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ghfli", + "email": "newstart.infotech@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ghost.json b/domains/ghost.json index d931c1561..a200abcf1 100644 --- a/domains/ghost.json +++ b/domains/ghost.json @@ -1,11 +1,11 @@ { "owner": { - "username": "ghostdevv", - "email": "ghostdevbusiness@gmail.com", - "twitter": "onlyspaceghost" + "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 +} diff --git a/domains/ghostyt.json b/domains/ghostyt.json index f7e3df026..65cdeb09d 100644 --- a/domains/ghostyt.json +++ b/domains/ghostyt.json @@ -1,11 +1,11 @@ { - "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" - } + "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/gifaldyazka.json b/domains/gifaldyazka.json index 3493f8b6d..44d4b88c6 100644 --- a/domains/gifaldyazka.json +++ b/domains/gifaldyazka.json @@ -1,11 +1,11 @@ { - "description": "Just my personal website", - "repo": "https://github.com/gifaldyazkaa/gifaldyazkaa.github.io", - "owner": { - "username": "gifaldyazkaa", - "email": "official.gifaldy@gmail.com" - }, - "record": { - "CNAME": "gifaldyazkaa.github.io" - } + "description": "Just my personal website", + "repo": "https://github.com/gifaldyazkaa/gifaldyazkaa.github.io", + "owner": { + "username": "gifaldyazkaa", + "email": "official.gifaldy@gmail.com" + }, + "record": { + "CNAME": "gifaldyazkaa.github.io" + } } 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/giocoliere.json b/domains/giocoliere.json new file mode 100644 index 000000000..10770b706 --- /dev/null +++ b/domains/giocoliere.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "giocoliere", + "email": "simcrigjeki@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/giovannirapa.json b/domains/giovannirapa.json new file mode 100644 index 000000000..2547fd5a8 --- /dev/null +++ b/domains/giovannirapa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Givaa", + "email": "rapagiovanni@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/giovstechs.json b/domains/giovstechs.json new file mode 100644 index 000000000..d7fde2dfe --- /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/girigummadi.json b/domains/girigummadi.json index 5b7229283..fd746c039 100644 --- a/domains/girigummadi.json +++ b/domains/girigummadi.json @@ -1,11 +1,11 @@ { - "description": "My Personal Website", - "repo": "https://github.com/GiriGummadi", - "owner": { - "username": "GiriGummadi", - "email": "girigummadi5656@gmail.com" - }, - "record": { - "CNAME": "girigummadi.github.io" - } + "description": "My Personal Website", + "repo": "https://github.com/GiriGummadi", + "owner": { + "username": "GiriGummadi", + "email": "girigummadi5656@gmail.com" + }, + "record": { + "CNAME": "girigummadi.github.io" + } } diff --git a/domains/git-hoe.json b/domains/git-hoe.json new file mode 100644 index 000000000..d9bc3b672 --- /dev/null +++ b/domains/git-hoe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "git-hoe", + "email": "haxer@disroot.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/git.json b/domains/git.json new file mode 100644 index 000000000..f94d73b00 --- /dev/null +++ b/domains/git.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "git-hoe", + "email": "haxer@disroot.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/git.maskduck.json b/domains/git.maskduck.json index f93d4f10e..13b50dbf4 100644 --- a/domains/git.maskduck.json +++ b/domains/git.maskduck.json @@ -1,11 +1,11 @@ { - "description": "my git repos", - "owner": { - "username": "MaskDuck", - "email": "maskduckuwu@gmail.com", - "discord": "MaskDuck#7325" - }, - "record": { - "CNAME": "edge.redirect.pizza" - } + "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 new file mode 100644 index 000000000..1bbe85b7b --- /dev/null +++ b/domains/gitcat3.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GitCat3", + "email": "hulkbuster119@gmail.com" + }, + "record": { + "CNAME": "gitcat3.github.io" + } +} diff --git a/domains/github.json b/domains/github.json new file mode 100644 index 000000000..66bd72ebc --- /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..f5d16fdcf --- /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..a243818f6 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" - }, - "record": { - "URL": "https://givinghawk.xyz" - } + "owner": { + "username": "givinghawk", + "email": "contact@givinghawk.dev" + }, + "record": { + "URL": "https://givinghawk.dev/" + } } diff --git a/domains/gizmo.json b/domains/gizmo.json index f4619e450..2b3d00205 100644 --- a/domains/gizmo.json +++ b/domains/gizmo.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "gizmo-dev", - "email": "", - "twitter": "gizmo_gg" - }, - "record": { - "CNAME": "gizmo-dev.github.io" - } + "owner": { + "username": "gizmo-dev", + "email": "", + "twitter": "gizmo_gg" + }, + "record": { + "CNAME": "gizmo-dev.github.io" + } } diff --git a/domains/gizmora2.json b/domains/gizmora2.json index 49b5f88b2..6ce419682 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..849a0b862 100644 --- a/domains/gizzy.json +++ b/domains/gizzy.json @@ -1,12 +1,12 @@ - - { - "owner": { - "username": "NeroGizmoUwU", - "email": "minecraftcoolglibchannel@gmail.com" - }, - - "record": { - "CNAME": "nero-pi.duckdns.org" - } +{ + "description": "gizzy.is-a.dev", + "owner": { + "username": "GizzyUwU", + "email": "nerop455@gmail.com", + "discord": "gizzyowo" + }, + "record": { + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + "TXT": "forward-email=nerop455@gmail.com" } - \ No newline at end of file +} 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/gkr.json b/domains/gkr.json index 71f25038f..95630b123 100644 --- a/domains/gkr.json +++ b/domains/gkr.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "gautamkrishnar", - "email": "hello@gautamkrishnar.com" - }, - "record": { - "CNAME": "gautamkrishnar.github.io" - } + "owner": { + "username": "gautamkrishnar", + "email": "hello@gautamkrishnar.com" + }, + "record": { + "CNAME": "gautamkrishnar.github.io" + } } diff --git a/domains/gkucmierz.json b/domains/gkucmierz.json index 85339e1b2..03ace30ca 100644 --- a/domains/gkucmierz.json +++ b/domains/gkucmierz.json @@ -1,10 +1,10 @@ { - "description": "gkucmierz's personal blog", - "owner": { - "username": "gkucmierz", - "email": "gkucmierz@gmail.com" - }, - "record": { - "URL": "https://dev.to/gkucmierz" - } + "description": "gkucmierz's personal blog", + "owner": { + "username": "gkucmierz", + "email": "gkucmierz@gmail.com" + }, + "record": { + "URL": "https://dev.to/gkucmierz" + } } diff --git a/domains/glitchish.json b/domains/glitchish.json index 02740359a..7d5125f96 100644 --- a/domains/glitchish.json +++ b/domains/glitchish.json @@ -1,11 +1,11 @@ { - "description": "Glitch's .IS-A.DEV domain", - "repo": "https://github.com/glitchish.github.io", - "owner": { - "username": "glitchish", - "email": "gavinjstacey@gmail.com" - }, - "record": { - "CNAME": "glitchish.github.io" - } + "description": "Glitch's .IS-A.DEV domain", + "repo": "https://github.com/glitchish.github.io", + "owner": { + "username": "glitchish", + "email": "gavinjstacey@gmail.com" + }, + "record": { + "CNAME": "glitchish.github.io" + } } diff --git a/domains/glncy.json b/domains/glncy.json index 967068076..40b430332 100644 --- a/domains/glncy.json +++ b/domains/glncy.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "glncy", "email": "glency.a.tirao@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "glncy.github.io" - } } - \ No newline at end of file +} diff --git a/domains/glomdom.json b/domains/glomdom.json new file mode 100644 index 000000000..42a2e4b56 --- /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/glpzzz.json b/domains/glpzzz.json index f00ed5a64..e4507f012 100644 --- a/domains/glpzzz.json +++ b/domains/glpzzz.json @@ -1,11 +1,11 @@ { - "description": "Gabriel A. López López", - "repo": "https://github.com/glpzzz/glpzzz.github.io", - "owner": { - "username": "glpzzz", - "email": "glpz@daxslab.com" - }, - "record": { - "CNAME": "glpzzz.github.io" - } + "description": "Gabriel A. López López", + "repo": "https://github.com/glpzzz/glpzzz.github.io", + "owner": { + "username": "glpzzz", + "email": "glpz@daxslab.com" + }, + "record": { + "CNAME": "glpzzz.github.io" + } } diff --git a/domains/glqch.json b/domains/glqch.json new file mode 100644 index 000000000..40c87b49a --- /dev/null +++ b/domains/glqch.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Glqch404", + "email": "midoayoub778@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/gman.json b/domains/gman.json new file mode 100644 index 000000000..8c12a47c8 --- /dev/null +++ b/domains/gman.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "notGman", + "email": "gowthaman2185@gmail.com" + }, + "record": { + "URL": "https://notgman.github.io" + } +} diff --git a/domains/gnanaelisa.json b/domains/gnanaelisa.json index 87e0d2330..3ae720e86 100644 --- a/domains/gnanaelisa.json +++ b/domains/gnanaelisa.json @@ -1,11 +1,11 @@ { - "description": "Portfolio website", - "repo": "https://github.com/jgnanaelisa/gnanaelisa.github.io", - "owner": { - "username": "jgnanaelisa", - "email": "gnanaelisa@gmail.com" - }, - "record": { - "CNAME": "jgnanaelisa.github.io" - } + "description": "Portfolio website", + "repo": "https://github.com/jgnanaelisa/gnanaelisa.github.io", + "owner": { + "username": "jgnanaelisa", + "email": "gnanaelisa@gmail.com" + }, + "record": { + "CNAME": "jgnanaelisa.github.io" + } } diff --git a/domains/gnkbion.json b/domains/gnkbion.json new file mode 100644 index 000000000..0edc60ed1 --- /dev/null +++ b/domains/gnkbion.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RaannaKasturi", + "email": "raannakasturi@gmail.com" + }, + + "record": { + "A": ["185.27.134.3"] + } +} diff --git a/domains/go.avasthi.json b/domains/go.avasthi.json index 89158a2ce..339b7efff 100644 --- a/domains/go.avasthi.json +++ b/domains/go.avasthi.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "avasthi-git", - "email": "", - "telegram": "avasthie" - }, - - "record": { - "CNAME": "cname.short.io" - } + "owner": { + "username": "avasthi-git", + "email": "", + "telegram": "avasthie" + }, + + "record": { + "CNAME": "cname.short.io" + } } diff --git a/domains/god.json b/domains/god.json deleted file mode 100644 index 39a65df22..000000000 --- a/domains/god.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Austin's personal developer website", - "repo": "https://github.com/austindyoung", - "owner": { - "username": "austindyoung", - "email": "austin@doesweb.dev", - "twitter": "" - }, - "record": { - "URL": "https://austindyoung.github.io" - } -} diff --git a/domains/godwhite.json b/domains/godwhite.json index 253481fff..fb202d6bb 100644 --- a/domains/godwhite.json +++ b/domains/godwhite.json @@ -1,12 +1,12 @@ { - "description": "A javascript developer!", - "repo": "https://github.com/GodwhiteTaiwan/Docs", - "owner": { - "username": "GodwhiteTaiwan", - "email": "godwhite.yt.channel@gmail.com", - "twitter": "GW_GodwhiteTW" - }, - "record": { - "CNAME": "godwhitetaiwan.github.io" - } + "description": "A javascript developer!", + "repo": "https://github.com/GodwhiteTaiwan/Docs", + "owner": { + "username": "GodwhiteTaiwan", + "email": "godwhite.yt.channel@gmail.com", + "twitter": "GW_GodwhiteTW" + }, + "record": { + "CNAME": "godwhitetaiwan.github.io" + } } diff --git a/domains/godwhitelight.json b/domains/godwhitelight.json new file mode 100644 index 000000000..d5d97b1ee --- /dev/null +++ b/domains/godwhitelight.json @@ -0,0 +1,10 @@ +{ + "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/gokul.json b/domains/gokul.json index b8f0b9839..68abd0f71 100644 --- a/domains/gokul.json +++ b/domains/gokul.json @@ -1,11 +1,11 @@ { - "description": "Personal Page", - "repo": "https://github.com/gkdskp/gkdskp.github.io", - "owner": { - "username": "gkdskp", - "email": "gokuldskp@gmail.com" - }, - "record": { - "CNAME": "gkdskp.github.io" - } + "description": "Personal Page", + "repo": "https://github.com/gkdskp/gkdskp.github.io", + "owner": { + "username": "gkdskp", + "email": "gokuldskp@gmail.com" + }, + "record": { + "CNAME": "gkdskp.github.io" + } } diff --git a/domains/goobric.json b/domains/goobric.json new file mode 100644 index 000000000..691ed004d --- /dev/null +++ b/domains/goobric.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "goobric", + "email": "goobric@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/goobsoda.json b/domains/goobsoda.json new file mode 100644 index 000000000..457eaf834 --- /dev/null +++ b/domains/goobsoda.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BreadGhoti1", + "email": "breadghoti@gmail.com" + }, + "record": { + "A": ["134.56.183.128"] + } +} diff --git a/domains/gooplancton.json b/domains/gooplancton.json new file mode 100644 index 000000000..8479a8096 --- /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/gopalji.json b/domains/gopalji.json new file mode 100644 index 000000000..4af96d436 --- /dev/null +++ b/domains/gopalji.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gopaljigaur", + "email": "contact@gopalji.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/gorkem.json b/domains/gorkem.json index 5d6982cf8..ead7c2902 100644 --- a/domains/gorkem.json +++ b/domains/gorkem.json @@ -1,11 +1,11 @@ { - "description": "Görkem's Website", - "repo": "https://github.com/gorkeem/gorkeem.github.io", - "owner": { - "username": "gorkeem", - "email": "gorkemy000@gmail.com" - }, - "record": { - "CNAME": "gorkeem.github.io" - } + "description": "Görkem's Website", + "repo": "https://github.com/gorkeem/gorkeem.github.io", + "owner": { + "username": "gorkeem", + "email": "gorkemy000@gmail.com" + }, + "record": { + "CNAME": "gorkeem.github.io" + } } diff --git a/domains/gornostay25.json b/domains/gornostay25.json index 48cc451dc..a513417f5 100644 --- a/domains/gornostay25.json +++ b/domains/gornostay25.json @@ -1,19 +1,11 @@ { - "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" - ], - "TXT":"v=spf1 include:spf.improvmx.com ~all", - "MX":[ - "mx1.improvmx.com", - "mx2.improvmx.com" - ] - } + "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/gouthamkrishnakv.json b/domains/gouthamkrishnakv.json new file mode 100644 index 000000000..33231ee7c --- /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/govind.json b/domains/govind.json index 7f49fe86a..ed6e4a5b4 100644 --- a/domains/govind.json +++ b/domains/govind.json @@ -1,11 +1,11 @@ { - "description": "Govind's personal developer website", - "repo": "https://github.com/govind-shenoy", - "owner": { - "username": "govind-shenoy", - "email": "govindvshenoy@gmail.com" - }, - "record": { - "CNAME": "govind-shenoy.github.io" - } + "description": "Govind's personal developer website", + "repo": "https://github.com/govind-shenoy", + "owner": { + "username": "govind-shenoy", + "email": "govindvshenoy@gmail.com" + }, + "record": { + "CNAME": "govind-shenoy.github.io" + } } diff --git a/domains/govinda.json b/domains/govinda.json index 4e1ad18ea..d800c0e31 100644 --- a/domains/govinda.json +++ b/domains/govinda.json @@ -1,11 +1,11 @@ { - "description": "Govinda Khabas Website", - "repo": "https://github.com/gkhabas76/gkhabas76.github.io", - "owner": { - "username": "gkhabas76", - "email": "gkhabas76@gmail.com" - }, - "record": { - "CNAME": "gkhabas76.github.io" - } + "description": "Govinda Khabas Website", + "repo": "https://github.com/gkhabas76/gkhabas76.github.io", + "owner": { + "username": "gkhabas76", + "email": "gkhabas76@gmail.com" + }, + "record": { + "CNAME": "gkhabas76.github.io" + } } diff --git a/domains/grapeapplefruit.json b/domains/grapeapplefruit.json index 6a4ce5fbb..c879ea0ab 100644 --- a/domains/grapeapplefruit.json +++ b/domains/grapeapplefruit.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/grapeapplefruit/grapeapplefruit.github.io", - "owner": { - "username": "grapeapplefruit", - "email": "jaxenreiter957@gmail.com" - }, - "record": { - "CNAME": "grapeapplefruit.github.io" - } -} \ No newline at end of file + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/grapeapplefruit/grapeapplefruit.github.io", + "owner": { + "username": "grapeapplefruit", + "email": "jaxenreiter957@gmail.com" + }, + "record": { + "CNAME": "grapeapplefruit.github.io" + } +} diff --git a/domains/gravy.json b/domains/gravy.json index a000f4104..91545ee8e 100644 --- a/domains/gravy.json +++ b/domains/gravy.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "thatgravyboat", - "twitter": "thatgravyboat", - "discord": "thatgravyboat#0001", - "email": "" - }, - "record": { - "URL": "https://thatgravyboat.tech" - } + "owner": { + "username": "thatgravyboat", + "twitter": "thatgravyboat", + "discord": "thatgravyboat#0001", + "email": "" + }, + "record": { + "URL": "https://thatgravyboat.tech" + } } diff --git a/domains/grif.json b/domains/grif.json index 902587b56..fd14345d6 100644 --- a/domains/grif.json +++ b/domains/grif.json @@ -1,12 +1,11 @@ { - "description": "My own hub for everything that I do!", - "repo": "https://github.com/GrifTheDev/grifthedev.github.io", - "owner": { - "username": "Grif (GrifTheDev on GitHub)", - "email": "tmjeteo3@gmail.com" - }, - "record": { - "CNAME": "grifthedev.github.io" - } + "description": "My own hub for everything that I do!", + "repo": "https://github.com/GrifTheDev/grifthedev.github.io", + "owner": { + "username": "GrifTheDev", + "email": "tmjeteo3@gmail.com" + }, + "record": { + "CNAME": "grifthedev.github.io" + } } - diff --git a/domains/grishma-chhayani.json b/domains/grishma-chhayani.json new file mode 100644 index 000000000..65c236c19 --- /dev/null +++ b/domains/grishma-chhayani.json @@ -0,0 +1,11 @@ +{ + "description": "Grishma Profile.", + "repo": "https://github.com/grishma-chhayani/grishma-chhayani.github.io", + "owner": { + "username": "grishma-chhayani", + "email": "" + }, + "record": { + "CNAME": "grishma-chhayani.github.io" + } +} diff --git a/domains/grusio.json b/domains/grusio.json new file mode 100644 index 000000000..96e9fa8ba --- /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/gruu.json b/domains/gruu.json new file mode 100644 index 000000000..4fb62414f --- /dev/null +++ b/domains/gruu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gruufr", + "email": "tirisxz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/gskaff.json b/domains/gskaff.json new file mode 100644 index 000000000..c136d65cc --- /dev/null +++ b/domains/gskaff.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gevendra115", + "email": "bablutanwar160@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gstudiosx.json b/domains/gstudiosx.json index 41898195c..eaaff4df6 100644 --- a/domains/gstudiosx.json +++ b/domains/gstudiosx.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "GStudiosX2", "email": "ramazanogutlu0@gmail.com" - }, - "record": { + }, + "record": { "URL": "https://discord.gg/dV2M2HsH3F" - } } - +} diff --git a/domains/guess-who.json b/domains/guess-who.json new file mode 100644 index 000000000..f12b139a1 --- /dev/null +++ b/domains/guess-who.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "rayrsn@proton.me" + }, + "record": { + "URL": "https://rayr.link" + } +} diff --git a/domains/guilherme.json b/domains/guilherme.json index 62eab6181..9b82790c8 100644 --- a/domains/guilherme.json +++ b/domains/guilherme.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "iiMaxxi", "email": "iimaxxiguilham@gmail.com" - }, + }, - "record": { - "URL": "https://eu.dzxdev.repl.co/" - } + "record": { + "URL": "https://eu.dzxdev.repl.co" } - \ No newline at end of file +} diff --git a/domains/gunethra.json b/domains/gunethra.json new file mode 100644 index 000000000..bdff37f3b --- /dev/null +++ b/domains/gunethra.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Gunethra", + "email": "gunethrarp1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/guptasiddhant.json b/domains/guptasiddhant.json deleted file mode 100644 index d954107e6..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/gurkirat.json b/domains/gurkirat.json new file mode 100644 index 000000000..d483e6f65 --- /dev/null +++ b/domains/gurkirat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gurkiratz", + "email": "singh.gurkirat2707@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gurubhai.json b/domains/gurubhai.json new file mode 100644 index 000000000..8d3b3dcf9 --- /dev/null +++ b/domains/gurubhai.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Guru322", + "email": "sahoogurucharan00@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 a mx ip4:217.174.245.249 include:spf.improvmx.com ~all" + } +} diff --git a/domains/gurubot.json b/domains/gurubot.json new file mode 100644 index 000000000..eacdd0151 --- /dev/null +++ b/domains/gurubot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Guru322", + "email": "sahoogurucharan00@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gustavo.json b/domains/gustavo.json index ccde054e7..292181a2d 100644 --- a/domains/gustavo.json +++ b/domains/gustavo.json @@ -1,12 +1,12 @@ { - "description": "Gustavo Arsenio's talk blog ", - "repo": "https://github.com/GustavoArsenio/GustavoArsenio.github.io", - "owner": { - "username": "GustavoArsenio", - "email": "Gustavo.arsenio.sousa@hotmail.com", - "twitter": "gustavoarsenio" - }, - "record": { - "CNAME": "GustavoArsenio.github.io" - } + "description": "Gustavo Arsenio's talk blog ", + "repo": "https://github.com/GustavoArsenio/GustavoArsenio.github.io", + "owner": { + "username": "GustavoArsenio", + "email": "Gustavo.arsenio.sousa@hotmail.com", + "twitter": "gustavoarsenio" + }, + "record": { + "CNAME": "GustavoArsenio.github.io" + } } diff --git a/domains/guyen.json b/domains/guyen.json new file mode 100644 index 000000000..dc9a1a6e8 --- /dev/null +++ b/domains/guyen.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CommanderGuyen", + "email": "commanderguyen@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/gwada.json b/domains/gwada.json new file mode 100644 index 000000000..999094a06 --- /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/gxlpes.json b/domains/gxlpes.json index bdd53a9e8..9048a8028 100644 --- a/domains/gxlpes.json +++ b/domains/gxlpes.json @@ -4,9 +4,8 @@ "owner": { "username": "gxlpes", "email": "guilhermxlopes@gmail.com" - }, "record": { "CNAME": "gxlpes.github.io" } -} +} diff --git a/domains/gzfs.json b/domains/gzfs.json new file mode 100644 index 000000000..f8f9ccf98 --- /dev/null +++ b/domains/gzfs.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "gzfs", + "email": "vismbs@pm.me" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/h3r3t1c.json b/domains/h3r3t1c.json index ed14086f3..873191c4e 100644 --- a/domains/h3r3t1c.json +++ b/domains/h3r3t1c.json @@ -1,11 +1,11 @@ { - "description": "My personal page", - "repo": "https://github.com/lfdominguez/lfdominguez.github.io", - "owner": { - "username": "lfdominguez", - "email": "ldominguezvega@gmail.com" - }, - "record": { - "CNAME": "lfdominguez.github.io" - } + "description": "My personal page", + "repo": "https://github.com/lfdominguez/lfdominguez.github.io", + "owner": { + "username": "lfdominguez", + "email": "ldominguezvega@gmail.com" + }, + "record": { + "CNAME": "lfdominguez.github.io" + } } diff --git a/domains/h4rl.json b/domains/h4rl.json new file mode 100644 index 000000000..5d1c36eb9 --- /dev/null +++ b/domains/h4rl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "h4rldev", + "email": "h4rldev@proton.me" + }, + "record": { + "CNAME": "h4rldev-github-io.pages.dev" + } +} diff --git a/domains/h4sh.json b/domains/h4sh.json new file mode 100644 index 000000000..80175ae0f --- /dev/null +++ b/domains/h4sh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Master290", + "email": "contact@rzx.lol" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/habeel.json b/domains/habeel.json new file mode 100644 index 000000000..ffb9cf4df --- /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..abcb98df9 --- /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 index dc63fe90f..dfdda48e4 100644 --- a/domains/hachi.json +++ b/domains/hachi.json @@ -1,11 +1,11 @@ { - "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" - } + "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/hackerhawks.json b/domains/hackerhawks.json new file mode 100644 index 000000000..6830e4799 --- /dev/null +++ b/domains/hackerhawks.json @@ -0,0 +1,10 @@ +{ + "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..62dacdc06 --- /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/hackpig520.json b/domains/hackpig520.json new file mode 100644 index 000000000..8f3286541 --- /dev/null +++ b/domains/hackpig520.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xiaozhu2007", + "email": "lz19986912007@163.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/haco.json b/domains/haco.json new file mode 100644 index 000000000..2ae27d2f5 --- /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/hafidu.json b/domains/hafidu.json index ffd37649d..15e7d0d79 100644 --- a/domains/hafidu.json +++ b/domains/hafidu.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "hafidu", "email": "mochammad.hafidu@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "hafidu.github.io" - } } - \ No newline at end of file +} diff --git a/domains/haiko.json b/domains/haiko.json new file mode 100644 index 000000000..3c4691f39 --- /dev/null +++ b/domains/haiko.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "i-Ac1D-i", + "email": "acidondiscord99@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/halelui.json b/domains/halelui.json new file mode 100644 index 000000000..3a1e4dd00 --- /dev/null +++ b/domains/halelui.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Legend256", + "email": "heroku.1st.dyno@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/halil.json b/domains/halil.json new file mode 100644 index 000000000..b158aaa9e --- /dev/null +++ b/domains/halil.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ConnorDoesDev", + "email": "halil_ismail@yahoo.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/haloethans.json b/domains/haloethans.json new file mode 100644 index 000000000..60992e10a --- /dev/null +++ b/domains/haloethans.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "haloethanz", + "email": "haloethans-twitch@outlook.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/halokod.json b/domains/halokod.json new file mode 100644 index 000000000..8a226ac18 --- /dev/null +++ b/domains/halokod.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "denizkuzey06", + "email": "kralpasa1993@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hamza.json b/domains/hamza.json index 930529215..c350679ac 100644 --- a/domains/hamza.json +++ b/domains/hamza.json @@ -1,11 +1,10 @@ { - "description": "Hamza's website", - "owner": { - "username": "hamza8bit", - "email": "hamzabyte@gmail.com" - }, - "record": { - "CNAME": "hamza8bit.github.io" - - } + "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..80c8b43c5 --- /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..59dc21e5e --- /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/hansen.json b/domains/hansen.json index bacf2efcc..c66b73cc7 100644 --- a/domains/hansen.json +++ b/domains/hansen.json @@ -1,11 +1,11 @@ { - "description": "Portfolio site", - "repo": "https://github.com/HansenKhi/hansenkhi.github.io", - "owner": { - "username": "HansenKhi", - "email": "hansenkhi45@gmail.com" - }, - "record": { - "CNAME": "hansenkhi.github.io" - } + "description": "Portfolio site", + "repo": "https://github.com/HansenKhi/hansenkhi.github.io", + "owner": { + "username": "HansenKhi", + "email": "hansenkhi45@gmail.com" + }, + "record": { + "CNAME": "hansenkhi.github.io" + } } diff --git a/domains/happyenderman.json b/domains/happyenderman.json new file mode 100644 index 000000000..3a963a66c --- /dev/null +++ b/domains/happyenderman.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "happyendermangit", + "email": "" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/hara.json b/domains/hara.json new file mode 100644 index 000000000..3c79f763e --- /dev/null +++ b/domains/hara.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "HaraDesu", + "email": "aqjbgr09@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/hardik-chandan.json b/domains/hardik-chandan.json index a74b2cc5e..9fb07c5b6 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..86070eabf --- /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..b5bbad1ac 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", - "owner": { - "username": "Haritronic909", - "email": "hari2menon1234@gmail.com" - }, - "record": { - "CNAME": "haritronic909.github.io" - } + "description": "Hari's portfolio", + "repo": "https://github.com/harishnkr/harishnkr.github.io", + "owner": { + "username": "harishnkr", + "email": "hari2menon1234@gmail.com" + }, + "record": { + "CNAME": "harishnkr.github.io" + } } diff --git a/domains/haridarshan.json b/domains/haridarshan.json new file mode 100644 index 000000000..9e2397a98 --- /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/hariienesh.json b/domains/hariienesh.json new file mode 100644 index 000000000..40749ad91 --- /dev/null +++ b/domains/hariienesh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CosmicCodeBase", + "email": "hariienesh.cool@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/harikrishnan.json b/domains/harikrishnan.json index 6a5fab314..ab647b827 100644 --- a/domains/harikrishnan.json +++ b/domains/harikrishnan.json @@ -1,10 +1,10 @@ { - "description": "Hari's Portfolio Website", - "owner": { - "username": "Harikrishnan6336", - "email": "harikrishnan6336@gmail.com" - }, - "record": { - "CNAME": "Harikrishnan6336.github.io" - } + "description": "Hari's Portfolio Website", + "owner": { + "username": "Harikrishnan6336", + "email": "harikrishnan6336@gmail.com" + }, + "record": { + "CNAME": "Harikrishnan6336.github.io" + } } diff --git a/domains/harikrishnanps.json b/domains/harikrishnanps.json index 4d2c9bf1b..f9a9f2184 100644 --- a/domains/harikrishnanps.json +++ b/domains/harikrishnanps.json @@ -1,11 +1,11 @@ { - "description": "superjedi", - "repo": "https://github.com/super-jedi/super-jedi.github.io", - "owner": { - "username": "super-jedi", - "email": "harikrishnan.ps@hotmail.com" - }, - "record": { - "CNAME": "super-jedi.github.io" - } + "description": "superjedi", + "repo": "https://github.com/super-jedi/super-jedi.github.io", + "owner": { + "username": "super-jedi", + "email": "harikrishnan.ps@hotmail.com" + }, + "record": { + "CNAME": "super-jedi.github.io" + } } 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 16076dfcc..098df16ee 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/harmputman.json b/domains/harmputman.json index c28ee2497..7abc1eee8 100644 --- a/domains/harmputman.json +++ b/domains/harmputman.json @@ -1,12 +1,12 @@ { - "description": "Harm Putman a.k.a. High Five", - "repo": "https://github.com/harmputman", - "owner": { - "username": "harmputman", - "email": "", - "twitter": "harmputman" - }, - "record": { - "URL": "https://www.high-five.dev" - } + "description": "Harm Putman a.k.a. High Five", + "repo": "https://github.com/harmputman", + "owner": { + "username": "harmputman", + "email": "", + "twitter": "harmputman" + }, + "record": { + "URL": "https://www.high-five.dev" + } } diff --git a/domains/harrigan.json b/domains/harrigan.json index 32d85b357..bc7f976e0 100644 --- a/domains/harrigan.json +++ b/domains/harrigan.json @@ -1,11 +1,11 @@ { - "description": "Martin Harrigan's Homepage", - "repo": "https://github.com/harrigan", - "owner": { - "username": "harrigan", - "email": "martinharrigan@gmail.com" - }, - "record": { - "URL": "https://www.martinharrigan.ie" - } + "description": "Martin Harrigan's Homepage", + "repo": "https://github.com/harrigan", + "owner": { + "username": "harrigan", + "email": "martinharrigan@gmail.com" + }, + "record": { + "URL": "https://www.martinharrigan.ie" + } } diff --git a/domains/harry.json b/domains/harry.json index dab959c77..9a7a0be86 100644 --- a/domains/harry.json +++ b/domains/harry.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Harry-Ross", - "email": "hazross@hotmail.com" - }, - "description": "Personal site/blog", - "repository": "https://github.com/Harry-Ross/harry-ross.github.io.git", - "record": { - "CNAME": "harry-ross.github.io" - } + "owner": { + "username": "Harry-Ross", + "email": "hazross@hotmail.com" + }, + "description": "Personal site/blog", + "repository": "https://github.com/Harry-Ross/harry-ross.github.io.git", + "record": { + "CNAME": "harry-ross.github.io" + } } diff --git a/domains/harry456.json b/domains/harry456.json new file mode 100644 index 000000000..efcc66843 --- /dev/null +++ b/domains/harry456.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Harry4567", + "email": "rientunr@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/harrystudy.json b/domains/harrystudy.json new file mode 100644 index 000000000..1245acb0c --- /dev/null +++ b/domains/harrystudy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hongglong", + "email": "dylanluong3@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/harrythenegro.json b/domains/harrythenegro.json new file mode 100644 index 000000000..1245acb0c --- /dev/null +++ b/domains/harrythenegro.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hongglong", + "email": "dylanluong3@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/harsh-mehta.json b/domains/harsh-mehta.json new file mode 100644 index 000000000..7f9d23fc1 --- /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-patel.json b/domains/harsh-patel.json index 392f20c08..1680df13a 100644 --- a/domains/harsh-patel.json +++ b/domains/harsh-patel.json @@ -1,11 +1,11 @@ { - "description": "Harsh's website", - "repo": "https://github.com/harshpat/harshpat.github.io", - "owner": { - "username": "harshpat", - "email": "patel.harsh28@gmail.com" - }, - "record": { - "CNAME": "harshpat.github.io" - } + "description": "Harsh's website", + "repo": "https://github.com/harshpat/harshpat.github.io", + "owner": { + "username": "harshpat", + "email": "patel.harsh28@gmail.com" + }, + "record": { + "CNAME": "harshpat.github.io" + } } diff --git a/domains/harshad-patoliya.json b/domains/harshad-patoliya.json new file mode 100644 index 000000000..b8d75f94d --- /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/harshad.json b/domains/harshad.json new file mode 100644 index 000000000..3c3256cd9 --- /dev/null +++ b/domains/harshad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hb0313", + "email": "hbhandwaldar@gmail.com" + }, + "record": { + "CNAME": "hb0313.github.io" + } +} diff --git a/domains/harshatwo.json b/domains/harshatwo.json index 6edcd3422..ee9ba3dd3 100644 --- a/domains/harshatwo.json +++ b/domains/harshatwo.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "HARS23", - "email": "harshavarthankarunakaran@gmail.com" - }, - "record": { - "URL": "https://harshatwo.ga/" - } + "owner": { + "username": "HARS23", + "email": "harshavarthankarunakaran@gmail.com" + }, + "record": { + "URL": "https://harshatwo.netlify.app" + } } diff --git a/domains/harshk.json b/domains/harshk.json new file mode 100644 index 000000000..c148a07f1 --- /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/harshrai.json b/domains/harshrai.json new file mode 100644 index 000000000..88c70f271 --- /dev/null +++ b/domains/harshrai.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Harshrai1023", + "email": "harshrai1023@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/haru.json b/domains/haru.json index e33bd097e..f9a3ca490 100644 --- a/domains/haru.json +++ b/domains/haru.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "harudev21", "email": "mizuto.discord@gmail.com" - }, - "record": { + }, + "record": { "URL": "https://harudev.vercel.app" - } } - \ No newline at end of file +} diff --git a/domains/haruki.json b/domains/haruki.json new file mode 100644 index 000000000..ceaef4d0b --- /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/haruki.py.json b/domains/haruki.py.json new file mode 100644 index 000000000..f22198314 --- /dev/null +++ b/domains/haruki.py.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Anandkrishna34", + "email": "aanandkrishna344@gmail.com" + }, + "record": { + "CNAME": "proxy.private.danbot.host" + } +} diff --git a/domains/harukipy.json b/domains/harukipy.json new file mode 100644 index 000000000..b499b191b --- /dev/null +++ b/domains/harukipy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Anandkrishna34", + "email": "aanandkrishna344@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/haseena.json b/domains/haseena.json index 63673ef5e..bec89d5f7 100644 --- a/domains/haseena.json +++ b/domains/haseena.json @@ -1,11 +1,11 @@ { - "description": "Haseena's website", - "repo": "https://github.com/haseena-hassan/is-a-dev", - "owner": { - "username": "haseena-hassan", - "email": "haseena2199@gmail.com" - }, - "record": { - "CNAME": "haseena-hassan.github.io" - } + "description": "Haseena's website", + "repo": "https://github.com/haseena-hassan/is-a-dev", + "owner": { + "username": "haseena-hassan", + "email": "haseena2199@gmail.com" + }, + "record": { + "CNAME": "haseena-hassan.github.io" + } } diff --git a/domains/hashir.json b/domains/hashir.json new file mode 100644 index 000000000..7aa4b07cb --- /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/hassenmajor.json b/domains/hassenmajor.json new file mode 100644 index 000000000..8f8c9811d --- /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/hatkid.json b/domains/hatkid.json index efec6086c..14bb7fed7 100644 --- a/domains/hatkid.json +++ b/domains/hatkid.json @@ -1,11 +1,12 @@ { - "description": "Hat Kid's domain! (hat_kid)", - "repo": "https://github.com/thehatkid/thehatkid.github.io", - "owner": { - "username": "thehatkid", - "email": "saha22023@gmail.com" - }, - "record": { - "CNAME": "thehatkid.github.io" - } + "description": "hat_kid's domain!", + "repo": "https://github.com/thehatkid/thehatkid.github.io", + "owner": { + "username": "thehatkid", + "email": "saha22023@gmail.com", + "discord": "hat_kid" + }, + "record": { + "CNAME": "thehatkid.github.io" + } } diff --git a/domains/hatkidchan.json b/domains/hatkidchan.json index 245c3a866..c4cc42edb 100644 --- a/domains/hatkidchan.json +++ b/domains/hatkidchan.json @@ -1,13 +1,12 @@ { - "description": "Static personal page of hatkidchan (hkc) (thx Mia)", - "owner": { - "username": "hatkidchan", - "email": "hatkidchan@gmail.com", - "twitter": "hatkidchan", - "discord": "hkc#0517" - }, - "record": { - "A": ["216.128.176.102"], - "TXT": "aHR0cHM6Ly9oYXRraWRjaGFuLmlzLWEuZGV2L21lb3ctMGUwYWZkOWYtMzdlOC00ODc4LWJmYWYtOGE2MjAyYTI5ODFl" - } + "description": "kc personal website", + "owner": { + "username": "hatkidchan", + "email": "hatkidchan@gmail.com", + "twitter": "hatkidchan", + "discord": "hkc#0517" + }, + "record": { + "A": ["5.181.108.112"] + } } diff --git a/domains/haubaka.json b/domains/haubaka.json new file mode 100644 index 000000000..cca90542d --- /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..af635e002 --- /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..8ca3413f8 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" + "username": "neoryans", + "email": "ryansneo@gmail.com" }, "record": { - "CNAME": "neoryans.github.io" + "CNAME": "neoryans.github.io" } } diff --git a/domains/hazelnut.json b/domains/hazelnut.json new file mode 100644 index 000000000..a61366b02 --- /dev/null +++ b/domains/hazelnut.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TheMrRedstone", + "email": "hazelnutzhoney@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hazib.brahim.json b/domains/hazib.brahim.json new file mode 100644 index 000000000..66bd72ebc --- /dev/null +++ b/domains/hazib.brahim.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/hazwana.json b/domains/hazwana.json new file mode 100644 index 000000000..08fba89fb --- /dev/null +++ b/domains/hazwana.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hazwana", + "email": "n.hazwana@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hchs-bot.json b/domains/hchs-bot.json new file mode 100644 index 000000000..c04ade86e --- /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/hcs.json b/domains/hcs.json new file mode 100644 index 000000000..b585e5e80 --- /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 deleted file mode 100644 index e86eea464..000000000 --- a/domains/he.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner": { - "username": "lucidwave", - "email": "", - "twitter": "Pumao3" - }, - "record": { - "URL": "https://x3.lol" - } -} diff --git a/domains/hecterbonha.json b/domains/hecterbonha.json index 4430df0be..a950457cf 100644 --- a/domains/hecterbonha.json +++ b/domains/hecterbonha.json @@ -1,12 +1,11 @@ - - { - "owner": { +{ + "owner": { "username": "hecterbonha", "email": "untungsoandryanto@gmail.com" - }, - - "record": { - "CNAME": "hecterbonha.github.io" - } + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hector-vigil.json b/domains/hector-vigil.json index c6181f2db..651e7e1a0 100644 --- a/domains/hector-vigil.json +++ b/domains/hector-vigil.json @@ -1,11 +1,11 @@ { - "description": "hector-vigil", - "repo": "https://github.com/Hector-Vigil/hector-vigil.github.io", - "owner": { - "username": "hector-vigil", - "email": "vigilescalera.h@gmail.com" - }, - "record": { - "CNAME": "hector-vigil.github.io" - } + "description": "hector-vigil", + "repo": "https://github.com/Hector-Vigil/hector-vigil.github.io", + "owner": { + "username": "hector-vigil", + "email": "vigilescalera.h@gmail.com" + }, + "record": { + "CNAME": "hector-vigil.github.io" + } } diff --git a/domains/heet.json b/domains/heet.json new file mode 100644 index 000000000..267392c1c --- /dev/null +++ b/domains/heet.json @@ -0,0 +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" + } +} diff --git a/domains/hehe.json b/domains/hehe.json new file mode 100644 index 000000000..dce0e2fde --- /dev/null +++ b/domains/hehe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ebrahim-Ramadan", + "email": "ramadanebrahim791@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/heindale.json b/domains/heindale.json new file mode 100644 index 000000000..3f3ec6c2d --- /dev/null +++ b/domains/heindale.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Heindale", + "email": "danilanil123@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hekker.json b/domains/hekker.json new file mode 100644 index 000000000..31549d359 --- /dev/null +++ b/domains/hekker.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hekker4404", + "email": "akhil.ambati@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/heli-joshi.json b/domains/heli-joshi.json new file mode 100644 index 000000000..2dc622348 --- /dev/null +++ b/domains/heli-joshi.json @@ -0,0 +1,11 @@ +{ + "description": "Heli Profile.", + "repo": "https://github.com/heli-joshi/heli-joshi.github.io", + "owner": { + "username": "heli-joshi", + "email": "" + }, + "record": { + "CNAME": "heli-joshi.github.io" + } +} diff --git a/domains/hellaz.json b/domains/hellaz.json new file mode 100644 index 000000000..5075a2840 --- /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/hello.qqg00.json b/domains/hello.qqg00.json new file mode 100644 index 000000000..1651c390a --- /dev/null +++ b/domains/hello.qqg00.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ppg00", + "email": "vx2dsk@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hellscaped.json b/domains/hellscaped.json new file mode 100644 index 000000000..d35680282 --- /dev/null +++ b/domains/hellscaped.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hellscaped", + "email": "tappsyo@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hemal.json b/domains/hemal.json new file mode 100644 index 000000000..fbd218162 --- /dev/null +++ b/domains/hemal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hemal80", + "email": "hemalfnmondal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hemalmondal.json b/domains/hemalmondal.json new file mode 100644 index 000000000..fbd218162 --- /dev/null +++ b/domains/hemalmondal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hemal80", + "email": "hemalfnmondal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hemang.json b/domains/hemang.json new file mode 100644 index 000000000..a6c54d873 --- /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/hemanth.json b/domains/hemanth.json index 442e3087a..f3bd1be61 100644 --- a/domains/hemanth.json +++ b/domains/hemanth.json @@ -1,11 +1,11 @@ { - "description": "Hemanth's developer portfolio", - "repo": "https://github.com/Hemanthwarrier/hemanth.github.io", - "owner": { - "username": "Hemanthwarrier", - "email": "hemanthwarrier@gmail.com" - }, - "record": { - "CNAME": "Hemanthwarrier.github.io" - } + "description": "Hemanth's developer portfolio", + "repo": "https://github.com/Hemanthwarrier/hemanth.github.io", + "owner": { + "username": "Hemanthwarrier", + "email": "hemanthwarrier@gmail.com" + }, + "record": { + "CNAME": "Hemanthwarrier.github.io" + } } diff --git a/domains/henry.json b/domains/henry.json index e3a3f8415..59029ffca 100644 --- a/domains/henry.json +++ b/domains/henry.json @@ -1,12 +1,12 @@ { - "description": "My website, I guess?", - "repo": "https://github.com/henryhuangbc/henryhuangbc.github.io", - "owner": { - "username": "henryhuangbc", - "email": "space.galaxy.world@gmail.com", - "twitter": "hd3vv" - }, - "record": { - "CNAME": "henryhuangbc.github.io" - } + "description": "My website, I guess?", + "repo": "https://github.com/henryhuangbc/henryhuangbc.github.io", + "owner": { + "username": "henryhuangbc", + "email": "space.galaxy.world@gmail.com", + "twitter": "hd3vv" + }, + "record": { + "CNAME": "henryhuangbc.github.io" + } } 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 new file mode 100644 index 000000000..b505315db --- /dev/null +++ b/domains/herbert.json @@ -0,0 +1,9 @@ +{ + "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 363a1eb9f..64391241e 100644 --- a/domains/herkura.json +++ b/domains/herkura.json @@ -1,11 +1,11 @@ { - "description": "Herkura's Portfolio", - "repo": "https://github.com/herkura/.me", - "owner": { - "username": "herkura", - "email":"hershilpiplani16@gmail.com" - }, - "record": { - "CNAME": "herkura.github.io" - } + "description": "Herkura's Portfolio", + "repo": "https://github.com/herkura/.me", + "owner": { + "username": "herkura", + "email": "hershilpiplani16@gmail.com" + }, + "record": { + "CNAME": "herkura.github.io" + } } diff --git a/domains/hero.json b/domains/hero.json new file mode 100644 index 000000000..9f01c892a --- /dev/null +++ b/domains/hero.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "maanya125", + "email": "maanya125@gmail.com" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/herrkatze.json b/domains/herrkatze.json new file mode 100644 index 000000000..14bc93c37 --- /dev/null +++ b/domains/herrkatze.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "scmcgowen", + "email": "scmcgowen@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/hex4.json b/domains/hex4.json new file mode 100644 index 000000000..250bb45fa --- /dev/null +++ b/domains/hex4.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hex-4", + "email": "nenex54@pm.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hexaa.json b/domains/hexaa.json new file mode 100644 index 000000000..121befbc7 --- /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/hexadecimalbyte.json b/domains/hexadecimalbyte.json new file mode 100644 index 000000000..2be06c5ab --- /dev/null +++ b/domains/hexadecimalbyte.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HexadecimalByte", + "email": "stefan.wulf@t-online.de" + }, + "record": { + "URL": "https://hexadecimalbyte.github.io" + } +} diff --git a/domains/hextris.json b/domains/hextris.json index 41587ba36..c886a9b36 100644 --- a/domains/hextris.json +++ b/domains/hextris.json @@ -1,11 +1,11 @@ { - "description": "hextris.is-a.dev", - "repo": "https://github.com/NRZT567/nrzt567.github.io", - "owner": { - "username": "nrzt", - "email": "nrzt5678@gmail.com" - }, - "record": { - "CNAME": "nrzt567.github.io" - } + "description": "hextris.is-a.dev", + "repo": "https://github.com/NRZT567/nrzt567.github.io", + "owner": { + "username": "nrzt", + "email": "nrzt5678@gmail.com" + }, + "record": { + "CNAME": "nrzt567.github.io" + } } diff --git a/domains/heydaristo.json b/domains/heydaristo.json new file mode 100644 index 000000000..6e6f9e1ef --- /dev/null +++ b/domains/heydaristo.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "heydaristo", + "email": "heydaristo@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/heyjumanji.json b/domains/heyjumanji.json new file mode 100644 index 000000000..0f46636e9 --- /dev/null +++ b/domains/heyjumanji.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge650@silomails.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hi-lrmn.json b/domains/hi-lrmn.json new file mode 100644 index 000000000..2039ce7f5 --- /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/hidden.json b/domains/hidden.json new file mode 100644 index 000000000..64bacb24e --- /dev/null +++ b/domains/hidden.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TheHiddenEvil", + "email": "hijohn06@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hiddenblack.json b/domains/hiddenblack.json index 41b751d69..39dd09599 100644 --- a/domains/hiddenblack.json +++ b/domains/hiddenblack.json @@ -1,11 +1,11 @@ { - "description": "My website", - "repo": "https://github.com/Hidden-black/hidden-black.github.io", - "owner": { - "username": "hidden-black", - "email": "shashwatrai_28@outlook.com" - }, - "record": { - "CNAME": "hidden-black.github.io" - } + "description": "My website", + "repo": "https://github.com/Hidden-black/hidden-black.github.io", + "owner": { + "username": "hidden-black", + "email": "shashwatrai_28@outlook.com" + }, + "record": { + "CNAME": "hidden-black.github.io" + } } diff --git a/domains/hideko.json b/domains/hideko.json new file mode 100644 index 000000000..214efb721 --- /dev/null +++ b/domains/hideko.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hideko-dev", + "email": "hideko332200@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..499abbbea --- /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/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/hilmansyah.json b/domains/hilmansyah.json new file mode 100644 index 000000000..893b3ca17 --- /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/hilmysakti.json b/domains/hilmysakti.json new file mode 100644 index 000000000..e0918a503 --- /dev/null +++ b/domains/hilmysakti.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HilmySakti", + "email": "abandel09@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/himanshu.json b/domains/himanshu.json new file mode 100644 index 000000000..8000dc1db --- /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/himanshusardana.json b/domains/himanshusardana.json new file mode 100644 index 000000000..b0fb03a06 --- /dev/null +++ b/domains/himanshusardana.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HimanshuSardana", + "email": "himanshusardana2005@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/himanshusri.json b/domains/himanshusri.json new file mode 100644 index 000000000..236382677 --- /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 new file mode 100644 index 000000000..59bf9ed7d --- /dev/null +++ b/domains/himashu.json @@ -0,0 +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" + } +} diff --git a/domains/hinal-sanghvi.json b/domains/hinal-sanghvi.json new file mode 100644 index 000000000..eb0a7c667 --- /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..296e02cd4 --- /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..da22d3c01 --- /dev/null +++ b/domains/hirako.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hirakotm", + "email": "hirakoo@proton.me" + }, + "record": { + "CNAME": "website-5xr.pages.dev" + } +} diff --git a/domains/hiren-brahmbhatt.json b/domains/hiren-brahmbhatt.json new file mode 100644 index 000000000..de241f510 --- /dev/null +++ b/domains/hiren-brahmbhatt.json @@ -0,0 +1,11 @@ +{ + "description": "Hiren Brahmbhatt.", + "repo": "https://github.com/hiren-brahmbhatt/hiren-brahmbhatt.github.io", + "owner": { + "username": "hiren-brahmbhatt", + "email": "hiren-brahmbhatt@acquaintsoft.com" + }, + "record": { + "CNAME": "hiren-brahmbhatt.github.io" + } +} diff --git a/domains/hiren.json b/domains/hiren.json new file mode 100644 index 000000000..6f1ead841 --- /dev/null +++ b/domains/hiren.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hiren2001", + "email": "329065_tt21@ldceahm.gujgov.edu.in" + }, + "record": { + "CNAME": "hiren2001.github.io" + } +} diff --git a/domains/hiro.json b/domains/hiro.json index d83e04528..2d5225d7b 100644 --- a/domains/hiro.json +++ b/domains/hiro.json @@ -1,12 +1,11 @@ { - "description": "Personal website for now", - "repo": "https://github.com/XxHiroTTVxX", - "owner": { - "username": "XxHiroTTVxX", - "email": "xxhirottvxx@gmail.com", - "twitter": "" - }, - "record": { - "CNAME": "incognito-20-production-9fe2.up.railway.app" - } + "owner": { + "username": "XxHiroTTVxX", + "email": "phoenixmerlinwolf894@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } } diff --git a/domains/hironichu.json b/domains/hironichu.json index 622c6bf6c..5a9eb5e77 100644 --- a/domains/hironichu.json +++ b/domains/hironichu.json @@ -1,16 +1,12 @@ { - "description": "Yes I am a developer", - "repo": "https://github.com/hironichu", - "owner": { - "username": "hironichu", - "email": "hironichu@gmail.com" - }, - "record": { - "A": [ - "34.120.54.55" - ], - "TXT": [ - "deno-com-validation=f1b7200ba5f97a80db0aaa12" - ] - } + "description": "Yes I am a developer", + "repo": "https://github.com/hironichu", + "owner": { + "username": "hironichu", + "email": "hironichu@gmail.com" + }, + "record": { + "A": ["34.120.54.55"], + "TXT": "deno-com-validation=f1b7200ba5f97a80db0aaa12" + } } diff --git a/domains/hisham.json b/domains/hisham.json index 7b3b6561f..058b1f2b2 100644 --- a/domains/hisham.json +++ b/domains/hisham.json @@ -1,11 +1,11 @@ { - "description": "Hisham is a dev", - "repo": "https://github.com/hishamalip/hishamalip.github.io", - "owner": { - "username": "hishamalip", - "email": "hishamalip@gmail.com" - }, - "record": { - "CNAME": "hishamalip.github.io" - } + "description": "Hisham is a dev", + "repo": "https://github.com/hishamalip/hishamalip.github.io", + "owner": { + "username": "hishamalip", + "email": "hishamalip@gmail.com" + }, + "record": { + "CNAME": "hishamalip.github.io" + } } diff --git a/domains/hitesh-makodiya.json b/domains/hitesh-makodiya.json new file mode 100644 index 000000000..089608c0e --- /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/hiwind.json b/domains/hiwind.json new file mode 100644 index 000000000..1c1326f20 --- /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/hjmao.json b/domains/hjmao.json index 33b6cca15..7f64a25af 100644 --- a/domains/hjmao.json +++ b/domains/hjmao.json @@ -1,11 +1,11 @@ { - "description": "hjmao.is-a.dev", - "repo": "https://github.com/huajianmao/huajianmao.github.io", - "owner": { - "username": "huajianmao", - "email": "huajianmao@gmail.com" - }, - "record": { - "CNAME": "huajianmao.github.io" - } + "description": "hjmao.is-a.dev", + "repo": "https://github.com/huajianmao/huajianmao.github.io", + "owner": { + "username": "huajianmao", + "email": "huajianmao@gmail.com" + }, + "record": { + "CNAME": "huajianmao.github.io" + } } diff --git a/domains/hkamran.json b/domains/hkamran.json new file mode 100644 index 000000000..3710123e0 --- /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/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/hntr.json b/domains/hntr.json new file mode 100644 index 000000000..05aaaba31 --- /dev/null +++ b/domains/hntr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HunterAPI", + "email": "forsynapse123@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hoang3409.json b/domains/hoang3409.json new file mode 100644 index 000000000..d6323c21a --- /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 cf4c7e60f..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/holgeb.json b/domains/holgeb.json new file mode 100644 index 000000000..aa2798598 --- /dev/null +++ b/domains/holgeb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "niho9807", + "email": "niklas.holke@gmx.de" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/homemadestea58.json b/domains/homemadestea58.json index f645884c3..3d4cced78 100644 --- a/domains/homemadestea58.json +++ b/domains/homemadestea58.json @@ -1,11 +1,11 @@ { - "description": "Add some description", - "repo": "https://github.com/Homemadestea58homemadestea58.github.io/", - "owner": { - "username": "Homemadestea58", - "email": "conor.collins+isadev@dbbstu.catholic.edu.au" - }, - "record": { - "CNAME": "homemadestea58.github.io" - } + "description": "Add some description", + "repo": "https://github.com/Homemadestea58homemadestea58.github.io", + "owner": { + "username": "Homemadestea58", + "email": "conor.collins+isadev@dbbstu.catholic.edu.au" + }, + "record": { + "CNAME": "homemadestea58.github.io" + } } diff --git a/domains/horn7x.is-a.dev.json b/domains/horn7x.is-a.dev.json new file mode 100644 index 000000000..faba2ce3f --- /dev/null +++ b/domains/horn7x.is-a.dev.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "horn7x", + "email": "133672531+horn7x@users.noreply.github.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 958443139918598204" + }, + + "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=horn7x@gmail.com" + } +} diff --git a/domains/horn7x.json b/domains/horn7x.json new file mode 100644 index 000000000..d49b3cfe3 --- /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/hosting-test.json b/domains/hosting-test.json new file mode 100644 index 000000000..efb6f0325 --- /dev/null +++ b/domains/hosting-test.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/hosts.json b/domains/hosts.json new file mode 100644 index 000000000..63b4bc0bd --- /dev/null +++ b/domains/hosts.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 mx a:mailx.is-a.dev ip4:217.174.245.249 ~all", + "MX": ["mailx.is-a.dev"] + } +} diff --git a/domains/hotdevs.json b/domains/hotdevs.json new file mode 100644 index 000000000..88b2f462d --- /dev/null +++ b/domains/hotdevs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "musu10gj", + "email": "samzagamer4@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hotmayonaise.json b/domains/hotmayonaise.json new file mode 100644 index 000000000..5c3596baf --- /dev/null +++ b/domains/hotmayonaise.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hotmayonaise", + "email": "roby123ted@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hotspot.json b/domains/hotspot.json new file mode 100644 index 000000000..ca1821523 --- /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..7a22a4955 --- /dev/null +++ b/domains/houlton.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ahoulton", + "email": "ignhoulton@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/houxiaozhao.json b/domains/houxiaozhao.json new file mode 100644 index 000000000..e21a4f4bc --- /dev/null +++ b/domains/houxiaozhao.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "houxiaozhao", + "email": "891855179@qq.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hozzywozzy.json b/domains/hozzywozzy.json new file mode 100644 index 000000000..dfe4605d0 --- /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/hqmt.json b/domains/hqmt.json new file mode 100644 index 000000000..911a64a24 --- /dev/null +++ b/domains/hqmt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HQMTGaming", + "email": "hoangquocminhthien@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hqmtgaming.json b/domains/hqmtgaming.json new file mode 100644 index 000000000..911a64a24 --- /dev/null +++ b/domains/hqmtgaming.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HQMTGaming", + "email": "hoangquocminhthien@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/httphypixelnet.json b/domains/httphypixelnet.json new file mode 100644 index 000000000..be6dd335e --- /dev/null +++ b/domains/httphypixelnet.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "httphypixelnet", + "email": "intenstudios369@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hu-kaixiang.json b/domains/hu-kaixiang.json index 3ad085a46..c12a5a019 100644 --- a/domains/hu-kaixiang.json +++ b/domains/hu-kaixiang.json @@ -1,11 +1,11 @@ { - "description": "Hu Kaixiang's Personal Site", - "repo": "https://github.com/Maxhu787/g4o2-website", - "owner": { - "username": "Maxhu787", - "email": "maxhu787@gmail.com" - }, - "record": { - "CNAME": "maxhu787.github.io" - } + "description": "Hu Kaixiang's Personal Site", + "repo": "https://github.com/Maxhu787/g4o2-website", + "owner": { + "username": "Maxhu787", + "email": "maxhu787@gmail.com" + }, + "record": { + "CNAME": "maxhu787.github.io" + } } diff --git a/domains/huby.json b/domains/huby.json index 7d2d0bd03..50718f959 100644 --- a/domains/huby.json +++ b/domains/huby.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "OpAayush", - "email": "aayushmagrawal@gmail.com", - "discord": "Aayu5h#1737" - }, - "record": { - "CNAME": "7cfe5323-1a5d-4086-9226-3475a4e3cf5a.id.repl.co" - } + "owner": { + "username": "OpAayush", + "email": "aayushmagrawal@gmail.com", + "discord": "Aayu5h#1737" + }, + "record": { + "CNAME": "7cfe5323-1a5d-4086-9226-3475a4e3cf5a.id.repl.co" + } } diff --git a/domains/hugovidafe.json b/domains/hugovidafe.json deleted file mode 100644 index b0ef69294..000000000 --- a/domains/hugovidafe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Hugovidafe's website", - "repo": "https://github.com/Hugovidafe-OSS", - "owner": { - "username": "Hugovidafe", - "email": "hugo@hugovidafe.dev", - "twitter": "Hugovidafe" - }, - "record": { - "URL": "https://hugovidafe.dev" - } -} diff --git a/domains/human.json b/domains/human.json new file mode 100644 index 000000000..d816001f7 --- /dev/null +++ b/domains/human.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Jonathan0827", + "email": "limjunehyeop@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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 3e0aa785d..902d50e42 100644 --- a/domains/hung-contact.json +++ b/domains/hung-contact.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "hunghg255", - "email": "giahunghust@gmail.com" - }, - "record": { - "URL": "https://hunghg-contact.vercel.app/" - } + "owner": { + "username": "hunghg255", + "email": "giahunghust@gmail.com" + }, + "record": { + "URL": "https://hunghg-contact.vercel.app" + } } diff --git a/domains/hung-portfolio.json b/domains/hung-portfolio.json deleted file mode 100644 index ed7a54f25..000000000 --- a/domains/hung-portfolio.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "hunghg255", - "email": "giahunghust@gmail.com" - }, - "record": { - "URL": "https://hunghg-portfolio.vercel.app/" - } -} diff --git a/domains/hung.json b/domains/hung.json new file mode 100644 index 000000000..1e15cc828 --- /dev/null +++ b/domains/hung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hunghg255", + "email": "giahunghust@gmail.com" + }, + "record": { + "URL": "https://hunghg-portfolio.vercel.app" + } +} diff --git a/domains/hunt.json b/domains/hunt.json new file mode 100644 index 000000000..dce8cd51b --- /dev/null +++ b/domains/hunt.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "achabacha949", + "email": "achabacha949@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file 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..2aa1983be 100644 --- a/domains/huntroid.json +++ b/domains/huntroid.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "hunterz-killer", "email": "srimath8@gmail.com" - }, - "record": { + }, + "record": { "A": ["185.199.108.153"] - } } - \ No newline at end of file +} diff --git a/domains/husain.json b/domains/husain.json new file mode 100644 index 000000000..01fbb111a --- /dev/null +++ b/domains/husain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "H-Killer", + "email": "hadiabode34@gmail.com" + }, + "record": { + "A": ["184.94.215.77"] + } +} diff --git a/domains/huseyin.json b/domains/huseyin.json index c5ba12225..7dfdc9605 100644 --- a/domains/huseyin.json +++ b/domains/huseyin.json @@ -1,11 +1,11 @@ { - "description": "Hüseyin Çınars personal web site", - "repo": "https://github.com/Huseyin-Cinar/huseyin.dev", - "owner": { - "username": "Huseyin-Cinar", - "email": "gslicocuk8080@gmail.com" - }, - "record": { - "CNAME": "Huseyin-Cinar.github.io" - } + "description": "Hüseyin Çınars personal web site", + "repo": "https://github.com/Huseyin-Cinar/huseyin.dev", + "owner": { + "username": "Huseyin-Cinar", + "email": "gslicocuk8080@gmail.com" + }, + "record": { + "CNAME": "Huseyin-Cinar.github.io" + } } diff --git a/domains/huyduc.json b/domains/huyduc.json new file mode 100644 index 000000000..77392e85c --- /dev/null +++ b/domains/huyduc.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "buihuyduc123", + "email": "buihuyduckn@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/huyen.json b/domains/huyen.json index 470b117cd..32827420e 100644 --- a/domains/huyen.json +++ b/domains/huyen.json @@ -9,4 +9,4 @@ "record": { "CNAME": "huyenit200x.github.io" } -} +} diff --git a/domains/huzaifa.json b/domains/huzaifa.json new file mode 100644 index 000000000..6491e9f65 --- /dev/null +++ b/domains/huzaifa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SyntaxErrorSolos", + "email": "tcs223647@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hvlxh.json b/domains/hvlxh.json new file mode 100644 index 000000000..8c37c5581 --- /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.json b/domains/hvn.json new file mode 100644 index 000000000..103021ac7 --- /dev/null +++ b/domains/hvn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "goesbyabhi", + "email": "abxisxekpanda@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hycord.json b/domains/hycord.json index e694b105e..e77e5439c 100644 --- a/domains/hycord.json +++ b/domains/hycord.json @@ -1,12 +1,11 @@ { - "description": "Hi! I'm Hycord!", - "repo": "https://github.com/hycord/hycord.github.io", - "owner": { - "username": "hycord", - "email": "hycord@duck.com", - "twitter": "IGNHycord" - }, - "record": { - "CNAME": "hycord.github.io" - } + "description": "Hi! I'm Hycord!", + "owner": { + "username": "hycord", + "email": "hycord@hycordia.com", + "twitter": "IGNHycord" + }, + "record": { + "CNAME": "xbwlnzmg.up.railway.app" + } } diff --git a/domains/hydrogen.json b/domains/hydrogen.json new file mode 100644 index 000000000..4edc90efb --- /dev/null +++ b/domains/hydrogen.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Coding4Hours", + "email": "neealdon3@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hyena.json b/domains/hyena.json index 3480d0a87..c23a97f8e 100644 --- a/domains/hyena.json +++ b/domains/hyena.json @@ -1,11 +1,11 @@ { - "description": "hagen's portfolio", - "repo": "https://github.com/MrGriefs/hyena.gay", - "owner": { - "username": "MrGriefs", - "email": "hagen@paw.bot" - }, - "record": { - "URL": "https://hyena.gay/" - } + "description": "hagen's portfolio", + "repo": "https://github.com/MrGriefs/hyena.gay", + "owner": { + "username": "MrGriefs", + "email": "hagen@paw.bot" + }, + "record": { + "URL": "https://hyena.gay" + } } diff --git a/domains/hyno.json b/domains/hyno.json new file mode 100644 index 000000000..f673873a4 --- /dev/null +++ b/domains/hyno.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HyNO-IR", + "email": "hynoyt.ir@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/hypernexus.json b/domains/hypernexus.json new file mode 100644 index 000000000..c9a36e211 --- /dev/null +++ b/domains/hypernexus.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "notHyperNexus", + "email": "phamvansau234@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/hypnomacka.json b/domains/hypnomacka.json new file mode 100644 index 000000000..6e490669a --- /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/hyro.json b/domains/hyro.json index 60a40db83..5ac3377d6 100644 --- a/domains/hyro.json +++ b/domains/hyro.json @@ -1,11 +1,11 @@ { - "description": "Link to my website site.", - "repo": "https://github.com/xHyroM/xHyroM/tree/master/web", - "owner": { - "username": "xHyroM", - "email": "generalkubo@gmail.com" - }, - "record": { - "CNAME": "hyro.pages.dev" - } + "description": "Link to my website site.", + "repo": "https://github.com/xHyroM/xHyroM/tree/master/web", + "owner": { + "username": "xHyroM", + "email": "generalkubo@gmail.com" + }, + "record": { + "URL": "https://xhyrom.vercel.app" + } } diff --git a/domains/hzmi.json b/domains/hzmi.json index ba5242613..34d9dbda1 100644 --- a/domains/hzmi.json +++ b/domains/hzmi.json @@ -1,11 +1,11 @@ { - "description": "Personal Website", - "repo": "https://github.com/Hazmi35", - "owner": { - "username": "Hazmi35", - "email": "contact@hzmi.xyz" - }, - "record": { - "URL": "https://hzmi.xyz" - } + "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..cc3397c70 100644 --- a/domains/hzyusuf.json +++ b/domains/hzyusuf.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "yufuss", "email": "yusufgocer40@hotmail.com" - }, + }, - "record": { + "record": { "CNAME": "glitch.edgeapp.net" - } } - \ No newline at end of file +} diff --git a/domains/i2rys.json b/domains/i2rys.json new file mode 100644 index 000000000..2a1e9802d --- /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/iagobruno.json b/domains/iagobruno.json new file mode 100644 index 000000000..a82e1440e --- /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/iakshay.json b/domains/iakshay.json index 6d86515b0..d2f406f0d 100644 --- a/domains/iakshay.json +++ b/domains/iakshay.json @@ -1,12 +1,12 @@ { - "description": "Hola! This is Akshay's personal website.", - "repo": "https://github.com/akshay1018/akshay1018.github.io", - "owner": { - "username": "Akshay1018", - "email": "ak715173@gmail.com", - "twitter": "@i_Akshay09" - }, - "record": { - "CNAME": "Akshay1018.github.io" - } + "description": "Hola! This is Akshay's personal website.", + "repo": "https://github.com/akshay1018/akshay1018.github.io", + "owner": { + "username": "Akshay1018", + "email": "ak715173@gmail.com", + "twitter": "i_Akshay09" + }, + "record": { + "CNAME": "Akshay1018.github.io" + } } diff --git a/domains/iakzs.json b/domains/iakzs.json new file mode 100644 index 000000000..5ed05c4ca --- /dev/null +++ b/domains/iakzs.json @@ -0,0 +1,13 @@ +{ + "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/iamchoiiril.json b/domains/iamchoiiril.json new file mode 100644 index 000000000..e1c0a9693 --- /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/iammelvink.json b/domains/iammelvink.json new file mode 100644 index 000000000..4e735b50b --- /dev/null +++ b/domains/iammelvink.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "iammelvink", + "email": "46846457+iammelvink@users.noreply.github.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/iammithani.json b/domains/iammithani.json new file mode 100644 index 000000000..136dda0ab --- /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/iamsdas.json b/domains/iamsdas.json deleted file mode 100644 index af46624d3..000000000 --- a/domains/iamsdas.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "iamsdas's personal portfolio website", - "owner": { - "username": "iamsdas", - "email": "suryashankardas.2002@gmail.com" - }, - "record": { - "CNAME": "cname.vercel-dns.com" - } -} diff --git a/domains/iamthedefender.json b/domains/iamthedefender.json new file mode 100644 index 000000000..2590c6531 --- /dev/null +++ b/domains/iamthedefender.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "IamTheDefender", + "discord": "iamthedefender", + "email": "" + }, + "record": { + "URL": "https://portfolio-one-ecru-11.vercel.app" + } +} + diff --git a/domains/iamunixtz.json b/domains/iamunixtz.json new file mode 100644 index 000000000..0ee6b86bd --- /dev/null +++ b/domains/iamunixtz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "iamunixtz", + "email": "unixtz@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ian.json b/domains/ian.json new file mode 100644 index 000000000..18772e6d8 --- /dev/null +++ b/domains/ian.json @@ -0,0 +1,9 @@ +{ + "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..ca5fd5477 --- /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/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/ibrahim.json b/domains/ibrahim.json index 22a80eef1..9c7d980d3 100644 --- a/domains/ibrahim.json +++ b/domains/ibrahim.json @@ -1,11 +1,11 @@ { - "description": "ibrahim's personal developer website.", - "repo": "https://github.com/ibrahimdevx", - "owner": { - "username": "ibrahimdev", - "email": "ibrahimimran@northsixty.com" - }, - "record": { - "CNAME": "ibrahimdevx.github.io" - } + "description": "ibrahim's personal developer website.", + "repo": "https://github.com/ibrahimdevx", + "owner": { + "username": "ibrahimdev", + "email": "ibrahimimran@northsixty.com" + }, + "record": { + "CNAME": "ibrahimdevx.github.io" + } } diff --git a/domains/ice-head.json b/domains/ice-head.json new file mode 100644 index 000000000..aa2f26215 --- /dev/null +++ b/domains/ice-head.json @@ -0,0 +1,20 @@ +{ + "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/ice.json b/domains/ice.json index 75b778728..56cc9e732 100644 --- a/domains/ice.json +++ b/domains/ice.json @@ -1,11 +1,11 @@ { - "description": "Ice's personal developer website", - "repo": "https://github.com/u0f/u0f.github.io", - "owner": { - "username": "u0f", - "email": "ice.dev1234@gmail.com" - }, - "record": { - "CNAME": "u0f.github.io" - } + "description": "Ice's personal developer website", + "repo": "https://github.com/u0f/u0f.github.io", + "owner": { + "username": "u0f", + "email": "ice.dev1234@gmail.com" + }, + "record": { + "CNAME": "u0f.github.io" + } } diff --git a/domains/iceed.json b/domains/iceed.json new file mode 100644 index 000000000..1db3e314a --- /dev/null +++ b/domains/iceed.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mjnaous", + "email": "mj@naous.eu.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/icehead.json b/domains/icehead.json index d68635ea9..79da87deb 100644 --- a/domains/icehead.json +++ b/domains/icehead.json @@ -1,11 +1,11 @@ { - "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" - } + "owner": { + "username": "Ice-Head", + "email": "heads.ice@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mx1.improvmx.com","mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/icevixen.json b/domains/icevixen.json new file mode 100644 index 000000000..a7d7f03da --- /dev/null +++ b/domains/icevixen.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zirmith", + "email": "f2v74yt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/icm.json b/domains/icm.json index 323ffb176..c408951a5 100644 --- a/domains/icm.json +++ b/domains/icm.json @@ -1,11 +1,11 @@ { - "description": "Im ICM, a monster who likes to code but a noob in it, trying to learn js and likes to edit photos.", - "repo": "https://github.com/ICM185/icm185.github.io", - "owner": { - "username": "ICM185", - "email": "ironcladmonster185@gmail.com" -}, - "record": { - "CNAME": "icm185.github.io" - } + "description": "Im ICM, a monster who likes to code but a noob in it, trying to learn js and likes to edit photos.", + "repo": "https://github.com/ICM185/icm185.github.io", + "owner": { + "username": "ICM185", + "email": "ironcladmonster185@gmail.com" + }, + "record": { + "CNAME": "icm185.github.io" + } } diff --git a/domains/icmecodes.json b/domains/icmecodes.json new file mode 100644 index 000000000..0c8158365 --- /dev/null +++ b/domains/icmecodes.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "icmecodes", + "email": "icmedev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ico.json b/domains/ico.json index 50f240c05..408a8799d 100644 --- a/domains/ico.json +++ b/domains/ico.json @@ -1,11 +1,11 @@ { - "description": "Simply Iconical", - "repo": "https://github.com/babyico/babyico.github.io", - "owner": { - "username": "babyico", - "email": "iconical@programmer.net" - }, - "record": { - "CNAME": "babyico.github.io" - } + "description": "Simply Iconical", + "repo": "https://github.com/babyico/babyico.github.io", + "owner": { + "username": "babyico", + "email": "iconical@programmer.net" + }, + "record": { + "CNAME": "babyico.github.io" + } } diff --git a/domains/icy.json b/domains/icy.json new file mode 100644 index 000000000..320dd2aa3 --- /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/ida64.json b/domains/ida64.json index abf07e3a2..02feaaff0 100644 --- a/domains/ida64.json +++ b/domains/ida64.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/7v2p/7v2p.github.io", - "owner": { - "username": "7v2p", - "email": "", - "discord": "IDA#1337" - }, - "record": { - "CNAME": "7v2p.github.io" - } + "repo": "https://github.com/7v2p/7v2p.github.io", + "owner": { + "username": "7v2p", + "email": "", + "discord": "IDA#1337" + }, + "record": { + "CNAME": "7v2p.github.io" + } } diff --git a/domains/idkmaxii.json b/domains/idkmaxii.json new file mode 100644 index 000000000..177ce65ab --- /dev/null +++ b/domains/idkmaxii.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Molret", + "email": "maximiliano.moldenhauer.r@marygraham.cl" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/idoli.json b/domains/idoli.json new file mode 100644 index 000000000..f1c54b244 --- /dev/null +++ b/domains/idoli.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "D0TM4N", + "email": "idoinschool@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/idot.json b/domains/idot.json new file mode 100644 index 000000000..89778d352 --- /dev/null +++ b/domains/idot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "LackingCats", + "email": "jackson.marsden6@gmail.com" + }, + + "record": { + "CNAME": "idot.hopto.org" + } +} diff --git a/domains/idrkwhotbh.json b/domains/idrkwhotbh.json new file mode 100644 index 000000000..71d8b86f5 --- /dev/null +++ b/domains/idrkwhotbh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "idrkwhotbh", + "email": "nitronoobbros1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/igna.json b/domains/igna.json index 40d98a68f..c57a0d77f 100644 --- a/domains/igna.json +++ b/domains/igna.json @@ -1,12 +1,12 @@ { - "description": "igna's portfolio website", - "repo": "https://github.com/uhIgnacio", - "owner": { - "username": "uhIgnacio", - "email": "igna@hypixel.one" - }, + "description": "igna's portfolio website", + "repo": "https://github.com/uhIgnacio", + "owner": { + "username": "uhIgnacio", + "email": "igna@hypixel.one" + }, - "record": { - "URL": "https://igna.rocks" - } + "record": { + "URL": "https://igna.rocks" + } } diff --git a/domains/igor.json b/domains/igor.json new file mode 100644 index 000000000..a0bd82184 --- /dev/null +++ b/domains/igor.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "apenasigordev", + "email": "nerdvsvs@gmail.com" + }, + + "record": { + "CNAME": "apenasigordev.github.io" + } +} diff --git a/domains/ihk.json b/domains/ihk.json new file mode 100644 index 000000000..1d64d85fd --- /dev/null +++ b/domains/ihk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Kresswell", + "email": "simonecresswell@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ihkgpt.json b/domains/ihkgpt.json new file mode 100644 index 000000000..1d64d85fd --- /dev/null +++ b/domains/ihkgpt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Kresswell", + "email": "simonecresswell@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ihzan.json b/domains/ihzan.json new file mode 100644 index 000000000..57b72e1b0 --- /dev/null +++ b/domains/ihzan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ihsan-N", + "email": "abuihsan341@gmail.com" + }, + "record": { + "CNAME": "4a08a93f-e142-4ae8-93f3-6cd7dc6304b7.id.repl.co" + } +} diff --git a/domains/ikraiyan.json b/domains/ikraiyan.json new file mode 100644 index 000000000..557edefbd --- /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/ilakian.json b/domains/ilakian.json new file mode 100644 index 000000000..f0cceb359 --- /dev/null +++ b/domains/ilakian.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ilakiancs", + "email": "ilakiancs@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/imat.json b/domains/imat.json new file mode 100644 index 000000000..b97612952 --- /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/imdew.json b/domains/imdew.json new file mode 100644 index 000000000..4b27eb5ce --- /dev/null +++ b/domains/imdew.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dewiscool", + "email": "zerolikecyber.2005@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/imdsamimakhter.json b/domains/imdsamimakhter.json new file mode 100644 index 000000000..24a0cb635 --- /dev/null +++ b/domains/imdsamimakhter.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "imdsamimakhter", + "email": "mdsamimakhter2001@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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.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.suki.json b/domains/img.suki.json new file mode 100644 index 000000000..2f1cd119d --- /dev/null +++ b/domains/img.suki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SukiPlayz", + "email": "sukimayoo@outlook.com" + }, + "record": { + "A": ["69.30.249.53"] + } + } diff --git a/domains/imlasiya.json b/domains/imlasiya.json index 81660029e..30426d9f8 100644 --- a/domains/imlasiya.json +++ b/domains/imlasiya.json @@ -1,12 +1,12 @@ { - "description": "My Personal Portfolio", - "repo": "https://github.com/ImLasiya/ImLasiya.github.io", - "owner": { - "username": "ImLasiya", - "email": "shsherlocksl@gmail.com", - "twitter": "ImLasiya" - }, - "record": { - "CNAME": "imlasiya.github.io" - } + "description": "My Personal Portfolio", + "repo": "https://github.com/ImLasiya/ImLasiya.github.io", + "owner": { + "username": "ImLasiya", + "email": "shsherlocksl@gmail.com", + "twitter": "ImLasiya" + }, + "record": { + "CNAME": "imlasiya.github.io" + } } diff --git a/domains/imlasiyah.json b/domains/imlasiyah.json index 33cf98779..1a7fc88b4 100644 --- a/domains/imlasiyah.json +++ b/domains/imlasiyah.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "ImLasiya", "email": "senash@darktsysl.onmicrosoft.com" - }, + }, - "record": { + "record": { "CNAME": "imlasiya.github.io" - } } - \ No newline at end of file +} diff --git a/domains/imlauera.json b/domains/imlauera.json new file mode 100644 index 000000000..4a029e1d1 --- /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/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/imran.json b/domains/imran.json new file mode 100644 index 000000000..4c4488762 --- /dev/null +++ b/domains/imran.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ahmedimran35", + "email": "romeorajkumar098@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/imron.json b/domains/imron.json new file mode 100644 index 000000000..ad97df8d3 --- /dev/null +++ b/domains/imron.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BangMbon", + "email": "dci.reborn@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/imskanand.json b/domains/imskanand.json new file mode 100644 index 000000000..11d51643d --- /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/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/imu.json b/domains/imu.json new file mode 100644 index 000000000..4c4488762 --- /dev/null +++ b/domains/imu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ahmedimran35", + "email": "romeorajkumar098@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/imy.json b/domains/imy.json new file mode 100644 index 000000000..ad18f071f --- /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/imzulkar.json b/domains/imzulkar.json new file mode 100644 index 000000000..ffb9524fd --- /dev/null +++ b/domains/imzulkar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "imzulkar", + "email": "gmzulkar@gmail.com" + }, + "record": { + "CNAME": "imzulkar.github.io" + } +} diff --git a/domains/in3pire.json b/domains/in3pire.json new file mode 100644 index 000000000..26396c245 --- /dev/null +++ b/domains/in3pire.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TrivCodez", + "email": "Jayeshpoudel+ha@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/inam.json b/domains/inam.json new file mode 100644 index 000000000..f6288eb57 --- /dev/null +++ b/domains/inam.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "inamurahman", + "email": "inamvkd@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/incbom.json b/domains/incbom.json index 969dfd365..695a1342a 100644 --- a/domains/incbom.json +++ b/domains/incbom.json @@ -9,4 +9,4 @@ "record": { "CNAME": "incbomdev.github.io" } -} +} diff --git a/domains/indodev.json b/domains/indodev.json new file mode 100644 index 000000000..0e882067d --- /dev/null +++ b/domains/indodev.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Khuirul-Huda", + "email": "hudah2102@gmail.com", + "discord": "694850450410700831" + }, + + "record": { + "A": ["178.128.211.205"] + } + } + \ No newline at end of file diff --git a/domains/indreshp135.json b/domains/indreshp135.json new file mode 100644 index 000000000..261403222 --- /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..04169951f --- /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 new file mode 100644 index 000000000..893b71da5 --- /dev/null +++ b/domains/infernum.json @@ -0,0 +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" + } +} 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..f5d16fdcf --- /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 index 382c28774..92362cbce 100644 --- a/domains/infinity.json +++ b/domains/infinity.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "Infinitybeond1", "email": "Infinitybeond1@protonmail.com" - }, - "record": { + }, + "record": { "CNAME": "1de2d007-3905-40b1-b64f-d166b367a43d.id.repl.co" - } } - +} diff --git a/domains/infinityhackers.json b/domains/infinityhackers.json new file mode 100644 index 000000000..1d64d85fd --- /dev/null +++ b/domains/infinityhackers.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Kresswell", + "email": "simonecresswell@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..05a07be7d --- /dev/null +++ b/domains/infinotiver.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "prakarsh17", + "email": "prakarsh.3482@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/info.trung.json b/domains/info.trung.json new file mode 100644 index 000000000..57f9a1944 --- /dev/null +++ b/domains/info.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "CNAME": "dev-info-website.pages.dev" + } +} diff --git a/domains/inj3c7i0n.json b/domains/inj3c7i0n.json new file mode 100644 index 000000000..d50a2226c --- /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 new file mode 100644 index 000000000..65f6e789f --- /dev/null +++ b/domains/inkilu.json @@ -0,0 +1,12 @@ +{ + "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/insta.badboy.json b/domains/insta.badboy.json deleted file mode 100644 index 5655344b9..000000000 --- a/domains/insta.badboy.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "repo": "https://github.com/Bad-Boy-Codes/Instagram-Projects", - "description": "Instagram profile viewer.", - "owner": { - "username": "bad-boy-codes", - "email": "contact@mail.badboy.is-a.dev" - }, - "record": { - "CNAME": "bad-boy-codes.github.io" - } -} 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..8c5e8f712 --- /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..9dc9857e6 --- /dev/null +++ b/domains/integra.json @@ -0,0 +1,11 @@ +{ + "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..e42ee56cf 100644 --- a/domains/intergrav.json +++ b/domains/intergrav.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "intergrav", "email": "devinkid1@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "intergrav.github.io" - } } - +} diff --git a/domains/interstellar.json b/domains/interstellar.json new file mode 100644 index 000000000..4941e43a1 --- /dev/null +++ b/domains/interstellar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jacksoncraft859", + "email": "pollardjackson@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/interstellar.ultrix.json b/domains/interstellar.ultrix.json new file mode 100644 index 000000000..4941e43a1 --- /dev/null +++ b/domains/interstellar.ultrix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jacksoncraft859", + "email": "pollardjackson@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/interstellaros.json b/domains/interstellaros.json new file mode 100644 index 000000000..99241dce9 --- /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..d5a14efe5 --- /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/inxlo.json b/domains/inxlo.json new file mode 100644 index 000000000..4acd2e730 --- /dev/null +++ b/domains/inxlo.json @@ -0,0 +1,11 @@ +{ + "description": "inxlo.is-a.dev", + "repo": "https://github.com/xlenco/xlenco.github.io", + "owner": { + "username": "xlenco", + "email": "xlenco@hotmail.com" + }, + "record": { + "CNAME": "xlenco.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/ipuppyyt.json b/domains/ipuppyyt.json new file mode 100644 index 000000000..cc652b18d --- /dev/null +++ b/domains/ipuppyyt.json @@ -0,0 +1,14 @@ +{ + "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/ireknazm.json b/domains/ireknazm.json index 56f405d64..825311ce3 100644 --- a/domains/ireknazm.json +++ b/domains/ireknazm.json @@ -1,11 +1,11 @@ { - "description": "The domain will be used for a new version of my portfolio site, later in a future :)", - "repo": "https://github.com/Nagellan/Portfolio-v2", - "owner": { - "username": "Nagellan", - "email": "ireknazmievirek@gmail.com" - }, - "record": { - "CNAME": "Nagellan.github.io" - } + "description": "The domain will be used for a new version of my portfolio site, later in a future :)", + "repo": "https://github.com/Nagellan/Portfolio-v2", + "owner": { + "username": "Nagellan", + "email": "ireknazmievirek@gmail.com" + }, + "record": { + "CNAME": "Nagellan.github.io" + } } diff --git a/domains/irfan.json b/domains/irfan.json index 0a99f687e..642b2359a 100644 --- a/domains/irfan.json +++ b/domains/irfan.json @@ -1,11 +1,11 @@ { - "description": "Personal Portfolio", - "repo": "https://github.com/irfanbacker/irfanbacker.github.io", - "owner": { - "username": "irfanbacker", - "email": "irfuvk@gmail.com" - }, - "record": { - "CNAME": "irfanbacker.github.io" - } + "description": "Personal Portfolio", + "repo": "https://github.com/irfanbacker/irfanbacker.github.io", + "owner": { + "username": "irfanbacker", + "email": "irfuvk@gmail.com" + }, + "record": { + "CNAME": "irfanbacker.github.io" + } } diff --git a/domains/irumvanselme.json b/domains/irumvanselme.json index d0f9d7684..9a6bf017a 100644 --- a/domains/irumvanselme.json +++ b/domains/irumvanselme.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "irumvanselme", - "email": "andesanselme@gmail.com" - }, - "repo": "irumvanselme.github.io", - "record": { - "CNAME": "irumvanselme.github.io" - } + "owner": { + "username": "irumvanselme", + "email": "andesanselme@gmail.com" + }, + "repo": "irumvanselme.github.io", + "record": { + "CNAME": "irumvanselme.github.io" + } } diff --git a/domains/is-a-dev-testing.json b/domains/is-a-dev-testing.json new file mode 100644 index 000000000..efb6f0325 --- /dev/null +++ b/domains/is-a-dev-testing.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/isa.json b/domains/isa.json new file mode 100644 index 000000000..16a4c20ee --- /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..85c0280cb --- /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/isaacrobinson.json b/domains/isaacrobinson.json new file mode 100644 index 000000000..25baf7a8d --- /dev/null +++ b/domains/isaacrobinson.json @@ -0,0 +1,11 @@ +{ + "description": "This domain is for my personal website", + "repo": "https://github.com/SuperIcecube1/SuperIcecube1.github.io", + "owner": { + "username": "SuperIcecube1", + "email": "supericecube@aol.com" + }, + "record": { + "CNAME": "SuperIcecube1.github.io" + } +} diff --git a/domains/isabelrosillo.json b/domains/isabelrosillo.json new file mode 100644 index 000000000..2794d8db2 --- /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..cc14c97d5 100644 --- a/domains/isaiahday.json +++ b/domains/isaiahday.json @@ -4,9 +4,9 @@ "owner": { "username": "Isaiah08-D", "email": "isaiahgrisha@gmail.com", - "discord": "isaiah08#6008" + "discord": "isaiah08#6008" }, "record": { "CNAME": "isaiah08-d.github.io" } -} +} diff --git a/domains/isdwk.json b/domains/isdwk.json new file mode 100644 index 000000000..8f91072cc --- /dev/null +++ b/domains/isdwk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Brickmasterr", + "email": "dwiki200304@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/ishaanmehta.json b/domains/ishaanmehta.json index 58237a09b..e619a4962 100644 --- a/domains/ishaanmehta.json +++ b/domains/ishaanmehta.json @@ -1,11 +1,11 @@ { - "description": "Personal portfolio for Ishaan Mehta (IIIT Surat)", - "repo": "https://github.com/ishaanmehta4/portfolio", - "owner": { - "username": "ishaanmehta4", - "email": "ishaanmehta4@gmail.com" - }, - "record": { - "URL": "https://github.com/ishaanmehta4" - } + "description": "Personal portfolio for Ishaan Mehta (IIIT Surat)", + "repo": "https://github.com/ishaanmehta4/portfolio", + "owner": { + "username": "ishaanmehta4", + "email": "ishaanmehta4@gmail.com" + }, + "record": { + "URL": "https://github.com/ishaanmehta4" + } } diff --git a/domains/ishan.json b/domains/ishan.json index d6ca843aa..888d35229 100644 --- a/domains/ishan.json +++ b/domains/ishan.json @@ -1,12 +1,12 @@ { - "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" - } + "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..8949ba1e3 100644 --- a/domains/ishh.json +++ b/domains/ishh.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "AdityaOP2008", - "discord": "844843800874582048", - "email": "bw.dev@yahoo.com" - }, - "record": { - "CNAME": "570860f7-84fb-4ecd-8aee-015227be243d.id.repl.co" - } + "owner": { + "username": "AdityaOP2008", + "discord": "844843800874582048", + "email": "bw.dev@yahoo.com" + }, + "record": { + "CNAME": "570860f7-84fb-4ecd-8aee-015227be243d.id.repl.co" + } } diff --git a/domains/isqne.json b/domains/isqne.json index 41a969745..35f856f69 100644 --- a/domains/isqne.json +++ b/domains/isqne.json @@ -1,11 +1,11 @@ { - "description": "The isqneeh Website :D | OBS: Repo is Private", - "repo": "https://github.com/Isqneeh/isqnechan", - "owner": { - "username": "Isqne", - "email": "isqne@protonmail.com" - }, - "record": { - "URL": "https://isqnechan.vercel.app/" - } + "description": "The isqneeh Website :D | OBS: Repo is Private", + "repo": "https://github.com/Isqneeh/isqnechan", + "owner": { + "username": "Isqne", + "email": "isqne@protonmail.com" + }, + "record": { + "URL": "https://isqnechan.vercel.app" + } } diff --git a/domains/isrmicha.json b/domains/isrmicha.json new file mode 100644 index 000000000..8174a6cdf --- /dev/null +++ b/domains/isrmicha.json @@ -0,0 +1,9 @@ +{ + "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/itsdemongamez.json b/domains/itsdemongamez.json new file mode 100644 index 000000000..8dbd2ff9f --- /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/itsdharmik.json b/domains/itsdharmik.json index 7f48b4a48..a794ad24d 100644 --- a/domains/itsdharmik.json +++ b/domains/itsdharmik.json @@ -1,12 +1,12 @@ { - "description": "Want this domain to host my portfolio.", - "repo": "https://github.com/itsdharmik/itsdharmik.github.io", - "owner": { - "username": "itsdharmik", - "email": "dharmikparmar2004@yahoo.com", - "twitter": "itsdharmik" - }, - "record": { - "CNAME": "itsdharmik.github.io" - } + "description": "Want this domain to host my portfolio.", + "repo": "https://github.com/itsdharmik/itsdharmik.github.io", + "owner": { + "username": "itsdharmik", + "email": "dharmikparmar2004@yahoo.com", + "twitter": "itsdharmik" + }, + "record": { + "CNAME": "itsdharmik.github.io" + } } diff --git a/domains/itskorn.json b/domains/itskorn.json new file mode 100644 index 000000000..75208fd8f --- /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..54bf5594f --- /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/itsmenewbie03.json b/domains/itsmenewbie03.json new file mode 100644 index 000000000..38fa2b278 --- /dev/null +++ b/domains/itsmenewbie03.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "itsmenewbie03", + "email": "2101102516@student.buksu.edu.ph" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/itsnicecraft.json b/domains/itsnicecraft.json index e7ef48594..9f0da4229 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..525b9224b --- /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/itsvick.json b/domains/itsvick.json index 19d93aef5..728efb7d2 100644 --- a/domains/itsvick.json +++ b/domains/itsvick.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "itsvick", "email": "vivek_kasture@techjoomla.com" - }, + }, - "record": { + "record": { "CNAME": "itsvick.github.io" - } } - \ No newline at end of file +} diff --git a/domains/itzhenry.json b/domains/itzhenry.json new file mode 100644 index 000000000..5eedd240c --- /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..3c63ae095 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..ad00c6e08 --- /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..0c638c806 100644 --- a/domains/ivan.json +++ b/domains/ivan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "174n", - "email": "174n@riseup.net" - }, - "record": { - "CNAME": "alexandrov.online" - } -} \ No newline at end of file + "owner": { + "username": "174n", + "email": "174n@riseup.net" + }, + "record": { + "CNAME": "alexandrov.online" + } +} diff --git a/domains/ivedant.json b/domains/ivedant.json index 19b2ccdf6..587cf90f1 100644 --- a/domains/ivedant.json +++ b/domains/ivedant.json @@ -1,11 +1,11 @@ { - "description": "Vedant Naidu's Portfolio", - "repo": "https://github.com/Flash2014/Flash2014.github.io", - "owner": { - "username": "Flash2014", - "email": "naiduvedant@gmail.com" - }, - "record": { - "CNAME": "Flash2014.github.io" - } + "description": "Vedant Naidu's Portfolio", + "repo": "https://github.com/Flash2014/Flash2014.github.io", + "owner": { + "username": "Flash2014", + "email": "naiduvedant@gmail.com" + }, + "record": { + "CNAME": "Flash2014.github.io" + } } 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/j-x01.json b/domains/j-x01.json new file mode 100644 index 000000000..961a75e25 --- /dev/null +++ b/domains/j-x01.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "XxJVG1xX", + "email": "jvgvgaa@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/j-x1.json b/domains/j-x1.json new file mode 100644 index 000000000..961a75e25 --- /dev/null +++ b/domains/j-x1.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "XxJVG1xX", + "email": "jvgvgaa@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/j3ffjessie.json b/domains/j3ffjessie.json index 9862bb79f..463f5dada 100644 --- a/domains/j3ffjessie.json +++ b/domains/j3ffjessie.json @@ -1,11 +1,11 @@ { - "description": "Jeff Jessie's Portfolio Website", - "repo": "https://github.com/j3ffjessie/j3ffjessie.github.io", - "owner": { - "username": "j3ffjessie", - "email": "j3ffjessie@protonmail.com" - }, - "record": { - "CNAME": "j3ffjessie.github.io" - } + "description": "Jeff Jessie's Portfolio Website", + "repo": "https://github.com/j3ffjessie/j3ffjessie.github.io", + "owner": { + "username": "j3ffjessie", + "email": "j3ffjessie@protonmail.com" + }, + "record": { + "CNAME": "j3ffjessie.github.io" + } } diff --git a/domains/jack.json b/domains/jack.json index 908ec40c5..7ce4bc9f5 100644 --- a/domains/jack.json +++ b/domains/jack.json @@ -1,10 +1,10 @@ { - "description": "Onepixel Developments Director", - "owner": { - "username": "JackOPXL", - "email": "hello@jackfrisby.co" - }, - "record": { - "URL": "https://jackfrisby.co" - } + "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..8051dbc37 --- /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/jackiso.json b/domains/jackiso.json index 53dc129c8..13a2a9bdd 100644 --- a/domains/jackiso.json +++ b/domains/jackiso.json @@ -1,10 +1,10 @@ { - "description": "JaCkIsO is a Developer!", - "owner": { - "username": "JaCkIsO", - "email": "jackisodev@gmail.com" - }, - "record": { - "CNAME": "JaCkIsO.github.io" - } + "description": "JaCkIsO is a Developer!", + "owner": { + "username": "JaCkIsO", + "email": "jackisodev@gmail.com" + }, + "record": { + "CNAME": "JaCkIsO.github.io" + } } diff --git a/domains/jackson.json b/domains/jackson.json new file mode 100644 index 000000000..292e2b55b --- /dev/null +++ b/domains/jackson.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SimplyJackson", + "email": "", + "discord": "jackson!#0001" + }, + "record": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] + } +} diff --git a/domains/jacksonm.json b/domains/jacksonm.json new file mode 100644 index 000000000..69db9bf85 --- /dev/null +++ b/domains/jacksonm.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "jacksonmalone", + "email": "jrm9918@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/jacob.json b/domains/jacob.json index 7a9719e9a..7a16e74f8 100644 --- a/domains/jacob.json +++ b/domains/jacob.json @@ -1,11 +1,11 @@ { - "description": "My cool dev", - "repo": "https://github.com/jacob13400/jacob13400.github.io", - "owner": { - "username": "jacob13400", - "email": "jacob13400@gmail.com" - }, - "record": { - "CNAME": "jacob13400.github.io" - } + "description": "My cool dev", + "repo": "https://github.com/jacob13400/jacob13400.github.io", + "owner": { + "username": "jacob13400", + "email": "jacob13400@gmail.com" + }, + "record": { + "CNAME": "jacob13400.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..a57e8ac6f --- /dev/null +++ b/domains/jadebetty.json @@ -0,0 +1,17 @@ +{ + "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/jagan.json b/domains/jagan.json new file mode 100644 index 000000000..c63d531ec --- /dev/null +++ b/domains/jagan.json @@ -0,0 +1,11 @@ +{ + "description": "My Personal Website.", + "repo": "https://github.com/MR-JAGANMOHAN/MR-JAGANMOHAN.github.io", + "owner": { + "username": "MR-JAGANMOHAN", + "email": "jaganpenke124@gmail.com" + }, + "record": { + "CNAME": "mr-jaganmohan.github.io" + } +} diff --git a/domains/jagdhish-mer.json b/domains/jagdhish-mer.json new file mode 100644 index 000000000..87c870b6c --- /dev/null +++ b/domains/jagdhish-mer.json @@ -0,0 +1,11 @@ +{ + "description": "jagdish Profile.", + "repo": "https://github.com/jagdish-der/jagdish-der.github.io", + "owner": { + "username": "jagdish-der", + "email": "" + }, + "record": { + "CNAME": "jagdish-der.github.io" + } +} diff --git a/domains/jagdish-mer.json b/domains/jagdish-mer.json new file mode 100644 index 000000000..c59545fb5 --- /dev/null +++ b/domains/jagdish-mer.json @@ -0,0 +1,11 @@ +{ + "description": "my Profile.", + "repo": "https://github.com/jagdish-mer/jagdish-mer.github.io", + "owner": { + "username": "jagdish-mer", + "email": "" + }, + "record": { + "CNAME": "jagdish-mer.github.io" + } +} diff --git a/domains/jagi.json b/domains/jagi.json new file mode 100644 index 000000000..1cfb512f0 --- /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..8fe63d987 --- /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/jahid.json b/domains/jahid.json new file mode 100644 index 000000000..7ef18a1bb --- /dev/null +++ b/domains/jahid.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zenjahid", + "email": "mdjahidul.haque.7@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jainam.json b/domains/jainam.json new file mode 100644 index 000000000..365a787c5 --- /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..15ebc8074 --- /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..13d7afcd1 --- /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/jakehe.json b/domains/jakehe.json index 4691f032e..a3dfda89c 100644 --- a/domains/jakehe.json +++ b/domains/jakehe.json @@ -1,12 +1,12 @@ { - "description": "Jake He's Portfolio", - "repo": "https://github.com/Jakethebest1238/Jakes-Portfolio", - "owner": { - "username": "Jakethebest1238", - "email": "jakehe1226@gmail.com", - "twitter": "jakethebest1238" - }, - "record": { - "CNAME": "Jakethebest1238.github.io" - } + "description": "Jake He's Portfolio", + "repo": "https://github.com/Jakethebest1238/Jakes-Portfolio", + "owner": { + "username": "Jakethebest1238", + "email": "jakehe1226@gmail.com", + "twitter": "jakethebest1238" + }, + "record": { + "CNAME": "Jakethebest1238.github.io" + } } diff --git a/domains/jakub.json b/domains/jakub.json new file mode 100644 index 000000000..8028102ff --- /dev/null +++ b/domains/jakub.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jakubk15", + "email": "jakubk15@protonmail.com" + }, + "record": { + "URL": "https://github.com/Jakubk15" + } +} diff --git a/domains/jalaj.json b/domains/jalaj.json index 64ad19746..6b1f39f2d 100644 --- a/domains/jalaj.json +++ b/domains/jalaj.json @@ -1,23 +1,17 @@ { + "description": "Jalaj's Portfolio", - "description": "Jalaj's Portfolio", + "repo": "https://github.com/jalajcodes/jalaj", - "repo": "https://github.com/jalajcodes/jalaj", + "owner": { + "username": "jalajcodes", - "owner": { + "email": "", - "username": "jalajcodes", - - "email": "", - - "twitter": "jalajcodes" - - }, - - "record": { - - "CNAME": "jalaj.up.railway.app" - - } + "twitter": "jalajcodes" + }, + "record": { + "CNAME": "jalaj.up.railway.app" + } } diff --git a/domains/james.json b/domains/james.json index 4783b0f60..30b22b06a 100644 --- a/domains/james.json +++ b/domains/james.json @@ -1,12 +1,12 @@ { - "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" - } + "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/jamieisgeek.json b/domains/jamieisgeek.json index 1d2d0aa2e..9677dbba2 100644 --- a/domains/jamieisgeek.json +++ b/domains/jamieisgeek.json @@ -1,11 +1,11 @@ { - "description": "jamieisgeek.is-a.dev.", - "repo": "https://github.com/jamieisgeek", - "owner": { - "username": "jamieisgeek", - "email": "jamieisgeek@gmail.com" - }, - "record": { - "URL": "https://jamieisgeek.jamiecodes.repl.co/" - } + "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/jamig.json b/domains/jamig.json index 8d1540267..455f8e01f 100644 --- a/domains/jamig.json +++ b/domains/jamig.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jamig7", - "email": "jamigseven@gmail.com" - }, - "record": { - "CNAME": "jamig7.github.io" - } + "owner": { + "username": "jamig7", + "email": "jamigseven@gmail.com" + }, + "record": { + "CNAME": "jamig7.github.io" + } } diff --git a/domains/jams.json b/domains/jams.json new file mode 100644 index 000000000..8a22fcf31 --- /dev/null +++ b/domains/jams.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "g1gabyteDEV", + "email": "jamesmarke7@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/janam.json b/domains/janam.json new file mode 100644 index 000000000..6c7660de7 --- /dev/null +++ b/domains/janam.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Xzanam", + "email": "nh77277@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ 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/janleigh.json b/domains/janleigh.json new file mode 100644 index 000000000..725d449b6 --- /dev/null +++ b/domains/janleigh.json @@ -0,0 +1,9 @@ +{ + "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..ca1821523 --- /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..3faf3a917 --- /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..63f2620ed --- /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/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/jarren.json b/domains/jarren.json new file mode 100644 index 000000000..9a645719a --- /dev/null +++ b/domains/jarren.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JDirk01", + "email": "jarrendirk4@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jasmeetsingh.json b/domains/jasmeetsingh.json new file mode 100644 index 000000000..c51370e89 --- /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/jason.json b/domains/jason.json index 26ab41fd5..95cde7450 100644 --- a/domains/jason.json +++ b/domains/jason.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "nythrox", - "email": "jasonsantiagobutler@gmail.com", - "twitter": "nythrox_" - }, - "record": { - "URL": "https://jasonbutler.web.app/" - } + "owner": { + "username": "nythrox", + "email": "jasonsantiagobutler@gmail.com", + "twitter": "nythrox_" + }, + "record": { + "URL": "https://jasonbutler.web.app" + } } diff --git a/domains/jasonthomas.json b/domains/jasonthomas.json new file mode 100644 index 000000000..df9d6aaec --- /dev/null +++ b/domains/jasonthomas.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Wizrst641", + "email": "slxppyznet18@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jatin.json b/domains/jatin.json new file mode 100644 index 000000000..bc30148c4 --- /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..ace384aa0 --- /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/java.json b/domains/java.json index 6fee13ed2..f5ffb3abd 100644 --- a/domains/java.json +++ b/domains/java.json @@ -1,12 +1,12 @@ { - "description": "Java's Website", - "repo": "https://github.com/javascript-void0/javascript-void0.github.io", - "owner": { - "username": "javascript-void0", - "email": "", - "discord": "Java#3865" - }, - "record": { - "CNAME": "javascript-void0.github.io" - } + "description": "Java's Website", + "repo": "https://github.com/javascript-void0/javascript-void0.github.io", + "owner": { + "username": "javascript-void0", + "email": "", + "discord": "Java#3865" + }, + "record": { + "CNAME": "javascript-void0.github.io" + } } diff --git a/domains/javier.json b/domains/javier.json new file mode 100644 index 000000000..be9ad7ff2 --- /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/javierpastore.json b/domains/javierpastore.json new file mode 100644 index 000000000..949d24085 --- /dev/null +++ b/domains/javierpastore.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yangxiaokun", + "email": "619742721@qq.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jawis.json b/domains/jawis.json new file mode 100644 index 000000000..b49dd28f6 --- /dev/null +++ b/domains/jawis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ais1175", + "email": "wutau179@gmail.com" + }, + "record": { + "A": ["103.114.200.170"] + } +} diff --git a/domains/jay-bhalodiya.json b/domains/jay-bhalodiya.json new file mode 100644 index 000000000..3e55a1847 --- /dev/null +++ b/domains/jay-bhalodiya.json @@ -0,0 +1,11 @@ +{ + "description": "Jay Bhalodiya.", + "repo": "https://github.com/jay-bhalodiya/jay-bhalodiya.github.io", + "owner": { + "username": "jay-bhalodiya", + "email": "jay.bhalodiya@acquaintsoft.com" + }, + "record": { + "CNAME": "jay-bhalodiya.github.io" + } +} diff --git a/domains/jay-d-dave.json b/domains/jay-d-dave.json new file mode 100644 index 000000000..f1dd2e16b --- /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 deleted file mode 100644 index 0988f28ee..000000000 --- a/domains/jay.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "jaygmx", - "email": "j.jay@gmx.us" - }, - "record": { - "CNAME": "jay.readthedocs.io" - } -} diff --git a/domains/jayantkageri.json b/domains/jayantkageri.json index 87c4d753e..345952c84 100644 --- a/domains/jayantkageri.json +++ b/domains/jayantkageri.json @@ -1,11 +1,11 @@ { - "description": "Nothing is easy in life when you aren't interested.", - "repo": "https://github.com/jayantkageri/Website", - "owner": { - "username": "jayantkageri", - "email": "jayantkageri@gmail.com" - }, - "record": { - "URL": "https://www.jayantkageri.in" - } + "description": "Nothing is easy in life when you aren't interested.", + "repo": "https://github.com/jayantkageri/Website", + "owner": { + "username": "jayantkageri", + "email": "jayantkageri@gmail.com" + }, + "record": { + "URL": "https://www.jayantkageri.in" + } } diff --git a/domains/jaycedotbin.json b/domains/jaycedotbin.json index 309d263b0..6b7c178a6 100644 --- a/domains/jaycedotbin.json +++ b/domains/jaycedotbin.json @@ -1,12 +1,12 @@ { - "description": "John Carlo Austria a.k.a jaycedotbin", - "repo": "https://github.com/jaycedotbin/jaycedotbin.github.io", - "owner": { - "username": "jaycedotbin", - "email": "johncarloaustria@protonmail.com", - "twitter": "jaycedotbin" - }, - "record": { - "CNAME": "jaycedotbin.github.io" - } + "description": "John Carlo Austria a.k.a jaycedotbin", + "repo": "https://github.com/jaycedotbin/jaycedotbin.github.io", + "owner": { + "username": "jaycedotbin", + "email": "johncarloaustria@protonmail.com", + "twitter": "jaycedotbin" + }, + "record": { + "CNAME": "jaycedotbin.github.io" + } } 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 new file mode 100644 index 000000000..f23d0a0a8 --- /dev/null +++ b/domains/jayg.json @@ -0,0 +1,14 @@ +{ + "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/jayy.json b/domains/jayy.json index 4165545d8..8a0ab3292 100644 --- a/domains/jayy.json +++ b/domains/jayy.json @@ -1,12 +1,12 @@ { - "description": "My small little dev page thingy", - "repo": "https://github.com/fiskdk/jayy", - "owner": { - "username": "fiskdk", - "email": "jayyisdev@gmail.com", - "twitter": "dont-use-twitter" - }, - "record": { - "CNAME": "fiskdk.github.io" - } + "description": "My small little dev page thingy", + "repo": "https://github.com/fiskdk/jayy", + "owner": { + "username": "fiskdk", + "email": "jayyisdev@gmail.com", + "twitter": "dont-use-twitter" + }, + "record": { + "CNAME": "fiskdk.github.io" + } } diff --git a/domains/jbugel.json b/domains/jbugel.json new file mode 100644 index 000000000..34d78a82f --- /dev/null +++ b/domains/jbugel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jbugel-lol", + "email": "jbugel.lol.github@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..4325fc39a --- /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..0be501ccb --- /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..02176fcc2 --- /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 new file mode 100644 index 000000000..ffe760ca5 --- /dev/null +++ b/domains/jcquieta.json @@ -0,0 +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" + } +} diff --git a/domains/jcs.json b/domains/jcs.json new file mode 100644 index 000000000..682f8310d --- /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/jdev082.json b/domains/jdev082.json new file mode 100644 index 000000000..b07452176 --- /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/jdszekeres.json b/domains/jdszekeres.json new file mode 100644 index 000000000..fadf7dabf --- /dev/null +++ b/domains/jdszekeres.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/jdszekeres/jdszekeres.github.io", + "owner": { + "username": "jdszekeres", + "email": "racoxo1041@favilu.com" + }, + "record": { + "CNAME": "jdszekeres.github.io" + } +} diff --git a/domains/jean-arthur.json b/domains/jean-arthur.json new file mode 100644 index 000000000..9bd5d7dd1 --- /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/jean.json b/domains/jean.json index 2eef71801..a23459e0e 100644 --- a/domains/jean.json +++ b/domains/jean.json @@ -1,12 +1,12 @@ { - "description": "A website showcasing all of Jean's work", - "repo": "https://github.com/EmperorJean/emperorjean.github.io", - "owner": { - "username": "emperorjean", - "email": "", - "twitter":"emperorjean_" - }, - "record": { - "CNAME": "emperorjean.github.io" - } + "description": "A website showcasing all of Jean's work", + "repo": "https://github.com/EmperorJean/emperorjean.github.io", + "owner": { + "username": "emperorjean", + "email": "", + "twitter": "emperorjean_" + }, + "record": { + "CNAME": "emperorjean.github.io" + } } diff --git a/domains/jeel.json b/domains/jeel.json index e22990456..8b84e68ae 100644 --- a/domains/jeel.json +++ b/domains/jeel.json @@ -1,12 +1,12 @@ { - "description": "Jeel's portfolio website", - "repo": "https://github.com/jeelpatel1612", - "owner": { - "username": "jeelpatel1612", - "email": "", - "twitter": "__j_e_e_l__" - }, - "record": { - "URL": "https://jeelpatel.netlify.app/" - } + "description": "Jeel's portfolio website", + "repo": "https://github.com/jeelpatel1612", + "owner": { + "username": "jeelpatel1612", + "email": "", + "twitter": "__j_e_e_l__" + }, + "record": { + "URL": "https://jeelpatel.netlify.app" + } } diff --git a/domains/jeevan.json b/domains/jeevan.json index aa69389b5..e26e067a4 100644 --- a/domains/jeevan.json +++ b/domains/jeevan.json @@ -1,11 +1,11 @@ { - "description": "Jeevan's Portfolio", - "repo": "https://github.com/jeevan900929/jeevan900929.github.io", - "owner": { - "username": "jeevan900929", - "email": "jeevan.900929@gmail.com" - }, - "record": { - "CNAME": "jeevan900929.github.io" - } + "description": "Jeevan's Portfolio", + "repo": "https://github.com/jeevan900929/jeevan900929.github.io", + "owner": { + "username": "jeevan900929", + "email": "jeevan.900929@gmail.com" + }, + "record": { + "CNAME": "jeevan900929.github.io" + } } diff --git a/domains/jeferson.json b/domains/jeferson.json index 8692d6ce9..178f889ea 100644 --- a/domains/jeferson.json +++ b/domains/jeferson.json @@ -1,12 +1,12 @@ { - "description": "Jeferson Brito's Portfolio", - "repo": "https://github.com/jeferson-sb/portfolio", - "owner": { - "username": "jeferson-sb", - "email": "", - "linkedin": "https://www.linkedin.com/in/jeferson-sb/" - }, - "record": { - "URL": "https://www.jefersonsilva.me/" - } + "description": "Jeferson Brito's Portfolio", + "repo": "https://github.com/jeferson-sb/portfolio", + "owner": { + "username": "jeferson-sb", + "email": "", + "linkedin": "https://www.linkedin.com/in/jeferson-sb" + }, + "record": { + "URL": "https://www.jefersonsilva.me" + } } diff --git a/domains/jefferson.json b/domains/jefferson.json new file mode 100644 index 000000000..b8bc13ce6 --- /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/jeffersonjpr" + } +} diff --git a/domains/jeffrey.json b/domains/jeffrey.json index 414306dc2..70444dfae 100644 --- a/domains/jeffrey.json +++ b/domains/jeffrey.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/SquarePear/personal-site", - "owner": { - "username": "SquarePear", - "email": "jeffrey@reygames.com" - }, - "record": { - "URL": "https://jeffreyharmon.dev/" - } + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/SquarePear/personal-site", + "owner": { + "username": "SquarePear", + "email": "jeffrey@reygames.com" + }, + "record": { + "URL": "https://jeffreyharmon.dev" + } } diff --git a/domains/jegatchalian.json b/domains/jegatchalian.json index 25813b5c9..34ab90850 100644 --- a/domains/jegatchalian.json +++ b/domains/jegatchalian.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "trowsjerwin", "email": "johnerwingatchalian@gmail.com" - }, + }, - "record": { + "record": { "A": ["192.232.223.67"] - } } - \ No newline at end of file +} diff --git a/domains/jeremie.json b/domains/jeremie.json new file mode 100644 index 000000000..dd1021ca8 --- /dev/null +++ b/domains/jeremie.json @@ -0,0 +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" + } +} diff --git a/domains/jeremy.json b/domains/jeremy.json index 883a88877..5a6e8f540 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": { + "record": { "URL": "http://dev.jeremys.social" - } } - +} diff --git a/domains/jerikchan.json b/domains/jerikchan.json new file mode 100644 index 000000000..2bf538bcd --- /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/jeros.json b/domains/jeros.json index b1ba7e6df..3a7cf3419 100644 --- a/domains/jeros.json +++ b/domains/jeros.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "Ascript89", "email": "smartlinkwfs@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "ascript89.github.io" - } } - +} diff --git a/domains/jerry.json b/domains/jerry.json index 9d6c0ab3c..e8eaa66bf 100644 --- a/domains/jerry.json +++ b/domains/jerry.json @@ -1,11 +1,11 @@ { - "description": "Jerry's Portfolio Website", - "repo": "https://github.com/j3rrythomas/j3rrythomas.github.io", - "owner": { - "username": "j3rrythomas", - "email": "jerrythomasjohn9@gmail.com" - }, - "record": { - "CNAME": "j3rrythomas.github.io" - } + "description": "Jerry's Portfolio Website", + "repo": "https://github.com/j3rrythomas/j3rrythomas.github.io", + "owner": { + "username": "j3rrythomas", + "email": "jerrythomasjohn9@gmail.com" + }, + "record": { + "CNAME": "j3rrythomas.github.io" + } } diff --git a/domains/jesgran.json b/domains/jesgran.json index 941ab8536..4ed9dc5e5 100644 --- a/domains/jesgran.json +++ b/domains/jesgran.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "Jesgran", "email": "calzdani20@libero.it" - }, + }, - "record": { + "record": { "CNAME": "jesgran.github.io" - } } - \ No newline at end of file +} diff --git a/domains/jessehoekema.json b/domains/jessehoekema.json new file mode 100644 index 000000000..cd9faa862 --- /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/jeweetzelf.json b/domains/jeweetzelf.json index ccfeb7103..70ccf93a3 100644 --- a/domains/jeweetzelf.json +++ b/domains/jeweetzelf.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jeweetzelfWasTaken", - "email": "jeweetzelf@rtexbot.com" - }, - "record": { - "CNAME": "jeweetzelfwastaken.github.io" - } + "owner": { + "username": "jeweetzelfWasTaken", + "email": "jeweetzelf@rtexbot.com" + }, + "record": { + "CNAME": "jeweetzelfwastaken.github.io" + } } diff --git a/domains/jewishlewish.json b/domains/jewishlewish.json new file mode 100644 index 000000000..071a4e047 --- /dev/null +++ b/domains/jewishlewish.json @@ -0,0 +1,9 @@ +{ + "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..8324fb897 100644 --- a/domains/jeydin.json +++ b/domains/jeydin.json @@ -1,12 +1,11 @@ { - "description": "I play a game called Genshin Impact", - "repo": "https://github.com/Jeydin21/jeydin.github.io", - "owner": { - "username": "Jeydin21", - "email": "JeyPham21@gmail.com", - "twitter": "Jeydin21" - }, - "record": { - "CNAME": "jeydin.github.io" - } + "description": "I like code, but code does not like me", + "repo": "https://github.com/Jeydin/jeydin.github.io", + "owner": { + "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..17a476555 --- /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/jhos.json b/domains/jhos.json new file mode 100644 index 000000000..cd9faa862 --- /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/jiawei.json b/domains/jiawei.json new file mode 100644 index 000000000..2b8b377c1 --- /dev/null +++ b/domains/jiawei.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Beebeeoii", + "email": "b33b33o11@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/jim.json b/domains/jim.json new file mode 100644 index 000000000..1a252d948 --- /dev/null +++ b/domains/jim.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jimmy20180130", + "email": "jimmy20180130@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jimmster.json b/domains/jimmster.json index 2b7f567e4..2c151ec5d 100644 --- a/domains/jimmster.json +++ b/domains/jimmster.json @@ -1,11 +1,11 @@ { - "description": "A unsusually stupid developers programming blog", - "repo": "https://github.com/Khhs167/jimms-cave", - "owner": { - "username": "Khhs167", - "email": "khhs1671@gmail.com" - }, - "record": { - "URL": "https://jimmys-cave.web.app/" - } + "description": "A unsusually stupid developers programming blog", + "repo": "https://github.com/Khhs167/jimms-cave", + "owner": { + "username": "Khhs167", + "email": "khhs1671@gmail.com" + }, + "record": { + "URL": "https://jimmys-cave.web.app" + } } diff --git a/domains/jimmy.json b/domains/jimmy.json index b9a33769e..577c62c30 100644 --- a/domains/jimmy.json +++ b/domains/jimmy.json @@ -1,12 +1,12 @@ { - "description": "JIMMY's Personal Website", - "repo": "https://github.com/JIMMY1371/jimmy1371.github.io", - "owner": { - "username": "JIMMY1371", - "email": "idkvro8@gmail.com", - "discord": "JIMMY#1371" - }, - "record": { - "CNAME": "jimmy1371.github.io" - } + "description": "JIMMY's Personal Website", + "repo": "https://github.com/JIMMY1371/jimmy1371.github.io", + "owner": { + "username": "JIMMY1371", + "email": "idkvro8@gmail.com", + "discord": "JIMMY#1371" + }, + "record": { + "CNAME": "jimmy1371.github.io" + } } 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/jindx.json b/domains/jindx.json new file mode 100644 index 000000000..cb678e640 --- /dev/null +++ b/domains/jindx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JinDX", + "email": "dox.jin@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jinso.json b/domains/jinso.json index edbf24322..6982010fb 100644 --- a/domains/jinso.json +++ b/domains/jinso.json @@ -2,11 +2,11 @@ "description": "Jinso Raj", "repo": "https://github.com/jinsoraj", "owner": { - "username": "jinsoraj", - "email": "jinsoraj2000@gmail.com", - "twitter": "@jinsoraj" + "username": "jinsoraj", + "email": "jinsoraj2000@gmail.com", + "twitter": "jinsoraj" }, "record": { - "URL": "https://jinsoraj.eu.org" + "URL": "https://jinsoraj.eu.org" } - } +} diff --git a/domains/jirafey.json b/domains/jirafey.json new file mode 100644 index 000000000..d1dc65eba --- /dev/null +++ b/domains/jirafey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jirafey", + "email": "jirafey@tuta.io" + }, + "record": { + "CNAME": "jirafey.github.io" + } +} diff --git a/domains/jishnupsamal.json b/domains/jishnupsamal.json index b2aedfdec..79c9c44ea 100644 --- a/domains/jishnupsamal.json +++ b/domains/jishnupsamal.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "jishnu-prasad-s", - "email": "support@jishnupsamal.ml" - }, - "record": { - "CNAME": "jishnupsamal.pages.dev" - } + "owner": { + "username": "jishnu-prasad-s", + "email": "support@jishnupsamal.ml" + }, + "record": { + "CNAME": "jishnupsamal.pages.dev" + } } diff --git a/domains/jite.json b/domains/jite.json index 6e1803ee4..01f28dab4 100644 --- a/domains/jite.json +++ b/domains/jite.json @@ -1,10 +1,10 @@ { - "description": "Jite - Dev blog", - "owner": { - "username": "Johannestegner", - "email": "jitedev@gmail.com" - }, - "record": { - "URL": "https://jite.eu" - } + "description": "Jite - Dev blog", + "owner": { + "username": "Johannestegner", + "email": "jitedev@gmail.com" + }, + "record": { + "URL": "https://jite.eu" + } } diff --git a/domains/jithumon.json b/domains/jithumon.json index 4569e27e4..80ace01d0 100644 --- a/domains/jithumon.json +++ b/domains/jithumon.json @@ -4,7 +4,7 @@ "owner": { "username": "jithumon", "email": "jithumondev@gmail.com", - "twitter": "@Jithumatt" + "twitter": "Jithumatt" }, "record": { "CNAME": "jithumon.github.io" diff --git a/domains/jj.json b/domains/jj.json index 56f65b367..a05eda828 100644 --- a/domains/jj.json +++ b/domains/jj.json @@ -1,13 +1,13 @@ { - "description": "JJ's Website", - "repo": "https://github.com/TheBotlyNoob/website", - "owner": { - "username": "TheBotlyNoob", - "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"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "JJ's Website", + "repo": "https://github.com/TheBotlyNoob/website", + "owner": { + "username": "TheBotlyNoob", + "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"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/jjhjkhk.json b/domains/jjhjkhk.json new file mode 100644 index 000000000..515e9d62d --- /dev/null +++ b/domains/jjhjkhk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "f4ruk1453decodex", + "email": "furk4ncrowley@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jkb-bio.json b/domains/jkb-bio.json new file mode 100644 index 000000000..6becbfa66 --- /dev/null +++ b/domains/jkb-bio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jakublua", + "email": "jkb@courvix.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/joaovitorzv.json b/domains/joaovitorzv.json index 779e03599..11cb87ab9 100644 --- a/domains/joaovitorzv.json +++ b/domains/joaovitorzv.json @@ -1,12 +1,12 @@ { - "description": "@joaovitorzv blog", - "repo": "https://github.com/joaovitorzv/joaovitorzv.github.io", - "owner": { - "username": "joaovitorzv", - "email": "joaovitorzv@outlook.com", - "twitter": "null" - }, - "record": { - "CNAME": "joaovitorzv.github.io" - } + "description": "joaovitorzv blog", + "repo": "https://github.com/joaovitorzv/joaovitorzv.github.io", + "owner": { + "username": "joaovitorzv", + "email": "joaovitorzv@outlook.com", + "twitter": "null" + }, + "record": { + "CNAME": "joaovitorzv.github.io" + } } diff --git a/domains/joaozeira.json b/domains/joaozeira.json new file mode 100644 index 000000000..d9b58abf0 --- /dev/null +++ b/domains/joaozeira.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "joaozeiradev", + "email": "joaofelipegamer24@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jobcmax.json b/domains/jobcmax.json new file mode 100644 index 000000000..d5b80f510 --- /dev/null +++ b/domains/jobcmax.json @@ -0,0 +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" + } +} diff --git a/domains/jocke.json b/domains/jocke.json new file mode 100644 index 000000000..14ea2e4e7 --- /dev/null +++ b/domains/jocke.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NotAJocke", + "email": "jockerider199@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/joe-dawley.json b/domains/joe-dawley.json index b11aa52ee..017ab7a31 100644 --- a/domains/joe-dawley.json +++ b/domains/joe-dawley.json @@ -1,12 +1,12 @@ { - "description": "Joe Dawley", - "repo": "https://github.com/jdawley", - "owner": { - "username": "jdawley", - "email": "", - "twitter": "joedawley" - }, - "record": { - "CNAME": "joedawley.com" - } + "description": "Joe Dawley", + "repo": "https://github.com/jdawley", + "owner": { + "username": "jdawley", + "email": "", + "twitter": "joedawley" + }, + "record": { + "CNAME": "joedawley.com" + } } diff --git a/domains/joe.json b/domains/joe.json index 7b6d7bf15..3aa2f4541 100644 --- a/domains/joe.json +++ b/domains/joe.json @@ -1,11 +1,11 @@ { - "description": "Joe Banks", - "repo": "https://github.com/jb3/jb3.github.io", - "owner": { - "username": "jb3", - "email": "joseph@josephbanks.me" - }, - "record": { - "CNAME": "jb3.github.io" - } + "description": "Joe Banks", + "repo": "https://github.com/jb3/jb3.github.io", + "owner": { + "username": "jb3", + "email": "joseph@josephbanks.me" + }, + "record": { + "CNAME": "jb3.github.io" + } } diff --git a/domains/joel.json b/domains/joel.json index ab0b03843..edbea8ced 100644 --- a/domains/joel.json +++ b/domains/joel.json @@ -1,12 +1,12 @@ { - "description": "Joel's dev blog", - "repo": "https://github.com/9oelM/9oelm.github.io", - "owner": { - "username": "9oelm", - "email": "", - "twitter": "9oelm" - }, - "record": { - "CNAME": "9oelm.github.io" - } -} \ No newline at end of file + "description": "Joel's dev blog", + "repo": "https://github.com/9oelM/9oelm.github.io", + "owner": { + "username": "9oelm", + "email": "", + "twitter": "9oelm" + }, + "record": { + "CNAME": "9oelm.github.io" + } +} diff --git a/domains/joelbobanoffline.json b/domains/joelbobanoffline.json index d2c2db96b..53ca7f6dc 100644 --- a/domains/joelbobanoffline.json +++ b/domains/joelbobanoffline.json @@ -8,4 +8,4 @@ "record": { "CNAME": "joelbobanoffline.github.io" } -} +} diff --git a/domains/joelee.json b/domains/joelee.json index 20b9ae582..a9a0d855e 100644 --- a/domains/joelee.json +++ b/domains/joelee.json @@ -1,11 +1,11 @@ { - "description": "my personal website", - "repo": "https://github.com/teamjoelee/me", - "owner": { - "username": "teamjoelee", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "teamjoelee.github.io" - } + "description": "my personal website", + "repo": "https://github.com/teamjoelee/me", + "owner": { + "username": "teamjoelee", + "email": "tojoeleeofficial@gmail.com" + }, + "record": { + "CNAME": "teamjoelee.github.io" + } } diff --git a/domains/joesbrandt.json b/domains/joesbrandt.json index 003bd944a..637eb60c6 100644 --- a/domains/joesbrandt.json +++ b/domains/joesbrandt.json @@ -1,10 +1,10 @@ { - "description": "joesbrandt", - "owner": { - "username": "joesbrandt", - "email": "joesbrandt@icloud.com" - }, - "record": { - "CNAME": "joesbrandt.github.io" - } + "description": "joesbrandt", + "owner": { + "username": "joesbrandt", + "email": "joesbrandt@icloud.com" + }, + "record": { + "CNAME": "joesbrandt.github.io" + } } diff --git a/domains/joesjourney.json b/domains/joesjourney.json index 505400040..aa69ddf65 100644 --- a/domains/joesjourney.json +++ b/domains/joesjourney.json @@ -1,24 +1,12 @@ - - { - "owner": { +{ + "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" - - ], + "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/johan-stickman.json b/domains/johan-stickman.json deleted file mode 100644 index 8e22e0157..000000000 --- a/domains/johan-stickman.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "description": "My personal website", - "repo": "", - "owner": { - "username": "johan-perso", - "email": "johan_stickman@proton.me", - "twitter": "Johan_Stickman", - "discord": "Johan#8021" - }, - "record": { - "URL": "https://johanstick.me" - } -} diff --git a/domains/johan.json b/domains/johan.json index d41a307c5..700a60971 100644 --- a/domains/johan.json +++ b/domains/johan.json @@ -1,11 +1,11 @@ { - "description": "Personal website of Johan von Forstner", - "repo": "https://github.com/johan12345/johan12345.github.io", - "owner": { - "username": "johan12345", - "email": "johan.forstner@gmail.com" - }, - "record": { - "URL": "https://johan.vonforst.net/" - } + "description": "Personal website of Johan von Forstner", + "repo": "https://github.com/johan12345/johan12345.github.io", + "owner": { + "username": "johan12345", + "email": "johan.forstner@gmail.com" + }, + "record": { + "URL": "https://johan.vonforst.net" + } } diff --git a/domains/johansansebastian.json b/domains/johansansebastian.json index ef590f455..fe8dfec63 100644 --- a/domains/johansansebastian.json +++ b/domains/johansansebastian.json @@ -1,11 +1,11 @@ { - "description": "Johan's personal developer website", - "repo": "https://github.com/JohanSanSebastian.github.io", - "owner": { - "username": "JohanSanSebastian", - "email": "johansanju06@gmail.com" - }, - "record": { - "CNAME": "JohanSanSebastian.github.io" - } + "description": "Johan's personal developer website", + "repo": "https://github.com/JohanSanSebastian.github.io", + "owner": { + "username": "JohanSanSebastian", + "email": "johansanju06@gmail.com" + }, + "record": { + "CNAME": "JohanSanSebastian.github.io" + } } diff --git a/domains/john.json b/domains/john.json index 75daad7af..952285a5c 100644 --- a/domains/john.json +++ b/domains/john.json @@ -1,12 +1,12 @@ { - "description": "John Peterson's personal development page.", - "repo": "https://github.com/majesticturtlejp/majesticturtlejp.github.io", - "owner": { - "username": "majesticturtlejp", - "email": "johnp5419@gmail.com", - "instagram": "johnp5419" - }, - "record": { - "CNAME": "majesticturtlejp.github.io" - } + "description": "John Peterson's personal development page.", + "repo": "https://github.com/majesticturtlejp/majesticturtlejp.github.io", + "owner": { + "username": "majesticturtlejp", + "email": "johnp5419@gmail.com", + "instagram": "johnp5419" + }, + "record": { + "CNAME": "majesticturtlejp.github.io" + } } diff --git a/domains/johna.json b/domains/johna.json new file mode 100644 index 000000000..bde09e552 --- /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/johnd.json b/domains/johnd.json new file mode 100644 index 000000000..679044a79 --- /dev/null +++ b/domains/johnd.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "tensura-is-good", + "email": "sands.is.undertable@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/johndo.json b/domains/johndo.json new file mode 100644 index 000000000..c0d7e398a --- /dev/null +++ b/domains/johndo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "billybobisverycool", + "email": "27johnballenger@ucsstudent.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/johndoe.json b/domains/johndoe.json new file mode 100644 index 000000000..9c82c35a8 --- /dev/null +++ b/domains/johndoe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "pythonhuman", + "email": "sai.pasumarthi@stu.argyleisd.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/johnmortan.json b/domains/johnmortan.json new file mode 100644 index 000000000..027bf71b7 --- /dev/null +++ b/domains/johnmortan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Atr-e", + "email": "eatr577@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/johnny.json b/domains/johnny.json index ef3f86971..2cd4db27b 100644 --- a/domains/johnny.json +++ b/domains/johnny.json @@ -1,10 +1,10 @@ - { - "owner": { +{ + "owner": { "username": "john-champagne", "email": "johnchampagne97@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "john-champagne.github.io" - } } +} diff --git a/domains/johnny1337.json b/domains/johnny1337.json new file mode 100644 index 000000000..fe95131f8 --- /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/johnrambo.json b/domains/johnrambo.json new file mode 100644 index 000000000..7bc767d87 --- /dev/null +++ b/domains/johnrambo.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ParthMaster", + "email": "parth.infynno@protonmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/johnroylapida.json b/domains/johnroylapida.json new file mode 100644 index 000000000..cef9bb5be --- /dev/null +++ b/domains/johnroylapida.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "SnoopyCodeX", + "email": "johnroy062102calimlim@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/johnsonlee.json b/domains/johnsonlee.json index d8eaf5bd0..0b43e55a6 100644 --- a/domains/johnsonlee.json +++ b/domains/johnsonlee.json @@ -1,11 +1,11 @@ { - "description": "Personal website of Johnson Lee", - "repo": "https://github.com/johnsonlee/johnsonlee.github.io", - "owner": { - "username": "johnsonlee", - "email": "g.johnsonlee@gmail.com" - }, - "record": { - "CNAME": "johnsonlee.github.io" - } + "description": "Personal website of Johnson Lee", + "repo": "https://github.com/johnsonlee/johnsonlee.github.io", + "owner": { + "username": "johnsonlee", + "email": "g.johnsonlee@gmail.com" + }, + "record": { + "CNAME": "johnsonlee.github.io" + } } diff --git a/domains/johnythomas.json b/domains/johnythomas.json new file mode 100644 index 000000000..4be9f3c88 --- /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/joindoe.json b/domains/joindoe.json new file mode 100644 index 000000000..3f725680c --- /dev/null +++ b/domains/joindoe.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "phantonducthang", + "email": "phantonducthang@hotmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/jojojux.json b/domains/jojojux.json new file mode 100644 index 000000000..3a3e7ebca --- /dev/null +++ b/domains/jojojux.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "J0J0HA", + "email": "info@jojojux.de" + }, + "record": { + "URL": "https://jojojux.de" + } +} diff --git a/domains/joker.json b/domains/joker.json index e9e889bd9..cc246d9fc 100644 --- a/domains/joker.json +++ b/domains/joker.json @@ -1,12 +1,12 @@ { - "description": "Personal portfolio website of joker", - "repo": "https://github.com/JoKeRxTD/joker.is-a.dev", - "owner": { - "username": "JoKeRxTD", - "email": "joker@mythbot.org", - "twitter": "https://twitter.com/JoKeRxHD" - }, - "record": { - "CNAME": "jokerxtd.github.io" - } + "description": "Personal portfolio website of joker", + "repo": "https://github.com/JoKeRxTD/joker.is-a.dev", + "owner": { + "username": "JoKeRxTD", + "email": "joker@mythbot.org", + "twitter": "JoKeRxHD" + }, + "record": { + "CNAME": "jokerxtd.github.io" + } } diff --git a/domains/jonas.json b/domains/jonas.json new file mode 100644 index 000000000..5f6e83824 --- /dev/null +++ b/domains/jonas.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "WallnussJonas", + "email": "jonas.werner.nov1999@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jonasrjn.json b/domains/jonasrjn.json new file mode 100644 index 000000000..cd83fb6b3 --- /dev/null +++ b/domains/jonasrjn.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "kxnter", + "email": "jonas.witzel@icloud.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file 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..682f8310d --- /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/jonathanthembo.json b/domains/jonathanthembo.json new file mode 100644 index 000000000..935943c74 --- /dev/null +++ b/domains/jonathanthembo.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "jonasabiiti", + "email": "jonathantsabiiti@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/jonnycodes.json b/domains/jonnycodes.json new file mode 100644 index 000000000..1a75c4201 --- /dev/null +++ b/domains/jonnycodes.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JonnycatMeow", + "email": "jonnygomez156@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/joordih.json b/domains/joordih.json new file mode 100644 index 000000000..c90eecd61 --- /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..72cb6fcc1 --- /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/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..ef1e5f1c0 100644 --- a/domains/joshatticus.json +++ b/domains/joshatticus.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "JoshAtticus", "email": "osmanicteam@gmail.com" - }, - "record": { + }, + "record": { "CNAME": "joshatticus.github.io" - } } - \ No newline at end of file +} diff --git a/domains/joshua.json b/domains/joshua.json deleted file mode 100644 index 027919e4b..000000000 --- a/domains/joshua.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Joshua's Website", - "repo": "https://github.com/joshua-noakes1", - "owner": { - "username": "joshua-noakes1", - "email": "joshua.noakes1@icloud.com" - }, - "record": { - "CNAME": "prx1.oci.cocogoat.xyz" - } -} 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/jovan.json b/domains/jovan.json new file mode 100644 index 000000000..373d2b495 --- /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/jpedro.json b/domains/jpedro.json new file mode 100644 index 000000000..6579832c4 --- /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/jpstore.json b/domains/jpstore.json new file mode 100644 index 000000000..ea2932833 --- /dev/null +++ b/domains/jpstore.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "JonnycatMeow", + "email": "jonnygomez156@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/jqshuv.json b/domains/jqshuv.json index aa2341712..c52362cb1 100644 --- a/domains/jqshuv.json +++ b/domains/jqshuv.json @@ -1,12 +1,12 @@ { - "description": "Jqshuv's Portfolio Page", - "repo": "https://github.com/jqshuv/jqshuv.github.io", - "owner": { - "username": "jqshuv", - "email": "jqshuv@gmail.com", - "twitter": "jqshuv" - }, - "record": { - "CNAME": "jqshuv.github.io" - } + "description": "Jqshuv's Portfolio Page", + "repo": "https://github.com/jqshuv/jqshuv.github.io", + "owner": { + "username": "jqshuv", + "email": "jqshuv@gmail.com", + "twitter": "jqshuv" + }, + "record": { + "CNAME": "jqshuv.github.io" + } } diff --git a/domains/jrdrwn.json b/domains/jrdrwn.json index 9ec5ac297..a131e8473 100644 --- a/domains/jrdrwn.json +++ b/domains/jrdrwn.json @@ -9,4 +9,4 @@ "record": { "CNAME": "jrdrwn.github.io" } -} +} diff --git a/domains/json-generator.json b/domains/json-generator.json new file mode 100644 index 000000000..0719f1e37 --- /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/json.json b/domains/json.json index a406cd7f4..8214eafc6 100644 --- a/domains/json.json +++ b/domains/json.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "jasonappah", - "email": "isadev@jasonaa.me", - "twitter": "jasonaa_" - }, - "record": { - "URL": "https://jasonaa.me/" - } + "owner": { + "username": "jasonappah", + "email": "isadev@jasonaa.me", + "twitter": "jasonaa_" + }, + "record": { + "URL": "https://jasonaa.me" + } } diff --git a/domains/jsttan.json b/domains/jsttan.json new file mode 100644 index 000000000..4c34dbfc6 --- /dev/null +++ b/domains/jsttan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Jst-Tan", + "email": "77162018+Jst-Tan@users.noreply.github.com", + "discord": "1077450378880233512" + }, + + "record": { + "CNAME": "jst-tan.github.io" + } + } + \ No newline at end of file diff --git a/domains/jsworld.json b/domains/jsworld.json index ffba7c4ad..1ce8e5810 100644 --- a/domains/jsworld.json +++ b/domains/jsworld.json @@ -1,6 +1,6 @@ { "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/", + "repo": "https://js.fireurl.ga", "owner": { "username": "pythoniaweb", "email": "gamerciter2@gmail.com", @@ -9,4 +9,4 @@ "record": { "CNAME": "pythoniaweb.github.io" } -} +} diff --git a/domains/jtgr.json b/domains/jtgr.json new file mode 100644 index 000000000..6becbfa66 --- /dev/null +++ b/domains/jtgr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jakublua", + "email": "jkb@courvix.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/juanjo.json b/domains/juanjo.json index d2405eae9..6f65c3be6 100644 --- a/domains/juanjo.json +++ b/domains/juanjo.json @@ -1,11 +1,11 @@ { - "description": "Juanjo personal developer website", - "repo": "https://github.com/string-null/string-null.github.io", - "owner": { - "username": "string-null", - "email": "null0x22@protonmail.com" - }, - "record": { - "CNAME": "string-null.github.io" - } + "description": "Juanjo personal developer website", + "repo": "https://github.com/string-null/string-null.github.io", + "owner": { + "username": "string-null", + "email": "null0x22@protonmail.com" + }, + "record": { + "CNAME": "string-null.github.io" + } } diff --git a/domains/juhair.json b/domains/juhair.json index 6695800a6..b1b852310 100644 --- a/domains/juhair.json +++ b/domains/juhair.json @@ -1,10 +1,10 @@ { - "description": "Juhair's Portfolio Website", - "owner": { - "username": "juhair-cupcake", - "email": "juhair98@pm.me" - }, - "record": { - "URL": "https://juhair-dev.netlify.app" - } + "description": "Juhair's Portfolio Website", + "owner": { + "username": "juhair-cupcake", + "email": "juhair98@pm.me" + }, + "record": { + "URL": "https://juhair-dev.netlify.app" + } } diff --git a/domains/juikulkarni.json b/domains/juikulkarni.json new file mode 100644 index 000000000..642ed8254 --- /dev/null +++ b/domains/juikulkarni.json @@ -0,0 +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" + } +} diff --git a/domains/juisai.json b/domains/juisai.json new file mode 100644 index 000000000..3429f5c74 --- /dev/null +++ b/domains/juisai.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Eima834", + "email": "dargiseimantas5@gmail.com", + "discord": "1095651340589469786" + }, + + "record": { + "A": ["198.251.86.152"] + } +} diff --git a/domains/julian45838.json b/domains/julian45838.json new file mode 100644 index 000000000..6b9b14847 --- /dev/null +++ b/domains/julian45838.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "julian45678", + "email": "Julian464774@outlook.de" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/julio.json b/domains/julio.json new file mode 100644 index 000000000..ec44f209a --- /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/juliocesar.json b/domains/juliocesar.json new file mode 100644 index 000000000..dfa58c444 --- /dev/null +++ b/domains/juliocesar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jcwisniewski", + "email": "julio.wisnieski@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/juliusknuff.json b/domains/juliusknuff.json index d1bf54156..c68308bb5 100644 --- a/domains/juliusknuff.json +++ b/domains/juliusknuff.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "juliusknuff", - "email": "juliusknuff@ok.de" - }, - "record": { - "CNAME": "juliusknu.pages.dev" - } + "owner": { + "username": "juliusknuff", + "email": "juliusknuff@ok.de" + }, + "record": { + "CNAME": "juliusknu.pages.dev" + } } diff --git a/domains/jumanji.json b/domains/jumanji.json new file mode 100644 index 000000000..b5c67df79 --- /dev/null +++ b/domains/jumanji.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "heyjumanji", + "email": "madhuchutiya.unhinge650@silomails.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/junior.json b/domains/junior.json new file mode 100644 index 000000000..6a05bf843 --- /dev/null +++ b/domains/junior.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "juniorbutyeah", + "email": "junior4u@reborn.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } + } \ No newline at end of file diff --git a/domains/jupie.json b/domains/jupie.json new file mode 100644 index 000000000..df329160e --- /dev/null +++ b/domains/jupie.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Jupiee", + "email": "mzkplayz1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/juqwtf.json b/domains/juqwtf.json new file mode 100644 index 000000000..cd850be72 --- /dev/null +++ b/domains/juqwtf.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "denboy0123", + "email": "pochtaproverka01@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/just-muzz.json b/domains/just-muzz.json new file mode 100644 index 000000000..a64ecbd10 --- /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/justcody.json b/domains/justcody.json new file mode 100644 index 000000000..335897f2a --- /dev/null +++ b/domains/justcody.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JWeinelt", + "email": "julian.weinelt@outlook.de" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/justevil.json b/domains/justevil.json new file mode 100644 index 000000000..f1d318bb4 --- /dev/null +++ b/domains/justevil.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EvilG-MC", + "email": "thatjustevil@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/justforever.json b/domains/justforever.json index 603366923..dfe94341a 100644 --- a/domains/justforever.json +++ b/domains/justforever.json @@ -1,11 +1,11 @@ { - "description": "DevJustForever's personal developer website", - "repo": "https://github.com/DevJustForever/devjustforever.github.io", - "owner": { - "username": "DevJustForever", - "email": "mertcelik0541@gmail.com" - }, - "record": { - "CNAME": "devjustforever.github.io" - } + "description": "DevJustForever's personal developer website", + "repo": "https://github.com/DevJustForever/devjustforever.github.io", + "owner": { + "username": "DevJustForever", + "email": "mertcelik0541@gmail.com" + }, + "record": { + "CNAME": "devjustforever.github.io" + } } diff --git a/domains/justin.json b/domains/justin.json index 9b858cb6b..4d0d15a5d 100644 --- a/domains/justin.json +++ b/domains/justin.json @@ -1,11 +1,11 @@ { - "description": "My personal Page", - "repo": "https://github.com/justinjohnymathew/justinjohnymathew.github.io", - "owner": { - "username": "justinjohnymathew", - "email": "justinjohny.jj@gmail.com" - }, - "record": { - "CNAME": "justinjohnymathew.github.io" - } + "description": "My personal Page", + "repo": "https://github.com/justinjohnymathew/justinjohnymathew.github.io", + "owner": { + "username": "justinjohnymathew", + "email": "justinjohny.jj@gmail.com" + }, + "record": { + "CNAME": "justinjohnymathew.github.io" + } } diff --git a/domains/justnils.json b/domains/justnils.json new file mode 100644 index 000000000..e39a4d569 --- /dev/null +++ b/domains/justnils.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "JustNils8", + "email": "nils.privat27@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/justtobbi.json b/domains/justtobbi.json index 6dea4cd00..63ce135c2 100644 --- a/domains/justtobbi.json +++ b/domains/justtobbi.json @@ -8,4 +8,4 @@ "record": { "CNAME": "justtobbi.github.io" } -} \ No newline at end of file +} diff --git a/domains/justtrynacode.json b/domains/justtrynacode.json index 65defaeeb..65004a73a 100644 --- a/domains/justtrynacode.json +++ b/domains/justtrynacode.json @@ -1,12 +1,12 @@ { - "description": "Tryna's website", - "repo": "https://github.com/JustTrynacodee/JustTrynaCodee.github.io", - "owner": { - "username": "JustTrynacodee", - "email": "", - "discord": "JustTrynaCode#0810" - }, - "record": { - "CNAME": "JustTrynaCodee.github.io" - } + "description": "Tryna's website", + "repo": "https://github.com/JustTrynacodee/JustTrynaCodee.github.io", + "owner": { + "username": "JustTrynacodee", + "email": "", + "discord": "JustTrynaCode#0810" + }, + "record": { + "CNAME": "JustTrynaCodee.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/jv.json b/domains/jv.json new file mode 100644 index 000000000..fbd218162 --- /dev/null +++ b/domains/jv.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hemal80", + "email": "hemalfnmondal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jwaxy.json b/domains/jwaxy.json new file mode 100644 index 000000000..20200f391 --- /dev/null +++ b/domains/jwaxy.json @@ -0,0 +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" + } +} diff --git a/domains/jx-1.json b/domains/jx-1.json new file mode 100644 index 000000000..961a75e25 --- /dev/null +++ b/domains/jx-1.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "XxJVG1xX", + "email": "jvgvgaa@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jx1.json b/domains/jx1.json new file mode 100644 index 000000000..961a75e25 --- /dev/null +++ b/domains/jx1.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "XxJVG1xX", + "email": "jvgvgaa@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jxcb.json b/domains/jxcb.json new file mode 100644 index 000000000..cfe6a2bc1 --- /dev/null +++ b/domains/jxcb.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/hikaruisasleep/jxcb.xyz", + "owner": { + "username": "hikaruisasleep", + "email": "i@jxcb.xyz", + "discord": "sleepingicarus#8670" + }, + "record": { + "URL": "https://jxcb.xyz" + } +} diff --git a/domains/jz.json b/domains/jz.json new file mode 100644 index 000000000..2d7f80d6b --- /dev/null +++ b/domains/jz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JZ1324", + "email": "zheng.joshua2@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/jzitnik.json b/domains/jzitnik.json new file mode 100644 index 000000000..a23342b0c --- /dev/null +++ b/domains/jzitnik.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JZITNIK-github", + "email": "klindkubak@zohomail.eu", + "discord": "KLIND#1906" + }, + "record": { + "A": ["216.24.57.1"], + "MX": ["a257fec0e9137cd3.mx2.emailprofi.seznam.cz", "a257fec0e9137cd3.mx1.emailprofi.seznam.cz"] + } +} 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/k93msy.json b/domains/k93msy.json index d72cdaf03..0c56b66e9 100644 --- a/domains/k93msy.json +++ b/domains/k93msy.json @@ -1,11 +1,11 @@ { - "description": "K93MSY website", - "repo": "https://github.com/K93MSY/K93MSY.github.io", - "owner": { - "username": "K93MSY", - "email": "kuritama0903@gmail.com" - }, - "record": { - "CNAME": "k93msy.github.io" - } + "description": "K93MSY website", + "repo": "https://github.com/K93MSY/K93MSY.github.io", + "owner": { + "username": "K93MSY", + "email": "kuritama0903@gmail.com" + }, + "record": { + "CNAME": "k93msy.github.io" + } } diff --git a/domains/kacem.json b/domains/kacem.json index f413e6bad..c525bbc7f 100644 --- a/domains/kacem.json +++ b/domains/kacem.json @@ -1,11 +1,11 @@ { - "description": "Kacem's personal dungeon", - "repo": "https://github.com/LordKacem", - "owner": { - "username": "Kacem", - "email": "Kacem.dev@hotmail.com" - }, - "record": { - "CNAME": "nkessill.sirv.com" - } + "description": "Kacem's personal dungeon", + "repo": "https://github.com/LordKacem", + "owner": { + "username": "Kacem", + "email": "Kacem.dev@hotmail.com" + }, + "record": { + "CNAME": "nkessill.sirv.com" + } } diff --git a/domains/kacper.json b/domains/kacper.json new file mode 100644 index 000000000..d8f6a62e6 --- /dev/null +++ b/domains/kacper.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "flink1337", + "email": "haviksior@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/kaden.json b/domains/kaden.json new file mode 100644 index 000000000..905fb46a3 --- /dev/null +++ b/domains/kaden.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KadenAE", + "email": "kadeinwales@gmail.com" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/kagchi.json b/domains/kagchi.json index 5adbcc6b0..ee5b697f1 100644 --- a/domains/kagchi.json +++ b/domains/kagchi.json @@ -1,11 +1,11 @@ { - "description": "KagChi's Personal Website", - "repo": "https://github.com/KagChi", - "owner": { - "username": "KagChi", - "email": "contact@kagchi.my.id" - }, - "record": { - "URL": "https://kagchi.my.id" - } + "description": "KagChi's Personal Website", + "repo": "https://github.com/KagChi", + "owner": { + "username": "KagChi", + "email": "contact@kagchi.my.id" + }, + "record": { + "URL": "https://kagchi.my.id" + } } diff --git a/domains/kaguwo.json b/domains/kaguwo.json index b2ad285fe..7182e21c9 100644 --- a/domains/kaguwo.json +++ b/domains/kaguwo.json @@ -1,10 +1,10 @@ { - "description": "Kaguwo's Personal Website", - "owner": { - "username": "kaguwomin", - "email": "business@kaguwo.com" - }, - "record": { - "CNAME": "kaguwomin.github.io" - } + "description": "Kaguwo's Personal Website", + "owner": { + "username": "kaguwomin", + "email": "business@kaguwo.com" + }, + "record": { + "CNAME": "kaguwomin.github.io" + } } diff --git a/domains/kai.json b/domains/kai.json index fe6b819d3..eb7e18491 100644 --- a/domains/kai.json +++ b/domains/kai.json @@ -1,11 +1,11 @@ { - "description": "KAI is a Dev", - "repo": "https://github.com/blackaimc/blackaimc.github.io", - "owner": { - "username": "blackaimc", - "email": "blackaimc@gmail.com" - }, - "record": { - "CNAME": "blackaimc.github.io" - } + "description": "KAI is a Dev", + "repo": "https://github.com/blackaimc/blackaimc.github.io", + "owner": { + "username": "blackaimc", + "email": "blackaimc@gmail.com" + }, + "record": { + "CNAME": "blackaimc.github.io" + } } diff --git a/domains/kainer.json b/domains/kainer.json new file mode 100644 index 000000000..88da7ed41 --- /dev/null +++ b/domains/kainer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ue5377", + "email": "kai.ner.h13r@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kaish.json b/domains/kaish.json new file mode 100644 index 000000000..e33ca80c9 --- /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/kaist-server.json b/domains/kaist-server.json new file mode 100644 index 000000000..a81aade9b --- /dev/null +++ b/domains/kaist-server.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "predict-woo", + "email": "andyye.jongcye@gmail.com" + }, + "record": { + "A": ["130.162.135.186"] + } +} diff --git a/domains/kaivalya.json b/domains/kaivalya.json index 67b4342c2..4418749e3 100644 --- a/domains/kaivalya.json +++ b/domains/kaivalya.json @@ -8,4 +8,4 @@ "record": { "CNAME": "Kaivalya4.github.io" } -} +} diff --git a/domains/kakarot.json b/domains/kakarot.json new file mode 100644 index 000000000..5861ef9fe --- /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/kalebhumpal.json b/domains/kalebhumpal.json new file mode 100644 index 000000000..fe7ba826c --- /dev/null +++ b/domains/kalebhumpal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kaleblub", + "email": "kaleblub@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kamek.json b/domains/kamek.json new file mode 100644 index 000000000..a63731287 --- /dev/null +++ b/domains/kamek.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Kamek437", + "email": "hidden_tuetle427@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kameyo.json b/domains/kameyo.json new file mode 100644 index 000000000..536882bb5 --- /dev/null +++ b/domains/kameyo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "WhosKameyo", + "email": "kameyof@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kamilbienkowski.json b/domains/kamilbienkowski.json new file mode 100644 index 000000000..2c9cb61cc --- /dev/null +++ b/domains/kamilbienkowski.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Trix3l", + "email": "kamiljan.bienkowski@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kamlendras.json b/domains/kamlendras.json new file mode 100644 index 000000000..334375cd2 --- /dev/null +++ b/domains/kamlendras.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kamlendras", + "email": "ksinghpro@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kapoor.json b/domains/kapoor.json new file mode 100644 index 000000000..eb5a37762 --- /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/kappurumedia.json b/domains/kappurumedia.json new file mode 100644 index 000000000..86ed91a78 --- /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/karan.json b/domains/karan.json new file mode 100644 index 000000000..e0aa55e98 --- /dev/null +++ b/domains/karan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Karandev2007", + "email": "karangamerz207@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/karanxidhu.json b/domains/karanxidhu.json new file mode 100644 index 000000000..2fa871989 --- /dev/null +++ b/domains/karanxidhu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Karanxidhu", + "email": "sidhu.karanjot22@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kartik.json b/domains/kartik.json index 2a6e2a717..ccc97b38f 100644 --- a/domains/kartik.json +++ b/domains/kartik.json @@ -1,11 +1,11 @@ { - "description": "Kartik's website", - "repo": "https://github.com/kartiktalwar2003/kartiktalwar2003.github.io", - "owner": { - "username": "kartiktalwar2003", - "email": "kartiktalwar2003@gmail.com" - }, - "record": { - "CNAME": "kartiktalwar2003.github.io" - } + "description": "Kartik's website", + "repo": "https://github.com/kartiktalwar2003/kartiktalwar2003.github.io", + "owner": { + "username": "kartiktalwar2003", + "email": "kartiktalwar2003@gmail.com" + }, + "record": { + "CNAME": "kartiktalwar2003.github.io" + } } diff --git a/domains/kashif-kadri.json b/domains/kashif-kadri.json new file mode 100644 index 000000000..e87b6ce5a --- /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/kasu.json b/domains/kasu.json new file mode 100644 index 000000000..1147cf6ca --- /dev/null +++ b/domains/kasu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Trandang-hiendev", + "email": "trandanghien120@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kasun.json b/domains/kasun.json new file mode 100644 index 000000000..399897a55 --- /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/kasuu.json b/domains/kasuu.json new file mode 100644 index 000000000..1147cf6ca --- /dev/null +++ b/domains/kasuu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Trandang-hiendev", + "email": "trandanghien120@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kaushal.json b/domains/kaushal.json new file mode 100644 index 000000000..a8973434e --- /dev/null +++ b/domains/kaushal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kks007", + "email": "kaushalkishor10702@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kaushik-bhadarka.json b/domains/kaushik-bhadarka.json new file mode 100644 index 000000000..ec78bbb75 --- /dev/null +++ b/domains/kaushik-bhadarka.json @@ -0,0 +1,11 @@ +{ + "description": "Kaushik Bhadarka.", + "repo": "https://github.com/kaushik-bhadarka/kaushik-bhadarka.github.io", + "owner": { + "username": "kaushik-bhadarka", + "email": "kaushik-bhadarka@acquaintsoft.com" + }, + "record": { + "CNAME": "kaushik-bhadarka.github.io" + } +} diff --git a/domains/kaushik.kashyap.json b/domains/kaushik.kashyap.json new file mode 100644 index 000000000..29cf0112d --- /dev/null +++ b/domains/kaushik.kashyap.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kaushik-kashyap", + "email": "kknl65789@gmail.com" + }, + "record": { + "URL": "https://github.com/kaushik-kashyap/kaushik-kashyap.git" + } +} diff --git a/domains/kaustubh.json b/domains/kaustubh.json new file mode 100644 index 000000000..ae152c53d --- /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/kavi.json b/domains/kavi.json index f81d0b7f7..94f5f4824 100644 --- a/domains/kavi.json +++ b/domains/kavi.json @@ -1,12 +1,12 @@ { - "description": "Portfolio website", - "repo": "https://github.com/dkaviarasu/dkaviarasu.github.io", - "owner": { - "username": "dkaviarasu", - "email": "", - "twitter": "kaviarasudm" - }, - "record": { - "CNAME": "dkaviarasu.github.io" - } + "description": "Portfolio website", + "repo": "https://github.com/dkaviarasu/dkaviarasu.github.io", + "owner": { + "username": "dkaviarasu", + "email": "", + "twitter": "kaviarasudm" + }, + "record": { + "CNAME": "dkaviarasu.github.io" + } } diff --git a/domains/kavinned.json b/domains/kavinned.json new file mode 100644 index 000000000..4f51eeb8c --- /dev/null +++ b/domains/kavinned.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kafeicheez2", + "email": "kavin.ned@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kawanua.json b/domains/kawanua.json new file mode 100644 index 000000000..1c79466c5 --- /dev/null +++ b/domains/kawanua.json @@ -0,0 +1,12 @@ +{ + "repo": "https://github.com/kawanuaid", + "owner": { + "username": "kawanuaid", + "twitter": "kawanua", + "email": "" + }, + + "record": { + "URL": "https://www.kawanua.id" + } +} diff --git a/domains/kaweees.json b/domains/kaweees.json index 5e0ee081e..9fce615be 100644 --- a/domains/kaweees.json +++ b/domains/kaweees.json @@ -1,11 +1,11 @@ { - "description": "Kaweees is a Dev", - "repo": "https://github.com/Kaweees/is-a-dev", - "owner": { - "username": "Kaweees", - "email": "miguelvillafloran@gmail.com" - }, - "record": { - "CNAME": "kaweees.github.io" - } + "description": "Kaweees is a Dev", + "repo": "https://github.com/Kaweees/is-a-dev", + "owner": { + "username": "Kaweees", + "email": "miguelvillafloran@gmail.com" + }, + "record": { + "CNAME": "kaweees.github.io" + } } diff --git a/domains/kaweendra.json b/domains/kaweendra.json index 254ebe9bc..db2d63360 100644 --- a/domains/kaweendra.json +++ b/domains/kaweendra.json @@ -1,11 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "kaweendras", "email": "salitha.wijerathna@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "kaweendras.github.io" - } } +} diff --git a/domains/kawet.json b/domains/kawet.json new file mode 100644 index 000000000..5e068a3fb --- /dev/null +++ b/domains/kawet.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Kawet00", + "email": "", + "twitter": "Kawet00", + "discord": "Kawet#4827" + }, + "record": { + "CNAME": "ee4b2375-cc40-4c9d-b34a-9fa2047b8ebf.id.repl.co" + } +} diff --git a/domains/kayden.json b/domains/kayden.json new file mode 100644 index 000000000..b253da134 --- /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/kaz.json b/domains/kaz.json index 18a5fd01f..0b5d460fa 100644 --- a/domains/kaz.json +++ b/domains/kaz.json @@ -1,11 +1,11 @@ { - "description": "Add some description", - "repo": "https://github.com/kazz0001/kazz0001.github.io", - "owner": { - "username": "kazz0001", - "email": "badchicken11690@gmail.com" - }, - "record": { - "CNAME": "kazz0001.github.io" - } + "description": "Add some description", + "repo": "https://github.com/kazz0001/kazz0001.github.io", + "owner": { + "username": "kazz0001", + "email": "badchicken11690@gmail.com" + }, + "record": { + "CNAME": "kazz0001.github.io" + } } diff --git a/domains/kaze.json b/domains/kaze.json new file mode 100644 index 000000000..6882d844b --- /dev/null +++ b/domains/kaze.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kazeapp", + "email": "kazeapp2022@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kckarnige.json b/domains/kckarnige.json index fa0c416fb..8375cfb7d 100644 --- a/domains/kckarnige.json +++ b/domains/kckarnige.json @@ -1,12 +1,12 @@ { - "description": "KayoticCarnige is a dev", - "repo": "https://github.com/kckarnige/kckarnige.github.io", - "owner": { - "username": "kckarnige", - "email": "kayos156official@gmail.com", - "twitter": "kckarnige" - }, - "record": { - "CNAME": "kckarnige.github.io" - } + "description": "KayoticCarnige is a dev", + "repo": "https://github.com/kckarnige/kckarnige.github.io", + "owner": { + "username": "kckarnige", + "email": "kayos156official@gmail.com", + "twitter": "kckarnige" + }, + "record": { + "CNAME": "kckarnige.github.io" + } } diff --git a/domains/kd.json b/domains/kd.json index 12bdab5a5..2c336b6c5 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/keczuu.json b/domains/keczuu.json new file mode 100644 index 000000000..2528e1357 --- /dev/null +++ b/domains/keczuu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Keczuu", + "email": "koteczek5184@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kefir.json b/domains/kefir.json new file mode 100644 index 000000000..2f992d389 --- /dev/null +++ b/domains/kefir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kefir2115", + "email": "zakremciany533@gmail.com" + }, + "record": { + "CNAME": "kefir2115.github.io" + } +} diff --git a/domains/keikibun.json b/domains/keikibun.json new file mode 100644 index 000000000..4adae4bfb --- /dev/null +++ b/domains/keikibun.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "zerobun", + "email": "tareku2003@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/keirnegn.json b/domains/keirnegn.json new file mode 100644 index 000000000..c3364f4fc --- /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 0dc8de9ad..971c4bd43 100644 --- a/domains/keithkhaotic.json +++ b/domains/keithkhaotic.json @@ -4,9 +4,9 @@ "owner": { "username": "KeithKhaotic", "email": "keithbussyness@gmail.com", - "twitter": "@redrocker133" + "twitter": "redrocker133" }, "record": { "CNAME": "keithkhaotic.github.io" } -} +} diff --git a/domains/keju.json b/domains/keju.json index b19ed8fdf..cb21a4ea8 100644 --- a/domains/keju.json +++ b/domains/keju.json @@ -1,12 +1,12 @@ { - "description": "Kelvin Julian - Personal Website", - "repo": "https://github.com/kejuuu/kejuuu.github.io", - "owner": { - "username": "kejuuu", - "email": "kelvinjulian.kj@gmail.com", - "twitter": "@Keju__" - }, - "record": { - "CNAME": "kejuuu.github.io" - } + "description": "Kelvin Julian - Personal Website", + "repo": "https://github.com/kejuuu/kejuuu.github.io", + "owner": { + "username": "kejuuu", + "email": "kelvinjulian.kj@gmail.com", + "twitter": "Keju__" + }, + "record": { + "CNAME": "kejuuu.github.io" + } } diff --git a/domains/kekda.json b/domains/kekda.json index 2b40ad9d8..25deae69d 100644 --- a/domains/kekda.json +++ b/domains/kekda.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "kekda-py", - "email": "yashverma7869@gmail.com", - "twitter": "Yash72274544" - }, - "record": { - "URL": "https://yashverma.me" - } + "owner": { + "username": "kekda-py", + "email": "yashverma7869@gmail.com", + "twitter": "Yash72274544" + }, + "record": { + "URL": "https://yashverma.me" + } } diff --git a/domains/keli5.json b/domains/keli5.json index 9d505fab2..064272588 100644 --- a/domains/keli5.json +++ b/domains/keli5.json @@ -1,12 +1,12 @@ { - "description": "keli5", - "repo": "https://github.com/keli5/keli5.github.io", - "owner": { - "username": "keli5", - "email": "", - "twitter": "keli5_letters" - }, - "record": { - "CNAME": "keli5.github.io" - } + "description": "keli5", + "repo": "https://github.com/keli5/keli5.github.io", + "owner": { + "username": "keli5", + "email": "", + "twitter": "keli5_letters" + }, + "record": { + "CNAME": "keli5.github.io" + } } diff --git a/domains/kells.json b/domains/kells.json index d68185933..0121d4b81 100644 --- a/domains/kells.json +++ b/domains/kells.json @@ -1,11 +1,11 @@ { - "description": "Kells is Developer!", - "repo": "https://github.com/jwkim101201/jwkim101201.github.io", - "owner": { - "username": "jwkim101201", - "email": "jwkim101201@gmail.com" - }, - "record": { - "CNAME": "jwkim101201.github.io" - } + "description": "Kells is Developer!", + "repo": "https://github.com/jwkim101201/jwkim101201.github.io", + "owner": { + "username": "jwkim101201", + "email": "jwkim101201@gmail.com" + }, + "record": { + "CNAME": "jwkim101201.github.io" + } } diff --git a/domains/kelvinmjr707.json b/domains/kelvinmjr707.json new file mode 100644 index 000000000..6ac6d416e --- /dev/null +++ b/domains/kelvinmjr707.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KelvinMJr707", + "email": "KelvinMJr707@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/ken.json b/domains/ken.json index 3052e8455..091fc8c62 100644 --- a/domains/ken.json +++ b/domains/ken.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Ken Pemberton", - "email": "kenpem@gmail.com" - }, - "record": { - "CNAME": "grumpyoldfart.org" - } + "owner": { + "username": "kenpem", + "email": "kenpem@gmail.com" + }, + "record": { + "CNAME": "grumpyoldfart.org" + } } diff --git a/domains/kenanneo.json b/domains/kenanneo.json new file mode 100644 index 000000000..ba0b2ff67 --- /dev/null +++ b/domains/kenanneo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kenanneo", + "email": "kenanneo2@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kenma.json b/domains/kenma.json new file mode 100644 index 000000000..9c2e889ea --- /dev/null +++ b/domains/kenma.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "d746f", + "email": "shoyohosting@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kenney.json b/domains/kenney.json index b26b86938..d97659f20 100644 --- a/domains/kenney.json +++ b/domains/kenney.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kendofriendo", - "email": "goadke@g.cofc.edu" - }, - "record": { - "CNAME": "hashnode.network" - } + "owner": { + "username": "kendofriendo", + "email": "goadke@g.cofc.edu" + }, + "record": { + "CNAME": "hashnode.network" + } } diff --git a/domains/kenny.json b/domains/kenny.json new file mode 100644 index 000000000..49140c019 --- /dev/null +++ b/domains/kenny.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "FireBoiDiscord", + "email": "kennybugeja@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/kenwu.json b/domains/kenwu.json index 83dcbaf90..4bbda27e5 100644 --- a/domains/kenwu.json +++ b/domains/kenwu.json @@ -2,11 +2,11 @@ "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" + "username": "KenWuqianghao", + "email": "wooqianghao@gmail.com", + "twitter": "KenWuqianghao" }, "record": { - "CNAME": "kenwuqianghao.github.io" + "CNAME": "kenwuqianghao.github.io" } - } \ No newline at end of file +} diff --git a/domains/kerlos.json b/domains/kerlos.json new file mode 100644 index 000000000..3e261b8ce --- /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/kev.json b/domains/kev.json index 4c45b8a2a..660ad20c4 100644 --- a/domains/kev.json +++ b/domains/kev.json @@ -1,11 +1,11 @@ { - "description": "Personal website", - "repo": "https://github.com/kevinle108/kevinle108.github.io", - "owner": { - "username": "kevinle108", - "email": "kevinle108@gmail.com" - }, - "record": { - "CNAME": "kevinle108.github.io" - } + "description": "Personal website", + "repo": "https://github.com/kevinle108/kevinle108.github.io", + "owner": { + "username": "kevinle108", + "email": "kevinle108@gmail.com" + }, + "record": { + "CNAME": "kevinle108.github.io" + } } 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/kevv.json b/domains/kevv.json new file mode 100644 index 000000000..d3e5b6940 --- /dev/null +++ b/domains/kevv.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Kevin123456789-1", + "email": "kpkpkp12321@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/keyaan.json b/domains/keyaan.json new file mode 100644 index 000000000..dd2c1497b --- /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/keyboarding-advanced-test.json b/domains/keyboarding-advanced-test.json new file mode 100644 index 000000000..c8bfa98db --- /dev/null +++ b/domains/keyboarding-advanced-test.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "deecoyz", + "email": "swr86.a8z72.a38o4.qm65c.lt0bz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/keylock.json b/domains/keylock.json new file mode 100644 index 000000000..fb69a0062 --- /dev/null +++ b/domains/keylock.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kaimodiss", + "email": "pijulas12345@gmail.com" + }, + "record": { + "A": ["45.137.116.114"] + } +} diff --git a/domains/keyurnimavat.json b/domains/keyurnimavat.json new file mode 100644 index 000000000..bb8a67fa2 --- /dev/null +++ b/domains/keyurnimavat.json @@ -0,0 +1,11 @@ +{ + "description": "keyur Profile.", + "repo": "https://github.com/keyurnimavat/keyurnimavat.github.io", + "owner": { + "username": "keyurnimavat", + "email": "" + }, + "record": { + "CNAME": "keyurnimavat.github.io" + } +} diff --git a/domains/kh.json b/domains/kh.json new file mode 100644 index 000000000..8c52380bf --- /dev/null +++ b/domains/kh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "khagdev", + "email": "nguyendaikhang2000@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kha.json b/domains/kha.json index ed3984f21..6bc9437c2 100644 --- a/domains/kha.json +++ b/domains/kha.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "bkit9x", "email": "bkit9x@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "bkit9x.github.io" - } } - \ No newline at end of file +} diff --git a/domains/khag.json b/domains/khag.json new file mode 100644 index 000000000..be7f8a334 --- /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/khaled.json b/domains/khaled.json new file mode 100644 index 000000000..3cdd9c8f9 --- /dev/null +++ b/domains/khaled.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "khaled-0", + "email": "spkhalad@gmail.com" + }, + "record": { + "CNAME": "khaled-0.github.io" + } +} diff --git a/domains/khang.json b/domains/khang.json new file mode 100644 index 000000000..8c52380bf --- /dev/null +++ b/domains/khang.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "khagdev", + "email": "nguyendaikhang2000@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/khanh.json b/domains/khanh.json index cd666ce18..fd38aa557 100644 --- a/domains/khanh.json +++ b/domains/khanh.json @@ -1,11 +1,11 @@ { - "description": "Khanh's personal developer website", - "repo": "https://github.com/canfam", - "owner": { - "username": "canfam", - "email": "khanhpham072007@gmail.com" - }, - "record": { - "CNAME": "canfam.github.io" - } + "description": "Khanh's personal developer website", + "repo": "https://github.com/canfam", + "owner": { + "username": "canfam", + "email": "khanhpham072007@gmail.com" + }, + "record": { + "CNAME": "canfam.github.io" + } } diff --git a/domains/khasan-tokhirov.json b/domains/khasan-tokhirov.json new file mode 100644 index 000000000..bab8fcb07 --- /dev/null +++ b/domains/khasan-tokhirov.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FrostOnFire", + "email": "khasan.tokhirov@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/khcrv.json b/domains/khcrv.json index 0be7cfe07..82fc14fa8 100644 --- a/domains/khcrv.json +++ b/domains/khcrv.json @@ -1,11 +1,11 @@ { - "description": "KhCrv Portfolio Website", - "repo": "https://github.com/KhCrv/khcrv.github.io", - "owner": { - "username": "KhCrv", - "email": "pedusty@hotmail.com" - }, - "record": { - "CNAME": "khcrv.github.io" - } + "description": "KhCrv Portfolio Website", + "repo": "https://github.com/KhCrv/khcrv.github.io", + "owner": { + "username": "KhCrv", + "email": "pedusty@hotmail.com" + }, + "record": { + "CNAME": "khcrv.github.io" + } } diff --git a/domains/khongtontien.json b/domains/khongtontien.json new file mode 100644 index 000000000..03e519a21 --- /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/khushraj.json b/domains/khushraj.json index fd86f5e90..526e22a4b 100644 --- a/domains/khushraj.json +++ b/domains/khushraj.json @@ -1,11 +1,11 @@ { - "description": "Khushraj Rathod's personal website.", - "repo": "https://github.com/KhushrajRathod/www.khushrajrathod.com", - "owner": { - "username": "KhushrajRathod", - "email": "me@khushrajrathod.com" - }, - "record": { - "URL": "https://www.khushrajrathod.com" - } + "description": "Khushraj Rathod's personal website.", + "repo": "https://github.com/KhushrajRathod/www.khushrajrathod.com", + "owner": { + "username": "KhushrajRathod", + "email": "me@khushrajrathod.com" + }, + "record": { + "URL": "https://www.khushrajrathod.com" + } } diff --git a/domains/kiara.json b/domains/kiara.json index 1d3eb6904..183f436b2 100644 --- a/domains/kiara.json +++ b/domains/kiara.json @@ -1,11 +1,11 @@ { - "description": "Amelia Corp Official Website.", - "repo": "https://github.com/aaraam/aaraam.github.io", - "owner": { - "username": "ameliakiara", - "email": "contact@kiara.my.id" - }, - "record": { - "CNAME": "lavalink-music-bot-production.up.railway.app" - } + "description": "Amelia Corp Official Website.", + "repo": "https://github.com/aaraam/aaraam.github.io", + "owner": { + "username": "ameliakiara", + "email": "contact@kiara.my.id" + }, + "record": { + "CNAME": "lavalink-music-bot-production.up.railway.app" + } } diff --git a/domains/kicrops.json b/domains/kicrops.json index 314199a08..7f840d617 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" - }, - "record": { - "CNAME": "d3aeb170-58da-460e-aad2-29a40a7a0d80.id.repl.co" - } + "owner": { + "username": "Kicrops", + "email": "spiccininizeida@gmail.com" + }, + "record": { + "CNAME": "kicrops.github.io" + } } diff --git a/domains/kid.json b/domains/kid.json new file mode 100644 index 000000000..96a577f05 --- /dev/null +++ b/domains/kid.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kawanuaid", + "twitter": "kawanua", + "email": "" + }, + + "record": { + "URL": "https://dev.kawanua.id" + } +} diff --git a/domains/kikig4mer.json b/domains/kikig4mer.json new file mode 100644 index 000000000..befa0e0a0 --- /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/kilic.json b/domains/kilic.json index c7ef9a8b8..69d74bd9f 100644 --- a/domains/kilic.json +++ b/domains/kilic.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "kiliczsh", - "email": "muhammeddkilicc@gmail.com" - }, - "description": "personal site", - "repo": "https://github.com/kiliczsh/kiliczsh.github.io", - "record": { - "CNAME": "kiliczsh.github.io" - } + "owner": { + "username": "kiliczsh", + "email": "muhammeddkilicc@gmail.com" + }, + "description": "personal site", + "repo": "https://github.com/kiliczsh/kiliczsh.github.io", + "record": { + "CNAME": "kiliczsh.github.io" + } } diff --git a/domains/killerf.json b/domains/killerf.json new file mode 100644 index 000000000..dcc4e7dd6 --- /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 Grove Street", + "repo": "https://discord.gg/groove-community-875725991551569960", + "owner": { + "username": "MohamexDR", + "email": "loliehentaixd@gmail.com" + }, + "record": { + "URL": "https://discord.gg/groove-community-875725991551569960" + } +} diff --git a/domains/killua.json b/domains/killua.json index 44fed95cb..b4483de86 100644 --- a/domains/killua.json +++ b/domains/killua.json @@ -1,11 +1,11 @@ { - "description": "Personal Page", - "repo": "https://github.com/Killua7362/Killua7362.github.io", - "owner": { - "username": "Killua7362", - "email": "bhat7362@gmail.com" - }, - "record": { - "CNAME": "Killua7362.github.io" - } + "description": "Personal Page", + "repo": "https://github.com/Killua7362/Killua7362.github.io", + "owner": { + "username": "Killua7362", + "email": "bhat7362@gmail.com" + }, + "record": { + "CNAME": "Killua7362.github.io" + } } diff --git a/domains/kime.json b/domains/kime.json new file mode 100644 index 000000000..7b1cf343d --- /dev/null +++ b/domains/kime.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Mikelikesgames1", + "email": "mikeyhackjob21@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/king.json b/domains/king.json new file mode 100644 index 000000000..f3c8d4f03 --- /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/kingq23.json b/domains/kingq23.json index d33c478e2..ea6377f62 100644 --- a/domains/kingq23.json +++ b/domains/kingq23.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Kingq23", - "email": "qadams2008@gmail.com" - }, - "record": { - "URL": "https://kingq23-is-a-dev.kingq23.repl.co/" - } + "owner": { + "username": "Kingq23", + "email": "qadams2008@gmail.com" + }, + "record": { + "URL": "https://kingq23-is-a-dev.kingq23.repl.co" + } } diff --git a/domains/kio.json b/domains/kio.json new file mode 100644 index 000000000..aa607de87 --- /dev/null +++ b/domains/kio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "YoruAkio", + "email": "yoruakio@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kira.json b/domains/kira.json new file mode 100644 index 000000000..d749f0159 --- /dev/null +++ b/domains/kira.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jwan9714", + "email": "jwan9714@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kiran.json b/domains/kiran.json index 29f6ff89b..ceafc0b87 100644 --- a/domains/kiran.json +++ b/domains/kiran.json @@ -1,11 +1,11 @@ { - "description": "My very own is a dev domain for github pages", - "repo": "https://github.com/kiranhart/kiranhart.github.io", - "owner": { - "username": "kiranhart", - "email": "kiran.hart@live.com" - }, - "record": { - "CNAME": "kiranhart.github.io" - } + "description": "My very own is a dev domain for github pages", + "repo": "https://github.com/kiranhart/kiranhart.github.io", + "owner": { + "username": "kiranhart", + "email": "kiran.hart@live.com" + }, + "record": { + "CNAME": "kiranhart.github.io" + } } 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..9d16e5084 --- /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/kishan-bagiya.json b/domains/kishan-bagiya.json new file mode 100644 index 000000000..2d7f52b87 --- /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/kiss.json b/domains/kiss.json index 3b23877db..711923825 100644 --- a/domains/kiss.json +++ b/domains/kiss.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "filipekiss", - "email": "filipe@kiss.ink" - }, - "record": { - "CNAME": "filipe.kiss.ink" - } + "owner": { + "username": "filipekiss", + "email": "filipe@kiss.ink" + }, + "record": { + "CNAME": "filipe.kiss.ink" + } } diff --git a/domains/kitku.json b/domains/kitku.json new file mode 100644 index 000000000..fbcd54660 --- /dev/null +++ b/domains/kitku.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kitku132", + "email": "kitku560@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kitsune.json b/domains/kitsune.json new file mode 100644 index 000000000..87bac2432 --- /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/kitten.json b/domains/kitten.json index 2b27f72e2..f6f798f81 100644 --- a/domains/kitten.json +++ b/domains/kitten.json @@ -1,11 +1,11 @@ { - "description": "using for personal projects", - "repo": "https://github.com/KittensAreDaBest", - "owner": { - "username": "KittensAreDaBest", - "email": "is-a-dev@mythicalkitten.com" - }, - "record": { - "CNAME": "is-a-dev.mythicalkitten.com" - } + "description": "using for personal projects", + "repo": "https://github.com/KittensAreDaBest", + "owner": { + "username": "KittensAreDaBest", + "email": "is-a-dev@mythicalkitten.com" + }, + "record": { + "CNAME": "is-a-dev.mythicalkitten.com" + } } diff --git a/domains/kitty.json b/domains/kitty.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/kitty.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/kiwozen.json b/domains/kiwozen.json new file mode 100644 index 000000000..0bb4c7787 --- /dev/null +++ b/domains/kiwozen.json @@ -0,0 +1,10 @@ +{ + "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..dcc0043a4 100644 --- a/domains/kiyora.json +++ b/domains/kiyora.json @@ -2,11 +2,10 @@ "description": "using for personal projects", "repo": "https://github.com/ItsMyEyes", "owner": { - "username": "ItsMyEyes", - "email": "dev@sipaling.top" + "username": "ItsMyEyes", + "email": "dev@sipaling.top" }, "record": { - "CNAME": "itsmyeyes.github.io" + "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/klarkc.json b/domains/klarkc.json new file mode 100644 index 000000000..92ea3bbee --- /dev/null +++ b/domains/klarkc.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "klarkc", + "email": "walkerleite490@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kleb.json b/domains/kleb.json new file mode 100644 index 000000000..8d4e08bbd --- /dev/null +++ b/domains/kleb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KrazyKleb", + "email": "krazykleb@outlook.com" + }, + "record": { + "A": ["69.30.249.53"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/klindos.jzitnik.json b/domains/klindos.jzitnik.json new file mode 100644 index 000000000..bdc9b9fcd --- /dev/null +++ b/domains/klindos.jzitnik.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JZITNIK-github", + "email": "klindkubak@zohomail.eu", + "discord": "KLIND#1906" + }, + "record": { + "CNAME": "klind-os.onrender.com" + } +} diff --git a/domains/klouqzz.json b/domains/klouqzz.json index c4df0f69e..acbe83c4a 100644 --- a/domains/klouqzz.json +++ b/domains/klouqzz.json @@ -1,11 +1,11 @@ { - "description": "Klouqz Website's", - "repo": "https://github.com/klouqzz/klouqzz.github.io", - "owner": { - "username": "klouqzz", - "email": "klouqz@gmail.com" - }, - "record": { - "CNAME": "klouqzz.github.io" - } + "description": "Klouqz Website's", + "repo": "https://github.com/klouqzz/klouqzz.github.io", + "owner": { + "username": "klouqzz", + "email": "klouqz@gmail.com" + }, + "record": { + "CNAME": "klouqzz.github.io" + } } diff --git a/domains/kmrvarun.json b/domains/kmrvarun.json index 10bcf224e..af06c06ee 100644 --- a/domains/kmrvarun.json +++ b/domains/kmrvarun.json @@ -1,11 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "kmr-varun", "email": "kmr11varun@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "kmr-varun.github.io" - } } +} diff --git a/domains/kno.json b/domains/kno.json new file mode 100644 index 000000000..331dd65d8 --- /dev/null +++ b/domains/kno.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MDev123", + "email": "markbekech@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/knsrinath.json b/domains/knsrinath.json new file mode 100644 index 000000000..571562e2d --- /dev/null +++ b/domains/knsrinath.json @@ -0,0 +1,10 @@ +{ + "description": "knsrinath.is-a.dev", + "owner": { + "username": "knsrinath", + "email": "naga@knsrinath.com" + }, + "record": { + "URL": "https://knsrinath.com" + } +} diff --git a/domains/kntlpop.json b/domains/kntlpop.json new file mode 100644 index 000000000..e11842689 --- /dev/null +++ b/domains/kntlpop.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "suhujetlag5", + "email": "suhujetlag5@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/kodex.json b/domains/kodex.json new file mode 100644 index 000000000..0576cb7b0 --- /dev/null +++ b/domains/kodex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "codex009", + "email": "3gareb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/koding.json b/domains/koding.json index 24283837d..d38162e72 100644 --- a/domains/koding.json +++ b/domains/koding.json @@ -1,11 +1,11 @@ { - "description": "Full stack developer proficient in Kotlin", - "repo": "https://github.com/KodingDev", - "owner": { - "username": "KodingDev", - "email": "kodingdev@pm.me" - }, - "record": { - "URL": "https://koding.dev" - } + "description": "Full stack developer proficient in Kotlin", + "repo": "https://github.com/KodingDev", + "owner": { + "username": "KodingDev", + "email": "kodingdev@pm.me" + }, + "record": { + "URL": "https://koding.dev" + } } diff --git a/domains/kofy.json b/domains/kofy.json new file mode 100644 index 000000000..d428152dc --- /dev/null +++ b/domains/kofy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Kofysh", + "email": "baki.sagir@ik.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/komovie.json b/domains/komovie.json new file mode 100644 index 000000000..c0d7e398a --- /dev/null +++ b/domains/komovie.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "billybobisverycool", + "email": "27johnballenger@ucsstudent.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/komovies.json b/domains/komovies.json new file mode 100644 index 000000000..c0d7e398a --- /dev/null +++ b/domains/komovies.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "billybobisverycool", + "email": "27johnballenger@ucsstudent.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/koolwiza.json b/domains/koolwiza.json index 57cd570dd..97bd921ee 100644 --- a/domains/koolwiza.json +++ b/domains/koolwiza.json @@ -1,11 +1,11 @@ { - "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" - } + "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/koopa.json b/domains/koopa.json new file mode 100644 index 000000000..1f0e4c88a --- /dev/null +++ b/domains/koopa.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "KoopaCode", + "email": "koopa@koopa.gg", + "twitter": "KioKoopa", + "discord": "koopakio" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/koopacode.json b/domains/koopacode.json new file mode 100644 index 000000000..f0780f83b --- /dev/null +++ b/domains/koopacode.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KoopaCode", + "email": "AndrewLife92@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/korauo.json b/domains/korauo.json index 54b87f72e..50b802eaa 100644 --- a/domains/korauo.json +++ b/domains/korauo.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "korauo", - "email": "", - "twitter": "korauo", - "discord": "korauo#1423" - }, - "record": { - "CNAME": "korauo.github.io" - } + "owner": { + "username": "korauo", + "email": "", + "twitter": "korauo", + "discord": "korauo#1423" + }, + "record": { + "CNAME": "korauo.github.io" + } } 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..5abd47d36 --- /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/koru.json b/domains/koru.json new file mode 100644 index 000000000..9f8b26a78 --- /dev/null +++ b/domains/koru.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "justkorudev", + "email": "popetopotolo@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kory.json b/domains/kory.json index 822c4eb27..b77e8df34 100644 --- a/domains/kory.json +++ b/domains/kory.json @@ -1,12 +1,12 @@ { - "description": "Kory Porter's personal website", - "repo": "https://github.com/korziee", - "owner": { - "username": "korziee", - "twitter": "korziee", - "email": "" - }, - "record": { - "URL": "https://www.koryporter.com/" - } + "description": "Kory Porter's personal website", + "repo": "https://github.com/korziee", + "owner": { + "username": "korziee", + "twitter": "korziee", + "email": "" + }, + "record": { + "URL": "https://www.koryporter.com" + } } diff --git a/domains/koslz.json b/domains/koslz.json new file mode 100644 index 000000000..a499b8b1a --- /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/kotikov.json b/domains/kotikov.json new file mode 100644 index 000000000..ed1fb950b --- /dev/null +++ b/domains/kotikov.json @@ -0,0 +1,13 @@ +{ + "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..2d1d3f06d 100644 --- a/domains/koton-bads.json +++ b/domains/koton-bads.json @@ -4,7 +4,7 @@ "username": "KotonBads", "email": "kotonbads@duck.com" }, - "record" : { + "record": { "CNAME": "kotonbads.github.io" } } diff --git a/domains/koushik.json b/domains/koushik.json new file mode 100644 index 000000000..e4d6a22d0 --- /dev/null +++ b/domains/koushik.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "koek67", + "email": "krishnan.koushik@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/kramiikk.json b/domains/kramiikk.json new file mode 100644 index 000000000..c2ee58540 --- /dev/null +++ b/domains/kramiikk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kramiikk", + "email": "hifund@yandex.ru" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/krazy.json b/domains/krazy.json new file mode 100644 index 000000000..535e1be04 --- /dev/null +++ b/domains/krazy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KrazyKleb", + "email": "krazykleb@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/kresswell.json b/domains/kresswell.json new file mode 100644 index 000000000..1d64d85fd --- /dev/null +++ b/domains/kresswell.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Kresswell", + "email": "simonecresswell@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/krinzal.json b/domains/krinzal.json new file mode 100644 index 000000000..bad4dc5c6 --- /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/kris-patel.json b/domains/kris-patel.json new file mode 100644 index 000000000..7c5fc33ae --- /dev/null +++ b/domains/kris-patel.json @@ -0,0 +1,12 @@ + +{ + "description": "Prorammer , Developer and Student", + "repo": "https://github.com/Kris0011", + "owner": { + "username": "Kris Patel", + "email": "krishp759@gmail.com" + }, + "record": { + "URL": "https://personalportfolio.kris-patelpatel.repl.co/" + } +} \ No newline at end of file diff --git a/domains/kris.json b/domains/kris.json new file mode 100644 index 000000000..b9a59ce51 --- /dev/null +++ b/domains/kris.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "krish73211", + "email": "krish732100@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/krish.json b/domains/krish.json new file mode 100644 index 000000000..b9a59ce51 --- /dev/null +++ b/domains/krish.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "krish73211", + "email": "krish732100@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/krishna.json b/domains/krishna.json index 0321e472c..0e3a89e67 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" - } + "record": { + "CNAME": "krishnabohra.github.io" } - \ No newline at end of file +} diff --git a/domains/krishna03.json b/domains/krishna03.json new file mode 100644 index 000000000..b0d6cfdf9 --- /dev/null +++ b/domains/krishna03.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Krishnabohra", + "email": "Krishnabohra2013@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/krishna033.json b/domains/krishna033.json new file mode 100644 index 000000000..b0d6cfdf9 --- /dev/null +++ b/domains/krishna033.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Krishnabohra", + "email": "Krishnabohra2013@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/krix.json b/domains/krix.json index 7316af4db..5707fea0c 100644 --- a/domains/krix.json +++ b/domains/krix.json @@ -3,8 +3,8 @@ "owner": { "username": "Krix12", "email": "kristjan.kocevar89@gmail.com" - }, + }, "record": { - "CNAME": "krix12-github-io.pages.dev" + "CNAME": "krix12-github-io.pages.dev" } } diff --git a/domains/kriz.json b/domains/kriz.json new file mode 100644 index 000000000..96005cb14 --- /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..ef189b0ea --- /dev/null +++ b/domains/kronifer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Kronifer", + "email": "dillonr5@live.wsd1.org" + }, + "record": { + "A": ["147.182.152.211"] + } +} 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/kryclopz.json b/domains/kryclopz.json new file mode 100644 index 000000000..0623d40b0 --- /dev/null +++ b/domains/kryclopz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kryclopz-development", + "email": "officialkryclopz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/krzysiu.json b/domains/krzysiu.json new file mode 100644 index 000000000..1dbbe498c --- /dev/null +++ b/domains/krzysiu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ProfKrzys", + "email": "krzysztof2011@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kshitij.json b/domains/kshitij.json index 132e479af..dea3ab773 100644 --- a/domains/kshitij.json +++ b/domains/kshitij.json @@ -1,11 +1,14 @@ -{ - "description": "Kshitij Subedi", - "owner": { - "username": "Kshitij Subedi", - "email": "2subedikshitij@gmail.com" - }, - "record": { - "CNAME": "kshitijsubedi.com.np" - } - } - \ No newline at end of file +{ + "owner": { + "username": "nerkoux", + "email": "akshatmehta_14434@mpsjaipur.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/ksingh.json b/domains/ksingh.json new file mode 100644 index 000000000..70e186d41 --- /dev/null +++ b/domains/ksingh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KSinghofficial", + "email": "ksinghofficial@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ksvkabra.json b/domains/ksvkabra.json index 8bd3e65ae..21cfa2c6b 100644 --- a/domains/ksvkabra.json +++ b/domains/ksvkabra.json @@ -1,10 +1,10 @@ { - "description": "Keshav Kabra's website", - "owner": { - "username": "ksvkabra", - "email": "ksvkabra@gmail.com" - }, - "record": { - "CNAME": "ksvkabra.github.io" - } + "description": "Keshav Kabra's website", + "owner": { + "username": "ksvkabra", + "email": "ksvkabra@gmail.com" + }, + "record": { + "CNAME": "ksvkabra.github.io" + } } diff --git a/domains/kuat.json b/domains/kuat.json new file mode 100644 index 000000000..c2ee58540 --- /dev/null +++ b/domains/kuat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kramiikk", + "email": "hifund@yandex.ru" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kuba.json b/domains/kuba.json new file mode 100644 index 000000000..1f6b0e6d5 --- /dev/null +++ b/domains/kuba.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kob-kuba", + "telegram": "kob_kuba", + "email": "admin@kobb.tech" + }, + "record": { + "URL": "https://kob.gay" + } +} diff --git a/domains/kubov.json b/domains/kubov.json index 7e04c55b3..1310381ea 100644 --- a/domains/kubov.json +++ b/domains/kubov.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "Kubov24", "email": "jakubcaly93@gmail.com" - }, + }, - "record": { + "record": { "A": ["37.187.156.46"] - } } - \ No newline at end of file +} 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/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/kunal.json b/domains/kunal.json index 338b74b09..548e6f3d3 100644 --- a/domains/kunal.json +++ b/domains/kunal.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "KunalSingh19", - "email": "KunalSingh19Yt@gmail.com", - "intagram": "it.z_kunal", - "discord": "Kunal#4461" - }, - "description": "I'll probably put some project pages on kunal.is-a.dev.", - "record": { - "CNAME": "kunalsingh19.github.io" - } + "owner": { + "username": "KunalSingh19", + "email": "KunalSingh19Yt@gmail.com", + "intagram": "it.z_kunal", + "discord": "Kunal#4461" + }, + "description": "I'll probably put some project pages on kunal.is-a.dev.", + "record": { + "CNAME": "kunalsingh19.github.io" + } } diff --git a/domains/kurokami.json b/domains/kurokami.json new file mode 100644 index 000000000..5d5343f6c --- /dev/null +++ b/domains/kurokami.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "k3rokami", + "email": "honghongleong2@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kuyacarlos.json b/domains/kuyacarlos.json new file mode 100644 index 000000000..dab4ac778 --- /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/kuzey.json b/domains/kuzey.json new file mode 100644 index 000000000..4af68c885 --- /dev/null +++ b/domains/kuzey.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "duzelicem", + "email": "ardagokce0682@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kweller.json b/domains/kweller.json index eb610763d..90109679b 100644 --- a/domains/kweller.json +++ b/domains/kweller.json @@ -1,11 +1,11 @@ { - "description": "kweller.is-a.dev", - "repo": "https://github.com/real-kwellercat/real-kwellercat.github.io.git", - "owner": { - "username": "real-kwellercat", - "email": "lucas.rausch.732@k12.friscoisd.org" - }, - "record": { - "CNAME": "real-kwellercat.github.io" - } + "description": "kweller.is-a.dev", + "repo": "https://github.com/real-kwellercat/real-kwellercat.github.io.git", + "owner": { + "username": "real-kwellercat", + "email": "lucas.rausch.732@k12.friscoisd.org" + }, + "record": { + "CNAME": "real-kwellercat.github.io" + } } diff --git a/domains/kxden.json b/domains/kxden.json new file mode 100644 index 000000000..69928f92d --- /dev/null +++ b/domains/kxden.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ayekaden", + "email": "kadenfday91@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kyakou.json b/domains/kyakou.json new file mode 100644 index 000000000..b9ff5cda5 --- /dev/null +++ b/domains/kyakou.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kyakou", + "email": "ali_a19@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kyhros.json b/domains/kyhros.json index 29fc345aa..a784c0162 100644 --- a/domains/kyhros.json +++ b/domains/kyhros.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "Klorycs", "email": "abmongus@gmail.com" - }, - "record": { - "URL": "https://kyhros.netlify.app/" - } + }, + "record": { + "URL": "https://kyhros.netlify.app" } - \ No newline at end of file +} diff --git a/domains/kyle.json b/domains/kyle.json index a43324890..323f6d50d 100644 --- a/domains/kyle.json +++ b/domains/kyle.json @@ -1,10 +1,11 @@ { - "description": "My CDN", - "owner": { - "username": "JavaScriptpy", - "email": "zerotwo.on.discord@gmail.com" - }, - "record": { - "CNAME": "4610390a-31b4-45f7-9a4a-4c75e28ecfbd.repl.co" - } -} + "owner": { + "username": "SpectacledBear", + "email": "kyle@spectacledbear.ca" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kylemartin.json b/domains/kylemartin.json index b0d003cd7..cd25c6056 100644 --- a/domains/kylemartin.json +++ b/domains/kylemartin.json @@ -1,11 +1,11 @@ { - "description": "Kyle Martin", - "repo": "https://github.com/js-kyle/js-kyle.github.io", - "owner": { - "username": "js-kyle", - "email": "" - }, - "record": { - "CNAME": "js-kyle.github.io" - } + "description": "Kyle Martin", + "repo": "https://github.com/js-kyle/js-kyle.github.io", + "owner": { + "username": "js-kyle", + "email": "" + }, + "record": { + "CNAME": "js-kyle.github.io" + } } diff --git a/domains/kylomaskgamer.json b/domains/kylomaskgamer.json new file mode 100644 index 000000000..6dcb5cf07 --- /dev/null +++ b/domains/kylomaskgamer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KylomaskGamer", + "email": "kyle@kavenv.net" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/kyoki.json b/domains/kyoki.json index d9aa4e14d..a9465b52a 100644 --- a/domains/kyoki.json +++ b/domains/kyoki.json @@ -1,10 +1,10 @@ { - "owner":{ - "username": "kyokiii", - "discord": "kyoki#0162", - "email": "kyokisunn@gmail.com" - }, - "record": { - "CNAME": "d7dc33e6-0a6b-49ab-bad4-4b006a476a02.id.repl.co" - } + "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..a26818aa5 100644 --- a/domains/kyotox.json +++ b/domains/kyotox.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "kyotox-dev", "email": "kyotox.dev@gmail.com" - }, - "record": { + }, + "record": { "URL": "https://ajiteshrawat.wixsite.com/portfolio" - } } - \ No newline at end of file +} diff --git a/domains/kyoya.json b/domains/kyoya.json index 14b5b57dc..05e3ce32a 100644 --- a/domains/kyoya.json +++ b/domains/kyoya.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "kyoyacchi", - "email": "kyoyacchi@protonmail.ch" - }, - "record": { - "CNAME": "kyoyacchi.github.io" - } + "owner": { + "username": "kyoyacchi", + "email": "kyoyacchi@protonmail.ch" + }, + "record": { + "CNAME": "kyoyacchi.github.io" + } } diff --git a/domains/kz.json b/domains/kz.json new file mode 100644 index 000000000..2f7184e83 --- /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/l0ser.json b/domains/l0ser.json index b5cb346b0..3f2a45565 100644 --- a/domains/l0ser.json +++ b/domains/l0ser.json @@ -1,11 +1,11 @@ { - "description": "L0SER's personal developer website", - "repo": "https://github.com/L0SER8228", - "owner": { - "username": "L0SER8228", - "email": "loserlackey@gmail.com" - }, - "record": { - "CNAME": "L0SER8228.github.io" - } + "description": "L0SER's personal developer website", + "repo": "https://github.com/L0SER8228", + "owner": { + "username": "L0SER8228", + "email": "loserlackey@gmail.com" + }, + "record": { + "CNAME": "L0SER8228.github.io" + } } diff --git a/domains/l3g3n7.json b/domains/l3g3n7.json new file mode 100644 index 000000000..779c3ad7e --- /dev/null +++ b/domains/l3g3n7.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Heroku403", + "email": "juhisharma0757@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/l6174.json b/domains/l6174.json new file mode 100644 index 000000000..8d135a7dc --- /dev/null +++ b/domains/l6174.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/l7neg.json b/domains/l7neg.json new file mode 100644 index 000000000..05101905b --- /dev/null +++ b/domains/l7neg.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "l7neg", + "email": "mahmodealking467@gmail.com", + "repo": "https://replit.com/@L7NEG/L7NEG", + "description": "Main Bio Page And All Its Useful Tools" + }, + "record": { + "A": ["34.111.254.92"], + "TXT": "replit-verify=23cc92c5-cdc9-47bf-9e4f-e692a2ab2097" + } +} diff --git a/domains/lacky.json b/domains/lacky.json new file mode 100644 index 000000000..c167384d0 --- /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/lacti.json b/domains/lacti.json index 2f27ee95a..faa77eef8 100644 --- a/domains/lacti.json +++ b/domains/lacti.json @@ -1,11 +1,11 @@ { - "description": "Lacti's blog", - "repo": "https://github.com/lacti/lacti.github.io", - "owner": { - "username": "lacti", - "email": "lactrious@gmail.com" - }, - "record": { - "CNAME": "lacti.github.io" - } + "description": "Lacti's blog", + "repo": "https://github.com/lacti/lacti.github.io", + "owner": { + "username": "lacti", + "email": "lactrious@gmail.com" + }, + "record": { + "CNAME": "lacti.github.io" + } } diff --git a/domains/lacyx.json b/domains/lacyx.json new file mode 100644 index 000000000..8fd612db3 --- /dev/null +++ b/domains/lacyx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LacyXosu", + "email": "nozoska@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lain.json b/domains/lain.json new file mode 100644 index 000000000..8943bbec3 --- /dev/null +++ b/domains/lain.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "LainUnchained", + "email": "lain.un@protonmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file 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/lakhani-palak.json b/domains/lakhani-palak.json new file mode 100644 index 000000000..50689d10a --- /dev/null +++ b/domains/lakhani-palak.json @@ -0,0 +1,11 @@ +{ + "description": "Lakhani Palak.", + "repo": "https://github.com/lakhani-palak/lakhani-palak.github.io", + "owner": { + "username": "lakhani-palak", + "email": "" + }, + "record": { + "CNAME": "lakhani-palak.github.io" + } +} diff --git a/domains/lakhindar.json b/domains/lakhindar.json new file mode 100644 index 000000000..bd098334f --- /dev/null +++ b/domains/lakhindar.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "LakhindarPal", + "email": "dev.lakhindarpal@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/lalmanthakur.json b/domains/lalmanthakur.json new file mode 100644 index 000000000..9fa90dd07 --- /dev/null +++ b/domains/lalmanthakur.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lalman888", + "email": "chauhanlakshay074@gmail.com" + }, + "record": { + "URL": "https://lalmanthakur.vercel.app" + } +} diff --git a/domains/laluxx.json b/domains/laluxx.json new file mode 100644 index 000000000..a557dda33 --- /dev/null +++ b/domains/laluxx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "laluxx", + "email": "lorenzoaddamo10@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lam.json b/domains/lam.json new file mode 100644 index 000000000..ff23456c3 --- /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/lambda.json b/domains/lambda.json index 1e8d02e3e..2b5ecda99 100644 --- a/domains/lambda.json +++ b/domains/lambda.json @@ -1,11 +1,11 @@ { - "description": "Personal Site for Stadial", - "repo": "https://github.com/stadial/stadial.github.io", - "owner": { - "username": "stadial", - "email": "kfulain.uphrj@aleeas.com" - }, - "record": { - "CNAME": "stadial.github.io" - } + "description": "Personal Site for Stadial", + "repo": "https://github.com/stadial/stadial.github.io", + "owner": { + "username": "stadial", + "email": "kfulain.uphrj@aleeas.com" + }, + "record": { + "CNAME": "stadial.github.io" + } } diff --git a/domains/lamdev.json b/domains/lamdev.json new file mode 100644 index 000000000..33993fd19 --- /dev/null +++ b/domains/lamdev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kentjuno7z", + "email": "lamdev1212@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/lamfun.json b/domains/lamfun.json new file mode 100644 index 000000000..47705b87a --- /dev/null +++ b/domains/lamfun.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lamger", + "email": "ns6192295@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lamger.json b/domains/lamger.json new file mode 100644 index 000000000..47705b87a --- /dev/null +++ b/domains/lamger.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lamger", + "email": "ns6192295@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lamgerr.json b/domains/lamgerr.json new file mode 100644 index 000000000..47705b87a --- /dev/null +++ b/domains/lamgerr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lamger", + "email": "ns6192295@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lamgerxd.json b/domains/lamgerxd.json new file mode 100644 index 000000000..47705b87a --- /dev/null +++ b/domains/lamgerxd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lamger", + "email": "ns6192295@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/landyn.json b/domains/landyn.json new file mode 100644 index 000000000..2650ecc81 --- /dev/null +++ b/domains/landyn.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "2131guhfgjh", + "email": "themoserhousehold@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/lap.json b/domains/lap.json new file mode 100644 index 000000000..0959a03a3 --- /dev/null +++ b/domains/lap.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ItsLap", + "email": "alexanderpaulwheeler15@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/laqie.json b/domains/laqie.json new file mode 100644 index 000000000..dea9a8023 --- /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 index 5b5ede737..05d79d9bf 100644 --- a/domains/larei.json +++ b/domains/larei.json @@ -1,11 +1,11 @@ { - "description": "larei's personal website.", - "repo": "https://github.com/lareithen/lareithen.github.io", + "description": "larei's cool website.", + "repo": "https://github.com/lareii/lareii.github.io", "owner": { - "username": "lareithen", + "username": "lareii", "email": "lareithen@gmail.com" }, "record": { - "CNAME": "lareithen.github.io" + "CNAME": "lareii.github.io" } } diff --git a/domains/larryst.json b/domains/larryst.json index 91ec9d834..660068590 100644 --- a/domains/larryst.json +++ b/domains/larryst.json @@ -1,10 +1,10 @@ { - "description": "Official Website for Larry Studios™", - "owner": { - "username": "kornls", - "email": "larryst.korn@gmail.com" - }, - "record": { - "CNAME": "larrystudios.github.io" - } + "description": "Official Website for Larry Studios™", + "owner": { + "username": "kornls", + "email": "larryst.korn@gmail.com" + }, + "record": { + "CNAME": "larrystudios.github.io" + } } diff --git a/domains/larrystudios.json b/domains/larrystudios.json index 2a8ec91d4..660068590 100644 --- a/domains/larrystudios.json +++ b/domains/larrystudios.json @@ -1,11 +1,10 @@ { - "description": "Official Website for Larry Studios™", - "owner": { - "username": "kornls", - "email": "larryst.korn@gmail.com" - }, - "record": { - "CNAME": "larrystudios.github.io" - } + "description": "Official Website for Larry Studios™", + "owner": { + "username": "kornls", + "email": "larryst.korn@gmail.com" + }, + "record": { + "CNAME": "larrystudios.github.io" + } } - \ No newline at end of file diff --git a/domains/latealways.json b/domains/latealways.json index abe722665..820ffc877 100644 --- a/domains/latealways.json +++ b/domains/latealways.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Sky-FoxGAMING", - "email": "jparedesmoure@awakenclient.com" - }, - "record": { - "CNAME": "Sky-FoxGAMING.github.io" - } + "owner": { + "username": "LateAlways", + "email": "latealways@i-am-a.fuchsiax.dev" + }, + "record": { + "A": ["85.239.250.3"] + } } diff --git a/domains/latestnews.json b/domains/latestnews.json new file mode 100644 index 000000000..5310876c2 --- /dev/null +++ b/domains/latestnews.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "utsav1o1", + "email": "utsavkarki244@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/latuh.json b/domains/latuh.json new file mode 100644 index 000000000..f27f48e47 --- /dev/null +++ b/domains/latuh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "latuh", + "email": "latitud@duck.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/laufey.json b/domains/laufey.json index f86d723a1..7c8a27508 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..747fd743f --- /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.trung.json b/domains/lavalink.trung.json new file mode 100644 index 000000000..c372c8070 --- /dev/null +++ b/domains/lavalink.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} 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..85d3336f0 100644 --- a/domains/laymoth.json +++ b/domains/laymoth.json @@ -7,4 +7,4 @@ "record": { "CNAME": "laymoth.pages.dev" } -} +} diff --git a/domains/layor.json b/domains/layor.json deleted file mode 100644 index e2724f398..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/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/lazyllama.json b/domains/lazyllama.json index 9ef0c5496..708558f14 100644 --- a/domains/lazyllama.json +++ b/domains/lazyllama.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lazylllama", - "email": "kws102522@gmail.com" - }, - "record": { - "CNAME": "lazylllama.github.io" - } + "owner": { + "username": "lazylllama", + "email": "kws102522@gmail.com" + }, + "record": { + "CNAME": "lazylllama.github.io" + } } diff --git a/domains/lcdled.json b/domains/lcdled.json new file mode 100644 index 000000000..f46962cf3 --- /dev/null +++ b/domains/lcdled.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LCDLED", + "email": "TheCatatomic@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/leander.json b/domains/leander.json new file mode 100644 index 000000000..830afa42b --- /dev/null +++ b/domains/leander.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lndrdev", + "email": "hellobubbles@tutanota.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/learn-to-code-now.json b/domains/learn-to-code-now.json new file mode 100644 index 000000000..8228b5a6c --- /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/leawty.json b/domains/leawty.json new file mode 100644 index 000000000..32f988a70 --- /dev/null +++ b/domains/leawty.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Jacklin52", + "email": "gazihakan105@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/leeiz.json b/domains/leeiz.json new file mode 100644 index 000000000..0f328d30f --- /dev/null +++ b/domains/leeiz.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Leizreal", + "email": "ridhokur2806@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/legalise.json b/domains/legalise.json new file mode 100644 index 000000000..ef05dd9cf --- /dev/null +++ b/domains/legalise.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Rahib777-7", + "email": "rahibrahman1210@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/legend-sabbir.json b/domains/legend-sabbir.json new file mode 100644 index 000000000..5336ad16d --- /dev/null +++ b/domains/legend-sabbir.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "legend-sabbir", + "email": "sabbirhossain.trash@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/legendsayantan.json b/domains/legendsayantan.json index f3fb749f3..f684066d9 100644 --- a/domains/legendsayantan.json +++ b/domains/legendsayantan.json @@ -9,4 +9,4 @@ "record": { "CNAME": "legendsayantan.github.io" } -} +} diff --git a/domains/leha.json b/domains/leha.json index c553c7f8f..a0c0489fa 100644 --- a/domains/leha.json +++ b/domains/leha.json @@ -1,12 +1,12 @@ { - "description": "Leha's little part of the web", - "repo": "https://github.com/leha-code/leha-code.github.io", - "owner": { - "username": "leha-code", - "email": "pezleha@duck.com", - "twitter" : "pezleha2" - }, - "record": { - "CNAME": "leha-code.github.io" - } + "description": "Leha's little part of the web", + "repo": "https://github.com/leha-code/leha-code.github.io", + "owner": { + "username": "leha-code", + "email": "pezleha@duck.com", + "twitter": "pezleha2" + }, + "record": { + "CNAME": "leha-code.github.io" + } } diff --git a/domains/leizreal.json b/domains/leizreal.json new file mode 100644 index 000000000..becac851f --- /dev/null +++ b/domains/leizreal.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Leizreal", + "email": "ridhokur2806@gmail.com" + }, + "record": { + "A": ["217.174.245.249"], + "AAAA": ["2a00:da00:1800:83a4::1"], + "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/lejhand.json b/domains/lejhand.json deleted file mode 100644 index 63c679686..000000000 --- a/domains/lejhand.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "This is lejhands portfolio website with info and github and npm portfolio too", - "repo": "https://github.com/LejhandGamingYT", - "owner": { - "username": "LejhandGamingYT", - "email": "dhruvbhanushali5621@gmail.com" - }, - "record": { - "CNAME": "dazzling-williams-9e8070.netlify.app" - } -} 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..f395b54e8 --- /dev/null +++ b/domains/lemon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PassiveLemon", + "email": "lemonl3mn@protonmail.com" + }, + "record": { + "A": ["64.217.148.69"] + } +} diff --git a/domains/lenicyl.json b/domains/lenicyl.json index c56736f56..9cbd4943e 100644 --- a/domains/lenicyl.json +++ b/domains/lenicyl.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Lenicyl", - "discord": "HUT#5940", - "email": "" - }, + "owner": { + "username": "Lenicyl", + "discord": "HUT#5940", + "email": "" + }, "record": { - "CNAME": "lenicyl.github.io" - } + "CNAME": "lenicyl.github.io" + } } diff --git a/domains/lenn106.json b/domains/lenn106.json new file mode 100644 index 000000000..a1fa37678 --- /dev/null +++ b/domains/lenn106.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lenn106", + "email": "lennongreyson@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lennymaxmine.json b/domains/lennymaxmine.json new file mode 100644 index 000000000..a9a9023f0 --- /dev/null +++ b/domains/lennymaxmine.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LennyMaxMine", + "email": "kurve_bots0z@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/leo.json b/domains/leo.json index 24046e7b9..cf4219c73 100644 --- a/domains/leo.json +++ b/domains/leo.json @@ -1,12 +1,12 @@ { - "description": "Leonard's Personal Website", - "repo": "https://github.com/LeonardSSH", - "owner": { - "username": "LeonardSSH", - "email": "leonardssh22@gmail.com", - "twitter": "leonardssh22" - }, - "record": { - "URL": "https://leonard.sh" - } + "description": "Leonard's Personal Website", + "repo": "https://github.com/LeonardSSH", + "owner": { + "username": "LeonardSSH", + "email": "leonardssh22@gmail.com", + "twitter": "leonardssh22" + }, + "record": { + "URL": "https://leonard.sh" + } } diff --git a/domains/leogoetz.json b/domains/leogoetz.json new file mode 100644 index 000000000..965db554d --- /dev/null +++ b/domains/leogoetz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vLeov", + "email": "leo.goetz2008@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..894b86057 --- /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..16257f3d3 --- /dev/null +++ b/domains/leon332157.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "leon332157", + "email": "leon332157@gmail.com" + }, + "record": { + "CNAME":"leon332157.github.io" + } +} diff --git a/domains/levani.json b/domains/levani.json index de5c18571..5059d0f9b 100644 --- a/domains/levani.json +++ b/domains/levani.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "LevaniVashadze", - "email": "vashadzelevani11@gmail.com" - }, - "record": { - "CNAME": "LevaniVashadze.github.io" - } + "owner": { + "username": "LevaniVashadze", + "email": "vashadzelevani11@gmail.com" + }, + "record": { + "CNAME": "LevaniVashadze.github.io" + } } diff --git a/domains/levi.json b/domains/levi.json index b5d3667ec..fd5470367 100644 --- a/domains/levi.json +++ b/domains/levi.json @@ -1,12 +1,12 @@ { - "description": "Leví Arista Resume", - "repo": "https://github.com/leviarista/resume", - "owner": { - "username": "leviarista", - "email": "levi.arista@gmail.com", - "twitter": "leviarista" - }, - "record": { - "URL": "https://leviarista.github.io/resume/" - } + "description": "Leví Arista Resume", + "repo": "https://github.com/leviarista/resume", + "owner": { + "username": "leviarista", + "email": "levi.arista@gmail.com", + "twitter": "leviarista" + }, + "record": { + "URL": "https://leviarista.github.io/resume" + } } 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/lewe.json b/domains/lewe.json new file mode 100644 index 000000000..e98799c19 --- /dev/null +++ b/domains/lewe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lewe2k6", + "email": "lewe2k6@gmail.com" + }, + "record": { + "URL": "https://xn--a-0ym.vn" + } +} diff --git a/domains/leymo.json b/domains/leymo.json new file mode 100644 index 000000000..1fdc978e0 --- /dev/null +++ b/domains/leymo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tomatolix", + "email": "hellobubbles@tutanota.com" + }, + "record": { + "CNAME": "uwuhaftig.de" + } +} diff --git a/domains/lf.json b/domains/lf.json new file mode 100644 index 000000000..71a3f0d3b --- /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/lh.json b/domains/lh.json new file mode 100644 index 000000000..8ec9378e2 --- /dev/null +++ b/domains/lh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lhwe", + "email": "arieslovespiggies@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/liam-h.json b/domains/liam-h.json new file mode 100644 index 000000000..730b67cc0 --- /dev/null +++ b/domains/liam-h.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lonyx-H", + "email": "liam.hedin.pro@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/liancg.json b/domains/liancg.json index 6d082e005..522e9afd7 100644 --- a/domains/liancg.json +++ b/domains/liancg.json @@ -1,11 +1,11 @@ { - "description": "Lian's Own Dev Domain", - "repo": "https://github.com/liancastellon/liancastellon.github.io", - "owner": { - "username": "liancastellon", - "email": "liancg@gmail.com" - }, - "record": { - "CNAME": "liancastellon.github.io" - } + "description": "Lian's Own Dev Domain", + "repo": "https://github.com/liancastellon/liancastellon.github.io", + "owner": { + "username": "liancastellon", + "email": "liancg@gmail.com" + }, + "record": { + "CNAME": "liancastellon.github.io" + } } diff --git a/domains/light.json b/domains/light.json index 652b1c7e1..2266ad2a4 100644 --- a/domains/light.json +++ b/domains/light.json @@ -1,11 +1,11 @@ { - "description": "LightClient", - "repo": "https://github.com/EvaZeVolt/GBA-Emulator", - "owner": { - "username": "Voltage", - "email": "Voltagenesis@outlook.com" - }, - "record": { - "CNAME": "evazevolt.github.io" - } + "description": "LightClient", + "repo": "https://github.com/EvaZeVolt/GBA-Emulator", + "owner": { + "username": "Voltage", + "email": "Voltagenesis@outlook.com" + }, + "record": { + "CNAME": "evazevolt.github.io" + } } diff --git a/domains/lightarea.json b/domains/lightarea.json new file mode 100644 index 000000000..9788b7d23 --- /dev/null +++ b/domains/lightarea.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "MayankServers", + "email": "mayankreal657@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/lighty.json b/domains/lighty.json new file mode 100644 index 000000000..5c3a446bf --- /dev/null +++ b/domains/lighty.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "ssynical", + "email": "trapizoids543@gmail.com", + "discord": "1108616541739700284" + }, + + "record": { + "CNAME": "ssynical.github.io" + } + } + \ No newline at end of file diff --git a/domains/lihun.json b/domains/lihun.json new file mode 100644 index 000000000..950d0484d --- /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/liju.json b/domains/liju.json index c509d7979..96b6d95dd 100644 --- a/domains/liju.json +++ b/domains/liju.json @@ -1,11 +1,11 @@ { - "description": "Liju's personal development page", - "repo": "https://github.com/lijujayakumar/lijujayakumar.github.io", - "owner": { - "username": "lijujayakumar", - "email": "lijusankar@gmail.com" - }, - "record": { - "CNAME": "lijujayakumar.github.io" - } + "description": "Liju's personal development page", + "repo": "https://github.com/lijujayakumar/lijujayakumar.github.io", + "owner": { + "username": "lijujayakumar", + "email": "lijusankar@gmail.com" + }, + "record": { + "CNAME": "lijujayakumar.github.io" + } } diff --git a/domains/likalium.json b/domains/likalium.json new file mode 100644 index 000000000..6b9297302 --- /dev/null +++ b/domains/likalium.json @@ -0,0 +1,13 @@ +{ + "description": "Likalium's personal website", + "repo": "https://github.com/likalium/likalium.github.io", + "owner": { + "username": "likalium", + "email": "", + "twitter": "likalium", + "discord": "likalium" + }, + "record": { + "CNAME": "likalium.github.io" + } +} diff --git a/domains/lilac.json b/domains/lilac.json index 76ce024cf..0b23cd5e4 100644 --- a/domains/lilac.json +++ b/domains/lilac.json @@ -1,12 +1,12 @@ { - "description": "ima runnit up til my feet stop, pls god", - "repo": "https://github.com/capoxxo/capoxxo.github.io", - "owner": { - "username": "capoxxo", - "email": "cloudberry1337@gmail.com", - "twitter": "lilachvh" - }, - "record": { - "CNAME": "capoxxo.github.io" - } + "description": "ima runnit up til my feet stop, pls god", + "repo": "https://github.com/capoxxo/capoxxo.github.io", + "owner": { + "username": "capoxxo", + "email": "cloudberry1337@gmail.com", + "twitter": "lilachvh" + }, + "record": { + "CNAME": "capoxxo.github.io" + } } diff --git a/domains/limbanitejal.json b/domains/limbanitejal.json new file mode 100644 index 000000000..7c85f0bd4 --- /dev/null +++ b/domains/limbanitejal.json @@ -0,0 +1,11 @@ +{ + "description": "Limbani tejal Profile.", + "repo": "https://github.com/limbanitejal/limbanitejal.github.io", + "owner": { + "username": "limbanitejal", + "email": "" + }, + "record": { + "CNAME": "limbanitejal.github.io" + } +} diff --git a/domains/linbuxiao.json b/domains/linbuxiao.json index f81d95155..60b43ef83 100644 --- a/domains/linbuxiao.json +++ b/domains/linbuxiao.json @@ -1,11 +1,11 @@ { - "description": "Lin's Blog", - "repo": "https://github.com/linbuxiao/linbuxiao.github.io", - "owner": { - "username": "linbuxiao", - "email": "linbuxiao@gmail.com" - }, - "record": { - "CNAME": "linbuxiao.github.io" - } -} \ No newline at end of file + "description": "Lin's Blog", + "repo": "https://github.com/linbuxiao/linbuxiao.github.io", + "owner": { + "username": "linbuxiao", + "email": "linbuxiao@gmail.com" + }, + "record": { + "CNAME": "linbuxiao.github.io" + } +} diff --git a/domains/lingle.json b/domains/lingle.json index 05c997414..dc3fa418e 100644 --- a/domains/lingle.json +++ b/domains/lingle.json @@ -1,12 +1,12 @@ { - "description": "LingleDev's developer site", - "repo": "https://github.com/LingleDev/lingledev.github.io", - "owner": { - "username": "LingleDev", - "email": "gideon.lingle2023@gmail.com", - "twitter": "LingleDev" - }, - "record": { - "CNAME": "lingledev.github.io" - } + "description": "LingleDev's developer site", + "repo": "https://github.com/LingleDev/lingledev.github.io", + "owner": { + "username": "LingleDev", + "email": "gideon.lingle2023@gmail.com", + "twitter": "LingleDev" + }, + "record": { + "CNAME": "lingledev.github.io" + } } diff --git a/domains/link.json b/domains/link.json index 0f0b13ca1..c2a3aef0a 100644 --- a/domains/link.json +++ b/domains/link.json @@ -1,11 +1,11 @@ { - "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" - } + "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/linkme.noma.json b/domains/linkme.noma.json index 4c8cdad70..7622f78b6 100644 --- a/domains/linkme.noma.json +++ b/domains/linkme.noma.json @@ -1,10 +1,10 @@ { - "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" - } + "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/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 index 7dd55ac4e..0cc4178ae 100644 --- a/domains/links.json +++ b/domains/links.json @@ -1,11 +1,11 @@ { - "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" - } + "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/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..3c23c6072 100644 --- a/domains/linusx.json +++ b/domains/linusx.json @@ -8,4 +8,4 @@ "record": { "CNAME": "linuzzx.github.io" } -} +} diff --git a/domains/linux.json b/domains/linux.json new file mode 100644 index 000000000..7e2e511c7 --- /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/lio.json b/domains/lio.json index 4a490624d..c10359bf5 100644 --- a/domains/lio.json +++ b/domains/lio.json @@ -1,11 +1,11 @@ { - "description": "Homepage redirect for Lio", - "repo": "https://werewolf.codes", - "owner": { - "username": "hokkqi", - "email": "lio@werewolf.design" - }, - "record": { - "URL": "https://himbo.cat" - } + "description": "Homepage redirect for Lio", + "repo": "https://werewolf.codes", + "owner": { + "username": "hokkqi", + "email": "lio@werewolf.design" + }, + "record": { + "URL": "https://himbo.cat" + } } diff --git a/domains/liq.json b/domains/liq.json index bedc5a108..1f5d4d7a4 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/littleneko.json b/domains/littleneko.json new file mode 100644 index 000000000..dc479464a --- /dev/null +++ b/domains/littleneko.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CnyAnime", + "email": "mrdriveappstudios@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/live.preview.beta.json b/domains/live.preview.beta.json deleted file mode 100644 index b25729d94..000000000 --- a/domains/live.preview.beta.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - - "record": { - "A": ["140.238.66.199"] - } - } - \ No newline at end of file diff --git a/domains/lixi.json b/domains/lixi.json new file mode 100644 index 000000000..908c0925c --- /dev/null +++ b/domains/lixi.json @@ -0,0 +1,15 @@ + +{ + "owner": { + "username": "Lixi002", + "email": "felixlixi09@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/lizhenghao.json b/domains/lizhenghao.json new file mode 100644 index 000000000..d71e9da3d --- /dev/null +++ b/domains/lizhenghao.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "squareful", + "email": "litiantian@ustc.edu" + }, + "record": { + "CNAME": "blog.maikebuke.com" + } +} diff --git a/domains/lknows.json b/domains/lknows.json index 3b62ab641..919dbaead 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": { +{ + "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": { + "record": { "CNAME": "lknows.github.io" - } } - +} diff --git a/domains/llama.json b/domains/llama.json index 417437b1d..3f7c913b7 100644 --- a/domains/llama.json +++ b/domains/llama.json @@ -1,11 +1,11 @@ { - "description": "LlamaLad7's personal website", - "repo": "https://github.com/LlamaLad7/llamalad7.github.io", - "owner": { - "username": "LlamaLad7", - "email": "l3gomindstorms@gmail.com" - }, - "record": { - "CNAME": "llamalad7.github.io" - } + "description": "LlamaLad7's personal website", + "repo": "https://github.com/LlamaLad7/llamalad7.github.io", + "owner": { + "username": "LlamaLad7", + "email": "l3gomindstorms@gmail.com" + }, + "record": { + "CNAME": "llamalad7.github.io" + } } diff --git a/domains/llanero.json b/domains/llanero.json index d20bedd35..27bf8b231 100644 --- a/domains/llanero.json +++ b/domains/llanero.json @@ -1,12 +1,12 @@ { - "description": "Robert Blog", - "repo": "https://github.com/robert-ds/robert-ds.github.io", - "owner": { - "username": "robert-ds", - "email": "vasquez.robert.andres@gmail.com", - "twitter": "@robertandres14" - }, - "record": { - "CNAME": "robert-ds.github.io" - } + "description": "Robert Blog", + "repo": "https://github.com/robert-ds/robert-ds.github.io", + "owner": { + "username": "robert-ds", + "email": "vasquez.robert.andres@gmail.com", + "twitter": "robertandres14" + }, + "record": { + "CNAME": "robert-ds.github.io" + } } diff --git a/domains/llko.json b/domains/llko.json new file mode 100644 index 000000000..9c3d6d741 --- /dev/null +++ b/domains/llko.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LLKO101", + "email": "yo1sefooop@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lndr2501.json b/domains/lndr2501.json new file mode 100644 index 000000000..5057158d8 --- /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/lnfnunes.json b/domains/lnfnunes.json index 063c01ba1..ffa50a16d 100644 --- a/domains/lnfnunes.json +++ b/domains/lnfnunes.json @@ -1,11 +1,11 @@ { - "description": "Little Big Nunes", - "repo": "https://github.com/lnfnunes", - "owner": { - "username": "lnfnunes", - "email": "dr1design@gmail.com" - }, - "record": { - "URL": "https://lnfnunes.com.br" - } + "description": "Little Big Nunes", + "repo": "https://github.com/lnfnunes", + "owner": { + "username": "lnfnunes", + "email": "dr1design@gmail.com" + }, + "record": { + "URL": "https://lnfnunes.com.br" + } } 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/lodestone.json b/domains/lodestone.json new file mode 100644 index 000000000..d61673cba --- /dev/null +++ b/domains/lodestone.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Caiden-P", + "email": "iididhejejdj@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/logan.json b/domains/logan.json index f2451dffc..fb77c3e62 100644 --- a/domains/logan.json +++ b/domains/logan.json @@ -9,4 +9,4 @@ "record": { "CNAME": "LoganLikesToCode.github.io" } -} +} diff --git a/domains/logan2005.json b/domains/logan2005.json new file mode 100644 index 000000000..4c2608f70 --- /dev/null +++ b/domains/logan2005.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "soviet783", + "email": "logannorman2005@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/loganpaxton.json b/domains/loganpaxton.json new file mode 100644 index 000000000..d7f39ed3a --- /dev/null +++ b/domains/loganpaxton.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LoganPaxton", + "email": "Logan.paxton864@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/logxnic.json b/domains/logxnic.json new file mode 100644 index 000000000..6b202bd48 --- /dev/null +++ b/domains/logxnic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Nexus-sudo", + "email": "loganlarwood2019@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lok.json b/domains/lok.json index b769c05ba..757675f66 100644 --- a/domains/lok.json +++ b/domains/lok.json @@ -1,11 +1,11 @@ { - "description": "Lok's portfolio website", - "repo": "https://github.com/lokgubhaju/lokgubhaju.github.io", - "owner": { - "username": "lokgubhaju", - "email": "lok.gubhaju@gmail.com" - }, - "record": { - "CNAME": "lokgubhaju.github.io" - } + "description": "Lok's portfolio website", + "repo": "https://github.com/lokgubhaju/lokgubhaju.github.io", + "owner": { + "username": "lokgubhaju", + "email": "lok.gubhaju@gmail.com" + }, + "record": { + "CNAME": "lokgubhaju.github.io" + } } diff --git a/domains/loky.json b/domains/loky.json new file mode 100644 index 000000000..26b1efed3 --- /dev/null +++ b/domains/loky.json @@ -0,0 +1,10 @@ +{ + "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/lol.squaresmp.json b/domains/lol.squaresmp.json new file mode 100644 index 000000000..ff5b01645 --- /dev/null +++ b/domains/lol.squaresmp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SquareSmp", + "email": "squaresmp@asia.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lolz.json b/domains/lolz.json new file mode 100644 index 000000000..382db9e27 --- /dev/null +++ b/domains/lolz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LolzTheDev", + "email": "lolzthegreat.0223@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lonelil.json b/domains/lonelil.json index 84bfec106..ae395a858 100644 --- a/domains/lonelil.json +++ b/domains/lonelil.json @@ -9,4 +9,4 @@ "record": { "CNAME": "lonelil.github.io" } -} +} diff --git a/domains/lord-xenon.json b/domains/lord-xenon.json deleted file mode 100644 index 5abd869fb..000000000 --- a/domains/lord-xenon.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "Lord-Xenon", - "email": "vibhaansh.bhardwaj@gmail.com" - }, - "record": { - "CNAME": "lord-xenon.vercel.app" - } -} diff --git a/domains/lordshoray.json b/domains/lordshoray.json index 046a85086..37dbce865 100644 --- a/domains/lordshoray.json +++ b/domains/lordshoray.json @@ -1,11 +1,11 @@ { - "description": "Shoray's Portfolio Website", - "repo": "https://github.com/Shoray2002/Shoray2002.github.io", - "owner": { - "username": "Shoray2002", - "email": "shoryasinghall@gmail.com" - }, - "record": { - "CNAME": "shoray2002.github.io" - } + "description": "Shoray's Portfolio Website", + "repo": "https://github.com/Shoray2002/Shoray2002.github.io", + "owner": { + "username": "Shoray2002", + "email": "shoryasinghall@gmail.com" + }, + "record": { + "CNAME": "shoray2002.github.io" + } } diff --git a/domains/lordwolfy.json b/domains/lordwolfy.json new file mode 100644 index 000000000..6a9de49ee --- /dev/null +++ b/domains/lordwolfy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lordwolfyy", + "email": "jaialders2009@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lori28167.json b/domains/lori28167.json new file mode 100644 index 000000000..8bc14c5de --- /dev/null +++ b/domains/lori28167.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lori28167", + "email": "lorenzo.cozzaglio@outlook.it" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/loser.json b/domains/loser.json new file mode 100644 index 000000000..de3c186ce --- /dev/null +++ b/domains/loser.json @@ -0,0 +1,15 @@ +{ + "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..de3c186ce --- /dev/null +++ b/domains/losr.json @@ -0,0 +1,15 @@ +{ + "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 new file mode 100644 index 000000000..764f64fd5 --- /dev/null +++ b/domains/lostdir69.json @@ -0,0 +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" + } +} diff --git a/domains/lotra.json b/domains/lotra.json new file mode 100644 index 000000000..cb7be3d60 --- /dev/null +++ b/domains/lotra.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nlotra", + "email": "natashalotra@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..4dc0b7825 --- /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/lovis.json b/domains/lovis.json new file mode 100644 index 000000000..3955e6e17 --- /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..36bf3ba22 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/lpkeates.json b/domains/lpkeates.json new file mode 100644 index 000000000..9c28b33c6 --- /dev/null +++ b/domains/lpkeates.json @@ -0,0 +1,9 @@ +{ + "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..330959adc --- /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..df75b7bc6 100644 --- a/domains/lrxrn.json +++ b/domains/lrxrn.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "lrxrn", "email": "meesum632@gmail.com" - }, - "record": { + }, + "record": { "CNAME": "lrxrn.github.io" - } } - \ No newline at end of file +} 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/lsy.json b/domains/lsy.json new file mode 100644 index 000000000..4a3a18d93 --- /dev/null +++ b/domains/lsy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lsy1998", + "email": "1945934866@qq.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lthon09.json b/domains/lthon09.json deleted file mode 100644 index 3491a508b..000000000 --- a/domains/lthon09.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Personal website", - "repo": "", - "owner": { - "username": "lthon09", - "email": "", - "twitter": "lthon09" - }, - "record": { - "A": ["75.2.69.226"] - } -} diff --git a/domains/ltln.json b/domains/ltln.json index fe3ad216f..24df53cd2 100644 --- a/domains/ltln.json +++ b/domains/ltln.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "ltln", "email": "uguest17@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://github.com/ltln" - } } - \ No newline at end of file +} diff --git a/domains/luanrt.json b/domains/luanrt.json index 2a08a4590..fe34d84c5 100644 --- a/domains/luanrt.json +++ b/domains/luanrt.json @@ -1,11 +1,11 @@ { - "description": "The personal website for LuanRT", - "repo": "https://github.com/luanrt/luanrt.github.io", - "owner": { - "username": "luanrt", - "email": "luan.lrt4@gmail.com" - }, - "record": { - "CNAME": "luanrt.github.io" - } + "description": "The personal website for LuanRT", + "repo": "https://github.com/luanrt/luanrt.github.io", + "owner": { + "username": "luanrt", + "email": "luan.lrt4@gmail.com" + }, + "record": { + "CNAME": "luanrt.github.io" + } } diff --git a/domains/luca.json b/domains/luca.json index 20c856e4a..14ed30edc 100644 --- a/domains/luca.json +++ b/domains/luca.json @@ -1,13 +1,9 @@ { - "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" - } + "owner": { + "username": "lucatolton", + "email": "luto281@outlook.com" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } } diff --git a/domains/lucaforever.json b/domains/lucaforever.json new file mode 100644 index 000000000..8b3527cbe --- /dev/null +++ b/domains/lucaforever.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lucaforever", + "email": "scorpinyesyeson@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lucas.json b/domains/lucas.json new file mode 100644 index 000000000..4141e8c24 --- /dev/null +++ b/domains/lucas.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lucas-labs", + "email": "lucasncolombo@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lucassaud.json b/domains/lucassaud.json new file mode 100644 index 000000000..677def921 --- /dev/null +++ b/domains/lucassaud.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lucassaud", + "email": "lucassaud9@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lucaszick.json b/domains/lucaszick.json new file mode 100644 index 000000000..e8da8a364 --- /dev/null +++ b/domains/lucaszick.json @@ -0,0 +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" + } +} diff --git a/domains/lucen.json b/domains/lucen.json new file mode 100644 index 000000000..26aa4ebb9 --- /dev/null +++ b/domains/lucen.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "lucenstuff", + "email": "lucentiniagustin@hotmail.com", + "discord": "202467820225822720" + }, + + "record": { + "CNAME": "lucendev.onrender.com" + } + } + \ No newline at end of file diff --git a/domains/lucid.json b/domains/lucid.json new file mode 100644 index 000000000..51d499c9f --- /dev/null +++ b/domains/lucid.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lucideds", + "email": "lucideds@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lucy.json b/domains/lucy.json new file mode 100644 index 000000000..77a4d065a --- /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..862f74ba9 --- /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/luihh.json b/domains/luihh.json index af0238aed..b7f5ce9c7 100644 --- a/domains/luihh.json +++ b/domains/luihh.json @@ -1,12 +1,12 @@ { - "description": "Luihh's website", - "repo": "https://github.com/iLui/iLui.github.io", - "owner": { - "username": "Luihh", - "email": "luihhbusiness23@gmail.com", - "twitter": "PoweredByLuihh" - }, - "record": { - "CNAME": "iLui.github.io" - } + "description": "Luihh's website", + "repo": "https://github.com/iLui/iLui.github.io", + "owner": { + "username": "Luihh", + "email": "luihhbusiness23@gmail.com", + "twitter": "PoweredByLuihh" + }, + "record": { + "CNAME": "iLui.github.io" + } } diff --git a/domains/luis-ciber.json b/domains/luis-ciber.json index 4ba174760..7ebad1a3f 100644 --- a/domains/luis-ciber.json +++ b/domains/luis-ciber.json @@ -1,11 +1,11 @@ { - "description": "Luis Correa Leyva", - "repo": "https://github.com/correaleyval/correaleyval.github.io", - "owner": { - "username": "correaleyval", - "email": "correaleyval@gmail.com" - }, - "record": { - "CNAME": "correaleyval.github.io" - } + "description": "Luis Correa Leyva", + "repo": "https://github.com/correaleyval/correaleyval.github.io", + "owner": { + "username": "correaleyval", + "email": "correaleyval@gmail.com" + }, + "record": { + "CNAME": "correaleyval.github.io" + } } diff --git a/domains/luisandre.json b/domains/luisandre.json new file mode 100644 index 000000000..c45b0b5bf --- /dev/null +++ b/domains/luisandre.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "luis073094", + "email": "luis073094@gmail.com" + }, + "record": { + "CNAME": "portafolio-ctll.onrender.com" + } +} diff --git a/domains/luishdez.json b/domains/luishdez.json new file mode 100644 index 000000000..dfe44b8d2 --- /dev/null +++ b/domains/luishdez.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "luishdez", + "email": "luis.munoz.hdez@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/luistena.json b/domains/luistena.json index 43a8fa800..928d18dba 100644 --- a/domains/luistena.json +++ b/domains/luistena.json @@ -1,12 +1,12 @@ { - "description": "Luis Tena's portfolio", - "repo": "https://github.com/devluist/devluist.github.io", - "owner": { - "username": "devluist", - "email": "des.luistena@hotmail.com", - "twitter": "dev_luist" - }, - "record": { - "CNAME": "devluist.github.io" - } + "description": "Luis Tena's portfolio", + "repo": "https://github.com/devluist/devluist.github.io", + "owner": { + "username": "devluist", + "email": "des.luistena@hotmail.com", + "twitter": "dev_luist" + }, + "record": { + "CNAME": "devluist.github.io" + } } diff --git a/domains/lukas.json b/domains/lukas.json index ac09576f3..baa79b077 100644 --- a/domains/lukas.json +++ b/domains/lukas.json @@ -4,9 +4,9 @@ "owner": { "username": "LukPopp0", "email": "luk.popp0@gmail.com", - "twitter": "@LukPopp0" + "twitter": "LukPopp0" }, "record": { - "CNAME": "lukpopp0.github.io" + "CNAME": "lukpopp.com" } } diff --git a/domains/luke.json b/domains/luke.json index 32705cb1c..13853fb98 100644 --- a/domains/luke.json +++ b/domains/luke.json @@ -1,11 +1,11 @@ { - "description": "New LukeDev's Official Website", - "repo": "https://github.com/LukeIsHereToDevelop/New-Website", - "owner": { - "username": "LukeIsHereToDevelop", - "email": "LucaC@dynox.us" - }, - "record": { - "CNAME": "lukeisheretodevelop.github.io" - } + "description": "New LukeDev's Official Website", + "repo": "https://github.com/LukeIsHereToDevelop/New-Website", + "owner": { + "username": "LukeIsHereToDevelop", + "email": "LucaC@dynox.us" + }, + "record": { + "CNAME": "lukeisheretodevelop.github.io" + } } diff --git a/domains/luminexcloud.json b/domains/luminexcloud.json new file mode 100644 index 000000000..11cf96777 --- /dev/null +++ b/domains/luminexcloud.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AndrexRo01", + "email": "spacersmp@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lumix.json b/domains/lumix.json new file mode 100644 index 000000000..f0bf1a8cf --- /dev/null +++ b/domains/lumix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "o-lumix", + "email": "lumixofficiel@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/luna.json b/domains/luna.json index 9c2f665b5..87bac2432 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" - }, - "record": { - "A": ["51.161.24.80"] - } + "owner": { + "username": "KitsuneDev", + "email": "kitsune@akitsune.dev" + }, + "record": { + "URL": "https://akitsune.dev" + } } diff --git a/domains/lunacharm.json b/domains/lunacharm.json new file mode 100644 index 000000000..90b323fe6 --- /dev/null +++ b/domains/lunacharm.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "bot1323", + "email": "gutipro13t@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lunah.json b/domains/lunah.json index f5a8b21af..a532f1029 100644 --- a/domains/lunah.json +++ b/domains/lunah.json @@ -1,11 +1,14 @@ { - "description": "VPS hosted domain", - "repo": "https://github.com/piotr25691", - "owner": { - "username": "piotr25691", - "email": "lunah@lunahdev.ml" - }, - "record": { - "A": ["62.171.160.186"] - } + "description": "VPS hosted domain", + "repo": "https://github.com/piotr25691", + "owner": { + "username": "piotr25691", + "email": "", + "discord": "Lunah#3131" + }, + "record": { + "A": ["62.171.160.186"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/lunar.json b/domains/lunar.json new file mode 100644 index 000000000..67b3b2fb3 --- /dev/null +++ b/domains/lunar.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Lunarate", + "email": "veershrivastava1011@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/lunax0390.json b/domains/lunax0390.json index 12ef571a8..d80830420 100644 --- a/domains/lunax0390.json +++ b/domains/lunax0390.json @@ -1,11 +1,11 @@ { - "description": "Nobio Yep", - "repo": "https://github.com/lunax0390/lunax0390.github.io", - "owner": { - "username": "lunax0390", - "email": "moonsec99@gmail.com" - }, - "record": { - "CNAME": "lunax0390.github.io" - } + "description": "Nobio Yep", + "repo": "https://github.com/lunax0390/lunax0390.github.io", + "owner": { + "username": "lunax0390", + "email": "moonsec99@gmail.com" + }, + "record": { + "CNAME": "lunax0390.github.io" + } } diff --git a/domains/luni.json b/domains/luni.json new file mode 100644 index 000000000..f8bfad635 --- /dev/null +++ b/domains/luni.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Lukas-Batema", + "email": "lukasbatema@mg.batemadevelopment.com" + }, + "record": { + "URL": "https://en.pronouns.page/@luni_moon" + } +} diff --git a/domains/luqmanity.json b/domains/luqmanity.json new file mode 100644 index 000000000..55e8f37d3 --- /dev/null +++ b/domains/luqmanity.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "luqmanity", + "email": "luqman.yazrie@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/luxxy.json b/domains/luxxy.json new file mode 100644 index 000000000..18234c694 --- /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/luzivr.json b/domains/luzivr.json new file mode 100644 index 000000000..131aef652 --- /dev/null +++ b/domains/luzivr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zjeffro", + "email": "jdvanlear@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lwes.json b/domains/lwes.json new file mode 100644 index 000000000..2670b6624 --- /dev/null +++ b/domains/lwes.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Lwescool", + "email": "lwescontactyt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/lxquid.json b/domains/lxquid.json index b932a1946..1dc1172e7 100644 --- a/domains/lxquid.json +++ b/domains/lxquid.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "lxquid", - "email": "info@minemix.de" - }, - "record": { - "CNAME": "liquiddevelopmentnet.github.io" - } + "owner": { + "username": "lxquid", + "email": "info@minemix.de" + }, + "record": { + "CNAME": "liquiddevelopmentnet.github.io" + } } diff --git a/domains/lxz.json b/domains/lxz.json new file mode 100644 index 000000000..cecd9b7b5 --- /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/lyn.json b/domains/lyn.json new file mode 100644 index 000000000..e000b051a --- /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/lynxeko.json b/domains/lynxeko.json new file mode 100644 index 000000000..376eb425e --- /dev/null +++ b/domains/lynxeko.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "LynxEko", + "email": "erikvillarreal7@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/lytwest.json b/domains/lytwest.json index e53a9e9aa..218774fdb 100644 --- a/domains/lytwest.json +++ b/domains/lytwest.json @@ -1,11 +1,11 @@ { - "description": "My Personal Website uwu :3", - "repo": "https://github.com/Lytwest/lytwest.github.io", - "owner": { - "username": "Lytwest", - "email": "lytwest@gmail.com" - }, - "record": { - "CNAME": "lytwest.github.io" - } + "description": "My Personal Website uwu :3", + "repo": "https://github.com/Lytwest/lytwest.github.io", + "owner": { + "username": "Lytwest", + "email": "lytwest@gmail.com" + }, + "record": { + "CNAME": "lytwest.github.io" + } } diff --git a/domains/lyubo.json b/domains/lyubo.json index 6cdb729e0..e32225ef0 100644 --- a/domains/lyubo.json +++ b/domains/lyubo.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "impzero", - "email": "", - "twitter": "impzero" - }, - "record": { - "URL": "https://github.com/impzero" - } + "owner": { + "username": "impzero", + "email": "", + "twitter": "impzero" + }, + "record": { + "URL": "https://github.com/impzero" + } } diff --git a/domains/m-avila.json b/domains/m-avila.json new file mode 100644 index 000000000..d5507011d --- /dev/null +++ b/domains/m-avila.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DxRavage", + "email": "marianoavilaj4@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/m04.json b/domains/m04.json index 1f5c262ae..3af70f0e7 100644 --- a/domains/m04.json +++ b/domains/m04.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Merlin04", - "email": "is-a-dev@benjaminsmith.dev" - }, - "description": "Redirect to personal website", - "repo": "https://github.com/merlin04/benjaminsmith.dev", - "record": { - "URL": "https://benjaminsmith.dev" - } + "owner": { + "username": "Merlin04", + "email": "is-a-dev@benjaminsmith.dev" + }, + "description": "Redirect to personal website", + "repo": "https://github.com/merlin04/benjaminsmith.dev", + "record": { + "URL": "https://benjaminsmith.dev" + } } diff --git a/domains/m1.json b/domains/m1.json new file mode 100644 index 000000000..b6c74c818 --- /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..b44fea3bd --- /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/m42e.json b/domains/m42e.json index c5cbebf94..6e800ded1 100644 --- a/domains/m42e.json +++ b/domains/m42e.json @@ -1,11 +1,11 @@ { - "description": "m42e Homepage", - "repo": "https://github.com/m42e", - "owner": { - "username": "m42e", - "email": "matthias@bilger.info" - }, - "record": { - "CNAME": "bilger.info" - } + "description": "m42e Homepage", + "repo": "https://github.com/m42e", + "owner": { + "username": "m42e", + "email": "matthias@bilger.info" + }, + "record": { + "CNAME": "bilger.info" + } } diff --git a/domains/m4hbod.json b/domains/m4hbod.json index 4e57e4235..8d8295c2f 100644 --- a/domains/m4hbod.json +++ b/domains/m4hbod.json @@ -1,13 +1,13 @@ { - "description": "M4hbod's .is-a.dev domain", - "repo": "https://github.com/M4hbod/m4hbod.github.io", - "owner": { - "username": "M4hbod", - "email": "m4hbod@proton.me", - "telegram": "M4hbod", - "discord": "M4hbod#1615" - }, - "record": { - "CNAME": "m4hbod.github.io" - } + "description": "M4hbod's .is-a.dev domain", + "repo": "https://github.com/M4hbod/m4hbod.github.io", + "owner": { + "username": "M4hbod", + "email": "m4hbod@proton.me", + "telegram": "M4hbod", + "discord": "M4hbod#1615" + }, + "record": { + "CNAME": "m4hbod.github.io" + } } diff --git a/domains/mac.json b/domains/mac.json new file mode 100644 index 000000000..ecb20dd39 --- /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/maceng.json b/domains/maceng.json new file mode 100644 index 000000000..c1004942b --- /dev/null +++ b/domains/maceng.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MacengBOT", + "email": "macengbot@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/machi.json b/domains/machi.json new file mode 100644 index 000000000..cb37ad1ce --- /dev/null +++ b/domains/machi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "femachi", + "email": "ocubrisme@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/macos.notaperson535.json b/domains/macos.notaperson535.json index ab1b08fc4..a0421948b 100644 --- a/domains/macos.notaperson535.json +++ b/domains/macos.notaperson535.json @@ -1,11 +1,11 @@ { - "description": "A macOS recreation in HTML", - "repo": "https://github.com/notAperson535/macOS-HTML", - "owner": { - "username": "notAperson535", - "email": "notAperson939@gmail.com" - }, - "record": { - "CNAME": "notAperson535.github.io" - } + "description": "A macOS recreation in HTML", + "repo": "https://github.com/notAperson535/macOS-HTML", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } } diff --git a/domains/maddy.json b/domains/maddy.json index 39386af2d..db31bffbb 100644 --- a/domains/maddy.json +++ b/domains/maddy.json @@ -2,11 +2,10 @@ "description": "Maddy Rocks :)", "repo": "https://github.com/madhav-madhusoodanan/madhav-madhusoodanan.github.io", "owner": { - "username": "madhav-madhusoodanan", - "email": "f20200049@pilani.bits-pilani.ac.in" + "username": "madhav-madhusoodanan", + "email": "f20200049@pilani.bits-pilani.ac.in" }, "record": { - "CNAME": "madhav-madhusoodanan.github.io" + "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..d9c1a6c2d --- /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/madhan.json b/domains/madhan.json index e01c5d907..5bd81f098 100644 --- a/domains/madhan.json +++ b/domains/madhan.json @@ -1,11 +1,11 @@ { - "description": "Madhan's portfolio", - "repo": "https://github.com/madhank93/madhank93.github.io", - "owner": { - "username": "madhank93", - "email": "madhankumaravelu93@gmail.com" - }, - "record": { - "CNAME": "madhank93.github.io" - } + "description": "Madhan's portfolio", + "repo": "https://github.com/madhank93/madhank93.github.io", + "owner": { + "username": "madhank93", + "email": "madhankumaravelu93@gmail.com" + }, + "record": { + "CNAME": "madhank93.github.io" + } } diff --git a/domains/madhav.json b/domains/madhav.json index 641c6dff0..bc1183fa3 100644 --- a/domains/madhav.json +++ b/domains/madhav.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/LaBus3/LaBus3.github.io", - "owner": { - "username": "LaBus3", - "email": "madhav.v.1996@gmail.com" - }, - "record": { - "CNAME": "LaBus3.github.io" - } + "repo": "https://github.com/LaBus3/LaBus3.github.io", + "owner": { + "username": "LaBus3", + "email": "madhav.v.1996@gmail.com" + }, + "record": { + "CNAME": "LaBus3.github.io" + } } diff --git a/domains/madhavgupta.json b/domains/madhavgupta.json new file mode 100644 index 000000000..0f62be966 --- /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..625c59111 --- /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..de3c186ce --- /dev/null +++ b/domains/madhead341.json @@ -0,0 +1,15 @@ +{ + "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 new file mode 100644 index 000000000..0f7566cf9 --- /dev/null +++ b/domains/madhurya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "madhuryadutta", + "email": "www.madhuryadutta2016@gmail.com" + }, + "record": { + "CNAME": "madhuryadutta.github.io" + } +} diff --git a/domains/madmusician.json b/domains/madmusician.json new file mode 100644 index 000000000..57f53088b --- /dev/null +++ b/domains/madmusician.json @@ -0,0 +1,10 @@ +{ + "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..3ec47d987 --- /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/mafarag.json b/domains/mafarag.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/mafarag.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/magdi.json b/domains/magdi.json new file mode 100644 index 000000000..ecc90682b --- /dev/null +++ b/domains/magdi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "coeur85", + "email": "ahmed.magdi@msn.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mageclient.json b/domains/mageclient.json new file mode 100644 index 000000000..5f4364d63 --- /dev/null +++ b/domains/mageclient.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mageclienttt", + "email": "mageclienttt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/magenta.json b/domains/magenta.json new file mode 100644 index 000000000..edb89124e --- /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/magic4me.json b/domains/magic4me.json index e30f56782..ac8d13703 100644 --- a/domains/magic4me.json +++ b/domains/magic4me.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "magic4me", - "email": "magic4me.info@gmail.com" - }, - "record": { - "CNAME": "magic4me.github.io" - } + "owner": { + "username": "magic4me", + "email": "magic4me.info@gmail.com" + }, + "record": { + "CNAME": "magic4me.github.io" + } } diff --git a/domains/magma.json b/domains/magma.json index 9417daedf..e24021198 100644 --- a/domains/magma.json +++ b/domains/magma.json @@ -1,11 +1,11 @@ { - "description": "magma's personal developer profile", - "repo": "https://github.com/mgam-is-dreamin", - "owner": { - "username": "mgam-is-dreamin", - "email": "sacred.lunar.dragon@gmail.com" - }, - "record": { - "CNAME": "mgam-is-dreamin.github.io" - } + "description": "magma's personal developer profile", + "repo": "https://github.com/mgam-is-dreamin", + "owner": { + "username": "mgam-is-dreamin", + "email": "sacred.lunar.dragon@gmail.com" + }, + "record": { + "CNAME": "mgam-is-dreamin.github.io" + } } diff --git a/domains/magniquick.json b/domains/magniquick.json index e7e8892ba..298b8f93d 100644 --- a/domains/magniquick.json +++ b/domains/magniquick.json @@ -5,18 +5,10 @@ "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" - ], + "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/mahad.json b/domains/mahad.json new file mode 100644 index 000000000..dce8cd51b --- /dev/null +++ b/domains/mahad.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "achabacha949", + "email": "achabacha949@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/mahaviraenterprises.json b/domains/mahaviraenterprises.json new file mode 100644 index 000000000..324dfe7e2 --- /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/mahesh.json b/domains/mahesh.json new file mode 100644 index 000000000..a1e9bd14d --- /dev/null +++ b/domains/mahesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MaheshTheDeveloper", + "email": "dhingra3673@gmail.com" + }, + "record": { + "CNAME": "MaheshTheDeveloper.github.io" + } +} diff --git a/domains/maheta-bhavik.json b/domains/maheta-bhavik.json new file mode 100644 index 000000000..45f338988 --- /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..20a389f98 --- /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/mahfuz.json b/domains/mahfuz.json new file mode 100644 index 000000000..0def90f46 --- /dev/null +++ b/domains/mahfuz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mahfuz0001", + "email": "manjulkhatter01@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mahi.json b/domains/mahi.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/mahi.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/mahir.json b/domains/mahir.json new file mode 100644 index 000000000..1f0cc9a86 --- /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..d491fab63 --- /dev/null +++ b/domains/mahmoud.json @@ -0,0 +1,13 @@ +{ + "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..d033f6797 100644 --- a/domains/mahmud.json +++ b/domains/mahmud.json @@ -9,4 +9,4 @@ "record": { "CNAME": "JBAxB8h7.github.io" } -} +} diff --git a/domains/mai.json b/domains/mai.json index 31fe3e938..d59898ec4 100644 --- a/domains/mai.json +++ b/domains/mai.json @@ -1,10 +1,9 @@ { - "description": "Mai's personal developer website", - "owner": { - "username": "Mai1ii", - "email": "mail@apexure.cf" - }, - "record": { - "CNAME": "mai1ii.github.io" - } + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } } diff --git a/domains/maikeru.json b/domains/maikeru.json new file mode 100644 index 000000000..d07a60c5b --- /dev/null +++ b/domains/maikeru.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Maikeruwu", + "email": "michael.h.1708@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mail-noma.json b/domains/mail-noma.json index 3d35217dd..a2821fdf0 100644 --- a/domains/mail-noma.json +++ b/domains/mail-noma.json @@ -5,10 +5,7 @@ "email": "Noma4321business@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.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.arman.json b/domains/mail.arman.json index 3c4a641a5..8ea8cf992 100644 --- a/domains/mail.arman.json +++ b/domains/mail.arman.json @@ -1,21 +1,13 @@ { -"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" - ], - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "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"], + "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 index 0ebc9b55a..701d48e10 100644 --- a/domains/mail.badboy.json +++ b/domains/mail.badboy.json @@ -1,24 +1,16 @@ { - "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" - } + "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 deleted file mode 100644 index 2a1b53d1d..000000000 --- a/domains/mail.boolean44.json +++ /dev/null @@ -1,12 +0,0 @@ - -{ - "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" - } -} diff --git a/domains/mail.chiragnahata.json b/domains/mail.chiragnahata.json new file mode 100644 index 000000000..a23664d55 --- /dev/null +++ b/domains/mail.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/mail.deadcode.json b/domains/mail.deadcode.json new file mode 100644 index 000000000..0f5797fd4 --- /dev/null +++ b/domains/mail.deadcode.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RichardKanshen", + "email": "richard@kanshen.click" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.enderpoint.json b/domains/mail.enderpoint.json new file mode 100644 index 000000000..1a1a452f9 --- /dev/null +++ b/domains/mail.enderpoint.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EnderPoint07", + "email": "", + "discord": "dotm38" + }, + "record": { + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/mail.icehead.json b/domains/mail.icehead.json index d85d084c8..b1450cfdf 100644 --- a/domains/mail.icehead.json +++ b/domains/mail.icehead.json @@ -1,13 +1,10 @@ { - "owner": { - "username": "Tanjimfuad", - "email": "tanjim_fuad@proton.me" - }, - "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "Tanjimfuad", + "email": "tanjim_fuad@proton.me" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/mail.json b/domains/mail.json new file mode 100644 index 000000000..ef09a36fd --- /dev/null +++ b/domains/mail.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + + "record": { + "A": ["51.161.54.164"], + "MX": ["mail.is-a.dev"], + "TXT": "google-site-verification=pcSxUAiBwhvh9AVBbSSkKZovjsUFZzMgnh3q6XfGe1E" + } +} diff --git a/domains/mail.l6174.json b/domains/mail.l6174.json new file mode 100644 index 000000000..6c40cd2a3 --- /dev/null +++ b/domains/mail.l6174.json @@ -0,0 +1,11 @@ +{ + "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.minmit.json b/domains/mail.minmit.json index 9c539779f..88a7b2dbf 100644 --- a/domains/mail.minmit.json +++ b/domains/mail.minmit.json @@ -1,13 +1,13 @@ { - "description": "Mail For My Website", - "repo": "https://github.com/MinMitCoder", - "owner": { - "username": "MinMitCoder", - "email": "minmitgamer@gmail.com" - }, - "record": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "description": "Mail For My Website", + "repo": "https://github.com/MinMitCoder", + "owner": { + "username": "MinMitCoder", + "email": "minmitgamer@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "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..324dfe7e2 --- /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 97cf1f4d7..b0604cc9b 100644 --- a/domains/mail.mxnticek.json +++ b/domains/mail.mxnticek.json @@ -1,13 +1,10 @@ { - "description": "Domain for my music bot", - "repo": "", - "owner": { - "username": "VlastikYoutubeKo", - "email": "plainrock@seznam.cz" - }, - "record": { - "MX": ["d9025d2074984e72.mx2.emailprofi.seznam.cz", - "d9025d2074984e72.mx1.emailprofi.seznam.cz" - ] - } + "description": "Domain for my music bot", + "owner": { + "username": "VlastikYoutubeKo", + "email": "plainrock@seznam.cz" + }, + "record": { + "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..cf94fe408 --- /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.norkart.json b/domains/mail.norkart.json new file mode 100644 index 000000000..43401ac60 --- /dev/null +++ b/domains/mail.norkart.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "norkart1", + "email": "navasforwork@gmail.com", + "discord": "captnork" + }, + "record": { + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/mail.notaperson535.json b/domains/mail.notaperson535.json index 1b17786bf..edde9c7d3 100644 --- a/domains/mail.notaperson535.json +++ b/domains/mail.notaperson535.json @@ -1,11 +1,11 @@ { - "description": "My email forwarder", - "owner": { - "username": "notAperson535", - "email": "notAperson939@gmail.com" - }, - "record": { - "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], - "TXT": "forward-email=notaperson939@gmail.com" - } + "description": "My email forwarder", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "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..a23664d55 --- /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 index 55e71de16..922042038 100644 --- a/domains/mail.rika.json +++ b/domains/mail.rika.json @@ -6,16 +6,8 @@ "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" - ], + "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.sx9.json b/domains/mail.sx9.json index 18e887738..00106199a 100644 --- a/domains/mail.sx9.json +++ b/domains/mail.sx9.json @@ -1,13 +1,13 @@ { - "description": "SX's Email", - "repo": "https://sx9.is-a.dev", - "owner": { - "discord": "SX-Spy-Agent#1377", - "email": "sx-91@outlook.com", - "username": "SX-9" - }, - "record": { - "MX": [ "mx1.improvmx.com", "mx2.improvmx.com" ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "SX's Email", + "repo": "https://sx9.is-a.dev", + "owner": { + "discord": "SX-Spy-Agent#1377", + "email": "sx-91@outlook.com", + "username": "SX-9" + }, + "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..a23664d55 --- /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.toasty.json b/domains/mail.toasty.json new file mode 100644 index 000000000..3e46b1277 --- /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..a8efdabf0 100644 --- a/domains/mail.whine.json +++ b/domains/mail.whine.json @@ -1,12 +1,12 @@ { "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" + "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" + "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/main.json b/domains/main.json new file mode 100644 index 000000000..22112fbac --- /dev/null +++ b/domains/main.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "qofdaq", + "email": "qofdaq@skiff.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/maindak.json b/domains/maindak.json new file mode 100644 index 000000000..43cb372a5 --- /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/maintainers.json b/domains/maintainers.json new file mode 100644 index 000000000..8b11b2c87 --- /dev/null +++ b/domains/maintainers.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "URL": "https://team.is-a.dev", + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/majorhead.json b/domains/majorhead.json new file mode 100644 index 000000000..e50fef30f --- /dev/null +++ b/domains/majorhead.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "alephdfilms", + "email": "alephdiallo@mail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/mak448a.json b/domains/mak448a.json new file mode 100644 index 000000000..a07099e15 --- /dev/null +++ b/domains/mak448a.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mak448a", + "email": "thracc448@gmail.com" + }, + "record": { + "CNAME": "mak448a.github.io" + } +} diff --git a/domains/makeshiftartist.json b/domains/makeshiftartist.json new file mode 100644 index 000000000..094063dfa --- /dev/null +++ b/domains/makeshiftartist.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MakeShiftArtist", + "email": "MakeShiftDevelopment@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mx1.improvmx.com.", "mx2.improvmx.com."], + "TXT": "v=spf1 a mx ip4:217.174.245.249 include:spf.improvmx.com ~all" + } +} diff --git a/domains/makhbaz.json b/domains/makhbaz.json index 2536652d2..1b92c506a 100644 --- a/domains/makhbaz.json +++ b/domains/makhbaz.json @@ -1,12 +1,12 @@ { - "description": "Makhbaz's .is-a.dev domain", - "repo": "https://github.com/Makhbaz/makhbaz.github.io", - "owner": { - "username": "Makhbaz", - "email": "makhbaz@proton.me", - "telegram": "Makhbaz" - }, - "record": { - "CNAME": "makhbaz.github.io" - } + "description": "Makhbaz's .is-a.dev domain", + "repo": "https://github.com/Makhbaz/makhbaz.github.io", + "owner": { + "username": "Makhbaz", + "email": "makhbaz@proton.me", + "telegram": "Makhbaz" + }, + "record": { + "CNAME": "makhbaz.github.io" + } } diff --git a/domains/maks.json b/domains/maks.json index 3b09a8b3f..c8ef717fd 100644 --- a/domains/maks.json +++ b/domains/maks.json @@ -1,10 +1,10 @@ { - "description": "A person portfolio site for me", - "owner": { - "username": "LinusBotTips", - "email": "maks-dev@outlook.com" - }, - "record": { - "CNAME": "linusbottips.github.io" - } + "description": "A person portfolio site for me", + "owner": { + "username": "LinusBotTips", + "email": "maks-dev@outlook.com" + }, + "record": { + "CNAME": "linusbottips.github.io" + } } diff --git a/domains/malbouy.json b/domains/malbouy.json index 97da1c598..2804bcf12 100644 --- a/domains/malbouy.json +++ b/domains/malbouy.json @@ -1,11 +1,11 @@ { - "description": "Coming soon", - "repo": "https://github.com/malbouy/malbouy.github.io", - "owner": { - "username": "malbouy", - "email": "malbouy@techie.com" - }, - "record": { - "CNAME": "malbouy.github.io" - } + "description": "Coming soon", + "repo": "https://github.com/malbouy/malbouy.github.io", + "owner": { + "username": "malbouy", + "email": "malbouy@techie.com" + }, + "record": { + "CNAME": "malbouy.github.io" + } } diff --git a/domains/malfunzionato.json b/domains/malfunzionato.json new file mode 100644 index 000000000..382a331d5 --- /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/malo.json b/domains/malo.json new file mode 100644 index 000000000..f6bb9e7af --- /dev/null +++ b/domains/malo.json @@ -0,0 +1,9 @@ +{ + "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/mamad.json b/domains/mamad.json new file mode 100644 index 000000000..6c8b3f5a1 --- /dev/null +++ b/domains/mamad.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mamadduh", + "email": "mna969@uowmail.edu.au" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mammad.json b/domains/mammad.json new file mode 100644 index 000000000..5121abe84 --- /dev/null +++ b/domains/mammad.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mammadzali", + "email": "mohamadzali@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mamun.json b/domains/mamun.json index d7f8436e0..09aa099f9 100644 --- a/domains/mamun.json +++ b/domains/mamun.json @@ -1,11 +1,11 @@ { - "description": "Mamun's website", - "repo": "https://github.com/mamunhpath", - "owner": { - "username": "mamunhpath", - "email": "mamunhpath@hotmail.com" - }, - "record": { - "CNAME": "mamunhpath.github.io" - } + "description": "Mamun's website", + "repo": "https://github.com/mamunhpath", + "owner": { + "username": "mamunhpath", + "email": "mamunhpath@hotmail.com" + }, + "record": { + "CNAME": "mamunhpath.github.io" + } } diff --git a/domains/manage.json b/domains/manage.json new file mode 100644 index 000000000..ef2dd2748 --- /dev/null +++ b/domains/manage.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + + "record": { + "CNAME": "dns.beadman-network.com" + } +} diff --git a/domains/manage.uptime.trung.json b/domains/manage.uptime.trung.json new file mode 100644 index 000000000..c372c8070 --- /dev/null +++ b/domains/manage.uptime.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/manas.json b/domains/manas.json new file mode 100644 index 000000000..58a2e319c --- /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/manash.json b/domains/manash.json index bd5c50311..786952405 100644 --- a/domains/manash.json +++ b/domains/manash.json @@ -1,11 +1,11 @@ { - "description": "Manash Sonowal - DEV", - "repo": "https://github.com/msonowal", - "owner": { - "username": "msonowal", - "email": "manash149@gmail.com" - }, - "record": { - "CNAME": "www.claritytech.io" - } + "description": "Manash Sonowal - DEV", + "repo": "https://github.com/msonowal", + "owner": { + "username": "msonowal", + "email": "manash149@gmail.com" + }, + "record": { + "CNAME": "www.claritytech.io" + } } diff --git a/domains/manav.json b/domains/manav.json new file mode 100644 index 000000000..06e14e61a --- /dev/null +++ b/domains/manav.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Manav011", + "email": "manav.12110503@lpu.in" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mandaninikunj.json b/domains/mandaninikunj.json new file mode 100644 index 000000000..823881344 --- /dev/null +++ b/domains/mandaninikunj.json @@ -0,0 +1,11 @@ +{ + "description": "nikunj Profile.", + "repo": "https://github.com/mandaninikunj/mandaninikunj.github.io", + "owner": { + "username": "mandaninikunj", + "email": "" + }, + "record": { + "CNAME": "mandaninikunj.github.io" + } +} diff --git a/domains/manga.json b/domains/manga.json new file mode 100644 index 000000000..45475b8a4 --- /dev/null +++ b/domains/manga.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/maninder.json b/domains/maninder.json index f62a88fe1..65de25bb4 100644 --- a/domains/maninder.json +++ b/domains/maninder.json @@ -1,11 +1,11 @@ { - "description": "My Github Page!", - "repo": "https://github.com/github4maninder", - "owner": { - "username": "github4maninder", - "email": "iamgoat@tutanota.com" - }, - "record": { - "CNAME": "maninder.github.io" - } + "description": "My Github Page!", + "repo": "https://github.com/github4maninder", + "owner": { + "username": "github4maninder", + "email": "iamgoat@tutanota.com" + }, + "record": { + "CNAME": "maninder.github.io" + } } diff --git a/domains/manish.json b/domains/manish.json index 11b607bb2..7df8fa542 100644 --- a/domains/manish.json +++ b/domains/manish.json @@ -1,11 +1,11 @@ { - "description": "Manish's Personal Website", - "repo": "https://github.com/manish7479dlp/manish7479dlp.github.io", - "owner": { - "username": "manish7479dlp", - "email": "manish7479dlp@gmail.com" - }, - "record": { - "CNAME": "manish7479dlp.github.io" - } + "description": "Manish's Personal Website", + "repo": "https://github.com/manish7479dlp/manish7479dlp.github.io", + "owner": { + "username": "manish7479dlp", + "email": "manish7479dlp@gmail.com" + }, + "record": { + "CNAME": "manish7479dlp.github.io" + } } diff --git a/domains/manit.json b/domains/manit.json new file mode 100644 index 000000000..5a52aab9b --- /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/manjunathkalburgi.json b/domains/manjunathkalburgi.json new file mode 100644 index 000000000..0ea921707 --- /dev/null +++ b/domains/manjunathkalburgi.json @@ -0,0 +1,12 @@ +{ + "description": "Manjunath Kalburgi Portfolio", + "repo": "https://github.com/aftoncodes/aftoncodes.github.io", + "owner": { + "username": "manjunathkalburgi", + "email": "manjunathkalburgi@gmail.com", + "twitter": "manjunathmk" + }, + "record": { + "URL": "https://2j4h53-3000.csb.app/" + } +} 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/manojbarman.json b/domains/manojbarman.json index d93004689..9d8c2dd67 100644 --- a/domains/manojbarman.json +++ b/domains/manojbarman.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "itsmanojb", - "email": "", - "twitter": "@itsmanojb" - }, - "description": "My personal website", - "repo": "https://github.com/itsmanojb", - "record": { - "URL": "https://manojbarman.in" - } + "owner": { + "username": "itsmanojb", + "email": "", + "twitter": "itsmanojb" + }, + "description": "My personal website", + "repo": "https://github.com/itsmanojb", + "record": { + "URL": "https://manojbarman.in" + } } diff --git a/domains/mansi.json b/domains/mansi.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/mansi.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/mantas.json b/domains/mantas.json index ec487c071..ead7a8057 100644 --- a/domains/mantas.json +++ b/domains/mantas.json @@ -1,11 +1,11 @@ { - "description": "Mantas is a developer!", - "repo": "https://github.com/mantooc", - "owner": { - "username": "mantooc", - "email": "mantasnugaras@gmail.com" - }, - "record": { - "CNAME": "mantooc.github.io" - } + "description": "Mantas is a developer!", + "repo": "https://github.com/mantooc", + "owner": { + "username": "mantooc", + "email": "mantasnugaras@gmail.com" + }, + "record": { + "CNAME": "mantooc.github.io" + } } diff --git a/domains/manu.json b/domains/manu.json new file mode 100644 index 000000000..01de5ecfc --- /dev/null +++ b/domains/manu.json @@ -0,0 +1,11 @@ +{ + "description": "manu.is-a.dev", + "repo": "https://github.com/manuthecoder/manuthecoder", + "owner": { + "username": "manuthecoder", + "email": "manusvathgurudath@gmail.com" + }, + "record": { + "CNAME": "manuthecoder.pages.dev" + } +} diff --git a/domains/manuel.json b/domains/manuel.json new file mode 100644 index 000000000..14d8d0ccb --- /dev/null +++ b/domains/manuel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Manueloso", + "email": "emanuelea.rega@itisvoltanapoli.edu.it" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/marban.json b/domains/marban.json new file mode 100644 index 000000000..5d157fc37 --- /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/marby.json b/domains/marby.json new file mode 100644 index 000000000..d6c07c42f --- /dev/null +++ b/domains/marby.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stanasxd", + "email": "stanasarts@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/marc.json b/domains/marc.json index 297fe957c..3716335f1 100644 --- a/domains/marc.json +++ b/domains/marc.json @@ -1,11 +1,11 @@ { "description": "Marc Gruita is a Developer!", - "repo": "https://github.com/marcgr9", - "owner": { - "username": "marcgr9", - "email": "marc@gruita.ro" - }, - "record": { - "URL": "https://gruita.ro" - } + "repo": "https://github.com/marcgr9", + "owner": { + "username": "marcgr9", + "email": "marc@gruita.ro" + }, + "record": { + "URL": "https://gruita.ro" + } } diff --git a/domains/marcchew.json b/domains/marcchew.json index 0c885dc71..4e07cef5c 100644 --- a/domains/marcchew.json +++ b/domains/marcchew.json @@ -1,10 +1,10 @@ { - "description": "About Marc Chew", - "owner": { - "username": "marcchew", - "email": "marckychew@gmail.com" - }, - "record": { - "CNAME": "947555d1-ed28-4253-9341-45074fe2aaab.id.repl.co" - } + "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/marcel.json b/domains/marcel.json new file mode 100644 index 000000000..00baebea7 --- /dev/null +++ b/domains/marcel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "marceljsh", + "email": "marceljoshua69@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/marcel.kitzbichler.json b/domains/marcel.kitzbichler.json new file mode 100644 index 000000000..579e464de --- /dev/null +++ b/domains/marcel.kitzbichler.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Marcel-Kitzbichler", + "email": "marcel.kitzbichler@gmail.com" + }, + "record": { + "CNAME": "marcel.kitzbichler.tirol" + } +} diff --git a/domains/marcelomrwin.json b/domains/marcelomrwin.json index f4a80287c..3fc8aec87 100644 --- a/domains/marcelomrwin.json +++ b/domains/marcelomrwin.json @@ -2,10 +2,10 @@ "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" + "username": "marcelomrwin", + "email": "marcelo.d.sales@gmail.com" }, "record": { - "CNAME": "marcelomrwin.github.io" + "CNAME": "marcelomrwin.github.io" } - } \ No newline at end of file +} diff --git a/domains/marchiba99.json b/domains/marchiba99.json new file mode 100644 index 000000000..89536c1a6 --- /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 new file mode 100644 index 000000000..28d66090a --- /dev/null +++ b/domains/marco.json @@ -0,0 +1,9 @@ +{ + "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..607e74c41 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", - "owner": { - "username": "HeroGamers", - "email": "webmaster@herogamers.dev", - "twitter": "ItsHeroGamers" - }, - "record": { - "CNAME": "herogamers.github.io" - } + "description": "A portfolio website for HeroGamers (Marcus).", + "repo": "https://github.com/HeroGamers/Portfolio", + "owner": { + "username": "HeroGamers", + "email": "webmaster@herogamers.dev", + "twitter": "ItsHeroGamers" + }, + "record": { + "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..e8e873f33 100644 --- a/domains/maria.json +++ b/domains/maria.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "nirewen", "email": "londero.edu@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://github.com/marialuisamol" - } } - \ No newline at end of file +} diff --git a/domains/marioannier.json b/domains/marioannier.json new file mode 100644 index 000000000..9d9a1e1c8 --- /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/mariovaldez.json b/domains/mariovaldez.json new file mode 100644 index 000000000..5eee5c8da --- /dev/null +++ b/domains/mariovaldez.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "DevMarioValdez", + "email": "marioaf.valdez@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/mark.json b/domains/mark.json deleted file mode 100644 index 5e42a25c4..000000000 --- a/domains/mark.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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/" - } -} diff --git a/domains/marketplace.syntaxloopers.json b/domains/marketplace.syntaxloopers.json new file mode 100644 index 000000000..a23664d55 --- /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..95d85f439 --- /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/markos.json b/domains/markos.json index deb080298..1c37f2a64 100644 --- a/domains/markos.json +++ b/domains/markos.json @@ -1,11 +1,11 @@ { - "description": "Hello my name is Markos Dimitsas and I am from Greece.", - "repo": "https://github.com/markdimi", - "owner": { - "username": "markdimi", - "email": "markdimitsas@gmail.com" - }, - "record": { - "CNAME": "markos.me" - } + "description": "Hello my name is Markos Dimitsas and I am from Greece.", + "repo": "https://github.com/markdimi", + "owner": { + "username": "markdimi", + "email": "markdimitsas@gmail.com" + }, + "record": { + "CNAME": "markos.me" + } } diff --git a/domains/markus.json b/domains/markus.json index d5a60c9cd..b6d994450 100644 --- a/domains/markus.json +++ b/domains/markus.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/markusjx/markusjx.github.io", - "owner": { - "username": "markusjx", - "email": "markusjx11@gmail.com" - }, - "record": { - "CNAME": "markusjx.github.io" - } + "repo": "https://github.com/markusjx/markusjx.github.io", + "owner": { + "username": "markusjx", + "email": "markusjx11@gmail.com" + }, + "record": { + "CNAME": "markusjx.github.io" + } } diff --git a/domains/markvayson.json b/domains/markvayson.json new file mode 100644 index 000000000..c2a015a42 --- /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/martial.json b/domains/martial.json index 3fe1363b5..208a5b065 100644 --- a/domains/martial.json +++ b/domains/martial.json @@ -1,11 +1,11 @@ { - "description": "Martial is a dev", - "repo": "https://github.com/MartialSeron/MartialSeron.github.io", - "owner": { - "username": "MartialSeron", - "email": "martial.seron@gmail.com" - }, - "record": { - "CNAME": "martialseron.github.io" - } + "description": "Martial is a dev", + "repo": "https://github.com/MartialSeron/MartialSeron.github.io", + "owner": { + "username": "MartialSeron", + "email": "martial.seron@gmail.com" + }, + "record": { + "CNAME": "martialseron.github.io" + } } diff --git a/domains/maryll.json b/domains/maryll.json index ec683d539..1a27f65e5 100644 --- a/domains/maryll.json +++ b/domains/maryll.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "Maryll-castelino", "email": "maryllcastelino@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "maryll-castelino.github.io" - } } - +} diff --git a/domains/maskduck.json b/domains/maskduck.json index d4b41187b..6597fe344 100644 --- a/domains/maskduck.json +++ b/domains/maskduck.json @@ -1,15 +1,14 @@ { - "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" - } + "description": "MaskDuck's personal website!", + "repo": "https://github.com/maskducks/maskducks.github.io", + "owner": { + "username": "MaskDuck", + "email": "maskduckuwu@gmail.com", + "discord": "maskduck", + "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.github.io" + } } diff --git a/domains/masmiyen.json b/domains/masmiyen.json new file mode 100644 index 000000000..7e77a008d --- /dev/null +++ b/domains/masmiyen.json @@ -0,0 +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" + } +} diff --git a/domains/masood.json b/domains/masood.json index aad69bdb4..6a9f475ec 100644 --- a/domains/masood.json +++ b/domains/masood.json @@ -1,11 +1,11 @@ { - "description": "Masood Mohammad's Personal Website", - "repo": "https://github.com/masoodbinmohammad", - "owner": { - "username": "masoodbinmohammad", - "email": "masoodbinmohammad@hotmail.com" - }, - "record": { - "CNAME": "masoodbinmohammad.github.io" - } + "description": "Masood Mohammad's Personal Website", + "repo": "https://github.com/masoodbinmohammad", + "owner": { + "username": "masoodbinmohammad", + "email": "masoodbinmohammad@hotmail.com" + }, + "record": { + "CNAME": "masoodbinmohammad.github.io" + } } diff --git a/domains/massick.json b/domains/massick.json index a3d7c1c44..c11336a71 100644 --- a/domains/massick.json +++ b/domains/massick.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "M4ss1ck", - "email": "4ndyraul@gmail.com", - "twitter": "M4ss1ck" - }, - "repo": "https://github.com/M4ss1ck/massick-portfolio", - "record": { - "URL": "https://massick.gatsbyjs.io/" - } + "owner": { + "username": "M4ss1ck", + "email": "4ndyraul@gmail.com" + }, + "record": { + "URL": "https://massick.netlify.app" + } } diff --git a/domains/master.json b/domains/master.json new file mode 100644 index 000000000..383835b97 --- /dev/null +++ b/domains/master.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TheMaster223", + "email": "masteriscool223@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/masterle.json b/domains/masterle.json new file mode 100644 index 000000000..f6b796197 --- /dev/null +++ b/domains/masterle.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mast3rle", + "email": "iam@mast3rle.xyz" + }, + "record": { + "URL": "https://dev.mast3rle.xyz" + } +} diff --git a/domains/matbak.json b/domains/matbak.json new file mode 100644 index 000000000..82a3a1052 --- /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..d235b0afd 100644 --- a/domains/match.json +++ b/domains/match.json @@ -1,14 +1,11 @@ { - "description": "Imad", - "repo": "https://github.com/imadboy89/match", - "owner": { - "username": "imadboy89", - "email": "imad.kh@outlook.com" - }, - "record": { - "A" : ["185.199.108.153", - "185.199.109.153", - "185.199.110.153", - "185.199.111.153"] - } + "description": "Imad", + "repo": "https://github.com/imadboy89/match", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"] + } } diff --git a/domains/matheus.json b/domains/matheus.json index d9fd18381..0770f3fbf 100644 --- a/domains/matheus.json +++ b/domains/matheus.json @@ -1,11 +1,11 @@ { - "description": "Matheus Costa's personal developer website", - "repo": "https://github.com/mthcsta/mthcsta.github.io", - "owner": { - "username": "mthcsta", - "email": "matheuscosta.dev@yahoo.com" - }, - "record": { - "CNAME": "mthcsta.github.io" - } + "description": "Matheus Costa's personal developer website", + "repo": "https://github.com/mthcsta/mthcsta.github.io", + "owner": { + "username": "mthcsta", + "email": "matheuscosta.dev@yahoo.com" + }, + "record": { + "CNAME": "mthcsta.github.io" + } } diff --git a/domains/mathiassm.json b/domains/mathiassm.json index 326d932a4..715c10c5f 100644 --- a/domains/mathiassm.json +++ b/domains/mathiassm.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "mathiassm", - "email": "", - "twitter": "mathiassm" - }, - "description": "MathiasSM's Personal Site", - "repo": "https://github.com/MathiasSM/mathiassm.github.io", - "record": { - "URL": "https://mathiassm.dev" - } + "owner": { + "username": "mathiassm", + "email": "", + "twitter": "mathiassm" + }, + "description": "MathiasSM's Personal Site", + "repo": "https://github.com/MathiasSM/mathiassm.github.io", + "record": { + "URL": "https://mathiassm.dev" + } } diff --git a/domains/mathiscool.json b/domains/mathiscool.json index c90223efc..0a17ca714 100644 --- a/domains/mathiscool.json +++ b/domains/mathiscool.json @@ -1,11 +1,11 @@ { - "description": "Mathiscool personal website", - "repo": "https://testbot-github.github.io/Mathiscool/", - "owner": { - "username": "testbot-github", - "email": "testbot-github@gmail.com" - }, - "record": { - "CNAME": "Mathiscool.github.io" - } + "description": "Mathiscool personal website", + "repo": "https://testbot-github.github.io/Mathiscool", + "owner": { + "username": "testbot-github", + "email": "testbot-github@gmail.com" + }, + "record": { + "CNAME": "Mathiscool.github.io" + } } diff --git a/domains/mathu-lmn.json b/domains/mathu-lmn.json new file mode 100644 index 000000000..f6a54ad42 --- /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..ea691c545 --- /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..93e05d487 --- /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..a3c862235 100644 --- a/domains/matt.json +++ b/domains/matt.json @@ -1,11 +1,14 @@ { - "description": "Matt Casey is a Developer!", - "repo": "https://github.com/mattcasey", - "owner": { - "username": "mattcasey", - "email": "mattwad@gmail.com" - }, - "record": { - "URL": "https://www.linkedin.com/in/mbcasey" - } -} + "owner": { + "username": "SpearDevelopment1", + "email": "dev@spear.best" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/matt3o0.json b/domains/matt3o0.json new file mode 100644 index 000000000..e12c82c4f --- /dev/null +++ b/domains/matt3o0.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duvbolone", + "email": "duvbolone@gmail.com" + }, + "record": { + "URL": "https://matt3o0.vercel.app" + } +} diff --git a/domains/mattdavison.json b/domains/mattdavison.json index 714ac3760..3f61b6eba 100644 --- a/domains/mattdavison.json +++ b/domains/mattdavison.json @@ -1,13 +1,10 @@ { - "description": "A domain for launching my person portfolio on!", - "repo": "https://github.com/mattjdavison", - "owner": { - "username": "mattjdavison", - "email": "matt@spectrebot.net" - }, - "record": { - "A": [ - "134.209.176.85" - ] - } + "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/matthew.json b/domains/matthew.json index 7909c2f1e..6cfe75aa6 100644 --- a/domains/matthew.json +++ b/domains/matthew.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Matt-Gleich", - "email": "email@mattglei.ch", - "twitter": "MattGleich" - }, - "repo": "https://github.com/Matt-Gleich/site-v2", - "record": { - "URL": "https://mattglei.ch" - } + "owner": { + "username": "Matt-Gleich", + "email": "email@mattglei.ch", + "twitter": "MattGleich" + }, + "repo": "https://github.com/Matt-Gleich/site-v2", + "record": { + "URL": "https://mattglei.ch" + } } diff --git a/domains/mattw.json b/domains/mattw.json index 1e84a0a67..c1f21a917 100644 --- a/domains/mattw.json +++ b/domains/mattw.json @@ -1,13 +1,11 @@ { - "description": "Matt is a Developer!", - "repo": "https://github.com/Tweak4141", - "owner": { - "username": "tweak4141", - "email": "ynan243@gmail.com" - }, - "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" - } + "description": "Matt is a Developer!", + "repo": "https://github.com/Tweak4141", + "owner": { + "username": "tweak4141", + "email": "tweak@talosbot.xyz" + }, + "record": { + "CNAME": "nginxpm.talosbot.xyz" + } } diff --git a/domains/mauricio.json b/domains/mauricio.json new file mode 100644 index 000000000..a676e449a --- /dev/null +++ b/domains/mauricio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Luceium", + "email": "mauriciom.curiel@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mausami-parmar.json b/domains/mausami-parmar.json new file mode 100644 index 000000000..d88a06eff --- /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 new file mode 100644 index 000000000..1b395dce0 --- /dev/null +++ b/domains/mawoka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mawoka-myblock", + "email": "git@mawoka.eu" + }, + "record": { + "URL": "https://mawoka.eu" + } +} diff --git a/domains/max.json b/domains/max.json deleted file mode 100644 index aa8a8d8fc..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/maxgreet.json b/domains/maxgreet.json new file mode 100644 index 000000000..4dd26cda0 --- /dev/null +++ b/domains/maxgreet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "emmu2008", + "email": "aneenababu17901@gmail.com" + }, + "record": { + "CNAME": "emmu123.github.io" + } +} 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/maximumdevmode.json b/domains/maximumdevmode.json new file mode 100644 index 000000000..d5ad34012 --- /dev/null +++ b/domains/maximumdevmode.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MaximumDevMode", + "email": "MaximumDevMode@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/maxt.json b/domains/maxt.json index ed3b1c60e..d4acb3685 100644 --- a/domains/maxt.json +++ b/domains/maxt.json @@ -1,11 +1,11 @@ { - "description": "Max's Portfolio/Cool Website", - "repo": "https://github.com/MaxTCodes/maxt-is-a.dev", - "owner": { - "username": "MaxTCodes", - "email": "dev@maxt-is-a.dev" - }, - "record": { - "URL": "https://maxt-is-a.dev/" - } + "description": "Max's Portfolio/Cool Website", + "repo": "https://github.com/MaxTCodes/maxt-is-a.dev", + "owner": { + "username": "MaxTCodes", + "email": "dev@maxt-is-a.dev" + }, + "record": { + "URL": "https://maxt-is-a.dev" + } } diff --git a/domains/maxzhu.json b/domains/maxzhu.json new file mode 100644 index 000000000..b22c97bb4 --- /dev/null +++ b/domains/maxzhu.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "mlardeur", + "email": "max.lardeur@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/mayank-rathva.json b/domains/mayank-rathva.json new file mode 100644 index 000000000..84948dd07 --- /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/mayank2808sharma.json b/domains/mayank2808sharma.json new file mode 100644 index 000000000..4678c9ec6 --- /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..2adcfa228 --- /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/mayur.json b/domains/mayur.json index 591394d56..9590c3044 100644 --- a/domains/mayur.json +++ b/domains/mayur.json @@ -1,11 +1,11 @@ { - "description": "Mayur Dange is a Developer!", - "repo": "https://github.com/mayurdange/mayurdange.github.io", - "owner": { - "username": "mayurdange", - "email": "mayurdange@live.com" - }, - "record": { - "CNAME": "mayurdange.github.io" - } + "description": "Mayur Dange is a Developer!", + "repo": "https://github.com/mayurdange/mayurdange.github.io", + "owner": { + "username": "mayurdange", + "email": "mayurdange@live.com" + }, + "record": { + "CNAME": "mayurdange.github.io" + } } diff --git a/domains/mazengohar.json b/domains/mazengohar.json index 79bee6893..907c240fc 100644 --- a/domains/mazengohar.json +++ b/domains/mazengohar.json @@ -1,11 +1,11 @@ { - "description": "Mazen Gohar - DEV", - "repo": "https://github.com/MazenGohar", - "owner": { - "username": "MazenGohar", - "email": "mizoiology@gmail.com" - }, - "record": { - "CNAME": "mazen-gohar-dev.onrender.com" - } + "description": "Mazen Gohar - DEV", + "repo": "https://github.com/MazenGohar", + "owner": { + "username": "MazenGohar", + "email": "mizoiology@gmail.com" + }, + "record": { + "CNAME": "mazen-gohar-dev.onrender.com" + } } diff --git a/domains/mazimez.json b/domains/mazimez.json new file mode 100644 index 000000000..f303e64bf --- /dev/null +++ b/domains/mazimez.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mazimez", + "email": "asif987patel@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mb.json b/domains/mb.json index 246c7c3e5..becf48db0 100644 --- a/domains/mb.json +++ b/domains/mb.json @@ -1,11 +1,11 @@ { - "description": "Michael's personal developer website", - "repo": "https://github.com/mbrav", - "owner": { - "username": "mbrav", - "email": "mbrav@protonmail.com" - }, - "record": { - "CNAME": "mbrav.github.io" - } + "description": "Michael's personal developer website", + "repo": "https://github.com/mbrav", + "owner": { + "username": "mbrav", + "email": "mbrav@protonmail.com" + }, + "record": { + "CNAME": "mbrav.github.io" + } } diff --git a/domains/mburguete.json b/domains/mburguete.json index 5486871a8..97af4efde 100644 --- a/domains/mburguete.json +++ b/domains/mburguete.json @@ -1,11 +1,11 @@ { - "description": "Mariano Burguete's Portfolio", - "repo": "https://github.com/nai98x/is-a-dev", - "owner": { - "username": "nai98x", - "email": "marianoburguete@gmail.com" - }, - "record": { - "CNAME": "nai98x.github.io" - } + "description": "Mariano Burguete's Portfolio", + "repo": "https://github.com/nai98x/is-a-dev", + "owner": { + "username": "nai98x", + "email": "marianoburguete@gmail.com" + }, + "record": { + "CNAME": "nai98x.github.io" + } } diff --git a/domains/mc-wolmarans.json b/domains/mc-wolmarans.json new file mode 100644 index 000000000..9b3247382 --- /dev/null +++ b/domains/mc-wolmarans.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Mc141", + "email": "marthinuswolmarans61@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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.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/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/mcotocel.json b/domains/mcotocel.json index 7659d4b43..8b01bac4c 100644 --- a/domains/mcotocel.json +++ b/domains/mcotocel.json @@ -1,11 +1,11 @@ { - "description": "Matei Cotocel's Site", - "repo": "https://github.com/mcotocel/mcotocel.github.io", - "owner": { - "username": "mcotocel", - "email": "mcotocel@outlook.com" - }, - "record": { - "CNAME": "mcotocel.github.io" - } + "description": "Matei Cotocel's Site", + "repo": "https://github.com/mcotocel/mcotocel.github.io", + "owner": { + "username": "mcotocel", + "email": "mcotocel@outlook.com" + }, + "record": { + "CNAME": "mcotocel.github.io" + } } diff --git a/domains/mcsavvy.json b/domains/mcsavvy.json index ca1b654f8..fa5eb8dcd 100644 --- a/domains/mcsavvy.json +++ b/domains/mcsavvy.json @@ -1,10 +1,10 @@ { - "owner":{ - "username": "Mcsavvy", - "discord": "savvii#3184", - "email": "davemcsavvii@gmail.com" - }, - "record": { - "CNAME": "mcsavvy.github.io" - } + "owner": { + "username": "Mcsavvy", + "discord": "savvii#3184", + "email": "davemcsavvii@gmail.com" + }, + "record": { + "CNAME": "mcsavvy.github.io" + } } 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 index 4129f9c5d..234d840ec 100644 --- a/domains/mdbesoain.json +++ b/domains/mdbesoain.json @@ -1,11 +1,11 @@ - - { - "owner": { +{ + "owner": { "username": "mdbesoain", "email": "mdbesoain@gmail.com" - }, - "record": { - "URL": "https://mdbesoain.cl" - } + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mean.json b/domains/mean.json new file mode 100644 index 000000000..ef03c1641 --- /dev/null +++ b/domains/mean.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MeanZhang", + "email": "zhangmean@outlook.com" + }, + "record": { + "CNAME": "meanzhang.github.io" + } +} diff --git a/domains/medhanite.json b/domains/medhanite.json index 82ffc98e9..f1cb71f32 100644 --- a/domains/medhanite.json +++ b/domains/medhanite.json @@ -1,11 +1,11 @@ { - "description": "medhanite is a dev", - "repo": "https://github.com/medhanite/medhanite.github.io", - "owner": { - "username": "EyobYb", - "email": "eyobyirgu@gmail.com" - }, - "record": { - "CNAME": "medhanite.github.io" - } + "description": "medhanite is a dev", + "repo": "https://github.com/medhanite/medhanite.github.io", + "owner": { + "username": "EyobYb", + "email": "eyobyirgu@gmail.com" + }, + "record": { + "CNAME": "medhanite.github.io" + } } diff --git a/domains/meen.json b/domains/meen.json deleted file mode 100644 index f94918c57..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..3650d4b63 --- /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..19b709877 --- /dev/null +++ b/domains/meerkats.shays.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SHays24", + "email": "shays24@student.sacs.nsw.edu.au" + }, + "record": { + "CNAME": "the-meerkats-projects-shays24-90484013ec4c0067187cd3a154c706ad6.gitlab.io" + } +} diff --git a/domains/meerveld.json b/domains/meerveld.json new file mode 100644 index 000000000..5a65d0585 --- /dev/null +++ b/domains/meerveld.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FabianMeerveld", + "email": "fabian.meerveld@student.hu.nl" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mega-lag.sx9.json b/domains/mega-lag.sx9.json index 475e56e55..49b3df232 100644 --- a/domains/mega-lag.sx9.json +++ b/domains/mega-lag.sx9.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "SX-9", "email": "satriakrach@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "sx-9.github.io" - } } - \ No newline at end of file +} diff --git a/domains/mega.json b/domains/mega.json index a31fbdc22..acdc6b041 100644 --- a/domains/mega.json +++ b/domains/mega.json @@ -1,12 +1,12 @@ { - "description": "My Personal website and possibly an API", - "repo": "https://github.com/MegaDevGuy", - "owner": { - "username": "MegaDevGuy", - "email": "", - "twitter":"@_Mega_Dev_" - }, - "record": { - "CNAME": "flask-production-b336.up.railway.app" - } + "description": "My Personal website and possibly an API", + "repo": "https://github.com/MegaDevGuy", + "owner": { + "username": "MegaDevGuy", + "email": "", + "twitter": "_Mega_Dev_" + }, + "record": { + "CNAME": "flask-production-b336.up.railway.app" + } } diff --git a/domains/megalith.json b/domains/megalith.json new file mode 100644 index 000000000..d97010136 --- /dev/null +++ b/domains/megalith.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MegalithOffical", + "email": "gekocakaya@gmail.com" + }, + + "record": { + "URL": "https://profile-megalithoffical.vercel.app" + } +} diff --git a/domains/mehedi.json b/domains/mehedi.json new file mode 100644 index 000000000..271cae80e --- /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/mehedibd.json b/domains/mehedibd.json new file mode 100644 index 000000000..965c62d0b --- /dev/null +++ b/domains/mehedibd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asma019", + "email": "asmaparvin019@gmail.com" + }, + "record": { + "A": ["172.104.43.107"] + } +} diff --git a/domains/mehmetabak.json b/domains/mehmetabak.json new file mode 100644 index 000000000..f331e5588 --- /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/melainegerard.json b/domains/melainegerard.json new file mode 100644 index 000000000..3fd543f2a --- /dev/null +++ b/domains/melainegerard.json @@ -0,0 +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" + } +} diff --git a/domains/meloun7.json b/domains/meloun7.json index c1275092f..e45e3bbb1 100644 --- a/domains/meloun7.json +++ b/domains/meloun7.json @@ -1,11 +1,11 @@ { - "description": "My personal website", - "repo": "https://github.com/Whtery1087", - "owner": { - "username": "Whtery1087", - "email": "beelandsofficialmc@gmail.com" - }, - "record": { - "CNAME": "web-1.hostnow.cz" - } + "description": "My personal website", + "repo": "https://github.com/Whtery1087", + "owner": { + "username": "Whtery1087", + "email": "beelandsofficialmc@gmail.com" + }, + "record": { + "CNAME": "web-1.hostnow.cz" + } } diff --git a/domains/melvin.json b/domains/melvin.json new file mode 100644 index 000000000..1123ef63a --- /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/melwyn.json b/domains/melwyn.json index fc8306d93..dbb3584d3 100644 --- a/domains/melwyn.json +++ b/domains/melwyn.json @@ -1,11 +1,11 @@ { - "description": "Melwyn's personal website", - "repo": "https://github.com/melwyn95/melwyn95.github.io", - "owner": { - "username": "melwyn95", - "email": "melwyn95@gmail.com" - }, - "record": { - "CNAME": "melwyn95.github.io" - } + "description": "Melwyn's personal website", + "repo": "https://github.com/melwyn95/melwyn95.github.io", + "owner": { + "username": "melwyn95", + "email": "melwyn95@gmail.com" + }, + "record": { + "CNAME": "melwyn95.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 new file mode 100644 index 000000000..422f51eb7 --- /dev/null +++ b/domains/mendy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "emkay5771", + "email": "emkay5771@outlook.com" + }, + "record": { + "URL": "https://multidest.onrender.com" + } +} diff --git a/domains/meraj.json b/domains/meraj.json new file mode 100644 index 000000000..e86124761 --- /dev/null +++ b/domains/meraj.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MRJ-Badshah", + "email": "illegalhacker2.0@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mersillc.json b/domains/mersillc.json new file mode 100644 index 000000000..836a26903 --- /dev/null +++ b/domains/mersillc.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Mersi-LLC", + "email": "marsitvtube@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mert.json b/domains/mert.json index cb3a63d6e..cd85b3c32 100644 --- a/domains/mert.json +++ b/domains/mert.json @@ -1,11 +1,9 @@ { - "description": "Mert's personal developer website", - "repo": "https://github.com/mertcelik2196", - "owner": { - "username": "mertcelik2196", - "email": "mertcelik2196@gmail.com" - }, - "record": { - "URL": "https://mert.vercel.app" - } + "owner": { + "username": "DevJustMert", + "email": "mertcelik0541@gmail.com" + }, + "record": { + "URL": "https://mert.vercel.app" + } } diff --git a/domains/mesmerica.json b/domains/mesmerica.json new file mode 100644 index 000000000..bf934eba0 --- /dev/null +++ b/domains/mesmerica.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "meteoritics-reii", + "email": "reii.meteoritics@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mewwme.json b/domains/mewwme.json new file mode 100644 index 000000000..4be4c3e2f --- /dev/null +++ b/domains/mewwme.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "lrmn7", + "email": "lrmn.dev@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/mfarag.json b/domains/mfarag.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/mfarag.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mfused.json b/domains/mfused.json new file mode 100644 index 000000000..aa98be810 --- /dev/null +++ b/domains/mfused.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Mfused07", + "email": "fiverronlyokay@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..1db3e314a --- /dev/null +++ b/domains/mhmd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mjnaous", + "email": "mj@naous.eu.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mhsunny.json b/domains/mhsunny.json new file mode 100644 index 000000000..b1963a898 --- /dev/null +++ b/domains/mhsunny.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "mehedi6800", + "email": "hassainmehedi3@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/micah.json b/domains/micah.json index 9efad83fc..594d6f049 100644 --- a/domains/micah.json +++ b/domains/micah.json @@ -1,11 +1,11 @@ { - "description": "Micah Lindley is a web developer.", - "repo": "https://github.com/micahlt", - "owner": { - "username": "micahlt", - "email": "hi@micahlindley.com" - }, - "record": { - "URL": "https://micahlindley.com" - } + "description": "Micah Lindley is a web developer.", + "repo": "https://github.com/micahlt", + "owner": { + "username": "micahlt", + "email": "hi@micahlindley.com" + }, + "record": { + "URL": "https://micahlindley.com" + } } diff --git a/domains/michael.json b/domains/michael.json index 5b07e4bf6..f21c733b0 100644 --- a/domains/michael.json +++ b/domains/michael.json @@ -1,11 +1,11 @@ { - "description": "Michael's portfolio website and blog", - "repo": "https://github.com/michaelmano/michaelmano.github.io", - "owner": { - "username": "michaelmano", - "email": "michael.mano26@gmail.com" - }, - "record": { - "CNAME": "michaelmano.github.io" - } + "description": "Michael's portfolio website and blog", + "repo": "https://github.com/michaelmano/michaelmano.github.io", + "owner": { + "username": "michaelmano", + "email": "michael.mano26@gmail.com" + }, + "record": { + "CNAME": "michaelmano.github.io" + } } diff --git a/domains/michaelbelete.json b/domains/michaelbelete.json deleted file mode 100644 index 05156f862..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/michioxd.json b/domains/michioxd.json new file mode 100644 index 000000000..6dbe644a6 --- /dev/null +++ b/domains/michioxd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "michioxd", + "email": "michio.haiyaku@gmail.com" + }, + "record": { + "CNAME": "michioxd.github.io" + } +} diff --git a/domains/micky.json b/domains/micky.json new file mode 100644 index 000000000..0d2d9fd41 --- /dev/null +++ b/domains/micky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Manish5121", + "email": "manishgambhirrao21@gmail.com" + }, + "record": { + "CNAME": "manish5121.github.io" + } +} diff --git a/domains/micorksen.json b/domains/micorksen.json index 958f6d2db..531f78685 100644 --- a/domains/micorksen.json +++ b/domains/micorksen.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Micorksen", - "email": "hello@micorksen.eu", - "twitter": "Micorksen", - "discord": "Micorksen#2022" - }, - "record": { - "URL": "https://micorksen.eu" - } + "owner": { + "username": "Micorksen", + "email": "hello@micorksen.eu", + "twitter": "Micorksen", + "discord": "Micorksen#2022" + }, + "record": { + "URL": "https://micorksen.eu" + } } diff --git a/domains/midlaj.json b/domains/midlaj.json new file mode 100644 index 000000000..231ac0f96 --- /dev/null +++ b/domains/midlaj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "whoismidlaj", + "email": "midlaj@tuta.io" + }, + "record": { + "CNAME": "whoismidlaj.github.io" + } +} diff --git a/domains/migoreng.json b/domains/migoreng.json new file mode 100644 index 000000000..cbde9b920 --- /dev/null +++ b/domains/migoreng.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kelabang", + "email": "", + "discord": "migoreng#1665" + }, + "record": { + "A": ["162.159.153.4"] + } +} diff --git a/domains/miguel.json b/domains/miguel.json index bf19dfe0d..9e9a96f14 100644 --- a/domains/miguel.json +++ b/domains/miguel.json @@ -1,11 +1,11 @@ { - "description": "Miguel Piedrafita's website", - "repo": "https://github.com/m1guelpf", - "owner": { - "username": "m1guelpf", - "email": "soy@miguelpiedrafita.com" - }, - "record": { - "URL": "https://miguelpiedrafita.com" - } + "description": "Miguel Piedrafita's website", + "repo": "https://github.com/m1guelpf", + "owner": { + "username": "m1guelpf", + "email": "soy@miguelpiedrafita.com" + }, + "record": { + "URL": "https://miguelpiedrafita.com" + } } diff --git a/domains/mihai.json b/domains/mihai.json index 0aac6f95d..1ecd45de5 100644 --- a/domains/mihai.json +++ b/domains/mihai.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/8xu/web", - "owner": { - "username": "8xu", - "email": "mihai@8xu.tech", - "twitter": "reallymihai" - }, - "record": { - "CNAME": "8xu.github.io" - } -} \ No newline at end of file + "repo": "https://github.com/8xu/web", + "owner": { + "username": "8xu", + "email": "mihai@8xu.tech", + "twitter": "reallymihai" + }, + "record": { + "CNAME": "8xu.github.io" + } +} diff --git a/domains/mihir-patel-agc.json b/domains/mihir-patel-agc.json new file mode 100644 index 000000000..85de429a9 --- /dev/null +++ b/domains/mihir-patel-agc.json @@ -0,0 +1,11 @@ +{ + "description": "Mihir Patel Portfolio.", + "repo": "https://github.com/mihir-patel-agc/mihir-patel-agc.github.io", + "owner": { + "username": "mihir-patel-agc", + "email": "" + }, + "record": { + "CNAME": "mihir-patel-agc.github.io" + } +} diff --git a/domains/miho.json b/domains/miho.json new file mode 100644 index 000000000..9300449be --- /dev/null +++ b/domains/miho.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Miho1254", + "email": "nguyenha280876@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mihrpsah.json b/domains/mihrpsah.json new file mode 100644 index 000000000..5349738c2 --- /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/mijhelt.json b/domains/mijhelt.json new file mode 100644 index 000000000..2ac83d3f3 --- /dev/null +++ b/domains/mijhelt.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ejrv", + "email": "ondanwe@gmail.com" + }, + "description": "Aero Glass+", + "record": { + "CNAME": "mijhelt.github.io" + } +} diff --git a/domains/mikapikazo.json b/domains/mikapikazo.json new file mode 100644 index 000000000..af9e9074e --- /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/mike.json b/domains/mike.json index 41b595b2f..adf1f3901 100644 --- a/domains/mike.json +++ b/domains/mike.json @@ -1,11 +1,11 @@ { - "description": "Mike's portfolio website and blog", - "repo": "https://github.com/mdrobbins", - "owner": { - "username": "mdrobbins", - "email": "mikedrobbins@gmail.com" - }, - "record": { - "URL": "https://mikerobbins.me" - } + "description": "Mike's portfolio website and blog", + "repo": "https://github.com/mdrobbins", + "owner": { + "username": "mdrobbins", + "email": "mikedrobbins@gmail.com" + }, + "record": { + "URL": "https://mikerobbins.me" + } } diff --git a/domains/mikey.json b/domains/mikey.json index f7d223472..7ad0a0a21 100644 --- a/domains/mikey.json +++ b/domains/mikey.json @@ -1,12 +1,11 @@ { - "description": "A young full-stack developer who loves Python!", - "repo": "https://github.com/isigebengu-mikey/isigebengu-mikey.github.io", - "owner": { - "username": "isigebengu-mikey", - "email": "mikey@mikeyo.ml", - "twitter": "" - }, - "record": { - "CNAME": "isigebengu-mikey.github.io" - } + "description": "A young full-stack developer who loves Python!", + "repo": "https://github.com/isigebengu-mikey/isigebengu-mikey.github.io", + "owner": { + "username": "isigebengu-mikey", + "email": "mikey@mikeyo.ml" + }, + "record": { + "CNAME": "isigebengu-mikey.github.io" + } } diff --git a/domains/mikko.json b/domains/mikko.json index 64a7c0e2f..01f20b660 100644 --- a/domains/mikko.json +++ b/domains/mikko.json @@ -1,12 +1,12 @@ { - "description": "Mikko's Developer Page", - "repo": "https://github.com/mikkortx/cv", - "owner": { - "username": "mikkortx", - "email": "mikkoahh@gmail.com", - "twitter": "mikkortx" - }, - "record": { - "CNAME": "mikkortx.github.io" - } + "description": "Mikko's Developer Page", + "repo": "https://github.com/mikkortx/cv", + "owner": { + "username": "mikkortx", + "email": "mikkoahh@gmail.com", + "twitter": "mikkortx" + }, + "record": { + "CNAME": "mikkortx.github.io" + } } diff --git a/domains/mikronet.json b/domains/mikronet.json new file mode 100644 index 000000000..0930a972b --- /dev/null +++ b/domains/mikronet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mikrodinet", + "email": "mikrodinet@gmail.com" + }, + "record": { + "CNAME": "mikrodinet.github.io" + } +} diff --git a/domains/milan.json b/domains/milan.json index 64e66ba98..a313febee 100644 --- a/domains/milan.json +++ b/domains/milan.json @@ -1,12 +1,12 @@ { - "description": "Milan's personal website and blog", - "repo": "https://github.com/MilanAryal/milanaryal.github.io", - "owner": { - "username": "MilanAryal", - "email": "", - "twitter": "MilanAryal" - }, - "record": { - "URL": "https://milanaryal.com.np" - } + "description": "Milan's personal website and blog", + "repo": "https://github.com/MilanAryal/milanaryal.github.io", + "owner": { + "username": "MilanAryal", + "email": "", + "twitter": "MilanAryal" + }, + "record": { + "URL": "https://milanaryal.com.np" + } } diff --git a/domains/milan090.json b/domains/milan090.json index 81f70ac74..0706274d6 100644 --- a/domains/milan090.json +++ b/domains/milan090.json @@ -1,11 +1,11 @@ { - "description": "I'm a student, but who are you 🔫", - "repo": "https://github.com/milan090", - "owner": { - "username": "milan090", - "email": "milanmuhammed1@gmail.com" - }, - "record": { - "URL": "https://milan090.me/" - } + "description": "I'm a student, but who are you 🔫", + "repo": "https://github.com/milan090", + "owner": { + "username": "milan090", + "email": "milanmuhammed1@gmail.com" + }, + "record": { + "URL": "https://milan090.me" + } } diff --git a/domains/milcon.json b/domains/milcon.json new file mode 100644 index 000000000..d93e27696 --- /dev/null +++ b/domains/milcon.json @@ -0,0 +1,9 @@ +{ + "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..796b5eca4 --- /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/miljte.json b/domains/miljte.json new file mode 100644 index 000000000..955a4a263 --- /dev/null +++ b/domains/miljte.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Miljte", + "email": "hak4rgof120876@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/milkshake.json b/domains/milkshake.json new file mode 100644 index 000000000..0895868e1 --- /dev/null +++ b/domains/milkshake.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FloatingMilkshake", + "email": "me@floatingmilkshake.com" + }, + "record": { + "URL": "https://floatingmilkshake.com" + } +} 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/mine.craft.json b/domains/mine.craft.json new file mode 100644 index 000000000..0b9799197 --- /dev/null +++ b/domains/mine.craft.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ocean-OS", + "email": "andrewhnolt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mineek.json b/domains/mineek.json index 3cb4c189b..0bb03ade5 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/mingihihi.json b/domains/mingihihi.json new file mode 100644 index 000000000..0e598d609 --- /dev/null +++ b/domains/mingihihi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ModelVNN", + "email": "modelvnn@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/minh2000.json b/domains/minh2000.json new file mode 100644 index 000000000..d639e5be6 --- /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..aedba0f0e 100644 --- a/domains/minhh2792.json +++ b/domains/minhh2792.json @@ -2,11 +2,11 @@ "description": "minhh2792's personal website", "repo": "https://github.com/minhh2792/minhh2792.github.io", "owner": { - "username": "minhh2792", - "email": "minhh2792.work@gmail.com", - "twitter": "minhh2792" + "username": "minhh2792", + "email": "minhh2792.work@gmail.com", + "twitter": "minhh2792" }, "record": { - "CNAME": "minhh2792.github.io" + "CNAME": "minhh2792.github.io" } - } \ No newline at end of file +} diff --git a/domains/minhmmb.json b/domains/minhmmb.json new file mode 100644 index 000000000..266f16992 --- /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/minihoot.json b/domains/minihoot.json new file mode 100644 index 000000000..cc3661df7 --- /dev/null +++ b/domains/minihoot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hoot679", + "email": "henrymahlberg65@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/minkxx.json b/domains/minkxx.json new file mode 100644 index 000000000..bfa37a224 --- /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/minmit.json b/domains/minmit.json index 20ac64b44..b09056efa 100644 --- a/domains/minmit.json +++ b/domains/minmit.json @@ -1,11 +1,11 @@ { - "description": "My Personal Website", - "repo": "https://github.com/MinMitCoder", - "owner": { - "username": "MinMitCoder", - "email": "minmitgamer@gmail.com" - }, - "record": { - "CNAME": "minmit.pages.dev" - } + "description": "My Personal Website", + "repo": "https://github.com/MinMitCoder", + "owner": { + "username": "MinMitCoder", + "email": "minmitgamer@gmail.com" + }, + "record": { + "CNAME": "minmit.pages.dev" + } } diff --git a/domains/minnb-bit.json b/domains/minnb-bit.json new file mode 100644 index 000000000..d639e5be6 --- /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..90b2f2f78 --- /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..a85df0c4e --- /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/mioscape.json b/domains/mioscape.json index 112839813..e61732c1b 100644 --- a/domains/mioscape.json +++ b/domains/mioscape.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal blog.", - "repo": "https://github.com/mioscape/mioscape.github.io", - "owner": { - "username": "mioscape", - "email": "mioscape@gmail.com" - }, - "record": { - "CNAME": "mioscape.github.io" - } + "description": "This website is a link to my personal blog.", + "repo": "https://github.com/mioscape/mioscape.github.io", + "owner": { + "username": "mioscape", + "email": "mioscape@gmail.com" + }, + "record": { + "CNAME": "mioscape.github.io" + } } diff --git a/domains/miraclecherrypie.json b/domains/miraclecherrypie.json index ed7bb0057..5c5167fe7 100644 --- a/domains/miraclecherrypie.json +++ b/domains/miraclecherrypie.json @@ -1,11 +1,11 @@ { - "description": "My personal website goes here", - "repo": "https://github.com/MiracleCherryPie/miraclecherrypie.github.io", - "owner": { - "username": "MiracleCherryPie", - "email": "christianpandapotans@gmail.com" - }, - "record": { - "CNAME": "miraclecherrypie.github.io" - } + "description": "My personal website goes here", + "repo": "https://github.com/MiracleCherryPie/miraclecherrypie.github.io", + "owner": { + "username": "MiracleCherryPie", + "email": "christianpandapotans@gmail.com" + }, + "record": { + "CNAME": "miraclecherrypie.up.railway.app" + } } 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..1d454bc32 --- /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 index bf0222655..7de178ead 100644 --- a/domains/mirror.json +++ b/domains/mirror.json @@ -1,11 +1,11 @@ { - "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" - } + "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..859df4ea1 --- /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": "habiboffdev.github.io" + } +} diff --git a/domains/mishal.json b/domains/mishal.json new file mode 100644 index 000000000..30e1f27a9 --- /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/mishalshanavas.json b/domains/mishalshanavas.json new file mode 100644 index 000000000..c45fd9940 --- /dev/null +++ b/domains/mishalshanavas.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mishalshanavas", + "email": "mishalshanavas8@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/misi.json b/domains/misi.json new file mode 100644 index 000000000..c3b845699 --- /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/mitch.json b/domains/mitch.json new file mode 100644 index 000000000..e604dc861 --- /dev/null +++ b/domains/mitch.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "liao02x", + "email": "liao02x@gmail.com" + }, + "record": { + "CNAME": "114032.xyz" + } +} diff --git a/domains/miti.json b/domains/miti.json new file mode 100644 index 000000000..35a777101 --- /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..35a777101 100644 --- a/domains/miti99.json +++ b/domains/miti99.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "tiennm99", - "email": "tiennm99@outlook.com" - }, - "record": { - "CNAME": "miti99.eu.org" - } + "email": "minhtienit99@gmail.com" + }, + "record": { + "CNAME": "miti.eu.org" } - \ No newline at end of file +} diff --git a/domains/miu.json b/domains/miu.json new file mode 100644 index 000000000..5fa89c39b --- /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/miyonaki.json b/domains/miyonaki.json new file mode 100644 index 000000000..338ba0c86 --- /dev/null +++ b/domains/miyonaki.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "OlaMushroom", + "email": "ola.mushroom@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mizu.json b/domains/mizu.json new file mode 100644 index 000000000..dffe052c1 --- /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/mj1532.json b/domains/mj1532.json index 2cbeb6fa3..93b742253 100644 --- a/domains/mj1532.json +++ b/domains/mj1532.json @@ -1,11 +1,11 @@ { - "description": "MJ1532 Just A Normal Developer", - "repo": "https://github.com/MJ1532", - "owner": { - "username": "MJ1532", - "email": "business@mj1532.cf" - }, - "record": { - "CNAME": "portfolio-4s4.pages.dev" - } + "description": "MJ1532 Just A Normal Developer", + "repo": "https://github.com/MJ1532", + "owner": { + "username": "MJ1532", + "email": "business@mj1532.cf" + }, + "record": { + "CNAME": "portfolio-4s4.pages.dev" + } } diff --git a/domains/mjn.json b/domains/mjn.json new file mode 100644 index 000000000..73a41d9f2 --- /dev/null +++ b/domains/mjn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mjnaous", + "email": "mj@naous.eu.org" + }, + "record": { + "CNAME": "mjnaous.github.io" + } +} diff --git a/domains/mk.json b/domains/mk.json index cc0b5df23..1fa9e2009 100644 --- a/domains/mk.json +++ b/domains/mk.json @@ -1,11 +1,11 @@ { - "description": "mklabs' website", - "repo": "https://github.com/mklabs/mklabs.github.com", - "owner": { - "username": "mklabs", - "email": "daniel.mickael@gmail.com" - }, - "record": { - "CNAME": "mklabs.github.io" - } + "description": "mklabs' website", + "repo": "https://github.com/mklabs/mklabs.github.com", + "owner": { + "username": "mklabs", + "email": "daniel.mickael@gmail.com" + }, + "record": { + "CNAME": "mklabs.github.io" + } } diff --git a/domains/mkk.json b/domains/mkk.json index c85123d13..00da4f801 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/mkrm.json b/domains/mkrm.json new file mode 100644 index 000000000..06deb18d3 --- /dev/null +++ b/domains/mkrm.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "mkrm0000", + "email": "mhb2020.bzs@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/mlemingcapoo.json b/domains/mlemingcapoo.json new file mode 100644 index 000000000..bfbb904a5 --- /dev/null +++ b/domains/mlemingcapoo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mlemingcapoo", + "email": "ducvu73@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/mnoer.json b/domains/mnoer.json new file mode 100644 index 000000000..deafb8c4c --- /dev/null +++ b/domains/mnoer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "m-noer", + "email": "mnoer@nerolab.dev" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mnshakib.json b/domains/mnshakib.json new file mode 100644 index 000000000..d4e6e8c07 --- /dev/null +++ b/domains/mnshakib.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "flam3arafat", + "email": "flamearafat@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mnsrulz.json b/domains/mnsrulz.json index f2907c144..91fb42f88 100644 --- a/domains/mnsrulz.json +++ b/domains/mnsrulz.json @@ -1,11 +1,11 @@ { - "description": "mnsrulz web", - "repo": "https://github.com/mnsrulz/mnsrulz.github.io", - "owner": { - "username": "mnsrulz", - "email": "mnsrulz@gmail.com" - }, - "record": { - "CNAME": "mnsrulz.github.io" - } + "description": "mnsrulz web", + "repo": "https://github.com/mnsrulz/mnsrulz.github.io", + "owner": { + "username": "mnsrulz", + "email": "mnsrulz@gmail.com" + }, + "record": { + "CNAME": "mnsrulz.github.io" + } } diff --git a/domains/moca.json b/domains/moca.json new file mode 100644 index 000000000..cf47ef3f1 --- /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/moddedstuffguy.json b/domains/moddedstuffguy.json new file mode 100644 index 000000000..f3438b800 --- /dev/null +++ b/domains/moddedstuffguy.json @@ -0,0 +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" + } +} diff --git a/domains/modi.json b/domains/modi.json new file mode 100644 index 000000000..4945af1f9 --- /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/moe.json b/domains/moe.json deleted file mode 100644 index 204dc5c6c..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/mofuru.json b/domains/mofuru.json index f6e3346f2..0b7398ba9 100644 --- a/domains/mofuru.json +++ b/domains/mofuru.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "dskprt", - "email": "", - "reddit": "dskprt" - }, - "record": { - "A": ["136.243.156.120"], - "MX": ["mail.ct8.pl"], - "TXT": "v=spf1 mx a include:spf.ct8.pl -all" - } + "owner": { + "username": "dskprt", + "email": "", + "reddit": "dskprt" + }, + "record": { + "A": ["136.243.156.120"], + "MX": ["mail.ct8.pl"], + "TXT": "v=spf1 mx a include:spf.ct8.pl -all" + } } diff --git a/domains/moh.json b/domains/moh.json new file mode 100644 index 000000000..921b9d5f9 --- /dev/null +++ b/domains/moh.json @@ -0,0 +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" + } +} diff --git a/domains/moha.json b/domains/moha.json index 7de1fae9a..514117452 100644 --- a/domains/moha.json +++ b/domains/moha.json @@ -1,12 +1,12 @@ { - "description": "Mohaned's personal website", - "repo": "https://github.com/mohanedashraf/mohanedashraf.github.io", - "owner": { - "username": "mohanedashraf", - "email": "", - "twitter": "mohanedzz" - }, - "record": { - "CNAME": "mohanedashraf.github.io" - } + "description": "Mohaned's personal website", + "repo": "https://github.com/mohanedashraf/mohanedashraf.github.io", + "owner": { + "username": "mohanedashraf", + "email": "", + "twitter": "mohanedzz" + }, + "record": { + "CNAME": "mohanedashraf.github.io" + } } diff --git a/domains/mohab.json b/domains/mohab.json new file mode 100644 index 000000000..636aeb56f --- /dev/null +++ b/domains/mohab.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zyelixify", + "email": "heroxmain@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mohamad.json b/domains/mohamad.json new file mode 100644 index 000000000..9c08027b1 --- /dev/null +++ b/domains/mohamad.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mjnaous", + "email": "mj@naous.eu.org" + }, + "record": { + "CNAME": "naous.eu.org" + } +} diff --git a/domains/mohamed.json b/domains/mohamed.json new file mode 100644 index 000000000..a3e7bb756 --- /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/mohammed.json b/domains/mohammed.json new file mode 100644 index 000000000..1651c390a --- /dev/null +++ b/domains/mohammed.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ppg00", + "email": "vx2dsk@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mohammedasif-shaikh.json b/domains/mohammedasif-shaikh.json new file mode 100644 index 000000000..e44bacac0 --- /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/mohand.json b/domains/mohand.json new file mode 100644 index 000000000..317c6de8a --- /dev/null +++ b/domains/mohand.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mohandaklii", + "email": "mohandakliamara09@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mohannadk28.json b/domains/mohannadk28.json index 6332056ef..654830805 100644 --- a/domains/mohannadk28.json +++ b/domains/mohannadk28.json @@ -1,11 +1,11 @@ { - "description": "Mohannadk28's Temporary Page", - "repo": "https://github.com/Mohannadk28/Mohannadk28.github.io", - "owner": { - "username": "Mohannadk28", - "email": "mohannadk28@protonmail.com" - }, - "record": { - "CNAME": "mohannadk28.github.io" - } -} \ No newline at end of file + "description": "Mohannadk28's Temporary Page", + "repo": "https://github.com/Mohannadk28/Mohannadk28.github.io", + "owner": { + "username": "Mohannadk28", + "email": "mohannadk28@protonmail.com" + }, + "record": { + "CNAME": "mohannadk28.github.io" + } +} diff --git a/domains/mohdjariullah.json b/domains/mohdjariullah.json new file mode 100644 index 000000000..d6704ced9 --- /dev/null +++ b/domains/mohdjariullah.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Mohdjariullah", + "email": "mohdjariullah@gmail.com", + "twitter": "mohdjariullah", + "discord": "@jariullah" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} + diff --git a/domains/mohdsohel.json b/domains/mohdsohel.json new file mode 100644 index 000000000..ae062d7de --- /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/mokajmc.oxmc.json b/domains/mokajmc.oxmc.json new file mode 100644 index 000000000..ba37338bc --- /dev/null +++ b/domains/mokajmc.oxmc.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "oxmc", + "email": "oxmc7769.mail@gmail.com", + "discord": "oxmc7769" + }, + "record": { + "A": ["198.244.164.183"], + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + "TXT": "forward-email=contact:oxmc7769.mail@gmail.com" + } +} diff --git a/domains/molai.json b/domains/molai.json index a7a615f45..1f0cc9a86 100644 --- a/domains/molai.json +++ b/domains/molai.json @@ -1,12 +1,13 @@ { - "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" - } + "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/molai777.json b/domains/molai777.json new file mode 100644 index 000000000..2514d322c --- /dev/null +++ b/domains/molai777.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mtgsquad", + "email": "mahir@molai.dev" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/momu54.json b/domains/momu54.json new file mode 100644 index 000000000..d70fb05cd --- /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/moni.json b/domains/moni.json index 5849fa346..f551eb712 100644 --- a/domains/moni.json +++ b/domains/moni.json @@ -1,11 +1,11 @@ { - "description": "My personal website to showcase the stuff that I do", - "repo": "https://github.com/monitrr/monitrr.github.io", - "owner": { - "username": "monitrr", - "email": "aanilsaint26@gmail.com" - }, - "record": { - "CNAME": "monitrr.github.io" - } + "description": "My personal website to showcase the stuff that I do", + "repo": "https://github.com/monitrr/monitrr.github.io", + "owner": { + "username": "monitrr", + "email": "aanilsaint26@gmail.com" + }, + "record": { + "CNAME": "monitrr.github.io" + } } diff --git a/domains/monissh.json b/domains/monissh.json new file mode 100644 index 000000000..a940ed997 --- /dev/null +++ b/domains/monissh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Monsstor", + "email": "itsamemonissh@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mono.json b/domains/mono.json new file mode 100644 index 000000000..267ea1a23 --- /dev/null +++ b/domains/mono.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "imakittymeow", + "email": "iamakitty@interia.pl" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/moo.json b/domains/moo.json new file mode 100644 index 000000000..04b549516 --- /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/moon.json b/domains/moon.json index c94462a9d..3b88b97d0 100644 --- a/domains/moon.json +++ b/domains/moon.json @@ -1,11 +1,11 @@ { - "description": "SORRY I REALIZED I WANTED TO CHANGE MY SUBDOMAIN SORRY FOR THE INCONVIENENCE", - "repo": "https://github.com/cx622/cx622.github.io", - "owner": { - "username": "cx622", - "email": "this-email@is-sus.com" - }, - "record": { - "CNAME": "cx622.github.io" - } + "description": "SORRY I REALIZED I WANTED TO CHANGE MY SUBDOMAIN SORRY FOR THE INCONVIENENCE", + "repo": "https://github.com/cx622/cx622.github.io", + "owner": { + "username": "cx622", + "email": "this-email@is-sus.com" + }, + "record": { + "CNAME": "cx622.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/moonmachine.json b/domains/moonmachine.json new file mode 100644 index 000000000..2d3aca564 --- /dev/null +++ b/domains/moonmachine.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mikaaamoe", + "email": "itzmerinz.dc@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/moothecow.json b/domains/moothecow.json new file mode 100644 index 000000000..a98de9ddd --- /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/mopamo.json b/domains/mopamo.json index 6c396cb7c..0d5605e69 100644 --- a/domains/mopamo.json +++ b/domains/mopamo.json @@ -1,12 +1,12 @@ { - "description": "MoPaMo's GitHub page", - "repo": "https://github.com/MoPaMo/mopamo.github.io", - "owner": { - "username": "MoPaMo", - "email": "mopamo@protonmail.com", - "twitter": "@MoPaMo_" - }, - "record": { - "CNAME": "mopamo.github.io" - } + "description": "MoPaMo's GitHub page", + "repo": "https://github.com/MoPaMo/mopamo.github.io", + "owner": { + "username": "MoPaMo", + "email": "mopamo@protonmail.com", + "twitter": "MoPaMo_" + }, + "record": { + "CNAME": "mopamo.github.io" + } } diff --git a/domains/moritz.json b/domains/moritz.json index 0f84d37c5..7a40944bc 100644 --- a/domains/moritz.json +++ b/domains/moritz.json @@ -1,11 +1,11 @@ { - "description": "Website of Moritz Friedrich.", - "repo": "https://github.com/Radiergummi/Radiergummi", - "owner": { - "username": "Radiergummi", - "email": "m@9dev.de" - }, - "record": { - "URL": "https://www.moritzfriedrich.com" - } + "description": "Website of Moritz Friedrich.", + "repo": "https://github.com/Radiergummi/Radiergummi", + "owner": { + "username": "Radiergummi", + "email": "m@9dev.de" + }, + "record": { + "URL": "https://www.moritzfriedrich.com" + } } diff --git a/domains/morning3tar.json b/domains/morning3tar.json index ca5e16d67..b5938d17e 100644 --- a/domains/morning3tar.json +++ b/domains/morning3tar.json @@ -1,11 +1,11 @@ { - "description": "Morning3tar Personal Website", - "owner": { - "username": "morning3tar", - "email": "", - "discord": "Morning3tar#7388" - }, - "record": { - "CNAME": "glitch.edgeapp.net" - } + "description": "Morning3tar Personal Website", + "owner": { + "username": "morning3tar", + "email": "", + "discord": "Morning3tar#7388" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } } diff --git a/domains/mosaab.json b/domains/mosaab.json new file mode 100644 index 000000000..f6e3e27f2 --- /dev/null +++ b/domains/mosaab.json @@ -0,0 +1,13 @@ +{ + "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/mosaabtest.json b/domains/mosaabtest.json new file mode 100644 index 000000000..313369779 --- /dev/null +++ b/domains/mosaabtest.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "MosaabGKA", + "email": "mosaabgka@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/mostafaefafi.json b/domains/mostafaefafi.json new file mode 100644 index 000000000..2a621c322 --- /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/mostafizur-rahman.json b/domains/mostafizur-rahman.json new file mode 100644 index 000000000..196080d64 --- /dev/null +++ b/domains/mostafizur-rahman.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gigwanoobstudios", + "email": "tplink3116@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/motortruck1221.json b/domains/motortruck1221.json new file mode 100644 index 000000000..10aace18c --- /dev/null +++ b/domains/motortruck1221.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MotorTruck1221", + "email": "tuckerj0606@icloud.com" + }, + "record": { + "CNAME": "motortruck1221.github.io" + } +} diff --git a/domains/mourad.json b/domains/mourad.json new file mode 100644 index 000000000..514362c54 --- /dev/null +++ b/domains/mourad.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "mourai", + "email": "m@mourai.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/mpacheco.json b/domains/mpacheco.json new file mode 100644 index 000000000..1af5f9931 --- /dev/null +++ b/domains/mpacheco.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MichaelPachec0", + "email": "michaelpacheco@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mpangobank.json b/domains/mpangobank.json new file mode 100644 index 000000000..6580dddf2 --- /dev/null +++ b/domains/mpangobank.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Iamunix", + "email": "abdulhaulerashid@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mpm.json b/domains/mpm.json index 92cfb78cf..701335d47 100644 --- a/domains/mpm.json +++ b/domains/mpm.json @@ -1,11 +1,11 @@ { - "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" - } + "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/mpult.json b/domains/mpult.json new file mode 100644 index 000000000..5e481e58d --- /dev/null +++ b/domains/mpult.json @@ -0,0 +1,11 @@ +{ + "description": "MPults's website", + "repo": "https://github.com/MPult/MPult.github.io", + "owner": { + "username": "MPult", + "email": "MPult@protonmail.com" + }, + "record": { + "CNAME": "MPult.github.io" + } +} diff --git a/domains/mpy.json b/domains/mpy.json index b51be78f2..0a4d98056 100644 --- a/domains/mpy.json +++ b/domains/mpy.json @@ -1,11 +1,11 @@ { - "description": "Mike Perry Y Attara's personal website", - "repo": "https://github.com/mikeattara", - "owner": { - "username": "mikeattara", - "email": "mpyebattara@gmail.com" - }, - "record": { - "CNAME": "mikeattara.github.io" - } + "description": "Mike Perry Y Attara's personal website", + "repo": "https://github.com/mikeattara", + "owner": { + "username": "mikeattara", + "email": "mpyebattara@gmail.com" + }, + "record": { + "CNAME": "mikeattara.github.io" + } } diff --git a/domains/mqhirr.json b/domains/mqhirr.json new file mode 100644 index 000000000..56b14d7eb --- /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..38a4cef29 --- /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 new file mode 100644 index 000000000..cd5d4a84d --- /dev/null +++ b/domains/mqry.json @@ -0,0 +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" + } +} diff --git a/domains/mr.gaurav.json b/domains/mr.gaurav.json new file mode 100644 index 000000000..5f8267edd --- /dev/null +++ b/domains/mr.gaurav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "dukegaurav", + "email": "mr.gauravagrawalji@gmail.com" + }, + + "record": { + "CNAME": "hotdealkart.pages.dev" + } +} diff --git a/domains/mr.json b/domains/mr.json new file mode 100644 index 000000000..6af3c2e52 --- /dev/null +++ b/domains/mr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mr-adrien", + "email": "adrienansari@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mr.noname.json b/domains/mr.noname.json new file mode 100644 index 000000000..b5f918a82 --- /dev/null +++ b/domains/mr.noname.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nonamehtml", + "email": "nonameprobots@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mr.stuffmaker.json b/domains/mr.stuffmaker.json new file mode 100644 index 000000000..f083fc786 --- /dev/null +++ b/domains/mr.stuffmaker.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrStuffmaker", + "email": "acapello6666@gmail.com" + }, + "record": { + "A": ["109.71.253.24"] + } +} diff --git a/domains/mra1k3r0.json b/domains/mra1k3r0.json new file mode 100644 index 000000000..785020460 --- /dev/null +++ b/domains/mra1k3r0.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Mra1k3r0", + "email": "jocaigas@my.cspc.edu.ph" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mrasif.json b/domains/mrasif.json index a94695c24..b797cb61e 100644 --- a/domains/mrasif.json +++ b/domains/mrasif.json @@ -1,10 +1,10 @@ { - "description": "Personal Website", - "owner": { - "username": "mrasif", - "email": "admin@mrasif.in" - }, - "record": { - "CNAME": "mrasif.github.io" - } + "description": "Personal Website", + "owner": { + "username": "mrasif", + "email": "admin@mrasif.in" + }, + "record": { + "CNAME": "mrasif.github.io" + } } diff --git a/domains/mrcl.json b/domains/mrcl.json index 57052a821..9daa382d9 100644 --- a/domains/mrcl.json +++ b/domains/mrcl.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "6lb", - "email": "6lb@github.io" - }, - "record": { - "CNAME": "6lb.github.io" - } + "owner": { + "username": "6lb", + "email": "6lb@github.io" + }, + "record": { + "CNAME": "6lb.github.io" + } } diff --git a/domains/mrcorpz.json b/domains/mrcorpz.json index 18696553f..c24ff0192 100644 --- a/domains/mrcorpz.json +++ b/domains/mrcorpz.json @@ -1,12 +1,12 @@ { - "description": "Mrcorpz's Website", - "repo": "https://github.com/mrcorpz/mrcorpz.github.io", - "owner": { - "username": "mrcorpz", - "email": "mrcorpzpro@gmail.com", - "twitter": "mrcorpz" - }, - "record": { - "CNAME": "mrcorpz.github.io" - } + "description": "Mrcorpz's Website", + "repo": "https://github.com/mrcorpz/mrcorpz.github.io", + "owner": { + "username": "mrcorpz", + "email": "mrcorpzpro@gmail.com", + "twitter": "mrcorpz" + }, + "record": { + "CNAME": "mrcorpz.github.io" + } } diff --git a/domains/mrcrbrth.json b/domains/mrcrbrth.json new file mode 100644 index 000000000..be22d1993 --- /dev/null +++ b/domains/mrcrbrth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "devsdocs", + "email": "id45.go@gmail.com" + }, + "record": { + "A": ["141.144.205.66"] + } +} diff --git a/domains/mrdemonwolf.json b/domains/mrdemonwolf.json deleted file mode 100644 index d62bb87a6..000000000 --- a/domains/mrdemonwolf.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "'nathanhenniges' personal developer website", - "owner": { - "username": "nathanhenniges", - "email": "demonwolf@demonwolfdev.com" - }, - "record": { - "URL": "https://www.mrdemonwolf.me" - } -} diff --git a/domains/mrepol742.json b/domains/mrepol742.json new file mode 100644 index 000000000..0af11f84d --- /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/mricecream.json b/domains/mricecream.json index 1ff6049ac..3fc52d492 100644 --- a/domains/mricecream.json +++ b/domains/mricecream.json @@ -1,12 +1,12 @@ { - "description": "Mr. Icecream's Website", - "repo": "https://github.com/mr1cecream/mr1cecream.github.io", - "owner": { - "username": "mr1cecream", - "email": "guy@ochakov.com", - "twitter": "@Mr__Icecream" - }, - "record": { - "CNAME": "mr1cecream.github.io" - } + "description": "Mr. Icecream's Website", + "repo": "https://github.com/mr1cecream/mr1cecream.github.io", + "owner": { + "username": "mr1cecream", + "email": "guy@ochakov.com", + "twitter": "Mr__Icecream" + }, + "record": { + "CNAME": "mr1cecream.github.io" + } } diff --git a/domains/mrinjamul.json b/domains/mrinjamul.json index d9dc32e12..7a935a65b 100644 --- a/domains/mrinjamul.json +++ b/domains/mrinjamul.json @@ -1,10 +1,10 @@ { - "description": "Personal Website", - "owner": { - "username": "mrinjamul", - "email": "injamulmohammadmollah@gmail.com" - }, - "record": { - "CNAME": "mrinjamul.github.io" - } + "description": "Personal Website", + "owner": { + "username": "mrinjamul", + "email": "injamulmohammadmollah@gmail.com" + }, + "record": { + "CNAME": "mrinjamul.github.io" + } } diff --git a/domains/mrinmoy.json b/domains/mrinmoy.json index 6b1c84fb5..4efe17db5 100644 --- a/domains/mrinmoy.json +++ b/domains/mrinmoy.json @@ -1,16 +1,13 @@ - - { - "description": "Domain for my portofolio website", - "owner": { +{ + "description": "Domain for my portofolio website", + "owner": { "username": "MrinmoyHaloi", "email": "", "twitter": "_mrinmoy_haloi_", "discord": "Mrinmoy#5878" - - }, + }, - "record": { + "record": { "CNAME": "mrinmoyhaloi.github.io" } - } - +} diff --git a/domains/mrj.json b/domains/mrj.json index 2bcdab054..21d629caf 100644 --- a/domains/mrj.json +++ b/domains/mrj.json @@ -1,9 +1,11 @@ { - "owner": { - "username": "MRJ Badshah", - "email": "illegalhacker2.0@gmail.com" - }, - "record": { - "CNAME": "glitch.edgeapp.net" - } + "owner": { + "username": "MRJ-Badshah", + "email": "illegalhacker2.0@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } } diff --git a/domains/mrjbadshah.json b/domains/mrjbadshah.json new file mode 100644 index 000000000..21d629caf --- /dev/null +++ b/domains/mrjbadshah.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MRJ-Badshah", + "email": "illegalhacker2.0@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/mrjunkyz.json b/domains/mrjunkyz.json new file mode 100644 index 000000000..324dfe7e2 --- /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/mrkos.json b/domains/mrkos.json index 201ee6611..789ccd231 100644 --- a/domains/mrkos.json +++ b/domains/mrkos.json @@ -1,11 +1,11 @@ { - "description": "Personal Page", - "repo": "https://github.com/mrkOS1210/mrkos1210.github.io", - "owner": { - "username": "mrkOS1210", - "email": "72011329+mrkOS1210@users.noreply.github.com" - }, - "record": { - "CNAME": "mrkOS1210.github.io" - } + "description": "Personal Page", + "repo": "https://github.com/mrkOS1210/mrkos1210.github.io", + "owner": { + "username": "mrkOS1210", + "email": "72011329+mrkOS1210@users.noreply.github.com" + }, + "record": { + "CNAME": "mrkOS1210.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..a61ad73a2 --- /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/mrrob0t.json b/domains/mrrob0t.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/mrrob0t.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mrrobot.json b/domains/mrrobot.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/mrrobot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mrshoe.json b/domains/mrshoe.json index 6562e9777..f7d3aa3ee 100644 --- a/domains/mrshoe.json +++ b/domains/mrshoe.json @@ -1,11 +1,11 @@ { - "description": "MrShoe Development website", - "repo": "https://github.com/MrShoe-Development/Website", - "owner": { - "username": "mrshoeshoe66", - "email": "mrshoeshoe66@gmail.com" - }, - "record": { - "URL": "https://mrshoe.dev" - } + "description": "MrShoe Development website", + "repo": "https://github.com/MrShoe-Development/Website", + "owner": { + "username": "mrshoeshoe66", + "email": "mrshoeshoe66@gmail.com" + }, + "record": { + "URL": "https://mrshoe.dev" + } } diff --git a/domains/mrtemp70.json b/domains/mrtemp70.json new file mode 100644 index 000000000..7328921c2 --- /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/mrthundergod.json b/domains/mrthundergod.json index b6c9f2be6..41cec5022 100644 --- a/domains/mrthundergod.json +++ b/domains/mrthundergod.json @@ -1,11 +1,11 @@ { - "description": "The ThunderDome", - "repo": "https://github.com/mrthundergod/", - "owner": { - "username": "mrthundergod", - "email": "mrthundergod@gmail.com" - }, - "record": { - "CNAME": "mrthundergod.github.io" - } + "description": "The ThunderDome", + "repo": "https://github.com/mrthundergod", + "owner": { + "username": "mrthundergod", + "email": "mrthundergod@gmail.com" + }, + "record": { + "CNAME": "mrthundergod.github.io" + } } diff --git a/domains/mrtomxxx.json b/domains/mrtomxxx.json new file mode 100644 index 000000000..609594fb4 --- /dev/null +++ b/domains/mrtomxxx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrT0mXxX", + "email": "mrtomxxx5@gmail.com" + }, + "record": { + "URL": "https://main-api.cat0tom2.repl.co" + } +} diff --git a/domains/mrugeshtank.json b/domains/mrugeshtank.json new file mode 100644 index 000000000..07f187036 --- /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/mrweez.json b/domains/mrweez.json new file mode 100644 index 000000000..9671d7f2f --- /dev/null +++ b/domains/mrweez.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MrWeez", + "email": "arsenyplis2018@gmail.com" + }, + "record": { + "CNAME": "mrweez.depcloud.xyz" + } +} diff --git a/domains/mrwhite.json b/domains/mrwhite.json new file mode 100644 index 000000000..77586ef0e --- /dev/null +++ b/domains/mrwhite.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "neelshah55", + "email": "unknowneze9@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/mryusuf.json b/domains/mryusuf.json index 7a44577bf..cc3397c70 100644 --- a/domains/mryusuf.json +++ b/domains/mryusuf.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "yufuss", "email": "yusufgocer40@hotmail.com" - }, + }, - "record": { + "record": { "CNAME": "glitch.edgeapp.net" - } } - \ No newline at end of file +} diff --git a/domains/msg.json b/domains/msg.json index 604c21c2f..9dfbc02e9 100644 --- a/domains/msg.json +++ b/domains/msg.json @@ -1,11 +1,11 @@ { - "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" - } + "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/mst.json b/domains/mst.json new file mode 100644 index 000000000..7034e0cda --- /dev/null +++ b/domains/mst.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MystieHum", + "email": "z232566755z@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..a564ce588 --- /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/mubashiryasin.json b/domains/mubashiryasin.json new file mode 100644 index 000000000..aa98be810 --- /dev/null +++ b/domains/mubashiryasin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Mfused07", + "email": "fiverronlyokay@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/muchenski.json b/domains/muchenski.json index d4be75aed..9906b40aa 100644 --- a/domains/muchenski.json +++ b/domains/muchenski.json @@ -1,11 +1,11 @@ { - "description": "Muchenski's personal developer website", - "repo": "https://github.com/Muchenski/muchenski.github.io", - "owner": { - "username": "Muchenski", - "email": "muchenski.dev@gmail.com" - }, - "record": { - "CNAME": "muchenski.github.io" - } + "description": "Muchenski's personal developer website", + "repo": "https://github.com/Muchenski/muchenski.github.io", + "owner": { + "username": "Muchenski", + "email": "muchenski.dev@gmail.com" + }, + "record": { + "CNAME": "muchenski.github.io" + } } diff --git a/domains/mudee.json b/domains/mudee.json new file mode 100644 index 000000000..f29492c4d --- /dev/null +++ b/domains/mudee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "IMudee", + "email": "NotMudee@proton.me" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/muff.json b/domains/muff.json index c48a6a3a6..8df5519e1 100644 --- a/domains/muff.json +++ b/domains/muff.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "lifeless-muffin", "email": "mansoorroeen71@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "lifeless-muffin.github.io" - } } - \ No newline at end of file +} diff --git a/domains/muhammadbasitobaid.json b/domains/muhammadbasitobaid.json new file mode 100644 index 000000000..df274c031 --- /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 94b5ccf9a..37310e42f 100644 --- a/domains/muheko.json +++ b/domains/muheko.json @@ -4,7 +4,7 @@ "owner": { "username": "MuhekoNikolas", "email": "13nikolusmuheko@gmail.com", - "twitter": "@MuhekoNikolas" + "twitter": "MuhekoNikolas" }, "record": { "CNAME": "muhekonikolas.github.io" diff --git a/domains/mukesh-tadpad.json b/domains/mukesh-tadpad.json new file mode 100644 index 000000000..0da2d1223 --- /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/mukeshkumarcharak.json b/domains/mukeshkumarcharak.json new file mode 100644 index 000000000..773b89502 --- /dev/null +++ b/domains/mukeshkumarcharak.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hakxcore", + "email": "kumarm_1@rknec.edu" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/muntasir.json b/domains/muntasir.json new file mode 100644 index 000000000..1bcdfea17 --- /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/murder.json b/domains/murder.json new file mode 100644 index 000000000..042b7525a --- /dev/null +++ b/domains/murder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MurderWolf", + "email": "leojgarcia1@icloud.com" + }, + "record": { + "URL": "https://murderdev.xyz" + } +} diff --git a/domains/murodovazizmurod.json b/domains/murodovazizmurod.json index 012116536..3d5d6064a 100644 --- a/domains/murodovazizmurod.json +++ b/domains/murodovazizmurod.json @@ -1,11 +1,11 @@ { - "description": "Murodov Azizmurod's website", - "repo": "https://github.com/murodovazizmurod/murodovazizmurod.github.io", - "owner": { - "username": "murodovazizmurod", - "email": "murodovazizmurod@gmail.com" - }, - "record": { - "CNAME": "murodovazizmurod.github.io" - } + "description": "Murodov Azizmurod's website", + "repo": "https://github.com/murodovazizmurod/murodovazizmurod.github.io", + "owner": { + "username": "murodovazizmurod", + "email": "murodovazizmurod@gmail.com" + }, + "record": { + "CNAME": "murodovazizmurod.github.io" + } } diff --git a/domains/music-old.mxnticek.json b/domains/music-old.mxnticek.json deleted file mode 100644 index 1cea052e0..000000000 --- a/domains/music-old.mxnticek.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Domain for my old music bot", - "repo": "", - "owner": { - "username": "VlastikYoutubeKo", - "email": "plainrock@seznam.cz" - }, - "record": { - "A": ["129.151.254.58"] - } -} diff --git a/domains/music.json b/domains/music.json index 2dcd3ba8d..b22fe46a4 100644 --- a/domains/music.json +++ b/domains/music.json @@ -1,11 +1,11 @@ { - "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" - } + "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 bf837795e..000000000 --- a/domains/music.mxnticek.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Domain for my music bot", - "repo": "", - "owner": { - "username": "VlastikYoutubeKo", - "email": "plainrock@seznam.cz" - }, - "record": { - "A": ["129.151.254.58"] - } -} diff --git a/domains/musikid.json b/domains/musikid.json new file mode 100644 index 000000000..4a2561759 --- /dev/null +++ b/domains/musikid.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Musikid-Official", + "email": "musikid@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mustafa.json b/domains/mustafa.json index b10e768be..f827c1377 100644 --- a/domains/mustafa.json +++ b/domains/mustafa.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Cuurle", - "email": "cuurleee@gmail.com" - }, - "record": { - "CNAME": "glitch.edgeapp.net" - } + "owner": { + "username": "Cuurle", + "email": "cuurleee@gmail.com" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } } diff --git a/domains/mutsis.json b/domains/mutsis.json new file mode 100644 index 000000000..3e93b4d1b --- /dev/null +++ b/domains/mutsis.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "turvenuija1", + "email": "akulehtola123@gmail.com" + }, + "record": { + "CNAME": "turvenuija1.github.io" + } +} diff --git a/domains/muzammil.json b/domains/muzammil.json index 8bf5dcfec..57a87927d 100644 --- a/domains/muzammil.json +++ b/domains/muzammil.json @@ -1,10 +1,10 @@ { - "description": "Muzammil's Portfolio Website", - "owner": { - "username": "taqnar", - "email": "muzammilthottathil.official@gmail.com" - }, - "record": { - "CNAME": "taqnar.github.io" - } + "description": "Muzammil's Portfolio Website", + "owner": { + "username": "taqnar", + "email": "muzammilthottathil.official@gmail.com" + }, + "record": { + "CNAME": "taqnar.github.io" + } } diff --git a/domains/mxnticek.json b/domains/mxnticek.json index d1748948c..a62b4e5f1 100644 --- a/domains/mxnticek.json +++ b/domains/mxnticek.json @@ -8,4 +8,4 @@ "record": { "CNAME": "vlastikyoutubeko.github.io" } -} +} diff --git a/domains/mxnuchim.json b/domains/mxnuchim.json index e5daa0816..b430da48b 100644 --- a/domains/mxnuchim.json +++ b/domains/mxnuchim.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "mxnuchim", "email": "manuchimoliver779@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://manuchimoliver.vercel.app" - } } - +} 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..b83278edd --- /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.trung.json b/domains/mystic.trung.json new file mode 100644 index 000000000..c372c8070 --- /dev/null +++ b/domains/mystic.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/mystie.json b/domains/mystie.json new file mode 100644 index 000000000..347220e76 --- /dev/null +++ b/domains/mystie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MystieHum", + "email": "z232566755z@gmail.com" + }, + "record": { + "A": ["65.19.141.67"] + } +} diff --git a/domains/mytac.json b/domains/mytac.json new file mode 100644 index 000000000..984a17ebb --- /dev/null +++ b/domains/mytac.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mytac", + "email": "my_tac@126.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/mythsman.json b/domains/mythsman.json index 6ba26aaef..62354fbfd 100644 --- a/domains/mythsman.json +++ b/domains/mythsman.json @@ -1,11 +1,11 @@ { - "description": "Mythsman's personal site", - "repo": "https://github.com/mythsman", - "owner": { - "username": "mythsman", - "email": "mythsman@foxmail.com" - }, - "record": { - "URL": "https://blog.mythsman.com" - } + "description": "Mythsman's personal site", + "repo": "https://github.com/mythsman", + "owner": { + "username": "mythsman", + "email": "mythsman@foxmail.com" + }, + "record": { + "URL": "https://blog.mythsman.com" + } } diff --git a/domains/myvps.json b/domains/myvps.json new file mode 100644 index 000000000..99e5e5d91 --- /dev/null +++ b/domains/myvps.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "irawancandra6699", + "email": "irawancandra6699@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/myx.json b/domains/myx.json deleted file mode 100644 index c068af230..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..bb24694db --- /dev/null +++ b/domains/myxi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "eeriemyxi", + "email": "myxi@duck.com" + }, + "record": { + "URL": "https://eeriemyxi.blogspot.com" + } +} diff --git a/domains/mz.json b/domains/mz.json new file mode 100644 index 000000000..f4156ba17 --- /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/mzakyr.json b/domains/mzakyr.json new file mode 100644 index 000000000..4dc3b7310 --- /dev/null +++ b/domains/mzakyr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "muhammadzaki693", + "email": "rzaki9353@gmail.com" + }, + "record": { + "CNAME": "my-personal-web-production.up.railway.app" + } +} diff --git a/domains/n1ghtmare.json b/domains/n1ghtmare.json new file mode 100644 index 000000000..4dcec9c31 --- /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/n3rcy.json b/domains/n3rcy.json new file mode 100644 index 000000000..378623cfb --- /dev/null +++ b/domains/n3rcy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "N3rcy", + "email": "nercysvoboda@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/n4n5.json b/domains/n4n5.json new file mode 100644 index 000000000..75b8dbbe7 --- /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/naby.json b/domains/naby.json new file mode 100644 index 000000000..bab5e09ce --- /dev/null +++ b/domains/naby.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Naby29", + "email": "dani.constantinescu.ro@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nadeem.json b/domains/nadeem.json new file mode 100644 index 000000000..26302f0ad --- /dev/null +++ b/domains/nadeem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nadeem-05", + "email": "m.nadeem83005@gmail.com" + }, + "record": { + "CNAME": "nadeem-05.github.io" + } +} diff --git a/domains/nagarajgond.json b/domains/nagarajgond.json index a0da3fddb..489db2848 100644 --- a/domains/nagarajgond.json +++ b/domains/nagarajgond.json @@ -1,11 +1,11 @@ { - "description": "Nagaraj's Dev website", - "repo": "https://github.com/nagarajgond/nagarajgond.github.io", - "owner": { - "username": "nagarajgond", - "email": "nagarajgond@live.com" - }, - "record": { - "CNAME": "nagarajgond.github.io" - } + "description": "Nagaraj's Dev website", + "repo": "https://github.com/nagarajgond/nagarajgond.github.io", + "owner": { + "username": "nagarajgond", + "email": "nagarajgond@live.com" + }, + "record": { + "CNAME": "nagarajgond.github.io" + } } diff --git a/domains/nahid.json b/domains/nahid.json new file mode 100644 index 000000000..8f60f83c0 --- /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/naki.json b/domains/naki.json new file mode 100644 index 000000000..2cb8062e3 --- /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/nalin.json b/domains/nalin.json index dc3434c46..28d66d7bc 100644 --- a/domains/nalin.json +++ b/domains/nalin.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Nalin-2005", - "email": "nalinstudios@gmail.com", - "instagram": "nalin_2005" - }, - "record": { - "CNAME": "nalin-2005.github.io" - } + "owner": { + "username": "Nalin-2005", + "email": "nalinstudios@gmail.com", + "instagram": "nalin_2005" + }, + "record": { + "CNAME": "nalin-2005.github.io" + } } diff --git a/domains/nam.json b/domains/nam.json new file mode 100644 index 000000000..9762c78bd --- /dev/null +++ b/domains/nam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chadcat7", + "email": "namishpande2007@gmail.com" + }, + "record": { + "CNAME": "chadcat7.github.io" + } +} diff --git a/domains/naman-machchhar.json b/domains/naman-machchhar.json new file mode 100644 index 000000000..a18eb461c --- /dev/null +++ b/domains/naman-machchhar.json @@ -0,0 +1,11 @@ +{ + "description": "Naman Profile.", + "repo": "https://github.com/naman-machchhar/naman-machchhar.github.io", + "owner": { + "username": "naman-machchhar", + "email": "" + }, + "record": { + "CNAME": "naman-machchhar.github.io" + } +} diff --git a/domains/naman.json b/domains/naman.json index d2f85e209..6fdb7fdf4 100644 --- a/domains/naman.json +++ b/domains/naman.json @@ -1,11 +1,11 @@ { - "description": "Naman - Portfolio", - "repo": "https://github.com/Naman-Gururani/Naman-Gururani.github.io", - "owner": { - "username": "Naman-Gururani", - "email": "gururaninaman@gmail.com" - }, - "record": { - "CNAME": "Naman-Gururani.github.io" - } + "description": "Naman - Portfolio", + "repo": "https://github.com/Naman-Gururani/Naman-Gururani.github.io", + "owner": { + "username": "Naman-Gururani", + "email": "gururaninaman@gmail.com" + }, + "record": { + "CNAME": "Naman-Gururani.github.io" + } } diff --git a/domains/namesmt.json b/domains/namesmt.json new file mode 100644 index 000000000..a9db06b1a --- /dev/null +++ b/domains/namesmt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NamesMT", + "email": "dangquoctrung123@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nan.json b/domains/nan.json index 7a7c1a88e..e19bc3c48 100644 --- a/domains/nan.json +++ b/domains/nan.json @@ -1,12 +1,12 @@ { - "description": "It's Nan!", - "repo": "https://github.com/BegalNenen/begalnenen.github.io", - "owner": { - "username": "BegalNenen", - "email": "harpesmun69@gmail.com", - "facebook": "https://facebook.com/nan.phtml" - }, - "record": { - "CNAME": "begalnenen.github.io" - } + "description": "It's Nan!", + "repo": "https://github.com/BegalNenen/begalnenen.github.io", + "owner": { + "username": "BegalNenen", + "email": "harpesmun69@gmail.com", + "facebook": "https://facebook.com/nan.phtml" + }, + "record": { + "CNAME": "begalnenen.github.io" + } } diff --git a/domains/nand.json b/domains/nand.json index d80d1bc59..ba52b1895 100644 --- a/domains/nand.json +++ b/domains/nand.json @@ -1,10 +1,10 @@ { - "description": "Nand's web", - "owner": { - "username": "nandkk05", - "email": "nandkk07@gmail.com" - }, - "record": { - "CNAME": "nandkk05.github.io" - } + "description": "Nand's web", + "owner": { + "username": "nandkk05", + "email": "nandkk07@gmail.com" + }, + "record": { + "CNAME": "nandkk05.github.io" + } } diff --git a/domains/nandan.json b/domains/nandan.json new file mode 100644 index 000000000..612b6d681 --- /dev/null +++ b/domains/nandan.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Nandan-N", + "email": "authornandan1@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/nandhu.json b/domains/nandhu.json new file mode 100644 index 000000000..c47442045 --- /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/naokoshoto.json b/domains/naokoshoto.json new file mode 100644 index 000000000..ed0e9ce06 --- /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/narayana.json b/domains/narayana.json new file mode 100644 index 000000000..e2bacc769 --- /dev/null +++ b/domains/narayana.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nvnarayna", + "email": "nemaninarayna@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} 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/narender.json b/domains/narender.json index 4d82ac070..2ed73eb05 100644 --- a/domains/narender.json +++ b/domains/narender.json @@ -1,11 +1,11 @@ { - "description": "Narender's Personal Website and Blog", - "repo": "https://github.com/nkkize/nkkize.github.io", - "owner": { - "username": "nkkize", - "email": "nkk.snat@gmail.com" - }, - "record": { - "CNAME": "nkkize.github.io" - } + "description": "Narender's Personal Website and Blog", + "repo": "https://github.com/nkkize/nkkize.github.io", + "owner": { + "username": "nkkize", + "email": "nkk.snat@gmail.com" + }, + "record": { + "CNAME": "nkkize.github.io" + } } diff --git a/domains/nassro.json b/domains/nassro.json new file mode 100644 index 000000000..2fdfb1833 --- /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 55aa10d59..1889d6813 100644 --- a/domains/nat.json +++ b/domains/nat.json @@ -1,10 +1,10 @@ { - "owner":{ - "username": "Natasquare", - "discord": "Natasquare#8297", - "email": "natasquarelol@gmail.com" - }, - "record": { - "CNAME": "d42474b9-07e0-4f87-94ba-d47a4477dde5.id.repl.co" - } + "owner": { + "username": "Natasquare", + "discord": "696698254770831421", + "email": "natasquarelol@gmail.com" + }, + "record": { + "CNAME": "natasquare.github.io" + } } diff --git a/domains/natalievu.json b/domains/natalievu.json index e29879888..1fd3f1c03 100644 --- a/domains/natalievu.json +++ b/domains/natalievu.json @@ -1,11 +1,11 @@ { - "description": "Portfolio for Natalie Vu", - "repo": "https://github.com/tnvu7/tnvu7.github.io", - "owner": { - "username": "tnvu7", - "email": "vuthunga2001@gmail.com" - }, - "record": { - "CNAME": "tnvu7.github.io" - } + "description": "Portfolio for Natalie Vu", + "repo": "https://github.com/tnvu7/tnvu7.github.io", + "owner": { + "username": "tnvu7", + "email": "vuthunga2001@gmail.com" + }, + "record": { + "CNAME": "tnvu7.github.io" + } } diff --git a/domains/nathan.json b/domains/nathan.json index ac48c642e..7fed14fdb 100644 --- a/domains/nathan.json +++ b/domains/nathan.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/MagedNuggets/MagedNuggets.github.io", - "owner": { - "username": "MagedNuggets", - "email": "mastertofu12345@gmail.com" - }, - "record": { - "CNAME": "MagedNuggets.github.io" - } + "repo": "https://github.com/MagedNuggets/MagedNuggets.github.io", + "owner": { + "username": "MagedNuggets", + "email": "mastertofu12345@gmail.com" + }, + "record": { + "CNAME": "MagedNuggets.github.io" + } } diff --git a/domains/natya.json b/domains/natya.json index 366609af4..4ff645d01 100644 --- a/domains/natya.json +++ b/domains/natya.json @@ -9,4 +9,4 @@ "record": { "CNAME": "studiousgamer.github.io" } -} +} diff --git a/domains/nauriculus.json b/domains/nauriculus.json new file mode 100644 index 000000000..63a4c29d0 --- /dev/null +++ b/domains/nauriculus.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "nauriculus", + "email": "nauriculus@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/naveen.json b/domains/naveen.json index 341207c04..aa1bd9797 100644 --- a/domains/naveen.json +++ b/domains/naveen.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "naveen8384", "email": "naveen.nani321@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://naveenkumar.org" - } } - +} diff --git a/domains/naveenlam.json b/domains/naveenlam.json new file mode 100644 index 000000000..b7135d653 --- /dev/null +++ b/domains/naveenlam.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LamNaveen", + "email": "notlamger@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/naveenxd.json b/domains/naveenxd.json index d0130b697..00c05a2d4 100644 --- a/domains/naveenxd.json +++ b/domains/naveenxd.json @@ -1,11 +1,11 @@ { - "description": "naveenxd.is-a.dev", - "repo": "https://github.com/Naveen-X", - "owner": { - "username": "Naveen-X", - "email": "naveen@ourclg.tech" - }, - "record": { - "CNAME": "Naveen-X.github.io" - } + "description": "naveenxd.is-a.dev", + "repo": "https://github.com/Naveen-X", + "owner": { + "username": "Naveen-X", + "email": "naveen@ourclg.tech" + }, + "record": { + "CNAME": "Naveen-X.github.io" + } } diff --git a/domains/nayam.json b/domains/nayam.json new file mode 100644 index 000000000..c6de65cb1 --- /dev/null +++ b/domains/nayam.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NayamAmarshe", + "email": "nayam.emikx@aleeas.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/nayan-gorasiya.json b/domains/nayan-gorasiya.json new file mode 100644 index 000000000..77d3451a0 --- /dev/null +++ b/domains/nayan-gorasiya.json @@ -0,0 +1,11 @@ +{ + "description": "Nayan Gorasiya.", + "repo": "https://github.com/nayan-gorasiya/nayan-gorasiya.github.io", + "owner": { + "username": "nayan-gorasiya", + "email": "nayan-gorasiya@acquaintsoft.com" + }, + "record": { + "CNAME": "nayan-gorasiya.github.io" + } +} diff --git a/domains/nayan.json b/domains/nayan.json index ab18853e8..82f0ea522 100644 --- a/domains/nayan.json +++ b/domains/nayan.json @@ -1,11 +1,11 @@ { - "description": "A personal website, for Nayan Patel.", - "repo": "https://github.com/pateln123", - "owner": { - "username": "pateln123", - "email": "hello@nayanpatel.net" - }, - "record": { - "URL": "https://nayanpatel.net" - } + "description": "A personal website, for Nayan Patel.", + "repo": "https://github.com/pateln123", + "owner": { + "username": "pateln123", + "email": "hello@nayanpatel.net" + }, + "record": { + "URL": "https://nayanpatel.net" + } } diff --git a/domains/nc.json b/domains/nc.json new file mode 100644 index 000000000..060a53891 --- /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/nebula.json b/domains/nebula.json index 3cf4c2b94..152d9fca5 100644 --- a/domains/nebula.json +++ b/domains/nebula.json @@ -1,11 +1,11 @@ { - "description": "My personal website", - "repo": "https://github.com/itsnebulalol/nebulayt.xyz", - "owner": { - "username": "itsnebulalol", - "email": "computerman1229@gmail.com" - }, - "record": { - "CNAME": "itsnebulalol.github.io" - } + "description": "My personal website", + "repo": "https://github.com/itsnebulalol/nebulayt.xyz", + "owner": { + "username": "itsnebulalol", + "email": "computerman1229@gmail.com" + }, + "record": { + "CNAME": "itsnebulalol.github.io" + } } diff --git a/domains/neelsani.json b/domains/neelsani.json new file mode 100644 index 000000000..78fa6bac7 --- /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 new file mode 100644 index 000000000..0377dc08a --- /dev/null +++ b/domains/neeraj-2401.json @@ -0,0 +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" + } +} diff --git a/domains/neeraz.json b/domains/neeraz.json new file mode 100644 index 000000000..7c6fdc9fc --- /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..003fa1bd2 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/negodev.json b/domains/negodev.json new file mode 100644 index 000000000..cc7e2e33d --- /dev/null +++ b/domains/negodev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kardespro", + "email": "kardesdcys@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nekaoumike.json b/domains/nekaoumike.json new file mode 100644 index 000000000..fd72b9ef4 --- /dev/null +++ b/domains/nekaoumike.json @@ -0,0 +1,9 @@ +{ + "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..a79a51670 --- /dev/null +++ b/domains/neki.json @@ -0,0 +1,17 @@ +{ + "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": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/neko7sora.json b/domains/neko7sora.json index 0e7e79001..d5d6f9a69 100644 --- a/domains/neko7sora.json +++ b/domains/neko7sora.json @@ -1,12 +1,12 @@ { - "description": "Neko7sora personal website", - "owner": { - "username": "Neko7sora", - "email": "", - "twitter": "Neko7sora", - "keybase": "neko7sora" - }, - "record": { - "URL": "https://neko7sora.github.io" - } + "description": "Neko7sora personal website", + "owner": { + "username": "Neko7sora", + "email": "", + "twitter": "Neko7sora", + "keybase": "neko7sora" + }, + "record": { + "URL": "https://neko7sora.github.io" + } } diff --git a/domains/nekoibot.json b/domains/nekoibot.json new file mode 100644 index 000000000..924d2fdd3 --- /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/nekomiyasorato.json b/domains/nekomiyasorato.json index c330316b9..f2b079322 100644 --- a/domains/nekomiyasorato.json +++ b/domains/nekomiyasorato.json @@ -1,12 +1,12 @@ { - "description": "personal website", - "owner": { - "username": "Neko7sora", - "email": "", - "twitter": "Neko7sora", - "keybase": "neko7sora" - }, - "record": { - "URL": "https://neko7sora.github.io" - } + "description": "personal website", + "owner": { + "username": "Neko7sora", + "email": "", + "twitter": "Neko7sora", + "keybase": "neko7sora" + }, + "record": { + "URL": "https://neko7sora.github.io" + } } diff --git a/domains/nelson.json b/domains/nelson.json new file mode 100644 index 000000000..c08ae220d --- /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..604ecab09 --- /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/neomc.xyz.json b/domains/neomc.xyz.json new file mode 100644 index 000000000..1860e7c56 --- /dev/null +++ b/domains/neomc.xyz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ssoonu", + "email": "saiifksa509@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/neon.json b/domains/neon.json index 63015d376..36721ad70 100644 --- a/domains/neon.json +++ b/domains/neon.json @@ -1,12 +1,15 @@ -{ - "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/nepy.json b/domains/nepy.json new file mode 100644 index 000000000..d706a36d6 --- /dev/null +++ b/domains/nepy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "StrwbryMilk", + "email": "nepznepy@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/neranjana.json b/domains/neranjana.json index 55a2b16dd..f8a4943ce 100644 --- a/domains/neranjana.json +++ b/domains/neranjana.json @@ -1,11 +1,11 @@ { - "description": "Neranjana's is-a.dev subdomain", - "repo": "https://github.com/NandiyaLive/is-a-dev", - "owner": { - "username": "NandiyaLive", - "email": "neranjanaprsd@gmail.com" - }, - "record": { - "URL": "https://neranjana.tk" - } + "description": "Neranjana's is-a.dev subdomain", + "repo": "https://github.com/NandiyaLive/is-a-dev", + "owner": { + "username": "NandiyaLive", + "email": "neranjanaprsd@gmail.com" + }, + "record": { + "URL": "https://neranjana.tk" + } } diff --git a/domains/nerd.json b/domains/nerd.json deleted file mode 100644 index a82bb1558..000000000 --- a/domains/nerd.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "n3rd3x3", - "email": "me@n3rd3x3.xyz" - }, - "record": { - "URL": "https://n3rd3x3.xyz" - } -} diff --git a/domains/neria.json b/domains/neria.json new file mode 100644 index 000000000..3883683a5 --- /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/nes.json b/domains/nes.json index 69a88aef9..0b89c988f 100644 --- a/domains/nes.json +++ b/domains/nes.json @@ -1,12 +1,12 @@ { - "description": "Link for personal website hosted on github pages", - "repo": "https://github.com/undefinedDarkness/undefinedDarkness.github.io/", - "owner": { - "username": "undefinedDarkness", - "email": "", - "discord": "Dark NES#4901" - }, - "record": { - "CNAME": "undefineddarkness.github.io" - } + "description": "Link for personal website hosted on github pages", + "repo": "https://github.com/undefinedDarkness/undefinedDarkness.github.io", + "owner": { + "username": "undefinedDarkness", + "email": "", + "discord": "Dark NES#4901" + }, + "record": { + "CNAME": "undefineddarkness.github.io" + } } diff --git a/domains/neslinesli93.json b/domains/neslinesli93.json index 3aa76243d..75e9cb215 100644 --- a/domains/neslinesli93.json +++ b/domains/neslinesli93.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "neslinesli93", - "email": "p.tommy93@gmail.com" - }, - "record": { - "CNAME": "tommasopifferi.com" - } + "owner": { + "username": "neslinesli93", + "email": "p.tommy93@gmail.com" + }, + "record": { + "CNAME": "tommasopifferi.com" + } } diff --git a/domains/netf.json b/domains/netf.json deleted file mode 100644 index 6bbd9ea03..000000000 --- a/domains/netf.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "netflexs", - "email": "null" - }, - "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..2c0ffc0da --- /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/nettles.json b/domains/nettles.json index aff4a0239..87a8f3bb8 100644 --- a/domains/nettles.json +++ b/domains/nettles.json @@ -1,12 +1,12 @@ { - "description": "Add some description", - "repo": "https://github.com/nettlees/nettleee.github.io", - "owner": { - "username": "nettlees", - "email": "nettles.dev@gmail.com", - "twitter": "rickroll" - }, - "record": { - "CNAME": "nettlees.github.io" - } + "description": "Add some description", + "repo": "https://github.com/nettlees/nettleee.github.io", + "owner": { + "username": "nettlees", + "email": "nettles.dev@gmail.com", + "twitter": "rickroll" + }, + "record": { + "CNAME": "nettlees.github.io" + } } diff --git a/domains/neuron.json b/domains/neuron.json new file mode 100644 index 000000000..05a37b2c4 --- /dev/null +++ b/domains/neuron.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "wooga123", + "email": "torinnn28@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/neuronbot.json b/domains/neuronbot.json new file mode 100644 index 000000000..c1a6a9233 --- /dev/null +++ b/domains/neuronbot.json @@ -0,0 +1,10 @@ +{ + "description": "This domain I would like to register is for one of my projects of a discord bot which is built by a sub-package of djs.", + "owner": { + "username": "Bro121233", + "email": "arthubcontact4@gmail.com" + }, + "record": { + "CNAME": "60a38416-3e20-4265-8356-6c8a8ad47e7f.id.repl.co" + } +} diff --git a/domains/neville.json b/domains/neville.json new file mode 100644 index 000000000..4bfc1a6cd --- /dev/null +++ b/domains/neville.json @@ -0,0 +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" + } +} diff --git a/domains/new.sx9.json b/domains/new.sx9.json new file mode 100644 index 000000000..f7f0e6184 --- /dev/null +++ b/domains/new.sx9.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SX-9", + "email": "hello@mail.sx9.is-a.dev" + }, + "record": { + "CNAME": "sx-9.github.io" + } +} diff --git a/domains/newkernel.json b/domains/newkernel.json new file mode 100644 index 000000000..5a81d2fe9 --- /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/nextcloud.vi0leta.json b/domains/nextcloud.vi0leta.json new file mode 100644 index 000000000..784e44261 --- /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/nexus.json b/domains/nexus.json index 7808ec6e6..6d2bd955b 100644 --- a/domains/nexus.json +++ b/domains/nexus.json @@ -1,11 +1,11 @@ { - "description": "Nexus.is-a.dev", - "repo": "https://github.com/Nexzon/nexzon.github.io", - "owner": { - "username": "Nexus", - "email": "uvraysxc@gmail.com" - }, - "record": { - "CNAME": "Nexzon.github.io" - } + "description": "Nexus.is-a.dev", + "repo": "https://github.com/Nexzon/nexzon.github.io", + "owner": { + "username": "Nexus", + "email": "uvraysxc@gmail.com" + }, + "record": { + "CNAME": "Nexzon.github.io" + } } diff --git a/domains/nfc.json b/domains/nfc.json new file mode 100644 index 000000000..10015bcbe --- /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/nguyenkhanhhoa.json b/domains/nguyenkhanhhoa.json new file mode 100644 index 000000000..6eea67047 --- /dev/null +++ b/domains/nguyenkhanhhoa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nguyenkhanhhoa", + "email": "coolie.itman@gmail.com" + }, + "record": { + "A": ["34.168.72.137"] + } +} diff --git a/domains/nhat.json b/domains/nhat.json index 46907d6f5..8710d5fdc 100644 --- a/domains/nhat.json +++ b/domains/nhat.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "ductoanvo", "email": "toan.ducvo@icloud.com" - }, - "record": { + }, + "record": { "URL": "https://www.facebook.com/profile.php?id=100016726364383" - } } - \ No newline at end of file +} diff --git a/domains/nhemgomia.json b/domains/nhemgomia.json new file mode 100644 index 000000000..a029c3689 --- /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/nicatdcw.json b/domains/nicatdcw.json index e50c7dd9f..008aef2f8 100644 --- a/domains/nicatdcw.json +++ b/domains/nicatdcw.json @@ -1,11 +1,11 @@ { - "description": "Only Cheeini (Nicat.dcw) Portofolio", - "repo": "https://github.com/Nicat-dcw/nicat-dcw.github.io", - "owner": { - "username": "Cheeini", - "email": "kurtbot60@gmail.com" - }, - "record": { - "CNAME": "nicat-dcw.github.io" - } + "description": "Only Cheeini (Nicat.dcw) Portofolio", + "repo": "https://github.com/Nicat-dcw/nicat-dcw.github.io", + "owner": { + "username": "Cheeini", + "email": "kurtbot60@gmail.com" + }, + "record": { + "CNAME": "nicat-dcw.github.io" + } } diff --git a/domains/niceeli.json b/domains/niceeli.json new file mode 100644 index 000000000..8c6d38da1 --- /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/nicekun.json b/domains/nicekun.json new file mode 100644 index 000000000..f268a50e5 --- /dev/null +++ b/domains/nicekun.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CcNicebruh", + "email": "tangkeehee2002@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nicesapien.json b/domains/nicesapien.json deleted file mode 100644 index c36ef1f18..000000000 --- a/domains/nicesapien.json +++ /dev/null @@ -1,11 +0,0 @@ -{ -"description": "NiceSapien's portfolio website", - "owner": { - "username": "NiceSapien", - "email": "nicesapien@gmail.com", - "discord": "NiceSapien#2356" - }, - "record": { - "CNAME": "nicesapien.gatsbyjs.io" - } -} 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/nickooms.json b/domains/nickooms.json new file mode 100644 index 000000000..a5c6c3108 --- /dev/null +++ b/domains/nickooms.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nickooms", + "email": "oomsni@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nico.json b/domains/nico.json index 7d1885fad..df6c81b40 100644 --- a/domains/nico.json +++ b/domains/nico.json @@ -1,12 +1,12 @@ { - "description": "Personal Website", - "repo": "https://github.com/NicoGaming77/NicoGaming77.github.io", - "owner": { - "username": "NicoGaming77", - "email": "nicodreyer7@icloud.com", - "discord": "nicosnico#7674" - }, - "record": { - "CNAME": "NicoGaming77.github.io" - } + "description": "Personal Website", + "repo": "https://github.com/NicoGaming77/NicoGaming77.github.io", + "owner": { + "username": "NicoGaming77", + "email": "nicodreyer7@icloud.com", + "discord": "nicosnico#7674" + }, + "record": { + "CNAME": "NicoGaming77.github.io" + } } diff --git a/domains/nicol.json b/domains/nicol.json index 53fafa4ae..b81ec5bd6 100644 --- a/domains/nicol.json +++ b/domains/nicol.json @@ -1,12 +1,12 @@ { - "description": "Lina website", - "repo": "https://github.com/Linadevv/Linadevv.github.io", - "owner": { - "username": "Linadevv", - "email": "any@email", - "twitter": "Lina" - }, - "record": { - "CNAME": "Linadevv.github.io" - } + "description": "Lina website", + "repo": "https://github.com/Linadevv/Linadevv.github.io", + "owner": { + "username": "Linadevv", + "email": "any@email", + "twitter": "Lina" + }, + "record": { + "CNAME": "Linadevv.github.io" + } } diff --git a/domains/nicoladen.json b/domains/nicoladen.json new file mode 100644 index 000000000..db7454b33 --- /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..47e21b7b1 --- /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/niel.json b/domains/niel.json new file mode 100644 index 000000000..c1004942b --- /dev/null +++ b/domains/niel.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MacengBOT", + "email": "macengbot@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/niemiets.json b/domains/niemiets.json new file mode 100644 index 000000000..a9bf61d37 --- /dev/null +++ b/domains/niemiets.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Niemiets", + "email": "niemiec123123123@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/nightmaregods.json b/domains/nightmaregods.json new file mode 100644 index 000000000..afc976b19 --- /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 new file mode 100644 index 000000000..2cc26e390 --- /dev/null +++ b/domains/nightsfall.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NightsFaII", + "email": "niqhtsfall2@gmail.com" + }, + "record": { + "CNAME": "nightsfaii.github.io" + } +} diff --git a/domains/nihaltm.json b/domains/nihaltm.json new file mode 100644 index 000000000..69c0f9ba2 --- /dev/null +++ b/domains/nihaltm.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "n1haldev", + "email": "nihaltmdev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/nikhil.json b/domains/nikhil.json index b32f8630d..57b51e245 100644 --- a/domains/nikhil.json +++ b/domains/nikhil.json @@ -1,11 +1,11 @@ { - "description": "Nikhil Singh Website", - "repo": "https://github.com/nikhils4/nikhils4.github.io", - "owner": { - "username": "nikhils4", - "email": "nikhilsingh498@gmail.com" - }, - "record": { - "CNAME": "nikhils4.github.io" - } + "description": "Nikhil Singh Website", + "repo": "https://github.com/nikhils4/nikhils4.github.io", + "owner": { + "username": "nikhils4", + "email": "nikhilsingh498@gmail.com" + }, + "record": { + "CNAME": "nikhils4.github.io" + } } diff --git a/domains/niki-tiwari.json b/domains/niki-tiwari.json new file mode 100644 index 000000000..eeb886fc4 --- /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 new file mode 100644 index 000000000..09078ab9d --- /dev/null +++ b/domains/nikita.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nikitacontreras", + "email": "elfantoche.tv@gmail.com" + }, + "record": { + "CNAME": "nikitacontreras.github.io" + } +} diff --git a/domains/niklas.json b/domains/niklas.json index a00dff78f..538900125 100644 --- a/domains/niklas.json +++ b/domains/niklas.json @@ -1,11 +1,11 @@ { - "description": "I'm a dev from austria.", - "owner": { - "username": "NiHaiden", - "email": "niklas@haiden.ch", - "twitter": "niklashdev" - }, - "record": { - "URL": "https://nhaiden.dev" - } -} + "description": "Dev from Austria who loves Java and the world.", + "owner": { + "username": "NiHaiden", + "email": "niklas@niklas.tech", + "twitter": "nklsdev" + }, + "record": { + "URL": "https://niklas.tech" + } +} diff --git a/domains/nikolas.json b/domains/nikolas.json index c5fb5b368..891f60c2b 100644 --- a/domains/nikolas.json +++ b/domains/nikolas.json @@ -4,7 +4,7 @@ "owner": { "username": "MuhekoNikolas", "email": "13nikolusmuheko@gmail.com", - "twitter": "@MuhekoNikolas" + "twitter": "MuhekoNikolas" }, "record": { "CNAME": "muhekonikolas.github.io" diff --git a/domains/nikolus.json b/domains/nikolus.json index 3963ef385..9f89f9e79 100644 --- a/domains/nikolus.json +++ b/domains/nikolus.json @@ -4,7 +4,7 @@ "owner": { "username": "MuhekoNikolas", "email": "13nikolusmuheko@gmail.com", - "twitter": "@MuhekoNikolas" + "twitter": "MuhekoNikolas" }, "record": { "CNAME": "muhekonikolas.github.io" diff --git a/domains/nileshhaldar98.json b/domains/nileshhaldar98.json new file mode 100644 index 000000000..5990cedb2 --- /dev/null +++ b/domains/nileshhaldar98.json @@ -0,0 +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" + } +} diff --git a/domains/nilhem.json b/domains/nilhem.json new file mode 100644 index 000000000..872ce8eb0 --- /dev/null +++ b/domains/nilhem.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ncognto", + "email": "a.mbiad3s@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/nils.json b/domains/nils.json index 4984fdb72..2590f83e5 100644 --- a/domains/nils.json +++ b/domains/nils.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "TheNoim", - "email": "nilsbergmann@noim.io" - }, - "description": "Use as alias for noim.io (My private webpage)", - "record": { - "URL": "https://noim.io" - } + "owner": { + "username": "TheNoim", + "email": "nilsbergmann@noim.io" + }, + "description": "Use as alias for noim.io (My private webpage)", + "record": { + "URL": "https://noim.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/nine.json b/domains/nine.json index dca4dedd8..7cb74dd5e 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" - } + "owner": { + "username": "NineLEL", + "email": "notninelel@gmail.com" + }, + "record": { + "A": ["76.223.55.44"], + "TXT": "deta-verification=DyZWThRbwVx1vudpA5oB8DEekn58LG75" + } } diff --git a/domains/ninjaasmoke.json b/domains/ninjaasmoke.json index 11d683016..562955316 100644 --- a/domains/ninjaasmoke.json +++ b/domains/ninjaasmoke.json @@ -1,11 +1,11 @@ { - "description": "portfolio | nithin", - "repo": "https://github.com/ninjaasmoke/ninjaasmoke.github.io", - "owner": { - "username": "ninjaasmoke", - "email": "nithins674@gmail.com" - }, - "record": { - "CNAME": "ninjaasmoke.github.io" - } + "description": "portfolio | nithin", + "repo": "https://github.com/ninjaasmoke/ninjaasmoke.github.io", + "owner": { + "username": "ninjaasmoke", + "email": "nithins674@gmail.com" + }, + "record": { + "CNAME": "ninjaasmoke.github.io" + } } diff --git a/domains/ninju.json b/domains/ninju.json new file mode 100644 index 000000000..b9e1c01d4 --- /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..32cc48ea7 --- /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/niper.json b/domains/niper.json new file mode 100644 index 000000000..6d3286888 --- /dev/null +++ b/domains/niper.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NIPERR", + "email": "marcel.dziewaa@gmail.com" + }, + "record": { + "URL": "https://niper.vercel.app" + } +} diff --git a/domains/nipul-bhogayat.json b/domains/nipul-bhogayat.json new file mode 100644 index 000000000..502fd4f78 --- /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/nirav-bhut.json b/domains/nirav-bhut.json new file mode 100644 index 000000000..a31106bbd --- /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/nirlep.json b/domains/nirlep.json deleted file mode 100644 index 7ed957d1d..000000000 --- a/domains/nirlep.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "yes.", - "repo": "https://github.com/nirlep5252", - "owner": { - "username": "nirlep5252", - "email": "", - "twitter": "Nirlep_5252_" - }, - "record": { - "CNAME": "nirlep.netlify.app" - } -} diff --git a/domains/nisarga.json b/domains/nisarga.json index 8bfe90e67..8da288e74 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", - "owner": { - "username": "nisarga-developer", - "email": "adhikarynisarga17@gmail.com", - "twitter": "adhikarynisarga" - }, - "record": { - "CNAME": "nisarga-developer.github.io" - } + "description": "Nisarga", + "repo": "https://github.com/nisarga-developer/nisarga-developer.github.io", + "owner": { + "username": "nisarga-developer", + "email": "adhikarynisarga17@gmail.com", + "twitter": "adhikarynisarga" + }, + "record": { + "CNAME": "nisarga-developer.github.io" + } } diff --git a/domains/nischay.json b/domains/nischay.json index 70ecfa34d..6468efc0d 100644 --- a/domains/nischay.json +++ b/domains/nischay.json @@ -1,21 +1,16 @@ -{ - "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/nishaj.json b/domains/nishaj.json new file mode 100644 index 000000000..46ce325d2 --- /dev/null +++ b/domains/nishaj.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nishaj0", + "email": "njnishaj0@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nishaj0.json b/domains/nishaj0.json new file mode 100644 index 000000000..46ce325d2 --- /dev/null +++ b/domains/nishaj0.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nishaj0", + "email": "njnishaj0@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..6b8f9047f --- /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..365f87e4d --- /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/nitesh-rathod.json b/domains/nitesh-rathod.json new file mode 100644 index 000000000..34a4af632 --- /dev/null +++ b/domains/nitesh-rathod.json @@ -0,0 +1,11 @@ +{ + "description": "Nitesh Rathod.", + "repo": "https://github.com/nitesh-rathod/nitesh-rathod.github.io", + "owner": { + "username": "nitesh-rathod", + "email": "" + }, + "record": { + "CNAME": "nitesh-rathod.github.io" + } +} diff --git a/domains/nitesh.json b/domains/nitesh.json index 0184367ce..4c4e922db 100644 --- a/domains/nitesh.json +++ b/domains/nitesh.json @@ -1,11 +1,11 @@ { - "description": "My personal portfolio site", - "repo": "https://github.com/Niteshballa", - "owner": { - "username": "Niteshballa", - "email": "nithesh.mom@gmail.com" - }, - "record": { - "CNAME": "Niteshballa.github.io" - } + "description": "My personal portfolio site", + "repo": "https://github.com/Niteshballa", + "owner": { + "username": "Niteshballa", + "email": "nithesh.mom@gmail.com" + }, + "record": { + "CNAME": "Niteshballa.github.io" + } } diff --git a/domains/nithin.json b/domains/nithin.json new file mode 100644 index 000000000..42ac6cfd6 --- /dev/null +++ b/domains/nithin.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "nithinlycanz", + "email": "nithinnikhil582@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/nitr7gen.json b/domains/nitr7gen.json deleted file mode 100644 index 03dfcf394..000000000 --- a/domains/nitr7gen.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "nitr7gen", - "email": "nitr7gen@proton.me" - }, - "record": { - "CNAME": "nitr7gen.pages.dev" - }, - "description": "website for about me , blog & project showcase", - "repo": "https://github.com/nitr7gen/DevFolio/" -} diff --git a/domains/nix.json b/domains/nix.json new file mode 100644 index 000000000..d99db5263 --- /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..76cc76b00 --- /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/noah.json b/domains/noah.json new file mode 100644 index 000000000..89c3e8cd2 --- /dev/null +++ b/domains/noah.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NoahPrm", + "email": "noah.parmentier@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/noahgao.json b/domains/noahgao.json deleted file mode 100644 index 6b4d59e51..000000000 --- a/domains/noahgao.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "owner": { - "username": "noahziheng", - "email": "noahgaocn@outlook.com" - }, - - "record": { - "CNAME": "noahziheng.github.io" - } - } - diff --git a/domains/noahvocat.json b/domains/noahvocat.json new file mode 100644 index 000000000..fbb65dfec --- /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/nobody.json b/domains/nobody.json new file mode 100644 index 000000000..6af3c2e52 --- /dev/null +++ b/domains/nobody.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mr-adrien", + "email": "adrienansari@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/node-appwrite.json b/domains/node-appwrite.json deleted file mode 100644 index b27b753f9..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 index 9ca25425f..a9f258d41 100644 --- a/domains/node.json +++ b/domains/node.json @@ -1,12 +1,12 @@ { - "description": "Personal website", - "repo": "https://github.com/node0505/node0505.github.io", - "owner": { - "username": "node0505", - "email": "", - "discord": "node#0505" - }, - "record": { - "CNAME": "node0505.github.io" - } + "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/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/noel.json b/domains/noel.json index 03e789111..0974b3373 100644 --- a/domains/noel.json +++ b/domains/noel.json @@ -1,13 +1,13 @@ { - "description": "Personal profile page", - "repo": "https://github.com/noeljacob/noeljacob.github.io", - "owner": { - "username": "NoelJacob", - "email": "noeljacob91@gmail.com", - "twitter": "NoelJacob01", - "discord": "Noel Jacob#7465" - }, - "record": { - "CNAME": "noeljacob.github.io" - } + "description": "Personal profile page", + "repo": "https://github.com/noeljacob/noeljacob.github.io", + "owner": { + "username": "NoelJacob", + "email": "noeljacob91@gmail.com", + "twitter": "NoelJacob01", + "discord": "Noel Jacob#7465" + }, + "record": { + "CNAME": "noeljacob.github.io" + } } diff --git a/domains/noflare.json b/domains/noflare.json new file mode 100644 index 000000000..8e4192495 --- /dev/null +++ b/domains/noflare.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Noflare", + "email": "Noflare.dev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/noicemath.json b/domains/noicemath.json new file mode 100644 index 000000000..414667f85 --- /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/noir.json b/domains/noir.json index bd7badc3c..ad7497b74 100644 --- a/domains/noir.json +++ b/domains/noir.json @@ -1,12 +1,12 @@ { - "description": "noir's website", - "repo": "https://github.com/noirdevelopment/noirdevelopment.github.io", - "owner": { - "username": "noirdevelopment", - "email": "xyroemail1@gmail.com", - "twitter": "zPyrooooo" - }, - "record": { - "CNAME": "noirdevelopment.github.io" - } + "description": "noir's website", + "repo": "https://github.com/noirdevelopment/noirdevelopment.github.io", + "owner": { + "username": "noirdevelopment", + "email": "xyroemail1@gmail.com", + "twitter": "zPyrooooo" + }, + "record": { + "CNAME": "noirdevelopment.github.io" + } } diff --git a/domains/noma.json b/domains/noma.json index f96f4c501..980681959 100644 --- a/domains/noma.json +++ b/domains/noma.json @@ -1,11 +1,11 @@ { - "description": "noma4321's personal website", - "repo": "https://github.com/Noma4321/noma4321.github.io", - "owner": { - "username": "Noma4321", - "email": "noma4321business@gmail.com" - }, - "record": { - "CNAME": "noma4321.github.io" - } + "description": "noma4321's personal website", + "repo": "https://github.com/Noma4321/noma4321.github.io", + "owner": { + "username": "Noma4321", + "email": "noma4321business@gmail.com" + }, + "record": { + "CNAME": "noma4321.github.io" + } } diff --git a/domains/nonograms.talinsharma.json b/domains/nonograms.talinsharma.json new file mode 100644 index 000000000..72577e571 --- /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/nooz.json b/domains/nooz.json index a169e09cc..68b2023c2 100644 --- a/domains/nooz.json +++ b/domains/nooz.json @@ -1,22 +1,14 @@ { "description": "Personal portfolio for nooz", - "repo": "https://github.com/NoozSBC/portfolio/", + "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" - ], + "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/norkart.json b/domains/norkart.json new file mode 100644 index 000000000..711b5d325 --- /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/normturtle.json b/domains/normturtle.json new file mode 100644 index 000000000..99bc9076f --- /dev/null +++ b/domains/normturtle.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NormTurtle", + "email": "omix1.ok@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..4baeb1a42 --- /dev/null +++ b/domains/not-ethan.json @@ -0,0 +1,12 @@ +{ + "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/nota.json b/domains/nota.json new file mode 100644 index 000000000..4b27eb5ce --- /dev/null +++ b/domains/nota.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "dewiscool", + "email": "zerolikecyber.2005@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/notaperson535.json b/domains/notaperson535.json index 00dd1d1d2..185dcaf36 100644 --- a/domains/notaperson535.json +++ b/domains/notaperson535.json @@ -1,11 +1,11 @@ { - "description": "My about me website", - "repo": "https://github.com/notAperson535/notAperson535", - "owner": { - "username": "notAperson535", - "email": "notAperson939@gmail.com" - }, - "record": { - "CNAME": "notAperson535.github.io" - } + "description": "My about me website", + "repo": "https://github.com/notAperson535/notAperson535", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } } diff --git a/domains/notaussie.json b/domains/notaussie.json new file mode 100644 index 000000000..baeb70f8e --- /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 1803407fa..84dac91c2 100644 --- a/domains/notcoded.json +++ b/domains/notcoded.json @@ -1,13 +1,13 @@ { - "description": "redirect to website", - "repo": "https://github.com/not-coded/notcoded.cf", + "description": "use is-a.dev domain", + "repo": "https://github.com/not-coded/not-coded.github.io", "owner": { - "username": "NotCoded", - "email": "contact@notcoded.cf", - "discord": "NotCoded#4987", + "username": "not-coded", + "email": "", + "discord": "Code#9844", "discordUserID": "620662953347121163" }, "record": { - "URL": "https://notcoded.cf" + "CNAME": "not-coded.github.io" } -} +} diff --git a/domains/notedwin.json b/domains/notedwin.json index b7c922a30..0c5d29918 100644 --- a/domains/notedwin.json +++ b/domains/notedwin.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Edwin15857", - "email": "notedwin.music@gmail.com" - }, - "record": { - "URL": "https://notedwin.api.stdlib.com/portfolio-using-html-in-autocode@dev/" - } + "owner": { + "username": "Edwin15857", + "email": "notedwin.music@gmail.com" + }, + "record": { + "URL": "https://notedwin.api.stdlib.com/portfolio-using-html-in-autocode@dev" + } } diff --git a/domains/notefct.json b/domains/notefct.json index a431b45f0..d2415cdde 100644 --- a/domains/notefct.json +++ b/domains/notefct.json @@ -1,11 +1,11 @@ { - "description": "notefct personal developer website", - "repo": "https://github.com/notefct/aboutme/", - "owner": { - "username": "notefct", - "email": "edunlima2007@gmail.com" - }, - "record": { - "CNAME": "notefct.github.io" - } + "description": "notefct personal developer website", + "repo": "https://github.com/notefct/aboutme", + "owner": { + "username": "notefct", + "email": "edunlima2007@gmail.com" + }, + "record": { + "CNAME": "notefct.github.io" + } } diff --git a/domains/noteswallah.json b/domains/noteswallah.json new file mode 100644 index 000000000..a23664d55 --- /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..f54e3ca4e --- /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/notify-api.json b/domains/notify-api.json deleted file mode 100644 index d173b2ae5..000000000 --- a/domains/notify-api.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "repo" :"https://github.com/andrewstech/notify-api", - "owner": { - "username": "andrewstech", - "email": "andrew@win11react.com" - }, - "record": { - "A": ["204.44.81.53"] - } - } - diff --git a/domains/notjadeja.json b/domains/notjadeja.json index 4b1faf9c7..691d90fc4 100644 --- a/domains/notjadeja.json +++ b/domains/notjadeja.json @@ -1,20 +1,11 @@ - { - "owner": { +{ + "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" - } + }, + "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 new file mode 100644 index 000000000..cb050c83e --- /dev/null +++ b/domains/notrana.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NotRana", + "email": "benyameen75@gmail.com" + }, + "record": { + "CNAME": "notrana.github.io" + } +} diff --git a/domains/notskillz.json b/domains/notskillz.json new file mode 100644 index 000000000..77ad463dd --- /dev/null +++ b/domains/notskillz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PsxScriptsW", + "email": "jacob.blits@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/notugotskillz.json b/domains/notugotskillz.json new file mode 100644 index 000000000..77ad463dd --- /dev/null +++ b/domains/notugotskillz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PsxScriptsW", + "email": "jacob.blits@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/notzsfell.json b/domains/notzsfell.json new file mode 100644 index 000000000..a24031e73 --- /dev/null +++ b/domains/notzsfell.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zsfell", + "email": "felinzkvic@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nova.json b/domains/nova.json new file mode 100644 index 000000000..490f0be9b --- /dev/null +++ b/domains/nova.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sexy-bullet", + "email": "e4nbullet@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/novinity.json b/domains/novinity.json new file mode 100644 index 000000000..85cdb22e1 --- /dev/null +++ b/domains/novinity.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Novinity", + "email": "novinity63@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/noxsin.json b/domains/noxsin.json index 19be530cb..e15031fcb 100644 --- a/domains/noxsin.json +++ b/domains/noxsin.json @@ -1,12 +1,12 @@ { - "description": "A noxsin's webpage", - "repo": "https://github.com/komysh/komysh.github.io", - "owner": { - "username": "komysh", - "email": "arcteac@gmail.com", - "telegram": "@mentolbot" - }, - "record": { - "CNAME": "komysh.github.io" - } + "description": "A noxsin's webpage", + "repo": "https://github.com/komysh/komysh.github.io", + "owner": { + "username": "komysh", + "email": "arcteac@gmail.com", + "telegram": "mentolbot" + }, + "record": { + "CNAME": "komysh.github.io" + } } diff --git a/domains/noxturnix.json b/domains/noxturnix.json index 312ebd6c1..469025210 100644 --- a/domains/noxturnix.json +++ b/domains/noxturnix.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Noxturnix", - "email": "noxturnix@noxt.us" - }, - "record": { - "URL": "https://noxt.us/" - } + "owner": { + "username": "Noxturnix", + "email": "noxturnix@noxt.us" + }, + "record": { + "URL": "https://noxt.us" + } } diff --git a/domains/npc.json b/domains/npc.json new file mode 100644 index 000000000..afdd829a5 --- /dev/null +++ b/domains/npc.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "npc-123", + "email": "aziznasrul85@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nqdev.json b/domains/nqdev.json new file mode 100644 index 000000000..b305e2dee --- /dev/null +++ b/domains/nqdev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nguyenquy0710", + "email": "nguyenquy.1096@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nrdybhu1.json b/domains/nrdybhu1.json index c750a379a..6db1f2174 100644 --- a/domains/nrdybhu1.json +++ b/domains/nrdybhu1.json @@ -1,11 +1,11 @@ { - "description": "My Personal Website", - "repo": "https://github.com/NrdyBhu1/nrdybhu1.github.io", - "owner": { - "username": "NrdyBhu1", - "email": "NrdyBhu1@gmail.com" - }, - "record": { - "CNAME": "nrdybhu1.github.io" - } + "description": "My Personal Website", + "repo": "https://github.com/NrdyBhu1/nrdybhu1.github.io", + "owner": { + "username": "NrdyBhu1", + "email": "NrdyBhu1@gmail.com" + }, + "record": { + "CNAME": "nrdybhu1.github.io" + } } diff --git a/domains/nsh.json b/domains/nsh.json index 6e9bb7e32..74fd45e71 100644 --- a/domains/nsh.json +++ b/domains/nsh.json @@ -1,12 +1,12 @@ -{ - "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/ntfy.stefdp.json b/domains/ntfy.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/ntfy.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/ntg.json b/domains/ntg.json index 8a6ea35b9..2517fa8a9 100644 --- a/domains/ntg.json +++ b/domains/ntg.json @@ -1,11 +1,11 @@ { - "description": "Dot Nothing here :)", - "repo": "https://github.com/dotntg/dotntg.github.io", - "owner": { - "username": "dotntg", - "email": "dotntg.dev@gmail.com" - }, - "record": { - "CNAME": "dotntg.github.io" - } + "description": "Dot Nothing here :)", + "repo": "https://github.com/dotntg/dotntg.github.io", + "owner": { + "username": "dotntg", + "email": "dotntg.dev@gmail.com" + }, + "record": { + "CNAME": "dotntg.github.io" + } } diff --git a/domains/nthn.json b/domains/nthn.json index 622f63a89..1479525d0 100644 --- a/domains/nthn.json +++ b/domains/nthn.json @@ -1,11 +1,11 @@ { - "description": "Storage Untuk Mengupload Semua Filemu", - "repo": "https://github.com/ZeroChanBot", - "owner": { - "username": "Nathan", - "email": "contact@webraku.xyz" - }, - "record": { - "CNAME": "storage-production.up.railway.app" - } + "description": "Storage Untuk Mengupload Semua Filemu", + "repo": "https://github.com/ZeroChanBot", + "owner": { + "username": "Nathan", + "email": "contact@webraku.xyz" + }, + "record": { + "CNAME": "storage-production.up.railway.app" + } } diff --git a/domains/null.json b/domains/null.json new file mode 100644 index 000000000..31aa9cb1f --- /dev/null +++ b/domains/null.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sudo-null7", + "email": "philippeparr38@gmail.com" + }, + "record": { + "CNAME": "null.parr.lol" + } +} diff --git a/domains/nunya-9018.json b/domains/nunya-9018.json index 7f79066dd..d27b5c78d 100644 --- a/domains/nunya-9018.json +++ b/domains/nunya-9018.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "Nunya-9018", "email": "007youdontknowme@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "nunya-9018.up.railway.app" - } } - \ No newline at end of file +} diff --git a/domains/nuxsh.json b/domains/nuxsh.json index 2c0db117e..b9fbc8b9b 100644 --- a/domains/nuxsh.json +++ b/domains/nuxsh.json @@ -1,12 +1,12 @@ { - "description": "hi, im nuxsh", - "repo": "https://github.com/nuxshed/nuxshed.github.io", - "owner": { - "username": "nuxshed", - "email": "nuxshed@gmail.com", - "discord": "nuxsh#9338" - }, - "record": { - "CNAME": "nuxshed.github.io" - } + "description": "hi, im nuxsh", + "repo": "https://github.com/nuxshed/nuxshed.github.io", + "owner": { + "username": "nuxshed", + "email": "nuxshed@gmail.com", + "discord": "nuxsh#9338" + }, + "record": { + "CNAME": "nuxshed.github.io" + } } diff --git a/domains/nv2k3.json b/domains/nv2k3.json index 2326cad67..059d1c3ff 100644 --- a/domains/nv2k3.json +++ b/domains/nv2k3.json @@ -1,11 +1,11 @@ { - "description": "Nv2k3's portfolio website", - "repo": "https://github.com/nv2k3/nv2k3.github.io", - "owner": { - "username": "nv2k3", - "email": "nagendrar.537@gmail.com" - }, - "record": { - "CNAME": "nv2k3.github.io" - } + "description": "Nv2k3's portfolio website", + "repo": "https://github.com/nv2k3/nv2k3.github.io", + "owner": { + "username": "nv2k3", + "email": "nagendrar.537@gmail.com" + }, + "record": { + "CNAME": "nv2k3.github.io" + } } diff --git a/domains/nvme0n1p.json b/domains/nvme0n1p.json new file mode 100644 index 000000000..9eb5f8b9e --- /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/nxb1t.json b/domains/nxb1t.json new file mode 100644 index 000000000..ae8c73d66 --- /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/nxnetwork.json b/domains/nxnetwork.json new file mode 100644 index 000000000..2674ffd29 --- /dev/null +++ b/domains/nxnetwork.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HackerYijia", + "email": "hackeryijia@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nxnlab.json b/domains/nxnlab.json new file mode 100644 index 000000000..9d569bd91 --- /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..b9aeb3834 --- /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/nxyoo.json b/domains/nxyoo.json new file mode 100644 index 000000000..ec176e37e --- /dev/null +++ b/domains/nxyoo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nxyoo", + "email": "armqnd.pro@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } + } \ No newline at end of file diff --git a/domains/nxyy.json b/domains/nxyy.json new file mode 100644 index 000000000..d46a972aa --- /dev/null +++ b/domains/nxyy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NxyyLOL", + "email": "nxyylol@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nyan.json b/domains/nyan.json index 2320dfa1e..ca556afbd 100644 --- a/domains/nyan.json +++ b/domains/nyan.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "aeongdesu", - "email": "", - "revolt": "@Nyan", - "discord": "Bread#2635", - "note": "discord id: 548821619661864962" - }, - "record": { - "CNAME": "ppy.pages.dev" - } + "owner": { + "username": "aeongdesu", + "email": "", + "revolt": "Nyan", + "discord": "Bread#2635", + "note": "discord id: 548821619661864962" + }, + "record": { + "CNAME": "ppy.pages.dev" + } } diff --git a/domains/nyc.json b/domains/nyc.json new file mode 100644 index 000000000..5a384e076 --- /dev/null +++ b/domains/nyc.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "resporitories", + "email": "localugly@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nyda.json b/domains/nyda.json new file mode 100644 index 000000000..fd2f10143 --- /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..3a7633c6c 100644 --- a/domains/nyel.json +++ b/domains/nyel.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "nyelnizy", "email": "yhiamdan@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "nyelnizy.github.io" - } } - \ No newline at end of file +} diff --git a/domains/nypd.json b/domains/nypd.json new file mode 100644 index 000000000..7f33edc6a --- /dev/null +++ b/domains/nypd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "a77-dev", + "email": "andbro4955@student.ccs.k12.nc.us" + }, + "record": { + "URL": "https://feds.lol/nypd" + } +} diff --git a/domains/nyx.json b/domains/nyx.json new file mode 100644 index 000000000..19f2d0026 --- /dev/null +++ b/domains/nyx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nyxical420", + "email": "xaveegacha7@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/nziie.json b/domains/nziie.json index 5153f53af..f83527299 100644 --- a/domains/nziie.json +++ b/domains/nziie.json @@ -1,11 +1,11 @@ { - "description": "Nziie's Developer Website", - "repo": "https://github.com/Nzii3/website", - "owner": { - "username": "Nzii3", - "email": "exeyst@gmail.com" - }, - "record": { - "CNAME": "nziie3.github.io" - } + "description": "Nziie's Developer Website", + "repo": "https://github.com/Nzii3/website", + "owner": { + "username": "Nzii3", + "email": "exeyst@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } } diff --git a/domains/obaydmerz.json b/domains/obaydmerz.json new file mode 100644 index 000000000..1c59423bd --- /dev/null +++ b/domains/obaydmerz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "obaydmerz", + "email": "obaydmerz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/objectrecognisation.syntaxloopers.json b/domains/objectrecognisation.syntaxloopers.json new file mode 100644 index 000000000..324dfe7e2 --- /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/ocean.json b/domains/ocean.json index 33961cd2b..da166171b 100644 --- a/domains/ocean.json +++ b/domains/ocean.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "OceanTechnic", - "email": "", - "twitter": "UnderWater_DEV" - }, - "record": { - "CNAME": "oceantechnic.github.io" - } + "owner": { + "username": "OceanTechnic", + "email": "", + "twitter": "UnderWater_DEV" + }, + "record": { + "CNAME": "oceantechnic.github.io" + } } diff --git a/domains/ocloo.json b/domains/ocloo.json deleted file mode 100644 index 9cb17ebd7..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/ofersadan.json b/domains/ofersadan.json index 42ce352c6..92c29af60 100644 --- a/domains/ofersadan.json +++ b/domains/ofersadan.json @@ -1,11 +1,11 @@ { - "description": "Ofer Sadan's GitHub profile", - "repo": "https://github.com/ofersadan85/ofersadan85", - "owner": { - "username": "ofersadan85", - "email": "ofersadan85@gmail.com" - }, - "record": { - "URL": "https://github.com/ofersadan85" - } -} \ No newline at end of file + "description": "Ofer Sadan's GitHub profile", + "repo": "https://github.com/ofersadan85/ofersadan85", + "owner": { + "username": "ofersadan85", + "email": "ofersadan85@gmail.com" + }, + "record": { + "URL": "https://github.com/ofersadan85" + } +} diff --git a/domains/ofir.json b/domains/ofir.json new file mode 100644 index 000000000..6e4b8c0a1 --- /dev/null +++ b/domains/ofir.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "OfirApps", + "email": "ijumpitsus@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/ofv.json b/domains/ofv.json new file mode 100644 index 000000000..2794d8db2 --- /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 new file mode 100644 index 000000000..3eebaaba9 --- /dev/null +++ b/domains/ohcrazy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrcrazii", + "email": "milhanlahir321@gmail.com" + }, + "record": { + "CNAME": "mrcrazii.github.io" + } +} diff --git a/domains/ohgodanoob.json b/domains/ohgodanoob.json new file mode 100644 index 000000000..265baa4df --- /dev/null +++ b/domains/ohgodanoob.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "OhGodANoob", + "email": "ohgodanoob@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ohm.json b/domains/ohm.json new file mode 100644 index 000000000..8e962f1b2 --- /dev/null +++ b/domains/ohm.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sujandeb", + "email": "work@sujandeb.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ohmdeb.json b/domains/ohmdeb.json new file mode 100644 index 000000000..8e962f1b2 --- /dev/null +++ b/domains/ohmdeb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sujandeb", + "email": "work@sujandeb.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ohqte.json b/domains/ohqte.json new file mode 100644 index 000000000..def7881ea --- /dev/null +++ b/domains/ohqte.json @@ -0,0 +1,11 @@ +{ + "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/okyanusoz.json b/domains/okyanusoz.json index 0597038d6..879d5bc74 100644 --- a/domains/okyanusoz.json +++ b/domains/okyanusoz.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "okyanusoz", - "email": "", - "github": "okyanusoz" - }, - "record": { - "URL": "https://github.com/okyanusoz" - } + "owner": { + "username": "okyanusoz", + "email": "", + "github": "okyanusoz" + }, + "record": { + "URL": "https://github.com/okyanusoz" + } } 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..f70dfd76e 100644 --- a/domains/oleg.json +++ b/domains/oleg.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "olegrumiancev", "email": "oleg.rumiancev@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://olegrumiancev.github.io" - } } - \ No newline at end of file +} diff --git a/domains/oleksa.json b/domains/oleksa.json index b9d94fe20..1742f4c29 100644 --- a/domains/oleksa.json +++ b/domains/oleksa.json @@ -1,11 +1,11 @@ { - "description": "Oleksa's personal portfolio pagee", - "repo": "https://github.com/angelofallars/angelofallars.github.io/", - "owner": { - "username": "oleksa15", - "email": "oleksaa.ua@gmail.com" - }, - "record": { - "CNAME": "oleksa15.github.io" - } + "description": "Oleksa's personal portfolio pagee", + "repo": "https://github.com/angelofallars/angelofallars.github.io", + "owner": { + "username": "oleksa15", + "email": "oleksaa.ua@gmail.com" + }, + "record": { + "CNAME": "oleksa15.github.io" + } } diff --git a/domains/oli.json b/domains/oli.json new file mode 100644 index 000000000..f0025b231 --- /dev/null +++ b/domains/oli.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hxntaish", + "email": "juliettepoisson3@gmail.com" + }, + "record": { + "A": ["185.171.202.187"] + } +} diff --git a/domains/olili.json b/domains/olili.json index 67bd1e257..6787d7178 100644 --- a/domains/olili.json +++ b/domains/olili.json @@ -1,11 +1,11 @@ { - "description": "Olili daniel portfolio", - "repo": "https://github.com/Olili2017/olili2017.github.io", - "owner": { - "username": "Olili2017", - "email": "olilidaniel@gmail.com" - }, - "record": { - "CNAME": "olili2017.github.io" - } + "description": "Olili daniel portfolio", + "repo": "https://github.com/Olili2017/olili2017.github.io", + "owner": { + "username": "Olili2017", + "email": "olilidaniel@gmail.com" + }, + "record": { + "CNAME": "olili2017.github.io" + } } diff --git a/domains/olivia.json b/domains/olivia.json new file mode 100644 index 000000000..4f63e99b5 --- /dev/null +++ b/domains/olivia.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "olivi-r", + "email": "olivia.r.dev@gmail.com", + "discord": "723626729247342662" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/omarplayz.json b/domains/omarplayz.json new file mode 100644 index 000000000..12296d6ee --- /dev/null +++ b/domains/omarplayz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Omarplayz233", + "email": "omarplayzsounds@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/omarzaghlool.json b/domains/omarzaghlool.json new file mode 100644 index 000000000..f1fda26d3 --- /dev/null +++ b/domains/omarzaghlool.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "spectre-xenon", + "email": "omarzaghlool538@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..2794d8db2 --- /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/omg.json b/domains/omg.json new file mode 100644 index 000000000..965c62d0b --- /dev/null +++ b/domains/omg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asma019", + "email": "asmaparvin019@gmail.com" + }, + "record": { + "A": ["172.104.43.107"] + } +} diff --git a/domains/omi.json b/domains/omi.json new file mode 100644 index 000000000..99bc9076f --- /dev/null +++ b/domains/omi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NormTurtle", + "email": "omix1.ok@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/omsandeppatil.json b/domains/omsandeppatil.json new file mode 100644 index 000000000..56e14549f --- /dev/null +++ b/domains/omsandeppatil.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "omsandippatil", + "email": "omsandeeppatil02@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/oneclick-macos-simple-kvm.notaperson535.json b/domains/oneclick-macos-simple-kvm.notaperson535.json index 2135c3dd1..5934082c5 100644 --- a/domains/oneclick-macos-simple-kvm.notaperson535.json +++ b/domains/oneclick-macos-simple-kvm.notaperson535.json @@ -1,11 +1,11 @@ { - "description": "My macOS VM guide website", - "repo": "https://github.com/notAperson535/OneClick-macOS-Simple-KVM", - "owner": { - "username": "notAperson535", - "email": "notAperson939@gmail.com" - }, - "record": { - "CNAME": "notAperson535.github.io" - } + "description": "My macOS VM guide website", + "repo": "https://github.com/notAperson535/OneClick-macOS-Simple-KVM", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } } diff --git a/domains/onion.json b/domains/onion.json index 18af26572..afe940f08 100644 --- a/domains/onion.json +++ b/domains/onion.json @@ -1,15 +1,12 @@ { - "owner": { - "username": "OnionDev1885", - "email": "", - "discord": "OnionDev#1885" - }, - "record": { - "URL": "https://trgop.gq", - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "OnionDev1885", + "email": "", + "discord": "OnionDev#1885" + }, + "record": { + "URL": "https://trgop.gq", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/oniondev.json b/domains/oniondev.json new file mode 100644 index 000000000..0dadf40ae --- /dev/null +++ b/domains/oniondev.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "OnionDev1885", + "email": "", + "discord": "OnionDev#1885" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all", + "URL": "https://trgop.gq" + } +} diff --git a/domains/onlive.json b/domains/onlive.json new file mode 100644 index 000000000..a8c58df1e --- /dev/null +++ b/domains/onlive.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Onlive1337", + "email": "tabdulov2006@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/onlytris.json b/domains/onlytris.json new file mode 100644 index 000000000..7ad65eea2 --- /dev/null +++ b/domains/onlytris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tq56968", + "email": "tq56968@gmail.com" + }, + "record": { + "A": ["103.252.137.101"] + } +} diff --git a/domains/onvr.json b/domains/onvr.json new file mode 100644 index 000000000..df151fadf --- /dev/null +++ b/domains/onvr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stanasxw", + "email": "karnavald@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/onvy.json b/domains/onvy.json new file mode 100644 index 000000000..ced27b4bd --- /dev/null +++ b/domains/onvy.json @@ -0,0 +1,10 @@ +{ + "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/oops.json b/domains/oops.json new file mode 100644 index 000000000..0380d8e14 --- /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/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..ca8365fa9 --- /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/opensourze.json b/domains/opensourze.json deleted file mode 100644 index 500b1c23d..000000000 --- a/domains/opensourze.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "opensourze", - "twitter": "opensourze", - "email": "opensourze@protonmail.com" - }, - "repo": "https://github.com/opensourze", - "record": { - "CNAME": "opensourze.netlify.app" - } -} 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/optixyt.json b/domains/optixyt.json new file mode 100644 index 000000000..a81258c59 --- /dev/null +++ b/domains/optixyt.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "optixyt0", + "email": "kaibeeley@icloud.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/orange.json b/domains/orange.json new file mode 100644 index 000000000..3fbf7db35 --- /dev/null +++ b/domains/orange.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sahmed011", + "email": "sufyanmishal@gmail.com" + }, + "record": { + "CNAME": "sahmed011.github.io" + } +} diff --git a/domains/orangeleaf36.json b/domains/orangeleaf36.json new file mode 100644 index 000000000..fd071cb3a --- /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/oreki.json b/domains/oreki.json deleted file mode 100644 index f554e7407..000000000 --- a/domains/oreki.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Personal Website", - "repo": "", - "owner": { - "username": "Oreki-Dev", - "email": "orekidev@gmail.com" - }, - "record": { - "A": ["164.132.74.251", "192.95.42.75"] - } -} diff --git a/domains/oreo.json b/domains/oreo.json index ae229d19c..35f4638f1 100644 --- a/domains/oreo.json +++ b/domains/oreo.json @@ -1,12 +1,12 @@ { - "description": "A website for YummyOreo", - "repo": "https://github.com/YummyOreo/yummyoreo.github.io", - "owner": { - "username": "YummyOreo", - "email": "bobgim20@gmail.com", - "twitter": "YummyOreo3" - }, - "record": { - "CNAME": "yummyoreo.github.io" - } + "description": "A website for YummyOreo", + "repo": "https://github.com/YummyOreo/yummyoreo.github.io", + "owner": { + "username": "YummyOreo", + "email": "bobgim20@gmail.com", + "twitter": "YummyOreo3" + }, + "record": { + "CNAME": "yummyoreo.github.io" + } } diff --git a/domains/orestsaban.json b/domains/orestsaban.json index 18ae16395..14609db3e 100644 --- a/domains/orestsaban.json +++ b/domains/orestsaban.json @@ -1,19 +1,11 @@ { - "description": "My personality web page", - "owner": { - "username": "OrestSaban", - "email": "OrestSaban@OrestSaban.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" - ] - } + "description": "My personality web page", + "owner": { + "username": "OrestSaban", + "email": "OrestSaban@OrestSaban.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"] + } } diff --git a/domains/orhanyigitdurmaz.json b/domains/orhanyigitdurmaz.json new file mode 100644 index 000000000..48187805b --- /dev/null +++ b/domains/orhanyigitdurmaz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "OrhanYigitDurmaz", + "email": "orhanyigitv2durmaz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/orion.json b/domains/orion.json new file mode 100644 index 000000000..1324ecaf8 --- /dev/null +++ b/domains/orion.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "oriionn", + "email": "contact@oriondev.fr", + "twitter": "orion_offi", + "discord": "orion_off" + }, + "record": { + "URL": "https://oriondev.fr" + } +} diff --git a/domains/osada.json b/domains/osada.json index d3823a364..5922cc945 100644 --- a/domains/osada.json +++ b/domains/osada.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "osadavc", - "email": "osadavidath@gmail.com", - "twitter": "osadavidath" - }, - "record": { - "URL": "https://osada-is-a-dev.vercel.app" - } + "owner": { + "username": "osadavc", + "email": "osadavidath@gmail.com", + "twitter": "osadavidath" + }, + "record": { + "URL": "https://osada-is-a-dev.vercel.app" + } } diff --git a/domains/osakihsieh.json b/domains/osakihsieh.json new file mode 100644 index 000000000..87680c9da --- /dev/null +++ b/domains/osakihsieh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "osakihsieh", + "email": "aspdoctor@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/otter.json b/domains/otter.json new file mode 100644 index 000000000..828c268f7 --- /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/outland3r2007.json b/domains/outland3r2007.json new file mode 100644 index 000000000..dd9c523af --- /dev/null +++ b/domains/outland3r2007.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Outland3r2007", + "email": "baloggabriel76@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } + } diff --git a/domains/ovillafuerte94.json b/domains/ovillafuerte94.json index d80b59dce..5e7146518 100644 --- a/domains/ovillafuerte94.json +++ b/domains/ovillafuerte94.json @@ -1,11 +1,11 @@ { - "description": "Omar Villafuerte", - "repo": "https://github.com/ovillafuerte94/ovillafuerte94.github.io", - "owner": { - "username": "ovillafuerte94", - "email": "ovillafuerte.94@gmail.com" - }, - "record": { - "CNAME": "ovillafuerte94.github.io" - } + "description": "Omar Villafuerte", + "repo": "https://github.com/ovillafuerte94/ovillafuerte94.github.io", + "owner": { + "username": "ovillafuerte94", + "email": "ovillafuerte.94@gmail.com" + }, + "record": { + "CNAME": "ovillafuerte94.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..4b93b5751 --- /dev/null +++ b/domains/oways.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "owayys", + "email": "owais.ahsan@hotmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/owayys.json b/domains/owayys.json new file mode 100644 index 000000000..4b93b5751 --- /dev/null +++ b/domains/owayys.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "owayys", + "email": "owais.ahsan@hotmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/owl.json b/domains/owl.json new file mode 100644 index 000000000..608185c25 --- /dev/null +++ b/domains/owl.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "foxsophia", + "email": "cchirrpy@outlook.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/owonico.json b/domains/owonico.json new file mode 100644 index 000000000..fde4663df --- /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..b4f5779a9 --- /dev/null +++ b/domains/oxmc.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/oxoomy.json b/domains/oxoomy.json new file mode 100644 index 000000000..4c388a3ed --- /dev/null +++ b/domains/oxoomy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "oxoomy", + "email": "goument.yelinn52@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/oyepriyansh.json b/domains/oyepriyansh.json new file mode 100644 index 000000000..d776f0d86 --- /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..a5aa4676c --- /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/p3nguin.json b/domains/p3nguin.json new file mode 100644 index 000000000..565b0bf41 --- /dev/null +++ b/domains/p3nguin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "p3nguin-kun", + "email": "p3nguinkun@proton.me" + }, + "record": { + "CNAME": "p3nguin-kun.github.io" + } +} diff --git a/domains/paban.json b/domains/paban.json new file mode 100644 index 000000000..adc0c0f4e --- /dev/null +++ b/domains/paban.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio of Paban", + "repo": "https://github.com/Pabanjyoti/Pabanjyoti.github.io", + "owner": { + "username": "Pabanjyoti", + "email": "pawanjyotimail@gmail.com" + }, + "record": { + "CNAME": "pabanjyoti.github.io" + } +} 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..7fce41f31 100644 --- a/domains/paddycooper.json +++ b/domains/paddycooper.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "PaddyCooper08", "email": "1210@rgsg.co.uk" - }, + }, - "record": { + "record": { "CNAME": "paddycooper.surge.sh" - } } - +} diff --git a/domains/pafias.json b/domains/pafias.json new file mode 100644 index 000000000..81f3dfe8a --- /dev/null +++ b/domains/pafias.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Pafias", + "email": "tiagana.b@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/paillat.json b/domains/paillat.json new file mode 100644 index 000000000..b6de726cf --- /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/painfuego.json b/domains/painfuego.json new file mode 100644 index 000000000..53e99ea1b --- /dev/null +++ b/domains/painfuego.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "flame3301", + "email": "neongamerflame@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/paiva.json b/domains/paiva.json new file mode 100644 index 000000000..d865fda03 --- /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/pajsen.json b/domains/pajsen.json index 92f021368..442ccdcf4 100644 --- a/domains/pajsen.json +++ b/domains/pajsen.json @@ -1,11 +1,11 @@ { - "description": "Pajsen's developer website", - "repo": "https://github.com/pajsen-media/pajsen-media.github.io", - "owner": { - "username": "Pajsen9263", - "email": "admin@cybercore.gq" - }, - "record": { - "CNAME": "pajsen-media.github.io" - } + "description": "Pajsen's developer website", + "repo": "https://github.com/pajsen-media/pajsen-media.github.io", + "owner": { + "username": "Pajsen9263", + "email": "admin@cybercore.gq" + }, + "record": { + "CNAME": "pajsen-media.github.io" + } } diff --git a/domains/pal-rakesh-2.json b/domains/pal-rakesh-2.json new file mode 100644 index 000000000..24048df45 --- /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..d55e38eee --- /dev/null +++ b/domains/palak.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/palmino.json b/domains/palmino.json new file mode 100644 index 000000000..b5bc1de8a --- /dev/null +++ b/domains/palmino.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "buatkakung", + "email": "buatkakung@gmail.com" + }, + + "record": { + "CNAME": "timdis.id" + } +} diff --git a/domains/panchal-chirag.json b/domains/panchal-chirag.json new file mode 100644 index 000000000..c1be602ae --- /dev/null +++ b/domains/panchal-chirag.json @@ -0,0 +1,11 @@ +{ + "description": "Chirag Profile.", + "repo": "https://github.com/panchal-chirag/panchal-chirag.github.io", + "owner": { + "username": "panchal-chirag", + "email": "" + }, + "record": { + "CNAME": "panchal-chirag.github.io" + } +} diff --git a/domains/panchal-jatin.json b/domains/panchal-jatin.json new file mode 100644 index 000000000..d62ada2c5 --- /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..6b5029311 --- /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/panda.json b/domains/panda.json index e2f08d1ba..cc4ebc80c 100644 --- a/domains/panda.json +++ b/domains/panda.json @@ -1,10 +1,14 @@ { - "owner": { - "username": "SemantCodes", - "email": "contact@semant.is-a.dev" - }, - "description": "Something juicy", - "record": { - "CNAME": "semant.cyclic.app" - } -} + "owner": { + "username": "Thanawatttt", + "email": "tanawattawillha@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/pandaninjas.json b/domains/pandaninjas.json new file mode 100644 index 000000000..67049dc69 --- /dev/null +++ b/domains/pandaninjas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pandaninjas", + "email": "admin@malwarefight.gq" + }, + "record": { + "CNAME": "pandaninjas.github.io" + } +} diff --git a/domains/pandya-riddhi.json b/domains/pandya-riddhi.json new file mode 100644 index 000000000..5e59f0708 --- /dev/null +++ b/domains/pandya-riddhi.json @@ -0,0 +1,11 @@ +{ + "description": "Riddhi pandya profile.", + "repo": "https://github.com/pandya-riddhi/pandya-riddhi.github.io", + "owner": { + "username": "pandya-riddhi", + "email": "" + }, + "record": { + "CNAME": "pandya-riddhi.github.io" + } +} diff --git a/domains/panel-luxxy.json b/domains/panel-luxxy.json new file mode 100644 index 000000000..b3693e48f --- /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.nia.json b/domains/panel.nia.json new file mode 100644 index 000000000..dbadd2911 --- /dev/null +++ b/domains/panel.nia.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nazhiida", + "email": "zhiyaonaiara@gmail.com" + }, + "record": { + "A": ["143.47.51.54"], + "AAAA": ["2603:c027:8700:a37e:16cc:782c:b563:d4b0"] + } +} diff --git a/domains/panel.shing.json b/domains/panel.shing.json new file mode 100644 index 000000000..052235500 --- /dev/null +++ b/domains/panel.shing.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ShingSemicolon", + "email": "Shing.XD.0602@gmail.com" + }, + "record": { + "A": ["150.136.114.225"], + "AAAA": ["2603:c020:400d:3e89:7825:8a70:6518:5c68"] + } +} diff --git a/domains/pansy.json b/domains/pansy.json index 927f76798..9191e313c 100644 --- a/domains/pansy.json +++ b/domains/pansy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "pansy27", - "email": "uselessshogun99@gmail.com" - }, - "record": { - "CNAME": "pansy27.github.io" - } + "owner": { + "username": "pansy27", + "email": "uselessshogun99@gmail.com" + }, + "record": { + "CNAME": "pansy27.github.io" + } } diff --git a/domains/panther.json b/domains/panther.json new file mode 100644 index 000000000..4f46a8629 --- /dev/null +++ b/domains/panther.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "2618Zahid", + "email": "zahidhassankalaroa104@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/paoloclimaco.json b/domains/paoloclimaco.json new file mode 100644 index 000000000..80d9deb59 --- /dev/null +++ b/domains/paoloclimaco.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "pawdgreyt", + "email": "paoloclimaco01@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/papyrus.json b/domains/papyrus.json index d9ff0c33d..0ecf80594 100644 --- a/domains/papyrus.json +++ b/domains/papyrus.json @@ -1,11 +1,11 @@ { - "description": "Howdy I'm Papyrus and I created this is website", - "repo": "https://github.com/Papyrus0444/papyrus0444.github.io", - "owner": { - "username": "Papyrus0444", - "email": "vladbogdanmicu@gmail.com" -}, - "record": { - "CNAME": "papyrus0444.github.io" - } + "description": "Howdy I'm Papyrus and I created this is website", + "repo": "https://github.com/Papyrus0444/papyrus0444.github.io", + "owner": { + "username": "Papyrus0444", + "email": "vladbogdanmicu@gmail.com" + }, + "record": { + "CNAME": "papyrus0444.github.io" + } } diff --git a/domains/paranoiasystem.json b/domains/paranoiasystem.json index 3b0c8decb..9e9c03e5a 100644 --- a/domains/paranoiasystem.json +++ b/domains/paranoiasystem.json @@ -1,11 +1,11 @@ { - "description": "ParanoiaSystem's Domain", - "repo": "https://github.com/paranoiasystem/paranoiasystem.github.io", - "owner": { - "username": "paranoiasystem", - "email": "marcoferraioli@live.com" - }, - "record": { - "CNAME": "paranoiasystem.github.io" - } + "description": "ParanoiaSystem's Domain", + "repo": "https://github.com/paranoiasystem/paranoiasystem.github.io", + "owner": { + "username": "paranoiasystem", + "email": "marcoferraioli@live.com" + }, + "record": { + "CNAME": "paranoiasystem.github.io" + } } diff --git a/domains/parasyte.json b/domains/parasyte.json new file mode 100644 index 000000000..ce9c87658 --- /dev/null +++ b/domains/parasyte.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ParasyteUnknown", + "email": "parasyte@duck.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/parmar-dixita.json b/domains/parmar-dixita.json new file mode 100644 index 000000000..f52204dd7 --- /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..38745a67c --- /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..f9db5b6b2 --- /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/parsa.json b/domains/parsa.json new file mode 100644 index 000000000..a9b3f03e1 --- /dev/null +++ b/domains/parsa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xX-MoonWalker-Xx", + "email": "aparat.mmr.game@gmail.com" + }, + "record": { + "CNAME": "www.parsa-alidoust.ir" + } +} diff --git a/domains/parshnt.json b/domains/parshnt.json index 169b9886b..68bdc0d7e 100644 --- a/domains/parshnt.json +++ b/domains/parshnt.json @@ -1,11 +1,11 @@ { - "description": "YAY, new place for my Portfolio", - "repo": "https://github.com/parshnt", - "owner": { - "username": "parshnt", - "email": "hi.parshant@gmail.com" - }, - "record": { - "CNAME": "parshnt.github.io" - } + "description": "YAY, new place for my Portfolio", + "repo": "https://github.com/parshnt", + "owner": { + "username": "parshnt", + "email": "hi.parshant@gmail.com" + }, + "record": { + "CNAME": "parshnt.github.io" + } } diff --git a/domains/parth.json b/domains/parth.json index e920cebd1..9fcdac438 100644 --- a/domains/parth.json +++ b/domains/parth.json @@ -1,11 +1,11 @@ { - "description": "An awesome new place for my Portfolio !", - "repo": "https://github.com/parthpanchal123/profile", - "owner": { - "username": "parthpanchal123", - "email": "parthpanchal53@gmail.com" - }, - "record": { - "CNAME": "parthpanchal123.github.io" - } + "description": "An awesome new place for my Portfolio !", + "repo": "https://github.com/parthpanchal123/profile", + "owner": { + "username": "parthpanchal123", + "email": "parthpanchal53@gmail.com" + }, + "record": { + "CNAME": "parthpanchal123.github.io" + } } diff --git a/domains/parthmaster.json b/domains/parthmaster.json new file mode 100644 index 000000000..7bc767d87 --- /dev/null +++ b/domains/parthmaster.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ParthMaster", + "email": "parth.infynno@protonmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/parthpanchal.json b/domains/parthpanchal.json new file mode 100644 index 000000000..58b6a96eb --- /dev/null +++ b/domains/parthpanchal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "parth-panchal", + "email": "parth.sdis@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pascal-jacq.json b/domains/pascal-jacq.json new file mode 100644 index 000000000..239712c39 --- /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/pasindu.json b/domains/pasindu.json new file mode 100644 index 000000000..2ffd286d5 --- /dev/null +++ b/domains/pasindu.json @@ -0,0 +1,11 @@ +{ + "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" + } +} \ No newline at end of file diff --git a/domains/paste.stefdp.json b/domains/paste.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/paste.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/patel-darshit.json b/domains/patel-darshit.json new file mode 100644 index 000000000..a8e1e3b8f --- /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-hetal.json b/domains/patel-hetal.json new file mode 100644 index 000000000..c4b9098ba --- /dev/null +++ b/domains/patel-hetal.json @@ -0,0 +1,11 @@ +{ + "description": "Hetal Profile.", + "repo": "https://github.com/patel-hetal/patel-hetal.github.io", + "owner": { + "username": "patel-hetal", + "email": "" + }, + "record": { + "CNAME": "patel-hetal.github.io" + } +} diff --git a/domains/patel-jatin.json b/domains/patel-jatin.json new file mode 100644 index 000000000..8e9977b7e --- /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..b56e0ff6a --- /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..0b186a899 --- /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..11e9e3c21 --- /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..a2865d43e --- /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..d7bfe5ace --- /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..dd3582c76 --- /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 new file mode 100644 index 000000000..7faee34c1 --- /dev/null +++ b/domains/pathan-imran.json @@ -0,0 +1,11 @@ +{ + "description": "Imran Profile.", + "repo": "https://github.com/pathan-imran/pathan-imran.github.io", + "owner": { + "username": "pathan-imran", + "email": "" + }, + "record": { + "CNAME": "pathan-imran.github.io" + } +} diff --git a/domains/pathdog.json b/domains/pathdog.json new file mode 100644 index 000000000..f62c0304e --- /dev/null +++ b/domains/pathdog.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NIKODEMUSLORD", + "email": "hannah.valdez@cetys.edu.mx" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pati.json b/domains/pati.json new file mode 100644 index 000000000..32858290e --- /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/patriciafelix.json b/domains/patriciafelix.json index 02b75e638..d0309a817 100644 --- a/domains/patriciafelix.json +++ b/domains/patriciafelix.json @@ -1,11 +1,11 @@ { - "description": "Portfolio Website", - "repo": "https://github.com/patriciafelixx/patriciafelixx.github.io", - "owner": { - "username": "patriciafelixx", - "email": "patriciafelixx@outlook.com" - }, - "record": { - "CNAME": "patriciafelixx.github.io" - } + "description": "Portfolio Website", + "repo": "https://github.com/patriciafelixx/patriciafelixx.github.io", + "owner": { + "username": "patriciafelixx", + "email": "patriciafelixx@outlook.com" + }, + "record": { + "CNAME": "patriciafelixx.github.io" + } } 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/patrickzhou.json b/domains/patrickzhou.json new file mode 100644 index 000000000..a97febea4 --- /dev/null +++ b/domains/patrickzhou.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "patrickzhou1234", + "email": "", + "discord": "moist__nugget" + }, + "record": { + "CNAME": "patrickzhou1234.github.io" + } +} diff --git a/domains/patsore.json b/domains/patsore.json new file mode 100644 index 000000000..b79fc198b --- /dev/null +++ b/domains/patsore.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "patsore", + "email": "ostapo.semenikh@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/patuiqx.json b/domains/patuiqx.json new file mode 100644 index 000000000..de833069f --- /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..66a485c4e 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": { + "CNAME": "notkaskus.github.io" + } } diff --git a/domains/paula.json b/domains/paula.json new file mode 100644 index 000000000..3a922605c --- /dev/null +++ b/domains/paula.json @@ -0,0 +1,10 @@ +{ + "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/paulojunqueira.json b/domains/paulojunqueira.json new file mode 100644 index 000000000..dd75f6d0e --- /dev/null +++ b/domains/paulojunqueira.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "opaulojunqueira", + "email": "pcjunqueira30@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/paulpfeiffer.json b/domains/paulpfeiffer.json new file mode 100644 index 000000000..a8f5a644d --- /dev/null +++ b/domains/paulpfeiffer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "paul-pfeiffer", + "email": "ppfeiffer93@gmx.at" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pavi.json b/domains/pavi.json new file mode 100644 index 000000000..8d22a547f --- /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/pawix.json b/domains/pawix.json new file mode 100644 index 000000000..923bc552d --- /dev/null +++ b/domains/pawix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PawiX25", + "email": "wyrebakpawel@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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 721b7af46..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/peach.json b/domains/peach.json index ade9fef83..0992bffb7 100644 --- a/domains/peach.json +++ b/domains/peach.json @@ -1,12 +1,12 @@ { - "description": "Peach's Website!", - "repo": "https://github.com/RUW3T/peach.github.io", - "owner": { - "username": "Peach", - "email": "azisbillah95@gmail.com", - "discord": "edrea#1717" - }, - "record": { - "CNAME": "ruw3t.github.io" - } + "description": "Peach's Website!", + "repo": "https://github.com/RUW3T/peach.github.io", + "owner": { + "username": "Peach", + "email": "azisbillah95@gmail.com", + "discord": "edrea#1717" + }, + "record": { + "CNAME": "ruw3t.github.io" + } } diff --git a/domains/peacy.json b/domains/peacy.json new file mode 100644 index 000000000..3bea46de8 --- /dev/null +++ b/domains/peacy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Peaqcy", + "email": "kiwibird211@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/peanut.json b/domains/peanut.json new file mode 100644 index 000000000..7b046b828 --- /dev/null +++ b/domains/peanut.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "realpeanut", + "email": "jacoboconnell27@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pelfex.json b/domains/pelfex.json new file mode 100644 index 000000000..642930fbe --- /dev/null +++ b/domains/pelfex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "membanned", + "email": "volaree2@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/peme969.json b/domains/peme969.json new file mode 100644 index 000000000..9a77cd5aa --- /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..235d47bee 100644 --- a/domains/pemtshewang.json +++ b/domains/pemtshewang.json @@ -9,4 +9,4 @@ "record": { "CNAME": "pemtshewang.github.io" } -} +} diff --git a/domains/pengubin.json b/domains/pengubin.json new file mode 100644 index 000000000..78f76ef66 --- /dev/null +++ b/domains/pengubin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Piplup7575", + "email": "piplup7575@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/penguin.json b/domains/penguin.json index 9fa7ca004..915899352 100644 --- a/domains/penguin.json +++ b/domains/penguin.json @@ -1,22 +1,11 @@ { - "owner": { - "username": "bcyayay14", - "email": "br14n.universe@gmail.com" - }, - "record": { - "A": [ - "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" - - } - + "owner": { + "username": "bcyayay14", + "email": "br14n.universe@gmail.com" + }, + "record": { + "A": ["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 new file mode 100644 index 000000000..e87857962 --- /dev/null +++ b/domains/penguinmod.json @@ -0,0 +1,9 @@ +{ + "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 9b6b31b62..d34aa6373 100644 --- a/domains/penieldialu.json +++ b/domains/penieldialu.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "bilwifi", "email": "dialundamapeniel@gmail.com" - }, + }, - "record": { - "URL": "https://penieldialu.carrd.co/" - } + "record": { + "URL": "https://penieldialu.carrd.co" } - \ No newline at end of file +} diff --git a/domains/penieldialundama.json b/domains/penieldialundama.json index 9b6b31b62..d34aa6373 100644 --- a/domains/penieldialundama.json +++ b/domains/penieldialundama.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "bilwifi", "email": "dialundamapeniel@gmail.com" - }, + }, - "record": { - "URL": "https://penieldialu.carrd.co/" - } + "record": { + "URL": "https://penieldialu.carrd.co" } - \ No newline at end of file +} diff --git a/domains/peris.json b/domains/peris.json index ecb5c9139..47c4b4ef6 100644 --- a/domains/peris.json +++ b/domains/peris.json @@ -1,11 +1,11 @@ { - "description": "Peris's Portfolio", - "repo": "https://github.com/perisrai/perisrai.github.io", - "owner": { - "username": "perisrai", - "email": "perishrai@gmail.com" - }, - "record": { - "CNAME": "perisrai.github.io" - } + "description": "Peris's Portfolio", + "repo": "https://github.com/perisrai/perisrai.github.io", + "owner": { + "username": "perisrai", + "email": "perishrai@gmail.com" + }, + "record": { + "CNAME": "perisrai.github.io" + } } diff --git a/domains/peter.json b/domains/peter.json new file mode 100644 index 000000000..cc927e105 --- /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/peterhinga.json b/domains/peterhinga.json new file mode 100644 index 000000000..b62fe5b9c --- /dev/null +++ b/domains/peterhinga.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "peterhinga", + "email": "hingapetes6@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/phakh.json b/domains/phakh.json new file mode 100644 index 000000000..7f501bdeb --- /dev/null +++ b/domains/phakh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "textures1245", + "email": "sirprak1245@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/phamvandien.json b/domains/phamvandien.json new file mode 100644 index 000000000..7347c4d72 --- /dev/null +++ b/domains/phamvandien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "D-Jukie", + "email": "phamvandienofficial@gmail.com" + }, + "record": { + "CNAME": "a6b7d456-4a75-42ba-b316-2b5b50199973.id.repl.co" + } +} diff --git a/domains/phantom.json b/domains/phantom.json index 19d8b51b3..53bd14626 100644 --- a/domains/phantom.json +++ b/domains/phantom.json @@ -1,11 +1,11 @@ { - "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" - } + "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/phelix.json b/domains/phelix.json index 508ebbb73..ab8d6e502 100644 --- a/domains/phelix.json +++ b/domains/phelix.json @@ -1,11 +1,11 @@ { - "description": "Phelix Dusengimana is a full-stack developer(FE Heavy) and ui designer", - "repo": "https://github.com/phelixdusengimana/phelixdusengimana", - "owner": { - "username": "phelixdusengimana", - "email": "phelixdusengimana@gmail.com" - }, - "record": { - "URL": "https://phelixdusengimana.vercel.app" - } + "description": "Phelix Dusengimana is a full-stack developer(FE Heavy) and ui designer", + "repo": "https://github.com/phelixdusengimana/phelixdusengimana", + "owner": { + "username": "phelixdusengimana", + "email": "phelixdusengimana@gmail.com" + }, + "record": { + "URL": "https://phelixdusengimana.vercel.app" + } } diff --git a/domains/phelixdusengimana.json b/domains/phelixdusengimana.json index 508ebbb73..ab8d6e502 100644 --- a/domains/phelixdusengimana.json +++ b/domains/phelixdusengimana.json @@ -1,11 +1,11 @@ { - "description": "Phelix Dusengimana is a full-stack developer(FE Heavy) and ui designer", - "repo": "https://github.com/phelixdusengimana/phelixdusengimana", - "owner": { - "username": "phelixdusengimana", - "email": "phelixdusengimana@gmail.com" - }, - "record": { - "URL": "https://phelixdusengimana.vercel.app" - } + "description": "Phelix Dusengimana is a full-stack developer(FE Heavy) and ui designer", + "repo": "https://github.com/phelixdusengimana/phelixdusengimana", + "owner": { + "username": "phelixdusengimana", + "email": "phelixdusengimana@gmail.com" + }, + "record": { + "URL": "https://phelixdusengimana.vercel.app" + } } 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/pherngpy.json b/domains/pherngpy.json new file mode 100644 index 000000000..ee9e89993 --- /dev/null +++ b/domains/pherngpy.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/philcajurao.json b/domains/philcajurao.json index fb8158e0a..c05bf679f 100644 --- a/domains/philcajurao.json +++ b/domains/philcajurao.json @@ -1,11 +1,11 @@ { - "description": "my firstime here and for my portfolio website", - "repo": "https://github.com/philcajurao/philcajurao.github.io", - "owner": { - "username": "philcajurao", - "email": "philcajurao@gmail.com" - }, - "record": { - "CNAME": "philcajurao.github.io" - } + "description": "my firstime here and for my portfolio website", + "repo": "https://github.com/philcajurao/philcajurao.github.io", + "owner": { + "username": "philcajurao", + "email": "philcajurao@gmail.com" + }, + "record": { + "CNAME": "philcajurao.github.io" + } } diff --git a/domains/phoenix.json b/domains/phoenix.json new file mode 100644 index 000000000..a3b11cfac --- /dev/null +++ b/domains/phoenix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PhoenixOrigin", + "email": "phoenixorigin171@gmail.com" + }, + "record": { + "A": ["130.162.166.134"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~include:_spf.google.com ~all" + } +} diff --git a/domains/phuc.json b/domains/phuc.json new file mode 100644 index 000000000..8b6c0c700 --- /dev/null +++ b/domains/phuc.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "phucbm", + "email": "phucbm.dev@gmail.com" + }, + "record": { + "URL": "https://buiminhphuc.com" + } +} diff --git a/domains/pi.json b/domains/pi.json new file mode 100644 index 000000000..219fed568 --- /dev/null +++ b/domains/pi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "4pii4", + "email": "naivenevaii@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pic.cfp.json b/domains/pic.cfp.json new file mode 100644 index 000000000..83486ccfd --- /dev/null +++ b/domains/pic.cfp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "cfpwastaken", + "email": "", + "discord": "cfp" + }, + "record": { + "CNAME": "cfp.gotdns.ch" + } +} diff --git a/domains/picklerick.json b/domains/picklerick.json index 51c8ba470..633a17526 100644 --- a/domains/picklerick.json +++ b/domains/picklerick.json @@ -1,11 +1,11 @@ { - "description": "cool stuff", - "repo": "https://github.com/ticklerick/ticklerick.github.io", - "owner": { - "username": "ticklerick", - "email": "pickle@anonemail.net" - }, - "record": { - "CNAME": "ticklerick.github.io" - } + "description": "cool stuff", + "repo": "https://github.com/ticklerick/ticklerick.github.io", + "owner": { + "username": "ticklerick", + "email": "pickle@anonemail.net" + }, + "record": { + "CNAME": "ticklerick.github.io" + } } diff --git a/domains/picloud.json b/domains/picloud.json new file mode 100644 index 000000000..f3184623e --- /dev/null +++ b/domains/picloud.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hb0313", + "email": "hbhandwaldar@gmail.com" + }, + "record": { + "URL": "https://sites.google.com/view/pihome1/home" + } +} diff --git a/domains/pico.json b/domains/pico.json new file mode 100644 index 000000000..90a09d4ef --- /dev/null +++ b/domains/pico.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "wuspicodev", + "email": "wuspico@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/picosvelte.zarqi.json b/domains/picosvelte.zarqi.json new file mode 100644 index 000000000..66bd72ebc --- /dev/null +++ b/domains/picosvelte.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/pie.json b/domains/pie.json new file mode 100644 index 000000000..2931475ac --- /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" + } +} \ No newline at end of file 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/pieter.json b/domains/pieter.json new file mode 100644 index 000000000..7cda41e0c --- /dev/null +++ b/domains/pieter.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PieterDePauw", + "email": "pieter@pieterdepauw.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pike.json b/domains/pike.json new file mode 100644 index 000000000..fbb868a48 --- /dev/null +++ b/domains/pike.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "itsLopcy", + "email": "lopcyorasepele@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pinchese.json b/domains/pinchese.json index 0fc394b29..176b29d81 100644 --- a/domains/pinchese.json +++ b/domains/pinchese.json @@ -1,11 +1,11 @@ { - "description": "a website and portfolio for me and my projects", - "repo": "https://github.com/pinchese/pinchese.github.io", - "owner": { - "username": "pinchese", - "email": "pinchese@protonmail.com" - }, - "record": { - "CNAME": "pinchese.github.io" - } + "description": "a website and portfolio for me and my projects", + "repo": "https://github.com/pinchese/pinchese.github.io", + "owner": { + "username": "pinchese", + "email": "pinchese@protonmail.com" + }, + "record": { + "CNAME": "pinchese.github.io" + } } diff --git a/domains/pingoda.json b/domains/pingoda.json new file mode 100644 index 000000000..bbb9d05d6 --- /dev/null +++ b/domains/pingoda.json @@ -0,0 +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" + } +} diff --git a/domains/pink.json b/domains/pink.json new file mode 100644 index 000000000..4f12e5fec --- /dev/null +++ b/domains/pink.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jamesisacutedog", + "email": "jamezemailreal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pinkyplant.json b/domains/pinkyplant.json new file mode 100644 index 000000000..4f12e5fec --- /dev/null +++ b/domains/pinkyplant.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jamesisacutedog", + "email": "jamezemailreal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pinont.json b/domains/pinont.json index ebeb0fd4c..33575c532 100644 --- a/domains/pinont.json +++ b/domains/pinont.json @@ -1,11 +1,11 @@ { - "description": "My Personal Web.", - "repo": "https://github.com/PinozenTH/PinozenTH.github.io", - "owner": { - "username": "PinozenTH", - "email": "Pinozen.Thailand@gmail.com" - }, - "record": { - "CNAME": "PinozenTH.github.io" - } + "description": "My Personal Web.", + "repo": "https://github.com/PinozenTH/PinozenTH.github.io", + "owner": { + "username": "PinozenTH", + "email": "Pinozen.Thailand@gmail.com" + }, + "record": { + "CNAME": "PinozenTH.github.io" + } } diff --git a/domains/pipc.json b/domains/pipc.json new file mode 100644 index 000000000..2c48c1b36 --- /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..78f76ef66 --- /dev/null +++ b/domains/piplup7575.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Piplup7575", + "email": "piplup7575@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pirate-project.json b/domains/pirate-project.json index 85711ef02..a676b1433 100644 --- a/domains/pirate-project.json +++ b/domains/pirate-project.json @@ -1,12 +1,10 @@ { - "description": "Pirate-Teams server", - "owner": { - "username": "StalkerMeyr", - "email": "andchit223@gmail.com" - }, - "record": { - "A": [ - "185.87.50.120" - ] - } -} + "description": "Pirate-Teams server", + "owner": { + "username": "StalkerMeyr", + "email": "andchit223@gmail.com" + }, + "record": { + "A": ["185.87.50.120"] + } +} diff --git a/domains/pirpal.json b/domains/pirpal.json new file mode 100644 index 000000000..b897f3291 --- /dev/null +++ b/domains/pirpal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "pirpall", + "email": "pirpalss@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pivko.json b/domains/pivko.json index 2fb472b15..b5d03794d 100644 --- a/domains/pivko.json +++ b/domains/pivko.json @@ -1,10 +1,10 @@ { - "description": "AmbassadorGovna website", - "owner": { - "username": "AmbassadorGovna", - "email": "leshikcube+isadev@googlemail.com" - }, - "record": { - "CNAME": "vps162412.ispsite.ru" - } + "description": "AmbassadorGovna website", + "owner": { + "username": "AmbassadorGovna", + "email": "leshikcube+isadev@googlemail.com" + }, + "record": { + "CNAME": "vps162412.ispsite.ru" + } } diff --git a/domains/pixel.json b/domains/pixel.json index 4b558abe2..7cce20e4d 100644 --- a/domains/pixel.json +++ b/domains/pixel.json @@ -1,12 +1,12 @@ { - "description": "BasicPixel's personal website", - "repo": "https://github.com/BasicPixel/basicpixel.github.io", - "owner": { - "username": "BasicPixel", - "email": "osama.mo.qudah@gmail.com", - "twitter": "pqudah" - }, - "record": { - "CNAME": "basicpixel.github.io" - } + "description": "BasicPixel's personal website", + "repo": "https://github.com/BasicPixel/basicpixel.github.io", + "owner": { + "username": "BasicPixel", + "email": "osama.mo.qudah@gmail.com", + "twitter": "pqudah" + }, + "record": { + "CNAME": "basicpixel.github.io" + } } diff --git a/domains/pixeldust.json b/domains/pixeldust.json new file mode 100644 index 000000000..306e2332c --- /dev/null +++ b/domains/pixeldust.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "p1xeldust", + "email": "flutterw1ve@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pixelgeek.json b/domains/pixelgeek.json index 97cf04944..dafa90bd6 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..b65fb5177 --- /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..7f8ea3675 --- /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..fd7bebff6 --- /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..3a5367f35 100644 --- a/domains/pixl8.json +++ b/domains/pixl8.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "pixl8dev", "email": "judah.cs08@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "pixl8dev.github.io" - } } - \ No newline at end of file +} diff --git a/domains/pixyshare.json b/domains/pixyshare.json new file mode 100644 index 000000000..c8d815471 --- /dev/null +++ b/domains/pixyshare.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "emmu123", + "email": "aneenababu71901@gmail.com" + }, + "record": { + "CNAME": "3603c299-03cd-4a0c-b29f-24250c6e7354.id.repl.co" + } +} diff --git a/domains/piyush.json b/domains/piyush.json index 175077ef7..ac8615740 100644 --- a/domains/piyush.json +++ b/domains/piyush.json @@ -1,10 +1,10 @@ { - "description": "Piyush's Website", - "owner": { - "username": "officialpiyush", - "email": "bhangalepiyush@gmail.com" - }, - "record": { - "URL": "https://officialpiyush.github.io" - } + "description": "Piyush's Website", + "owner": { + "username": "officialpiyush", + "email": "bhangalepiyush@gmail.com" + }, + "record": { + "URL": "https://officialpiyush.github.io" + } } diff --git a/domains/piyushrb.json b/domains/piyushrb.json new file mode 100644 index 000000000..0fefa215f --- /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/pknw1.json b/domains/pknw1.json new file mode 100644 index 000000000..c6f0d0edd --- /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..07852e74a --- /dev/null +++ b/domains/plague.json @@ -0,0 +1,12 @@ +{ + "description": "My souper personal domain.", + "repo": "https://github.com/pl4g/pl4g.github.io", + "owner": { + "username": "pl4g", + "email": "viniciuslucianocardoso@gmail.com", + "discord": "plague🥣#8408" + }, + "record": { + "CNAME": "pl4g.github.io" + } +} diff --git a/domains/plexus.json b/domains/plexus.json new file mode 100644 index 000000000..154a9350e --- /dev/null +++ b/domains/plexus.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "angelwarelmao", + "email": "asdjaflmao@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/plopilpy.json b/domains/plopilpy.json index 43178d678..e592c94d0 100644 --- a/domains/plopilpy.json +++ b/domains/plopilpy.json @@ -1,12 +1,12 @@ { - "description": "My personal page, where I demonstrate some HTML and JS", - "repo": "https://github.com/plopilpy/plopilpy.github.io", - "owner": { - "username": "plopilpy", - "email": "plopilpy@tazzy.ca", - "twitter": "plopilpy" - }, - "record": { - "CNAME": "plopilpy.github.io" - } + "description": "My personal page, where I demonstrate some HTML and JS", + "repo": "https://github.com/plopilpy/plopilpy.github.io", + "owner": { + "username": "plopilpy", + "email": "plopilpy@tazzy.ca", + "twitter": "plopilpy" + }, + "record": { + "CNAME": "plopilpy.github.io" + } } diff --git a/domains/pls.json b/domains/pls.json new file mode 100644 index 000000000..8e5ef7106 --- /dev/null +++ b/domains/pls.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "plszz", + "email": "itsplsdev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/plumaxe.json b/domains/plumaxe.json new file mode 100644 index 000000000..600b3b521 --- /dev/null +++ b/domains/plumaxe.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Firewoork", + "email": "iaintflxzra122@gmail.com" + }, + "record": { + "CNAME": "Plumaxe.github.io" + } +} diff --git a/domains/plun.json b/domains/plun.json index 678139655..601b90c33 100644 --- a/domains/plun.json +++ b/domains/plun.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "plun1331", "email": "plun1331@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "plun.pages.dev" - } } - \ No newline at end of file +} diff --git a/domains/plush.json b/domains/plush.json new file mode 100644 index 000000000..725cda352 --- /dev/null +++ b/domains/plush.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Plushhh", + "email": "umer.farooq0@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pmint05.json b/domains/pmint05.json index d2ae09e84..90e31ccbb 100644 --- a/domains/pmint05.json +++ b/domains/pmint05.json @@ -9,4 +9,4 @@ "record": { "CNAME": "pmint05.github.io" } -} +} diff --git a/domains/pndaboi.json b/domains/pndaboi.json index 6ac168f10..4dd3c19a7 100644 --- a/domains/pndaboi.json +++ b/domains/pndaboi.json @@ -1,12 +1,12 @@ { - "description": "PndaBoi's Website!", - "repo": "https://github.com/PndaBoi/pndaboi.github.io", - "owner": { - "username": "PndaBoi", - "email": "vareshplayzyt@gmail.com", - "discord": "ΞGØ〢⎝⎝✧Varesh Here✧⎠⎠#9890" - }, - "record": { - "CNAME": "pndaboi.github.io" - } + "description": "PndaBoi's Website!", + "repo": "https://github.com/PndaBoi/pndaboi.github.io", + "owner": { + "username": "PndaBoi", + "email": "vareshplayzyt@gmail.com", + "discord": "ΞGØ〢⎝⎝✧Varesh Here✧⎠⎠#9890" + }, + "record": { + "CNAME": "pndaboi.github.io" + } } diff --git a/domains/poetry.m1dnight.json b/domains/poetry.m1dnight.json new file mode 100644 index 000000000..cd695ac16 --- /dev/null +++ b/domains/poetry.m1dnight.json @@ -0,0 +1,11 @@ +{ + "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/poked.json b/domains/poked.json index fbd34b6d6..2efc35294 100644 --- a/domains/poked.json +++ b/domains/poked.json @@ -1,13 +1,13 @@ { - "description": "poked.is-a.dev", - "repo": "https://github.com/PokedArmory/PokedArmory.github.io", - "owner": { - "username": "PokedArmory", - "email": "poked.armory@gmail.com", - "discord": "Poked_Armory#0001", - "twitter": "@PokedWasTaken" - }, - "record": { - "CNAME": "PokedArmory.github.io" - } + "description": "poked.is-a.dev", + "repo": "https://github.com/PokedArmory/PokedArmory.github.io", + "owner": { + "username": "PokedArmory", + "email": "poked.armory@gmail.com", + "discord": "Poked_Armory#0001", + "twitter": "PokedWasTaken" + }, + "record": { + "CNAME": "PokedArmory.github.io" + } } diff --git a/domains/polars.json b/domains/polars.json new file mode 100644 index 000000000..3caafd120 --- /dev/null +++ b/domains/polars.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pol-ars", + "email": "tariqsaedbusiness@outlook.com" + }, + "record": { + "CNAME": "pol-ars.github.io" + } +} diff --git a/domains/poliwhirl.json b/domains/poliwhirl.json new file mode 100644 index 000000000..1d8bc3bc4 --- /dev/null +++ b/domains/poliwhirl.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MattiaCro", + "email": "mattia.crosato@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/polopro.json b/domains/polopro.json index fbfac54f5..c2e582cf0 100644 --- a/domains/polopro.json +++ b/domains/polopro.json @@ -1,11 +1,11 @@ { - "description": "polo pro", - "repo": "https://github.com/polo-1245-oficial/polo-1245-oficial.github.io", - "owner": { - "username": "polo-1245-oficial", - "email": "contacto@polo1245.es" - }, - "record": { - "CNAME": "polo-1245-oficial.github.io" - } + "description": "polo pro", + "repo": "https://github.com/polo-1245-oficial/polo-1245-oficial.github.io", + "owner": { + "username": "polo-1245-oficial", + "email": "contacto@polo1245.es" + }, + "record": { + "CNAME": "polo-1245-oficial.github.io" + } } diff --git a/domains/polosteor.json b/domains/polosteor.json new file mode 100644 index 000000000..29f69c7c7 --- /dev/null +++ b/domains/polosteor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "polosteor", + "email": "polosteor@gmail.com" + }, + "record": { + "URL": "https://polosteor.com" + } +} diff --git a/domains/polygon6233.json b/domains/polygon6233.json new file mode 100644 index 000000000..6a85ec40e --- /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/polytap.json b/domains/polytap.json new file mode 100644 index 000000000..4f7a08b88 --- /dev/null +++ b/domains/polytap.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hacktron86", + "email": "hacktron86@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/popcorn.json b/domains/popcorn.json new file mode 100644 index 000000000..cd359fae1 --- /dev/null +++ b/domains/popcorn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "POPCORNTVCZE", + "email": "popcorntvcze@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/poppy.json b/domains/poppy.json new file mode 100644 index 000000000..f00d75407 --- /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/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/portal-slot-gacor.json b/domains/portal-slot-gacor.json deleted file mode 100644 index 2c890b57b..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/posandu.json b/domains/posandu.json index 967592d15..5f9c83a1a 100644 --- a/domains/posandu.json +++ b/domains/posandu.json @@ -1,12 +1,12 @@ { - "description": "My Portfolio", - "repo": "https://github.com/Posandu/posandu.github.io", - "owner": { - "username": "posandu", - "email": "posandumapa@gmail.com", - "twitter": "posandu" - }, - "record": { - "CNAME": "posandu.github.io" - } + "description": "My Portfolio", + "repo": "https://github.com/Posandu/posandu.github.io", + "owner": { + "username": "posandu", + "email": "posandumapa@gmail.com", + "twitter": "posandu" + }, + "record": { + "CNAME": "posandu.github.io" + } } diff --git a/domains/potato.json b/domains/potato.json new file mode 100644 index 000000000..aea5d4b24 --- /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..af8a19b9b --- /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/potatoenergy.json b/domains/potatoenergy.json new file mode 100644 index 000000000..03fc64d70 --- /dev/null +++ b/domains/potatoenergy.json @@ -0,0 +1,11 @@ +{ + "description": "Potato Energy Team Website", + "repo": "https://github.com/potatoenergy/potatoenergy.site", + "owner": { + "username": "ponfertato", + "email": "ponfertato@ya.ru" + }, + "record": { + "CNAME": "potatoenergy.pages.dev" + } +} diff --git a/domains/potatoland4492.json b/domains/potatoland4492.json index 8f3f2255f..f61e048f5 100644 --- a/domains/potatoland4492.json +++ b/domains/potatoland4492.json @@ -1,11 +1,11 @@ { - "description": "A personal site for all my projects.", - "repo": "https://github.com/potatoland4492/potatoland4492.github.io", - "owner": { - "username": "potatoland4492", - "email": "potatoland4492@gmail.com" - }, - "record": { - "CNAME": "potatoland4492.github.io" - } + "description": "A personal site for all my projects.", + "repo": "https://github.com/potatoland4492/potatoland4492.github.io", + "owner": { + "username": "potatoland4492", + "email": "potatoland4492@gmail.com" + }, + "record": { + "CNAME": "potatoland4492.github.io" + } } diff --git a/domains/poyo.json b/domains/poyo.json new file mode 100644 index 000000000..3866fe1d3 --- /dev/null +++ b/domains/poyo.json @@ -0,0 +1,11 @@ +{ + "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..0e16b4ba3 --- /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 index ad579fc9b..5e6839946 100644 --- a/domains/pplg.json +++ b/domains/pplg.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "Jantur-dev", - "email": "null" - }, - "record": { - "CNAME": "neks-production.up.railway.app" - } + "email": "jantur29@gmail.com" + }, + "record": { + "CNAME": "d46b1013-50ed-4f41-b75e-3961b2b9aad6.id.repl.co" } - \ No newline at end of file +} diff --git a/domains/ppy.json b/domains/ppy.json new file mode 100644 index 000000000..960b2f8c4 --- /dev/null +++ b/domains/ppy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ringo360", + "email": "nep360i@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pr.whine.json b/domains/pr.whine.json index 8994675cf..f3a39a96e 100644 --- a/domains/pr.whine.json +++ b/domains/pr.whine.json @@ -1,8 +1,8 @@ { "owner": { - "username": "whinee", - "email": "", - "twitter": "whi_nyaan" + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" }, "description": "whi_ne's projects' subdomain", "record": { diff --git a/domains/pr0k41.json b/domains/pr0k41.json new file mode 100644 index 000000000..f7b8961c4 --- /dev/null +++ b/domains/pr0k41.json @@ -0,0 +1,11 @@ +{ + "description": "Prokai's Website", + "repo": "https://github.com/pr0k41/pr0k41.github.io", + "owner": { + "username": "pr0k41", + "email": "pr0k41@proton.me" + }, + "record": { + "CNAME": "pr0k41.github.io" + } +} diff --git a/domains/prabesh.json b/domains/prabesh.json new file mode 100644 index 000000000..2d74d22c1 --- /dev/null +++ b/domains/prabesh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Prabesh01", + "email": "prabesh01@pm.me" + }, + + "record": { + "A": ["91.208.197.189"] + } +} diff --git a/domains/prabhakaranjm.json b/domains/prabhakaranjm.json index c70092f41..5f621eace 100644 --- a/domains/prabhakaranjm.json +++ b/domains/prabhakaranjm.json @@ -1,11 +1,11 @@ { - "description": "Prabhakaran J M is a dev", - "repo": "https://github.com/prajaymas/prajaymas.github.io", - "owner": { - "username": "prabhakaranjm", - "email": "prabhakaran.jm@gmail.com" - }, - "record": { - "CNAME": "prajaymas.github.io" - } + "description": "Prabhakaran J M is a dev", + "repo": "https://github.com/prajaymas/prajaymas.github.io", + "owner": { + "username": "prabhakaranjm", + "email": "prabhakaran.jm@gmail.com" + }, + "record": { + "CNAME": "prajaymas.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 d97b20bc7..9dd64045e 100644 --- a/domains/prabin.json +++ b/domains/prabin.json @@ -1,11 +1,11 @@ { - "description": "Personal Web", - "repo": "https://github.com/prabincankod/prabincankod.github.io", - "owner": { - "username": "prabincankod", - "email": "prabinsubedi2016@gmail.com" - }, - "record": { - "URL":"https://prabin.tech" - } + "description": "Personal Web", + "repo": "https://github.com/prabincankod/prabincankod.github.io", + "owner": { + "username": "prabincankod", + "email": "prabinsubedi2016@gmail.com" + }, + "record": { + "URL": "https://prabincankod.me" + } } diff --git a/domains/prachiti.json b/domains/prachiti.json new file mode 100644 index 000000000..e35588040 --- /dev/null +++ b/domains/prachiti.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PrathameshhW", + "email": "prathameshj0407@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/practical.json b/domains/practical.json new file mode 100644 index 000000000..b4b759510 --- /dev/null +++ b/domains/practical.json @@ -0,0 +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" + } +} diff --git a/domains/pradeepvarma22.json b/domains/pradeepvarma22.json new file mode 100644 index 000000000..25697503c --- /dev/null +++ b/domains/pradeepvarma22.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/pradeepvarma22/pradeepvarma22.github.io", + "owner": { + "username": "pradeepvarma22", + "email": "pradeepnadimpalli22@gmail.com" + }, + "record": { + "CNAME": "pradeepvarma22.github.io" + } +} diff --git a/domains/prafit.json b/domains/prafit.json new file mode 100644 index 000000000..11586dd95 --- /dev/null +++ b/domains/prafit.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ExRonin", + "email": "palvido81@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/prajapati-divya.json b/domains/prajapati-divya.json new file mode 100644 index 000000000..78f4ee9fc --- /dev/null +++ b/domains/prajapati-divya.json @@ -0,0 +1,11 @@ +{ + "description": "Divya profile.", + "repo": "https://github.com/prajapati-divya/prajapati-divya.github.io", + "owner": { + "username": "prajapati-divya", + "email": "" + }, + "record": { + "CNAME": "prajapati-divya.github.io" + } +} diff --git a/domains/prajjwal.json b/domains/prajjwal.json new file mode 100644 index 000000000..edfc2aad1 --- /dev/null +++ b/domains/prajjwal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CycloneAddons", + "email": "cycloneaddon@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/prakarsh.json b/domains/prakarsh.json new file mode 100644 index 000000000..b1abc3a3d --- /dev/null +++ b/domains/prakarsh.json @@ -0,0 +1,11 @@ +{ + "description": "My personal Website (maybe my portfolio)", + "repo": "https://github.com/prakarsh17/prakarsh17.github.io", + "owner": { + "username": "prakarsh17", + "email": "pranjal.prakarsh@outlook.com" + }, + "record": { + "CNAME": "prakarsh17.github.io" + } +} diff --git a/domains/prakhar.json b/domains/prakhar.json index 787d31479..70df75990 100644 --- a/domains/prakhar.json +++ b/domains/prakhar.json @@ -1,11 +1,11 @@ { - "description": "Prakhar| Portfolio", - "repo": "https://github.com/Prakhar-commits.github.io", - "owner": { - "username": "Prakhar-commits", - "email": "prakharb56@gmail.com" - }, - "record": { - "CNAME": "Prakhar-commits.github.io" - } + "description": "Prakhar| Portfolio", + "repo": "https://github.com/Prakhar-commits.github.io", + "owner": { + "username": "Prakhar-commits", + "email": "prakharb56@gmail.com" + }, + "record": { + "CNAME": "Prakhar-commits.github.io" + } } diff --git a/domains/prakhillohiya.json b/domains/prakhillohiya.json new file mode 100644 index 000000000..13f1f6378 --- /dev/null +++ b/domains/prakhillohiya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prakhillohiya", + "email": "prakhillohiya@gmail.com" + }, + "record": { + "CNAME": "prakhillohiya.github.io" + } +} \ No newline at end of file diff --git a/domains/pramod-rawat.json b/domains/pramod-rawat.json new file mode 100644 index 000000000..897a81b04 --- /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..664e253e2 --- /dev/null +++ b/domains/pranavagrawal.json @@ -0,0 +1,14 @@ +{ + "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": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/pranavsaxena.json b/domains/pranavsaxena.json index f5af52703..efa1c38e7 100644 --- a/domains/pranavsaxena.json +++ b/domains/pranavsaxena.json @@ -1,12 +1,12 @@ { - "description": "Pranav Saxena's Personal Website", - "repo": "https://github.com/Pranav-Saxena/Pranav-Saxena.github.io", - "owner": { - "username": "Pranav-Saxena", - "email": "pranavsaxena155@gmail.com", - "discord": "PRANAV SAXENA#9327" - }, - "record": { - "CNAME": "Pranav-Saxena.github.io" - } + "description": "Pranav Saxena's Personal Website", + "repo": "https://github.com/Pranav-Saxena/Pranav-Saxena.github.io", + "owner": { + "username": "Pranav-Saxena", + "email": "pranavsaxena155@gmail.com", + "discord": "PRANAV SAXENA#9327" + }, + "record": { + "CNAME": "Pranav-Saxena.github.io" + } } diff --git a/domains/pranjal.json b/domains/pranjal.json new file mode 100644 index 000000000..dcd951e58 --- /dev/null +++ b/domains/pranjal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Pranjal-SB", + "email": "psbhatnagar.in@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/praquron.json b/domains/praquron.json new file mode 100644 index 000000000..e6f9ed345 --- /dev/null +++ b/domains/praquron.json @@ -0,0 +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" + } +} 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/prasadsawant.json b/domains/prasadsawant.json new file mode 100644 index 000000000..041840f36 --- /dev/null +++ b/domains/prasadsawant.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "prasadsawant7", + "email": "prasadsawant7git@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/prateek.json b/domains/prateek.json index 78637d0ec..df64be6fe 100644 --- a/domains/prateek.json +++ b/domains/prateek.json @@ -9,4 +9,4 @@ "record": { "CNAME": "prateek-chaubey.github.io" } -} +} diff --git a/domains/pratham-gupta.json b/domains/pratham-gupta.json new file mode 100644 index 000000000..5cdff0cdb --- /dev/null +++ b/domains/pratham-gupta.json @@ -0,0 +1,10 @@ +{ + "owner":{ + "username":"shygamer123", + "email":"gpratham522@gmail.com", + "discord":"840244590870003762" + }, + "record":{ + "A":["69.30.249.53"] + } + } \ No newline at end of file diff --git a/domains/prathamesh.json b/domains/prathamesh.json new file mode 100644 index 000000000..e35588040 --- /dev/null +++ b/domains/prathamesh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PrathameshhW", + "email": "prathameshj0407@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pratike-patel.json b/domains/pratike-patel.json new file mode 100644 index 000000000..5732b2114 --- /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..0db647f19 --- /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..97cd353dd --- /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/pratyay.json b/domains/pratyay.json index 4de110802..f15e09003 100644 --- a/domains/pratyay.json +++ b/domains/pratyay.json @@ -1,11 +1,11 @@ { - "description": "Pratyay's portfolio website and blog", - "repo": "https://github.com/x3nosiz", - "owner": { - "username": "x3nosiz", - "email": "neilblaze007@gmail.com" - }, - "record": { - "CNAME": "neilblaze.github.io" - } + "description": "Pratyay's portfolio website and blog", + "repo": "https://github.com/x3nosiz", + "owner": { + "username": "x3nosiz", + "email": "neilblaze007@gmail.com" + }, + "record": { + "CNAME": "neilblaze.github.io" + } } 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.json b/domains/praveen.json index 128459810..22b60f6bb 100644 --- a/domains/praveen.json +++ b/domains/praveen.json @@ -1,11 +1,11 @@ { - "description": "Praveen's personal developer website", - "repo": "https://github.com/PraveenPal4232", - "owner": { - "username": "PraveenPal4232", - "email": "praveenpal4232@gmail.com" - }, - "record": { - "CNAME": "praveenpal4232.github.io" - } + "description": "Praveen's personal developer website", + "repo": "https://github.com/PraveenPal4232", + "owner": { + "username": "PraveenPal4232", + "email": "praveenpal4232@gmail.com" + }, + "record": { + "CNAME": "praveenpal4232.github.io" + } } diff --git a/domains/predefine.json b/domains/predefine.json new file mode 100644 index 000000000..38cad70a7 --- /dev/null +++ b/domains/predefine.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "predefine", + "email": "predefine@yandex.ru" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/preview.beta.json b/domains/preview.beta.json deleted file mode 100644 index 5f14074df..000000000 --- a/domains/preview.beta.json +++ /dev/null @@ -1,11 +0,0 @@ - - { - "owner": { - "username": "andrewstech", - "email": "andrew@win11react.com" - }, - "record": { - "CNAME": "is-a-dev-bot.github.io" - } - } - diff --git a/domains/prharshith.json b/domains/prharshith.json new file mode 100644 index 000000000..db0b2efac --- /dev/null +++ b/domains/prharshith.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "prharshith", + "email": "prharshith37@gmail.com", + "twitter": "prharshith37" + }, + "record": { + "CNAME": "prharshith.pages.dev" + } +} \ No newline at end of file diff --git a/domains/pricing.syntaxloopers.json b/domains/pricing.syntaxloopers.json new file mode 100644 index 000000000..324dfe7e2 --- /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..63f2620ed --- /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/pringelsdc.json b/domains/pringelsdc.json new file mode 100644 index 000000000..fbcbf05e7 --- /dev/null +++ b/domains/pringelsdc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Bot-Dev1", + "email": "julia.hillmann123@gmail.com" + }, + + "record": { + "A": ["45.145.226.13"] + } +} diff --git a/domains/priti-shide.json b/domains/priti-shide.json new file mode 100644 index 000000000..14d7c5b48 --- /dev/null +++ b/domains/priti-shide.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio.", + "repo": "https://github.com/priti-shide/priti-shide.github.io", + "owner": { + "username": "priti-shide", + "email": "" + }, + "record": { + "CNAME": "priti-shide.github.io" + } +} diff --git a/domains/privacy.json b/domains/privacy.json index 0a5b665be..e080ed5f4 100644 --- a/domains/privacy.json +++ b/domains/privacy.json @@ -1,26 +1,11 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev.technicalservices@beadman-network.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=privacy.isdev.localplayer.dev" - } +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "URL": "https://team.is-a.dev", + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + "TXT": "forward-email=isdevmail.beadman-network.com,andrew@win11react.com" } - +} diff --git a/domains/priyanka.json b/domains/priyanka.json new file mode 100644 index 000000000..de010a275 --- /dev/null +++ b/domains/priyanka.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PriyankaAnantha", + "email": "priyankaananthashetty@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/priyansh.json b/domains/priyansh.json index 10bec5dc3..c865ab4c0 100644 --- a/domains/priyansh.json +++ b/domains/priyansh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "priyanshprajapat", - "email": "priy@nsh.is-a.dev" - }, - "record": { - "CNAME": "priyansh.pages.dev" - } + "owner": { + "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..5d59c0e6d --- /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/priyas-rana.json b/domains/priyas-rana.json new file mode 100644 index 000000000..6a8f29a3d --- /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..8ca701b71 100644 --- a/domains/prnice.json +++ b/domains/prnice.json @@ -8,4 +8,4 @@ "record": { "URL": "https://portfolio.prnice.me" } -} \ No newline at end of file +} diff --git a/domains/pro.json b/domains/pro.json new file mode 100644 index 000000000..c4e85b6f2 --- /dev/null +++ b/domains/pro.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "pro1492025", + "email": "pro1492025@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/proautotest.json b/domains/proautotest.json new file mode 100644 index 000000000..3fa09b421 --- /dev/null +++ b/domains/proautotest.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "XeeRooX", + "email": "akkaunt7931@gmail.com" + }, + "record": { + "A": ["92.119.90.217"] + } +} diff --git a/domains/probir-sarkar.json b/domains/probir-sarkar.json new file mode 100644 index 000000000..199f0e6e0 --- /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/prodefix.json b/domains/prodefix.json new file mode 100644 index 000000000..e6e8d9236 --- /dev/null +++ b/domains/prodefix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PRODEFIX", + "email": "prodefix.ytb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/profile.json b/domains/profile.json new file mode 100644 index 000000000..4945af1f9 --- /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/proghead00.json b/domains/proghead00.json index 9f4244f5a..7b12011ef 100644 --- a/domains/proghead00.json +++ b/domains/proghead00.json @@ -1,11 +1,11 @@ { - "description": "Susnata's is.a.dev domain!", - "repo": "https://github.com/proghead00/proghead00.github.io", - "owner": { - "username": "proghead00", - "email": "susnata00@gmail.com" - }, - "record": { - "CNAME": "proghead00.github.io" - } + "description": "Susnata's is.a.dev domain!", + "repo": "https://github.com/proghead00/proghead00.github.io", + "owner": { + "username": "proghead00", + "email": "susnata00@gmail.com" + }, + "record": { + "CNAME": "proghead00.github.io" + } } diff --git a/domains/projakob.json b/domains/projakob.json index 69fbf3a70..4c309bde4 100644 --- a/domains/projakob.json +++ b/domains/projakob.json @@ -1,12 +1,10 @@ { - "owner": { - "username": "ProJakob", - "email": "", - "discord": "ProJakob#0408" - }, - "record": { - "A": [ - "152.89.239.58" - ] - } + "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..4cd7a7415 --- /dev/null +++ b/domains/projassets.oxmc.json @@ -0,0 +1,12 @@ +{ + "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/projects.catzboy.json b/domains/projects.catzboy.json index b3aae05fb..b8922239b 100644 --- a/domains/projects.catzboy.json +++ b/domains/projects.catzboy.json @@ -1,11 +1,11 @@ { - "description": "Showcase All My Projects", - "repo": "https://github.com/Maruful007/Maruful007.github.io", - "owner": { - "username": "Maruful007", - "email": "marufulislamsami2007@gmail.com" - }, - "record": { - "CNAME": "maruful007.github.io" - } + "description": "Showcase All My Projects", + "repo": "https://github.com/Maruful007/Maruful007.github.io", + "owner": { + "username": "Maruful007", + "email": "marufulislamsami2007@gmail.com" + }, + "record": { + "CNAME": "maruful007.github.io" + } } diff --git a/domains/prokai-kun.json b/domains/prokai-kun.json index ec39000f2..ef272143e 100644 --- a/domains/prokai-kun.json +++ b/domains/prokai-kun.json @@ -1,11 +1,11 @@ { - "description": "Iakorp's Website", - "repo": "https://github.com/IAKORP/IAKORP.github.io", - "owner": { - "username": "IAKORP", - "email": "prokaiindo003@gmail.com" - }, - "record": { - "CNAME": "IAKORP.github.io" - } + "description": "Iakorp's Website", + "repo": "https://github.com/IAKORP/IAKORP.github.io", + "owner": { + "username": "IAKORP", + "email": "prokaiindo003@gmail.com" + }, + "record": { + "CNAME": "IAKORP.github.io" + } } diff --git a/domains/prokai.json b/domains/prokai.json index db81f3f49..32beedb29 100644 --- a/domains/prokai.json +++ b/domains/prokai.json @@ -1,11 +1,11 @@ { - "description": "Prokai's Website", - "repo": "https://github.com/pr0k41/pr0k41.github.io", - "owner": { - "username": "pr0k41", - "email": "prokai321@gmail.com" - }, - "record": { - "CNAME": "pr0k41.github.io" - } + "description": "Iakorp's Website", + "repo": "https://github.com/14k0rp/14k0rp.github.io", + "owner": { + "username": "14k0rp", + "email": "iakorp@protonmail.com" + }, + "record": { + "CNAME": "14k0rp.github.io" + } } diff --git a/domains/pronicio.json b/domains/pronicio.json new file mode 100644 index 000000000..89ede88ba --- /dev/null +++ b/domains/pronicio.json @@ -0,0 +1,12 @@ +{ + "description": "Pronicio's Portfolio", + "repo": "https://github.com/Pronicio", + "owner": { + "username": "Pronicio", + "email": "pronicio.contact@gmail.com", + "twitter": "Pronicio_dev" + }, + "record": { + "CNAME": "portfolio-5s1.pages.dev" + } +} diff --git a/domains/proo.json b/domains/proo.json new file mode 100644 index 000000000..c4e85b6f2 --- /dev/null +++ b/domains/proo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "pro1492025", + "email": "pro1492025@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/prototalk.json b/domains/prototalk.json new file mode 100644 index 000000000..2a071ccd7 --- /dev/null +++ b/domains/prototalk.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "micho137", + "email": "michaenrangelmr@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/proudmuslim.json b/domains/proudmuslim.json index b4b1c4585..b74ffdd21 100644 --- a/domains/proudmuslim.json +++ b/domains/proudmuslim.json @@ -1,12 +1,10 @@ { - "description": "", - "repo": "https://github.com/proudmuslim-dev/proudmuslim-dev.github.io", - "owner": { - "username": "proudmuslim-dev", - "email": "proudmuslim-dev@protonmail.com" - }, - "record": { - "CNAME": "proudmuslim-dev.github.io" - } + "repo": "https://github.com/proudmuslim-dev/proudmuslim-dev.github.io", + "owner": { + "username": "proudmuslim-dev", + "email": "proudmuslim-dev@protonmail.com" + }, + "record": { + "CNAME": "proudmuslim-dev.github.io" + } } - diff --git a/domains/prox.json b/domains/prox.json new file mode 100644 index 000000000..c4e85b6f2 --- /dev/null +++ b/domains/prox.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "pro1492025", + "email": "pro1492025@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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.json b/domains/proxy.json index 450416a95..4e727a6f5 100644 --- a/domains/proxy.json +++ b/domains/proxy.json @@ -1,11 +1,11 @@ { - "description": "Ultraviolet proxy", - "repo": "https://github.com/notAperson535/Ultraviolet-Static", - "owner": { - "username": "notAperson535", - "email": "notAperson939@gmail.com" - }, - "record": { - "CNAME": "notAperson535.github.io" - } + "description": "Ultraviolet proxy", + "repo": "https://github.com/notAperson535/Ultraviolet-Static", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } } diff --git a/domains/proxyjohnny.json b/domains/proxyjohnny.json new file mode 100644 index 000000000..ab31877db --- /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..fd035180a 100644 --- a/domains/proxzima.json +++ b/domains/proxzima.json @@ -10,4 +10,4 @@ "record": { "CNAME": "proxzima.github.io" } -} +} diff --git a/domains/prozt.json b/domains/prozt.json index f2bffbdb5..a33da8d92 100644 --- a/domains/prozt.json +++ b/domains/prozt.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "TechPro709", - "email": "prozt709@gmail.com" - }, - "record": { - "CNAME": "techpro709.github.io" - } + "owner": { + "username": "TechPro709", + "email": "prozt709@gmail.com" + }, + "record": { + "CNAME": "techpro709.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..a4e5ac574 --- /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..4c1aceb51 100644 --- a/domains/psicmi.json +++ b/domains/psicmi.json @@ -6,4 +6,4 @@ "record": { "CNAME": "psicmi.win" } -} +} diff --git a/domains/psj.json b/domains/psj.json index 5514a9335..0928e3ca2 100644 --- a/domains/psj.json +++ b/domains/psj.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "philphirn", - "email": "locusapp1@gmail.com" - }, - "record": { - "CNAME": "philphirn.github.io" - } + "owner": { + "username": "philphirn", + "email": "locusapp1@gmail.com" + }, + "record": { + "CNAME": "philphirn.github.io" + } } diff --git a/domains/psy.json b/domains/psy.json index 8b6da6e21..561261035 100644 --- a/domains/psy.json +++ b/domains/psy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ensyde", - "email": "ensyde0@gmail.com" - }, - "record": { - "URL": "https://github.com/ensyde" - } + "owner": { + "username": "ensyde", + "email": "ensyde0@gmail.com" + }, + "record": { + "URL": "https://github.com/ensyde" + } } 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/puchikat.json b/domains/puchikat.json new file mode 100644 index 000000000..33993fd19 --- /dev/null +++ b/domains/puchikat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kentjuno7z", + "email": "lamdev1212@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/puffer.json b/domains/puffer.json new file mode 100644 index 000000000..a3145c5c7 --- /dev/null +++ b/domains/puffer.json @@ -0,0 +1,12 @@ +{ + "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/puria.json b/domains/puria.json new file mode 100644 index 000000000..8e104b237 --- /dev/null +++ b/domains/puria.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CoderApuri", + "email": "puri.aarav@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/pushpak.json b/domains/pushpak.json new file mode 100644 index 000000000..c23914315 --- /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/pxd.json b/domains/pxd.json new file mode 100644 index 000000000..9bb08d9c7 --- /dev/null +++ b/domains/pxd.json @@ -0,0 +1,12 @@ +{ + "description": "ProgrammerXD", + "repo": "https://github.com/realpxd/realpxd.github.io", + "owner": { + "username": "realpxd", + "email": "contact@pxdcloud.in", + "twitter": "PXD_Officials" + }, + "record": { + "CNAME": "realpxd.github.io" + } +} diff --git a/domains/pxseu.json b/domains/pxseu.json index fcaf57524..707ab0c6f 100644 --- a/domains/pxseu.json +++ b/domains/pxseu.json @@ -1,11 +1,11 @@ { - "description": "Pxseu's website!", - "owner": { - "username": "pxseu", - "email": "", - "twitter": "@pxseu" - }, - "record": { - "URL": "https://www.pxseu.com" - } + "description": "Pxseu's website!", + "owner": { + "username": "pxseu", + "email": "", + "twitter": "pxseu" + }, + "record": { + "URL": "https://www.pxseu.com" + } } diff --git a/domains/pyro.json b/domains/pyro.json index 194a0fb34..7abe97d1b 100644 --- a/domains/pyro.json +++ b/domains/pyro.json @@ -1,11 +1,11 @@ { - "description": "pyro's portfolio", - "repo": "https://github.com/pyroisgamer.github.io", - "owner": { - "username": "pyroisgamer", - "email": "pyroisgamer@outlook.com" - }, - "record": { - "CNAME": "pyroisgamer.github.io" - } + "description": "pyro's portfolio", + "repo": "https://github.com/pyroisgamer.github.io", + "owner": { + "username": "pyroisgamer", + "email": "pyroisgamer@outlook.com" + }, + "record": { + "CNAME": "pyroisgamer.github.io" + } } diff --git a/domains/pythonplumber.json b/domains/pythonplumber.json new file mode 100644 index 000000000..6ea715d01 --- /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..70c99e17e --- /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 new file mode 100644 index 000000000..11a18f95e --- /dev/null +++ b/domains/pyve.json @@ -0,0 +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" + } +} diff --git a/domains/q31265503-bio.json b/domains/q31265503-bio.json new file mode 100644 index 000000000..59294b2fd --- /dev/null +++ b/domains/q31265503-bio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "artfadeev40", + "email": "fedulai195@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/q31265503.json b/domains/q31265503.json new file mode 100644 index 000000000..59294b2fd --- /dev/null +++ b/domains/q31265503.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "artfadeev40", + "email": "fedulai195@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/qhungg289.json b/domains/qhungg289.json new file mode 100644 index 000000000..80bef1b7f --- /dev/null +++ b/domains/qhungg289.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "qhungg289", + "email": "qhungg289@proton.me" + }, + "repo": "https://github.com/qhungg289/qhungg289.github.io", + "record": { + "CNAME": "qhungg289.github.io" + } +} diff --git a/domains/qing762.json b/domains/qing762.json new file mode 100644 index 000000000..df35b7962 --- /dev/null +++ b/domains/qing762.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "qing762", + "email": "threatedblade@outlook.com" + }, + "record": { + "CNAME": "qing-website.onrender.com" + } +} \ No newline at end of file diff --git a/domains/qnos.json b/domains/qnos.json index 18d3fc039..0c11924d6 100644 --- a/domains/qnos.json +++ b/domains/qnos.json @@ -1,11 +1,11 @@ { - "description": "Qnos`s profile", - "repo": "https://github.com/Qnos41/qnos.git", - "owner": { - "username": "Qnos", - "email": "qnos237@gmail.com" - }, - "record": { - "CNAME": "qnos41.github.io" - } + "description": "Qnos`s profile", + "repo": "https://github.com/Qnos41/qnos.git", + "owner": { + "username": "Qnos", + "email": "qnos237@gmail.com" + }, + "record": { + "CNAME": "qnos41.github.io" + } } diff --git a/domains/qqg00.json b/domains/qqg00.json new file mode 100644 index 000000000..1651c390a --- /dev/null +++ b/domains/qqg00.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ppg00", + "email": "vx2dsk@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/quantamphysics.json b/domains/quantamphysics.json new file mode 100644 index 000000000..94ebbc75e --- /dev/null +++ b/domains/quantamphysics.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Quantamyt", + "email": "Sujataghosal05@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/quartz.json b/domains/quartz.json new file mode 100644 index 000000000..72d3a1100 --- /dev/null +++ b/domains/quartz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thecrazytech1", + "email": "chrissquartz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/queirozt.json b/domains/queirozt.json index a5387a1dc..3844daa3a 100644 --- a/domains/queirozt.json +++ b/domains/queirozt.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "QueirozT", "email": "tiagoqueirozgoncalves100@gmail.com" - }, + }, - "record": { + "record": { "A": ["144.22.180.97"] - } } - \ No newline at end of file +} diff --git a/domains/querko.json b/domains/querko.json new file mode 100644 index 000000000..1dbbe498c --- /dev/null +++ b/domains/querko.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ProfKrzys", + "email": "krzysztof2011@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/quest.json b/domains/quest.json new file mode 100644 index 000000000..f268a50e5 --- /dev/null +++ b/domains/quest.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CcNicebruh", + "email": "tangkeehee2002@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/quick.json b/domains/quick.json index e3e92110f..917a9b1ab 100644 --- a/domains/quick.json +++ b/domains/quick.json @@ -1,12 +1,12 @@ { - "description": "quickdaffy's website", - "repo": "https://github.com/quickdaffy/quickdaffy.github.io", - "owner": { - "username": "quickdaffy", - "email": "quickdaffy@gmail.com", - "twitter": "quickdaffy" - }, - "record": { - "CNAME": "quickdaffy.github.io" - } + "description": "quickdaffy's website", + "repo": "https://github.com/quickdaffy/quickdaffy.github.io", + "owner": { + "username": "quickdaffy", + "email": "quickdaffy@gmail.com", + "twitter": "quickdaffy" + }, + "record": { + "CNAME": "quickdaffy.github.io" + } } diff --git a/domains/quydang.json b/domains/quydang.json new file mode 100644 index 000000000..588369933 --- /dev/null +++ b/domains/quydang.json @@ -0,0 +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" + } +} diff --git a/domains/qwel.json b/domains/qwel.json new file mode 100644 index 000000000..73249eb61 --- /dev/null +++ b/domains/qwel.json @@ -0,0 +1,10 @@ +{ + "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..226ea5ae1 100644 --- a/domains/qwertx.json +++ b/domains/qwertx.json @@ -8,4 +8,4 @@ "record": { "CNAME": "notqwertz.github.io" } -} +} diff --git a/domains/qwerty.json b/domains/qwerty.json index 749836d47..35e9386df 100644 --- a/domains/qwerty.json +++ b/domains/qwerty.json @@ -1,12 +1,12 @@ { - "description": "Redirecting to my personal website!", - "repo": "https://github.com/qwertyiscoding/simple-redirect", - "owner": { - "username": "QwertyIsCoding", - "email": "3kn5nsfkb@relay.firefox.com", - "twitter": "qwertyiscoding" - }, - "record": { - "CNAME": "qwertyiscoding.github.io" - } + "description": "Redirecting to my personal website!", + "repo": "https://github.com/qwertyiscoding/simple-redirect", + "owner": { + "username": "QwertyIsCoding", + "email": "3kn5nsfkb@relay.firefox.com", + "twitter": "qwertyiscoding" + }, + "record": { + "CNAME": "qwertyiscoding.github.io" + } } diff --git a/domains/qwertyqwerty.json b/domains/qwertyqwerty.json new file mode 100644 index 000000000..c064112ad --- /dev/null +++ b/domains/qwertyqwerty.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Qwerty-Qwerty88", + "email": "personqwertyperson88@gmail.com", + "twitter": "QwertyQwerty88_" + }, + "record": { + "A": ["34.111.254.92"], + "TXT": "replit-verify=91e42e80-7ebf-4e64-88e0-b20657592584" + } +} diff --git a/domains/qwertyr0.json b/domains/qwertyr0.json new file mode 100644 index 000000000..6837813d0 --- /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/r04nx.json b/domains/r04nx.json new file mode 100644 index 000000000..e470d2ad2 --- /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/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/r4yish.json b/domains/r4yish.json index 15eaa6f6b..2409f1bed 100644 --- a/domains/r4yish.json +++ b/domains/r4yish.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "r4yish", - "email": "r4yish@gmail.com" - }, - "record": { - "CNAME": "r4yish.github.io" - } + "owner": { + "username": "r4yish", + "email": "r4yish@gmail.com" + }, + "record": { + "CNAME": "r4yish.github.io" + } } diff --git a/domains/ra.json b/domains/ra.json new file mode 100644 index 000000000..0a922bbd7 --- /dev/null +++ b/domains/ra.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RizmyAbdulla", + "email": "rizmyabdulla@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/raadsel.json b/domains/raadsel.json index bffcbf9b5..723dfdc78 100644 --- a/domains/raadsel.json +++ b/domains/raadsel.json @@ -1,12 +1,12 @@ { - "description": "Personal website of Raadsel", - "repo": "https://github.com/Raadsl/Personal-Website-PW", - "owner": { - "username": "Raadsl", - "email": "jorik.loos@gmail.com", - "discord": "Raadsel#9398" - }, - "record": { - "CNAME": "5895b253-7316-4557-b4fb-f3a24165a4ae.id.repl.co" - } + "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/rabbi-shuki.json b/domains/rabbi-shuki.json index 056313ec5..dfbfd01c1 100644 --- a/domains/rabbi-shuki.json +++ b/domains/rabbi-shuki.json @@ -1,11 +1,11 @@ { - "description": "TODO: update readme", - "repo": "https://github.com/rabbishuki/rabbishuki.github.io", - "owner": { - "username": "Rabbi Shuki", - "email": "rabbishuki+is-a-dev@gmail.com" - }, - "record": { - "CNAME": "rabbishuki.github.io" - } + "description": "TODO: update readme", + "repo": "https://github.com/rabbishuki/rabbishuki.github.io", + "owner": { + "username": "rabbishuki", + "email": "rabbishuki+is-a-dev@gmail.com" + }, + "record": { + "CNAME": "rabbishuki.github.io" + } } diff --git a/domains/racembenamar.json b/domains/racembenamar.json new file mode 100644 index 000000000..039c08e26 --- /dev/null +++ b/domains/racembenamar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Racembenamar", + "email": "racem.benamar@esprit.tn" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rachit.json b/domains/rachit.json new file mode 100644 index 000000000..8e82908c1 --- /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..eb178a153 --- /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/radio.mxnticek.json b/domains/radio.mxnticek.json index 2826cbceb..84547ad0a 100644 --- a/domains/radio.mxnticek.json +++ b/domains/radio.mxnticek.json @@ -1,11 +1,10 @@ { - "description": "Domain for my radio", - "repo": "", - "owner": { - "username": "VlastikYoutubeKo", - "email": "plainrock@seznam.cz" - }, - "record": { - "A": ["129.151.254.58"] - } + "description": "Domain for my radio", + "owner": { + "username": "VlastikYoutubeKo", + "email": "plainrock@seznam.cz" + }, + "record": { + "A": ["129.151.254.58"] + } } diff --git a/domains/radio.slashed.json b/domains/radio.slashed.json new file mode 100644 index 000000000..28596412a --- /dev/null +++ b/domains/radio.slashed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alexfeed1990", + "email": "alexfeed1990real@gmail.com" + }, + "record": { + "CNAME": "shitpost-radio.pages.dev" + } +} diff --git a/domains/radke.json b/domains/radke.json index abecd42ed..c3f119566 100644 --- a/domains/radke.json +++ b/domains/radke.json @@ -7,4 +7,4 @@ "record": { "CNAME": "radkerouter.ddns.net" } -} \ No newline at end of file +} diff --git a/domains/rafalmeida73.json b/domains/rafalmeida73.json index d2763a5ea..1b22c15ae 100644 --- a/domains/rafalmeida73.json +++ b/domains/rafalmeida73.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/rafalmeida73/rafalmeida73.github.io", - "owner": { - "username": "rafalmeida73", - "email": "rafaelsantana7213@gmail.com" - }, - "record": { - "CNAME": "rafalmeida73.github.io" - } + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/rafalmeida73/rafalmeida73.github.io", + "owner": { + "username": "rafalmeida73", + "email": "rafaelsantana7213@gmail.com" + }, + "record": { + "CNAME": "rafalmeida73.github.io" + } } diff --git a/domains/rafsan.json b/domains/rafsan.json index b992037bb..ac01f23e2 100644 --- a/domains/rafsan.json +++ b/domains/rafsan.json @@ -1,11 +1,11 @@ { - "description": "Github Portfolio of rafsan", - "repo": "https://github.com/htrafsan/htrafsan.github.io", - "owner": { - "username": "htrafsan", - "email": "rafsanoff@gmail.com" - }, - "record": { - "CNAME": "htrafsan.github.io" - } + "description": "Github Portfolio of rafsan", + "repo": "https://github.com/htrafsan/htrafsan.github.io", + "owner": { + "username": "htrafsan", + "email": "rafsanoff@gmail.com" + }, + "record": { + "CNAME": "htrafsan.github.io" + } } diff --git a/domains/rafsanrakib.json b/domains/rafsanrakib.json new file mode 100644 index 000000000..6a29c29b2 --- /dev/null +++ b/domains/rafsanrakib.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rafsaaanrakib", + "email": "rakibyt13155@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/raga.json b/domains/raga.json new file mode 100644 index 000000000..5223d07be --- /dev/null +++ b/domains/raga.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ragasubekti", + "email": "rfilmriot@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rage65.json b/domains/rage65.json new file mode 100644 index 000000000..09d1194d8 --- /dev/null +++ b/domains/rage65.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rage65", + "email": "123thetechguy@gmail.com" + }, + "record": { + "CNAME": "rage65.duckdns.org" + } +} diff --git a/domains/raghavkorde.json b/domains/raghavkorde.json new file mode 100644 index 000000000..4bb5ab689 --- /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 7fe6bfa65..28ff52931 100644 --- a/domains/raghavyuva.json +++ b/domains/raghavyuva.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "raghavyuva", "email": "vikramnbhat15@gmail.com" - }, + }, - "record": { - "CNAME":"raghavyuva.github.io" - } + "record": { + "CNAME": "raghavyuva.github.io" } - +} diff --git a/domains/rahil.json b/domains/rahil.json new file mode 100644 index 000000000..e0a024880 --- /dev/null +++ b/domains/rahil.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Rahilkzi", + "email": "rahilkazi66@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rahul-rabari.json b/domains/rahul-rabari.json new file mode 100644 index 000000000..07c8f6430 --- /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-ray.json b/domains/rahul-ray.json new file mode 100644 index 000000000..b0605a62c --- /dev/null +++ b/domains/rahul-ray.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "raystatic9650", + "email": "raystatic9650@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/rahul.ray.json b/domains/rahul.ray.json new file mode 100644 index 000000000..b0605a62c --- /dev/null +++ b/domains/rahul.ray.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "raystatic9650", + "email": "raystatic9650@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rahulcodes.json b/domains/rahulcodes.json index 690c05eb0..1bf8e0133 100644 --- a/domains/rahulcodes.json +++ b/domains/rahulcodes.json @@ -1,11 +1,11 @@ { - "description": "Rahul Bussa's Portfolio", - "repo": "https://github.com/bussarahul/rahulcodes", - "owner": { - "username": "rahulcodes", - "email": "rahulbussa@outlook.com" - }, - "record": { - "CNAME": "bussarahul.github.io" - } + "description": "Rahul Bussa's Portfolio", + "repo": "https://github.com/bussarahul/rahulcodes", + "owner": { + "username": "rahulcodes", + "email": "rahulbussa@outlook.com" + }, + "record": { + "CNAME": "bussarahul.github.io" + } } diff --git a/domains/rahulkirangaddam.json b/domains/rahulkirangaddam.json index 8e5351c94..637b958fc 100644 --- a/domains/rahulkirangaddam.json +++ b/domains/rahulkirangaddam.json @@ -1,11 +1,11 @@ { - "description": "Rahul Kiran Gaddam Profile", - "repo": "https://github.com/rahgadda/rahgadda.github.io", - "owner": { - "username": "rahgadda", - "email": "gaddam.rahul@gmail.com" - }, - "record": { - "CNAME": "rahgadda.github.io" - } + "description": "Rahul Kiran Gaddam Profile", + "repo": "https://github.com/rahgadda/rahgadda.github.io", + "owner": { + "username": "rahgadda", + "email": "gaddam.rahul@gmail.com" + }, + "record": { + "CNAME": "rahgadda.github.io" + } } diff --git a/domains/rahulol.json b/domains/rahulol.json new file mode 100644 index 000000000..9e5130dbb --- /dev/null +++ b/domains/rahulol.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rahulsingh2312", + "email": "rahulsinghhh2312@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rahulps.json b/domains/rahulps.json index 5e1a0ba21..6f6f57f47 100644 --- a/domains/rahulps.json +++ b/domains/rahulps.json @@ -1,10 +1,10 @@ - { - "owner": { +{ + "owner": { "username": "rahulps1000", "email": "rahulps1000@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://myfolio-rahulps.netlify.app" - } } +} diff --git a/domains/rahulray.json b/domains/rahulray.json new file mode 100644 index 000000000..b0605a62c --- /dev/null +++ b/domains/rahulray.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "raystatic9650", + "email": "raystatic9650@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/raid.json b/domains/raid.json deleted file mode 100644 index 32d6d9ba4..000000000 --- a/domains/raid.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "owner": { - "username": "ImRaid", - "email": "romanplayer76@gmail.com" - }, - "record": { - "CNAME": "f8d83b65-6aa3-47dd-952f-95b1a52eadb4.id.repl.co" - } -} diff --git a/domains/raiden-16f7.json b/domains/raiden-16f7.json new file mode 100644 index 000000000..dbb862b35 --- /dev/null +++ b/domains/raiden-16f7.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Raiden-16F7", + "email": "fahad.rizwan07@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/raiin.json b/domains/raiin.json new file mode 100644 index 000000000..4e6a7710f --- /dev/null +++ b/domains/raiin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ClicpoW", + "email": "clicpowytb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rain.json b/domains/rain.json new file mode 100644 index 000000000..7eb0584ca --- /dev/null +++ b/domains/rain.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "devraiin", + "email": "amarbajrif@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..7bc5f30a1 --- /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..7bc5f30a1 --- /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 new file mode 100644 index 000000000..8ca823d30 --- /dev/null +++ b/domains/raj.json @@ -0,0 +1,9 @@ +{ + "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..fb081b667 --- /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/rajuan.json b/domains/rajuan.json new file mode 100644 index 000000000..86487e7e1 --- /dev/null +++ b/domains/rajuan.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "rajuan-r34", + "email": "rajuan.r34.dev@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/raka.json b/domains/raka.json index ae55c1618..a18a0afa7 100644 --- a/domains/raka.json +++ b/domains/raka.json @@ -1,12 +1,12 @@ { - "owner": { - "username": "rahulkarda", - "email": "rahulkarda2002@gmail.com", - "discord": "rk02#1553", - "note": "I'm open to connect with developers for collaborations." - }, - "description": "Landing page of RakaCreativeContent Organization", - "record": { - "CNAME": "rakacreativecontent.github.io" - } + "owner": { + "username": "rahulkarda", + "email": "rahulkarda2002@gmail.com", + "discord": "rk02#1553", + "note": "I'm open to connect with developers for collaborations." + }, + "description": "Landing page of RakaCreativeContent Organization", + "record": { + "CNAME": "rakacreativecontent.github.io" + } } diff --git a/domains/rakibahmed.json b/domains/rakibahmed.json new file mode 100644 index 000000000..6a29c29b2 --- /dev/null +++ b/domains/rakibahmed.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rafsaaanrakib", + "email": "rakibyt13155@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rakibrafsaaan.json b/domains/rakibrafsaaan.json new file mode 100644 index 000000000..6a29c29b2 --- /dev/null +++ b/domains/rakibrafsaaan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rafsaaanrakib", + "email": "rakibyt13155@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rakibrafsan.json b/domains/rakibrafsan.json new file mode 100644 index 000000000..6a29c29b2 --- /dev/null +++ b/domains/rakibrafsan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rafsaaanrakib", + "email": "rakibyt13155@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/raksix.json b/domains/raksix.json index 966d241f0..e707735b7 100644 --- a/domains/raksix.json +++ b/domains/raksix.json @@ -1,11 +1,11 @@ { - "description": "A personel blog website", - "repo": "https://github.com/Raksixoffical", - "owner": { - "username": "Raksix", - "email": "raksixoffical@gmail.com" - }, - "record": { - "A": ["138.68.111.28"] - } + "description": "A personel blog website", + "repo": "https://github.com/Raksixoffical", + "owner": { + "username": "Raksix", + "email": "raksixoffical@gmail.com" + }, + "record": { + "A": ["138.68.111.28"] + } } diff --git a/domains/raku.json b/domains/raku.json index 00890c5a3..56d4bc326 100644 --- a/domains/raku.json +++ b/domains/raku.json @@ -1,11 +1,11 @@ { - "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" - } + "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 deleted file mode 100644 index bd327f50c..000000000 --- a/domains/ralph.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "owner": { - "username": "ralph", - "email": "asnowwolf@gmail.com", - "irc": "", - "discord": "", - "note": "A ThoughtWorker & GDE" - }, - "description": "Ralph Wang's blog", - "record": { - "CNAME": "blog.ralph.wang" - } -} diff --git a/domains/ramakrishna.json b/domains/ramakrishna.json new file mode 100644 index 000000000..a84d242b1 --- /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/rameez.json b/domains/rameez.json index c1d645d26..c9625b663 100644 --- a/domains/rameez.json +++ b/domains/rameez.json @@ -1,11 +1,11 @@ { - "description": "Personal website of Rameez", - "repo": "https://github.com/rameezrami/rameezrami.github.io", - "owner": { - "username": "rameezrami", - "email": "rameespu@gmail.com" - }, - "record": { - "CNAME": "rameezrami.github.io" - } + "description": "Personal website of Rameez", + "repo": "https://github.com/rameezrami/rameezrami.github.io", + "owner": { + "username": "rameezrami", + "email": "rameespu@gmail.com" + }, + "record": { + "CNAME": "rameezrami.github.io" + } } diff --git a/domains/rana.json b/domains/rana.json new file mode 100644 index 000000000..85b5d0800 --- /dev/null +++ b/domains/rana.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rannawe", + "email": "rannawe.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ranamoh.json b/domains/ranamoh.json new file mode 100644 index 000000000..85b5d0800 --- /dev/null +++ b/domains/ranamoh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rannawe", + "email": "rannawe.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ranjit.json b/domains/ranjit.json new file mode 100644 index 000000000..f5f3e9158 --- /dev/null +++ b/domains/ranjit.json @@ -0,0 +1,9 @@ +{ + "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..50455cdcc --- /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/rapixar.json b/domains/rapixar.json index e9f74478a..ea3c5db48 100644 --- a/domains/rapixar.json +++ b/domains/rapixar.json @@ -1,11 +1,11 @@ { - "description": "The awesome portfolio site for Chinenye Raphael", - "repo": "https://github.com/rapixar/rapixar.github.io", - "owner": { - "username": "Rapixar", - "email": "cudraphael@gmail.com" - }, - "record": { - "CNAME": "rapixar.github.io" - } + "description": "The awesome portfolio site for Chinenye Raphael", + "repo": "https://github.com/rapixar/rapixar.github.io", + "owner": { + "username": "Rapixar", + "email": "cudraphael@gmail.com" + }, + "record": { + "CNAME": "rapixar.github.io" + } } diff --git a/domains/rare1k.json b/domains/rare1k.json new file mode 100644 index 000000000..ae9f0b869 --- /dev/null +++ b/domains/rare1k.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "uhidontkno", + "email": "bjaaa2gmlmain@gmail.com", + "discord": "1129545353717366884" + }, + + "record": { + "A": ["134.56.183.128"] + } + } + \ No newline at end of file diff --git a/domains/rasmus.json b/domains/rasmus.json index 8bce87968..7fc9947ee 100644 --- a/domains/rasmus.json +++ b/domains/rasmus.json @@ -1,12 +1,12 @@ { - "description": "My personal site", - "repo": "https://github.com/rfoldbirk/rfoldbirk.github.io", - "owner": { - "username": "rfoldbirk", - "email": "", - "twitter": "RasmusFoldberg" - }, - "record": { - "CNAME": "rfoldbirk.github.io" - } + "description": "My personal site", + "repo": "https://github.com/rfoldbirk/rfoldbirk.github.io", + "owner": { + "username": "rfoldbirk", + "email": "", + "twitter": "RasmusFoldberg" + }, + "record": { + "CNAME": "rfoldbirk.github.io" + } } diff --git a/domains/rasp.json b/domains/rasp.json new file mode 100644 index 000000000..adbf275c7 --- /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/raspi.json b/domains/raspi.json new file mode 100644 index 000000000..373716fe7 --- /dev/null +++ b/domains/raspi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Raspi-dude", + "email": "musashibeckman@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..7e4601e62 --- /dev/null +++ b/domains/raunak.json @@ -0,0 +1,12 @@ +{ + "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..05557d91c 100644 --- a/domains/ravana.json +++ b/domains/ravana.json @@ -9,4 +9,4 @@ "record": { "CNAME": "ravana.github.io" } -} +} diff --git a/domains/raven.json b/domains/raven.json new file mode 100644 index 000000000..7c38585da --- /dev/null +++ b/domains/raven.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bubby932", + "email": "raven@az-raven.com" + }, + "description": "Redirection domain for https://az-raven.com.", + "record": { + "URL": "https://az-raven.com" + } +} diff --git a/domains/ravi-pate.json b/domains/ravi-pate.json new file mode 100644 index 000000000..5cde6ccd7 --- /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..16203b487 --- /dev/null +++ b/domains/raviteja-geddada.json @@ -0,0 +1,16 @@ +{ + "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" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/raviteja.json b/domains/raviteja.json index e1cc53fd4..918b43e3c 100644 --- a/domains/raviteja.json +++ b/domains/raviteja.json @@ -1,12 +1,12 @@ { - "description": "Ravi Teja's portfolio website", - "repo": "https://github.com/iraviteja/iraviteja.github.io", - "owner": { - "username": "iraviteja", - "email": "iraviteja77@gmail.com", - "twitter": "_iraviteja" - }, - "record": { - "CNAME": "iraviteja.github.io" - } + "description": "Ravi Teja's portfolio website", + "repo": "https://github.com/iraviteja/iraviteja.github.io", + "owner": { + "username": "iraviteja", + "email": "iraviteja77@gmail.com", + "twitter": "_iraviteja" + }, + "record": { + "CNAME": "iraviteja.github.io" + } } 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 new file mode 100644 index 000000000..10d14c84b --- /dev/null +++ b/domains/raw-api.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + + "record": { + "CNAME": "wdhdev.github.io" + } +} diff --git a/domains/raw-kirito.json b/domains/raw-kirito.json index 6c1555378..c3d322ebb 100644 --- a/domains/raw-kirito.json +++ b/domains/raw-kirito.json @@ -1,10 +1,10 @@ { - "description": "this a link to My Raw Web Github", - "owner": { - "username": "ThisMe124", - "email": "anonymous.orgn@gmail.com" - }, - "record": { - "CNAME": "thisme124.github.io" - } + "description": "this a link to My Raw Web Github", + "owner": { + "username": "ThisMe124", + "email": "anonymous.orgn@gmail.com" + }, + "record": { + "CNAME": "thisme124.github.io" + } } diff --git a/domains/raw.json b/domains/raw.json new file mode 100644 index 000000000..f37ef295e --- /dev/null +++ b/domains/raw.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + + "record": { + "URL": "https://raw-api.is-a.dev" + } +} diff --git a/domains/ray.json b/domains/ray.json deleted file mode 100644 index e77593d58..000000000 --- a/domains/ray.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "RayhanADev's Personal 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/rayan.json b/domains/rayan.json new file mode 100644 index 000000000..382c85671 --- /dev/null +++ b/domains/rayan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "K-K-L-L", + "email": "kkll345643@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rayane-nekena.json b/domains/rayane-nekena.json new file mode 100644 index 000000000..853cda9b5 --- /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..18b5c2f53 --- /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..22e711c56 100644 --- a/domains/raymond.json +++ b/domains/raymond.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "raylu15742cs", "email": "raylucs15742@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "raylu15742cs.github.io" - } } - \ No newline at end of file +} diff --git a/domains/raymondlu.json b/domains/raymondlu.json index 6782d5a41..22e711c56 100644 --- a/domains/raymondlu.json +++ b/domains/raymondlu.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "raylu15742cs", "email": "raylucs15742@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "raylu15742cs.github.io" - } } - \ No newline at end of file +} diff --git a/domains/raymonzhang.json b/domains/raymonzhang.json index 5fba946e0..9f13fcde1 100644 --- a/domains/raymonzhang.json +++ b/domains/raymonzhang.json @@ -1,11 +1,11 @@ { - "description": "My personal website", - "repo": "https://github.com/raymon-zhang/website", - "owner": { - "username": "raymon-zhang", - "email": "raymonzhang.rz@gmail.com" - }, - "record": { - "CNAME": "raymon-zhang.github.io" - } + "description": "My personal website", + "repo": "https://github.com/raymon-zhang/website", + "owner": { + "username": "raymon-zhang", + "email": "raymonzhang.rz@gmail.com" + }, + "record": { + "CNAME": "raymon-zhang.github.io" + } } diff --git a/domains/rayr.json b/domains/rayr.json new file mode 100644 index 000000000..f12b139a1 --- /dev/null +++ b/domains/rayr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rayrsn", + "email": "rayrsn@proton.me" + }, + "record": { + "URL": "https://rayr.link" + } +} diff --git a/domains/raystatic.json b/domains/raystatic.json new file mode 100644 index 000000000..a2081fb71 --- /dev/null +++ b/domains/raystatic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "raystatic", + "email": "rahul9650ray@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rayvid.json b/domains/rayvid.json index e26d64386..a57353fc7 100644 --- a/domains/rayvid.json +++ b/domains/rayvid.json @@ -1,11 +1,11 @@ { - "description": "Rayvid's website", - "repo": "https://github.com/Rayvid", - "owner": { - "username": "rayvid", - "email": "gin.kisonas@gmail.com" - }, - "record": { - "CNAME": "rayvid.github.io" - } + "description": "Rayvid's website", + "repo": "https://github.com/Rayvid", + "owner": { + "username": "rayvid", + "email": "gin.kisonas@gmail.com" + }, + "record": { + "CNAME": "rayvid.github.io" + } } diff --git a/domains/razvy.json b/domains/razvy.json new file mode 100644 index 000000000..d46a972aa --- /dev/null +++ b/domains/razvy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NxyyLOL", + "email": "nxyylol@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rdc.json b/domains/rdc.json new file mode 100644 index 000000000..2794d8db2 --- /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..0a0f05f91 --- /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/rebokdev.json b/domains/rebokdev.json new file mode 100644 index 000000000..83be04508 --- /dev/null +++ b/domains/rebokdev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rebokdev", + "email": "rebok@duck.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/receipes.json b/domains/receipes.json new file mode 100644 index 000000000..3acc4ad59 --- /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..167dad256 --- /dev/null +++ b/domains/receiptify.json @@ -0,0 +1,19 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "217.174.245.249" + ], + "MX": [ + "mx1.forwardemail.net", + "mx2.forwardemail.net" + ], + "TXT": [ + "forward-email=receiptify@mail.stefdp.is-a.dev" + ] + } +} diff --git a/domains/recoderdrastic.json b/domains/recoderdrastic.json new file mode 100644 index 000000000..d5dd3c361 --- /dev/null +++ b/domains/recoderdrastic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "drasticfiles", + "email": "shaileteitpa@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rededge.json b/domains/rededge.json index 8e02b7c87..5a9c7d0d3 100644 --- a/domains/rededge.json +++ b/domains/rededge.json @@ -1,11 +1,11 @@ { - "description": "Chandula Janith's (RedEdge967) personal portfolio website made with glassmorphism UI", - "repo": "https://github.com/RedEdge967/RedEdge967.github.io", - "owner": { - "username": "RedEdge967", - "email": "janithc967@gmail.com" - }, - "record": { - "CNAME": "RedEdge967.github.io" - } + "description": "Chandula Janith's (RedEdge967) personal portfolio website made with glassmorphism UI", + "repo": "https://github.com/RedEdge967/RedEdge967.github.io", + "owner": { + "username": "RedEdge967", + "email": "janithc967@gmail.com" + }, + "record": { + "CNAME": "RedEdge967.github.io" + } } diff --git a/domains/redirect.nziie.json b/domains/redirect.nziie.json new file mode 100644 index 000000000..35baef0e8 --- /dev/null +++ b/domains/redirect.nziie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nzii3", + "email": "exeyst@gmail.com" + }, + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/rednek46.json b/domains/rednek46.json index 13d997131..e7e58cd71 100644 --- a/domains/rednek46.json +++ b/domains/rednek46.json @@ -1,11 +1,11 @@ { - "description": "My Personal Portfolio", - "repo": "https://github.com/rednek46/rednek46.github.io", - "owner": { - "username": "rednek46", - "email": "nuzer501@gmail.com" - }, - "record": { - "CNAME": "rednek46.github.io" - } + "description": "My Personal Portfolio", + "repo": "https://github.com/rednek46/rednek46.github.io", + "owner": { + "username": "rednek46", + "email": "nuzer501@gmail.com" + }, + "record": { + "CNAME": "rednek46.github.io" + } } diff --git a/domains/reed.json b/domains/reed.json index 4af0861ca..6647d3d4a 100644 --- a/domains/reed.json +++ b/domains/reed.json @@ -1,12 +1,12 @@ { - "repo": "https://github.com/reed-jones/reedjones.com", - "description": "Reeds personal developer site", - "owner": { - "username": "reed-jones", - "email": "reedjones@reedjones.com", - "twitter": "rj0nz" - }, - "record": { - "URL": "https://www.reedjones.com" - } + "repo": "https://github.com/reed-jones/reedjones.com", + "description": "Reeds personal developer site", + "owner": { + "username": "reed-jones", + "email": "reedjones@reedjones.com", + "twitter": "rj0nz" + }, + "record": { + "URL": "https://www.reedjones.com" + } } diff --git a/domains/reef.json b/domains/reef.json new file mode 100644 index 000000000..478c13ca4 --- /dev/null +++ b/domains/reef.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ReefSalty", + "email": "reefsalter@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..37a8d84d2 --- /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/refact0r.json b/domains/refact0r.json new file mode 100644 index 000000000..cfbd29f2c --- /dev/null +++ b/domains/refact0r.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "refact0r", + "email": "yifanw06@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/refactoring.json b/domains/refactoring.json new file mode 100644 index 000000000..bbf235f6f --- /dev/null +++ b/domains/refactoring.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "refactoringg", + "email": "renflenpersonal@gmail.com" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/refat.json b/domains/refat.json index 537de405b..7c4069925 100644 --- a/domains/refat.json +++ b/domains/refat.json @@ -1,10 +1,10 @@ { - "description": "Personal Site", - "owner": { - "username": "refatc25", - "email": "" - }, - "record": { - "URL": "https://www.refatchowdhury.com" - } + "description": "Personal Site", + "owner": { + "username": "refatc25", + "email": "" + }, + "record": { + "URL": "https://www.refatchowdhury.com" + } } diff --git a/domains/regiondavid.json b/domains/regiondavid.json index 03cb8587c..c1be1c5c9 100644 --- a/domains/regiondavid.json +++ b/domains/regiondavid.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "regiondavid", - "email": "uestczjw@gmail.com" - }, - "record": { - "CNAME": "regiondavid.github.io" - }, - "repo": "https://github.com/regiondavid", - "description": "regiondavid's new website" + "owner": { + "username": "regiondavid", + "email": "uestczjw@gmail.com" + }, + "record": { + "CNAME": "regiondavid.github.io" + }, + "repo": "https://github.com/regiondavid", + "description": "regiondavid's new website" } diff --git a/domains/register-api.json b/domains/register-api.json deleted file mode 100644 index 6e951c395..000000000 --- a/domains/register-api.json +++ /dev/null @@ -1,13 +0,0 @@ - - { - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, - - "record": { - "A": ["204.44.81.53"], - "MX": ["box.is-not-a.dev"] - } - } - diff --git a/domains/register-bot.json b/domains/register-bot.json new file mode 100644 index 000000000..45ad3d5aa --- /dev/null +++ b/domains/register-bot.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "andrew@maintainers.is-a.dev", + "discord": "598245488977903688" + }, + + "record": { + "A": ["217.174.245.249"] + } + } + diff --git a/domains/register.json b/domains/register.json index 553a5a1cd..397791b43 100644 --- a/domains/register.json +++ b/domains/register.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "is-a-dev-bot", - "email": "is-a-dev@win11react.com" - }, + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, - "record": { - "A": ["64.190.90.238"] - } + "record": { + "URL": "https://manage.is-a.dev" } +} diff --git a/domains/rehanaf.json b/domains/rehanaf.json new file mode 100644 index 000000000..a13acad34 --- /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 new file mode 100644 index 000000000..d89e98a4a --- /dev/null +++ b/domains/reizy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "P0rc0D10", + "email": "grazioligiuliano52@gmail.com" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/rejasaad.json b/domains/rejasaad.json new file mode 100644 index 000000000..0fde75bd3 --- /dev/null +++ b/domains/rejasaad.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "rejasaad13", + "email": "rejasaad13@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/rekto.json b/domains/rekto.json index 1a5b9b19a..b63b31205 100644 --- a/domains/rekto.json +++ b/domains/rekto.json @@ -1,11 +1,11 @@ { - "description": "Rekto Website", - "repo": "https://github.com/rekto-dev/rekto-dev.github.io", - "owner": { - "username": "GetRekto", - "email": "rekto.personal@outlook.com" - }, - "record": { - "CNAME": "rekto-dev.github.io" - } + "description": "Rekto Website", + "repo": "https://github.com/rekto-dev/rekto-dev.github.io", + "owner": { + "username": "GetRekto", + "email": "rekto.personal@outlook.com" + }, + "record": { + "CNAME": "rekto-dev.github.io" + } } diff --git a/domains/ren.json b/domains/ren.json new file mode 100644 index 000000000..966df3d9c --- /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/renata.json b/domains/renata.json new file mode 100644 index 000000000..16e0f1790 --- /dev/null +++ b/domains/renata.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xrenata", + "email": "emirhan@duck.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rendi.json b/domains/rendi.json new file mode 100644 index 000000000..f0a27972d --- /dev/null +++ b/domains/rendi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "avrzll", + "email": "yogsstore.send@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rep.json b/domains/rep.json index 9b38b67d9..8d7bb58ed 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/respect.json b/domains/respect.json new file mode 100644 index 000000000..c8350ebe9 --- /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/restart.json b/domains/restart.json new file mode 100644 index 000000000..79426f3d7 --- /dev/null +++ b/domains/restart.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GodfatherX64", + "email": "godfather.x64@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/retr0.json b/domains/retr0.json index 84c08dc42..0bd1ecdf2 100644 --- a/domains/retr0.json +++ b/domains/retr0.json @@ -1,11 +1,11 @@ { - "description": "Rer0's personal developer website", - "repo": "https://github.com/u0f/u0f.github.io", - "owner": { - "username": "u0f", - "email": "ice.dev1234@gmail.com" - }, - "record": { - "CNAME": "u0f.github.io" - } + "description": "Rer0's personal developer website", + "repo": "https://github.com/u0f/u0f.github.io", + "owner": { + "username": "u0f", + "email": "ice.dev1234@gmail.com" + }, + "record": { + "CNAME": "u0f.github.io" + } } diff --git a/domains/retr0xraiden.json b/domains/retr0xraiden.json new file mode 100644 index 000000000..91cf17508 --- /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/return.json b/domains/return.json new file mode 100644 index 000000000..a4dba5b04 --- /dev/null +++ b/domains/return.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "returnxd", + "email": "hc_2583@naver.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/reuben.json b/domains/reuben.json index ab3072264..d9d0db1ae 100644 --- a/domains/reuben.json +++ b/domains/reuben.json @@ -1,11 +1,11 @@ { - "description": "Personal Page", - "repo": "https://github.com/reuben-x/reuben-x.github.io", - "owner": { - "username": "reuben-x", - "email": "reubenthomaspeter@gmail.com" - }, - "record": { - "CNAME": "reuben-x.github.io" - } + "description": "Personal Page", + "repo": "https://github.com/reuben-x/reuben-x.github.io", + "owner": { + "username": "reuben-x", + "email": "reubenthomaspeter@gmail.com" + }, + "record": { + "CNAME": "reuben-x.github.io" + } } diff --git a/domains/reyzo.json b/domains/reyzo.json new file mode 100644 index 000000000..09b9730d0 --- /dev/null +++ b/domains/reyzo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Nolaxyy", + "email": "konectplay2008@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rezz.json b/domains/rezz.json index d3723b234..0d632ab04 100644 --- a/domains/rezz.json +++ b/domains/rezz.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/RezzedUp", - "owner": { - "username": "RezzedUp", - "email": "", - "twitter": "RezzedUp" - }, - "record": { - "URL": "https://rezzedup.com" - } + "repo": "https://github.com/RezzedUp", + "owner": { + "username": "RezzedUp", + "email": "", + "twitter": "RezzedUp" + }, + "record": { + "URL": "https://rezzedup.com" + } } diff --git a/domains/rferee.json b/domains/rferee.json new file mode 100644 index 000000000..d9f92ecc3 --- /dev/null +++ b/domains/rferee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rferee", + "email": "admin@rferee.dev" + }, + "record": { + "URL": "https://rferee.dev" + } +} diff --git a/domains/rfwn.json b/domains/rfwn.json index e20363e73..93cfe8a64 100644 --- a/domains/rfwn.json +++ b/domains/rfwn.json @@ -8,4 +8,4 @@ "record": { "CNAME": "rfwn.github.io" } -} +} diff --git a/domains/rherly.json b/domains/rherly.json new file mode 100644 index 000000000..6a58e20bd --- /dev/null +++ b/domains/rherly.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rherlydev", + "email": "rherlydev@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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 new file mode 100644 index 000000000..d68177c1c --- /dev/null +++ b/domains/rhyk.json @@ -0,0 +1,10 @@ +{ + "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..b7d96f6ec --- /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..ce9025c4c --- /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..7e3199d98 --- /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/ricardo.json b/domains/ricardo.json index 5180f01fe..0fc1f9c46 100644 --- a/domains/ricardo.json +++ b/domains/ricardo.json @@ -1,11 +1,11 @@ { - "description": "My personal website", - "repo": "https://github.com/RicardoGonzf/RicardoGonzf", - "owner": { - "username": "RicardoGonzf", - "email": "ricardo@ricardogonz.es" - }, - "record": { - "URL": "https://ricardogonz.es" - } + "description": "My personal website", + "repo": "https://github.com/RicardoGonzf/RicardoGonzf", + "owner": { + "username": "RicardoGonzf", + "email": "ricardo@ricardogonz.es" + }, + "record": { + "URL": "https://ricardogonz.es" + } } diff --git a/domains/rice.json b/domains/rice.json new file mode 100644 index 000000000..4db421dec --- /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/ricecx.json b/domains/ricecx.json index dce5a1422..54926d366 100644 --- a/domains/ricecx.json +++ b/domains/ricecx.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/ricecx/ricecx.github.io", - "owner": { - "username": "RiceCX", - "email": "andyl5463@gmail.com" - }, - "description": "Hosting my website.", - "record": { - "CNAME": "ricecx.github.io" - } + "repo": "https://github.com/ricecx/ricecx.github.io", + "owner": { + "username": "RiceCX", + "email": "andyl5463@gmail.com" + }, + "description": "Hosting my website.", + "record": { + "CNAME": "ricecx.github.io" + } } diff --git a/domains/richard.json b/domains/richard.json new file mode 100644 index 000000000..dd5a80e9e --- /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/riddim-glitch.json b/domains/riddim-glitch.json new file mode 100644 index 000000000..a7209946c --- /dev/null +++ b/domains/riddim-glitch.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Riddim-GLiTCH", + "email": "Riddim_GLiTCH@courvix.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/rifkisaputra.json b/domains/rifkisaputra.json new file mode 100644 index 000000000..a784cb1b1 --- /dev/null +++ b/domains/rifkisaputra.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rifki-saputra", + "email": "rifkimuhamad0987@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rifzki.json b/domains/rifzki.json index 84439c64a..9506cbe3f 100644 --- a/domains/rifzki.json +++ b/domains/rifzki.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "rifzkiadiyaksa", "email": "rifzki.adiyaksa18033@student.unsika.ac.id" - }, - "record": { + }, + "record": { "URL": "https://rifzki.my.id" - } } - \ No newline at end of file +} diff --git a/domains/rihards.json b/domains/rihards.json new file mode 100644 index 000000000..773e09ec9 --- /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/riii.json b/domains/riii.json new file mode 100644 index 000000000..585e8c584 --- /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/rilecraft.json b/domains/rilecraft.json new file mode 100644 index 000000000..f3a0f0a57 --- /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/riley.json b/domains/riley.json index 9cd1012c6..c9374f7e0 100644 --- a/domains/riley.json +++ b/domains/riley.json @@ -1,12 +1,12 @@ { - "description": "Riley Chou's Personal Website", - "repo": "https://github.com/rileychou/rileychou.github.io", - "owner": { - "username": "rileychou", - "email": "riley33chou@gmail.com", - "twitter": "IceShark_91" - }, - "record": { - "CNAME": "rileychou.github.io" - } + "description": "Riley Chou's Personal Website", + "repo": "https://github.com/rileychou/rileychou.github.io", + "owner": { + "username": "rileychou", + "email": "riley33chou@gmail.com", + "twitter": "IceShark_91" + }, + "record": { + "CNAME": "rileychou.github.io" + } } diff --git a/domains/rin.json b/domains/rin.json new file mode 100644 index 000000000..aa4ae7dd1 --- /dev/null +++ b/domains/rin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "budderlovr", + "email": "budderlovr@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ringoxd.json b/domains/ringoxd.json new file mode 100644 index 000000000..32da7ce07 --- /dev/null +++ b/domains/ringoxd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ringo360", + "email": "nep360i@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file 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/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..59ebce7cb 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..f90b1790b 100644 --- a/domains/riskymh.json +++ b/domains/riskymh.json @@ -1,14 +1,13 @@ -{ - "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..404e14cb5 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..d314806ca --- /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/rithinjose.json b/domains/rithinjose.json index 0e7931c3c..f20a68400 100644 --- a/domains/rithinjose.json +++ b/domains/rithinjose.json @@ -1,12 +1,12 @@ { - "description": "Personal Website", - "repo": "https://github.com/rithin-jose/rithin-jose.github.io", - "owner": { - "username": "rithin-jose", - "twitter": "rithinja", - "email": "" - }, - "record": { - "CNAME": "rithin-jose.github.io" - } + "description": "Personal Website", + "repo": "https://github.com/rithin-jose/rithin-jose.github.io", + "owner": { + "username": "rithin-jose", + "twitter": "rithinja", + "email": "" + }, + "record": { + "CNAME": "rithin-jose.github.io" + } } diff --git a/domains/ritshu.json b/domains/ritshu.json index 9e300228b..809820372 100644 --- a/domains/ritshu.json +++ b/domains/ritshu.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "Ritshu", - "discord": "216282035503890442", - "email": "ritshu.dev@gmail.com" - }, - "record": { - "CNAME": "ritshu.github.io" - } + "owner": { + "username": "Ritshu", + "discord": "216282035503890442", + "email": "ritshu.dev@gmail.com" + }, + "record": { + "CNAME": "ritshu.github.io" + } } diff --git a/domains/ritwick2006.json b/domains/ritwick2006.json index 5ab1790e8..9e95183ef 100644 --- a/domains/ritwick2006.json +++ b/domains/ritwick2006.json @@ -1,11 +1,11 @@ { - "description": "Ritwick's website", - "repo": "https://github.com/BOTDEV123", - "owner": { - "username": "BOTDEV123", - "email": "ritwick2006@hotmail.com" - }, - "record": { - "CNAME": "ritwick2006.freecluster.eu" - } + "description": "Ritwick's website", + "repo": "https://github.com/BOTDEV123", + "owner": { + "username": "BOTDEV123", + "email": "ritwick2006@hotmail.com" + }, + "record": { + "CNAME": "ritwick2006.freecluster.eu" + } } diff --git a/domains/riviox.json b/domains/riviox.json new file mode 100644 index 000000000..043628e7f --- /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/riya.json b/domains/riya.json new file mode 100644 index 000000000..d8951328e --- /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..a4a946a79 --- /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..a027cb9fa --- /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..6dd41af68 --- /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/rlewsley.json b/domains/rlewsley.json index b8ca5a7df..0c7785983 100644 --- a/domains/rlewsley.json +++ b/domains/rlewsley.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "lewsley-r", "email": "lewsley-r@ulster.ac.uk" - }, + }, - "record": { + "record": { "CNAME": "lewsley-r.github.io" - } } - +} diff --git a/domains/rlx.json b/domains/rlx.json index 1fa2dbd7f..6eb855e6b 100644 --- a/domains/rlx.json +++ b/domains/rlx.json @@ -1,11 +1,11 @@ { - "description": "RLX's personal website", - "repo": "https://github.com/RLX-OP/rlx-op.github.io", - "owner": { - "username": "RLX-OP", - "email": "contactrlxop@gmail.com" - }, - "record": { - "CNAME": "rlx-op.github.io" - } + "description": "RLX's personal website", + "repo": "https://github.com/RLX-OP/rlx-op.github.io", + "owner": { + "username": "RLX-OP", + "email": "contactrlxop@gmail.com" + }, + "record": { + "CNAME": "rlx-op.github.io" + } } diff --git a/domains/rmd.json b/domains/rmd.json new file mode 100644 index 000000000..16180ac45 --- /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..6a130d687 --- /dev/null +++ b/domains/rnv.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ZeroDeaths379", + "email": "arnavp651@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/roadblocked.json b/domains/roadblocked.json new file mode 100644 index 000000000..d4ee94502 --- /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/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/robsd.json b/domains/robsd.json new file mode 100644 index 000000000..1eb41358b --- /dev/null +++ b/domains/robsd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "robsd", + "email": "rob@robertd.co.uk" + }, + "record": { + "CNAME": "robsd.pages.dev" + } +} diff --git a/domains/robskan.json b/domains/robskan.json new file mode 100644 index 000000000..1b22913ff --- /dev/null +++ b/domains/robskan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Robskan5300", + "email": "rrsnijder@yahoo.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rockstarbuddies.json b/domains/rockstarbuddies.json new file mode 100644 index 000000000..ce5f1098a --- /dev/null +++ b/domains/rockstarbuddies.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RockstarBuddies", + "email": "yourrockingbuddy@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rocky.json b/domains/rocky.json new file mode 100644 index 000000000..7947a57a7 --- /dev/null +++ b/domains/rocky.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PRODEFIX", + "email": "prodefix.ytb@gmail.com" + }, + "record": { + "CNAME": "rockybots.betteruptime.com" + } +} diff --git a/domains/roger.json b/domains/roger.json index 4d0d24f82..925b9ecc5 100644 --- a/domains/roger.json +++ b/domains/roger.json @@ -1,12 +1,12 @@ { - "description": "Roger's website to host mostly useless projects", - "repo": "https://github.com/rogerpanza/rogerpanza.github.io", - "owner": { - "username": "rogerpanza", - "email": "rogerpanza-ed@protonmail.com", - "twitter": "rogerpanza_" - }, - "record": { - "CNAME": "rogerpanza.github.io" - } + "description": "Roger's website to host mostly useless projects", + "repo": "https://github.com/rogerpanza/rogerpanza.github.io", + "owner": { + "username": "rogerpanza", + "email": "rogerpanza-ed@protonmail.com", + "twitter": "rogerpanza_" + }, + "record": { + "CNAME": "rogerpanza.github.io" + } } diff --git a/domains/rohan.json b/domains/rohan.json index 832a60dac..920cd0b7c 100644 --- a/domains/rohan.json +++ b/domains/rohan.json @@ -1,11 +1,11 @@ { - "description": "Rohan's devlog and portfolio", - "repo": "https://github.com/rohan-bansal", - "owner": { - "username": "Rohan-Bansal", - "email": "rohan@rbansal.dev" - }, - "record": { - "URL": "https://rbansal.dev" - } + "description": "Rohan's devlog and portfolio", + "repo": "https://github.com/rohan-bansal", + "owner": { + "username": "Rohan-Bansal", + "email": "rohan@rbansal.dev" + }, + "record": { + "URL": "https://rbansal.dev" + } } diff --git a/domains/rohanpawar.json b/domains/rohanpawar.json new file mode 100644 index 000000000..e470d2ad2 --- /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..a9a47bcc7 --- /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-sony.json b/domains/rohit-sony.json new file mode 100644 index 000000000..f81f7409d --- /dev/null +++ b/domains/rohit-sony.json @@ -0,0 +1,11 @@ +{ + "description": "Rohit Profile.", + "repo": "https://github.com/rohit-sony/rohit-sony.github.io", + "owner": { + "username": "rohit-sony", + "email": "" + }, + "record": { + "CNAME": "rohit-sony.github.io" + } +} diff --git a/domains/rohit.json b/domains/rohit.json new file mode 100644 index 000000000..510a6ba9a --- /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/rohith.json b/domains/rohith.json index a01a24b8e..d491de9b8 100644 --- a/domains/rohith.json +++ b/domains/rohith.json @@ -1,11 +1,11 @@ { - "description": "Rohith's personal website", - "repo": "https://github.com/rohithp7777", - "owner": { - "username": "rohithp7777", - "email": "rohithp8899@gmail.com" - }, - "record": { - "CNAME": "rohith-1c974.web.app" - } + "description": "Rohith's personal website", + "repo": "https://github.com/rohithp7777", + "owner": { + "username": "rohithp7777", + "email": "rohithp8899@gmail.com" + }, + "record": { + "CNAME": "rohith-1c974.web.app" + } } diff --git a/domains/rohithill.json b/domains/rohithill.json index cd4fd2418..1546a549a 100644 --- a/domains/rohithill.json +++ b/domains/rohithill.json @@ -1,11 +1,11 @@ { - "description": "I like computers", - "repo": "https://github.com/rohithill/rohithill.github.io", - "owner": { - "username": "rohithill", - "email": "truezeroxy@gmail.com" - }, - "record": { - "CNAME": "rohithill.github.io" - } + "description": "I like computers", + "repo": "https://github.com/rohithill/rohithill.github.io", + "owner": { + "username": "rohithill", + "email": "truezeroxy@gmail.com" + }, + "record": { + "CNAME": "rohithill.github.io" + } } diff --git a/domains/rohithkumar.json b/domains/rohithkumar.json index 3c15206b9..2f78b4119 100644 --- a/domains/rohithkumar.json +++ b/domains/rohithkumar.json @@ -1,11 +1,11 @@ { - "description": "My Personal Website", - "repo": "https://github.com/killTheDB", - "owner": { - "username": "killTheDB", - "email": "jayanarohith7@gmail.com" - }, - "record": { - "CNAME": "killthedb.github.io" - } + "description": "My Personal Website", + "repo": "https://github.com/killTheDB", + "owner": { + "username": "killTheDB", + "email": "jayanarohith7@gmail.com" + }, + "record": { + "CNAME": "killthedb.github.io" + } } diff --git a/domains/rohitkaushal.json b/domains/rohitkaushal.json index d7d05366c..9bb1bfe4e 100644 --- a/domains/rohitkaushal.json +++ b/domains/rohitkaushal.json @@ -1,11 +1,11 @@ { - "description": "My personal Portfolio", - "repo": "https://github.com/RohitKaushal7/RohitKaushal7.github.io", - "owner": { - "username": "RohitKaushal7", - "email": "rohitkk252550@gmail.com" - }, - "record": { - "CNAME": "rohitkaushal7.github.io" - } + "description": "My personal Portfolio", + "repo": "https://github.com/RohitKaushal7/RohitKaushal7.github.io", + "owner": { + "username": "RohitKaushal7", + "email": "rohitkk252550@gmail.com" + }, + "record": { + "CNAME": "rohitkaushal7.github.io" + } } diff --git a/domains/roig.json b/domains/roig.json index ae9ecd76e..41ce1756d 100644 --- a/domains/roig.json +++ b/domains/roig.json @@ -1,11 +1,11 @@ { - "description": "Roig's website", - "repo": "https://github.com/groig", - "owner": { - "username": "groig", - "email": "groig@protonmail.com" - }, - "record": { - "A": ["152.206.177.19"] - } + "description": "Roig's website", + "repo": "https://github.com/groig", + "owner": { + "username": "groig", + "email": "groig@protonmail.com" + }, + "record": { + "A": ["152.206.177.19"] + } } diff --git a/domains/roj.json b/domains/roj.json index 8e7e29e7e..62242e703 100644 --- a/domains/roj.json +++ b/domains/roj.json @@ -1,11 +1,11 @@ { - "description": "Roj", - "owner": { - "username": "roj1512", - "email": "ez@roj.im", - "twitter": "roj1512" - }, - "record": { - "URL": "https://roj.im" - } + "description": "Roj", + "owner": { + "username": "roj1512", + "email": "ez@roj.im", + "twitter": "roj1512" + }, + "record": { + "URL": "https://roj.im" + } } diff --git a/domains/roktim.json b/domains/roktim.json new file mode 100644 index 000000000..f5d16fdcf --- /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/rollwaifu.json b/domains/rollwaifu.json new file mode 100644 index 000000000..e3a354207 --- /dev/null +++ b/domains/rollwaifu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Luongzz", + "email": "buivanluong0204@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/romeodev.json b/domains/romeodev.json new file mode 100644 index 000000000..c7b3ebaff --- /dev/null +++ b/domains/romeodev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "meomeo1220", + "email": "meomeo1220@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/romi.json b/domains/romi.json new file mode 100644 index 000000000..29d85bd4c --- /dev/null +++ b/domains/romi.json @@ -0,0 +1,11 @@ +{ + "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..3048498e3 --- /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/ron.json b/domains/ron.json new file mode 100644 index 000000000..ba6fba4b5 --- /dev/null +++ b/domains/ron.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "itsrn", + "email": "shalom@itsron.space" + }, + "record": { + "CNAME": "itsrn.github.io" + } +} \ No newline at end of file diff --git a/domains/ronit.json b/domains/ronit.json new file mode 100644 index 000000000..2f8d634fd --- /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/rony.json b/domains/rony.json index 816782e58..6a110998a 100644 --- a/domains/rony.json +++ b/domains/rony.json @@ -1,16 +1,16 @@ { - "owner": { - "username": "ronylee11", - "email": "rongyil33@gmail.com" - }, - "description": { - "domain": "rony.is-a.dev", - "usage": "This is going to be my portfolio" - }, - "repo": { - "github": "github.com/ronylee11" - }, - "record": { - "CNAME": "ronylee11.github.io" - } + "owner": { + "username": "ronylee11", + "email": "rongyil33@gmail.com" + }, + "description": { + "domain": "rony.is-a.dev", + "usage": "This is going to be my portfolio" + }, + "repo": { + "github": "github.com/ronylee11" + }, + "record": { + "CNAME": "ronylee11.github.io" + } } diff --git a/domains/roobini-gamer.json b/domains/roobini-gamer.json new file mode 100644 index 000000000..c3843e3be --- /dev/null +++ b/domains/roobini-gamer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "roobini-gamer", + "email": "roobini.hamza@yandex.com" + }, + "record": { + "URL": "https://roobini-gamer.github.io/Roobini-hamza" + } +} diff --git a/domains/roshan.json b/domains/roshan.json index 6ca21a0e2..a935a97a2 100644 --- a/domains/roshan.json +++ b/domains/roshan.json @@ -1,12 +1,12 @@ { - "description": "Personal portfolio", - "repo": "https://github.com/roshan1337d/roshan1337d.github.io", - "owner": { - "username": "roshan1337d", - "email": "roshan1337x@gmail.com", - "twitter": "roshan1337d" - }, - "record": { - "CNAME": "roshan1337d.github.io" - } + "description": "Personal portfolio", + "repo": "https://github.com/roshan1337d/roshan1337d.github.io", + "owner": { + "username": "roshan1337d", + "email": "roshan1337x@gmail.com", + "twitter": "roshan1337d" + }, + "record": { + "CNAME": "roshan1337d.github.io" + } } diff --git a/domains/rosset-nocpes.json b/domains/rosset-nocpes.json new file mode 100644 index 000000000..8dcfdfb65 --- /dev/null +++ b/domains/rosset-nocpes.json @@ -0,0 +1,13 @@ +{ + "description": "rosset-nocpes.is-a.dev", + "repo": "https://github.com/rosset-nocpes/rosset-nocpes.github.io", + "owner": { + "username": "rosset-nocpes", + "email": "rosset.nocpes@skiff.com", + "twitter": "CoderPY4", + "discord": "rosset.nocpes" + }, + "record": { + "CNAME": "rosset-nocpes.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/rowan.json b/domains/rowan.json new file mode 100644 index 000000000..fa8f9bcb0 --- /dev/null +++ b/domains/rowan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rowaaaaan", + "email": "randornam@protonmail.com" + }, + "record": { + "CNAME": "rowaaaaan.github.io" + } +} diff --git a/domains/roxza.json b/domains/roxza.json index 2e8462185..34d3159c8 100644 --- a/domains/roxza.json +++ b/domains/roxza.json @@ -1,12 +1,12 @@ { - "description": "Roxza personal developer website", - "repo": "https://github.com/Roxza/Roxza.me", - "owner": { - "username": "roxza", - "email": "me@roxza.me", - "discord": "Roxza#0002" - }, - "record": { - "URL": "https://roxza.me" - } + "description": "Roxza personal developer website", + "repo": "https://github.com/Roxza/Roxza.me", + "owner": { + "username": "roxza", + "email": "me@roxza.me", + "discord": "Roxza#0002" + }, + "record": { + "URL": "https://roxza.me" + } } diff --git a/domains/roy.json b/domains/roy.json index f1cebff9b..ec11feaf0 100644 --- a/domains/roy.json +++ b/domains/roy.json @@ -1,11 +1,11 @@ { - "description": "Roy's portfolio website", - "repo": "https://github.com/rcrj/rcrj.github.io", - "owner": { - "username": "rcrj", - "email": "rcrj95@gmail.com" - }, - "record": { - "CNAME": "rcrj.github.io" - } + "description": "Roy's portfolio website", + "repo": "https://github.com/rcrj/rcrj.github.io", + "owner": { + "username": "rcrj", + "email": "rcrj95@gmail.com" + }, + "record": { + "CNAME": "rcrj.github.io" + } } diff --git a/domains/royalahmed.json b/domains/royalahmed.json new file mode 100644 index 000000000..d4558f78d --- /dev/null +++ b/domains/royalahmed.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RoyalAhmed347", + "email": "bahiahmed347@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/royalty.json b/domains/royalty.json index ba1a103bd..f30be94b5 100644 --- a/domains/royalty.json +++ b/domains/royalty.json @@ -1,11 +1,11 @@ { - "description": "A basic personal website about my projects and me.", - "repo": "https://github.com/hisRoyalty/hisroyalty.github.io", - "owner": { - "username": "hisRoyalty", - "email": "hisroyal.baguette@gmail.com" - }, - "record": { - "CNAME": "hisRoyalty.github.io" - } + "description": "A basic personal website about my projects and me.", + "repo": "https://github.com/hisRoyalty/hisroyalty.github.io", + "owner": { + "username": "hisRoyalty", + "email": "hisroyal.baguette@gmail.com" + }, + "record": { + "CNAME": "hisRoyalty.github.io" + } } diff --git a/domains/roydon.json b/domains/roydon.json index 1f103efba..59d332c82 100644 --- a/domains/roydon.json +++ b/domains/roydon.json @@ -1,12 +1,12 @@ { - "description": "URL forwarder", - "repo": "https://github.com/roydondsouza", - "owner": { - "username": "roydondsouza", - "email": "", - "twitter": "roydondsouza" - }, - "record": { - "CNAME": "roydondsouza.github.io" - } + "description": "URL forwarder", + "repo": "https://github.com/roydondsouza", + "owner": { + "username": "roydondsouza", + "email": "", + "twitter": "roydondsouza" + }, + "record": { + "CNAME": "roydondsouza.github.io" + } } diff --git a/domains/roydondsouza.json b/domains/roydondsouza.json index aaace3352..c09432786 100644 --- a/domains/roydondsouza.json +++ b/domains/roydondsouza.json @@ -1,12 +1,12 @@ { - "description": "URL forwarder", - "repo": "https://github.com/roydondsouza", - "owner": { - "username": "roydondsouza", - "email": "", - "twitter": "roydondsouza" - }, - "record": { - "URL": "https://www.roydondsouza.com" - } + "description": "URL forwarder", + "repo": "https://github.com/roydondsouza", + "owner": { + "username": "roydondsouza", + "email": "", + "twitter": "roydondsouza" + }, + "record": { + "URL": "https://www.roydondsouza.com" + } } diff --git a/domains/rozay.json b/domains/rozay.json new file mode 100644 index 000000000..e1c8ecd93 --- /dev/null +++ b/domains/rozay.json @@ -0,0 +1,9 @@ +{ + "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..48c7b5849 --- /dev/null +++ b/domains/rpi.crazymax.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Crazy-Max-Blog", + "email": "Crazy-Max-2011@yandex.ru" + }, + "record": { + "URL": "http://crazymax.is-a.dev/rpi" + } +} diff --git a/domains/rpj.json b/domains/rpj.json new file mode 100644 index 000000000..9188386e3 --- /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..391f561a8 100644 --- a/domains/rqtl.json +++ b/domains/rqtl.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "ItsRqtl", "email": "itsrqtl@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://www.youtube.com/itsrqtl" - } } - \ No newline at end of file +} diff --git a/domains/rrcoder0167.json b/domains/rrcoder0167.json new file mode 100644 index 000000000..3c328c75d --- /dev/null +++ b/domains/rrcoder0167.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rrcoder0167", + "email": "riddhiman.rana@gmail.com" + }, + "record": { + "CNAME": "rrcoder0167.github.io" + } +} diff --git a/domains/rrrokhtar.json b/domains/rrrokhtar.json new file mode 100644 index 000000000..8fd8b3235 --- /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/rtxeon.json b/domains/rtxeon.json new file mode 100644 index 000000000..e34a027dc --- /dev/null +++ b/domains/rtxeon.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "Rtxeon", + "email": "AdityaSuthar13@outlook.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.111.153", + "185.199.110.153" + ], + "MX": [ + "mail.is-a.dev" + ], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} diff --git a/domains/ruben.json b/domains/ruben.json new file mode 100644 index 000000000..a17da01ea --- /dev/null +++ b/domains/ruben.json @@ -0,0 +1,9 @@ +{ + "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..ecd78a03c --- /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/rubyscans.json b/domains/rubyscans.json new file mode 100644 index 000000000..1e65be7d4 --- /dev/null +++ b/domains/rubyscans.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Solar-Geaux", + "email": "dgbroyt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rudra.json b/domains/rudra.json new file mode 100644 index 000000000..c37c3dcf9 --- /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/ruiwenge2.json b/domains/ruiwenge2.json index 88ef00fa3..056e1f2f0 100644 --- a/domains/ruiwenge2.json +++ b/domains/ruiwenge2.json @@ -1,11 +1,11 @@ { - "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" - } + "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/ruizo.json b/domains/ruizo.json index c6c111333..70475fde5 100644 --- a/domains/ruizo.json +++ b/domains/ruizo.json @@ -1,12 +1,12 @@ { - "description": "My Territory", - "repo": "https://github.com/mezeru/mezeru.github.io", - "owner": { - "username": "Mezeru", - "email": "jermpro0@gmail.com", - "twitter": "Mezeru" - }, - "record": { - "CNAME": "mezeru.github.io" - } + "description": "My Territory", + "repo": "https://github.com/mezeru/mezeru.github.io", + "owner": { + "username": "Mezeru", + "email": "jermpro0@gmail.com", + "twitter": "Mezeru" + }, + "record": { + "CNAME": "mezeru.github.io" + } } diff --git a/domains/rumesh.json b/domains/rumesh.json index edf250f01..7bc3c6d88 100644 --- a/domains/rumesh.json +++ b/domains/rumesh.json @@ -2,10 +2,10 @@ "description": "Rumesh's .is-a.dev domain", "repo": "https://github.com/iRumesh/irumesh.github.io", "owner": { - "username": "irumesh", - "email": "irumesh.work@gmail.com" + "username": "irumesh", + "email": "irumesh.work@gmail.com" }, "record": { - "CNAME": "irumesh.github.io" + "CNAME": "irumesh.github.io" } - } +} diff --git a/domains/rushil-patel.json b/domains/rushil-patel.json new file mode 100644 index 000000000..1b307ca1b --- /dev/null +++ b/domains/rushil-patel.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rushilp1", + "email": "rushil.p1@ahduni.edu.in" + }, + "record": { + "URL": "https://rushilp1.github.io/" + } +} diff --git a/domains/rushil.json b/domains/rushil.json new file mode 100644 index 000000000..8a83a7367 --- /dev/null +++ b/domains/rushil.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rushilp1", + "email": "rushil.p1@ahduni.edu.in" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/rusiru.json b/domains/rusiru.json index 3f7d85882..65b77c0b5 100644 --- a/domains/rusiru.json +++ b/domains/rusiru.json @@ -1,11 +1,11 @@ { - "description": "Rusiru Anupama is a Dev", - "repo": "https://github.com/sparkstark03/register", - "owner": { - "username": "sparkstark03", - "email": "rusirurasanjana@gmail.com" - }, - "record": { - "CNAME": "sparkstark03.github.io" - } + "description": "Rusiru Anupama is a Dev", + "repo": "https://github.com/sparkstark03/register", + "owner": { + "username": "sparkstark03", + "email": "rusirurasanjana@gmail.com" + }, + "record": { + "CNAME": "sparkstark03.github.io" + } } diff --git a/domains/rustemb.json b/domains/rustemb.json index 136685f3c..3654d2848 100644 --- a/domains/rustemb.json +++ b/domains/rustemb.json @@ -1,11 +1,11 @@ { - "description": "Rustem B. dev page", - "repo": "https://github.com/RustemB/rustemb.github.io", - "owner": { - "username": "rustemb", - "email": "rustemb@systemli.org" - }, - "record": { - "CNAME": "rustemb.github.io" - } + "description": "Rustem B. dev page", + "repo": "https://github.com/RustemB/rustemb.github.io", + "owner": { + "username": "rustemb", + "email": "rustemb@systemli.org" + }, + "record": { + "CNAME": "rustemb.github.io" + } } diff --git a/domains/rutkuli.json b/domains/rutkuli.json index c8bf0e089..d066cecec 100644 --- a/domains/rutkuli.json +++ b/domains/rutkuli.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal developer website.", - "repo": "https://github.com/rutkuli/rutkuli.github.io", - "owner": { - "username": "Rutkuli", - "email": "rutkuliofficial@gmail.com" - }, - "record": { - "CNAME": "rutkuli.github.io" - } + "description": "This website is a link to my personal developer website.", + "repo": "https://github.com/rutkuli/rutkuli.github.io", + "owner": { + "username": "Rutkuli", + "email": "rutkuliofficial@gmail.com" + }, + "record": { + "CNAME": "rutkuli.github.io" + } } diff --git a/domains/ruu3f.json b/domains/ruu3f.json new file mode 100644 index 000000000..0ced44472 --- /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/rv178.json b/domains/rv178.json index cd0208a33..d6f7cb0d6 100644 --- a/domains/rv178.json +++ b/domains/rv178.json @@ -1,11 +1,11 @@ { - "description": "is-a.dev subdomain for my portfolio", - "repo": "https://github.com/rv178/website", - "owner": { - "username": "rv178", - "email": "idliyout@gmail.com" - }, - "record": { - "CNAME": "rv178.github.io" - } + "description": "is-a.dev subdomain for my portfolio", + "repo": "https://github.com/rv178/website", + "owner": { + "username": "rv178", + "email": "idliyout@gmail.com" + }, + "record": { + "CNAME": "rv178.github.io" + } } diff --git a/domains/rvsp.json b/domains/rvsp.json index 2a1b00c62..dacc96195 100644 --- a/domains/rvsp.json +++ b/domains/rvsp.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "rvsp", - "email": "pvenkat.rv@gmail.com" - }, - "record": { - "CNAME": "rvsp.github.io" - } + "owner": { + "username": "rvsp", + "email": "pvenkat.rv@gmail.com" + }, + "record": { + "CNAME": "rvsp.github.io" + } } diff --git a/domains/rwithik.json b/domains/rwithik.json index d273a95f2..d5d068033 100644 --- a/domains/rwithik.json +++ b/domains/rwithik.json @@ -1,11 +1,11 @@ { - "description": "Rwithik's Website", - "repo": "https://github.com/rwithik/rwithik.github.io", - "owner": { - "username": "rwithik", - "email": "rwithik@gmail.com" - }, - "record": { - "CNAME": "rwithik.github.io" - } + "description": "Rwithik's Website", + "repo": "https://github.com/rwithik/rwithik.github.io", + "owner": { + "username": "rwithik", + "email": "rwithik@gmail.com" + }, + "record": { + "CNAME": "rwithik.github.io" + } } diff --git a/domains/rxyhn.json b/domains/rxyhn.json index 9cd4a91bc..d5b38f214 100644 --- a/domains/rxyhn.json +++ b/domains/rxyhn.json @@ -1,12 +1,12 @@ { - "description": "Rxyhn's Personal Site", - "repo": "https://github.com/rxyhn/rxyhn.github.io", - "owner": { - "username": "rxyhn", - "email": "rayhankafipratama333@gmail.com", - "discord": "rxyhn#1154" - }, - "record": { - "CNAME": "rxyhn.github.io" - } + "description": "Rxyhn's Personal Site", + "repo": "https://github.com/rxyhn/rxyhn.github.io", + "owner": { + "username": "rxyhn", + "email": "rayhankafipratama333@gmail.com", + "discord": "rxyhn#1154" + }, + "record": { + "CNAME": "rxyhn.github.io" + } } diff --git a/domains/ry.json b/domains/ry.json new file mode 100644 index 000000000..a81c26b7f --- /dev/null +++ b/domains/ry.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "rylee88", + "email": "ryanlee00@proton.me" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/rya.json b/domains/rya.json index 7014318c2..f6f0ff384 100644 --- a/domains/rya.json +++ b/domains/rya.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "Jecket22", "email": "lez.vezzica@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://jecket.xyz" - } } - +} diff --git a/domains/ryan.ginut.json b/domains/ryan.ginut.json new file mode 100644 index 000000000..f394ad535 --- /dev/null +++ b/domains/ryan.ginut.json @@ -0,0 +1,10 @@ +{ + "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 deleted file mode 100644 index 01d5c9bd1..000000000 --- a/domains/ryan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "is-a.dev domain", - "repo": "https://github.com/ryan0204", - "owner": { - "username": "Ryan0204", - "email": "ryan@ssrv.xyz" - }, - "record": { - "URL": "https://ssrv.xyz" - } -} diff --git a/domains/ryangamin.json b/domains/ryangamin.json new file mode 100644 index 000000000..48f53a60f --- /dev/null +++ b/domains/ryangamin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Ryan-Gamin", + "email": "ryangaminmc@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ryanzam.json b/domains/ryanzam.json new file mode 100644 index 000000000..5754f2a49 --- /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/ryder.json b/domains/ryder.json new file mode 100644 index 000000000..1ce4df91b --- /dev/null +++ b/domains/ryder.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "RyderCragie", + "email": "69316364+RyderCragie@users.noreply.github.com", + "discord": "713201205488254976" + }, + + "record": { + "CNAME": "ghs.googlehosted.com" + } + } + \ No newline at end of file diff --git a/domains/rylie.json b/domains/rylie.json new file mode 100644 index 000000000..92127e69f --- /dev/null +++ b/domains/rylie.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "j1nxie", + "email": "rylieeeeexd@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ryn.json b/domains/ryn.json index 0adcb55ec..81bd9dee4 100644 --- a/domains/ryn.json +++ b/domains/ryn.json @@ -1,11 +1,9 @@ { - "owner": { - "username": "lazylamps", - "email": "lampslazy@gmail.com" - }, - "record": { - "A": [ - "132.145.25.232" - ] - } + "owner": { + "username": "lazylamps", + "email": "lampslazy@gmail.com" + }, + "record": { + "A": ["132.145.25.232"] + } } diff --git a/domains/ryo.json b/domains/ryo.json new file mode 100644 index 000000000..9c3d6d741 --- /dev/null +++ b/domains/ryo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LLKO101", + "email": "yo1sefooop@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ryobotz.json b/domains/ryobotz.json new file mode 100644 index 000000000..eabbd974b --- /dev/null +++ b/domains/ryobotz.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "FrosGaming", + "email": "dgfrosdgfros@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/rzkyfhrzi21.json b/domains/rzkyfhrzi21.json new file mode 100644 index 000000000..53d2acc13 --- /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..e803200db --- /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..fbc1d51b2 --- /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/s4ib0t.json b/domains/s4ib0t.json new file mode 100644 index 000000000..c0dddb4f2 --- /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/s7nx.json b/domains/s7nx.json new file mode 100644 index 000000000..e34773a52 --- /dev/null +++ b/domains/s7nx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "S7NX", + "email": "synx.lynx69@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/s97.json b/domains/s97.json index 4025f3758..9c1bc6a9f 100644 --- a/domains/s97.json +++ b/domains/s97.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Saud-97", - "email": "saud.aljaffer@gmail.com", - "repo": "https://github.com/Saud-97", - "discord": "S97#6758" - }, - "record": { - "URL": "https://github.com/Saud-97" - } + "owner": { + "username": "Saud-97", + "email": "saud.aljaffer@gmail.com", + "repo": "https://github.com/Saud-97", + "discord": "S97#6758" + }, + "record": { + "URL": "https://github.com/Saud-97" + } } diff --git a/domains/saahil.json b/domains/saahil.json index 9172c945c..0016c12cc 100644 --- a/domains/saahil.json +++ b/domains/saahil.json @@ -1,11 +1,9 @@ { - "description": "this is my about me page, - neongamerbot", - "owner": { - "username": "neongamerbot", - "email": "saahilattud@gmail.com", - "twitter": "" - }, - "record": { - "CNAME": "a58b11f7-e44a-4ebc-811d-22105a51b9b7.repl.co" - } + "owner": { + "username": "NeonGamerBot-QK", + "email": "neon+domain@saahild.com" + }, + "record": { + "A": ["185.250.37.86"] + } } diff --git a/domains/saammaaeel.json b/domains/saammaaeel.json index 4333d13ee..2e8265b10 100644 --- a/domains/saammaaeel.json +++ b/domains/saammaaeel.json @@ -7,4 +7,4 @@ "record": { "CNAME": "saammaaeel.github.io" } -} +} diff --git a/domains/saatvik.json b/domains/saatvik.json new file mode 100644 index 000000000..4dfeac60c --- /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..6ce78d147 100644 --- a/domains/saba.json +++ b/domains/saba.json @@ -8,4 +8,4 @@ "record": { "CNAME": "itsaba.github.io" } -} +} diff --git a/domains/sabelgames.json b/domains/sabelgames.json index 088e0446c..cf07aef15 100644 --- a/domains/sabelgames.json +++ b/domains/sabelgames.json @@ -1,12 +1,11 @@ - { - "owner": { - "username": "SabelGames", - "email": "contact@sabelgames.is-a.dev" - }, - "record": { - "URL": "https://sabelgames.itch.io", - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "SabelGames", + "email": "contact@sabelgames.is-a.dev" + }, + "record": { + "URL": "https://sabelgames.itch.io", + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/sabiiti.json b/domains/sabiiti.json new file mode 100644 index 000000000..77ccd712a --- /dev/null +++ b/domains/sabiiti.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "jona42-ui", + "email": "jonathanthembo123@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/sabil.json b/domains/sabil.json index 915f78bcd..023c1cee8 100644 --- a/domains/sabil.json +++ b/domains/sabil.json @@ -1,11 +1,11 @@ { - "description": "Sabil Shrestha's Site", - "owner": { - "username": "sabilshrestha", - "email": "kongbill6363@gmail.com", - "twitter": "kongbill62" - }, - "record": { - "CNAME": "sabil62.github.io" - } + "description": "Sabil Shrestha's Site", + "owner": { + "username": "sabilshrestha", + "email": "kongbill6363@gmail.com", + "twitter": "kongbill62" + }, + "record": { + "CNAME": "sabil62.github.io" + } } diff --git a/domains/sachin.json b/domains/sachin.json index bffa70ddb..338dd65a0 100644 --- a/domains/sachin.json +++ b/domains/sachin.json @@ -1,11 +1,11 @@ { - "description": "Sachin's portfolio", - "repo": "https://github.com/sachin-in1", - "owner": { - "username": "sachin-in1", - "email": "sachin.here01@gmail.com" - }, - "record": { - "CNAME": "sachin-in1.github.io" - } + "description": "Sachin's portfolio", + "repo": "https://github.com/sachin-in1", + "owner": { + "username": "sachin-in1", + "email": "sachin.here01@gmail.com" + }, + "record": { + "CNAME": "sachin-in1.github.io" + } } diff --git a/domains/sacul-6.json b/domains/sacul-6.json new file mode 100644 index 000000000..d976b2f53 --- /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/sadie.json b/domains/sadie.json index da10491fb..c4f0fc1a5 100644 --- a/domains/sadie.json +++ b/domains/sadie.json @@ -1,12 +1,12 @@ { - "description": "Sadie Brooklyn's website", - "repo": "https://github.com/night-lake/night-lake.github.io", - "owner": { - "username": "night-lake", - "email": "sadiebk@fluorine.me", - "twitter": "_nightlake" - }, - "record": { - "CNAME": "night-lake.github.io" - } + "description": "Sadie Brooklyn's website", + "repo": "https://github.com/night-lake/night-lake.github.io", + "owner": { + "username": "night-lake", + "email": "sadiebk@fluorine.me", + "twitter": "_nightlake" + }, + "record": { + "CNAME": "night-lake.github.io" + } } diff --git a/domains/sadiq.json b/domains/sadiq.json index 32620bce3..35afa788c 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/sadiz.json b/domains/sadiz.json new file mode 100644 index 000000000..a86b305fc --- /dev/null +++ b/domains/sadiz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Sadishru", + "email": "hellosadish@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/saeef.json b/domains/saeef.json index 0ac15e600..69468af7e 100644 --- a/domains/saeef.json +++ b/domains/saeef.json @@ -1,11 +1,11 @@ { - "description": "Personal portfolio site", - "repo": "https://github.com/saeef/isaeef.git", - "owner": { - "username": "saeef", - "email": "saeef@outlook.com" - }, - "record": { - "CNAME": "saeef.github.io" - } + "description": "Personal portfolio site", + "repo": "https://github.com/saeef/isaeef.git", + "owner": { + "username": "saeef", + "email": "saeef@outlook.com" + }, + "record": { + "CNAME": "saeef.github.io" + } } diff --git a/domains/saeful.json b/domains/saeful.json new file mode 100644 index 000000000..d2f484458 --- /dev/null +++ b/domains/saeful.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "saefulbarkah", + "email": "saefulbarkah03@gmail.com" + }, + "record": { + "URL": "https://eful.netlify.app" + } +} 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..49c8e25f1 100644 --- a/domains/safone.json +++ b/domains/safone.json @@ -1,11 +1,10 @@ - - { - "owner": { +{ + "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..e28ed5468 --- /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/sagun.json b/domains/sagun.json new file mode 100644 index 000000000..2dda674d7 --- /dev/null +++ b/domains/sagun.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "xagun", + "email": "xagun.shrestha@gmail.com" + }, + "record": { + "A": ["217.174.245.249"], + "AAAA": ["2a00:da00:1800:83a4::1"], + "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/saharsh.json b/domains/saharsh.json index 652fa8bda..bf6563e1f 100644 --- a/domains/saharsh.json +++ b/domains/saharsh.json @@ -1,12 +1,12 @@ { - "description": "My portofilio!", - "repo": "https://github.com/Saharsh1223/saharsh1223.github.io", - "owner": { - "username": "Saharsh1223", - "email": "psaharsh2@gmail.com", - "twitter": "saharsh1223" - }, - "record": { - "CNAME": "saharsh1223.github.io" - } + "description": "My portofilio!", + "repo": "https://github.com/Saharsh1223/saharsh1223.github.io", + "owner": { + "username": "Saharsh1223", + "email": "psaharsh2@gmail.com", + "twitter": "saharsh1223" + }, + "record": { + "CNAME": "saharsh1223.github.io" + } } diff --git a/domains/sahil.json b/domains/sahil.json index a8dc56ac5..f5f29424e 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": "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" + } } diff --git a/domains/sahilchoudhary.json b/domains/sahilchoudhary.json new file mode 100644 index 000000000..eae73ccd9 --- /dev/null +++ b/domains/sahilchoudhary.json @@ -0,0 +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" + } +} diff --git a/domains/sai-mehar.json b/domains/sai-mehar.json new file mode 100644 index 000000000..7bf3ba607 --- /dev/null +++ b/domains/sai-mehar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sai-mehar", + "email": "saimehar2005@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/saiganeshganoju.json b/domains/saiganeshganoju.json new file mode 100644 index 000000000..2b2a31108 --- /dev/null +++ b/domains/saiganeshganoju.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "saiganesh0084", + "email": "saiganeshganoju@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sailesh.json b/domains/sailesh.json index 641f1d263..211257025 100644 --- a/domains/sailesh.json +++ b/domains/sailesh.json @@ -1,10 +1,10 @@ { - "description": "Sailesh's Personal Website", - "owner": { - "username": "saileshbro", - "email": "saileshbro@gmail.com" - }, - "record": { - "CNAME": "saileshbro.github.io" - } + "description": "Sailesh's Personal Website", + "owner": { + "username": "saileshbro", + "email": "saileshbro@gmail.com" + }, + "record": { + "CNAME": "saileshbro.github.io" + } } diff --git a/domains/sailohitaksh-cryptic.json b/domains/sailohitaksh-cryptic.json new file mode 100644 index 000000000..e067b0510 --- /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/saisandeepvaddi.json b/domains/saisandeepvaddi.json index 584f761ae..2a6af8fd0 100644 --- a/domains/saisandeepvaddi.json +++ b/domains/saisandeepvaddi.json @@ -1,10 +1,10 @@ { - "description": "Sai Sandeep Vaddi's website", - "owner": { - "username": "saisandeepvaddi", - "email": "saisandeepvaddi@gmail.com" - }, - "record": { - "A": ["104.198.14.52"] - } + "description": "Sai Sandeep Vaddi's website", + "owner": { + "username": "saisandeepvaddi", + "email": "saisandeepvaddi@gmail.com" + }, + "record": { + "A": ["104.198.14.52"] + } } diff --git a/domains/saivikram.json b/domains/saivikram.json new file mode 100644 index 000000000..feb5b1163 --- /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 649a91388..61c5c001e 100644 --- a/domains/saizuo.json +++ b/domains/saizuo.json @@ -1,12 +1,12 @@ - - { - "owner": { +{ + "description": "Saizuo's Portfolio Website", + "repo": "https://github.com/saizuo/saizuo.github.io", + "owner": { "username": "Saizuo", - "email": "vikasj@noerror.studio" - }, - - "record": { - "URL": "https://saizuo.me" - } + "email": "jhaakash177@gmail.com", + "twitter": "SaizyWaizy" + }, + "record": { + "CNAME": "Saizuo.github.io" } - +} diff --git a/domains/sajan.json b/domains/sajan.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/sajan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/sakko.json b/domains/sakko.json index 2e4037cfa..6f0975012 100644 --- a/domains/sakko.json +++ b/domains/sakko.json @@ -1,12 +1,12 @@ { - "description": "SaKKo from Thailand", - "repo": "https://github.com/SaKKo/soontobeprogrammer.com", - "owner": { - "username": "sakko", - "email": "saklism@gmail.com", - "twitter": "sakkosama" - }, - "record": { - "CNAME": "sakko.github.io" - } + "description": "SaKKo from Thailand", + "repo": "https://github.com/SaKKo/soontobeprogrammer.com", + "owner": { + "username": "sakko", + "email": "saklism@gmail.com", + "twitter": "sakkosama" + }, + "record": { + "CNAME": "sakko.github.io" + } } diff --git a/domains/salar.json b/domains/salar.json new file mode 100644 index 000000000..f1e641106 --- /dev/null +++ b/domains/salar.json @@ -0,0 +1,9 @@ +{ + "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..fe85ebf2e --- /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/sam-jspn.json b/domains/sam-jspn.json index 8544a4a4b..e52accfaa 100644 --- a/domains/sam-jspn.json +++ b/domains/sam-jspn.json @@ -1,12 +1,12 @@ { - "description": "Sam's website", - "repo":"https://github.com/Samuel-Jspn/lair", - "owner": { - "username": "Samuel-Jspn", - "email": "sam.josephine@outlook.fr", - "discord": "R3dL1ghty#2904" - }, - "record": { - "CNAME": "samuel-jspn.github.io" - } + "description": "Sam's website", + "repo": "https://github.com/Samuel-Jspn/lair", + "owner": { + "username": "Samuel-Jspn", + "email": "sam.josephine@outlook.fr", + "discord": "R3dL1ghty#2904" + }, + "record": { + "CNAME": "samuel-jspn.github.io" + } } diff --git a/domains/sam.json b/domains/sam.json index d3a0fc31a..d93108e90 100644 --- a/domains/sam.json +++ b/domains/sam.json @@ -1,11 +1,11 @@ { - "description": "Sam Poder's personal website.", - "repo": "https://github.com/sampoder/w2", - "owner": { - "username": "sampoder", - "email": "sam@sampoder.com" - }, - "record": { - "URL": "https://sampoder.com" - } + "description": "Sam Poder's personal website.", + "repo": "https://github.com/sampoder/w2", + "owner": { + "username": "sampoder", + "email": "sam@sampoder.com" + }, + "record": { + "URL": "https://sampoder.com" + } } diff --git a/domains/sama.json b/domains/sama.json new file mode 100644 index 000000000..81f66b424 --- /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/samanyu.json b/domains/samanyu.json index 3f955a21a..b16154f42 100644 --- a/domains/samanyu.json +++ b/domains/samanyu.json @@ -1,11 +1,11 @@ { - "description": "They call me Soman", - "repo": "https://github.com/Samanyu13", - "owner": { - "username": "Samanyu13", - "email": "samanyusaji18@gmail.com" - }, - "record": { - "CNAME": "samanyu13.github.io" - } + "description": "They call me Soman", + "repo": "https://github.com/Samanyu13", + "owner": { + "username": "Samanyu13", + "email": "samanyusaji18@gmail.com" + }, + "record": { + "CNAME": "samanyu13.github.io" + } } diff --git a/domains/samara.json b/domains/samara.json new file mode 100644 index 000000000..cad54ab6a --- /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/samarth-asthana.json b/domains/samarth-asthana.json index 5450c8b43..77ac005cc 100644 --- a/domains/samarth-asthana.json +++ b/domains/samarth-asthana.json @@ -1,11 +1,11 @@ { - "description": "Samarth Asthana", - "repo": "https://github.com/samarth-asthana/portfolio.github.io", - "owner": { - "username": "samarth-asthana", - "email": "samarthasthana110@gmail.com" - }, - "record": { - "CNAME": "samarth-asthana.github.io" - } + "description": "Samarth Asthana", + "repo": "https://github.com/samarth-asthana/portfolio.github.io", + "owner": { + "username": "samarth-asthana", + "email": "samarthasthana110@gmail.com" + }, + "record": { + "CNAME": "samarth-asthana.github.io" + } } diff --git a/domains/samarth.json b/domains/samarth.json index 34f9f032d..093a1e7e0 100644 --- a/domains/samarth.json +++ b/domains/samarth.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "samarthkulshrestha", - "email": "samarthkulshrestha@protonmail.com" - }, - "record": { - "CNAME": "samarthkulshrestha.github.io" - } + "owner": { + "username": "samarthkulshrestha", + "email": "samarthkulshrestha@protonmail.com" + }, + "record": { + "CNAME": "samarthkulshrestha.github.io" + } } diff --git a/domains/sambhrama.json b/domains/sambhrama.json index 42ea19919..90b69910c 100644 --- a/domains/sambhrama.json +++ b/domains/sambhrama.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Sambhrama754", - "email": "sambhramakhushi@hotmail.com" - }, - "record": { - "CNAME": "website-production-d557.up.railway.app" - } + "owner": { + "username": "Sambhrama754", + "email": "sambhramakhushi@hotmail.com" + }, + "record": { + "CNAME": "website-production-d557.up.railway.app" + } } diff --git a/domains/samcarson.json b/domains/samcarson.json index 6c2941d8d..e9f6d0567 100644 --- a/domains/samcarson.json +++ b/domains/samcarson.json @@ -1,9 +1,10 @@ { - "owner": { - "username": "samcarsonx", - "email": "sam@carson.industries" - }, - "record": { - "CNAME": "isadev.samcarson.co.uk" - } + "owner": { + "username": "samcarsonx", + "email": "sam@samcarson.co.uk", + "twitter": "samcarsonx" + }, + "record": { + "URL": "https://samcarson.co.uk" + } } diff --git a/domains/sameer.json b/domains/sameer.json new file mode 100644 index 000000000..264047dee --- /dev/null +++ b/domains/sameer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "carnotweat", + "email": "jasitis@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sameera.json b/domains/sameera.json new file mode 100644 index 000000000..d78c5e0ac --- /dev/null +++ b/domains/sameera.json @@ -0,0 +1,12 @@ +{ + "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" + }, + "record": { + "CNAME": "sameerasw.github.io" + } +} diff --git a/domains/sameerk.json b/domains/sameerk.json new file mode 100644 index 000000000..362af19db --- /dev/null +++ b/domains/sameerk.json @@ -0,0 +1,12 @@ +{ + "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"] + } + } + \ No newline at end of file diff --git a/domains/samet.json b/domains/samet.json index b4951720e..a9b912db7 100644 --- a/domains/samet.json +++ b/domains/samet.json @@ -1,14 +1,14 @@ { - "description": "This is a portfolio for me, SmugTheKiler, but is based off a template.", - "repo": "https://github.com/sa-met/sa-met.github.io", - "owner": { - "username": "Samett", - "email": "sametak3210@gmail.com", - "discord": "Samett#8519", - "discordID": "894594782897262635" - }, - - "record": { - "CNAME": "sa-met.github.io" - } + "description": "This is a portfolio for me, SmugTheKiler, but is based off a template.", + "repo": "https://github.com/sa-met/sa-met.github.io", + "owner": { + "username": "Samett", + "email": "sametak3210@gmail.com", + "discord": "Samett#8519", + "discord-id": "894594782897262635" + }, + + "record": { + "CNAME": "sa-met.github.io" + } } diff --git a/domains/sami.json b/domains/sami.json new file mode 100644 index 000000000..e0d6d2c92 --- /dev/null +++ b/domains/sami.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "obstructed", + "email": "scamstur@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/samia-islam-sua.json b/domains/samia-islam-sua.json new file mode 100644 index 000000000..e6a65ba31 --- /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/samihatasnim.json b/domains/samihatasnim.json index 2128a7b05..a9c1a71da 100644 --- a/domains/samihatasnim.json +++ b/domains/samihatasnim.json @@ -1,13 +1,13 @@ { - "description": "Samiha Tasnim's personal website.", - "repo": "https://github.com/samihaTasnim/website", - "owner": { - "username": "samihaTasnim", - "discord": "sam.#7750", - "email": "samxtasnim@gmail.com", - "twitter": "@SamihaTasnimm" - }, - "record": { - "CNAME": "website-69g.pages.dev" - } + "description": "Samiha Tasnim's personal website.", + "repo": "https://github.com/samihaTasnim/website", + "owner": { + "username": "samihaTasnim", + "discord": "sam.#7750", + "email": "samxtasnim@gmail.com", + "twitter": "SamihaTasnimm" + }, + "record": { + "CNAME": "website-69g.pages.dev" + } } diff --git a/domains/samir-vaghela.json b/domains/samir-vaghela.json new file mode 100644 index 000000000..5336fa160 --- /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/samir.json b/domains/samir.json index 55f56e20e..bb628b833 100644 --- a/domains/samir.json +++ b/domains/samir.json @@ -1,12 +1,12 @@ { - "description": "Samir's Portfolio Website.", - "repo": "https://github.com/SamirPaulb/samir.is-a.dev", - "owner": { - "username": "SamirPaulb", - "email": "samirpaulb@gmail.com", - "twitter": "SamirPaulb" - }, - "record": { - "CNAME": "samirpaulb.github.io" - } + "description": "Samir's Portfolio Website.", + "repo": "https://github.com/SamirPaulb/samir.is-a.dev", + "owner": { + "username": "SamirPaulb", + "email": "samirpaulb@gmail.com", + "twitter": "SamirPaulb" + }, + "record": { + "CNAME": "samirpaulb.github.io" + } } diff --git a/domains/samirp.json b/domains/samirp.json new file mode 100644 index 000000000..b488f3126 --- /dev/null +++ b/domains/samirp.json @@ -0,0 +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" + } +} diff --git a/domains/samirpaul.json b/domains/samirpaul.json index 8b1ee4b58..b8aec95d0 100644 --- a/domains/samirpaul.json +++ b/domains/samirpaul.json @@ -1,12 +1,12 @@ { - "description": "Samir Paul's Portfolio Website.", - "repo": "https://github.com/SamirPaul1/samirpaul", - "owner": { - "username": "SamirPaul1", - "email": "samirpaulb@gmail.com", - "twitter": "SamirPaulb" - }, - "record": { - "CNAME": "samirpaul1.github.io" - } + "description": "Samir Paul's Portfolio Website.", + "repo": "https://github.com/SamirPaul1/samirpaul", + "owner": { + "username": "SamirPaul1", + "email": "samirpaulb@gmail.com", + "twitter": "SamirPaulb" + }, + "record": { + "CNAME": "samirpaul1.github.io" + } } diff --git a/domains/saml.json b/domains/saml.json index 4e4c51505..371aadf8b 100644 --- a/domains/saml.json +++ b/domains/saml.json @@ -1,11 +1,11 @@ { - "description": "Personal Website", - "repo": "https://github.com/SamDev-7/website", - "owner": { - "username": "SamDev-7", - "email": "hello@samliu.dev" - }, - "record": { - "URL": "https://samliu.dev" - } + "description": "Personal Website", + "repo": "https://github.com/SamDev-7/website", + "owner": { + "username": "SamDev-7", + "email": "hello@samliu.dev" + }, + "record": { + "URL": "https://samliu.dev" + } } diff --git a/domains/samlim.json b/domains/samlim.json new file mode 100644 index 000000000..67f6015a8 --- /dev/null +++ b/domains/samlim.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "samuelylim", + "email": "samuelylim04@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sammy.json b/domains/sammy.json index 402e6472d..25d5432a3 100644 --- a/domains/sammy.json +++ b/domains/sammy.json @@ -1,12 +1,12 @@ { - "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" - } + "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/samo.json b/domains/samo.json index ba1f05dc2..4c780af34 100644 --- a/domains/samo.json +++ b/domains/samo.json @@ -1,12 +1,12 @@ { - "description": "im samo :3", - "repo": "https://github.com/GodSamomen/GodSamomen.github.io", - "owner": { - "username": "GodSamomen", - "email": "godsamomen@protonmail.com", - "twitter": "godsamomen" - }, - "record": { - "CNAME": "godsamomen.github.io" - } + "description": "im samo :3", + "repo": "https://github.com/GodSamomen/GodSamomen.github.io", + "owner": { + "username": "GodSamomen", + "email": "godsamomen@protonmail.com", + "twitter": "godsamomen" + }, + "record": { + "CNAME": "godsamomen.github.io" + } } diff --git a/domains/samriddha.json b/domains/samriddha.json index 7ede64278..720d397f5 100644 --- a/domains/samriddha.json +++ b/domains/samriddha.json @@ -1,12 +1,12 @@ { - "description": "Link to my website", - "repo": "https://github.com/samriddha-basu-cloud/CV", - "owner": { - "username": "samriddha-basu-cloud", - "email": "sb2899@srmist.edu.in", - "twitter": "https://twitter.com/BasuSamriddha" - }, - "record": { - "CNAME": "samriddha-basu-cloud.github.io" - } + "description": "Link to my website", + "repo": "https://github.com/samriddha-basu-cloud/CV", + "owner": { + "username": "samriddha-basu-cloud", + "email": "sb2899@srmist.edu.in", + "twitter": "BasuSamriddha" + }, + "record": { + "CNAME": "samriddha-basu-cloud.github.io" + } } diff --git a/domains/samsul.json b/domains/samsul.json new file mode 100644 index 000000000..da03eab85 --- /dev/null +++ b/domains/samsul.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HayBael", + "email": "rakhakhairydarka801@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/samuel.json b/domains/samuel.json index 0ae3a7969..b048f7dd7 100644 --- a/domains/samuel.json +++ b/domains/samuel.json @@ -1,11 +1,11 @@ { - "description": "Documentation pages for Samuel apps.", - "repo": "https://github.com/SISBEST/sisbest.github.io", - "owner": { - "username": "SISBEST", - "email": "samuel@samuelsharp.com" - }, - "record": { - "CNAME": "sisbest.github.io" - } + "description": "Documentation pages for Samuel apps.", + "repo": "https://github.com/SISBEST/sisbest.github.io", + "owner": { + "username": "SISBEST", + "email": "samuel@samuelsharp.com" + }, + "record": { + "CNAME": "sisbest.github.io" + } } diff --git a/domains/samuelnihbos.json b/domains/samuelnihbos.json index 462780986..81e32ca3c 100644 --- a/domains/samuelnihbos.json +++ b/domains/samuelnihbos.json @@ -1,12 +1,12 @@ { - "description": "samuelnihbos.is-a.dev", - "repo": "https://github.com/samuelnihbos/samuelnihbos.github.io", - "owner": { - "username": "samuelnihbos", - "email": "samuelnihbos@gnuweeb.org", - "twitter": "Samueeeeel6" - }, - "record": { - "CNAME": "samuelnihbos.github.io" - } + "description": "samuelnihbos.is-a.dev", + "repo": "https://github.com/samuelnihbos/samuelnihbos.github.io", + "owner": { + "username": "samuelnihbos", + "email": "samuelnihbos@gnuweeb.org", + "twitter": "Samueeeeel6" + }, + "record": { + "CNAME": "samuelnihbos.github.io" + } } diff --git a/domains/sanana.json b/domains/sanana.json index 238069e9c..57d47f5d1 100644 --- a/domains/sanana.json +++ b/domains/sanana.json @@ -1,12 +1,12 @@ { - "description": "sanana the skenana's personal website", - "repo": "https://github.com/TheOddGarlic/theoddgarlic.github.io", - "owner": { - "username": "TheOddGarlic", - "email": "umutinanerdogan@pm.me", - "discord": "sanana the skenana#4025" - }, - "record": { - "CNAME": "theoddgarlic.github.io" - } + "description": "sanana the skenana's personal website", + "repo": "https://github.com/TheOddGarlic/theoddgarlic.github.io", + "owner": { + "username": "TheOddGarlic", + "email": "umutinanerdogan@pm.me", + "discord": "sanana the skenana#4025" + }, + "record": { + "CNAME": "theoddgarlic.github.io" + } } diff --git a/domains/sanchay.json b/domains/sanchay.json new file mode 100644 index 000000000..09be9289c --- /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/sandeepv.json b/domains/sandeepv.json index 479d5cdc4..405f2819f 100644 --- a/domains/sandeepv.json +++ b/domains/sandeepv.json @@ -1,10 +1,10 @@ { - "description": "Sandeep's personal website", - "owner": { - "username": "SandeepVattapparambil", - "email": "sandeepv68@gmail.com" - }, - "record": { - "CNAME": "sandeepvattapparambil.github.io" - } + "description": "Sandeep's personal website", + "owner": { + "username": "SandeepVattapparambil", + "email": "sandeepv68@gmail.com" + }, + "record": { + "CNAME": "sandeepvattapparambil.github.io" + } } diff --git a/domains/sandi.json b/domains/sandi.json new file mode 100644 index 000000000..4506e5a03 --- /dev/null +++ b/domains/sandi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sandiskyy", + "email": "sandimixyz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sandira.json b/domains/sandira.json new file mode 100644 index 000000000..86e09b5cb --- /dev/null +++ b/domains/sandira.json @@ -0,0 +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" + } +} diff --git a/domains/sandro.json b/domains/sandro.json index 91129c159..f945a4ae4 100644 --- a/domains/sandro.json +++ b/domains/sandro.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Diordnas", - "email": "alessandroeliot@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" - } + "owner": { + "username": "Diordnas", + "email": "alessandroeliot@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/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 new file mode 100644 index 000000000..877d8d902 --- /dev/null +++ b/domains/sangelo.json @@ -0,0 +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/sanityless.json b/domains/sanityless.json new file mode 100644 index 000000000..bfa0623b9 --- /dev/null +++ b/domains/sanityless.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EurekaMathSkillIssue", + "email": "ataharmolla@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sanjay-makasana.json b/domains/sanjay-makasana.json new file mode 100644 index 000000000..b7eabf77e --- /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-suryavanshi.json b/domains/sanjay-suryavanshi.json new file mode 100644 index 000000000..912bb5dc8 --- /dev/null +++ b/domains/sanjay-suryavanshi.json @@ -0,0 +1,11 @@ +{ + "description": "Sanjay Suryavanshi Profile.", + "repo": "https://github.com/Sanjay-Suryavanshi/Sanjay-Suryavanshi.github.io", + "owner": { + "username": "Sanjay-Suryavanshi", + "email": "" + }, + "record": { + "CNAME": "Sanjay-Suryavanshi.github.io" + } +} diff --git a/domains/sanjay.json b/domains/sanjay.json index a3b3c353a..bacadb310 100644 --- a/domains/sanjay.json +++ b/domains/sanjay.json @@ -9,4 +9,4 @@ "record": { "URL": "https://sanjaysoundarajan.dev" } -} \ No newline at end of file +} diff --git a/domains/sanketborade.json b/domains/sanketborade.json new file mode 100644 index 000000000..488ca22c2 --- /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..af6740e27 --- /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..882b46ae1 --- /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/santhosh.json b/domains/santhosh.json index a59d2ea01..237d88c7a 100644 --- a/domains/santhosh.json +++ b/domains/santhosh.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "ABSanthosh", - "email": "a.b.santhosh02@gmail.com" - }, - "record": { - "CNAME": "absanthosh.github.io" - } + "owner": { + "username": "ABSanthosh", + "email": "a.b.santhosh02@gmail.com" + }, + "record": { + "CNAME": "absanthosh.github.io" + } } diff --git a/domains/santito.json b/domains/santito.json index f176be2c9..5ca69d176 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", + "repo": "https://github.com/San-tito/san-tito.github.io", "owner": { - "username": "DevSantito", - "email": "devsantito@gmail.com" + "username": "San-tito", + "email": "devsantito@gmail.com" }, "record": { - "CNAME": "devsantito.github.io" + "CNAME": "san-tito.github.io" } - } +} diff --git a/domains/sappy.json b/domains/sappy.json index 029d19cbe..423d790ce 100644 --- a/domains/sappy.json +++ b/domains/sappy.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Slddev", - "email": "admin@sapinc.ga" - }, - "record": { - "CNAME": "slddev.github.io" - } + "owner": { + "username": "Slddev", + "email": "admin@sapinc.ga" + }, + "record": { + "CNAME": "slddev.github.io" + } } diff --git a/domains/saptarshi.json b/domains/saptarshi.json new file mode 100644 index 000000000..70b7b243f --- /dev/null +++ b/domains/saptarshi.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "saptarshihalder", + "email": "saptarshihalder69@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/saqlainbrawl.json b/domains/saqlainbrawl.json new file mode 100644 index 000000000..d7e5ae7d5 --- /dev/null +++ b/domains/saqlainbrawl.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SaqlainBrawl", + "email": "saqlainbrawl@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sarang.json b/domains/sarang.json new file mode 100644 index 000000000..f13285897 --- /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/sarath.json b/domains/sarath.json index 9eea584b2..d27882766 100644 --- a/domains/sarath.json +++ b/domains/sarath.json @@ -1,11 +1,11 @@ { - "description": "Sarath's Website", - "repo": "https://github.com/Sharkaboi/sharkaboi.github.io", - "owner": { - "username": "Sharkaboi", - "email": "sarathsedu@gmail.com" - }, - "record": { - "CNAME": "sharkaboi.github.io" - } + "description": "Sarath's Website", + "repo": "https://github.com/Sharkaboi/sharkaboi.github.io", + "owner": { + "username": "Sharkaboi", + "email": "sarathsedu@gmail.com" + }, + "record": { + "CNAME": "sharkaboi.github.io" + } } diff --git a/domains/saraxa.json b/domains/saraxa.json index b6ffa9638..29f6c33d9 100644 --- a/domains/saraxa.json +++ b/domains/saraxa.json @@ -1,12 +1,12 @@ { - "description": "saraxa personal website", - "repo": "https://github.com/reef1447/reef1447.github.io", - "owner": { - "username": "reef1447", - "email": "spray123kira@gmail.com", - "discord": "saraxa#8899" - }, - "record": { - "CNAME": "reef1447.github.io" - } + "description": "saraxa personal website", + "repo": "https://github.com/reef1447/reef1447.github.io", + "owner": { + "username": "reef1447", + "email": "spray123kira@gmail.com", + "discord": "saraxa#8899" + }, + "record": { + "CNAME": "reef1447.github.io" + } } 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/sarfaraz.json b/domains/sarfaraz.json index 29ca0df9f..6db97cdcf 100644 --- a/domains/sarfaraz.json +++ b/domains/sarfaraz.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "sarfarazstark", - "email": "sarfarazstark@gmail.com", - "twitter": "sarfarazstark" - }, - "record": { - "CNAME": "sarfarazstark.github.io" - } + "owner": { + "username": "sarfarazstark", + "email": "sarfarazstark@gmail.com", + "twitter": "sarfarazstark" + }, + "record": { + "CNAME": "sarfarazstark.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/sasial.json b/domains/sasial.json index e5493f924..4a5051576 100644 --- a/domains/sasial.json +++ b/domains/sasial.json @@ -1,12 +1,12 @@ { - "description": "My Portfolio", - "repo": "https://github.com/sasial-dev/Portfolio", - "owner": { - "username": "sasial-dev", - "email": "", - "discord": "Sasial#9375" - }, - "record": { - "URL": "https://sasial.dev/" - } + "description": "My Portfolio", + "repo": "https://github.com/sasial-dev/Portfolio", + "owner": { + "username": "sasial-dev", + "email": "", + "discord": "Sasial#9375" + }, + "record": { + "URL": "https://sasial.dev" + } } diff --git a/domains/saswatsamal.json b/domains/saswatsamal.json index c4061581d..eccaead0f 100644 --- a/domains/saswatsamal.json +++ b/domains/saswatsamal.json @@ -1,12 +1,12 @@ { - "description": "The website of Saswat Samal conataining all the links of him.", - "repo": "https://github.com/saswatsamal/saswatsamal.github.io", - "owner": { - "username": "saswatsamal", - "email": "samalsaswat0@gmail.com", - "twitter": "TweetSaswat" - }, - "record": { - "CNAME": "saswatsamal.github.io" - } + "description": "The website of Saswat Samal conataining all the links of him.", + "repo": "https://github.com/saswatsamal/saswatsamal.github.io", + "owner": { + "username": "saswatsamal", + "email": "samalsaswat0@gmail.com", + "twitter": "TweetSaswat" + }, + "record": { + "CNAME": "saswatsamal.github.io" + } } diff --git a/domains/sathish.json b/domains/sathish.json index fbd4cccc9..ff9142b09 100644 --- a/domains/sathish.json +++ b/domains/sathish.json @@ -1,11 +1,11 @@ { - "description": "My personal dev blog", - "repo": "https://github.com/Muppidathi-sys/Muppidathi-sys.github.io", - "owner": { - "username": "Muppidathi-sys", - "email": "muppidathi00@gmail.com" - }, - "record": { - "CNAME": "Muppidathi-sys.github.io" - } + "description": "My personal dev blog", + "repo": "https://github.com/Muppidathi-sys/Muppidathi-sys.github.io", + "owner": { + "username": "Muppidathi-sys", + "email": "muppidathi00@gmail.com" + }, + "record": { + "CNAME": "Muppidathi-sys.github.io" + } } diff --git a/domains/satoshi.json b/domains/satoshi.json new file mode 100644 index 000000000..9a6063f3f --- /dev/null +++ b/domains/satoshi.json @@ -0,0 +1,10 @@ +{ + "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..0db17892e --- /dev/null +++ b/domains/satr14.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "SX-9", + "email": "satriakrach@gmail.com", + "discord": "882595027132493864" + }, + + "record": { + "CNAME": "sx-9.github.io" + } + } + \ No newline at end of file diff --git a/domains/saturn-net.json b/domains/saturn-net.json new file mode 100644 index 000000000..55518e2b0 --- /dev/null +++ b/domains/saturn-net.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LCDLED", + "email": "TheCatatomic@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/satvikg7.json b/domains/satvikg7.json new file mode 100644 index 000000000..db1d3f9e5 --- /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/satyamv7.json b/domains/satyamv7.json index 9aef9da6d..9bfd58afc 100644 --- a/domains/satyamv7.json +++ b/domains/satyamv7.json @@ -1,11 +1,11 @@ { - "description": "SatyamV7.is-a.dev", - "repo": "https://github.com/SatyamV7/SatyamV7.github.io", - "owner": { - "username": "SatyamV7", - "email": "satyamverma46@outlook.com" - }, - "record": { - "CNAME": "SatyamV7.github.io" - } + "description": "SatyamV7.is-a.dev", + "repo": "https://github.com/SatyamV7/SatyamV7.github.io", + "owner": { + "username": "SatyamV7", + "email": "satyamverma46@outlook.com" + }, + "record": { + "CNAME": "SatyamV7.github.io" + } } diff --git a/domains/saumon.json b/domains/saumon.json new file mode 100644 index 000000000..6aa55c00b --- /dev/null +++ b/domains/saumon.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "saumonarcenciel", + "email": "viala38000@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/saunear.json b/domains/saunear.json new file mode 100644 index 000000000..6ae344576 --- /dev/null +++ b/domains/saunear.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "toastmakingmachine", + "email": "bcefsart@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/saurabh-kirve.json b/domains/saurabh-kirve.json new file mode 100644 index 000000000..2040678f9 --- /dev/null +++ b/domains/saurabh-kirve.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BerzCode", + "email": "saurabhkirve@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/saurabh.json b/domains/saurabh.json new file mode 100644 index 000000000..7dd050617 --- /dev/null +++ b/domains/saurabh.json @@ -0,0 +1,9 @@ +{ + "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..07906eb42 --- /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..d242be87e --- /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..9b0db8ca4 --- /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..b95924094 --- /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..215a31038 --- /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/savio.json b/domains/savio.json index 2d8173d2d..85f0f7618 100644 --- a/domains/savio.json +++ b/domains/savio.json @@ -1,11 +1,11 @@ { - "description": "Savio Martin is a Dev", - "repo": "https://github.com/saviomartin/register", - "owner": { - "username": "saviomartin", - "email": "saviomartin2020@gmail.com" - }, - "record": { - "CNAME": "saviomartin.github.io" - } + "description": "Savio Martin is a Dev", + "repo": "https://github.com/saviomartin/register", + "owner": { + "username": "saviomartin", + "email": "saviomartin2020@gmail.com" + }, + "record": { + "CNAME": "saviomartin.github.io" + } } diff --git a/domains/saviomartin.json b/domains/saviomartin.json index 52c6c2409..fe9e2e20d 100644 --- a/domains/saviomartin.json +++ b/domains/saviomartin.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/martinthampi/martinthampi.github.io", - "owner": { - "username": "martinthampi", - "email": "martinthampi@gmail.com" - }, - "record": { - "CNAME": "martinthampi.github.io" - } + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/martinthampi/martinthampi.github.io", + "owner": { + "username": "martinthampi", + "email": "martinthampi@gmail.com" + }, + "record": { + "CNAME": "martinthampi.github.io" + } } diff --git a/domains/saxon-totally.json b/domains/saxon-totally.json new file mode 100644 index 000000000..679044a79 --- /dev/null +++ b/domains/saxon-totally.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "tensura-is-good", + "email": "sands.is.undertable@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/saya.json b/domains/saya.json index 1fa51a57e..ee54b9084 100644 --- a/domains/saya.json +++ b/domains/saya.json @@ -1,12 +1,12 @@ { - "description": "saya's site", - "repo": "https://github.com/yanNotDev/yanNotDev.github.io", - "owner": { - "username": "yanNotDev", - "email": "aayantde@hotmail.com", - "twitter": "AayanTDE" - }, - "record": { - "CNAME": "yanNotDev.github.io" - } + "description": "saya's site", + "repo": "https://github.com/yanNotDev/yanNotDev.github.io", + "owner": { + "username": "yanNotDev", + "email": "aayantde@hotmail.com", + "twitter": "AayanTDE" + }, + "record": { + "CNAME": "yanNotDev.github.io" + } } diff --git a/domains/sayantan.json b/domains/sayantan.json new file mode 100644 index 000000000..2515f6338 --- /dev/null +++ b/domains/sayantan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "legendsayantan", + "email": "legendsayantanpaul@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sayolight.json b/domains/sayolight.json new file mode 100644 index 000000000..3a3bbb4f8 --- /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..236ce0134 --- /dev/null +++ b/domains/sc.json @@ -0,0 +1,11 @@ +{ + "description": "My Personal Website", + "repo": "https://github.com/SC136/SC136.github.io", + "owner": { + "username": "SC136", + "email": "swarchuri06@gmail.com" + }, + "record": { + "CNAME": "SC136.github.io" + } +} 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..f64a2fc5c 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": "cfp.gotdns.ch" + } +} 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.json b/domains/school.json new file mode 100644 index 000000000..77ad463dd --- /dev/null +++ b/domains/school.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PsxScriptsW", + "email": "jacob.blits@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/schummler.json b/domains/schummler.json new file mode 100644 index 000000000..a34b57095 --- /dev/null +++ b/domains/schummler.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "schummler", + "email": "markwilkens102@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/scientific-dev.json b/domains/scientific-dev.json index c86714c4e..c2b605bcb 100644 --- a/domains/scientific-dev.json +++ b/domains/scientific-dev.json @@ -1,12 +1,12 @@ { - "description": "A personal website to display my projects and details about me.", - "repo": "https://github.com/scientific-dev/portfolio", - "owner": { - "username": "scientific-dev", - "email": "scientificguy007@gmail.com", - "twitter": "ScientificDev" - }, - "record": { - "URL": "https://thesudarsandev.xyz/" - } + "description": "A personal website to display my projects and details about me.", + "repo": "https://github.com/scientific-dev/portfolio", + "owner": { + "username": "scientific-dev", + "email": "scientificguy007@gmail.com", + "twitter": "ScientificDev" + }, + "record": { + "URL": "https://thesudarsandev.xyz" + } } diff --git a/domains/scor32k.json b/domains/scor32k.json new file mode 100644 index 000000000..dd1a67730 --- /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..04606b840 --- /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/scott.json b/domains/scott.json new file mode 100644 index 000000000..30f9f973c --- /dev/null +++ b/domains/scott.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "scott1991", + "email": "cakepbm@gmail.com" + }, + "record": { + "A": ["150.230.97.210"] + } +} 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/scronite.json b/domains/scronite.json deleted file mode 100644 index cebffd2c9..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 index d6f9c38d7..2c1f0eec8 100644 --- a/domains/scythe.json +++ b/domains/scythe.json @@ -1,10 +1,10 @@ { - "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" - } + "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/scythe101.json b/domains/scythe101.json new file mode 100644 index 000000000..2634378eb --- /dev/null +++ b/domains/scythe101.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Scythe101", + "email": "julianchenard@icloud.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/scythemedia.json b/domains/scythemedia.json new file mode 100644 index 000000000..62dd9bdc8 --- /dev/null +++ b/domains/scythemedia.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ScytheMed1a", + "email": "tbswartz10@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sdizdarevic.json b/domains/sdizdarevic.json new file mode 100644 index 000000000..fa2dfdc63 --- /dev/null +++ b/domains/sdizdarevic.json @@ -0,0 +1,11 @@ +{ + "description": "sdizdarevic.is-a.dev", + "repo": "https://github.com/sdizdarevic/sdizdarevic.github.io", + "owner": { + "username": "sdizdarevic", + "email": "saudin.dizdarevic@gmail.com" + }, + "record": { + "CNAME": "sdizdarevic.github.io" + } +} diff --git a/domains/sdp.json b/domains/sdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/sdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/sdxqw.json b/domains/sdxqw.json index 46c540625..87a77dc00 100644 --- a/domains/sdxqw.json +++ b/domains/sdxqw.json @@ -1,11 +1,11 @@ { - "description": "A personal portfolio site for my project.", - "repo": "https://github.com/AsarySoftware/AxstTweaker", - "owner": { - "username": "sdxqw", - "email": "xntrowdev@gmail.com" - }, - "record": { - "CNAME": "sdxqw.github.io" - } + "description": "A personal portfolio site for my project.", + "repo": "https://github.com/AsarySoftware/AxstTweaker", + "owner": { + "username": "sdxqw", + "email": "xntrowdev@gmail.com" + }, + "record": { + "CNAME": "sdxqw.github.io" + } } diff --git a/domains/sean.json b/domains/sean.json new file mode 100644 index 000000000..a7669bbd2 --- /dev/null +++ b/domains/sean.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Ridgeano", + "email": "seanridgeon@live.co.uk" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/seanconroy.json b/domains/seanconroy.json new file mode 100644 index 000000000..2ee2cab41 --- /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 new file mode 100644 index 000000000..afa2cebd6 --- /dev/null +++ b/domains/search.l6174.json @@ -0,0 +1,11 @@ +{ + "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/sebastian.json b/domains/sebastian.json new file mode 100644 index 000000000..82bb17628 --- /dev/null +++ b/domains/sebastian.json @@ -0,0 +1,11 @@ +{ + "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/sebaz.json b/domains/sebaz.json index b96fe5d04..4070ac9e0 100644 --- a/domains/sebaz.json +++ b/domains/sebaz.json @@ -1,10 +1,10 @@ { - "description": "my website link", - "owner": { - "username": "iSebazz", - "email": "iSebazz@outlook.es" - }, - "record": { - "CNAME": "usebazz.github.io" - } + "description": "my website link", + "owner": { + "username": "iSebazz", + "email": "iSebazz@outlook.es" + }, + "record": { + "CNAME": "usebazz.github.io" + } } diff --git a/domains/sebitalent04.json b/domains/sebitalent04.json new file mode 100644 index 000000000..c89df20b3 --- /dev/null +++ b/domains/sebitalent04.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/SebiTalent04/SebiTalent04.github.io", + "owner": { + "username": "SebiTalent04", + "email": "", + "discord": "Sto#7264" + }, + "record": { + "CNAME": "SebiTalent04.github.io" + } +} diff --git a/domains/sedat.json b/domains/sedat.json new file mode 100644 index 000000000..42d002698 --- /dev/null +++ b/domains/sedat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sedat342042", + "email": "sedat342042@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sedat3344.json b/domains/sedat3344.json new file mode 100644 index 000000000..42d002698 --- /dev/null +++ b/domains/sedat3344.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sedat342042", + "email": "sedat342042@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/seizedforge.json b/domains/seizedforge.json new file mode 100644 index 000000000..4a4be8287 --- /dev/null +++ b/domains/seizedforge.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GamebringerDev", + "email": "gamebringerdev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sekuji.json b/domains/sekuji.json index e234d5513..126f0b061 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..c7debf284 --- /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/semant.json b/domains/semant.json index 1890cc030..8ad7632e7 100644 --- a/domains/semant.json +++ b/domains/semant.json @@ -1,23 +1,13 @@ { - "description": "Semant's Website", - "repo": "https://github.com/bad-boy-codes/bad-boy-codes.github.io", - "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" - } + "description": "Semant's Website", + "repo": "https://github.com/SemantCodes/SemantCodes.github.io", + "owner": { + "username": "s3mant", + "email": "contact@semant.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/semant.panda.json b/domains/semant.panda.json new file mode 100644 index 000000000..988bb2d3b --- /dev/null +++ b/domains/semant.panda.json @@ -0,0 +1,10 @@ +{ + "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..bb89cb1fa 100644 --- a/domains/semanteo.json +++ b/domains/semanteo.json @@ -1,11 +1,11 @@ { - "description": "semanteo.is-a.dev", - "repo": "https://github.com/Semanteo/semanteo.github.io", - "owner": { - "username": "Semanteo", - "email": "simsim3374@gmail.com" - }, - "record": { - "CNAME": "semanteo.github.io" - } + "description": "semanteo.is-a.dev", + "repo": "https://github.com/Semanteo/semanteo.github.io", + "owner": { + "username": "Semanteo", + "email": "simsim3374@gmail.com" + }, + "record": { + "CNAME": "semanteo.github.io" + } } diff --git a/domains/senix.json b/domains/senix.json new file mode 100644 index 000000000..8e7058300 --- /dev/null +++ b/domains/senix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cjolivier15", + "email": "oliviercj195@yahoo.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/senninseyi.json b/domains/senninseyi.json index ba17ec96f..f7d28e4b6 100644 --- a/domains/senninseyi.json +++ b/domains/senninseyi.json @@ -4,7 +4,7 @@ "username": "Senninseyi", "email": "seyi.oyebamiji@gmail.com" }, - "record": { - "URL": "https://beyondata.co" - } -} + "record": { + "URL": "https://beyondata.co" + } +} diff --git a/domains/senzore.json b/domains/senzore.json new file mode 100644 index 000000000..39dbb2af0 --- /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/sephrost.json b/domains/sephrost.json new file mode 100644 index 000000000..67fa8778a --- /dev/null +++ b/domains/sephrost.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Sephrost", + "email": "lorenzato.fabi13@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/seppegeuens.json b/domains/seppegeuens.json index 292bf9279..6fe0a42f2 100644 --- a/domains/seppegeuens.json +++ b/domains/seppegeuens.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "SeppeG", - "email": "geuensseppe@gmail.com" - }, - "record": { - "CNAME": "seppeg.github.io" - } + "owner": { + "username": "SeppeG", + "email": "geuensseppe@gmail.com" + }, + "record": { + "CNAME": "seppeg.github.io" + } } diff --git a/domains/seraphic.json b/domains/seraphic.json new file mode 100644 index 000000000..00bf90f52 --- /dev/null +++ b/domains/seraphic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SeraphicDev", + "email": "AidhaniDev@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sercan.json b/domains/sercan.json new file mode 100644 index 000000000..91c6b6456 --- /dev/null +++ b/domains/sercan.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "sxrcan", + "email": "sercwnxd@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/serena.json b/domains/serena.json index cbfe2b68e..fc3685532 100644 --- a/domains/serena.json +++ b/domains/serena.json @@ -1,11 +1,11 @@ { - "description": "Serena's Website", - "owner": { - "username": "Serena-io", - "email": "", - "discord": "Serena#1165" - }, - "record": { - "CNAME": "serena-io.github.io" - } + "description": "Serena's Website", + "owner": { + "username": "Serena-io", + "email": "", + "discord": "Serena#1165" + }, + "record": { + "CNAME": "serena-io.github.io" + } } diff --git a/domains/sergeyzarechnev.json b/domains/sergeyzarechnev.json new file mode 100644 index 000000000..b501cd4b3 --- /dev/null +++ b/domains/sergeyzarechnev.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "da-kurlzzzzz", + "email": "da_kurlzzzzz@mail.ru" + }, + + "record": { + "CNAME": "sergeyzarechnev.is-a-backend.dev" + } +} diff --git a/domains/seria.json b/domains/seria.json new file mode 100644 index 000000000..c8debfa29 --- /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/seriuos.json b/domains/seriuos.json new file mode 100644 index 000000000..6054e6339 --- /dev/null +++ b/domains/seriuos.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Seriuos", + "email": "trexi82.82@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/serjan-nasredin.json b/domains/serjan-nasredin.json new file mode 100644 index 000000000..3a869c097 --- /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..15eb6cb34 --- /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..a23664d55 --- /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..a05071b8d --- /dev/null +++ b/domains/server.drpleaserespect.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DrPleaseRespect", + "email": "juliannayr2007@gmail.com" + }, + "record": { + "A": ["64.93.80.13"] + } +} diff --git a/domains/server.stefdp.json b/domains/server.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/server.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/services.not-ethan.json b/domains/services.not-ethan.json new file mode 100644 index 000000000..d50f76c5c --- /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/sethpython.json b/domains/sethpython.json index 8081757a2..822cb8467 100644 --- a/domains/sethpython.json +++ b/domains/sethpython.json @@ -1,11 +1,11 @@ { - "description": "An Useless Website", - "repo": "https://github.com/SethTheDev/SethTheDev.github.io", - "owner": { - "username": "SethTheDev", - "email": "mailme@sethestudio.com" - }, - "record": { - "CNAME": "SethTheDev.github.io" - } + "description": "An Useless Website", + "repo": "https://github.com/SethTheDev/seththedev.github.io", + "owner": { + "username": "SethTheDev", + "email": "spccmbseth@gmail.com" + }, + "record": { + "CNAME": "seththedev.github.io" + } } diff --git a/domains/sev.json b/domains/sev.json new file mode 100644 index 000000000..8dc8e5252 --- /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/sex.json b/domains/sex.json new file mode 100644 index 000000000..8c52380bf --- /dev/null +++ b/domains/sex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "khagdev", + "email": "nguyendaikhang2000@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sezersinanoglu.json b/domains/sezersinanoglu.json index 6dc589127..281a01bd9 100644 --- a/domains/sezersinanoglu.json +++ b/domains/sezersinanoglu.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "sezersinanoglu", "email": "sezersinanoglu@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "sezersinanoglu.github.io" - } } - +} diff --git a/domains/sfe.json b/domains/sfe.json index 67bbef4e1..9c92b1a52 100644 --- a/domains/sfe.json +++ b/domains/sfe.json @@ -1,11 +1,11 @@ { - "description": "my personal docs", - "repo": "https://github.com/leecheeyong/leecheeyong", - "owner": { - "username": "leecheeyong", - "email": "tribejoe.gg@gmail.com" - }, - "record": { - "CNAME": "hosting.gitbook.io" - } + "description": "my personal docs", + "repo": "https://github.com/leecheeyong/leecheeyong", + "owner": { + "username": "leecheeyong", + "email": "tribejoe.gg@gmail.com" + }, + "record": { + "CNAME": "hosting.gitbook.io" + } } diff --git a/domains/sfsef.json b/domains/sfsef.json index 30a534330..70550014d 100644 --- a/domains/sfsef.json +++ b/domains/sfsef.json @@ -1,10 +1,10 @@ { - "description": "Aleksandr Polyakov's personal site", - "owner": { - "username": "sfsef", - "email": "sfsef.official@yandex.ru" - }, - "record": { - "URL": "https://sfsef.me" - } + "description": "Aleksandr Polyakov's personal site", + "owner": { + "username": "sfsef", + "email": "sfsef.official@yandex.ru" + }, + "record": { + "URL": "https://sfsef.me" + } } diff --git a/domains/sfx.json b/domains/sfx.json new file mode 100644 index 000000000..2c442cc76 --- /dev/null +++ b/domains/sfx.json @@ -0,0 +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" + } +} diff --git a/domains/sgogov.json b/domains/sgogov.json new file mode 100644 index 000000000..dff4c995d --- /dev/null +++ b/domains/sgogov.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stekatag", + "email": "stefangogov@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sgyt.json b/domains/sgyt.json new file mode 100644 index 000000000..25e2bdf4b --- /dev/null +++ b/domains/sgyt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BedrockBandaYT", + "email": "cshaily38@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sh-crm.json b/domains/sh-crm.json new file mode 100644 index 000000000..9dc9857e6 --- /dev/null +++ b/domains/sh-crm.json @@ -0,0 +1,11 @@ +{ + "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 index 31d4421a1..c5ab742e0 100644 --- a/domains/sh.json +++ b/domains/sh.json @@ -1,11 +1,11 @@ { - "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" - } + "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/sh1nyhunt3r27.json b/domains/sh1nyhunt3r27.json new file mode 100644 index 000000000..7295c2323 --- /dev/null +++ b/domains/sh1nyhunt3r27.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Sh1nYhUnT3R27", + "email": "Jom834827@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sh9351.json b/domains/sh9351.json index f1cea6e4b..65a0346fa 100644 --- a/domains/sh9351.json +++ b/domains/sh9351.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "sh9351", "email": "perfect2315shlim@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "sh9351.github.io" - } } - \ No newline at end of file +} diff --git a/domains/shabnam.json b/domains/shabnam.json new file mode 100644 index 000000000..edfc2aad1 --- /dev/null +++ b/domains/shabnam.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CycloneAddons", + "email": "cycloneaddon@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shad.json b/domains/shad.json new file mode 100644 index 000000000..f60d4041c --- /dev/null +++ b/domains/shad.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Maverick00001", + "email": "saksham.access@yahoo.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shadowalker.json b/domains/shadowalker.json new file mode 100644 index 000000000..ed06ecd9d --- /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/shafi100.json b/domains/shafi100.json index f6504f16b..b87fb9501 100644 --- a/domains/shafi100.json +++ b/domains/shafi100.json @@ -9,4 +9,4 @@ "record": { "CNAME": "shafi100.github.io" } -} +} diff --git a/domains/shahjenish.json b/domains/shahjenish.json new file mode 100644 index 000000000..7dba1065f --- /dev/null +++ b/domains/shahjenish.json @@ -0,0 +1,11 @@ +{ + "description": "Jenish Profile.", + "repo": "https://github.com/shahjenish/shahjenish.github.io", + "owner": { + "username": "shahjenish", + "email": "" + }, + "record": { + "CNAME": "shahjenish.github.io" + } +} diff --git a/domains/shajanjp.json b/domains/shajanjp.json index 4274eddb5..382df0936 100644 --- a/domains/shajanjp.json +++ b/domains/shajanjp.json @@ -1,11 +1,11 @@ { - "description": "Full Stack Software Engineer", - "repo": "https://github.com/shajanjp/shajanjp.github.io", - "owner": { - "username": "shajanjp", - "email": "shajanjp@gmail.com" - }, - "record": { - "CNAME": "shajanjp.github.io" - } + "description": "Full Stack Software Engineer", + "repo": "https://github.com/shajanjp/shajanjp.github.io", + "owner": { + "username": "shajanjp", + "email": "shajanjp@gmail.com" + }, + "record": { + "CNAME": "shajanjp.github.io" + } } diff --git a/domains/shake.json b/domains/shake.json new file mode 100644 index 000000000..cc7b07b43 --- /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/shakeel-ahamad.json b/domains/shakeel-ahamad.json new file mode 100644 index 000000000..84ef49ae7 --- /dev/null +++ b/domains/shakeel-ahamad.json @@ -0,0 +1,11 @@ +{ + "description": "Shakeel profile.", + "repo": "https://github.com/shakeel-ahamad/shakeel-ahamad.github.io", + "owner": { + "username": "shakeel-ahamad", + "email": "" + }, + "record": { + "CNAME": "shakeel-ahamad.github.io" + } +} diff --git a/domains/shakera-vora.json b/domains/shakera-vora.json new file mode 100644 index 000000000..fb0aad608 --- /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/shalom.json b/domains/shalom.json deleted file mode 100644 index d4a55a929..000000000 --- a/domains/shalom.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Shalom's personal website", - "owner": { - "username": "shalomscott", - "email": "shalomss525@gmail.com" - }, - "record": { - "CNAME": "shalom-is-a-dev.netlify.app" - } -} diff --git a/domains/shambhavi.json b/domains/shambhavi.json index d55b56f53..53ff14cb6 100644 --- a/domains/shambhavi.json +++ b/domains/shambhavi.json @@ -1,11 +1,11 @@ { - "description": "Shambhavi's Web-Dev Home", - "repo": "https://github.com/ShambhaviCodes/ShambhaviCodes.github.io", - "owner": { - "username": "ShambhaviCodes", - "email": "shambhavimishra26@gmail.com" - }, - "record": { - "CNAME": "shambhavicodes.github.io" - } + "description": "Shambhavi's Web-Dev Home", + "repo": "https://github.com/ShambhaviCodes/ShambhaviCodes.github.io", + "owner": { + "username": "ShambhaviCodes", + "email": "shambhavimishra26@gmail.com" + }, + "record": { + "CNAME": "shambhavicodes.github.io" + } } diff --git a/domains/shamshitty.json b/domains/shamshitty.json new file mode 100644 index 000000000..d785d340c --- /dev/null +++ b/domains/shamshitty.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "shamshitty", + "email": "iaminvisy@gmail.com", + "twitter": "shamshitty", + "discord": "shamshitty" + }, + "description": "shamshitty is indeed a dev (kinda)", + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/shane.json b/domains/shane.json index bc80a5220..d2f68f70c 100644 --- a/domains/shane.json +++ b/domains/shane.json @@ -1,11 +1,11 @@ { - "description": "Shane Vandegrift, a friendly fullstack developer", - "repo": "https://github.com/vandesm14/vandesm14.github.io", - "owner": { - "username": "Vandesm14", - "email": "vandesm14@gmail.com" - }, - "record": { - "CNAME": "vandesm14.github.io" - } + "description": "Shane Vandegrift, a friendly fullstack developer", + "repo": "https://github.com/vandesm14/vandesm14.github.io", + "owner": { + "username": "Vandesm14", + "email": "vandesm14@gmail.com" + }, + "record": { + "CNAME": "vandesm14.github.io" + } } diff --git a/domains/shaquib.json b/domains/shaquib.json new file mode 100644 index 000000000..2ad8e0d9d --- /dev/null +++ b/domains/shaquib.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "notshaquib", + "email": "mdshaaaquib@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sharad-rajyaguru.json b/domains/sharad-rajyaguru.json new file mode 100644 index 000000000..d7403fa6d --- /dev/null +++ b/domains/sharad-rajyaguru.json @@ -0,0 +1,11 @@ +{ + "description": "Sharad Profile.", + "repo": "https://github.com/sharad-rajyaguru/sharad-rajyaguru.github.io", + "owner": { + "username": "sharad-rajyaguru", + "email": "" + }, + "record": { + "CNAME": "sharad-rajyaguru.github.io" + } +} diff --git a/domains/sharafat.json b/domains/sharafat.json new file mode 100644 index 000000000..d4179c6ff --- /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..4a31675c2 --- /dev/null +++ b/domains/sharan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sharan-218", + "email": "yenugulasharan8019@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sharath.json b/domains/sharath.json index 93badde2b..913825214 100644 --- a/domains/sharath.json +++ b/domains/sharath.json @@ -1,11 +1,11 @@ { - "description": "Social media website project.", - "repo": "https://github.com/thesct22", - "owner": { - "username": "thesct22", - "email": "sharathct22@gmail.com" - }, - "record": { - "CNAME": "thesct22.github.io" - } + "description": "Social media website project.", + "repo": "https://github.com/thesct22", + "owner": { + "username": "thesct22", + "email": "sharathct22@gmail.com" + }, + "record": { + "CNAME": "thesct22.github.io" + } } diff --git a/domains/sharath3.json b/domains/sharath3.json new file mode 100644 index 000000000..284dde47e --- /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..50e1d03fe --- /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..189cb852b --- /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/sharifclick.json b/domains/sharifclick.json index b6bae0f46..a8b148ddb 100644 --- a/domains/sharifclick.json +++ b/domains/sharifclick.json @@ -1,11 +1,11 @@ { - "description": "personal website", - "repo": "https://github.com/SharifClick/sharifclick.github.io", - "owner": { - "username": "sharifclick", - "email": "me.sharifahmed@gmail.com" - }, - "record": { - "CNAME": "sharifclick.github.io" - } + "description": "personal website", + "repo": "https://github.com/SharifClick/sharifclick.github.io", + "owner": { + "username": "sharifclick", + "email": "me.sharifahmed@gmail.com" + }, + "record": { + "CNAME": "sharifclick.github.io" + } } diff --git a/domains/shashank.json b/domains/shashank.json new file mode 100644 index 000000000..8e6bc1f1e --- /dev/null +++ b/domains/shashank.json @@ -0,0 +1,12 @@ +{ + "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..960bf16b1 --- /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/shaunak.json b/domains/shaunak.json index f947e4686..015ca8493 100644 --- a/domains/shaunak.json +++ b/domains/shaunak.json @@ -1,11 +1,11 @@ { - "description": "my .is-a.dev domain", - "repo": "https://github.com/Shaunak-Pandya.github.io", - "owner": { - "username": "Shaunak-Pandya", - "email": "shaunak.n.pandya@gmail.com" - }, - "record": { - "CNAME": "shaunak-pandya.github.io" - } + "description": "my .is-a.dev domain", + "repo": "https://github.com/Shaunak-Pandya.github.io", + "owner": { + "username": "Shaunak-Pandya", + "email": "shaunak.n.pandya@gmail.com" + }, + "record": { + "CNAME": "shaunak-pandya.github.io" + } } diff --git a/domains/shaunfurtado.json b/domains/shaunfurtado.json new file mode 100644 index 000000000..052a8089d --- /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" + } +} \ No newline at end of file diff --git a/domains/shawty.json b/domains/shawty.json new file mode 100644 index 000000000..d6c07c42f --- /dev/null +++ b/domains/shawty.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stanasxd", + "email": "stanasarts@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shayokh.json b/domains/shayokh.json new file mode 100644 index 000000000..8c5882a04 --- /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 new file mode 100644 index 000000000..cc9b31ccc --- /dev/null +++ b/domains/shays.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/she.json b/domains/she.json index dce479e36..73a0f0b62 100644 --- a/domains/she.json +++ b/domains/she.json @@ -2,11 +2,10 @@ "description": "My personal website", "repo": "https://github.com/yuzhigang33/yuzhigang33.github.com", "owner": { - "username": "yuzhigang33", - "email": "yuzhigang33@gmail.com" + "username": "yuzhigang33", + "email": "yuzhigang33@gmail.com" }, "record": { - "CNAME": "yuzhigang33.github.io" + "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..1c7aeac71 --- /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/shell.json b/domains/shell.json new file mode 100644 index 000000000..f2b3a9ba4 --- /dev/null +++ b/domains/shell.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JiuZhiDa", + "email": "shll@tuta.io" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shenjunru.json b/domains/shenjunru.json index d3b55d2c0..31da725c3 100644 --- a/domains/shenjunru.json +++ b/domains/shenjunru.json @@ -1,11 +1,11 @@ { - "description": "Shen Junru is a Dev", - "repo": "https://github.com/shenjunru/is-a-dev", - "owner": { - "username": "shenjunru", - "email": "shenjunru@gmail.com" - }, - "record": { - "CNAME": "shenjunru.github.io" - } + "description": "Shen Junru is a Dev", + "repo": "https://github.com/shenjunru/is-a-dev", + "owner": { + "username": "shenjunru", + "email": "shenjunru@gmail.com" + }, + "record": { + "CNAME": "shenjunru.github.io" + } } diff --git a/domains/shept.json b/domains/shept.json index 4d76621a9..2025a6ccb 100644 --- a/domains/shept.json +++ b/domains/shept.json @@ -1,11 +1,14 @@ { - "description": "An aboutme page for Shept", - "repo": "https://github.com/mcshept", "owner": { "username": "mcshept", - "email": "shept@dasshept.tech" + "email": "maxiheinrich007@yahoo.com" }, "record": { - "CNAME": "mcshept.github.io" + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] } -} \ No newline at end of file +} diff --git a/domains/shevon.json b/domains/shevon.json new file mode 100644 index 000000000..bd1ab4b05 --- /dev/null +++ b/domains/shevon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ShevonKuan", + "email": "331749486@qq.com" + }, + "record": { + "A": ["47.243.44.66"] + } +} diff --git a/domains/shiba.json b/domains/shiba.json new file mode 100644 index 000000000..e16e859ba --- /dev/null +++ b/domains/shiba.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "soggycatalltheway", + "email": "hurvzee+partizao@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shibiliya.json b/domains/shibiliya.json index 25a7b5efa..dc3690fd7 100644 --- a/domains/shibiliya.json +++ b/domains/shibiliya.json @@ -1,11 +1,11 @@ { - "description": "Shibiliya's personal developer website", - "repo": "https://github.com/duaboola", - "owner": { - "username": "duaboola", - "email": "ismailshibiliya@gmail.com" - }, - "record": { - "CNAME": "duaboola.github.io" - } + "description": "Shibiliya's personal developer website", + "repo": "https://github.com/duaboola", + "owner": { + "username": "duaboola", + "email": "ismailshibiliya@gmail.com" + }, + "record": { + "CNAME": "duaboola.github.io" + } } diff --git a/domains/shift.json b/domains/shift.json new file mode 100644 index 000000000..9f915744b --- /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/shilab.json b/domains/shilab.json new file mode 100644 index 000000000..73ef23e8f --- /dev/null +++ b/domains/shilab.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Shilab66", + "email": "aan176972@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shilinlee.json b/domains/shilinlee.json index 1ab0a88d4..eeb14d557 100644 --- a/domains/shilinlee.json +++ b/domains/shilinlee.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "shilinlee", - "email": "shilinlee.ghost@gmail.com" - }, - "record": { - "URL": "https://github.com/shilinlee" - } + "owner": { + "username": "shilinlee", + "email": "shilinlee.ghost@gmail.com" + }, + "record": { + "URL": "https://github.com/shilinlee" + } } diff --git a/domains/shin.json b/domains/shin.json index 0cf88ec7c..c544a6f56 100644 --- a/domains/shin.json +++ b/domains/shin.json @@ -1,12 +1,14 @@ { - "description": "The offcial website by Tachibana Shin (@tachib_shin)", - "repo": "https://github.com/tachibana-shin/tachibana-shin.github.io", - "owner": { - "username": "tachibana-shin", - "email": "", - "twitter": "tachib_shin" - }, - "record": { - "CNAME": "tachibana-shin.github.io" - } + "description": "The offcial website by Tachibana Shin (@tachib_shin)", + "repo": "https://github.com/tachibana-shin/tachibana-shin.github.io", + "owner": { + "username": "tachibana-shin", + "email": "", + "twitter": "tachib_shin" + }, + "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=tachibshin@duck.com" + } } diff --git a/domains/shinchan.json b/domains/shinchan.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/shinchan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/shing.json b/domains/shing.json new file mode 100644 index 000000000..9f55651ab --- /dev/null +++ b/domains/shing.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ShingSemicolon", + "email": "Shing.XD.0602@gmail.com" + }, + "record": { + "A": ["150.136.219.245"], + "AAAA": ["2603:c020:400d:3e89:1d29:bb65:78be:e8fa"] + } +} diff --git a/domains/shinpitekita.json b/domains/shinpitekita.json deleted file mode 100644 index 9db053944..000000000 --- a/domains/shinpitekita.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "owner": { - "username": "Shinpi-Tekita", - "email": "", - "twitter": "shinpitekita", - "discord": "Shinpi#6183" - }, - "record": { - "CNAME": "shinpitekita.repl.co" - } -} diff --git a/domains/shiv.json b/domains/shiv.json new file mode 100644 index 000000000..2558b96f1 --- /dev/null +++ b/domains/shiv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shivasharanappaBiradar", + "email": "youcanbethemaster@gmail.com" + }, + "record": { + "CNAME": "railway-production-5fc6.up.railway.app" + } +} diff --git a/domains/shivang.json b/domains/shivang.json index 4c0f54aa6..796b5c412 100644 --- a/domains/shivang.json +++ b/domains/shivang.json @@ -1,12 +1,12 @@ { - "description": "Projects by Shivang Kakkar", - "repo": "https://github.com/ShivangKakkar/shivangkakkar.github.io", - "owner": { - "username": "ShivangKakkar", - "email": "shivangkakkar88@gmail.com", - "telegram": "ShivangKakkar88" - }, - "record": { - "CNAME": "ShivangKakkar.github.io" - } + "description": "Projects by Shivang Kakkar", + "repo": "https://github.com/ShivangKakkar/shivangkakkar.github.io", + "owner": { + "username": "ShivangKakkar", + "email": "shivangkakkar88@gmail.com", + "telegram": "ShivangKakkar88" + }, + "record": { + "CNAME": "ShivangKakkar.github.io" + } } diff --git a/domains/shivathmika.json b/domains/shivathmika.json new file mode 100644 index 000000000..0e5333188 --- /dev/null +++ b/domains/shivathmika.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Shivathmika20", + "email": "yelurishivathmika@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shiyaf.json b/domains/shiyaf.json index 148a287b9..e091483a2 100644 --- a/domains/shiyaf.json +++ b/domains/shiyaf.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "mshiyaf", "email": "shiyafc@gmail.com" - }, + }, - "record": { - "URL": "https://texolgulf.com/" - } + "record": { + "URL": "https://texolgulf.com" } - \ No newline at end of file +} diff --git a/domains/shizotechie.json b/domains/shizotechie.json new file mode 100644 index 000000000..68966decc --- /dev/null +++ b/domains/shizotechie.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "shizothetechie", + "email": "yugeshsingh27@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/shmeeseeks.json b/domains/shmeeseeks.json new file mode 100644 index 000000000..5fe892f76 --- /dev/null +++ b/domains/shmeeseeks.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "fromNoWhere", + "email": "lyaacoubi.othmane8@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shoaib-shaikhh.json b/domains/shoaib-shaikhh.json new file mode 100644 index 000000000..617767639 --- /dev/null +++ b/domains/shoaib-shaikhh.json @@ -0,0 +1,11 @@ +{ + "description": "Shoaib Shaikhh.", + "repo": "https://github.com/shoaib-shaikhh/shoaib-shaikhh.github.io", + "owner": { + "username": "shoaib-shaikhh", + "email": "shoaib-shaikhh@acquaintsoft.com" + }, + "record": { + "CNAME": "shoaib-shaikhh.github.io" + } +} diff --git a/domains/shobhit9945.json b/domains/shobhit9945.json new file mode 100644 index 000000000..575c7fa89 --- /dev/null +++ b/domains/shobhit9945.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Shobhit9945", + "email": "shobhitbaijal5@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shobhitb.json b/domains/shobhitb.json new file mode 100644 index 000000000..c0ac98fb9 --- /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..4f99137c2 --- /dev/null +++ b/domains/shock.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/shockbs.json b/domains/shockbs.json new file mode 100644 index 000000000..c634159ab --- /dev/null +++ b/domains/shockbs.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "shockbs", + "email": "apipherng@gmail.com" + }, + "record": { + "A": ["69.30.249.53"], + "TXT": "v=spf1 mx a:mail.is-a.dev ip4:217.174.245.249 ~all", + "MX": ["mail.is-a.dev"] + + } +} 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/shoyeb.json b/domains/shoyeb.json new file mode 100644 index 000000000..7c302af96 --- /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/shrek.json b/domains/shrek.json new file mode 100644 index 000000000..d844f253d --- /dev/null +++ b/domains/shrek.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PythonScratcher", + "email": "callumcardy7@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shresth.json b/domains/shresth.json new file mode 100644 index 000000000..d277b7e41 --- /dev/null +++ b/domains/shresth.json @@ -0,0 +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" + } +} diff --git a/domains/shreya.json b/domains/shreya.json new file mode 100644 index 000000000..f60d4041c --- /dev/null +++ b/domains/shreya.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Maverick00001", + "email": "saksham.access@yahoo.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shreyasitb.json b/domains/shreyasitb.json new file mode 100644 index 000000000..c99534432 --- /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..1d88f5ec9 --- /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/shubham.json b/domains/shubham.json new file mode 100644 index 000000000..b133e9d24 --- /dev/null +++ b/domains/shubham.json @@ -0,0 +1,11 @@ +{ + "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/shubhambattoo.json b/domains/shubhambattoo.json index 4fdae0771..cccef48b9 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/shubhamkumar.json b/domains/shubhamkumar.json new file mode 100644 index 000000000..6a8edd934 --- /dev/null +++ b/domains/shubhamkumar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "shubham-kumar-2004", + "email": "shubham04122004@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/shubhamlal.json b/domains/shubhamlal.json new file mode 100644 index 000000000..b94be1a1a --- /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/shubhamverma.json b/domains/shubhamverma.json new file mode 100644 index 000000000..6a6c632e1 --- /dev/null +++ b/domains/shubhamverma.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Stroller15", + "email": "shubhamverma6351@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/shuchirjain.json b/domains/shuchirjain.json index 4bd0900c3..5e12725fd 100644 --- a/domains/shuchirjain.json +++ b/domains/shuchirjain.json @@ -1,14 +1,11 @@ { - "owner": { - "username": "CoolCoderSJ", - "email": "coolcodersj@gmail.com" - }, - - "record": { - "MX": [ - "mx1.improvmx.com", - "mx2.improvmx.com" - ], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "owner": { + "username": "CoolCoderSJ", + "email": "coolcodersj@gmail.com" + }, + + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/shuriken.json b/domains/shuriken.json new file mode 100644 index 000000000..b3f9c2a4a --- /dev/null +++ b/domains/shuriken.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "005sunnysingh", + "email": "005sunnysingh@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } + } \ No newline at end of file diff --git a/domains/shuvam.json b/domains/shuvam.json index ac511c348..9755a8132 100644 --- a/domains/shuvam.json +++ b/domains/shuvam.json @@ -1,10 +1,10 @@ { - "description": "Shuvam Manna and his Internetoverse", - "owner": { - "username": "GeekBoySupreme", - "email": "shuvam.manna@gmail.com" - }, - "record": { - "CNAME": "shuvam.xyz" - } + "description": "Shuvam Manna and his Internetoverse", + "owner": { + "username": "GeekBoySupreme", + "email": "shuvam.manna@gmail.com" + }, + "record": { + "CNAME": "shuvam.xyz" + } } diff --git a/domains/shuvo.json b/domains/shuvo.json index cb8b29577..ad862bbd6 100644 --- a/domains/shuvo.json +++ b/domains/shuvo.json @@ -1,13 +1,10 @@ { - "description": "Personal portfolio", - "owner": { - "username": "devshahoriar", - "email": "shuvo1556@gmail.com" - }, - "record": { - "MX": [ - "dns1.alwaysdata.com", - "dns2.alwaysdata.com" - ] - } + "description": "Personal portfolio", + "owner": { + "username": "devshahoriar", + "email": "shuvo1556@gmail.com" + }, + "record": { + "MX": ["dns1.alwaysdata.com", "dns2.alwaysdata.com"] + } } diff --git a/domains/shweta-gotecha.json b/domains/shweta-gotecha.json new file mode 100644 index 000000000..a0a206bf4 --- /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/shyran.json b/domains/shyran.json index 358584cbb..7b7c9fcf5 100644 --- a/domains/shyran.json +++ b/domains/shyran.json @@ -1,11 +1,11 @@ { - "description": "Sergii Shyran - WebDev, Arch", - "repo": "https://github.com/sshyran/shyran.github.io", - "owner": { - "username": "sshyran", - "email": "s.shyran@gmail.com" - }, - "record": { - "CNAME": "shyran.github.io" - } + "description": "Sergii Shyran - WebDev, Arch", + "repo": "https://github.com/sshyran/shyran.github.io", + "owner": { + "username": "sshyran", + "email": "s.shyran@gmail.com" + }, + "record": { + "CNAME": "shyran.github.io" + } } diff --git a/domains/sia.json b/domains/sia.json new file mode 100644 index 000000000..8e962f1b2 --- /dev/null +++ b/domains/sia.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sujandeb", + "email": "work@sujandeb.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/siamrahman.json b/domains/siamrahman.json new file mode 100644 index 000000000..63dc88af0 --- /dev/null +++ b/domains/siamrahman.json @@ -0,0 +1,11 @@ +{ + "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/sid.json b/domains/sid.json index 923cd8355..f43f07565 100644 --- a/domains/sid.json +++ b/domains/sid.json @@ -1,11 +1,11 @@ { - "description": "Siddhartha Patki's development portfolio", - "repo": "https://github.com/SiddPatki", - "owner": { - "username": "SiddPatki", - "email": "siddharthapatki@gmail.com" - }, - "record": { - "CNAME": "siddpatki.github.io" - } + "description": "Siddhartha Patki's development portfolio", + "repo": "https://github.com/SiddPatki", + "owner": { + "username": "SiddPatki", + "email": "siddharthapatki@gmail.com" + }, + "record": { + "CNAME": "siddpatki.github.io" + } } diff --git a/domains/sidd.json b/domains/sidd.json index b11957114..1bdd94981 100644 --- a/domains/sidd.json +++ b/domains/sidd.json @@ -1,12 +1,11 @@ { - "description": "sidd is a dev (duh?)", - "repo": "https://github.com/uh-Sid/sidd.is-a.dev", - "owner": { - "username": "uh-Sid", - "email": "sdmdevelopment3@gmail.com", - "twitter": "" - }, - "record": { - "CNAME": "4dffaf9f-274e-457e-a081-b23e4d20e170.id.repl.co" - } + "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..e4890fd6c 100644 --- a/domains/siddhant.json +++ b/domains/siddhant.json @@ -1,11 +1,11 @@ { - "description": "Siddhant's personal site", - "repo": "https://github.com/siddhant094", - "owner": { - "username": "siddhant094", - "email": "pandeysiddhant21@gmail.com" - }, - "record": { - "URL": "https://siddhantt.netlify.app" - } + "description": "Siddhant's personal site", + "repo": "https://github.com/siddhant094", + "owner": { + "username": "siddhant094", + "email": "pandeysiddhant21@gmail.com" + }, + "record": { + "URL": "https://siddhantt.vercel.app/" + } } diff --git a/domains/siddharthtewari.json b/domains/siddharthtewari.json new file mode 100644 index 000000000..59c386d97 --- /dev/null +++ b/domains/siddharthtewari.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sid-008", + "email": "siddharthtewari14@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/siddhu.json b/domains/siddhu.json index 3eb8e9ab7..7a8425eae 100644 --- a/domains/siddhu.json +++ b/domains/siddhu.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "SiddheshKukade", - "email": "littlelord124@gmail.com", - "twitter": "@TheSidK_", - "discord": "SiddhyaOP#0596" - }, - "record": { - "URL": "https://siddheshkukade.netlify.app/" - } + "owner": { + "username": "SiddheshKukade", + "email": "littlelord124@gmail.com", + "twitter": "TheSidK_", + "discord": "SiddhyaOP#0596" + }, + "record": { + "URL": "https://siddheshkukade.netlify.app" + } } diff --git a/domains/sife.json b/domains/sife.json new file mode 100644 index 000000000..70fcb9260 --- /dev/null +++ b/domains/sife.json @@ -0,0 +1,12 @@ +{ + "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/siful.json b/domains/siful.json index 24162675a..88440e82c 100644 --- a/domains/siful.json +++ b/domains/siful.json @@ -1,11 +1,11 @@ { - "description": "Frontend Developer Siful", - "repo": "https://github.com/sifulbd/sifulbd.github.io", - "owner": { - "username": "sifulbd", - "email": "sifulweb@gmail.com" - }, - "record": { - "CNAME": "sifulbd.github.io" - } + "description": "Frontend Developer Siful", + "repo": "https://github.com/sifulbd/sifulbd.github.io", + "owner": { + "username": "sifulbd", + "email": "sifulweb@gmail.com" + }, + "record": { + "CNAME": "sifulbd.github.io" + } } diff --git a/domains/sigmassimo.json b/domains/sigmassimo.json new file mode 100644 index 000000000..dbb4f9e08 --- /dev/null +++ b/domains/sigmassimo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sigmassimo", + "email": "maximilian-schreiber271@t-online.de" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/silicoflare.json b/domains/silicoflare.json new file mode 100644 index 000000000..06da26f04 --- /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/silksp.json b/domains/silksp.json new file mode 100644 index 000000000..8acc3b23f --- /dev/null +++ b/domains/silksp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SilkSP", + "email": "seba.perezo@hotmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/simo.json b/domains/simo.json index 23b9ef4e3..ba9b060d9 100644 --- a/domains/simo.json +++ b/domains/simo.json @@ -1,12 +1,12 @@ { - "description": "A redirect to simo.sh", - "repo": "https://github.com/fr3fou", - "owner": { - "username": "fr3fou", - "email": "", - "twitter": "fr3fou" - }, - "record": { - "URL": "https://simo.sh" - } + "description": "A redirect to simo.sh", + "repo": "https://github.com/fr3fou", + "owner": { + "username": "fr3fou", + "email": "", + "twitter": "fr3fou" + }, + "record": { + "URL": "https://simo.sh" + } } diff --git a/domains/simon.json b/domains/simon.json new file mode 100644 index 000000000..7d6d609dd --- /dev/null +++ b/domains/simon.json @@ -0,0 +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" + } +} diff --git a/domains/simonknowsstuff.json b/domains/simonknowsstuff.json index 98c6ff950..844c8fc34 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" - } -} + "owner": { + "username": "simonknowsstuff", + "email": "simonknowsstuff@gmail.com", + "twitter": "simonknowsstuff" + }, + "record": { + "CNAME": "blog-7vq.pages.dev" + } +} diff --git a/domains/simonwong.json b/domains/simonwong.json index afccade83..0fdbf343f 100644 --- a/domains/simonwong.json +++ b/domains/simonwong.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "Simon Wong", - "email": "wsjwsjsimon@gmail.com", - "twitter": "wsj_simonwong", - "discord": "Simon Wong#6040" - }, - "record": { - "URL": "https://github.com/simonwong" - } + "owner": { + "username": "simonwong", + "email": "wsjwsjsimon@gmail.com", + "twitter": "wsj_simonwong", + "discord": "Simon Wong#6040" + }, + "record": { + "URL": "https://github.com/simonwong" + } } diff --git a/domains/sincererflame71.json b/domains/sincererflame71.json new file mode 100644 index 000000000..b1f7b7c1e --- /dev/null +++ b/domains/sincererflame71.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DarkNightcore8", + "email": "DarkNightcore8@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/singh-jitendar.json b/domains/singh-jitendar.json new file mode 100644 index 000000000..3fe002a5c --- /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..450fc6bdf 100644 --- a/domains/siow-kai-yang.json +++ b/domains/siow-kai-yang.json @@ -8,4 +8,4 @@ "record": { "CNAME": "yeetus-maximus.github.io" } -} +} diff --git a/domains/sirens.json b/domains/sirens.json new file mode 100644 index 000000000..ee8bb4814 --- /dev/null +++ b/domains/sirens.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "collinsdawns", + "email": "collinsdawns184@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/siris.json b/domains/siris.json index 1870137f7..e29183e59 100644 --- a/domains/siris.json +++ b/domains/siris.json @@ -1,11 +1,11 @@ { - "description": "this a link to my website", - "owner": { - "username": "Siris01", - "email": "contact@siris.me", - "discord": "Siris#1337" - }, - "record": { - "URL": "https://siris.me" - } + "description": "this a link to my website", + "owner": { + "username": "Siris01", + "email": "contact@siris.me", + "discord": "Siris#1337" + }, + "record": { + "URL": "https://siris.me" + } } diff --git a/domains/sirmacr0.json b/domains/sirmacr0.json index 4762d7782..801081807 100644 --- a/domains/sirmacr0.json +++ b/domains/sirmacr0.json @@ -1,11 +1,11 @@ { - "description": "Portfolio website for me", - "repo": "https://github.com/SirMacr0/SirMacr0.github.io", - "owner": { - "username": "SirMacr0", - "email": "tunagunduz03@gmail.com" - }, - "record": { - "CNAME": "SirMacr0.github.io" - } + "description": "Portfolio website for me", + "repo": "https://github.com/SirMacr0/SirMacr0.github.io", + "owner": { + "username": "SirMacr0", + "email": "tunagunduz03@gmail.com" + }, + "record": { + "CNAME": "SirMacr0.github.io" + } } diff --git a/domains/sirsimonson.json b/domains/sirsimonson.json index 5b8107352..43f249960 100644 --- a/domains/sirsimonson.json +++ b/domains/sirsimonson.json @@ -1,10 +1,10 @@ { - "description": "S!ck S1m0n's Spaßgarten mit Spielwiese und Geräteschuppen", - "owner": { - "username": "sirsimonson", - "email": "srsmnsn@gmail.com" - }, - "record": { - "CNAME": "sirsimonson.github.io" - } + "description": "S!ck S1m0n's Spaßgarten mit Spielwiese und Geräteschuppen", + "owner": { + "username": "sirsimonson", + "email": "srsmnsn@gmail.com" + }, + "record": { + "CNAME": "sirsimonson.github.io" + } } 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/sjlptpsnh.json b/domains/sjlptpsnh.json new file mode 100644 index 000000000..5edc708fb --- /dev/null +++ b/domains/sjlptpsnh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sjlptpsnh", + "email": "sujalpratapsingh70@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/skar.json b/domains/skar.json new file mode 100644 index 000000000..0d225d17b --- /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..19ac739aa 100644 --- a/domains/skduck.json +++ b/domains/skduck.json @@ -1,15 +1,15 @@ { - "description": "my em@il forwarder", - "owner": { - "username": "MaskDuck", - "email": "m@skduck.is-a.dev", - "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" - } + "description": "my em@il forwarder", + "owner": { + "username": "MaskDuck", + "email": "m@skduck.is-a.dev", + "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" + } } diff --git a/domains/skillz.json b/domains/skillz.json new file mode 100644 index 000000000..77ad463dd --- /dev/null +++ b/domains/skillz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "PsxScriptsW", + "email": "jacob.blits@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/skullfiredevil.json b/domains/skullfiredevil.json new file mode 100644 index 000000000..8166f1af0 --- /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.json b/domains/sky.json index e7c431c1c..7bdd9bb3e 100644 --- a/domains/sky.json +++ b/domains/sky.json @@ -1,11 +1,11 @@ { - "description": "Sky's personal website", - "repo": "https://github.com/SkyLeite", - "owner": { - "username": "skyleite", - "email": "sky@leite.dev" - }, - "record": { - "CNAME": "leite.dev" - } + "description": "Sky's personal website", + "repo": "https://github.com/SkyLeite", + "owner": { + "username": "skyleite", + "email": "sky@leite.dev" + }, + "record": { + "CNAME": "leite.dev" + } } diff --git a/domains/skydiver-web.json b/domains/skydiver-web.json new file mode 100644 index 000000000..14dec9b68 --- /dev/null +++ b/domains/skydiver-web.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nebula4564", + "email": "reeseb1660@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/skydonald.json b/domains/skydonald.json index 45aa08691..ca541eed2 100644 --- a/domains/skydonald.json +++ b/domains/skydonald.json @@ -1,11 +1,11 @@ { - "description": "SkyDonald's personal developer website", - "repo": "https://github.com/SkyDonald/skydonald.github.io", - "owner": { - "username": "SkyDonald", - "email": "skydonald.dev@gmail.com" - }, - "record": { - "CNAME": "skydonald.github.io" - } + "description": "SkyDonald's personal developer website", + "repo": "https://github.com/SkyDonald/skydonald.github.io", + "owner": { + "username": "SkyDonald", + "email": "skydonald.dev@gmail.com" + }, + "record": { + "CNAME": "skydonald.github.io" + } } diff --git a/domains/skyopg.json b/domains/skyopg.json new file mode 100644 index 000000000..9c3d6d741 --- /dev/null +++ b/domains/skyopg.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LLKO101", + "email": "yo1sefooop@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/slashed.json b/domains/slashed.json new file mode 100644 index 000000000..e4ed58877 --- /dev/null +++ b/domains/slashed.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "alexfeed1990", + "email": "alexfeed1990real@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/slavicman.json b/domains/slavicman.json index 1d0297ee2..47b55b61e 100644 --- a/domains/slavicman.json +++ b/domains/slavicman.json @@ -1,11 +1,11 @@ { - "description": "The Slavic Dev Website", - "repo": "https://github.com/SlavicMan/slavicman.github.io", - "owner": { - "username": "SlavicMan", - "email": "kizz4114@yahoo.com" - }, - "record": { - "CNAME": "slavicman.github.io" - } + "description": "The Slavic Dev Website", + "repo": "https://github.com/SlavicMan/slavicman.github.io", + "owner": { + "username": "SlavicMan", + "email": "kizz4114@yahoo.com" + }, + "record": { + "CNAME": "slavicman.github.io" + } } diff --git a/domains/slime.json b/domains/slime.json index 00a7810c8..2532797bd 100644 --- a/domains/slime.json +++ b/domains/slime.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "purpleblueslime", - "email": "purpleblueslime@gmail.com" - }, - "record": { - "CNAME": "purpleblueslime.github.io" - } + "owner": { + "username": "purpleblueslime", + "email": "purpleblueslime@gmail.com" + }, + "record": { + "CNAME": "purpleblueslime.github.io" + } } diff --git a/domains/slow.json b/domains/slow.json index ebcd11419..47372ae4c 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/slyc.the.catboy.json b/domains/slyc.the.catboy.json new file mode 100644 index 000000000..9a451ccdf --- /dev/null +++ b/domains/slyc.the.catboy.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "SlycIsACatboy", + "email": "noahhz942@gmail.com" + }, + "record": { + "A": [ + "137.184.119.127" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} 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..798737b53 --- /dev/null +++ b/domains/smartlinuxcoder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Smartlinuxcoder", + "email": "smartcoder@linuxmail.org" + }, + "record": { + "CNAME": "smartlinuxcoder.github.io" + } +} diff --git a/domains/smeagol.json b/domains/smeagol.json index edfccf3be..dfa58cf18 100644 --- a/domains/smeagol.json +++ b/domains/smeagol.json @@ -1,12 +1,12 @@ { - "description": "Smeagol's github pages site, currently a work in progress", - "repo": "https://github.com/Smeagol2069/smeagol2069.github.io", - "owner": { - "username": "Smeagol2069", - "email": "", - "discord": "Smeagol#2069" - }, - "record": { - "CNAME": "smeagol2069.github.io" - } + "description": "Smeagol's github pages site, currently a work in progress", + "repo": "https://github.com/Smeagol2069/smeagol2069.github.io", + "owner": { + "username": "Smeagol2069", + "email": "", + "discord": "Smeagol#2069" + }, + "record": { + "CNAME": "smeagol2069.github.io" + } } diff --git a/domains/smitty119.json b/domains/smitty119.json new file mode 100644 index 000000000..2e82411bb --- /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..2e82411bb --- /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/smtp.zerow.json b/domains/smtp.zerow.json new file mode 100644 index 000000000..7e0e107a6 --- /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/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..66bd72ebc --- /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/snazzah.json b/domains/snazzah.json index 66123aac3..0ddb9bd60 100644 --- a/domains/snazzah.json +++ b/domains/snazzah.json @@ -1,12 +1,12 @@ { - "description": "Where the wild ones are.", - "repo": "https://github.com/Snazzah", - "owner": { - "username": "Snazzah", - "email": "me@snazzah.com", - "twitter": "Snazzah" - }, - "record": { - "URL": "https://snazzah.com" - } + "description": "Where the wild ones are.", + "repo": "https://github.com/Snazzah", + "owner": { + "username": "Snazzah", + "email": "me@snazzah.com", + "twitter": "Snazzah" + }, + "record": { + "URL": "https://snazzah.com" + } } diff --git a/domains/sneax.json b/domains/sneax.json new file mode 100644 index 000000000..dbec35764 --- /dev/null +++ b/domains/sneax.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "0SneaX0", + "email": "illuminater3000@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/snek.json b/domains/snek.json index 967ad7f1b..7c9728eaa 100644 --- a/domains/snek.json +++ b/domains/snek.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "sn3kdev", "email": "snektg@gmail.com" - }, - "record": { + }, + "record": { "URL": "https://odnako_zmeyka.t.me" - } } - \ No newline at end of file +} diff --git a/domains/snip.json b/domains/snip.json new file mode 100644 index 000000000..a5a207f28 --- /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/snipc.json b/domains/snipc.json new file mode 100644 index 000000000..091381c65 --- /dev/null +++ b/domains/snipc.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "NotSnipc", + "email": "snipc.mail@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/snippyivan.json b/domains/snippyivan.json new file mode 100644 index 000000000..aaa4cd040 --- /dev/null +++ b/domains/snippyivan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ivansnippy", + "email": "ivanmasinde@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/snippytech.json b/domains/snippytech.json new file mode 100644 index 000000000..aaa4cd040 --- /dev/null +++ b/domains/snippytech.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ivansnippy", + "email": "ivanmasinde@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/snow.json b/domains/snow.json new file mode 100644 index 000000000..da03eab85 --- /dev/null +++ b/domains/snow.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HayBael", + "email": "rakhakhairydarka801@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/snowcatridge10.json b/domains/snowcatridge10.json index 94fabad6a..a1ca41d9b 100644 --- a/domains/snowcatridge10.json +++ b/domains/snowcatridge10.json @@ -1,11 +1,11 @@ { - "description": "Snowcatridge10's awesome website!", - "repo": "https://github.com/snowcatridge10/snowcatridge10.github.io", - "owner": { - "username": "snowcatridge10", - "email": "akreamer@pm.me" - }, - "record": { - "CNAME": "snowcatridge10.github.io" - } + "description": "Snowcatridge10's awesome website!", + "repo": "https://github.com/snowcatridge10/snowcatridge10.github.io", + "owner": { + "username": "snowcatridge10", + "email": "akreamer@pm.me" + }, + "record": { + "CNAME": "snowcatridge10.github.io" + } } diff --git a/domains/snowflake.json b/domains/snowflake.json deleted file mode 100644 index 3e084f476..000000000 --- a/domains/snowflake.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Snowflake's personal developer website", - "repo": "https://github.com/snowflake107", - "owner": { - "username": "snowflake107", - "email": "devsnowflake107@gmail.com" - }, - "record": { - "CNAME": "itzsnowflakex.netlify.app" - } -} diff --git a/domains/snowservice.json b/domains/snowservice.json new file mode 100644 index 000000000..da03eab85 --- /dev/null +++ b/domains/snowservice.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HayBael", + "email": "rakhakhairydarka801@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/snowsuno.json b/domains/snowsuno.json new file mode 100644 index 000000000..ac8ac091b --- /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..daaf50e8c --- /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..e2f7460ff --- /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/snwsrv.json b/domains/snwsrv.json new file mode 100644 index 000000000..da03eab85 --- /dev/null +++ b/domains/snwsrv.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HayBael", + "email": "rakhakhairydarka801@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/soap.json b/domains/soap.json new file mode 100644 index 000000000..f84c811d5 --- /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/sof009.json b/domains/sof009.json new file mode 100644 index 000000000..ba70e909c --- /dev/null +++ b/domains/sof009.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SOF009", + "email": "SOF.009@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sofa.json b/domains/sofa.json index d2ab9cb47..1ca83515b 100644 --- a/domains/sofa.json +++ b/domains/sofa.json @@ -1,12 +1,12 @@ { - "description": "SlumberDemon's Developer Page", - "repo": "https://github.com/SlumberDemon/card", - "owner": { - "username": "SlumberDemon", - "email": "contact.dev.teda@gmail.com", - "twitter": "SlumberDemon" - }, - "record": { - "CNAME": "slumberdemon.github.io" - } + "description": "SlumberDemon's Developer Page", + "repo": "https://github.com/SlumberDemon/card", + "owner": { + "username": "SlumberDemon", + "email": "contact.dev.teda@gmail.com", + "twitter": "SlumberDemon" + }, + "record": { + "CNAME": "slumberdemon.github.io" + } } diff --git a/domains/soham.json b/domains/soham.json index 51a2e3e43..761f89da9 100644 --- a/domains/soham.json +++ b/domains/soham.json @@ -1,11 +1,11 @@ { - "description": "Soham's personal website", - "repo": "https://github.com/sohamdoescode/sohamdoescode.github.io", - "owner": { - "username": "sohamdoescode", - "email": "soham.b630@gmail.com" - }, - "record": { - "CNAME": "sohamdoescode.github.io" - } + "description": "Soham's personal website", + "repo": "https://github.com/sohamdoescode/sohamdoescode.github.io", + "owner": { + "username": "sohamdoescode", + "email": "soham.b630@gmail.com" + }, + "record": { + "CNAME": "sohamdoescode.github.io" + } } diff --git a/domains/sohamkansodaria.json b/domains/sohamkansodaria.json new file mode 100644 index 000000000..d81051004 --- /dev/null +++ b/domains/sohamkansodaria.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "UltraHopeful", + "email": "sohupatel8828@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/solareclipse995.json b/domains/solareclipse995.json index 1f13d4fc2..fddec3244 100644 --- a/domains/solareclipse995.json +++ b/domains/solareclipse995.json @@ -1,11 +1,11 @@ { - "description": "Solar Eclipse personal website", - "repo": "https://github.com/solareclipse995/solareclipse995.github.io", - "owner": { - "username": "solareclipse995", - "email": "solareclipse995@outlook.com" - }, - "record": { - "CNAME": "solareclipse995.github.io" - } + "description": "Solar Eclipse personal website", + "repo": "https://github.com/solareclipse995/solareclipse995.github.io", + "owner": { + "username": "solareclipse995", + "email": "solareclipse995@outlook.com" + }, + "record": { + "CNAME": "solareclipse995.github.io" + } } diff --git a/domains/soldierp.json b/domains/soldierp.json new file mode 100644 index 000000000..90e48e005 --- /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..7a80a1429 100644 --- a/domains/somenicetables.json +++ b/domains/somenicetables.json @@ -9,4 +9,4 @@ "record": { "CNAME": "somenicetables.github.io" } -} +} diff --git a/domains/someone.json b/domains/someone.json index 182d02c88..1ed882819 100644 --- a/domains/someone.json +++ b/domains/someone.json @@ -1,11 +1,11 @@ { - "description": "OwO's page", - "repo": "https://github.com/ow0x/ow0x.github.io", - "owner": { - "username": "ow0x", - "email": "studiouifxdesignersandcoders@gmail.com" - }, - "record": { - "CNAME": "ow0x.github.io" - } + "description": "OwO's page", + "repo": "https://github.com/ow0x/ow0x.github.io", + "owner": { + "username": "ow0x", + "email": "studiouifxdesignersandcoders@gmail.com" + }, + "record": { + "CNAME": "ow0x.github.io" + } } diff --git a/domains/somesh.json b/domains/somesh.json index 460d2fdea..1dd3d1da0 100644 --- a/domains/somesh.json +++ b/domains/somesh.json @@ -1,11 +1,11 @@ { - "description": "Personal Website", - "repo": "https://github.com/someshportfoliohome/someshportfoliohome.github.io/", - "owner": { - "username": "someshportfoliohome", - "email": "yeahitspace@gmail.com" - }, - "record": { - "CNAME": "someshportfoliohome.github.io" - } + "description": "Personal Website", + "repo": "https://github.com/someshportfoliohome/someshportfoliohome.github.io", + "owner": { + "username": "someshportfoliohome", + "email": "yeahitspace@gmail.com" + }, + "record": { + "CNAME": "someshportfoliohome.github.io" + } } diff --git a/domains/someshsrichandan.json b/domains/someshsrichandan.json new file mode 100644 index 000000000..1aca9c790 --- /dev/null +++ b/domains/someshsrichandan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "someshsrichandan", + "email": "someshsrichandan@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/someshtiwari.json b/domains/someshtiwari.json index d29ff4857..62e5f3603 100644 --- a/domains/someshtiwari.json +++ b/domains/someshtiwari.json @@ -1,11 +1,11 @@ { - "description": "Add some description", - "repo": "https://github.com/someshportfolio/someshportfolio.github.io", - "owner": { - "username": "someshportfolio", - "email": "yeahitspace@gmail.com" - }, - "record": { - "CNAME": "someshportfolio.github.io" - } + "description": "Add some description", + "repo": "https://github.com/someshportfolio/someshportfolio.github.io", + "owner": { + "username": "someshportfolio", + "email": "yeahitspace@gmail.com" + }, + "record": { + "CNAME": "someshportfolio.github.io" + } } diff --git a/domains/son.json b/domains/son.json index 52c531962..49fc32836 100644 --- a/domains/son.json +++ b/domains/son.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "sonphantrung", "email": "phantrungson17@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "sonphantrung.github.io" - } } - +} diff --git a/domains/song.json b/domains/song.json new file mode 100644 index 000000000..e4ab69778 --- /dev/null +++ b/domains/song.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "asma019", + "email": "asmaparvin019@gmail.com" + }, + "record": { + "A": ["20.197.9.167"] + } +} diff --git a/domains/soni-aakas.json b/domains/soni-aakas.json new file mode 100644 index 000000000..bef2c1f2f --- /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/sonu.json b/domains/sonu.json index eeeeeda29..dc95660a1 100644 --- a/domains/sonu.json +++ b/domains/sonu.json @@ -1,11 +1,11 @@ { - "description": "Sonu's Website", - "repo": "https://github.com/Bad-Boy-Codes/bad-boy-codes.github.io", - "owner": { - "username": "bad-boy-codes", - "email": "sonupanda078@gmail.com" - }, - "record": { - "CNAME": "semant-panda.github.io" - } + "description": "Sonu's Website", + "repo": "https://github.com/Bad-Boy-Codes/bad-boy-codes.github.io", + "owner": { + "username": "bad-boy-codes", + "email": "mail@semant.is-a.dev" + }, + "record": { + "CNAME": "bad-boy-codes.github.io" + } } diff --git a/domains/soothe.json b/domains/soothe.json new file mode 100644 index 000000000..3035df4e9 --- /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/sotoyer.json b/domains/sotoyer.json new file mode 100644 index 000000000..e0cd92e1b --- /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..993035603 --- /dev/null +++ b/domains/sotto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RaydanOMGr", + "email": "andreykelbler@outlook.de" + }, + "record": { + "CNAME": "proxy.private.danbot.host" + } +} diff --git a/domains/soulis.json b/domains/soulis.json index 9f2bab768..d6559f82b 100644 --- a/domains/soulis.json +++ b/domains/soulis.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "anselal", - "email": "t.selalmasidis@gmail.com" - }, - "record": { - "URL": "https://soulis.tech" - } + "owner": { + "username": "anselal", + "email": "t.selalmasidis@gmail.com" + }, + "record": { + "URL": "https://soulis.tech" + } } diff --git a/domains/soumya-das.json b/domains/soumya-das.json new file mode 100644 index 000000000..899851177 --- /dev/null +++ b/domains/soumya-das.json @@ -0,0 +1,11 @@ +{ + "description": "soumyah Profile.", + "repo": "https://github.com/soumyah-das/soumyah-das.github.io", + "owner": { + "username": "soumyah-das", + "email": "" + }, + "record": { + "CNAME": "soumyah-das.github.io" + } +} diff --git a/domains/soup.json b/domains/soup.json new file mode 100644 index 000000000..153425e93 --- /dev/null +++ b/domains/soup.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SouperZ", + "email": "slxtty.bxtchlol@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sourabh.json b/domains/sourabh.json new file mode 100644 index 000000000..6798d751c --- /dev/null +++ b/domains/sourabh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "6ixline", + "email": "sourabhsingh01998@gmail.com" + }, + "record": { + "A": ["198.54.113.40"] + } +} diff --git a/domains/sourav.json b/domains/sourav.json new file mode 100644 index 000000000..d55e38eee --- /dev/null +++ b/domains/sourav.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "LegendOP1041", + "email": "maillegendop@gmail.com", + "discord": "1056531806763102218" + }, + + "record": { + "A": ["69.30.249.53"] + } + } + \ No newline at end of file diff --git a/domains/sourov-khan-nahid.json b/domains/sourov-khan-nahid.json new file mode 100644 index 000000000..98bfbfa98 --- /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..fb39d5963 --- /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..2072afa9c --- /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/sowmiksudo.json b/domains/sowmiksudo.json new file mode 100644 index 000000000..2072afa9c --- /dev/null +++ b/domains/sowmiksudo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sowmiksudo", + "email": "Xowmik@gmail.com" + }, + "record": { + "CNAME": "sowmiksudo.github.io" + } +} diff --git a/domains/soyuj.json b/domains/soyuj.json index f5e86f57b..d3dcca4f7 100644 --- a/domains/soyuj.json +++ b/domains/soyuj.json @@ -1,10 +1,10 @@ { - "description": "Personal website of Soyuj Jung Basnet", - "owner": { - "username": "basnetsoyuj", - "email": "bsoyuj@gmail.com" - }, - "record": { - "URL": "http://soyuj.com.np" - } + "description": "Personal website of Soyuj Jung Basnet", + "owner": { + "username": "basnetsoyuj", + "email": "bsoyuj@gmail.com" + }, + "record": { + "URL": "http://soyuj.com.np" + } } diff --git a/domains/spa.json b/domains/spa.json new file mode 100644 index 000000000..830cce23d --- /dev/null +++ b/domains/spa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stepersy", + "email": "stefano.persanoadorno@liceopertini.edu.it" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/spaace.json b/domains/spaace.json new file mode 100644 index 000000000..0a2ee0fec --- /dev/null +++ b/domains/spaace.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Spaace-Save", + "email": "coelhoaiden@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/sparkfire298.json b/domains/sparkfire298.json new file mode 100644 index 000000000..649fe9104 --- /dev/null +++ b/domains/sparkfire298.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sparkfire298", + "email": "sparkfire298@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sparkle.json b/domains/sparkle.json new file mode 100644 index 000000000..efa2ddce3 --- /dev/null +++ b/domains/sparkle.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sparkledevs", + "email": "sparkleop921@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/spaxly.json b/domains/spaxly.json new file mode 100644 index 000000000..fae8b72cb --- /dev/null +++ b/domains/spaxly.json @@ -0,0 +1,15 @@ +{ + "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/spd.json b/domains/spd.json new file mode 100644 index 000000000..87680c9da --- /dev/null +++ b/domains/spd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "osakihsieh", + "email": "aspdoctor@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/spechide.json b/domains/spechide.json index fb206cfd4..e0de58887 100644 --- a/domains/spechide.json +++ b/domains/spechide.json @@ -1,13 +1,12 @@ { - "description": "My personal site", - "repo": "https://github.com/SpEcHiDe/SpEcHiDe.github.io", - "owner": { - "username": "SpEcHiDe", - "email": "", - "twitter": "SpEcHiDe" - }, - "record": { - "CNAME": "SpEcHiDe.github.io" - } + "description": "My personal site", + "repo": "https://github.com/SpEcHiDe/SpEcHiDe.github.io", + "owner": { + "username": "SpEcHiDe", + "email": "", + "twitter": "SpEcHiDe" + }, + "record": { + "CNAME": "SpEcHiDe.github.io" + } } - diff --git a/domains/specteado.json b/domains/specteado.json index 7dcf6f3c9..974cc72fa 100644 --- a/domains/specteado.json +++ b/domains/specteado.json @@ -1,11 +1,11 @@ { - "description": "Specteado's portfolio!", - "repo": "https://github.com/Specteado/specteado.github.io", - "owner": { - "username": "Specteado", - "email": "jusefmasabanda10@gmail.com" - }, - "record": { - "CNAME": "specteado.github.io" - } + "description": "Specteado's portfolio!", + "repo": "https://github.com/Specteado/specteado.github.io", + "owner": { + "username": "Specteado", + "email": "jusefmasabanda10@gmail.com" + }, + "record": { + "CNAME": "specteado.github.io" + } } diff --git a/domains/spectra.json b/domains/spectra.json new file mode 100644 index 000000000..ecf129b15 --- /dev/null +++ b/domains/spectra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SpectraTheFox", + "email": "spectra@spectrathefox.xyz" + }, + "record": { + "URL": "https://spectrathefox.xyz" + } +} diff --git a/domains/speedie.json b/domains/speedie.json new file mode 100644 index 000000000..1eafc77e7 --- /dev/null +++ b/domains/speedie.json @@ -0,0 +1,9 @@ +{ + "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..60487950d --- /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/spicyaxolotl.json b/domains/spicyaxolotl.json index fd548abf4..3aad84577 100644 --- a/domains/spicyaxolotl.json +++ b/domains/spicyaxolotl.json @@ -1,12 +1,12 @@ { - "description": "My personal website", - "repo": "https://github.com/Spicy-Axolotl/spicy-axolotl.github.io", - "owner": { - "username": "Spicy-Axolotl", - "email": "", - "discord": "Axolotl (mycoolface256)#4736" - }, - "record": { - "CNAME": "spicy-axolotl.github.io" - } + "description": "My personal website", + "repo": "https://github.com/Spicy-Axolotl/spicy-axolotl.github.io", + "owner": { + "username": "Spicy-Axolotl", + "email": "", + "discord": "Axolotl (mycoolface256)#4736" + }, + "record": { + "CNAME": "spicy-axolotl.github.io" + } } diff --git a/domains/spicywars.json b/domains/spicywars.json new file mode 100644 index 000000000..9df1b2c73 --- /dev/null +++ b/domains/spicywars.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NoodlesWow", + "email": "noodlesnomm@gmail.com" + }, + "record": { + "CNAME": "spicywarsuwu.onrender.com" + } +} diff --git a/domains/spidey.json b/domains/spidey.json new file mode 100644 index 000000000..925c2fccd --- /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/spike.json b/domains/spike.json new file mode 100644 index 000000000..8c6b630ad --- /dev/null +++ b/domains/spike.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "superspike7", + "email": "spikevinz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/spill.json b/domains/spill.json new file mode 100644 index 000000000..f86679f21 --- /dev/null +++ b/domains/spill.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Spilleparadis", + "email": "playerwictor@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/splashy.json b/domains/splashy.json new file mode 100644 index 000000000..4e6a7710f --- /dev/null +++ b/domains/splashy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ClicpoW", + "email": "clicpowytb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/splatboy-dev.json b/domains/splatboy-dev.json index 0fcd5d5fa..b109d1869 100644 --- a/domains/splatboy-dev.json +++ b/domains/splatboy-dev.json @@ -1,12 +1,12 @@ { - "description": "Personal Development Website", - "repo": "https://github.com/splatboy20081/splatboy20081.github.io", - "owner": { - "username": "splatboy20081", - "email": "nu@ll.com", - "twitter": "null" - }, - "record": { - "CNAME": "splatboy20081.github.io" - } + "description": "Personal Development Website", + "repo": "https://github.com/splatboy20081/splatboy20081.github.io", + "owner": { + "username": "splatboy20081", + "email": "nu@ll.com", + "twitter": "null" + }, + "record": { + "CNAME": "splatboy20081.github.io" + } } diff --git a/domains/splatterxl.json b/domains/splatterxl.json index 0c1ec8990..d208b059a 100644 --- a/domains/splatterxl.json +++ b/domains/splatterxl.json @@ -1,12 +1,12 @@ { - "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" - } + "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..191eb80de 100644 --- a/domains/spongly.json +++ b/domains/spongly.json @@ -8,4 +8,4 @@ "record": { "CNAME": "spongly.github.io" } -} +} diff --git a/domains/spoozy.json b/domains/spoozy.json index d9e7d42e9..4502c9c43 100644 --- a/domains/spoozy.json +++ b/domains/spoozy.json @@ -1,11 +1,11 @@ { - "description": "Spoozy website", - "repo": "https://github.com/Spoozy/Spoozy.github.io", - "owner": { - "username": "Spoozy", - "email": "gaspardlebreton@outlook.com" - }, - "record": { - "CNAME": "Spoozy.github.io" - } + "description": "Spoozy website", + "repo": "https://github.com/Spoozy/Spoozy.github.io", + "owner": { + "username": "Spoozy", + "email": "gaspardlebreton@outlook.com" + }, + "record": { + "CNAME": "Spoozy.github.io" + } } diff --git a/domains/sppidy.json b/domains/sppidy.json new file mode 100644 index 000000000..5f2562ed7 --- /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..3ec1ca986 100644 --- a/domains/spud.json +++ b/domains/spud.json @@ -1,11 +1,11 @@ { - "description": "My own personal portfolio as a developer", - "repo": "https://github.com/MrPotato30/mrotato30.github.io", - "owner": { - "username": "mrpotato30", - "email": "fahrelrizal08@gmail.com" - }, - "record": { - "CNAME": "mrpotato30.github.io" - } + "description": "My own personal portfolio as a developer", + "repo": "https://github.com/MrPotato30/mrotato30.github.io", + "owner": { + "username": "mrpotato30", + "email": "fahrelrizal08@gmail.com" + }, + "record": { + "CNAME": "mrpotato30.github.io" + } } diff --git a/domains/sputnick567.json b/domains/sputnick567.json index 1fc17b458..14f65df6c 100644 --- a/domains/sputnick567.json +++ b/domains/sputnick567.json @@ -1,5 +1,4 @@ { - "repo": "https://github.com/sputnick567/sputnick567.github.io", "owner": { "username": "sputnick567", @@ -8,4 +7,4 @@ "record": { "CNAME": "sputnick567.github.io" } -} +} diff --git a/domains/spydea.json b/domains/spydea.json new file mode 100644 index 000000000..7b812dd05 --- /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 index 176fc6bc0..7cf9fbe34 100644 --- a/domains/spyminer.json +++ b/domains/spyminer.json @@ -1,11 +1,11 @@ { - "description": "SpyMiner's website", - "repo": "https://github.com/SpyMinerX/SpyMinerX.github.io", - "owner": { - "username": "SpyMinerX", - "email": "spyminer@glacierclient.net" - }, - "record": { - "CNAME": "isadev.engelbrecht.pro" - } -} + "owner": { + "username": "SpyMinerX", + "email": "vince@engelbrecht.pro" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/spynet.json b/domains/spynet.json new file mode 100644 index 000000000..439fac51d --- /dev/null +++ b/domains/spynet.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Modesto888", + "email": "modestojr886@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/spyrisk.json b/domains/spyrisk.json new file mode 100644 index 000000000..22c506f57 --- /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/sqlmerr.json b/domains/sqlmerr.json new file mode 100644 index 000000000..dfae2ba28 --- /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/squaresmp.json b/domains/squaresmp.json new file mode 100644 index 000000000..ff5b01645 --- /dev/null +++ b/domains/squaresmp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SquareSmp", + "email": "squaresmp@asia.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sreevikram.json b/domains/sreevikram.json new file mode 100644 index 000000000..45942d26e --- /dev/null +++ b/domains/sreevikram.json @@ -0,0 +1,12 @@ +{ + + "owner": { + "username": "SreevikramR", + "email": "sreevikram.r@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } + } \ No newline at end of file diff --git a/domains/srihari.json b/domains/srihari.json index 165496e98..0e18c75ef 100644 --- a/domains/srihari.json +++ b/domains/srihari.json @@ -1,11 +1,11 @@ { - "description": "Greetings from Sri Hari!", - "repo": "https://github.com/srhr17/srhr17.github.io", - "owner": { - "username": "srhr17", - "email": "srhr1999@gmail.com" - }, - "record": { - "CNAME": "srhr17.github.io" - } + "description": "Greetings from Sri Hari!", + "repo": "https://github.com/srhr17/srhr17.github.io", + "owner": { + "username": "srhr17", + "email": "srhr1999@gmail.com" + }, + "record": { + "CNAME": "srhr17.github.io" + } } diff --git a/domains/srn.json b/domains/srn.json new file mode 100644 index 000000000..c819849c1 --- /dev/null +++ b/domains/srn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ilz5753", + "email": "mehdi.abdollahi3578@gmail.com" + }, + "record": { + "URL": "https://github.com/ilz5753/ilz5753.github.io" + } +} diff --git a/domains/srujan.json b/domains/srujan.json index 0253102bd..751d58b85 100644 --- a/domains/srujan.json +++ b/domains/srujan.json @@ -1,11 +1,11 @@ { - "description": "Personal Website", - "repo": "https://github.com/bqwerr/", - "owner": { - "username": "bqwerr", - "email": "srujan.t@outlook.com" - }, - "record": { - "CNAME": "bqwerr.github.io" - } + "description": "Personal Website", + "repo": "https://github.com/bqwerr", + "owner": { + "username": "bqwerr", + "email": "srujan.t@outlook.com" + }, + "record": { + "CNAME": "bqwerr.github.io" + } } diff --git a/domains/srujangajul.json b/domains/srujangajul.json new file mode 100644 index 000000000..1274f9124 --- /dev/null +++ b/domains/srujangajul.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "SrujanGajul", + "email": "Srujan.gajul@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/ss.cutedog5695.json b/domains/ss.cutedog5695.json new file mode 100644 index 000000000..82aeb36e7 --- /dev/null +++ b/domains/ss.cutedog5695.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CuteDog5695", + "email": "cutedog5695@gmail.com", + "discord": "cutedog5695", + "twitter": "cutedog5695" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/ss.json b/domains/ss.json index e05cdddb7..463c741ff 100644 --- a/domains/ss.json +++ b/domains/ss.json @@ -1,11 +1,11 @@ - - { - "owner": { - "username": "win11bot", - "email": "w11bot@andrewstech.me" - }, - "record": { - "A": ["178.128.174.110"] - } +{ + "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.kleb.json b/domains/ss.kleb.json new file mode 100644 index 000000000..d60c33257 --- /dev/null +++ b/domains/ss.kleb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KrazyKleb", + "email": "krazykleb@outlook.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/ss.stefdp.json b/domains/ss.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/ss.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/sser.json b/domains/sser.json new file mode 100644 index 000000000..399c62889 --- /dev/null +++ b/domains/sser.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lynicv", + "email": "nuffimail33@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sshdgjeienjdje.json b/domains/sshdgjeienjdje.json new file mode 100644 index 000000000..edfc2aad1 --- /dev/null +++ b/domains/sshdgjeienjdje.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CycloneAddons", + "email": "cycloneaddon@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/sso.nqdev.json b/domains/sso.nqdev.json new file mode 100644 index 000000000..b305e2dee --- /dev/null +++ b/domains/sso.nqdev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nguyenquy0710", + "email": "nguyenquy.1096@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/stacksyz.json b/domains/stacksyz.json new file mode 100644 index 000000000..e550c067e --- /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 index 5cba77419..334e79140 100644 --- a/domains/staff.json +++ b/domains/staff.json @@ -1,11 +1,9 @@ - - { - "owner": { - "username": "mahirmolai27", - "email": "mtgissmart@gmail.com" - }, - "record": { - "CNAME": "is-a-dev-maintainers.pages.dev" - } - } - \ No newline at end of file +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "CNAME": "is-a-dev-maintainers.pages.dev" + } +} diff --git a/domains/stamina.json b/domains/stamina.json new file mode 100644 index 000000000..ff662646a --- /dev/null +++ b/domains/stamina.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ivan100-ivoop", + "email": "ivankyosev21@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/stanasx.json b/domains/stanasx.json new file mode 100644 index 000000000..d6c07c42f --- /dev/null +++ b/domains/stanasx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stanasxd", + "email": "stanasarts@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/star.json b/domains/star.json new file mode 100644 index 000000000..620fdacb1 --- /dev/null +++ b/domains/star.json @@ -0,0 +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" + } +} diff --git a/domains/stardust.json b/domains/stardust.json new file mode 100644 index 000000000..e160960bd --- /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/starkblaze01.json b/domains/starkblaze01.json index 9aa087fdd..728ad1234 100644 --- a/domains/starkblaze01.json +++ b/domains/starkblaze01.json @@ -1,11 +1,11 @@ { - "description": "starkblaze01's world", - "repo": "https://github.com/starkblaze01/starkblaze01", - "owner": { - "username": "starkblaze01", - "email": "mp.pathela@gmail.com" - }, - "record": { - "URL": "https://starkblaze01.netlify.app/" - } + "description": "starkblaze01's world", + "repo": "https://github.com/starkblaze01/starkblaze01", + "owner": { + "username": "starkblaze01", + "email": "mp.pathela@gmail.com" + }, + "record": { + "URL": "https://starkblaze01.netlify.app" + } } diff --git a/domains/starnumber.json b/domains/starnumber.json index 1080ece73..d8c26dd64 100644 --- a/domains/starnumber.json +++ b/domains/starnumber.json @@ -1,9 +1,9 @@ { - "description": "StarNumber's blog", - "repo": "https://github.com/starnumber12046", - "owner": { - "username": "starnumber12046", - "email": "starnumber.official12046@gmail.com" - }, - "record": {"CNAME": "hashnode.network"} + "description": "StarNumber's blog", + "repo": "https://github.com/starnumber12046", + "owner": { + "username": "starnumber12046", + "email": "starnumber.official12046@gmail.com" + }, + "record": { "CNAME": "hashnode.network" } } diff --git a/domains/starry.json b/domains/starry.json new file mode 100644 index 000000000..0cab4fa92 --- /dev/null +++ b/domains/starry.json @@ -0,0 +1,11 @@ +{ + "description": "Shivam's personal website!", + "repo": "https://github.com/starry-shivam/starry-shivam.github.io", + "owner": { + "username": "starry-shivam", + "email": "krshivam24@proton.me" + }, + "record": { + "URL": "https://starry-shivam.github.io" + } +} diff --git a/domains/status.astra.json b/domains/status.astra.json new file mode 100644 index 000000000..ccdd07006 --- /dev/null +++ b/domains/status.astra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LilyMusic", + "email": "Lilymusicdiscord@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/status.cfp.json b/domains/status.cfp.json index d8c7f04fe..089d39980 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" + }, + "record": { + "CNAME": "cfp.gotdns.ch" + } +} diff --git a/domains/status.gattinhosbot.json b/domains/status.gattinhosbot.json new file mode 100644 index 000000000..7d127f33a --- /dev/null +++ b/domains/status.gattinhosbot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "CNAME": "uptime.stefdp.is-a.dev" + } +} diff --git a/domains/status.json b/domains/status.json new file mode 100644 index 000000000..73451fc78 --- /dev/null +++ b/domains/status.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@williamharrison.dev" + }, + "record": { + "CNAME": "wdhdns.com" + } +} diff --git a/domains/status.jzitnik.json b/domains/status.jzitnik.json new file mode 100644 index 000000000..12e26b96c --- /dev/null +++ b/domains/status.jzitnik.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "JZITNIK-github", + "email": "klindkubak@zohomail.eu", + "discord": "KLIND#1906" + }, + "record": { + "CNAME": "statuspage.betteruptime.com" + } +} 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.stefdp.json b/domains/status.stefdp.json new file mode 100644 index 000000000..7d127f33a --- /dev/null +++ b/domains/status.stefdp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "CNAME": "uptime.stefdp.is-a.dev" + } +} diff --git a/domains/stefan.json b/domains/stefan.json new file mode 100644 index 000000000..63953e825 --- /dev/null +++ b/domains/stefan.json @@ -0,0 +1,12 @@ +{ + "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..2882eface 100644 --- a/domains/stefdp.json +++ b/domains/stefdp.json @@ -1,12 +1,18 @@ { - "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" + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" }, "record": { - "CNAME": "stef-00012.github.io" + "A": [ + "217.174.245.249" + ], + "MX": [ + "mail.is-a.dev" + ], + "TXT": [ + "v=spf1 mx a:mail.is-a.dev ip4:217.174.245.249 ~all" + ] } -} +} diff --git a/domains/steffen.json b/domains/steffen.json index 6c102fa77..5b1d3fe23 100644 --- a/domains/steffen.json +++ b/domains/steffen.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/N0r1uno/n0r1uno.github.io", - "owner": { - "username": "N0r1uno", - "email": "noriunomakusui@gmail.com" - }, - "record": { - "CNAME": "n0r1uno.github.io" - } + "repo": "https://github.com/N0r1uno/n0r1uno.github.io", + "owner": { + "username": "N0r1uno", + "email": "noriunomakusui@gmail.com" + }, + "record": { + "CNAME": "n0r1uno.github.io" + } } diff --git a/domains/stellar.json b/domains/stellar.json new file mode 100644 index 000000000..4941e43a1 --- /dev/null +++ b/domains/stellar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jacksoncraft859", + "email": "pollardjackson@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/stellaros.json b/domains/stellaros.json new file mode 100644 index 000000000..4941e43a1 --- /dev/null +++ b/domains/stellaros.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jacksoncraft859", + "email": "pollardjackson@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/stephan.json b/domains/stephan.json index 82fae9d9e..66707ef0c 100644 --- a/domains/stephan.json +++ b/domains/stephan.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "stephan-strate", - "email": "hello@stephan.codes" - }, - "record": { - "URL": "https://stephan.codes" - } + "owner": { + "username": "stephan-strate", + "email": "hello@stephan.codes" + }, + "record": { + "URL": "https://stephan.codes" + } } diff --git a/domains/stev.json b/domains/stev.json new file mode 100644 index 000000000..d9f92082d --- /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/steven.json b/domains/steven.json index c01c15f36..9fcf60d0a 100644 --- a/domains/steven.json +++ b/domains/steven.json @@ -1,11 +1,11 @@ { - "description": "Steven Frohlich's portfolio", - "repo": "https://github.com/StevenRonnyFrohlich/StevenRonnyFrohlich.github.io", - "owner": { - "username": "StevenRonnyFrohlich", - "email": "steve.r.frohlich@gmail.com" - }, - "record": { - "CNAME": "StevenRonnyFrohlich.github.io" - } + "description": "Steven Frohlich's portfolio", + "repo": "https://github.com/StevenRonnyFrohlich/StevenRonnyFrohlich.github.io", + "owner": { + "username": "StevenRonnyFrohlich", + "email": "steve.r.frohlich@gmail.com" + }, + "record": { + "CNAME": "StevenRonnyFrohlich.github.io" + } } 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/stodja.json b/domains/stodja.json new file mode 100644 index 000000000..ccd976ce6 --- /dev/null +++ b/domains/stodja.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stodja", + "email": "alexvelichko51@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/stoneleaf-dh.json b/domains/stoneleaf-dh.json new file mode 100644 index 000000000..2f491a71a --- /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..66bd72ebc --- /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/storm.json b/domains/storm.json new file mode 100644 index 000000000..a46510fa6 --- /dev/null +++ b/domains/storm.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hxntaish", + "email": "juliettepoisson3@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..76aac5718 --- /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/strider-studios.json b/domains/strider-studios.json new file mode 100644 index 000000000..19c14f855 --- /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/string-null.json b/domains/string-null.json index 0490030a9..474689e10 100644 --- a/domains/string-null.json +++ b/domains/string-null.json @@ -1,12 +1,12 @@ { - "description": "My WEB", - "repo": "https://github.com/string-null/string-null.github.io", - "owner": { - "username": "string-null", - "email": "biel.f.r.bfr@gmail.com", - "twitter": "HdNenu" - }, - "record": { - "CNAME": "string-null.github.io" - } + "description": "My WEB", + "repo": "https://github.com/string-null/string-null.github.io", + "owner": { + "username": "string-null", + "email": "biel.f.r.bfr@gmail.com", + "twitter": "HdNenu" + }, + "record": { + "CNAME": "string-null.github.io" + } } diff --git a/domains/stringent.json b/domains/stringent.json index 6f3b7e537..934d63e0c 100644 --- a/domains/stringent.json +++ b/domains/stringent.json @@ -1,11 +1,11 @@ { - "description": "My Blog/Portfolio", - "repo": "https://github.com/StringentDev/StringentDev", - "owner": { - "username": "StringentDev", - "email": "stringentdev@hotmail.com" - }, - "record": { - "CNAME": "stringentdev-production.up.railway.app" - } + "description": "My Blog/Portfolio", + "repo": "https://github.com/StringentDev/StringentDev", + "owner": { + "username": "StringentDev", + "email": "stringentdev@hotmail.com" + }, + "record": { + "CNAME": "stringentdev-production.up.railway.app" + } } diff --git a/domains/strtsnm.json b/domains/strtsnm.json new file mode 100644 index 000000000..3e03815e2 --- /dev/null +++ b/domains/strtsnm.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "STRTSNM", + "email": "STRTSNM12@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/studythyme.json b/domains/studythyme.json new file mode 100644 index 000000000..52f0cf706 --- /dev/null +++ b/domains/studythyme.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BreadGhoti1", + "email": "breadghoti@gmail.com" + }, + "record": { + "CNAME": "sitev2-cvm.pages.dev" + } +} diff --git a/domains/stuffmaker.json b/domains/stuffmaker.json new file mode 100644 index 000000000..57ae2d155 --- /dev/null +++ b/domains/stuffmaker.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MrStuffmaker", + "email": "acapello6666@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/stupidjane.json b/domains/stupidjane.json new file mode 100644 index 000000000..687e587b7 --- /dev/null +++ b/domains/stupidjane.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "stupidjohanna", + "email": "stupidjane@tutanota.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/stvn.json b/domains/stvn.json index b556b0182..a64356daf 100644 --- a/domains/stvn.json +++ b/domains/stvn.json @@ -1,11 +1,11 @@ { - "description": "Steven Conaway's personal website.", - "repo": "https://github.com/SConaway/portfolio", - "owner": { - "username": "sconaway", - "email": "steven@stevenconaway.me" - }, - "record": { - "URL": "https://stevenconaway.me" - } + "description": "Steven Conaway's personal website.", + "repo": "https://github.com/SConaway/portfolio", + "owner": { + "username": "sconaway", + "email": "steven@stevenconaway.me" + }, + "record": { + "URL": "https://stevenconaway.me" + } } diff --git a/domains/stx.json b/domains/stx.json new file mode 100644 index 000000000..d6c07c42f --- /dev/null +++ b/domains/stx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stanasxd", + "email": "stanasarts@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sty.json b/domains/sty.json new file mode 100644 index 000000000..c76127b34 --- /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..616762b26 --- /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/su.json b/domains/su.json new file mode 100644 index 000000000..fbd218162 --- /dev/null +++ b/domains/su.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hemal80", + "email": "hemalfnmondal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sua.json b/domains/sua.json new file mode 100644 index 000000000..c69187c08 --- /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/subhadeepzilong.json b/domains/subhadeepzilong.json new file mode 100644 index 000000000..619ec4f96 --- /dev/null +++ b/domains/subhadeepzilong.json @@ -0,0 +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" + } +} diff --git a/domains/subham.json b/domains/subham.json new file mode 100644 index 000000000..44e9c8229 --- /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..8b50d9218 100644 --- a/domains/subhayu.json +++ b/domains/subhayu.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "subhayu99", "email": "balasubhayu99@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "subhayu99.github.io" - } } - \ No newline at end of file +} diff --git a/domains/sudania-ajay.json b/domains/sudania-ajay.json new file mode 100644 index 000000000..c5150a0e2 --- /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/sudev.json b/domains/sudev.json index 33022c303..c83c98994 100644 --- a/domains/sudev.json +++ b/domains/sudev.json @@ -1,11 +1,11 @@ { - "description": "Microsoft Student Ambassador, student at College of Engineering Trivandrum", - "repo": "https://github.com/gamegods3/gamegods3.github.io", - "owner": { - "username": "gamegods3", - "email": "sudevssuresh@gmail.com" - }, - "record": { - "CNAME": "gamegods3.github.io" - } + "description": "Microsoft Student Ambassador, student at College of Engineering Trivandrum", + "repo": "https://github.com/gamegods3/gamegods3.github.io", + "owner": { + "username": "gamegods3", + "email": "sudevssuresh@gmail.com" + }, + "record": { + "CNAME": "gamegods3.github.io" + } } diff --git a/domains/sudhan.json b/domains/sudhan.json deleted file mode 100644 index 8bd4515ec..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/sudi.json b/domains/sudi.json new file mode 100644 index 000000000..2db3cbe9a --- /dev/null +++ b/domains/sudi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ahsanu123", + "email": "caasperahsanuamala5@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sudip.json b/domains/sudip.json new file mode 100644 index 000000000..c9a6c1657 --- /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" + } +} \ No newline at end of file diff --git a/domains/sudo.json b/domains/sudo.json new file mode 100644 index 000000000..fbd218162 --- /dev/null +++ b/domains/sudo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hemal80", + "email": "hemalfnmondal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sudosu.json b/domains/sudosu.json new file mode 100644 index 000000000..fbd218162 --- /dev/null +++ b/domains/sudosu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hemal80", + "email": "hemalfnmondal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/suhailahmed.json b/domains/suhailahmed.json new file mode 100644 index 000000000..62c72045d --- /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/suhailahmed2627.json b/domains/suhailahmed2627.json new file mode 100644 index 000000000..8387529bf --- /dev/null +++ b/domains/suhailahmed2627.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SuhailAhmed2627", + "email": "suhailahmed2001sam@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/suhasdissa.json b/domains/suhasdissa.json new file mode 100644 index 000000000..7bc739280 --- /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/sujal.json b/domains/sujal.json new file mode 100644 index 000000000..553746e96 --- /dev/null +++ b/domains/sujal.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "c0der69", + "email": "", + "twitter": "psychosniper_" + }, + "record": { + "CNAME": "sujal-is-a-dev.pages.dev" + } +} diff --git a/domains/sujan.json b/domains/sujan.json new file mode 100644 index 000000000..8e962f1b2 --- /dev/null +++ b/domains/sujan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sujandeb", + "email": "work@sujandeb.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sujandeb.json b/domains/sujandeb.json new file mode 100644 index 000000000..8e962f1b2 --- /dev/null +++ b/domains/sujandeb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sujandeb", + "email": "work@sujandeb.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/suki.json b/domains/suki.json index 983a77bed..f2887c077 100644 --- a/domains/suki.json +++ b/domains/suki.json @@ -1,18 +1,11 @@ { - "description": "A cool website", - "repo": "https://github.com/SukiPlayz/hello-world", - "owner": { - "username": "SukiPlayz", - "email": "sukinotsus@pastagalaxy.xyz" - }, - "record": { - "A": [ - "135.148.226.33" - ], - "MX": [ - "ns1.crystalcloud.xyz", - "ns2.crystalcloud.xyz" - ], - "TXT": "v=spf1 a mx ip4:135.148.226.33 ~all" - } -} + "owner": { + "username": "SukiPlayz", + "email": "sukimayoo@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx include:mail.is-a.dev ~all", + "MX": ["mail.is-a.dev"] + } + } diff --git a/domains/suleymanduzgun.json b/domains/suleymanduzgun.json new file mode 100644 index 000000000..ba897b9b6 --- /dev/null +++ b/domains/suleymanduzgun.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "suleymanduzgun", + "email": "suleymanduzgun@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/suman.json b/domains/suman.json index 18c5dee20..9a3add074 100644 --- a/domains/suman.json +++ b/domains/suman.json @@ -2,12 +2,11 @@ "description": "Suman's Personal Website", "repo": "https://github.com/thatsuman/thatsuman.github.io", "owner": { - "username": "thatsuman", - "email": "suman.multiverse@gmail.com", - "twitter": "thatsumann" + "username": "thatsuman", + "email": "suman.multiverse@gmail.com", + "twitter": "thatsumann" }, "record": { - "CNAME": "thatsuman.github.io" + "CNAME": "thatsuman.github.io" } - } - \ No newline at end of file +} diff --git a/domains/sumanjay.json b/domains/sumanjay.json index 215a04f69..377056905 100644 --- a/domains/sumanjay.json +++ b/domains/sumanjay.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/cyberboysumanjay/cyberboysumanjay.github.io", - "owner": { - "username": "cyberboysumanjay", - "email": "sumanjay@duck.com" - }, - "record": { - "CNAME": "cyberboysumanjay.github.io" - } + "repo": "https://github.com/cyberboysumanjay/cyberboysumanjay.github.io", + "owner": { + "username": "cyberboysumanjay", + "email": "sumanjay@duck.com" + }, + "record": { + "CNAME": "cyberboysumanjay.github.io" + } } diff --git a/domains/sumedhaa.json b/domains/sumedhaa.json index 61ff4935f..06ab4f94e 100644 --- a/domains/sumedhaa.json +++ b/domains/sumedhaa.json @@ -1,11 +1,11 @@ { - "description": "Sumedhaa's Portfolio", - "repo": "https://github.com/misticorion/misticorion.github.io", - "owner": { - "username": "misticorion", - "email": "mistic.orion@gmail.com" - }, - "record": { - "CNAME": "misticorion.github.io" - } + "description": "Sumedhaa's Portfolio", + "repo": "https://github.com/misticorion/misticorion.github.io", + "owner": { + "username": "misticorion", + "email": "mistic.orion@gmail.com" + }, + "record": { + "CNAME": "misticorion.github.io" + } } diff --git a/domains/sumit.json b/domains/sumit.json new file mode 100644 index 000000000..b2f308f31 --- /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/sunnny.json b/domains/sunnny.json new file mode 100644 index 000000000..97fc95441 --- /dev/null +++ b/domains/sunnny.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "y4yyan", + "email": "y4yyan@yandex.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/sunny.json b/domains/sunny.json new file mode 100644 index 000000000..cca5a871d --- /dev/null +++ b/domains/sunny.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sunny-unik", + "email": "sunnygandhwani027@gmail.com" + }, + "record": { + "CNAME": "Sunny-unik.github.io" + } +} \ No newline at end of file diff --git a/domains/sunpodder.json b/domains/sunpodder.json new file mode 100644 index 000000000..0d14a548e --- /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..e105f31b7 --- /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/superharmony910.json b/domains/superharmony910.json index 29a6534cf..f908f4446 100644 --- a/domains/superharmony910.json +++ b/domains/superharmony910.json @@ -1,12 +1,12 @@ { - "description": "SuperHarmony910's personal developer website", - "repo": "https://github.com/SuperHarmony910/SuperHarmony910.github.io", - "owner": { - "username": "SuperHarmony910", - "email": "superharmony910@gmail.com", - "twitter": "s_harmony910" - }, - "record": { - "CNAME": "superharmony910.github.io" - } + "description": "SuperHarmony910's personal developer website", + "repo": "https://github.com/SuperHarmony910/SuperHarmony910.github.io", + "owner": { + "username": "SuperHarmony910", + "email": "superharmony910@gmail.com", + "twitter": "s_harmony910" + }, + "record": { + "CNAME": "superharmony910.github.io" + } } diff --git a/domains/supusr.json b/domains/supusr.json new file mode 100644 index 000000000..fbd218162 --- /dev/null +++ b/domains/supusr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hemal80", + "email": "hemalfnmondal@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/suq3r.json b/domains/suq3r.json new file mode 100644 index 000000000..65c25c5b0 --- /dev/null +++ b/domains/suq3r.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EnterausernameUwU", + "email": "soundingcool100@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/suraj.json b/domains/suraj.json index 4bc1f3c32..606b478b8 100644 --- a/domains/suraj.json +++ b/domains/suraj.json @@ -1,11 +1,11 @@ { - "description": "My personal developer website", - "repo": "https://github.com/Clay990/suraj", - "owner": { - "username": "Clay990", - "email": "asuraj991m@gmail.com" - }, - "record": { - "CNAME": "clay990.github.io" - } + "description": "My personal developer website", + "repo": "https://github.com/Clay990/suraj", + "owner": { + "username": "Clay990", + "email": "asuraj991m@gmail.com" + }, + "record": { + "CNAME": "clay990.github.io" + } } diff --git a/domains/surajh-patel.json b/domains/surajh-patel.json new file mode 100644 index 000000000..5435dad5e --- /dev/null +++ b/domains/surajh-patel.json @@ -0,0 +1,11 @@ +{ + "description": "surajh-patel Profile.", + "repo": "https://github.com/surajh-patel/surajh-patel.github.io", + "owner": { + "username": "surajh-patel", + "email": "" + }, + "record": { + "CNAME": "surajh-patel.github.io" + } +} diff --git a/domains/surendran-soumya.json b/domains/surendran-soumya.json new file mode 100644 index 000000000..bcb09bff7 --- /dev/null +++ b/domains/surendran-soumya.json @@ -0,0 +1,11 @@ +{ + "description": "surendran-soumya Profile.", + "repo": "https://github.com/surendran-soumya/surendran-soumya.github.io", + "owner": { + "username": "surendran-soumya", + "email": "" + }, + "record": { + "CNAME": "surendran-soumya.github.io" + } +} diff --git a/domains/surge.json b/domains/surge.json index 7fee11d4a..832b8e952 100644 --- a/domains/surge.json +++ b/domains/surge.json @@ -1,11 +1,11 @@ { - "description": "personal website", - "repo": "https://github.com/teamjoelee/me", - "owner": { - "username": "teamjoelee", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "URL": "https://i-am.surge.sh" - } + "description": "personal website", + "repo": "https://github.com/teamjoelee/me", + "owner": { + "username": "teamjoelee", + "email": "tojoeleeofficial@gmail.com" + }, + "record": { + "URL": "https://i-am.surge.sh" + } } diff --git a/domains/surv.json b/domains/surv.json new file mode 100644 index 000000000..d5adf9796 --- /dev/null +++ b/domains/surv.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SurvExe1Pc", + "email": "a_2oo@outlook.com" + }, + "record": { + "CNAME": "survexe1pc.github.io" + } +} diff --git a/domains/suryaansh.json b/domains/suryaansh.json index 1ca18f4fc..8d971684d 100644 --- a/domains/suryaansh.json +++ b/domains/suryaansh.json @@ -1,11 +1,11 @@ { - "description": "suryaansh's personal site", - "repo": "https://github.com/suryaanshah/suryaanshah.github.io", - "owner": { - "username": "suryaanshah", - "email": "suryaanshchawla@gmail.com" - }, - "record": { - "CNAME": "suryaanshah.github.io" - } + "description": "suryaansh's personal site", + "repo": "https://github.com/suryaanshah/suryaanshah.github.io", + "owner": { + "username": "suryaanshah", + "email": "suryaanshchawla@gmail.com" + }, + "record": { + "CNAME": "suryaanshah.github.io" + } } diff --git a/domains/suryaaprakassh.json b/domains/suryaaprakassh.json new file mode 100644 index 000000000..1e8ecee83 --- /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 new file mode 100644 index 000000000..af81a1f8c --- /dev/null +++ b/domains/suryajith.json @@ -0,0 +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" + } +} diff --git a/domains/suryansh.json b/domains/suryansh.json index 2fa65bb13..5e9d6a357 100644 --- a/domains/suryansh.json +++ b/domains/suryansh.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "iamsuryanshxd", "email": "legitsuryansh@gmail.com" - }, - "record": { - "URL": "https://github.com/iamsuryanshxd/" - } + }, + "record": { + "URL": "https://github.com/iamsuryanshxd" } - \ No newline at end of file +} diff --git a/domains/sushi.json b/domains/sushi.json new file mode 100644 index 000000000..b360dd3fb --- /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..147156d94 100644 --- a/domains/suspense.json +++ b/domains/suspense.json @@ -1,8 +1,8 @@ { - "owner": { - "username": "Suspense4615", - "email": "", - "twitter": "Suspense4615" - }, - "record": { "CNAME": "suspense4615.github.io" } + "owner": { + "username": "Suspense4615", + "email": "", + "twitter": "Suspense4615" + }, + "record": { "CNAME": "suspense4615.github.io" } } diff --git a/domains/sussypranav.json b/domains/sussypranav.json new file mode 100644 index 000000000..7c2f9073d --- /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/sutirth.json b/domains/sutirth.json index 5d9cfe65f..fdf390fc9 100644 --- a/domains/sutirth.json +++ b/domains/sutirth.json @@ -1,11 +1,11 @@ { - "description": "sutirth is a Developer!", - "repo": "https://github.com/ricksr/ricksr.github.io", - "owner": { - "username": "ricksr", - "email": "sutirtharej@gmail.com" - }, - "record": { - "CNAME": "ricksr.github.io" - } + "description": "sutirth is a Developer!", + "repo": "https://github.com/ricksr/ricksr.github.io", + "owner": { + "username": "ricksr", + "email": "sutirtharej@gmail.com" + }, + "record": { + "CNAME": "ricksr.github.io" + } } diff --git a/domains/svg.json b/domains/svg.json index 1f745c5d1..9013909e9 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/svloog.json b/domains/svloog.json index ce357d37f..5e8a9065f 100644 --- a/domains/svloog.json +++ b/domains/svloog.json @@ -1,12 +1,12 @@ { - "description": "just gonna put some projects here idk thought this might be cool to add some personality", - "repo": "https://github.com/slvoog/slvoog.github.io", - "owner": { - "username": "slvoog", - "email": "svloogz@gmail.com", - "twitter": "svloogz" - }, - "record": { - "CNAME": "slvoog.github.io" - } + "description": "just gonna put some projects here idk thought this might be cool to add some personality", + "repo": "https://github.com/slvoog/slvoog.github.io", + "owner": { + "username": "slvoog", + "email": "svloogz@gmail.com", + "twitter": "svloogz" + }, + "record": { + "CNAME": "slvoog.github.io" + } } diff --git a/domains/swanny.json b/domains/swanny.json deleted file mode 100644 index 317d6c4f5..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/swapnil.json b/domains/swapnil.json index f23fddfd6..5356edac7 100644 --- a/domains/swapnil.json +++ b/domains/swapnil.json @@ -1,11 +1,11 @@ { - "description": "Aspiring tech enthusiast", - "repo": "https://github.com/SwapnilChand/SwapnilChand.github.io", - "owner": { - "username": "SwapnilChand", - "email": "swapnilchand51@gmail.com" - }, - "record": { - "CNAME": "SwapnilChand.github.io" - } + "description": "Aspiring tech enthusiast", + "repo": "https://github.com/SwapnilChand/SwapnilChand.github.io", + "owner": { + "username": "SwapnilChand", + "email": "swapnilchand51@gmail.com" + }, + "record": { + "CNAME": "SwapnilChand.github.io" + } } diff --git a/domains/swargarajbhowmik.json b/domains/swargarajbhowmik.json new file mode 100644 index 000000000..7a76d2598 --- /dev/null +++ b/domains/swargarajbhowmik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "swargarajbhowmik", + "email": "swargaraj66@gmail.com" + }, + "record": { + "CNAME": "swargarajbhowmik.github.io" + } +} diff --git a/domains/sweta-solanki.json b/domains/sweta-solanki.json new file mode 100644 index 000000000..0d067cafa --- /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 a3897de71..612d768d8 100644 --- a/domains/sx9.json +++ b/domains/sx9.json @@ -1,14 +1,10 @@ -{ - "description": "SX's Website", - "repo": "https://sx-9.github.io", - "owner": { - "username": "SX-9", - "twitter": "SX_Discord", - "discord": "SX-Spy-Agent#1377", - "email": "sx-91@outlook.com", - "note": "Im Trying Some Hosting Providers For My Website So You Might Get A Lot Of Pull Requests From Me" - }, - "record": { - "CNAME": "sx-9.github.io" - } +{ + "description": "SX's Website", + "owner": { + "username": "SX-9", + "email": "sx-91@outlook.com" + }, + "record": { + "CNAME": "cname.short.io" + } } diff --git a/domains/sxe.json b/domains/sxe.json new file mode 100644 index 000000000..d6c07c42f --- /dev/null +++ b/domains/sxe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "stanasxd", + "email": "stanasarts@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sxurxbh.json b/domains/sxurxbh.json new file mode 100644 index 000000000..0f9937444 --- /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 new file mode 100644 index 000000000..2e4bcc58b --- /dev/null +++ b/domains/sxvr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "skaar513", + "email": "skaar513@gmail.com" + }, + "record": { + "CNAME": "skaar513.github.io" + } +} diff --git a/domains/syahiramali.json b/domains/syahiramali.json index c7c937927..c29d37f39 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 index 9157e204c..3f92e4984 100644 --- a/domains/sycured.json +++ b/domains/sycured.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "sycured", - "email": "sycured@protonmail.com" - }, - "record": { - "URL": "https://sycured.com" - } + "owner": { + "username": "sycured", + "email": "sycured@protonmail.com" + }, + "record": { + "URL": "https://sycured.com" + } } diff --git a/domains/syd.json b/domains/syd.json index 3c33dcfd5..7e66b94c8 100644 --- a/domains/syd.json +++ b/domains/syd.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "bububa", "email": "prof.syd.xu@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "bububa.github.io" - } } - \ No newline at end of file +} diff --git a/domains/syed.json b/domains/syed.json new file mode 100644 index 000000000..3aaef1f8f --- /dev/null +++ b/domains/syed.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SyedAhkam", + "email": "smahkam57@gmail.com" + }, + "record": { + "CNAME": "syedahkam.github.io" + } +} diff --git a/domains/syedomershah.json b/domains/syedomershah.json new file mode 100644 index 000000000..cf626f7f9 --- /dev/null +++ b/domains/syedomershah.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Syedomershah99", + "email": "syedomershah99@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/sylestic.json b/domains/sylestic.json new file mode 100644 index 000000000..15a09742c --- /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/syntaxloopers.json b/domains/syntaxloopers.json new file mode 100644 index 000000000..a23664d55 --- /dev/null +++ b/domains/syntaxloopers.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/syntz.json b/domains/syntz.json new file mode 100644 index 000000000..00ecd0d3d --- /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/syofyanzuhad.json b/domains/syofyanzuhad.json index eeafbc6a6..25c3b752d 100644 --- a/domains/syofyanzuhad.json +++ b/domains/syofyanzuhad.json @@ -1,11 +1,11 @@ { - "description": "Web Profile of Syofyan Zuhad", - "repo": "https://github.com/syofyanzuhad/syofyanzuhad.github.io", - "owner": { - "username": "syofyanzuhad", - "email": "sofyanzuhad2@gmail.com" - }, - "record": { - "CNAME": "syofyanzuhad.my.id" - } + "description": "Web Profile of Syofyan Zuhad", + "repo": "https://github.com/syofyanzuhad/syofyanzuhad.github.io", + "owner": { + "username": "syofyanzuhad", + "email": "sofyanzuhad2@gmail.com" + }, + "record": { + "CNAME": "syofyanzuhad.my.id" + } } diff --git a/domains/sys32.json b/domains/sys32.json new file mode 100644 index 000000000..850d4c3ef --- /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/systemm32.json b/domains/systemm32.json new file mode 100644 index 000000000..6e893f3a7 --- /dev/null +++ b/domains/systemm32.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "System32-0101", + "email": "didunoxd@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tabanopro.json b/domains/tabanopro.json new file mode 100644 index 000000000..aa6ebd16e --- /dev/null +++ b/domains/tabanopro.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tabanopro", + "email": "glim4045@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tagbot.maskduck.json b/domains/tagbot.maskduck.json index 909c18865..ae57914c8 100644 --- a/domains/tagbot.maskduck.json +++ b/domains/tagbot.maskduck.json @@ -1,15 +1,15 @@ { - "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" - } + "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..9cca8f90a 100644 --- a/domains/taha.json +++ b/domains/taha.json @@ -1,11 +1,11 @@ { - "description": "Taha bou's Portfolio", - "repo": "https://github.com/tahakocabuga/taha2002.github.io", - "owner": { - "username": "taha2002", - "email": "bouras1920@gmail.com" - }, - "record": { - "CNAME": "taha2002.github.io" - } -} \ No newline at end of file + "description": "Taha bou's Portfolio", + "repo": "https://github.com/tahakocabuga/taha2002.github.io", + "owner": { + "username": "taha2002", + "email": "bouras1920@gmail.com" + }, + "record": { + "CNAME": "taha2002.github.io" + } +} diff --git a/domains/taha2002.json b/domains/taha2002.json index b5ee77a38..180a8f5aa 100644 --- a/domains/taha2002.json +++ b/domains/taha2002.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "taha2002", "email": "bouras1920@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "taha2002.github.io" - } } - \ No newline at end of file +} diff --git a/domains/tahaadnan.json b/domains/tahaadnan.json new file mode 100644 index 000000000..317bf98cd --- /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/tahakocabuga.json b/domains/tahakocabuga.json index 1e9d8019c..3fe7aded8 100644 --- a/domains/tahakocabuga.json +++ b/domains/tahakocabuga.json @@ -1,12 +1,12 @@ { - "description": "Taha Kocabuga's Portfolio", - "repo": "https://github.com/tahakocabuga/tahakocabuga.github.io", - "owner": { - "username": "tahakocabuga", - "email": "tahakocabuga@gmail.com", - "twitter": "tahakocabuga" - }, - "record": { - "CNAME": "tahakocabuga.github.io" - } + "description": "Taha Kocabuga's Portfolio", + "repo": "https://github.com/tahakocabuga/tahakocabuga.github.io", + "owner": { + "username": "tahakocabuga", + "email": "tahakocabuga@gmail.com", + "twitter": "tahakocabuga" + }, + "record": { + "CNAME": "tahakocabuga.github.io" + } } diff --git a/domains/tahmidrayat.json b/domains/tahmidrayat.json index 245bd2600..cc2be1f49 100644 --- a/domains/tahmidrayat.json +++ b/domains/tahmidrayat.json @@ -1,11 +1,11 @@ { - "description": "Github Portfolio of Tahmid Rayat", - "repo": "https://github.com/htr-tech/htr-tech.github.io", - "owner": { - "username": "htr-tech", - "email": "tahmidrayat@gmail.com" - }, - "record": { - "CNAME": "htr-tech.github.io" - } + "description": "Github Portfolio of Tahmid Rayat", + "repo": "https://github.com/htr-tech/htr-tech.github.io", + "owner": { + "username": "htr-tech", + "email": "tahmidrayat@gmail.com" + }, + "record": { + "CNAME": "htr-tech.github.io" + } } diff --git a/domains/takase.json b/domains/takase.json new file mode 100644 index 000000000..cd1d1399e --- /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/takeshi.json b/domains/takeshi.json new file mode 100644 index 000000000..1d22496e3 --- /dev/null +++ b/domains/takeshi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "takeshi7502", + "email": "takeshi.gi75@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/takudzwachiutaalenga.json b/domains/takudzwachiutaalenga.json new file mode 100644 index 000000000..0a683c0c8 --- /dev/null +++ b/domains/takudzwachiutaalenga.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TakudzwaChiutaalenga", + "email": "takudzwachiutaalenga@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tal7aouy.json b/domains/tal7aouy.json new file mode 100644 index 000000000..0a6ab7524 --- /dev/null +++ b/domains/tal7aouy.json @@ -0,0 +1,9 @@ +{ + "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..72577e571 --- /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..c8da039f5 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..a6605dda5 --- /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" + } +} \ No newline at end of file diff --git a/domains/tamton-aquib.json b/domains/tamton-aquib.json new file mode 100644 index 000000000..1a4efcd2a --- /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..81737f663 --- /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/tanish2002.json b/domains/tanish2002.json index c07b0ebfd..f337dc1cb 100644 --- a/domains/tanish2002.json +++ b/domains/tanish2002.json @@ -1,11 +1,11 @@ { - "description": "Tanish2002's Website", - "repo": "https://github.com/Tanish2002/Tanish2002.github.io", - "owner": { - "username": "Tanish2002", - "email": "tanishkhare@gmail.com" - }, - "record": { - "CNAME": "tanish2002.github.io" - } + "description": "Tanish2002's Website", + "repo": "https://github.com/Tanish2002/Tanish2002.github.io", + "owner": { + "username": "Tanish2002", + "email": "tanishkhare@gmail.com" + }, + "record": { + "CNAME": "tanish2002.github.io" + } } 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..42788d7c4 --- /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/tanmayjaiswal.json b/domains/tanmayjaiswal.json new file mode 100644 index 000000000..b7b822b8a --- /dev/null +++ b/domains/tanmayjaiswal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sequel-tj", + "email": "tanmayjaiswal31102002@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tanos.json b/domains/tanos.json new file mode 100644 index 000000000..d131cce0c --- /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..55b9ec005 --- /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..556aa308f --- /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/tar1k.json b/domains/tar1k.json new file mode 100644 index 000000000..80a198fc6 --- /dev/null +++ b/domains/tar1k.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ythknn", + "email": "ythknn@gmail.com" + }, + + "record": { + "A": ["193.223.105.188"] + } +} diff --git a/domains/tarik.json b/domains/tarik.json index 229555f73..ab9565c8d 100644 --- a/domains/tarik.json +++ b/domains/tarik.json @@ -1,11 +1,11 @@ { - "description": "Personal website of Tarık Coşkun", - "repo": "https://github.com/tarikcoskun/website", - "owner": { - "username": "tarikcoskun", - "email": "tarikcskun@gmail.com" - }, - "record": { - "CNAME": "tarikcoskun.up.railway.app" - } + "description": "Personal website of Tarık Coşkun", + "repo": "https://github.com/tarikcoskun/website", + "owner": { + "username": "tarikcoskun", + "email": "tarikcskun@gmail.com" + }, + "record": { + "CNAME": "tarikcoskun.up.railway.app" + } } diff --git a/domains/tariqul.json b/domains/tariqul.json new file mode 100644 index 000000000..2664fc05f --- /dev/null +++ b/domains/tariqul.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tariqultais", + "email": "2201081175@UTTARAUNIVERSITY.EDU.BD" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..3ad7a6db3 --- /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 new file mode 100644 index 000000000..839829e58 --- /dev/null +++ b/domains/tarun57.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..839829e58 --- /dev/null +++ b/domains/tarun577.json @@ -0,0 +1,9 @@ +{ + "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..06c4097a6 --- /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.github.io" + } +} diff --git a/domains/tashvik.json b/domains/tashvik.json new file mode 100644 index 000000000..0d60c888e --- /dev/null +++ b/domains/tashvik.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tashviks", + "email": "tashvik.12112279@lpu.in" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tat2008.json b/domains/tat2008.json index 1e61193c7..7c1c8a108 100644 --- a/domains/tat2008.json +++ b/domains/tat2008.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "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/taufikmaulidi.json b/domains/taufikmaulidi.json new file mode 100644 index 000000000..06202c492 --- /dev/null +++ b/domains/taufikmaulidi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "taufikmaulidi", + "email": "taufikmaulidi123@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tavignesh.json b/domains/tavignesh.json index b892faa4b..d73a00a68 100644 --- a/domains/tavignesh.json +++ b/domains/tavignesh.json @@ -1,10 +1,10 @@ { - "description": "T.A.Vignesh's cool website", - "owner": { - "username": "tavignesh", - "email": "vigneshta004@gmail.com" - }, - "record": { - "CNAME": "vignesh-is-a-dev.pages.dev" - } + "description": "T.A.Vignesh's cool website", + "owner": { + "username": "tavignesh", + "email": "vigneshta004@gmail.com" + }, + "record": { + "CNAME": "vignesh-is-a-dev.pages.dev" + } } diff --git a/domains/tawogrant.json b/domains/tawogrant.json new file mode 100644 index 000000000..d847f7330 --- /dev/null +++ b/domains/tawogrant.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "TgkCapture", + "email": "tawongakanyenda5@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/tawqeer.json b/domains/tawqeer.json new file mode 100644 index 000000000..6779c9f54 --- /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/tazer.json b/domains/tazer.json new file mode 100644 index 000000000..9d74de274 --- /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/tazmyan.json b/domains/tazmyan.json new file mode 100644 index 000000000..7257cd85d --- /dev/null +++ b/domains/tazmyan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Tazmyan", + "email": "tikpatka@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tbhgodpro.json b/domains/tbhgodpro.json new file mode 100644 index 000000000..4ba824e4e --- /dev/null +++ b/domains/tbhgodpro.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TBHGodPro", + "email": "tarun.bhaskar@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tca.json b/domains/tca.json index 944241e02..c8c2625b3 100644 --- a/domains/tca.json +++ b/domains/tca.json @@ -1,12 +1,11 @@ { - "description": "TCA's official portfolio, if you can call it that.", - "repo": "https://github.com/NotTCA/devsite", - "owner": { - "username": "NotTCA", - "email": "me@nottca.tk", - "twitter": "https://twitter.com/imTCA_" - }, - "record": { - "CNAME": "nottca.github.io" - } + "description": "TCA's official portfolio, if you can call it that.", + "repo": "https://github.com/ToastifyDev/devsite", + "owner": { + "username": "ToastifyDev", + "email": "hey@toastify.tk" + }, + "record": { + "URL": "https://toasted.is-a.dev" + } } diff --git a/domains/tcdavo.json b/domains/tcdavo.json index e2e6ec296..267e76625 100644 --- a/domains/tcdavo.json +++ b/domains/tcdavo.json @@ -1,10 +1,10 @@ { - "owner":{ - "username": "Tcdavo", - "discord": "FriedUp-_-#6908", - "email": "" - }, - "record": { - "CNAME": "44f0c26f-c6a3-4a32-bd8b-80614d289b24.id.repl.co" - } + "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 index 9c66dd642..7a38e0a7e 100644 --- a/domains/tcl.json +++ b/domains/tcl.json @@ -1,11 +1,11 @@ -{ - "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 +{ + "description": "TianTcl's profile", + "repo": "https://github.com/TianTcl/TianTcl", + "owner": { + "username": "TianTcl", + "email": "tclwebguest@gmail.com" + }, + "record": { + "CNAME": "info.tiantcl.net" + } +} diff --git a/domains/tclement0922.json b/domains/tclement0922.json index b5645db9f..b660dfba3 100644 --- a/domains/tclement0922.json +++ b/domains/tclement0922.json @@ -2,10 +2,10 @@ "description": "tclement0922's personal site", "repo": "https://github.com/tclement0922/tclement0922.github.io", "owner": { - "username": "tclement0922", - "email": "dev.tclement0922@gmail.com" + "username": "tclement0922", + "email": "dev.tclement0922@gmail.com" }, "record": { - "CNAME": "tclement0922.github.io" + "CNAME": "tclement0922.github.io" } - } +} diff --git a/domains/tcxone.json b/domains/tcxone.json new file mode 100644 index 000000000..c0efe0e54 --- /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..1567c0b9f --- /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..14d86e4f4 --- /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/tdm.json b/domains/tdm.json index fe7b31da0..5fe3a7cb0 100644 --- a/domains/tdm.json +++ b/domains/tdm.json @@ -1,11 +1,11 @@ { - "description": "This website is a link to my personal developer portfolio.", - "repo": "https://github.com/loltdmmmos/loltdmmmos.github.io", - "owner": { - "username": "LolTDMMMOs", - "email": "paymentstdm@gmail.com" - }, - "record": { - "CNAME": "loltdmmmos.github.io" - } + "description": "This website is a link to my personal developer portfolio.", + "repo": "https://github.com/loltdmmmos/loltdmmmos.github.io", + "owner": { + "username": "LolTDMMMOs", + "email": "paymentstdm@gmail.com" + }, + "record": { + "CNAME": "loltdmmmos.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..4aa1cf321 100644 --- a/domains/team.json +++ b/domains/team.json @@ -1,11 +1,11 @@ { - "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" - }, - "record": { - "CNAME": "is-a-dev.github.io" - } + "description": "The Maintainer Docs For The Is-A.Dev Website!", + "repo": "github.com/is-a-dev/maintainer-docs", + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "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..2d11c8ddf --- /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..a23664d55 --- /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/tech-geek-united.json b/domains/tech-geek-united.json new file mode 100644 index 000000000..1651b7f2e --- /dev/null +++ b/domains/tech-geek-united.json @@ -0,0 +1,12 @@ +{ + "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-is-god.json b/domains/tech-is-god.json new file mode 100644 index 000000000..c18c33303 --- /dev/null +++ b/domains/tech-is-god.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "GamerKid67289", + "email": "zprice720@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tech.json b/domains/tech.json index 6b4bf404d..f7a6f7384 100644 --- a/domains/tech.json +++ b/domains/tech.json @@ -7,4 +7,4 @@ "record": { "CNAME": "techpixel.github.io" } -} +} 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..58b9393cd --- /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/techhjork.json b/domains/techhjork.json new file mode 100644 index 000000000..18d53e5da --- /dev/null +++ b/domains/techhjork.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "techhjork", + "email": "techhjork@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/techke.json b/domains/techke.json new file mode 100644 index 000000000..174a7a941 --- /dev/null +++ b/domains/techke.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "techke1", + "email": "techpunditke@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/technofusiontech.json b/domains/technofusiontech.json new file mode 100644 index 000000000..611e9e47b --- /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/technohacker.json b/domains/technohacker.json index 0789bb185..930683a02 100644 --- a/domains/technohacker.json +++ b/domains/technohacker.json @@ -1,11 +1,11 @@ { - "description": "Personal GitHub page", - "repo": "https://github.com/Technohacker/technohacker.github.io", - "owner": { - "username": "Technohacker", - "email": "technohacker1995@gmail.com" - }, - "record": { - "CNAME": "technohacker.github.io" - } + "description": "Personal GitHub page", + "repo": "https://github.com/Technohacker/technohacker.github.io", + "owner": { + "username": "Technohacker", + "email": "technohacker1995@gmail.com" + }, + "record": { + "CNAME": "technohacker.github.io" + } } diff --git a/domains/technopaws.json b/domains/technopaws.json index 7c68680ef..eb2656741 100644 --- a/domains/technopaws.json +++ b/domains/technopaws.json @@ -1,11 +1,11 @@ { - "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" - } + "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/techpundit.json b/domains/techpundit.json new file mode 100644 index 000000000..174a7a941 --- /dev/null +++ b/domains/techpundit.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "techke1", + "email": "techpunditke@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/techpunditke.json b/domains/techpunditke.json new file mode 100644 index 000000000..174a7a941 --- /dev/null +++ b/domains/techpunditke.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "techke1", + "email": "techpunditke@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/techside.json b/domains/techside.json new file mode 100644 index 000000000..723ecc8d0 --- /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..539f40fb7 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/techy.json b/domains/techy.json index fa821291b..91b3afe03 100644 --- a/domains/techy.json +++ b/domains/techy.json @@ -1,12 +1,12 @@ { - "description": "Techy's blog", - "repo": "https://github.com/Techy/techy.github.io", - "owner": { - "username": "techy", - "email": "", - "twitter": "tech_dude1" - }, - "record": { - "CNAME": "techy.github.io" - } + "description": "Techy's blog", + "repo": "https://github.com/Techy/techy.github.io", + "owner": { + "username": "techy", + "email": "", + "twitter": "tech_dude1" + }, + "record": { + "CNAME": "techy.github.io" + } } diff --git a/domains/teds.json b/domains/teds.json new file mode 100644 index 000000000..38787eb6b --- /dev/null +++ b/domains/teds.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "DovydasTEDS", + "email": "dovydasjakcinskas@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/tehpig.json b/domains/tehpig.json new file mode 100644 index 000000000..1ac0fb64c --- /dev/null +++ b/domains/tehpig.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TehPigYT", + "email": "aggelosdellas@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tejas-luthra.json b/domains/tejas-luthra.json new file mode 100644 index 000000000..1b893c027 --- /dev/null +++ b/domains/tejas-luthra.json @@ -0,0 +1,11 @@ +{ + "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 b2cbe72ef..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/tekno.json b/domains/tekno.json index 63a41fcfc..a088c028b 100644 --- a/domains/tekno.json +++ b/domains/tekno.json @@ -1,14 +1,12 @@ { - "description": "Custom domain for my personal site", - "repo": "https://github.com/TeknoSenpai/teknosenpai.github.io", - "owner": { - "username": "TeknoSenpai", - "email": "tekno@hiri.dev", - "twitter": "@TeknoSenpai" - }, - "record": { - "A": [ - "173.212.245.116" - ] - } + "description": "Custom domain for my personal site", + "repo": "https://github.com/TeknoSenpai/teknosenpai.github.io", + "owner": { + "username": "TeknoSenpai", + "email": "tekno@hiri.dev", + "twitter": "TeknoSenpai" + }, + "record": { + "A": ["173.212.245.116"] + } } diff --git a/domains/teknoday.json b/domains/teknoday.json new file mode 100644 index 000000000..bd7815130 --- /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/temp.stefdp.json b/domains/temp.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/temp.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/ten.json b/domains/ten.json new file mode 100644 index 000000000..5b504c974 --- /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/tenuun.json b/domains/tenuun.json new file mode 100644 index 000000000..dfa5e4615 --- /dev/null +++ b/domains/tenuun.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "tenuuni", + "email": "tenuuni.08@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/teobouvard.json b/domains/teobouvard.json index ac0bc8287..aec1bf9e2 100644 --- a/domains/teobouvard.json +++ b/domains/teobouvard.json @@ -1,11 +1,11 @@ { - "description": "Personal github page", - "repo": "https://github.com/teobouvard/teobouvard.github.io", - "owner": { - "username": "teobouvard", - "email": "" - }, - "record": { - "CNAME": "teobouvard.github.io" - } + "description": "Personal github page", + "repo": "https://github.com/teobouvard/teobouvard.github.io", + "owner": { + "username": "teobouvard", + "email": "" + }, + "record": { + "CNAME": "teobouvard.github.io" + } } diff --git a/domains/termonoid.json b/domains/termonoid.json index 8206d8cd2..890757296 100644 --- a/domains/termonoid.json +++ b/domains/termonoid.json @@ -1,12 +1,12 @@ { - "description": "Domain for personal server", - "repo": "https://github.com/Termonoid/", - "owner": { - "username": "Termonoid", - "email": "termonoid@cumallover.me", - "telegram": "termonoid" - }, - "record": { - "A": ["135.181.144.44"] - } + "description": "Domain for personal server", + "repo": "https://github.com/Termonoid", + "owner": { + "username": "Termonoid", + "email": "termonoid@cumallover.me", + "telegram": "termonoid" + }, + "record": { + "A": ["135.181.144.44"] + } } 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/terraegg.json b/domains/terraegg.json new file mode 100644 index 000000000..84e78e300 --- /dev/null +++ b/domains/terraegg.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AlbumanO", + "email": "oliver.young4@student.education.wa.edu.au" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/terroid.json b/domains/terroid.json index e21dc54ac..512bd0cc1 100644 --- a/domains/terroid.json +++ b/domains/terroid.json @@ -1,12 +1,11 @@ { - "description": "Portfolio", - "repo": "https://github.com/skandabhairava/skandabhairava.github.io", - "owner": { - "username": "skandabhairava", - "email": "skandabhairava@gmail.com", - "twitter": "TerroidYT" - }, - "record": { - "CNAME": "skandabhairava.github.io" - } + "description": "Portfolio", + "repo": "https://github.com/skandabhairava/skandabhairava.github.io", + "owner": { + "username": "skandabhairava", + "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 index 7fef11872..98333b86c 100644 --- a/domains/tessa.json +++ b/domains/tessa.json @@ -1,11 +1,11 @@ { - "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" - } + "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/test2214.json b/domains/test2214.json new file mode 100644 index 000000000..3b03fdb96 --- /dev/null +++ b/domains/test2214.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "005sunnysingh", + "email": "005sunnysingh@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} \ No newline at end of file diff --git a/domains/test373.json b/domains/test373.json new file mode 100644 index 000000000..6187042fc --- /dev/null +++ b/domains/test373.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } + } \ No newline at end of file diff --git a/domains/test849205.json b/domains/test849205.json new file mode 100644 index 000000000..ff5b01645 --- /dev/null +++ b/domains/test849205.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SquareSmp", + "email": "squaresmp@asia.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/testluxxy.json b/domains/testluxxy.json new file mode 100644 index 000000000..76ed5fc66 --- /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..ea691c545 --- /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..d157b7c37 --- /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/textures1245.json b/domains/textures1245.json new file mode 100644 index 000000000..7f501bdeb --- /dev/null +++ b/domains/textures1245.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "textures1245", + "email": "sirprak1245@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tfuifebfiubiu.json b/domains/tfuifebfiubiu.json new file mode 100644 index 000000000..7f8c47487 --- /dev/null +++ b/domains/tfuifebfiubiu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Aether1777", + "email": "bkevin39415@gmail.com" + }, + "record": { + "CNAME": "border.hop.io" + } +} diff --git a/domains/thabanii.json b/domains/thabanii.json new file mode 100644 index 000000000..fb2c4e8d4 --- /dev/null +++ b/domains/thabanii.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Z3R0SEC", + "email": "famkeed11@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/thabresh.json b/domains/thabresh.json new file mode 100644 index 000000000..d6e6216ca --- /dev/null +++ b/domains/thabresh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Thabresh", + "email": "thabaresh.syed@gmail.com" + }, + "record": { + "URL": "https://www.thabresh.me" + } +} diff --git a/domains/thai.json b/domains/thai.json new file mode 100644 index 000000000..dc16256d5 --- /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..b89ff73d0 --- /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..332bdc0f0 --- /dev/null +++ b/domains/thaihung.json @@ -0,0 +1,15 @@ +{ + "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..0c9999f30 --- /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 new file mode 100644 index 000000000..65b1b62e4 --- /dev/null +++ b/domains/thamizh.json @@ -0,0 +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" + } +} diff --git a/domains/thanawat.json b/domains/thanawat.json new file mode 100644 index 000000000..22df0c55d --- /dev/null +++ b/domains/thanawat.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Thanawatttt", + "email": "tanawattawillha@gmail.com", + "discord": "803249368533696512" + }, + + "record": { + "CNAME": "thanawatttt.github.io" + } + } + \ No newline at end of file diff --git a/domains/thanbv1510.json b/domains/thanbv1510.json index 3a8f8dc7b..2923ce121 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/tharindu.json b/domains/tharindu.json index 715d21f7c..d167a522f 100644 --- a/domains/tharindu.json +++ b/domains/tharindu.json @@ -1,11 +1,11 @@ { - "description": "Tharindu's personal developer website", - "repo": "https://github.com/tharindusathis/tharindusathis.github.io", - "owner": { - "username": "tharindusathis", - "email": "tharindu.sathis@gmail.com" - }, - "record": { - "CNAME": "tharindusathis.github.io" - } + "description": "Tharindu's personal developer website", + "repo": "https://github.com/tharindusathis/tharindusathis.github.io", + "owner": { + "username": "tharindusathis", + "email": "tharindu.sathis@gmail.com" + }, + "record": { + "CNAME": "tharindusathis.github.io" + } } diff --git a/domains/tharindudarshana.json b/domains/tharindudarshana.json new file mode 100644 index 000000000..d5f51b3d5 --- /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 new file mode 100644 index 000000000..2e6cfc362 --- /dev/null +++ b/domains/tharinduj.json @@ -0,0 +1,9 @@ +{ + "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..24a944965 --- /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/that.json b/domains/that.json new file mode 100644 index 000000000..4a3a18d93 --- /dev/null +++ b/domains/that.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "lsy1998", + "email": "1945934866@qq.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/thatbigderp.json b/domains/thatbigderp.json new file mode 100644 index 000000000..bdd114408 --- /dev/null +++ b/domains/thatbigderp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "StuwpidPerson", + "email": "darkhacker8604@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/thatkoslz.json b/domains/thatkoslz.json new file mode 100644 index 000000000..ad0daa5ca --- /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/the.catboy.json b/domains/the.catboy.json new file mode 100644 index 000000000..2e1941329 --- /dev/null +++ b/domains/the.catboy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SlycIsACatboy", + "email": "noahhz942@gmail.com" + }, + "record": { + "A": ["137.184.119.127"] + } +} diff --git a/domains/theamazing0.json b/domains/theamazing0.json new file mode 100644 index 000000000..0351d4756 --- /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..5e60bd599 --- /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/theawesomekid.json b/domains/theawesomekid.json new file mode 100644 index 000000000..f532084a1 --- /dev/null +++ b/domains/theawesomekid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheAwesomeKid02", + "email": "krishnakaushik.panyala@gmail.com" + }, + "record": { + "URL": "https://a122df89-2971-443d-b431-ba0b2432b6c8-00-nndor8zyo5ae.global.replit.dev/" + } +} diff --git a/domains/thebestdeveloper.json b/domains/thebestdeveloper.json new file mode 100644 index 000000000..36725c211 --- /dev/null +++ b/domains/thebestdeveloper.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "notthebestdev", + "email": "thebestdeveloper@outlook.fr" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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 d1d9b37ec..2a46f76c5 100644 --- a/domains/thecode-breaker.json +++ b/domains/thecode-breaker.json @@ -1,11 +1,11 @@ { - "description": "Link for Adarsh's personal site on GitHub pages", - "repo": "https://github.com/theCode-Breaker/theCode-Breaker.github.io/", - "owner": { - "username": "theCode-Breaker", - "email": "limit6@protonmail.com" - }, - "record": { - "CNAME": "thecode-breaker.github.io" - } + "description": "Link for Adarsh's personal site on GitHub pages", + "repo": "https://github.com/theCode-Breaker/theCode-Breaker.github.io", + "owner": { + "username": "theCode-Breaker", + "email": "theCodeBreaker.dev@gmail.com" + }, + "record": { + "CNAME": "thecode-breaker.github.io" + } } diff --git a/domains/theconcepteur.json b/domains/theconcepteur.json index 43c211696..ad1a8d935 100644 --- a/domains/theconcepteur.json +++ b/domains/theconcepteur.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "th3conc3pt3ur", "email": "conceptordev@gmail.com" - }, + }, - "record": { + "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/thedeveloper03.json b/domains/thedeveloper03.json new file mode 100644 index 000000000..918d4b3f5 --- /dev/null +++ b/domains/thedeveloper03.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thedeveloper03", + "email": "trishtrix01@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/thedivided.json b/domains/thedivided.json new file mode 100644 index 000000000..4c2608f70 --- /dev/null +++ b/domains/thedivided.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "soviet783", + "email": "logannorman2005@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/thedt.json b/domains/thedt.json new file mode 100644 index 000000000..5177079fc --- /dev/null +++ b/domains/thedt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thedtvn", + "email": "duongtuan30306@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/thegloriousduck.json b/domains/thegloriousduck.json index 6cb2a9f3b..ad21d0e14 100644 --- a/domains/thegloriousduck.json +++ b/domains/thegloriousduck.json @@ -1,11 +1,11 @@ { - "description": "TheGloriousDuck's personal developer website", - "repo": "https://github.com/TheGloriousDuck/thegloriousduck.github.io", - "owner": { - "username": "TheGloriousDuck", - "email": "thegloriousduck@protonmail.com" - }, - "record": { - "CNAME": "thegloriousduck.github.io" - } + "description": "TheGloriousDuck's personal developer website", + "repo": "https://github.com/TheGloriousDuck/thegloriousduck.github.io", + "owner": { + "username": "TheGloriousDuck", + "email": "thegloriousduck@protonmail.com" + }, + "record": { + "CNAME": "thegloriousduck.github.io" + } } 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..c97024a4d 100644 --- a/domains/thehackerdude1083.json +++ b/domains/thehackerdude1083.json @@ -8,4 +8,4 @@ "record": { "CNAME": "TheHackerDude1083.github.io" } -} +} diff --git a/domains/thehuytong.json b/domains/thehuytong.json new file mode 100644 index 000000000..1d617a615 --- /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/thejus-m.json b/domains/thejus-m.json index dc98660f8..9757db1f7 100644 --- a/domains/thejus-m.json +++ b/domains/thejus-m.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Thejus-M", - "email": "github@tigerraw22.anonaddy.com" - }, - "record": { - "CNAME": "urlit-production.up.railway.app" - } + "owner": { + "username": "Thejus-M", + "email": "github@tigerraw22.anonaddy.com" + }, + "record": { + "CNAME": "urlit-production.up.railway.app" + } } diff --git a/domains/themagicmush.json b/domains/themagicmush.json new file mode 100644 index 000000000..2cd594052 --- /dev/null +++ b/domains/themagicmush.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Kobe523", + "email": "kobeni523@gmail.com", + "discord": "TheMagicMushoom#9999" + }, + "record": { + "URL": "https://its.themagicmush.repl.co" + } +} diff --git a/domains/thembo.json b/domains/thembo.json new file mode 100644 index 000000000..77ccd712a --- /dev/null +++ b/domains/thembo.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "jona42-ui", + "email": "jonathanthembo123@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/thepersonalsite.json b/domains/thepersonalsite.json new file mode 100644 index 000000000..94dde6b07 --- /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/thequackyduck.json b/domains/thequackyduck.json index d483c0df8..fcc90af1a 100644 --- a/domains/thequackyduck.json +++ b/domains/thequackyduck.json @@ -1,11 +1,11 @@ { - "description": "my portfolio", - "repo": "https://github.com/thequackyduck/thequackyduck.github.io", - "owner": { - "username": "thequackyduck", - "email": "zcodezt@gmail.com" - }, - "record": { - "CNAME": "thequackyduck.github.io" - } + "description": "my portfolio", + "repo": "https://github.com/thequackyduck/thequackyduck.github.io", + "owner": { + "username": "thequackyduck", + "email": "zcodezt@gmail.com" + }, + "record": { + "CNAME": "thequackyduck.github.io" + } } diff --git a/domains/therealgeodash.json b/domains/therealgeodash.json new file mode 100644 index 000000000..66f351656 --- /dev/null +++ b/domains/therealgeodash.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheRealGeoDash2019", + "email": "therealgeodash@lhost.dev", + "discord": "710268763844640839" + }, + "record": { + "CNAME": "lhost.dev" + } +} diff --git a/domains/theresonance.json b/domains/theresonance.json new file mode 100644 index 000000000..88e97a685 --- /dev/null +++ b/domains/theresonance.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Maia313", + "email": "medeea@rocketmail.com" + }, + "record": { + "CNAME": "theresonance.com" + } +} diff --git a/domains/therookiecoder.json b/domains/therookiecoder.json index 3dec24550..8c1eed507 100644 --- a/domains/therookiecoder.json +++ b/domains/therookiecoder.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "theRookieCoder", - "email": "ileshkt@gmail.com", - "discord": "theRookieCoder#1287" - }, - "record": { - "URL": "https://github.com/theRookieCoder" - } + "owner": { + "username": "theRookieCoder", + "email": "ileshkt@gmail.com", + "discord": "theRookieCoder#1287" + }, + "record": { + "URL": "https://github.com/theRookieCoder" + } } diff --git a/domains/thesanju.json b/domains/thesanju.json new file mode 100644 index 000000000..cceee6cec --- /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/theschoology.json b/domains/theschoology.json new file mode 100644 index 000000000..85d9aa22c --- /dev/null +++ b/domains/theschoology.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ShriniGenie", + "email": "shrini23@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/thesct22.json b/domains/thesct22.json index 8e8f03109..902888a4c 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" - } + "owner": { + "username": "thesct22", + "email": "sharathct22@gmail.com" + }, + "record": { + "CNAME": "thesct22.github.io" + } } diff --git a/domains/thesonofdevilhunter.json b/domains/thesonofdevilhunter.json new file mode 100644 index 000000000..3f2a9cf77 --- /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..bbeb29ec4 --- /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..de4ee7c07 100644 --- a/domains/thet3o.json +++ b/domains/thet3o.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "thet3o", "email": "thet3o@yahoo.com" - }, + }, - "record": { + "record": { "MX": ["mx.mailtie.com"] - } } - \ No newline at end of file +} diff --git a/domains/thetechguy.json b/domains/thetechguy.json new file mode 100644 index 000000000..f86679f21 --- /dev/null +++ b/domains/thetechguy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Spilleparadis", + "email": "playerwictor@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/thetechnikfreak.json b/domains/thetechnikfreak.json new file mode 100644 index 000000000..df2f4e4b7 --- /dev/null +++ b/domains/thetechnikfreak.json @@ -0,0 +1,11 @@ +{ + "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/thewickedkarma.json b/domains/thewickedkarma.json index 1ce2d2db2..8393fda7a 100644 --- a/domains/thewickedkarma.json +++ b/domains/thewickedkarma.json @@ -1,11 +1,11 @@ { - "description": "thewickedkarma's portfolio", - "repo": "https://github.com/thewickedkarma/thewickedkarma.github.io", - "owner": { - "username": "thewickedkarma", - "email": "thewickedkarma@gmail.com" - }, - "record": { - "CNAME": "thewickedkarma.github.io" - } + "description": "thewickedkarma's portfolio", + "repo": "https://github.com/thewickedkarma/thewickedkarma.github.io", + "owner": { + "username": "thewickedkarma", + "email": "thewickedkarma@gmail.com" + }, + "record": { + "CNAME": "thewickedkarma.github.io" + } } diff --git a/domains/thiago.json b/domains/thiago.json new file mode 100644 index 000000000..a9f469179 --- /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..676c660e8 --- /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/thiomains.json b/domains/thiomains.json new file mode 100644 index 000000000..1cd7b19c7 --- /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.json b/domains/this.json index 92d391c02..789c1a31f 100644 --- a/domains/this.json +++ b/domains/this.json @@ -1,11 +1,11 @@ { - "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." + "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/thisarasd.json b/domains/thisarasd.json new file mode 100644 index 000000000..c15ba9e3b --- /dev/null +++ b/domains/thisarasd.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ThisaraS97", + "email": "wgt.shaminda@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/thisiskeanyvy.json b/domains/thisiskeanyvy.json new file mode 100644 index 000000000..339cf0e0e --- /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/thisqoutedoesntexist.json b/domains/thisqoutedoesntexist.json new file mode 100644 index 000000000..a7d7f03da --- /dev/null +++ b/domains/thisqoutedoesntexist.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zirmith", + "email": "f2v74yt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/thomas-shelby.json b/domains/thomas-shelby.json index 7e57baaff..5df0062b1 100644 --- a/domains/thomas-shelby.json +++ b/domains/thomas-shelby.json @@ -1,12 +1,12 @@ { - "description": "Portfolio", - "repo": "https://github.com/prbhanu/prbhanu.github.io", - "owner": { - "username": "prbhanu", - "email": "prbhanu1718@gmil.com", - "twitter": "@prreddy05413731" - }, - "record": { - "CNAME": "prbhanu.github.io" - } + "description": "Portfolio", + "repo": "https://github.com/prbhanu/prbhanu.github.io", + "owner": { + "username": "prbhanu", + "email": "prbhanu1718@gmil.com", + "twitter": "prreddy05413731" + }, + "record": { + "CNAME": "prbhanu.github.io" + } } diff --git a/domains/thomas.json b/domains/thomas.json index 28cefa250..559ac1136 100644 --- a/domains/thomas.json +++ b/domains/thomas.json @@ -1,12 +1,12 @@ { - "description": "My personal portfolio as a programming language designer and developer.", - "repo": "https://github.com/thomasvergne/thomasvergne.github.io", - "owner": { - "username": "thomasvergne", - "email": "thomas.vergne.contact@gmail.com", - "twitter": "thomasvergne_" - }, - "record": { - "CNAME": "thomasvergne.github.io" - } + "description": "My personal portfolio as a programming language designer and developer.", + "repo": "https://github.com/thomasvergne/thomasvergne.github.io", + "owner": { + "username": "thomasvergne", + "email": "thomas.vergne.contact@gmail.com", + "twitter": "thomasvergne_" + }, + "record": { + "CNAME": "thomasvergne.github.io" + } } diff --git a/domains/thomasc.json b/domains/thomasc.json index 0ad0adbd4..e318a9512 100644 --- a/domains/thomasc.json +++ b/domains/thomasc.json @@ -2,10 +2,10 @@ "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" + "username": "thomascf", + "email": "thomas.croft@pm.me" }, "record": { - "CNAME": "thomascf.github.io" + "CNAME": "thomascf.github.io" } - } \ No newline at end of file +} diff --git a/domains/thordevs.json b/domains/thordevs.json new file mode 100644 index 000000000..88b2f462d --- /dev/null +++ b/domains/thordevs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "musu10gj", + "email": "samzagamer4@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/thorgathis.json b/domains/thorgathis.json index 4680880de..00334985a 100644 --- a/domains/thorgathis.json +++ b/domains/thorgathis.json @@ -1,11 +1,11 @@ { - "description": "Thorgathis website", - "repo": "https://github.com/Thorgathis/thorgathis.github.io", - "owner": { - "username": "Thorgathis", - "email": "thorgathis.dev@gmail.com" - }, - "record": { - "CNAME": "thorgathis.github.io" - } + "description": "Thorgathis website", + "repo": "https://github.com/Thorgathis/thorgathis.github.io", + "owner": { + "username": "Thorgathis", + "email": "thorgathis.dev@gmail.com" + }, + "record": { + "CNAME": "thorgathis.github.io" + } } diff --git a/domains/thund3r.json b/domains/thund3r.json new file mode 100644 index 000000000..f864f321d --- /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/thunder.json b/domains/thunder.json new file mode 100644 index 000000000..927842784 --- /dev/null +++ b/domains/thunder.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thunderarch", + "email": "thunderarch77@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tiantcl.json b/domains/tiantcl.json index 9c66dd642..7a38e0a7e 100644 --- a/domains/tiantcl.json +++ b/domains/tiantcl.json @@ -1,11 +1,11 @@ -{ - "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 +{ + "description": "TianTcl's profile", + "repo": "https://github.com/TianTcl/TianTcl", + "owner": { + "username": "TianTcl", + "email": "tclwebguest@gmail.com" + }, + "record": { + "CNAME": "info.tiantcl.net" + } +} diff --git a/domains/tibebe.json b/domains/tibebe.json index 87a1843e2..ebe566d42 100644 --- a/domains/tibebe.json +++ b/domains/tibebe.json @@ -1,11 +1,11 @@ { - "description": "Tibebe is a dev", - "repo": "https://github.com/TibebeJS/tibebejs.github.io", - "owner": { - "username": "TibebeJs", - "email": "tibebes.js@gmail.com" - }, - "record": { - "CNAME": "tibebejs.github.io" - } + "description": "Tibebe is a dev", + "repo": "https://github.com/TibebeJS/tibebejs.github.io", + "owner": { + "username": "TibebeJs", + "email": "tibebes.js@gmail.com" + }, + "record": { + "CNAME": "tibebejs.github.io" + } } diff --git a/domains/tibor.json b/domains/tibor.json new file mode 100644 index 000000000..d07b958a5 --- /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" + } +} \ No newline at end of file diff --git a/domains/tien.json b/domains/tien.json new file mode 100644 index 000000000..f0cfc7687 --- /dev/null +++ b/domains/tien.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "t6c", + "email": "tien2309n@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tientiny.json b/domains/tientiny.json new file mode 100644 index 000000000..826e69b2b --- /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/tiger15cub.json b/domains/tiger15cub.json new file mode 100644 index 000000000..d155e02e7 --- /dev/null +++ b/domains/tiger15cub.json @@ -0,0 +1,10 @@ +{ + "description": "Tiger15cub.is-a.dev", + "owner": { + "username": "katopiler", + "email": "peterderbyshire11@gmail.com" + }, + "record": { + "CNAME": "strxfhcpoliykgujnhfrdthcgv0pkiyhugjh5rtf.duckdns.org" + } +} 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/tilak.json b/domains/tilak.json index f3b8ca7f6..08b2b23f7 100644 --- a/domains/tilak.json +++ b/domains/tilak.json @@ -1,11 +1,11 @@ { - "description": "Tilak's personal developer website", - "repo": "https://github.com/Perry-xD/Perry-xD.github.io", - "owner": { - "username": "Perry-xD", - "email": "heyahelloji@gmail.com" - }, - "record": { - "CNAME": "Perry-xD.github.io" - } + "description": "Tilak's personal developer website", + "repo": "https://github.com/Perry-xD/Perry-xD.github.io", + "owner": { + "username": "Perry-xD", + "email": "heyahelloji@gmail.com" + }, + "record": { + "CNAME": "Perry-xD.github.io" + } } diff --git a/domains/tim.json b/domains/tim.json index a0eb45dbb..b1f0389c1 100644 --- a/domains/tim.json +++ b/domains/tim.json @@ -1,11 +1,11 @@ { - "description": "Tim is a Dev", - "owner": { - "username": "xorob0", - "email": "xorob0@toum" - }, - "repo": "https://github.com/xorob0/register", - "record": { - "CNAME": "toum.me" - } + "description": "Tim is a Dev", + "owner": { + "username": "xorob0", + "email": "xorob0@toum" + }, + "repo": "https://github.com/xorob0/register", + "record": { + "CNAME": "toum.me" + } } diff --git a/domains/tim232.json b/domains/tim232.json index fc72b8840..df7d13527 100644 --- a/domains/tim232.json +++ b/domains/tim232.json @@ -1,12 +1,12 @@ { - "description": "A Site for Me", - "repo": "https://github.com/EndBot4023/endbot4023.github.io", - "owner": { - "username": "endbot4023", - "email": "endbot4023@gmail.com", - "twitter": "joonseongi" - }, - "record": { - "CNAME": "endbot4023.github.io" - } + "description": "A Site for Me", + "repo": "https://github.com/EndBot4023/endbot4023.github.io", + "owner": { + "username": "endbot4023", + "email": "endbot4023@gmail.com", + "twitter": "joonseongi" + }, + "record": { + "CNAME": "endbot4023.github.io" + } } diff --git a/domains/time.json b/domains/time.json new file mode 100644 index 000000000..f268a50e5 --- /dev/null +++ b/domains/time.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CcNicebruh", + "email": "tangkeehee2002@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/timemee.json b/domains/timemee.json new file mode 100644 index 000000000..15965a70b --- /dev/null +++ b/domains/timemee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CcNicebruh", + "email": "tangkeehee2002@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=timemee.is-a.dev,f0ccde0675ebc15ec99f" + } +} 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..d4b3b6dba --- /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..b458b27ea --- /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 new file mode 100644 index 000000000..12839d439 --- /dev/null +++ b/domains/timotheelefebvre.json @@ -0,0 +1,9 @@ +{ + "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..59219670b 100644 --- a/domains/timothynn.json +++ b/domains/timothynn.json @@ -3,11 +3,10 @@ "repo": "https://github.com/timothynn/timothynn.github.io", "owner": { "username": "timothynn", - "email": "timothynn@gmail.com", - "twitter": "im4_tim" + "email": "timothynn08@gmail.com", + "twitter": "timothynn_" }, "record": { "CNAME": "timothynn.github.io" } -} - +} diff --git a/domains/tin.json b/domains/tin.json new file mode 100644 index 000000000..9a82e27e8 --- /dev/null +++ b/domains/tin.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "itsmetin", + "email": "marmeladenjunge+2nd@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tinergy.json b/domains/tinergy.json new file mode 100644 index 000000000..eecce6108 --- /dev/null +++ b/domains/tinergy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Tinergy", + "email": "goh_z@live.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tinny.json b/domains/tinny.json new file mode 100644 index 000000000..9543b6a02 --- /dev/null +++ b/domains/tinny.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TinnyTerr", + "email": "lewis.j.mcdonald@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..96d7f8773 --- /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/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/tm-incognito.json b/domains/tm-incognito.json new file mode 100644 index 000000000..92e3e60bb --- /dev/null +++ b/domains/tm-incognito.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jumbochipkali", + "email": "jumbokalied@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all", + "MX": ["hosts.is-a.dev"] + } +} diff --git a/domains/tm-math.json b/domains/tm-math.json new file mode 100644 index 000000000..b0787c686 --- /dev/null +++ b/domains/tm-math.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hilausfbrdhiiuhsdfh", + "email": "timedoutbusiness@gmail.com" + }, + "record": { + "URL": "https://timed-out-math.hop.sh/" + } +} diff --git a/domains/tmozki.json b/domains/tmozki.json new file mode 100644 index 000000000..168b1cca2 --- /dev/null +++ b/domains/tmozki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Tomozki", + "email": "Tomozki@animekun.in" + }, + "record": { + "URL": "https://github.com/Tomozki" + } +} diff --git a/domains/tnt.json b/domains/tnt.json new file mode 100644 index 000000000..69feaf87a --- /dev/null +++ b/domains/tnt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SebTNT", + "email": "turquoisetntmultimedia@gmail.com" + }, + "record": { + "CNAME": "turquoisetnt.github.io" + } +} diff --git a/domains/toan.json b/domains/toan.json index bf17a4427..ae1e98664 100644 --- a/domains/toan.json +++ b/domains/toan.json @@ -1,11 +1,10 @@ { - "description": "Hashnode Blog", - "repo": "https://github.com/ductoanvo", - "owner": { - "username": "ductoanvo", - "email": "toan@duck.com" - }, - "record": { - "CNAME": "hashnode.network" - } + "owner": { + "username": "toanducvo", + "email": "toan.ducvo@icloud.com" + }, + + "record": { + "CNAME": "hashnode.network" + } } diff --git a/domains/toasta.json b/domains/toasta.json new file mode 100644 index 000000000..9713c6420 --- /dev/null +++ b/domains/toasta.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thetoasta", + "email": "nolanp678@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/toasted.json b/domains/toasted.json new file mode 100644 index 000000000..ddf8e8eb1 --- /dev/null +++ b/domains/toasted.json @@ -0,0 +1,13 @@ +{ + "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..b1550309f --- /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..b576bd004 --- /dev/null +++ b/domains/tobez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TobezDev", + "email": "therealtobes28@gmail.com" + }, + + "record": { + "URL": "https://tobez.dev" + } +} 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/tokyo.json b/domains/tokyo.json index 08c5b8be1..dbaeb9217 100644 --- a/domains/tokyo.json +++ b/domains/tokyo.json @@ -1,11 +1,11 @@ { - "description": "A-Tokyo's website", - "repo": "https://github.com/a-tokyo/tokyo", - "owner": { - "username": "a-tokyo", - "email": "ahmed.tokyo1@gmail.com" - }, - "record": { - "CNAME": "a-tokyo.github.io" - } + "description": "A-Tokyo's website", + "repo": "https://github.com/a-tokyo/tokyo", + "owner": { + "username": "a-tokyo", + "email": "ahmed.tokyo1@gmail.com" + }, + "record": { + "CNAME": "a-tokyo.github.io" + } } 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/tom.json b/domains/tom.json index f97d865bb..e42658bad 100644 --- a/domains/tom.json +++ b/domains/tom.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "tommitchelmore", - "email": "tommitchelmore@outlook.com" - }, - "repo": "https://github.com/tommitchelmore", - "record": { - "URL": "https://github.com/tommitchelmore" - } + "owner": { + "username": "tommitchelmore", + "email": "tommitchelmore@outlook.com" + }, + "repo": "https://github.com/tommitchelmore", + "record": { + "URL": "https://github.com/tommitchelmore" + } } diff --git a/domains/tomas.json b/domains/tomas.json index 5dd6caeb0..3e20b90fc 100644 --- a/domains/tomas.json +++ b/domains/tomas.json @@ -1,10 +1,10 @@ { - "description": "Tomas's personal developer website", - "owner": { - "username": "Tomas Ukrinas", - "email": "tomas@ukrinas.eu" - }, - "record": { - "CNAME": "ukrinas.eu" - } + "description": "Tomas's personal developer website", + "owner": { + "username": "Tomaas0", + "email": "tomas@ukrinas.eu" + }, + "record": { + "CNAME": "ukrinas.eu" + } } diff --git a/domains/tomcollis.json b/domains/tomcollis.json index 1687a82ce..a79eeb1be 100644 --- a/domains/tomcollis.json +++ b/domains/tomcollis.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "tomcollis", "email": "tomuky2k@msn.com" - }, + }, - "record": { + "record": { "URL": "https://github.com/tomcollis" - } } - \ No newline at end of file +} diff --git a/domains/tomgxz.json b/domains/tomgxz.json new file mode 100644 index 000000000..36a879fcf --- /dev/null +++ b/domains/tomgxz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Tomgxz", + "email": "tomgxz138@gmail.com" + }, + "record": { + "CNAME": "cv3cgzx7.up.railway.app" + } +} diff --git a/domains/tommyboucher.json b/domains/tommyboucher.json new file mode 100644 index 000000000..5ab85e067 --- /dev/null +++ b/domains/tommyboucher.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bouchertommy", + "email": "hello@tommyboucher.com" + }, + "record": { + "CNAME": "tommyboucher.com" + } +} diff --git a/domains/tomokat.json b/domains/tomokat.json new file mode 100644 index 000000000..3b94da13b --- /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/tomteck.json b/domains/tomteck.json new file mode 100644 index 000000000..18b33e256 --- /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..481e507f9 100644 --- a/domains/tong.json +++ b/domains/tong.json @@ -2,10 +2,10 @@ "description": "Tong's website", "repo": "https://github.com/away0x/away0x", "owner": { - "username": "tongwu", - "email": "away0x@gmail.com" + "username": "tongwu", + "email": "away0x@gmail.com" }, "record": { - "CNAME": "away0x.github.io" + "CNAME": "away0x.github.io" } - } \ No newline at end of file +} 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/tonywu.json b/domains/tonywu.json index 3e8b6eafe..b1651f71d 100644 --- a/domains/tonywu.json +++ b/domains/tonywu.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "vuquangthinh", - "email": "quangthinh.dev@gmail.com" - }, - "record": { - "CNAME": "vuquangthinh.github.io" - } + "owner": { + "username": "vuquangthinh", + "email": "quangthinh.dev@gmail.com" + }, + "record": { + "CNAME": "vuquangthinh.github.io" + } } diff --git a/domains/too-obvious-that.maskduck.json b/domains/too-obvious-that.maskduck.json index 9d6673904..6087a72da 100644 --- a/domains/too-obvious-that.maskduck.json +++ b/domains/too-obvious-that.maskduck.json @@ -1,14 +1,14 @@ { - "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": { - "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "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": { + "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..271cae80e --- /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/topher.json b/domains/topher.json new file mode 100644 index 000000000..59e3a9d24 --- /dev/null +++ b/domains/topher.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "christopherwk210", + "email": "christopherwk210@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tosh.json b/domains/tosh.json new file mode 100644 index 000000000..8d03715b1 --- /dev/null +++ b/domains/tosh.json @@ -0,0 +1,13 @@ +{ + "owner": { + "description": "Portifolio Website", + "repo": "https://github.com/shellcodegroup/antony_bahati_portfolio", + "username": "shellcodegroup", + "email": "shellcodegroup@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/toster.json b/domains/toster.json index c8b4f3c38..f3a2912f5 100644 --- a/domains/toster.json +++ b/domains/toster.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Rafau04", - "email": "matiz.rafal@gmail.com" - }, - "record": { - "CNAME": "Rafau04.github.io" - } + "owner": { + "username": "Rafau04", + "email": "matiz.rafal@gmail.com" + }, + "record": { + "CNAME": "Rafau04.github.io" + } } diff --git a/domains/toto.json b/domains/toto.json new file mode 100644 index 000000000..711f123a5 --- /dev/null +++ b/domains/toto.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "E8D08F", + "email": "the@unpopular.me" + }, + + "record": { + "CNAME": "chunghwa.asia" + } +} 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/toxocious.json b/domains/toxocious.json index e18748c91..d0b8be6ad 100644 --- a/domains/toxocious.json +++ b/domains/toxocious.json @@ -1,12 +1,12 @@ { - "description": "Setting up a repository as a blog and portfolio, and would love to use this as a domain.", - "repo": "https://github.com/toxocious/toxocious.github.io", - "owner": { - "username": "toxocious", - "email": "toxocious@gmail.com", - "discord": "Jess#5596" - }, - "record": { - "CNAME": "toxocious.github.io" - } + "description": "Setting up a repository as a blog and portfolio, and would love to use this as a domain.", + "repo": "https://github.com/toxocious/toxocious.github.io", + "owner": { + "username": "toxocious", + "email": "toxocious@gmail.com", + "discord": "Jess#5596" + }, + "record": { + "CNAME": "toxocious.github.io" + } } diff --git a/domains/tpglitch.json b/domains/tpglitch.json new file mode 100644 index 000000000..c00ed4f67 --- /dev/null +++ b/domains/tpglitch.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tpglitch", + "email": "tylerkinney50@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tpke.json b/domains/tpke.json new file mode 100644 index 000000000..a3ef4ebbe --- /dev/null +++ b/domains/tpke.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ZeroRatedTM", + "email": "zeroratedtm@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tr1x.json b/domains/tr1x.json new file mode 100644 index 000000000..25f622268 --- /dev/null +++ b/domains/tr1x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tr1xem", + "email": "kmtechnical2006@gmail.com" + }, + "record": { + "CNAME": "lawliet.tk" + } +} diff --git a/domains/tr1xem.json b/domains/tr1xem.json new file mode 100644 index 000000000..b7a0c8ce8 --- /dev/null +++ b/domains/tr1xem.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "tr1xem", + "email": "kmtechnical2006@gmail.com", + "discord": "885063317079592961" + }, + + "record": { + "CNAME": "lawliet.tk" + } + } + diff --git a/domains/tr5kyradio.json b/domains/tr5kyradio.json new file mode 100644 index 000000000..cd9b4265c --- /dev/null +++ b/domains/tr5kyradio.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "troit5ky", + "email": "testeron211@gmail.com" + }, + "record": { + "A": ["23.88.10.1"] + } +} 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.sonet.json b/domains/tracking.sonet.json new file mode 100644 index 000000000..a44260ae1 --- /dev/null +++ b/domains/tracking.sonet.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CoderSoNet", + "email": "support@sonet.is-a.dev", + "twitter": "ShanuUniyal_On", + "discord": "781127625263415326" + }, + "record": { + "CNAME": "api.elasticemail.com" + } +} diff --git a/domains/trailblazertech.json b/domains/trailblazertech.json new file mode 100644 index 000000000..deff46931 --- /dev/null +++ b/domains/trailblazertech.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "trailblazie", + "email": "trailblazire@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tranthanhlong.json b/domains/tranthanhlong.json new file mode 100644 index 000000000..555b4834a --- /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/trasadiyasmeet.json b/domains/trasadiyasmeet.json new file mode 100644 index 000000000..a0acc45e8 --- /dev/null +++ b/domains/trasadiyasmeet.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "psmeet190902", + "email": "21bph115@nirmauni.ac.in" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/trauma.json b/domains/trauma.json index a9eeb9282..1ef600d4b 100644 --- a/domains/trauma.json +++ b/domains/trauma.json @@ -1,12 +1,12 @@ { - "description": "Well, this is my github sub-domain for my future page", - "repo": "https://github.com/iitrauma/iitrauma.github.io", - "owner": { - "username": "iiTrauma", - "email": "ignacio@asia.com", - "twitter": "q1a67" - }, - "record": { - "CNAME": "iitrauma.github.io" - } + "description": "Well, this is my github sub-domain for my future page", + "repo": "https://github.com/iitrauma/iitrauma.github.io", + "owner": { + "username": "iiTrauma", + "email": "ignacio@asia.com", + "twitter": "q1a67" + }, + "record": { + "CNAME": "iitrauma.github.io" + } } diff --git a/domains/tricked.json b/domains/tricked.json index 4197bb309..226d0858c 100644 --- a/domains/tricked.json +++ b/domains/tricked.json @@ -1,11 +1,11 @@ { - "description": "Tricked is a Dev", - "repo": "https://github.com/SkyBlockDev/skyblockdev.github.io", - "owner": { - "username": "skyblockdev", - "email": "trickedcodes@tutanota.com" - }, - "record": { - "URL": "https://tricked.netlify.app" - } + "description": "Tricked is a Dev", + "repo": "https://github.com/SkyBlockDev/skyblockdev.github.io", + "owner": { + "username": "skyblockdev", + "email": "trickedcodes@tutanota.com" + }, + "record": { + "URL": "https://tricked.netlify.app" + } } diff --git a/domains/trio.json b/domains/trio.json new file mode 100644 index 000000000..cf7a34106 --- /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/tristan.json b/domains/tristan.json index 44416c51b..76caf34c7 100644 --- a/domains/tristan.json +++ b/domains/tristan.json @@ -1,11 +1,11 @@ { - "description": "Tristans personal Website", - "repo": "https://github.com/holymarcell", - "owner": { - "username": "holymarcell", - "email": "is-a.dev@holy-mail.de" - }, - "record": { - "URL": "https://holy-mail.de" - } + "description": "Tristans personal Website", + "repo": "https://github.com/holymarcell", + "owner": { + "username": "holymarcell", + "email": "is-a.dev@holy-mail.de" + }, + "record": { + "URL": "https://holy-mail.de" + } } diff --git a/domains/triyatna.json b/domains/triyatna.json new file mode 100644 index 000000000..9237f0162 --- /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/trueuser.json b/domains/trueuser.json new file mode 100644 index 000000000..444383d61 --- /dev/null +++ b/domains/trueuser.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "istrueuser", + "email": "thisistrueemail@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/trug.json b/domains/trug.json index 3b308c600..91ce12c59 100644 --- a/domains/trug.json +++ b/domains/trug.json @@ -1,11 +1,11 @@ { - "description": "Hello", - "repo": "https://github.com/vietrux/main", - "owner": { - "username": "vietrux", - "email": "leviettrung.social@gmail.com" - }, - "record": { - "CNAME": "vietrux.github.io" - } + "description": "Hello", + "repo": "https://github.com/vietrux/main", + "owner": { + "username": "vietrux", + "email": "leviettrung.social@gmail.com" + }, + "record": { + "CNAME": "vietrux.github.io" + } } diff --git a/domains/trung.json b/domains/trung.json new file mode 100644 index 000000000..fd93ed512 --- /dev/null +++ b/domains/trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "CNAME": "dev-website-emr.pages.dev" + } +} diff --git a/domains/trvs.json b/domains/trvs.json new file mode 100644 index 000000000..d1cdd9b8b --- /dev/null +++ b/domains/trvs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "traviebb", + "email": "trvsmusicofficial@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/trvsmusic.json b/domains/trvsmusic.json new file mode 100644 index 000000000..d1cdd9b8b --- /dev/null +++ b/domains/trvsmusic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "traviebb", + "email": "trvsmusicofficial@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/trypt.json b/domains/trypt.json new file mode 100644 index 000000000..c4ed967de --- /dev/null +++ b/domains/trypt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FractalH", + "email": "tryptamine@privacyrequired.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tsognyam.json b/domains/tsognyam.json new file mode 100644 index 000000000..d50fefaac --- /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/tsull360.json b/domains/tsull360.json index 8504bda7a..8aafa46be 100644 --- a/domains/tsull360.json +++ b/domains/tsull360.json @@ -1,11 +1,11 @@ { - "description": "Tim's personal website", - "repo": "https://github.com/tsull360/tsull360.github.io", - "owner": { - "username": "tsull360", - "email": "tsull360@outlook.com" - }, - "record": { - "CNAME": "tsull360.github.io" - } + "description": "Tim's personal website", + "repo": "https://github.com/tsull360/tsull360.github.io", + "owner": { + "username": "tsull360", + "email": "tsull360@outlook.com" + }, + "record": { + "CNAME": "tsull360.github.io" + } } diff --git a/domains/tudbut.json b/domains/tudbut.json new file mode 100644 index 000000000..55bcf1308 --- /dev/null +++ b/domains/tudbut.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TudbuT", + "email": "is-a-dev-public@mail.tudbut.de", + "discord": "TudbuT#2624" + }, + "record": { + "CNAME": "tudbut.de" + } +} diff --git a/domains/tukimi.json b/domains/tukimi.json index 8ccc1d738..1af1d1348 100644 --- a/domains/tukimi.json +++ b/domains/tukimi.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "kr-tukimi", - "email": "", - "twitter": "kr_tukimi" - }, - "record": { - "URL": "https://tuki.dev" - } + "owner": { + "username": "kr-tukimi", + "email": "", + "twitter": "kr_tukimi" + }, + "record": { + "URL": "https://tuki.dev" + } } diff --git a/domains/tungtran.json b/domains/tungtran.json index fb5eb2945..7338e06fb 100644 --- a/domains/tungtran.json +++ b/domains/tungtran.json @@ -1,12 +1,12 @@ { - "description": "tungtran's resume", - "repo": "https://github.com/tunganhtran/tunganhtran.github.io", - "owner": { - "username": "tunganhtran", - "email": "tunganhtran94@gmail.com" - }, + "description": "tungtran's resume", + "repo": "https://github.com/tunganhtran/tunganhtran.github.io", + "owner": { + "username": "tunganhtran", + "email": "tunganhtran94@gmail.com" + }, - "record": { - "CNAME": "tunganhtran.github.io" - } + "record": { + "CNAME": "tunganhtran.github.io" + } } diff --git a/domains/turtlecode.json b/domains/turtlecode.json new file mode 100644 index 000000000..fd93df6d0 --- /dev/null +++ b/domains/turtlecode.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TurtleCode84", + "email": "turtle@turtlecode.tech" + }, + "record": { + "URL": "https://turtlecode.tech" + } +} diff --git a/domains/turvenuija.json b/domains/turvenuija.json new file mode 100644 index 000000000..797332159 --- /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 new file mode 100644 index 000000000..2ec9954be --- /dev/null +++ b/domains/tushar.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tusharvikky", + "email": "tusharvikky@gmail.com" + }, + "record": { + "URL": "https://blog.tushardeo.com" + } +} diff --git a/domains/tushardeo.json b/domains/tushardeo.json new file mode 100644 index 000000000..2ec9954be --- /dev/null +++ b/domains/tushardeo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tusharvikky", + "email": "tusharvikky@gmail.com" + }, + "record": { + "URL": "https://blog.tushardeo.com" + } +} diff --git a/domains/tw.json b/domains/tw.json new file mode 100644 index 000000000..681643fd1 --- /dev/null +++ b/domains/tw.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tw31122007", + "email": "tw31122007@googlemail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/twisted.json b/domains/twisted.json new file mode 100644 index 000000000..93cad3dd5 --- /dev/null +++ b/domains/twisted.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TwistVibed", + "email": "gamerdragon971@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/tyler.json b/domains/tyler.json index a8477da18..033fcccd4 100644 --- a/domains/tyler.json +++ b/domains/tyler.json @@ -1,11 +1,14 @@ { - "description": "Tyler McCarthy is a Developer!", - "repo": "https://github.com/tmccarthyj", - "owner": { - "username": "tmccarthyj", - "email": "tyler@tjm.dev" - }, - "record": { - "CNAME": "tjm.dev" - } -} + "owner": { + "username": "G2C-DC", + "email": "tylercalumacker@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/tylerdotnet.json b/domains/tylerdotnet.json new file mode 100644 index 000000000..b2cb17900 --- /dev/null +++ b/domains/tylerdotnet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tylerdotnet", + "email": "tylerdotnet@gmail.com" + }, + "record": { + "CNAME": "tylerdotnet.github.io" + } +} diff --git a/domains/tylermwise.json b/domains/tylermwise.json new file mode 100644 index 000000000..d8fe934dd --- /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 new file mode 100644 index 000000000..25b3f0416 --- /dev/null +++ b/domains/typed.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TYP3D", + "email": "typedmod2@gmail.com" + }, + + "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..e82960492 --- /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/tzvika.json b/domains/tzvika.json new file mode 100644 index 000000000..bac8f8d45 --- /dev/null +++ b/domains/tzvika.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "tzvio", + "email": "tzvika.ofek@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/uberkey.json b/domains/uberkey.json new file mode 100644 index 000000000..a98db0e7c --- /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/udaya.json b/domains/udaya.json index 6234509f3..e20c7f5d1 100644 --- a/domains/udaya.json +++ b/domains/udaya.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "udaya28", - "email": "udaya28vivek31@gmail.com" - }, - "record": { - "URL": "https://mudaya.web.app/" - } + "owner": { + "username": "udaya28", + "email": "udaya28vivek31@gmail.com" + }, + "record": { + "URL": "https://mudaya.web.app" + } } diff --git a/domains/uiopler.json b/domains/uiopler.json new file mode 100644 index 000000000..ec6aa65be --- /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..084daf72d --- /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/ukirio.json b/domains/ukirio.json new file mode 100644 index 000000000..84fa55566 --- /dev/null +++ b/domains/ukirio.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ukrioo", + "email": "u8k50850@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/ukrio.json b/domains/ukrio.json new file mode 100644 index 000000000..92431fb1c --- /dev/null +++ b/domains/ukrio.json @@ -0,0 +1,27 @@ +{ + "owner": { + "username": "ukrioo", + "email": "u8k50850@gmail.com", + "discord": "ukrio", + "twitter": "@ukrio" + }, + "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", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ] + } +} diff --git a/domains/ultimatemedia.json b/domains/ultimatemedia.json index 4f1d287f0..dcb8c3df8 100644 --- a/domains/ultimatemedia.json +++ b/domains/ultimatemedia.json @@ -1,21 +1,13 @@ { - "description": "The Ultimate Media official website", - "repo": "https://github.com/ultimatemediaorg/ultimatemediaorg.github.io", - "owner": { - "username": "ultimatemediaorg", - "email": "coreyw.ultimatemedia@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": "The Ultimate Media official website", + "repo": "https://github.com/ultimatemediaorg/ultimatemediaorg.github.io", + "owner": { + "username": "ultimatemediaorg", + "email": "coreyw.ultimatemedia@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/ultrix.json b/domains/ultrix.json new file mode 100644 index 000000000..4941e43a1 --- /dev/null +++ b/domains/ultrix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "jacksoncraft859", + "email": "pollardjackson@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/umar.json b/domains/umar.json new file mode 100644 index 000000000..70f8f8740 --- /dev/null +++ b/domains/umar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Croosh", + "email": "mineeaamir@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/umesh.json b/domains/umesh.json new file mode 100644 index 000000000..9bb3c0523 --- /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/unchained.json b/domains/unchained.json new file mode 100644 index 000000000..3a64984b4 --- /dev/null +++ b/domains/unchained.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "unchaineddev", + "email": "yusuf_in@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/undeadevs.json b/domains/undeadevs.json new file mode 100644 index 000000000..527029d03 --- /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/unicatevn.json b/domains/unicatevn.json new file mode 100644 index 000000000..ab4720b2d --- /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/unichord.json b/domains/unichord.json index b1c380622..89f841fbd 100644 --- a/domains/unichord.json +++ b/domains/unichord.json @@ -1,11 +1,11 @@ { - "description": "Unichord Apps website", - "repo": "https://github.com/unichord-apps/unichord-apps.github.io", - "owner": { - "username": "unichord-apps", - "email": "unichord@pm.me" - }, - "record": { - "CNAME": "unichord-apps.github.io" - } + "description": "Unichord Apps website", + "repo": "https://github.com/unichord-apps/unichord-apps.github.io", + "owner": { + "username": "unichord-apps", + "email": "unichord@pm.me" + }, + "record": { + "CNAME": "unichord-apps.github.io" + } } diff --git a/domains/unidentifiedx.json b/domains/unidentifiedx.json new file mode 100644 index 000000000..c5ba7e77e --- /dev/null +++ b/domains/unidentifiedx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "UnidentifiedX", + "email": "sunzizhuo33@gmail.com" + }, + "record": { + "CNAME": "unidentifiedx.github.io" + } +} diff --git a/domains/unixtz.json b/domains/unixtz.json new file mode 100644 index 000000000..6580dddf2 --- /dev/null +++ b/domains/unixtz.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Iamunix", + "email": "abdulhaulerashid@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/unknowncheats.json b/domains/unknowncheats.json new file mode 100644 index 000000000..0db9311ef --- /dev/null +++ b/domains/unknowncheats.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "opkinshuk09", + "email": "opkinshuk09@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/unseen.json b/domains/unseen.json index 7e5520386..68bfb93f4 100644 --- a/domains/unseen.json +++ b/domains/unseen.json @@ -1,11 +1,11 @@ { - "description": "Unseen's Github Website", - "repo": "https://github.com/UnseenAcoustics/unseenacoustics.github.io", - "owner": { - "username": "UnseenAcoustics", - "email": "edwir122@gmail.com" - }, - "record": { - "CNAME": "unseenacoustics.github.io" - } + "description": "Unseen's Github Website", + "repo": "https://github.com/UnseenAcoustics/unseenacoustics.github.io", + "owner": { + "username": "UnseenAcoustics", + "email": "edwir122@gmail.com" + }, + "record": { + "CNAME": "unseenacoustics.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/up.json b/domains/up.json index f8391a293..51fdbf69a 100644 --- a/domains/up.json +++ b/domains/up.json @@ -1,10 +1,10 @@ { - "description": "The blog of Up Devs.", - "owner": { - "username": "alputv", - "email": "rekortmenstars@gmail.com" - }, - "record": { - "CNAME": "up-devs.github.io" - } + "description": "The blog of Up Devs.", + "owner": { + "username": "alputv", + "email": "rekortmenstars@gmail.com" + }, + "record": { + "CNAME": "up-devs.github.io" + } } diff --git a/domains/upcraft.json b/domains/upcraft.json index 8d0bfc2e3..d3fb9e6c5 100644 --- a/domains/upcraft.json +++ b/domains/upcraft.json @@ -1,11 +1,10 @@ { "owner": { - "username": "upcraftlp", - "email": "", - "twitter": "upcraftlp" + "username": "upcraftlp", + "email": "", + "twitter": "upcraftlp" }, "record": { - "URL": "https://upcraft.dev" + "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..4cd7a7415 --- /dev/null +++ b/domains/upd.oxmc.json @@ -0,0 +1,12 @@ +{ + "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.stefdp.json b/domains/uptime.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/uptime.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/uptime.trung.json b/domains/uptime.trung.json new file mode 100644 index 000000000..d2832a9c2 --- /dev/null +++ b/domains/uptime.trung.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vuthanhtrung2010", + "email": "vuthanhtrungsuper@gmail.com" + }, + "record": { + "CNAME": "manage.uptime.trung.is-a.dev" + } +} diff --git a/domains/urduck.json b/domains/urduck.json index 1918d7e4a..b4605040a 100644 --- a/domains/urduck.json +++ b/domains/urduck.json @@ -1,15 +1,15 @@ { - "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" - } + "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/urgent.afcu.json b/domains/urgent.afcu.json new file mode 100644 index 000000000..14438577e --- /dev/null +++ b/domains/urgent.afcu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "afcunotify", + "email": "rockkahan12@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/urgent.afcubanking.json b/domains/urgent.afcubanking.json new file mode 100644 index 000000000..14438577e --- /dev/null +++ b/domains/urgent.afcubanking.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "afcunotify", + "email": "rockkahan12@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/url.aditya.json b/domains/url.aditya.json new file mode 100644 index 000000000..097da229f --- /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" + } +} \ No newline at end of file diff --git a/domains/usakhil.json b/domains/usakhil.json new file mode 100644 index 000000000..b98d275e9 --- /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/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/useflame.json b/domains/useflame.json new file mode 100644 index 000000000..7dd69f8e5 --- /dev/null +++ b/domains/useflame.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "useflameclient", + "email": "aimloqrtamar@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/user-exe.json b/domains/user-exe.json index e61e47475..e55dd8a46 100644 --- a/domains/user-exe.json +++ b/domains/user-exe.json @@ -1,11 +1,11 @@ { - "description": "user.exe's personal dev website", - "repo": "https://github.com/mrhappyma/user.exe.is-a.dev", - "owner": { - "username": "mrhappyma", - "email": "is-a-dev@a.userexe.me" - }, - "record": { - "CNAME": "mrhappyma.github.io" - } + "description": "user.exe's personal dev website", + "repo": "https://github.com/mrhappyma/user.exe.is-a.dev", + "owner": { + "username": "mrhappyma", + "email": "is-a-dev@a.userexe.me" + }, + "record": { + "CNAME": "mrhappyma.github.io" + } } diff --git a/domains/user.nqdev.json b/domains/user.nqdev.json new file mode 100644 index 000000000..b305e2dee --- /dev/null +++ b/domains/user.nqdev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "nguyenquy0710", + "email": "nguyenquy.1096@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..de94c6fb8 --- /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/utility.icevixen.json b/domains/utility.icevixen.json new file mode 100644 index 000000000..a7d7f03da --- /dev/null +++ b/domains/utility.icevixen.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zirmith", + "email": "f2v74yt@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/utils.json b/domains/utils.json new file mode 100644 index 000000000..8da1a718d --- /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/utkn.json b/domains/utkn.json new file mode 100644 index 000000000..ad1758064 --- /dev/null +++ b/domains/utkn.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "utkn", + "email": "39ph4f87a@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/utsav.json b/domains/utsav.json new file mode 100644 index 000000000..de94c6fb8 --- /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/utsavsingh.json b/domains/utsavsingh.json new file mode 100644 index 000000000..ab45fbd72 --- /dev/null +++ b/domains/utsavsingh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "singhutsav5502", + "email": "singhutsavofficial@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/uv.json b/domains/uv.json new file mode 100644 index 000000000..0af1ce035 --- /dev/null +++ b/domains/uv.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "eyesmad", + "email": "eagam0002@mymail.lausd.net" + }, + "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/uynilo9.json b/domains/uynilo9.json new file mode 100644 index 000000000..0f2885bba --- /dev/null +++ b/domains/uynilo9.json @@ -0,0 +1,12 @@ +{ + "description": "uynilo9.is-a.dev", + "repo": "https://github.com/uynilo9/website", + "owner": { + "username": "uynilo9", + "email": "uynilo9@outlook.com", + "twitter": "uynilo9" + }, + "record": { + "URL": "https://uynilo9.netlify.app" + } +} diff --git a/domains/v0.json b/domains/v0.json new file mode 100644 index 000000000..f8783b001 --- /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..560a95686 --- /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/v2ray.vi0leta.json b/domains/v2ray.vi0leta.json new file mode 100644 index 000000000..ea691c545 --- /dev/null +++ b/domains/v2ray.vi0leta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vi0letadev", + "email": "vi0leta@riseup.net" + }, + "record": { + "A": ["37.27.4.76"] + } +} diff --git a/domains/va1dee.json b/domains/va1dee.json new file mode 100644 index 000000000..332618686 --- /dev/null +++ b/domains/va1dee.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "va1dee", + "email": "vldslv.prydatko@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vacer.json b/domains/vacer.json new file mode 100644 index 000000000..b04df1eb1 --- /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..a22315039 100644 --- a/domains/vachanmn.json +++ b/domains/vachanmn.json @@ -1,12 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "vachanmn123", "email": "vachanmn123@gmail.com" - }, - - "record": { - "A": ["185.199.108.153"] - } + }, + "record": { + "URL": "https://vachanmn.tech" } - \ No newline at end of file +} 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/vaginessa.json b/domains/vaginessa.json new file mode 100644 index 000000000..0d48f08d8 --- /dev/null +++ b/domains/vaginessa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vaginessa", + "email": "vanni@f5.si" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vaibhav.json b/domains/vaibhav.json index 0eef4c650..83e06c559 100644 --- a/domains/vaibhav.json +++ b/domains/vaibhav.json @@ -1,11 +1,9 @@ { "owner": { - "username": "Vaibhav-Kashyap07", - "email": "", - "discord": "Vaibhav Kashyap#5747" + "username": "VaibhavSys", + "email": "vaibhavsys@protonmail.com" }, - "repo": "https://github.com/Vaibhav-Kashyap07/Vaibhav-Kashyap07.github.io", "record": { - "CNAME": "Vaibhav-Kashyap07.github.io" + "URL": "https://www.thevaibhavway.pro/" } } diff --git a/domains/vaibhavsys.json b/domains/vaibhavsys.json deleted file mode 100644 index 64982b3e5..000000000 --- a/domains/vaibhavsys.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "owner": { - "username": "VaibhavSys", - "email": "vaibhavdhi@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/val.json b/domains/val.json index 4ddc0ed19..d29b8b931 100644 --- a/domains/val.json +++ b/domains/val.json @@ -1,11 +1,11 @@ { - "description": "Portfolio website", - "repo": "https://github.com/Btwonu/btwonu.github.io", - "owner": { - "username": "Btwonu", - "email": "btwonu@gmail.com" - }, - "record": { - "CNAME": "btwonu.github.io" - } + "description": "Portfolio website", + "repo": "https://github.com/Btwonu/btwonu.github.io", + "owner": { + "username": "Btwonu", + "email": "btwonu@gmail.com" + }, + "record": { + "CNAME": "btwonu.github.io" + } } diff --git a/domains/valeron.json b/domains/valeron.json new file mode 100644 index 000000000..8bbdb802c --- /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/valorant.json b/domains/valorant.json new file mode 100644 index 000000000..8abfa1dd0 --- /dev/null +++ b/domains/valorant.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Fqcxn", + "email": "", + "twitter": "FqcxnLmao", + "discord": "hong.kong" + }, + "record": { + "CNAME": "fqcxn.com" + } +} diff --git a/domains/valowolf.json b/domains/valowolf.json new file mode 100644 index 000000000..f424798b7 --- /dev/null +++ b/domains/valowolf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ValoWolf", + "email": "starfleet.valowolf@gmail.com" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/vanillia.json b/domains/vanillia.json new file mode 100644 index 000000000..ddb4111d9 --- /dev/null +++ b/domains/vanillia.json @@ -0,0 +1,11 @@ +{ + "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..0c5b43277 --- /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/vanshagrawal.json b/domains/vanshagrawal.json new file mode 100644 index 000000000..a7a10aec5 --- /dev/null +++ b/domains/vanshagrawal.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "pranavagrawal321", + "email": "pranavagrawal321@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/vapedevv.json b/domains/vapedevv.json index 7095c9bd5..3761e2c13 100644 --- a/domains/vapedevv.json +++ b/domains/vapedevv.json @@ -9,4 +9,4 @@ "record": { "CNAME": "jadjasjafsafasfasfsa.github.io" } -} +} diff --git a/domains/var.json b/domains/var.json new file mode 100644 index 000000000..e4d7af640 --- /dev/null +++ b/domains/var.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "IfVar", + "email": "LZT7@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/varexity.json b/domains/varexity.json new file mode 100644 index 000000000..d150f9b17 --- /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/varun.json b/domains/varun.json new file mode 100644 index 000000000..a841e16cd --- /dev/null +++ b/domains/varun.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "varun-chaudhary", + "email": "varunc105@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/varunhere.json b/domains/varunhere.json new file mode 100644 index 000000000..279fa9028 --- /dev/null +++ b/domains/varunhere.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "drzanon", + "email": "varunc105j@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/varunkumarbilwal.json b/domains/varunkumarbilwal.json index ea0717939..e6b5a9404 100644 --- a/domains/varunkumarbilwal.json +++ b/domains/varunkumarbilwal.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "varunkumarbilwal", "email": "varunkumarbilwal@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "varunkumarbilwal.github.io" - } } - \ No newline at end of file +} diff --git a/domains/vasharma05.json b/domains/vasharma05.json index 99ba05d92..13712a8f3 100644 --- a/domains/vasharma05.json +++ b/domains/vasharma05.json @@ -1,11 +1,11 @@ { - "description": "A REACT developer and software enthusiast.", - "repo": "https://github.com/vasharma05/vasharma05.github.io", - "owner": { - "username": "vasharma05", - "email": "sharmava05@gmail.com" - }, - "record": { - "CNAME": "vasharma05.github.io" - } + "description": "A REACT developer and software enthusiast.", + "repo": "https://github.com/vasharma05/vasharma05.github.io", + "owner": { + "username": "vasharma05", + "email": "sharmava05@gmail.com" + }, + "record": { + "CNAME": "vasharma05.github.io" + } } diff --git a/domains/vaskian.json b/domains/vaskian.json deleted file mode 100644 index f3d371e95..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/vasu.json b/domains/vasu.json index e47caefde..480617462 100644 --- a/domains/vasu.json +++ b/domains/vasu.json @@ -1,13 +1,13 @@ { - "description": "Vasu's personal developer website", - "repo": "https://github.com/vasu-xd/Vasu-xD/", - "owner": { - "username": "Vasu-xD", - "email": "mr.v4su@gmail.com", - "telegram": "VasuXD", - "github": "Vasu-xD" - }, - "record": { - "CNAME": "vasu-xd.github.io" - } + "description": "Vasu's personal developer website", + "repo": "https://github.com/vasu-xd/Vasu-xD", + "owner": { + "username": "Vasu-xD", + "email": "mr.v4su@gmail.com", + "telegram": "VasuXD", + "github": "Vasu-xD" + }, + "record": { + "CNAME": "vasu-xd.github.io" + } } diff --git a/domains/vbc6.json b/domains/vbc6.json new file mode 100644 index 000000000..c611e589e --- /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" + } +} \ No newline at end of file diff --git a/domains/vbkg.json b/domains/vbkg.json new file mode 100644 index 000000000..b86f8c5b7 --- /dev/null +++ b/domains/vbkg.json @@ -0,0 +1,10 @@ +{ + "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/veen.json b/domains/veen.json index 396e7563a..06e5859ea 100644 --- a/domains/veen.json +++ b/domains/veen.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Vihaan7207", - "email": "vmikki7207@gmail.com" - }, - "record": { - "CNAME": "Vihaan7207.github.io" - } + "owner": { + "username": "Vihaan7207", + "email": "vmikki7207@gmail.com" + }, + "record": { + "CNAME": "Vihaan7207.github.io" + } } diff --git a/domains/veer.json b/domains/veer.json index cf1986de8..2439a6ff7 100644 --- a/domains/veer.json +++ b/domains/veer.json @@ -1,9 +1,11 @@ { - "owner": { - "username": "TheVeerRana", - "email": "hello@veer.codes" - }, - "record": { - "CNAME": "veer.codes" - } -} + "owner": { + "username": "vpt-dev", + "email": "veerhp@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/veirt.json b/domains/veirt.json new file mode 100644 index 000000000..cf9fc7c8f --- /dev/null +++ b/domains/veirt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Veirt", + "email": "wetrau8zs@mozmail.com" + }, + "record": { + "CNAME": "veirt.github.io" + } +} diff --git a/domains/vendors.syntaxloopers.json b/domains/vendors.syntaxloopers.json new file mode 100644 index 000000000..324dfe7e2 --- /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/venkateshpagdikar.json b/domains/venkateshpagdikar.json new file mode 100644 index 000000000..bab7dfa73 --- /dev/null +++ b/domains/venkateshpagdikar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "venkateshpagdikar", + "email": "venkateshpagdikar8@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/venox.json b/domains/venox.json new file mode 100644 index 000000000..e92356fac --- /dev/null +++ b/domains/venox.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "V-E-N-O-X", + "email": "akd.bd880@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/venquidev.json b/domains/venquidev.json index 3cee3629f..62366eb2f 100644 --- a/domains/venquidev.json +++ b/domains/venquidev.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "venquidev", "email": "edwinrey5211@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "venquidev.pages.dev" - } } - \ No newline at end of file +} 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/vercte.json b/domains/vercte.json new file mode 100644 index 000000000..b5be0858e --- /dev/null +++ b/domains/vercte.json @@ -0,0 +1,9 @@ +{ + "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/verma-sanjeet.json b/domains/verma-sanjeet.json new file mode 100644 index 000000000..aa1e69b65 --- /dev/null +++ b/domains/verma-sanjeet.json @@ -0,0 +1,11 @@ +{ + "description": "Sanjeet Verma.", + "repo": "https://github.com/verma-sanjeet/verma-sanjeet.github.io", + "owner": { + "username": "verma-sanjeet", + "email": "" + }, + "record": { + "CNAME": "verma-sanjeet.github.io" + } +} diff --git a/domains/verse.json b/domains/verse.json new file mode 100644 index 000000000..4e6a7710f --- /dev/null +++ b/domains/verse.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ClicpoW", + "email": "clicpowytb@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/versions.johna.json b/domains/versions.johna.json new file mode 100644 index 000000000..1c3d6aa1e --- /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..d81eae974 --- /dev/null +++ b/domains/verstandlxs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "byKeksYT", + "email": "community@verstandlxs.de" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vertex.json b/domains/vertex.json new file mode 100644 index 000000000..57135ae77 --- /dev/null +++ b/domains/vertex.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ltong4867", + "email": "ltong4867@inst.hcpss.org" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vhd.json b/domains/vhd.json new file mode 100644 index 000000000..c523b7e5b --- /dev/null +++ b/domains/vhd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "realvhd", + "email": "dotrealvhd@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vi0leta.json b/domains/vi0leta.json new file mode 100644 index 000000000..784e44261 --- /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/vian.json b/domains/vian.json new file mode 100644 index 000000000..9afebc9db --- /dev/null +++ b/domains/vian.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vviaan", + "email": "erel.ersahin@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vibez.json b/domains/vibez.json new file mode 100644 index 000000000..7093d6f62 --- /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..11c0a9138 100644 --- a/domains/vic.json +++ b/domains/vic.json @@ -9,4 +9,4 @@ "record": { "CNAME": "v1ctorio.github.io" } -} +} diff --git a/domains/victoneux.json b/domains/victoneux.json index c2ae7a87e..bc95841c7 100644 --- a/domains/victoneux.json +++ b/domains/victoneux.json @@ -1,11 +1,11 @@ { - "description": "victoneux's personal dev site", - "repo": "https://github.com/Victoneux/victoneux.github.io", - "owner": { - "username": "Victoneux", - "email": "victoneux@protonmail.com" - }, - "record": { - "CNAME": "victoneux.github.io" - } + "description": "victoneux's personal dev site", + "repo": "https://github.com/Victoneux/victoneux.github.io", + "owner": { + "username": "Victoneux", + "email": "victoneux@protonmail.com" + }, + "record": { + "CNAME": "victoneux.github.io" + } } diff --git a/domains/victor.json b/domains/victor.json index 3de89e2cd..a879115c7 100644 --- a/domains/victor.json +++ b/domains/victor.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "victoroliveira", "email": "victoroliveira.eng@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "victoroliveira.github.io" - } } - \ No newline at end of file +} diff --git a/domains/victoris.json b/domains/victoris.json new file mode 100644 index 000000000..dfdb91c79 --- /dev/null +++ b/domains/victoris.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "victorgeel", + "email": "freevpn537@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/victorisgeek.json b/domains/victorisgeek.json new file mode 100644 index 000000000..dfdb91c79 --- /dev/null +++ b/domains/victorisgeek.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "victorgeel", + "email": "freevpn537@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..a879115c7 100644 --- a/domains/victoroliveira.json +++ b/domains/victoroliveira.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "victoroliveira", "email": "victoroliveira.eng@gmail.com" - }, + }, - "record": { + "record": { "CNAME": "victoroliveira.github.io" - } } - \ No newline at end of file +} diff --git a/domains/victorvickie.json b/domains/victorvickie.json new file mode 100644 index 000000000..27079b922 --- /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 new file mode 100644 index 000000000..811a7164f --- /dev/null +++ b/domains/vien.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VienDeveloper", + "email": "vien@courvix.com" + }, + "record": { + "CNAME": "viendeveloper.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..7b43aa653 --- /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/vikas-mahi.json b/domains/vikas-mahi.json new file mode 100644 index 000000000..20b6ec5dc --- /dev/null +++ b/domains/vikas-mahi.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "vikas-mahi", + "email": "1vikasmahi@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/vikkubaliga.json b/domains/vikkubaliga.json new file mode 100644 index 000000000..92706f8b4 --- /dev/null +++ b/domains/vikkubaliga.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vikkubaligas", + "email": "vikkubaligatmp@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vikram.json b/domains/vikram.json new file mode 100644 index 000000000..ed7ce1204 --- /dev/null +++ b/domains/vikram.json @@ -0,0 +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" + } +} 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/vikyaiyer.json b/domains/vikyaiyer.json index a1231b169..85187ff7c 100644 --- a/domains/vikyaiyer.json +++ b/domains/vikyaiyer.json @@ -1,11 +1,11 @@ { - "description": "Vignesh Aiyer is a Developer!", - "repo": "https://github.com/vikyaiyer/jekyll-theme-minimal-resume", - "owner": { - "username": "vikyaiyer", - "email": "vikyaiyer1997@gmail.com" - }, - "record": { - "CNAME": "vikyaiyer.github.io" - } + "description": "Vignesh Aiyer is a Developer!", + "repo": "https://github.com/vikyaiyer/jekyll-theme-minimal-resume", + "owner": { + "username": "vikyaiyer", + "email": "vikyaiyer1997@gmail.com" + }, + "record": { + "CNAME": "vikyaiyer.github.io" + } } diff --git a/domains/vilari.json b/domains/vilari.json new file mode 100644 index 000000000..41b567929 --- /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/villagerbrine.json b/domains/villagerbrine.json new file mode 100644 index 000000000..f75df9179 --- /dev/null +++ b/domains/villagerbrine.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "villagerBrine", + "email": "villagerBrine@gmail.com" + }, + "record": { + "A": ["129.146.140.85"] + } +} diff --git a/domains/vimalsaraswat.json b/domains/vimalsaraswat.json new file mode 100644 index 000000000..7d6da684e --- /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/vin-decoder.json b/domains/vin-decoder.json new file mode 100644 index 000000000..04fc6d572 --- /dev/null +++ b/domains/vin-decoder.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "IvanAshikhin", + "email": "ashikhinivan18@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vinayak.json b/domains/vinayak.json index 1e62273c0..839ca4999 100644 --- a/domains/vinayak.json +++ b/domains/vinayak.json @@ -1,12 +1,12 @@ { - "description": "Vinayak Kulkarni's Website", - "repo": "https://github.com/vinayakkulkarni/vinayakkulkarni.dev", - "owner": { - "username": "vinayakkulkarni", - "email": "inbox.vinayak@gmail.com", - "twitter": "_vinayak_k" - }, - "record": { - "CNAME": "vinayakkulkarni.dev" - } + "description": "Vinayak Kulkarni's Website", + "repo": "https://github.com/vinayakkulkarni/vinayakkulkarni.dev", + "owner": { + "username": "vinayakkulkarni", + "email": "inbox.vinayak@gmail.com", + "twitter": "_vinayak_k" + }, + "record": { + "CNAME": "vinayakkulkarni.dev" + } } diff --git a/domains/vinaychaudhary.json b/domains/vinaychaudhary.json new file mode 100644 index 000000000..5f4063758 --- /dev/null +++ b/domains/vinaychaudhary.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vinayofc", + "email": "devilvinayofficial@gmail.com" + }, + + "record": { + "A": ["3.136.154.89"] + } +} diff --git a/domains/vincent-cly.json b/domains/vincent-cly.json new file mode 100644 index 000000000..24b7003a1 --- /dev/null +++ b/domains/vincent-cly.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Vincent-CLY", + "email": "vchku413@connect.hku.hk" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vincyxir.json b/domains/vincyxir.json new file mode 100644 index 000000000..6f754aaa1 --- /dev/null +++ b/domains/vincyxir.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vincyxiroff", + "email": "vincyxir@gmail.com" + }, + "record": { + "CNAME": "vincyxiroff.github.io" + } +} diff --git a/domains/vineet-khemnani.json b/domains/vineet-khemnani.json new file mode 100644 index 000000000..827f1263c --- /dev/null +++ b/domains/vineet-khemnani.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vineetkhemnani", + "email": "vineetkhemnani09@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vineet.json b/domains/vineet.json index e009e7107..05c394c05 100644 --- a/domains/vineet.json +++ b/domains/vineet.json @@ -3,10 +3,10 @@ "repo": "https://github.com/iamv1n/iamv1n.github.io", "owner": { "username": "iamv1n", - "email": "vineet@iamv1n.xyz", + "email": "vind3v17@gmail.com", "twitter": "vineetstwt" }, "record": { - "URL": "https://iamv1n.xyz" + "URL": "https://iamv1n.github.io" } } diff --git a/domains/vineetkhemnani.json b/domains/vineetkhemnani.json new file mode 100644 index 000000000..6e60ddb75 --- /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/vinicius.json b/domains/vinicius.json index d0d055bea..c6444b5eb 100644 --- a/domains/vinicius.json +++ b/domains/vinicius.json @@ -1,13 +1,13 @@ { - "description": "My personal website", - "repo": "https://github.com/vncsmnl", - "owner": { - "username": "vncsmnl", - "email": "", - "twitter": "vncsmnl", - "discord": "vncsmnl#7835" - }, - "record": { - "CNAME": "vncsmnl.github.io" - } + "description": "My personal website", + "repo": "https://github.com/vncsmnl", + "owner": { + "username": "vncsmnl", + "email": "", + "twitter": "vncsmnl", + "discord": "vncsmnl#7835" + }, + "record": { + "CNAME": "vncsmnl.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/viplav-mistry.json b/domains/viplav-mistry.json new file mode 100644 index 000000000..e937fd6cb --- /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..9960e68b0 --- /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" + } +} \ No newline at end of file diff --git a/domains/viraj.json b/domains/viraj.json new file mode 100644 index 000000000..2397070b5 --- /dev/null +++ b/domains/viraj.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Viraj2722", + "email": "virajwalavalkar90982@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/viral-gadhiya.json b/domains/viral-gadhiya.json new file mode 100644 index 000000000..ad9c3a4e5 --- /dev/null +++ b/domains/viral-gadhiya.json @@ -0,0 +1,11 @@ +{ + "description": "Viral Gadhiya Profile.", + "repo": "https://github.com/viral-gadhiya/viral-gadhiya.github.io", + "owner": { + "username": "viral-gadhiya", + "email": "" + }, + "record": { + "CNAME": "viral-gadhiya.github.io" + } +} diff --git a/domains/viren-trivedi.json b/domains/viren-trivedi.json new file mode 100644 index 000000000..88f728c20 --- /dev/null +++ b/domains/viren-trivedi.json @@ -0,0 +1,11 @@ +{ + "description": "Viren Profile.", + "repo": "https://github.com/viren-trivedi/viren-trivedi.github.io", + "owner": { + "username": "viren-trivedi", + "email": "" + }, + "record": { + "CNAME": "viren-trivedi.github.io" + } +} diff --git a/domains/vishal.json b/domains/vishal.json index 91946b3e8..66524f20e 100644 --- a/domains/vishal.json +++ b/domains/vishal.json @@ -1,11 +1,11 @@ { - "description": "Welcome to Vishal Sharma's Space on Web", - "repo": "https://github.com/makeavish", - "owner": { - "username": "makeavish", - "email": "hi@vishalsharma.dev" - }, - "record": { - "URL": "https://vishalsharma.dev" - } + "description": "Welcome to Vishal Sharma's Space on Web", + "repo": "https://github.com/makeavish", + "owner": { + "username": "makeavish", + "email": "hi@vishalsharma.dev" + }, + "record": { + "URL": "https://vishalsharma.dev" + } } diff --git a/domains/vishalg.json b/domains/vishalg.json new file mode 100644 index 000000000..cd23fa184 --- /dev/null +++ b/domains/vishalg.json @@ -0,0 +1,12 @@ +{ + "description": "Vishal Gupta Personal Portfolio Website", + "repo": "https://github.com/vishalpx/vishalpx.github.io", + "owner": { + "username": "vishalpx", + "email": "", + "twitter": "vishal26x" + }, + "record": { + "CNAME": "vishalpx.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/vishesh.json b/domains/vishesh.json deleted file mode 100644 index ea259b40e..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..f5e727075 100644 --- a/domains/vishnu.json +++ b/domains/vishnu.json @@ -2,10 +2,10 @@ "description": "Vishnu's personal website", "repo": "https://github.com/vishnu012/vishnu012.github.io", "owner": { - "username": "vishnu012", - "email": "vishnu012@pm.me" + "username": "vishnu012", + "email": "vishnu012@pm.me" }, "record": { - "CNAME": "vishnu012.github.io" + "CNAME": "vishnu012.github.io" } } diff --git a/domains/vishok.json b/domains/vishok.json new file mode 100644 index 000000000..15316ef6a --- /dev/null +++ b/domains/vishok.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mvishok", + "email": "mvishok2005@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vishwa.json b/domains/vishwa.json new file mode 100644 index 000000000..cc296ef66 --- /dev/null +++ b/domains/vishwa.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vishwa2001911", + "email": "vprabhath937@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vishwapinnawala.json b/domains/vishwapinnawala.json new file mode 100644 index 000000000..7a825faa8 --- /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/visionavtr.json b/domains/visionavtr.json new file mode 100644 index 000000000..e07ba26eb --- /dev/null +++ b/domains/visionavtr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "creatize", + "email": "lada_862@mail.ru" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vivek.2k.json b/domains/vivek.2k.json new file mode 100644 index 000000000..67466d604 --- /dev/null +++ b/domains/vivek.2k.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vi2k6", + "email": "Vivektvp1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vivek.json b/domains/vivek.json index 0b99831d2..af6c7aaae 100644 --- a/domains/vivek.json +++ b/domains/vivek.json @@ -1,13 +1,13 @@ -{ - "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/vivekkumar.json b/domains/vivekkumar.json index 6721f848f..1e4b68f7f 100644 --- a/domains/vivekkumar.json +++ b/domains/vivekkumar.json @@ -1,11 +1,11 @@ { - "description": "Vivek's portfolio website", - "repo": "https://github.com/VivekKumarNeu/VivekKumarNeu.github.io", - "owner": { - "username": "vivekkumarneu", - "email": "vivek-kumar@live.in" - }, - "record": { - "CNAME": "VivekKumarNeu.github.io" - } + "description": "Vivek's portfolio website", + "repo": "https://github.com/VivekKumarNeu/VivekKumarNeu.github.io", + "owner": { + "username": "vivekkumarneu", + "email": "vivek-kumar@live.in" + }, + "record": { + "CNAME": "VivekKumarNeu.github.io" + } } diff --git a/domains/vixcord.json b/domains/vixcord.json new file mode 100644 index 000000000..946dbe7a9 --- /dev/null +++ b/domains/vixcord.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AbsolutelyNothingAndNoOne", + "email": "tinakiss2234@gmail.com" + }, + "record": { + "URL": "https://defensiveunluckystate.mkds.repl.co/" + } +} diff --git a/domains/vk.json b/domains/vk.json new file mode 100644 index 000000000..ce960e880 --- /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 5547a8b9d..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/vleov.json b/domains/vleov.json new file mode 100644 index 000000000..965db554d --- /dev/null +++ b/domains/vleov.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vLeov", + "email": "leo.goetz2008@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vo.json b/domains/vo.json new file mode 100644 index 000000000..f8783b001 --- /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..75d965ee6 --- /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..a54a110c0 100644 --- a/domains/void.json +++ b/domains/void.json @@ -6,4 +6,4 @@ "record": { "CNAME": "tomgx.github.io" } -} +} diff --git a/domains/voidlesh.json b/domains/voidlesh.json new file mode 100644 index 000000000..d1bd3dce2 --- /dev/null +++ b/domains/voidlesh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Voidlesh", + "email": "levi.maiwald@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/voidz.json b/domains/voidz.json index e2f55ad23..e3d689e62 100644 --- a/domains/voidz.json +++ b/domains/voidz.json @@ -1,11 +1,11 @@ { - "description": "voidz's personal website", - "owner": { - "username": "voidz7", - "email": "atharvask2005@gmail.com", - "twitter": "gg_voidz" - }, - "record": { - "CNAME": "voidz7.github.io" - } + "description": "voidz's personal website", + "owner": { + "username": "voidz7", + "email": "atharvask2005@gmail.com", + "twitter": "gg_voidz" + }, + "record": { + "CNAME": "voidz7.github.io" + } } diff --git a/domains/voldemort.json b/domains/voldemort.json new file mode 100644 index 000000000..f85a91db5 --- /dev/null +++ b/domains/voldemort.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Voldemort-h4ck", + "email": "vertesivv@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vollow.json b/domains/vollow.json new file mode 100644 index 000000000..14dac0b86 --- /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/voltic.json b/domains/voltic.json new file mode 100644 index 000000000..6ecc00cd1 --- /dev/null +++ b/domains/voltic.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "HarpyLMAO", + "email": "harpymclol@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/voonyuan.json b/domains/voonyuan.json new file mode 100644 index 000000000..ecec34106 --- /dev/null +++ b/domains/voonyuan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "VonYuan", + "email": "voonyuan11@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vpc01.json b/domains/vpc01.json deleted file mode 100644 index 8744f3af0..000000000 --- a/domains/vpc01.json +++ /dev/null @@ -1,12 +0,0 @@ - - { - "repo" :"https://github.com/andrewstech/notify-api", - "owner": { - "username": "andrewstech", - "email": "andrew@win11react.com" - }, - "record": { - "A": ["140.238.66.199"] - } - } - diff --git a/domains/vsc.stefdp.json b/domains/vsc.stefdp.json new file mode 100644 index 000000000..7a920dce5 --- /dev/null +++ b/domains/vsc.stefdp.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Stef-00012", + "email": "admin@stefdp.is-a.dev", + "discord": "694986201739952229" + }, + "record": { + "A": [ + "109.71.252.37" + ] + } +} diff --git a/domains/vsecoder.json b/domains/vsecoder.json new file mode 100644 index 000000000..db6d926e4 --- /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/vt-d.json b/domains/vt-d.json new file mode 100644 index 000000000..3aeff48e4 --- /dev/null +++ b/domains/vt-d.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vt-d", + "email": "poonipapatv@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/vulcanwm.json b/domains/vulcanwm.json index 9baeb06e6..091b7adf3 100644 --- a/domains/vulcanwm.json +++ b/domains/vulcanwm.json @@ -1,11 +1,11 @@ { - "description": "My portfolio", - "repo": "https://github.com/VulcanWM/VulcanWM", - "owner": { - "username": "VulcanWM", - "email": "vulcanwmemail@gmail.com" - }, - "record": { - "CNAME": "e59a0be7-f4eb-4b1a-9b7f-29e2c556a9f8.repl.co" - } + "description": "My portfolio", + "repo": "https://github.com/VulcanWM/VulcanWM", + "owner": { + "username": "VulcanWM", + "email": "vulcanwmemail@gmail.com" + }, + "record": { + "URL": "https://vulcanwm.vercel.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/vvp.json b/domains/vvp.json index 22761e781..893e84542 100644 --- a/domains/vvp.json +++ b/domains/vvp.json @@ -1,11 +1,11 @@ { - "description": "VVP's Website", - "repo": "https://github.com/VVP3215", - "owner": { - "username": "VVP", - "email": "jamesmentes.management@gmail.com" - }, - "record": { - "URL": "https://github.com/VVP3215" - } + "description": "VVP's Website", + "repo": "https://github.com/VVP3215", + "owner": { + "username": "VVP", + "email": "jamesmentes.management@gmail.com" + }, + "record": { + "URL": "https://github.com/VVP3215" + } } diff --git a/domains/vyas-rahul.json b/domains/vyas-rahul.json new file mode 100644 index 000000000..da351a5d8 --- /dev/null +++ b/domains/vyas-rahul.json @@ -0,0 +1,11 @@ +{ + "description": "Vyas Rahul.", + "repo": "https://github.com/nayan-gorasiya/vyas-rahul.github.io", + "owner": { + "username": "vyas-rahul", + "email": "vyas-rahul@acquaintsoft.com" + }, + "record": { + "CNAME": "vyas-rahul.github.io" + } +} diff --git a/domains/vysakh.json b/domains/vysakh.json index bd802a614..46096aa1d 100644 --- a/domains/vysakh.json +++ b/domains/vysakh.json @@ -8,5 +8,4 @@ "record": { "CNAME": "vyshuks.github.io" } -} - +} diff --git a/domains/wablesanket.json b/domains/wablesanket.json deleted file mode 100644 index f550c17e9..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": "https://twitter.com/Wable_Sanket_" - }, - "record": { - "URL": "https://wablesanket.xyz" - } -} diff --git a/domains/wade-cheng.json b/domains/wade-cheng.json new file mode 100644 index 000000000..757d6d8cf --- /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/wahid.json b/domains/wahid.json new file mode 100644 index 000000000..0c9d39243 --- /dev/null +++ b/domains/wahid.json @@ -0,0 +1,9 @@ +{ + "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..fbadf522a --- /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..24ed610af 100644 --- a/domains/waiyanmt.json +++ b/domains/waiyanmt.json @@ -1,10 +1,9 @@ - { - "owner": { - "username": "WillowMT", - "email": "waiyanmt@yahoo.com" - }, - "record": { - "URL": "https://waiyanmt.netlify.app" - } + "owner": { + "username": "WillowMT", + "email": "waiyanmt@yahoo.com" + }, + "record": { + "URL": "https://waiyanmt.netlify.app" + } } diff --git a/domains/wan.json b/domains/wan.json new file mode 100644 index 000000000..28ed11e47 --- /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/wang.json b/domains/wang.json new file mode 100644 index 000000000..e31dd3760 --- /dev/null +++ b/domains/wang.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "wang-on-top", + "email": "Real.Shid.999@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/wangjoui.json b/domains/wangjoui.json new file mode 100644 index 000000000..38484d437 --- /dev/null +++ b/domains/wangjoui.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hii311", + "email": "trieuvy5ghz@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/wankhede.json b/domains/wankhede.json new file mode 100644 index 000000000..747e159da --- /dev/null +++ b/domains/wankhede.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "FIRSTB0SS", + "email": "abhiwa6@protonmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/wansies.json b/domains/wansies.json new file mode 100644 index 000000000..343bb4601 --- /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/wap.json b/domains/wap.json new file mode 100644 index 000000000..c2ee58540 --- /dev/null +++ b/domains/wap.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "kramiikk", + "email": "hifund@yandex.ru" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/warofzen.json b/domains/warofzen.json new file mode 100644 index 000000000..2157b1a6f --- /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/warvan.json b/domains/warvan.json new file mode 100644 index 000000000..43bd53bf1 --- /dev/null +++ b/domains/warvan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "node-warvan", + "email": "irvaaanfauzi1@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/wassim.json b/domains/wassim.json index 73e182235..011c902d2 100644 --- a/domains/wassim.json +++ b/domains/wassim.json @@ -1,11 +1,11 @@ { - "description": "Github profile of wassimbenzarti", - "repo": "https://github.com/wassimbenzarti", - "owner": { - "username": "wassimbenzarti", - "email": "wass11121996@gmail.com" - }, - "record": { - "CNAME": "wassimbenzarti.github.io" - } + "description": "Github profile of wassimbenzarti", + "repo": "https://github.com/wassimbenzarti", + "owner": { + "username": "wassimbenzarti", + "email": "wass11121996@gmail.com" + }, + "record": { + "CNAME": "wassimbenzarti.github.io" + } } diff --git a/domains/watercat.json b/domains/watercat.json index 437bf48fd..75a36e775 100644 --- a/domains/watercat.json +++ b/domains/watercat.json @@ -1,11 +1,11 @@ { - "description": "I am watercat", - "repo": "https://github.com/watercatuwu/watercatuwu.github.io", - "owner": { - "username": "watercatuwu", - "email": "watercat0330@gmail.com" - }, - "record": { - "CNAME": "watercatuwu.github.io" - } + "description": "I am watercat", + "repo": "https://github.com/watercatuwu/watercatuwu.github.io", + "owner": { + "username": "watercatuwu", + "email": "watercat0330@gmail.com" + }, + "record": { + "CNAME": "watercatuwu.github.io" + } } diff --git a/domains/wavingcat.json b/domains/wavingcat.json index 40fef2a7b..286f79e90 100644 --- a/domains/wavingcat.json +++ b/domains/wavingcat.json @@ -1,11 +1,11 @@ { - "description": "Just my homepage with my links :O :)", - "repo": "https://github.com/WavingCatDevs/WavingCatDevs.github.io", - "owner": { - "username": "wavingcatdevs", - "email": "wavingcatdevs@gmail.com" - }, - "record": { - "CNAME": "wavingcatdevs.github.io" - } + "description": "Just my homepage with my links :O :)", + "repo": "https://github.com/WavingCatDevs/WavingCatDevs.github.io", + "owner": { + "username": "wavingcatdevs", + "email": "wavingcatdevs@gmail.com" + }, + "record": { + "CNAME": "wavingcatdevs.github.io" + } } diff --git a/domains/wbalaile.json b/domains/wbalaile.json index dce4b9dd4..c627a8690 100644 --- a/domains/wbalaile.json +++ b/domains/wbalaile.json @@ -1,12 +1,12 @@ { - "description": "Professional Web Developer portfolio site for William Balaile.", - "repo": "https://github.com/wilby-mj/wbalaile-dev", - "owner": { - "username": "wilby-mj", - "email": "", - "twitter": "wilby_mj" - }, - "record": { - "CNAME": "wilby-mj.github.io" - } + "description": "Professional Web Developer portfolio site for William Balaile.", + "repo": "https://github.com/wilby-mj/wbalaile-dev", + "owner": { + "username": "wilby-mj", + "email": "", + "twitter": "wilby_mj" + }, + "record": { + "CNAME": "wilby-mj.github.io" + } } diff --git a/domains/wcaleniekubaa.json b/domains/wcaleniekubaa.json index aa801cd1d..8d6254af8 100644 --- a/domains/wcaleniekubaa.json +++ b/domains/wcaleniekubaa.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "wcaleniekubaa", - "email": "to.nie.kubafn@gmail.com" - }, - "record": { - "CNAME": "wcaleniekubaa.github.io" - } + "owner": { + "username": "wcaleniekubaa", + "email": "to.nie.kubafn@gmail.com" + }, + "record": { + "CNAME": "wcaleniekubaa.github.io" + } } 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-design-zone.json b/domains/web-design-zone.json new file mode 100644 index 000000000..5caa14ab7 --- /dev/null +++ b/domains/web-design-zone.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sabbir875", + "email": "mastermail99999@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/web.semant.json b/domains/web.semant.json deleted file mode 100644 index 196181dcb..000000000 --- a/domains/web.semant.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "My Website", - "owner": { - "username": "semantcodes", - "email": "contact@semant.is-a.dev", - "discord": "445073800850046977" - }, - "record": { - "CNAME": "4baf80cb-7f87-4d2c-8e40-938f4045acfd.id.repl.co" - } -} 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..95b9895d1 100644 --- a/domains/webber.json +++ b/domains/webber.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "webbertakken", "email": "webber.nl@gmail.com" - }, + }, - "record": { + "record": { "URL": "https://takken.io" - } } - \ No newline at end of file +} diff --git a/domains/webmail.chiragnahata.json b/domains/webmail.chiragnahata.json new file mode 100644 index 000000000..a23664d55 --- /dev/null +++ b/domains/webmail.chiragnahata.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "chiragnahata", + "email": "chiragnahata05@gmail.com" + }, + "record": { + "A": ["129.213.151.29"] + } +} diff --git a/domains/webmail.mrjunkyz.json b/domains/webmail.mrjunkyz.json new file mode 100644 index 000000000..324dfe7e2 --- /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..a23664d55 --- /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.teamcodearc.json b/domains/webmail.teamcodearc.json new file mode 100644 index 000000000..a23664d55 --- /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/webmarshalls.json b/domains/webmarshalls.json new file mode 100644 index 000000000..2efdcb618 --- /dev/null +++ b/domains/webmarshalls.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "WebMarshalls", + "email": "ndirangusteven131@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/webraku.json b/domains/webraku.json index 4bf18ae95..8dbcb8b2e 100644 --- a/domains/webraku.json +++ b/domains/webraku.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "Nathan", - "email": "nathanaelhananta09@gmail.com" - }, - "record": { - "CNAME": "storage-production.up.railway.app" - } + "owner": { + "username": "Nathan", + "email": "nathanaelhananta09@gmail.com" + }, + "record": { + "CNAME": "storage-production.up.railway.app" + } } diff --git a/domains/werz.json b/domains/werz.json index cce72d58f..5601dab67 100644 --- a/domains/werz.json +++ b/domains/werz.json @@ -9,4 +9,4 @@ "record": { "CNAME": "0xwerz.github.io" } -} +} diff --git a/domains/wesley.json b/domains/wesley.json deleted file mode 100644 index 38ac78c51..000000000 --- a/domains/wesley.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "", - "repo": "https://github.com/westhecool/register", - "owner": { - "username": "westhecool", - "email": "wesley@wmail.eu.org" - }, - "record": { - "CNAME": "cname-alt-mail-server.sv1.wesdns.cf" - } -} diff --git a/domains/west.json b/domains/west.json index 10af75107..2bb0591e3 100644 --- a/domains/west.json +++ b/domains/west.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "arslandoesdev", - "email": "239@duck.com" - }, - "record": { - "CNAME": "arslandoesdev.github.io" - } + "owner": { + "username": "arslandoesdev", + "email": "239@duck.com" + }, + "record": { + "CNAME": "arslandoesdev.github.io" + } } diff --git a/domains/what.json b/domains/what.json index a2bed7939..5e7b5c577 100644 --- a/domains/what.json +++ b/domains/what.json @@ -4,10 +4,10 @@ "owner": { "username": "What-Question-Mark", "email": "jack.weller@hotmail.com", - "twitter": "@whatqm", + "twitter": "whatqm", "discord": "discord-username-and-discriminator" }, "record": { "CNAME": "what-question-mark.github.io" } -} +} diff --git a/domains/whiffedk.json b/domains/whiffedk.json new file mode 100644 index 000000000..e725cba59 --- /dev/null +++ b/domains/whiffedk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WhiffedKnight", + "email": "abalabalscratch@gmail.com" + }, + "record": { + "CNAME": "whiffedknight.github.io" + } +} diff --git a/domains/whine.json b/domains/whine.json index 0ba3e78c8..5a883e14a 100644 --- a/domains/whine.json +++ b/domains/whine.json @@ -5,18 +5,10 @@ "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" - ], + "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 +} diff --git a/domains/whinny.json b/domains/whinny.json new file mode 100644 index 000000000..2af9ee419 --- /dev/null +++ b/domains/whinny.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Razer5624", + "email": "hajimesiyyachiyyo@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/whitekj.json b/domains/whitekj.json index 9a259cd9e..84b5cd36e 100644 --- a/domains/whitekj.json +++ b/domains/whitekj.json @@ -1,11 +1,11 @@ { - "description": "Personal blog", - "repo": "https://github.com/CwhiteKJ/CwhiteKJ.github.io", - "owner": { - "username": "CwhiteKJ", - "email": "whitekj1221@gmail.com" - }, - "record": { - "CNAME": "CwhiteKJ.github.io" - } + "description": "Personal blog", + "repo": "https://github.com/CwhiteKJ/CwhiteKJ.github.io", + "owner": { + "username": "CwhiteKJ", + "email": "whitekj1221@gmail.com" + }, + "record": { + "CNAME": "CwhiteKJ.github.io" + } } diff --git a/domains/who.json b/domains/who.json index 52c7e7f39..25de39702 100644 --- a/domains/who.json +++ b/domains/who.json @@ -1,11 +1,11 @@ { - "description": "references for my npm packages", - "repo": "https://github.com/teamjoelee", - "owner": { - "username": "teamjoelee", - "email": "tojoeleeofficial@gmail.com" - }, - "record": { - "CNAME": "hosting.gitbook.io" - } + "description": "references for my npm packages", + "repo": "https://github.com/teamjoelee", + "owner": { + "username": "teamjoelee", + "email": "tojoeleeofficial@gmail.com" + }, + "record": { + "CNAME": "hosting.gitbook.io" + } } diff --git a/domains/whxyu.json b/domains/whxyu.json index 509dcc2ee..8f1a71574 100644 --- a/domains/whxyu.json +++ b/domains/whxyu.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "yxu6fingers", - "email": "null" - }, - "record": { + "email": "" + }, + "record": { "CNAME": "yxu6fingers.github.io" - } } - +} diff --git a/domains/whyme.json b/domains/whyme.json new file mode 100644 index 000000000..75fd40b22 --- /dev/null +++ b/domains/whyme.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "unqxl", + "email": "andreyzero123@gmail.com" + }, + "record": { + "A": ["181.215.68.159"] + } +} diff --git a/domains/wibu.json b/domains/wibu.json new file mode 100644 index 000000000..a978b39c4 --- /dev/null +++ b/domains/wibu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DomathID", + "email": "admin@yukinoshita.web.id" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/wiggly.json b/domains/wiggly.json index bc94c9e3d..8cffa47be 100644 --- a/domains/wiggly.json +++ b/domains/wiggly.json @@ -1,12 +1,12 @@ { - "description": "My wiggly site!", - "repo": "https://github.com/Artsui/wigglydev", - "owner": { - "username": "Artsui", - "email": "dedica0123@gmail.com", - "twitter": "CornetWiggly" - }, - "record": { - "CNAME": "artsui.github.io" - } + "description": "My wiggly site!", + "repo": "https://github.com/Artsui/wigglydev", + "owner": { + "username": "Artsui", + "email": "dedica0123@gmail.com", + "twitter": "CornetWiggly" + }, + "record": { + "CNAME": "artsui.github.io" + } } diff --git a/domains/wiicreation.json b/domains/wiicreation.json index ec04ac1b5..9c03f53c9 100644 --- a/domains/wiicreation.json +++ b/domains/wiicreation.json @@ -1,11 +1,11 @@ { - "description": "Wiicreation is a recreation of the Nintendo Wii made in ElectronJS.", - "repo": "https://github.com/C1200/blog", - "owner": { - "username": "C1200", - "email": "coreyw.ultimatemedia@gmail.com" - }, - "record": { - "URL": "https://c1200.js.org/blog/faqs/2022/07/29/wiicreation-faq.html" - } + "description": "Wiicreation is a recreation of the Nintendo Wii made in ElectronJS.", + "repo": "https://github.com/C1200/blog", + "owner": { + "username": "C1200", + "email": "coreyw.ultimatemedia@gmail.com" + }, + "record": { + "URL": "https://c1200.js.org/blog/faqs/2022/07/29/wiicreation-faq.html?from=" + } } diff --git a/domains/will.json b/domains/will.json index a4c8af638..01b11062d 100644 --- a/domains/will.json +++ b/domains/will.json @@ -1,11 +1,11 @@ { - "description": "William's site", - "repo": "https://websterwh16.github.io/willisadev/", - "owner": { - "username": "websterwh16", - "email": "websterwh16@gmail.com" - }, - "record": { - "CNAME": "websterwh16.github.io" - } + "description": "William's site", + "repo": "https://websterwh16.github.io/willisadev", + "owner": { + "username": "websterwh16", + "email": "websterwh16@gmail.com" + }, + "record": { + "CNAME": "websterwh16.github.io" + } } diff --git a/domains/william.json b/domains/william.json index c1f4996da..d7e3070f6 100644 --- a/domains/william.json +++ b/domains/william.json @@ -1,10 +1,12 @@ { - "owner": { - "username": "WilliamDavidHarrison", - "email": "william@williamharrison.dev" - }, + "owner": { + "username": "wdhdev", + "email": "william@williamharrison.dev" + }, - "record": { - "CNAME": "wdhdns.com" - } + "record": { + "A": ["51.161.54.161"], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } } diff --git a/domains/williamsebastian.json b/domains/williamsebastian.json new file mode 100644 index 000000000..bfcde4110 --- /dev/null +++ b/domains/williamsebastian.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "BaseParody", + "email": "baseparody@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/willian.json b/domains/willian.json index a8a177eda..39c7ef966 100644 --- a/domains/willian.json +++ b/domains/willian.json @@ -1,12 +1,12 @@ { - "description": "Willian Arsenio's Website", - "repo": "https://github.com/waveiro/waveiro.github.io", - "owner": { - "username": "waveiro", - "email": "", - "twitter": "@waveiro" - }, - "record": { - "CNAME": "waveiro.github.io" - } + "description": "Willian Arsenio's Website", + "repo": "https://github.com/waveiro/waveiro.github.io", + "owner": { + "username": "waveiro", + "email": "", + "twitter": "waveiro" + }, + "record": { + "CNAME": "waveiro.github.io" + } } diff --git a/domains/willo.json b/domains/willo.json index 914796fb5..e3e249498 100644 --- a/domains/willo.json +++ b/domains/willo.json @@ -1,14 +1,14 @@ { - "description": "A First Willo`s Website", - "repo": "https://github.com/WilloIzCitron/willoizcitron.github.io", - "owner": { - "username": "WilloIzCitron", - "email": "", - "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"], - "TXT": "v=spf1 include:spf.improvmx.com ~all" - } + "description": "A First Willo`s Website", + "repo": "https://github.com/WilloIzCitron/willoizcitron.github.io", + "owner": { + "username": "WilloIzCitron", + "email": "", + "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"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } } diff --git a/domains/win11-tutorial.notaperson535.json b/domains/win11-tutorial.notaperson535.json index b4219735a..05eadceeb 100644 --- a/domains/win11-tutorial.notaperson535.json +++ b/domains/win11-tutorial.notaperson535.json @@ -1,11 +1,11 @@ { - "description": "Windows 11 in HTML tutorial", - "repo": "https://github.com/notAperson535/Win11-HTML-Tutorial", - "owner": { - "username": "notAperson535", - "email": "notAperson939@gmail.com" - }, - "record": { - "CNAME": "notAperson535.github.io" - } + "description": "Windows 11 in HTML tutorial", + "repo": "https://github.com/notAperson535/Win11-HTML-Tutorial", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.github.io" + } } diff --git a/domains/win11.notaperson535.json b/domains/win11.notaperson535.json index f27c20197..795cd8bd6 100644 --- a/domains/win11.notaperson535.json +++ b/domains/win11.notaperson535.json @@ -1,11 +1,11 @@ { - "description": "My windows 11 in HTML", - "repo": "https://github.com/notAperson535/Win11-HTML", - "owner": { - "username": "notAperson535", - "email": "notAperson939@gmail.com" - }, - "record": { - "CNAME": "notAperson535.github.io" - } + "description": "My windows 11 in HTML", + "repo": "https://github.com/notAperson535/Win11-HTML", + "owner": { + "username": "notAperson535", + "email": "notAperson939@gmail.com" + }, + "record": { + "CNAME": "notAperson535.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..aff2fa0a9 --- /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..e34ab4fc9 --- /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/windows.json b/domains/windows.json deleted file mode 100644 index 779f4a2b3..000000000 --- a/domains/windows.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "my website uwu", - "repo": "https://github.com/windowscmd", - "owner": { - "username": "windowscmd", - "email": "me@astriddev.me" - }, - "record": { - "CNAME": "astridw.netlify.app" - } -} diff --git a/domains/winniepat.json b/domains/winniepat.json new file mode 100644 index 000000000..97023cd6b --- /dev/null +++ b/domains/winniepat.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RavagerEdge", + "email": "wc92226@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/winters.json b/domains/winters.json new file mode 100644 index 000000000..53c87b753 --- /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/wired.json b/domains/wired.json index 9fc9df298..9f9032ef7 100644 --- a/domains/wired.json +++ b/domains/wired.json @@ -1,12 +1,12 @@ { - "description": "This site is a little about me and some info soon", - "repo": "https://github.com/Wired-design/Wired-design.github.io", - "owner": { - "username": "Wired-design", - "email": "wireddesign@outlook.com", - "twitter": "Wired__Design" - }, - "record": { - "CNAME": "wired-design.github.io" - } + "description": "This site is a little about me and some info soon", + "repo": "https://github.com/Wired-design/Wired-design.github.io", + "owner": { + "username": "Wired-design", + "email": "wireddesign@outlook.com", + "twitter": "Wired__Design" + }, + "record": { + "CNAME": "wired-design.github.io" + } } diff --git a/domains/wiredmind.json b/domains/wiredmind.json new file mode 100644 index 000000000..b88e1903e --- /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/withercubes.json b/domains/withercubes.json index f52a26a79..71b839b74 100644 --- a/domains/withercubes.json +++ b/domains/withercubes.json @@ -1,12 +1,12 @@ { - "description": "WitherCubes' portfolio website", - "repo": "https://codeberg.org/WitherCubes/pages", - "owner": { - "username": "WitherCubes", - "email": "withercubes@protonmail.com", - "discord": "WitherCubes#2513" - }, - "record": { - "CNAME": "withercubes.codeberg.page" - } + "description": "WitherCubes' portfolio website", + "repo": "https://codeberg.org/WitherCubes/pages", + "owner": { + "username": "WitherCubes", + "email": "withercubes@protonmail.com", + "discord": "WitherCubes#2513" + }, + "record": { + "CNAME": "withercubes.codeberg.page" + } } diff --git a/domains/wizard.json b/domains/wizard.json new file mode 100644 index 000000000..f8ca65bab --- /dev/null +++ b/domains/wizard.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Rxflex", + "email": "andreysuew@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/wizq.json b/domains/wizq.json new file mode 100644 index 000000000..e39ce057b --- /dev/null +++ b/domains/wizq.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Wizqdev", + "email": "prajwal2079@gmail.com", + "discord": "778254181303451658" + }, + + "record": { + "CNAME": "proxy.private.danbot.host" + } + } + \ No newline at end of file diff --git a/domains/wkrzywiec.json b/domains/wkrzywiec.json index 7ff381617..b9ff53cba 100644 --- a/domains/wkrzywiec.json +++ b/domains/wkrzywiec.json @@ -9,4 +9,4 @@ "record": { "CNAME": "wkrzywiec.github.io" } -} +} diff --git a/domains/wm.json b/domains/wm.json new file mode 100644 index 000000000..7c1c9f373 --- /dev/null +++ b/domains/wm.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "cmdwm", + "email": "will@willm.xyz" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/wojciechzieciak.json b/domains/wojciechzieciak.json new file mode 100644 index 000000000..174683843 --- /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/wolflangtw.json b/domains/wolflangtw.json new file mode 100644 index 000000000..d619083a4 --- /dev/null +++ b/domains/wolflangtw.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "wolflangtw", + "email": "wolflang.channel@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..8dcda58b2 --- /dev/null +++ b/domains/woofer.json @@ -0,0 +1,10 @@ +{ + "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/woosh.json b/domains/woosh.json index 9123c1bb7..b59a1612a 100644 --- a/domains/woosh.json +++ b/domains/woosh.json @@ -1,11 +1,11 @@ { - "description": "idk just a domain i guess", - "repo": "https://github.com/LetMeWoosh", - "owner": { - "username": "LetMeWoosh", - "email": "me@letmewoosh.xyz" - }, - "record": { - "MX": ["mail.letmewoosh.me"] - } + "description": "idk just a domain i guess", + "repo": "https://github.com/LetMeWoosh", + "owner": { + "username": "LetMeWoosh", + "email": "me@letmewoosh.xyz" + }, + "record": { + "MX": ["mail.letmewoosh.me"] + } } diff --git a/domains/wopian.json b/domains/wopian.json index 2c2275740..2c802b68d 100644 --- a/domains/wopian.json +++ b/domains/wopian.json @@ -1,12 +1,12 @@ { - "description": "Homepage for my projects and open source contributions", - "repo": "https://github.com/wopian/wopian.me", - "owner": { - "username": "wopian", - "email": "", - "twitter": "wopian_" - }, - "record": { - "URL": "https://wopian.me" - } + "description": "Homepage for my projects and open source contributions", + "repo": "https://github.com/wopian/wopian.me", + "owner": { + "username": "wopian", + "email": "", + "twitter": "wopian_" + }, + "record": { + "URL": "https://wopian.me" + } } diff --git a/domains/worm.json b/domains/worm.json new file mode 100644 index 000000000..6b6f84ee6 --- /dev/null +++ b/domains/worm.json @@ -0,0 +1,9 @@ +{ + "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..f3a53148b --- /dev/null +++ b/domains/woundrite.json @@ -0,0 +1,9 @@ +{ + "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/woxdev.json b/domains/woxdev.json new file mode 100644 index 000000000..013e8514f --- /dev/null +++ b/domains/woxdev.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "WoxDev", + "email": "januardhodicky06@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/wrdg.json b/domains/wrdg.json index c2adc49ee..9f6c82976 100644 --- a/domains/wrdg.json +++ b/domains/wrdg.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "wrdg", "email": "wardog@wrdg.dev" - }, + }, - "record": { + "record": { "URL": "https://wrdg.net" - } } - \ No newline at end of file +} diff --git a/domains/ws.json b/domains/ws.json index b8b8a40df..ca8365fa9 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" - }, - "record": { - "CNAME": "a91c9e80-8282-444e-adb1-18be6d6ffbc2.repl.co" - } + "owner": { + "username": "ais1175", + "email": "wutau179@gmail.com" + }, + "record": { + "A": ["43.229.135.123"] + } } diff --git a/domains/wscr.json b/domains/wscr.json index 736e1c212..3245b5de3 100644 --- a/domains/wscr.json +++ b/domains/wscr.json @@ -1,11 +1,11 @@ { - "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" - } + "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/wtfdrshn.json b/domains/wtfdrshn.json new file mode 100644 index 000000000..e5adcf3cc --- /dev/null +++ b/domains/wtfdrshn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wtfdrshn", + "email": "itsmedarshan8@gmail.com" + }, + "record": { + "CNAME": "wtfdrshn.github.io" + } +} diff --git a/domains/wusong.json b/domains/wusong.json new file mode 100644 index 000000000..3a742781c --- /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..f179058a4 --- /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/wwei.json b/domains/wwei.json index 53bb1f974..7120dd89f 100644 --- a/domains/wwei.json +++ b/domains/wwei.json @@ -1,5 +1,3 @@ - - { "description": "My github", "owner": { @@ -9,4 +7,4 @@ "record": { "URL": "https://github.com/wwei-github" } -} +} diff --git a/domains/www.amulyasingh.json b/domains/www.amulyasingh.json new file mode 100644 index 000000000..e2571d9b8 --- /dev/null +++ b/domains/www.amulyasingh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "JstHuman", + "email": "ytamulya77@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/www.json b/domains/www.json index 359253458..d564ecd98 100644 --- a/domains/www.json +++ b/domains/www.json @@ -1,11 +1,11 @@ { - "description": "www.is-a.dev", - "repo": "https://github.com/is-a-dev/is-a-dev.github.io", - "owner": { - "username": "phenax", - "email": "phenax5@gmail.com" - }, - "record": { - "CNAME": "is-a-dev.github.io" - } + "description": "www.is-a.dev", + "repo": "https://github.com/is-a-dev/is-a-dev.github.io", + "owner": { + "username": "phenax", + "email": "phenax5@gmail.com" + }, + "record": { + "CNAME": "is-a-dev.github.io" + } } diff --git a/domains/wzrd.json b/domains/wzrd.json new file mode 100644 index 000000000..e8000e1fd --- /dev/null +++ b/domains/wzrd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rxflex", + "email": "andreysuew@gmail.com" + }, + "record": { + "CNAME": "russia1.route.pp.ua" + } +} diff --git a/domains/x0ba.json b/domains/x0ba.json new file mode 100644 index 000000000..c05873287 --- /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/x3ric.json b/domains/x3ric.json new file mode 100644 index 000000000..0f8780973 --- /dev/null +++ b/domains/x3ric.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "X3ric", + "email": "ericxaime@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/x4b1.json b/domains/x4b1.json new file mode 100644 index 000000000..70cf192e4 --- /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..8098364af --- /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/xabdoat.json b/domains/xabdoat.json new file mode 100644 index 000000000..6f37ab9c2 --- /dev/null +++ b/domains/xabdoat.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "xAbdoAT", + "email": "ABDO199877@gmail.com", + "discord": "943662778433032242" + }, + + "record": { + "CNAME": "xabdoat.github.io" + } + } + diff --git a/domains/xander.json b/domains/xander.json new file mode 100644 index 000000000..0c711ea8f --- /dev/null +++ b/domains/xander.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Xanderxx69", + "email": "xanderhogan13@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/xanudu.json b/domains/xanudu.json new file mode 100644 index 000000000..710f867a6 --- /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/xash.json b/domains/xash.json new file mode 100644 index 000000000..905a7c85d --- /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/xave.json b/domains/xave.json index 548bb5485..c528869a3 100644 --- a/domains/xave.json +++ b/domains/xave.json @@ -1,11 +1,11 @@ { - "description": "xa's site", - "repo": "https://github.com/grilledwindow/grilledwindow.github.io", - "owner": { - "username": "grilledwindow", - "email": "xaveang@gmail.com" - }, - "record": { - "CNAME": "grilledwindow.github.io" - } + "description": "xa's site", + "repo": "https://github.com/grilledwindow/grilledwindow.github.io", + "owner": { + "username": "grilledwindow", + "email": "xaveang@gmail.com" + }, + "record": { + "CNAME": "grilledwindow.github.io" + } } diff --git a/domains/xaxa.json b/domains/xaxa.json index 294789ef7..5671fe89f 100644 --- a/domains/xaxa.json +++ b/domains/xaxa.json @@ -1,11 +1,11 @@ { - "description": "Xaxa dev Website", - "repo": "https://github.com/333xaxa/333xaxa.github.io", - "owner": { - "username": "333xaxa", - "email": "xaxa_07x10@gmail.com" - }, - "record": { - "CNAME": "333xaxa.github.io" - } + "description": "Xaxa dev Website", + "repo": "https://github.com/333xaxa/333xaxa.github.io", + "owner": { + "username": "333xaxa", + "email": "xaxa_07x10@gmail.com" + }, + "record": { + "CNAME": "333xaxa.github.io" + } } diff --git a/domains/xcut.json b/domains/xcut.json new file mode 100644 index 000000000..05beaa829 --- /dev/null +++ b/domains/xcut.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "IQBooster", + "email": "martinskyler829@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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 new file mode 100644 index 000000000..5ab002785 --- /dev/null +++ b/domains/xdlyy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xdlyy404", + "email": "fadlyid7@gmail.com" + }, + "record": { + "URL": "https://xdlyy404.github.io" + } +} diff --git a/domains/xelxen.json b/domains/xelxen.json index 870ca2b9c..4e7112ebb 100644 --- a/domains/xelxen.json +++ b/domains/xelxen.json @@ -1,12 +1,12 @@ { - "description": "I am a dev ig", - "repo": "https://github.com/xelxen.github.io", - "owner": { - "username": "XelXen", - "email": "xelxenfox@gmail.com", - "twitter": "your-twitter-username" - }, - "record": { - "CNAME": "xelxen.github.io" - } + "description": "I am a dev ig", + "repo": "https://github.com/xelxen.github.io", + "owner": { + "username": "XelXen", + "email": "xelxenfox@gmail.com", + "twitter": "your-twitter-username" + }, + "record": { + "CNAME": "xelxen.github.io" + } } diff --git a/domains/xen.json b/domains/xen.json index 2e6040a49..f6e1d6fa8 100644 --- a/domains/xen.json +++ b/domains/xen.json @@ -1,12 +1,12 @@ { - "description": "Website for my projects", - "repo": "https://github.com/xenmods/xenmods.github.io", - "owner": { - "username": "xenmods", - "email": "ilumomin04@gmail.com", - "twitter": "momin_ilf" - }, - "record": { - "CNAME": "xenmods.github.io" - } + "description": "Website for my projects", + "repo": "https://github.com/xenmods/xenmods.github.io", + "owner": { + "username": "xenmods", + "email": "ilumomin04@gmail.com", + "twitter": "momin_ilf" + }, + "record": { + "CNAME": "xenmods.github.io" + } } diff --git a/domains/xeno.json b/domains/xeno.json new file mode 100644 index 000000000..7f8c47487 --- /dev/null +++ b/domains/xeno.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..7fe5a1135 --- /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/xenoxanite.json b/domains/xenoxanite.json new file mode 100644 index 000000000..54576903e --- /dev/null +++ b/domains/xenoxanite.json @@ -0,0 +1,11 @@ +{ + "description": "Xenoxanite portfolio", + "repo": "https://github.com/xenoxanite/xenoxanite.github.io", + "owner": { + "username": "xenoxanite", + "email": "xenoxanite@gmail.com" + }, + "record": { + "CNAME": "xenoxanite.github.io" + } +} diff --git a/domains/xevion.json b/domains/xevion.json new file mode 100644 index 000000000..954235ec0 --- /dev/null +++ b/domains/xevion.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Xevion", + "email": "xevion@xevion.dev" + }, + "record": { + "URL": "https://xevion.dev/?utm_source=is-a-dev" + } +} diff --git a/domains/xgorn.json b/domains/xgorn.json new file mode 100644 index 000000000..be34b401e --- /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/xian.json b/domains/xian.json new file mode 100644 index 000000000..dbae5eaa5 --- /dev/null +++ b/domains/xian.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xian-docdocil", + "email": "xian.docdocil@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/xiaolangkong.json b/domains/xiaolangkong.json index 57b3d7618..862e2939d 100644 --- a/domains/xiaolangkong.json +++ b/domains/xiaolangkong.json @@ -1,11 +1,11 @@ { - "description": "My personal site for my projects", - "repo": "https://github.com/xiaolangkong/xiaolangkong.github.io", - "owner": { - "username": "xiaolangkong", - "email": "xiaolangkong@protonmail.com" - }, - "record": { - "CNAME": "xiaolangkong.github.io" - } + "description": "My personal site for my projects", + "repo": "https://github.com/xiaolangkong/xiaolangkong.github.io", + "owner": { + "username": "xiaolangkong", + "email": "xiaolangkong@protonmail.com" + }, + "record": { + "CNAME": "xiaolangkong.github.io" + } } diff --git a/domains/xiaolei.json b/domains/xiaolei.json index 4031dd79e..1f48ff3e0 100644 --- a/domains/xiaolei.json +++ b/domains/xiaolei.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "zzzs", - "email": "863837949@qq.com" - }, - "record": { - "URL": "https://github.com/zzzs" - } + "owner": { + "username": "zzzs", + "email": "863837949@qq.com" + }, + "record": { + "URL": "https://github.com/zzzs" + } } diff --git a/domains/xiaowu.json b/domains/xiaowu.json new file mode 100644 index 000000000..ffd1173a1 --- /dev/null +++ b/domains/xiaowu.json @@ -0,0 +1,9 @@ +{ + "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..156be1365 --- /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/xiaozhe.json b/domains/xiaozhe.json new file mode 100644 index 000000000..56c0f72d4 --- /dev/null +++ b/domains/xiaozhe.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "shizhhe", + "email": "meps105195@go.edu.tw" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/xiaozhu2007.json b/domains/xiaozhu2007.json new file mode 100644 index 000000000..7e0e8f26d --- /dev/null +++ b/domains/xiaozhu2007.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "xiaozhu2007", + "email": "lz19986912007@163.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/xikofornai.json b/domains/xikofornai.json new file mode 100644 index 000000000..188744106 --- /dev/null +++ b/domains/xikofornai.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "99ogx", + "email": "kr060535@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/xinful.json b/domains/xinful.json new file mode 100644 index 000000000..6bd74be29 --- /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/xinfull.json b/domains/xinfull.json new file mode 100644 index 000000000..72d409779 --- /dev/null +++ b/domains/xinfull.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xinfull", + "email": "robertkitunda89@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/xiro.json b/domains/xiro.json new file mode 100644 index 000000000..823dcad7f --- /dev/null +++ b/domains/xiro.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "XiroXD", + "email": "xiro@duck.com", + "discord": "owofied" + }, + "record": { + "CNAME": "personal-page-3ps.pages.dev" + } +} diff --git a/domains/xkotelek.json b/domains/xkotelek.json new file mode 100644 index 000000000..7e886d9e4 --- /dev/null +++ b/domains/xkotelek.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xKotelek", + "email": "contact@kotelek.dev" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/xmdb.json b/domains/xmdb.json deleted file mode 100644 index 9a57bcba1..000000000 --- a/domains/xmdb.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "xMdb's portfolio website", - "repo": "https://github.com/xMdb", - "owner": { - "username": "xMdb", - "email": "", - "twitter": "xmdbmatt" - }, - "record": { - "CNAME": "mgrif-portfolio.netlify.app" - } -} diff --git a/domains/xndr.json b/domains/xndr.json deleted file mode 100644 index 68e604c99..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": "https://twitter.com/XandrrrrR6" - }, - "record": { - "A": ["173.249.30.209"] - } -} diff --git a/domains/xorisx.json b/domains/xorisx.json new file mode 100644 index 000000000..1574a8324 --- /dev/null +++ b/domains/xorisx.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vividcolorss", + "email": "68936a@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/xoronium.json b/domains/xoronium.json new file mode 100644 index 000000000..2c4adf330 --- /dev/null +++ b/domains/xoronium.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "xoronium", + "email": "theglocksaint1535@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/xorro.json b/domains/xorro.json new file mode 100644 index 000000000..a2a94a22b --- /dev/null +++ b/domains/xorro.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "crllect", + "email": "crllect@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/xqwtxon.json b/domains/xqwtxon.json deleted file mode 100644 index 1a52a2ece..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/xram.json b/domains/xram.json new file mode 100644 index 000000000..bf17ec0a0 --- /dev/null +++ b/domains/xram.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "azcraze", + "email": "ash.zeit@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/xrcs.json b/domains/xrcs.json index ff6bcc2e6..269fd175b 100644 --- a/domains/xrcs.json +++ b/domains/xrcs.json @@ -2,9 +2,9 @@ "description": "xrcs personal website", "repo": "https://github.com/xrcss/xrcss.github.io", "owner": { - "username": "xrcss", - "discord": "xrcs#0001", - "email": "" + "username": "xrcss", + "discord": "xrcs#0001", + "email": "" }, "record": { "CNAME": "xrcss.github.io" diff --git a/domains/xream.json b/domains/xream.json index 9ab9af302..4416454d7 100644 --- a/domains/xream.json +++ b/domains/xream.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "xream", "email": "xreamxu@gmail.com" - }, + }, - "record": { + "record": { "A": ["150.230.219.72"] - } } - \ No newline at end of file +} diff --git a/domains/xryshirfxn.json b/domains/xryshirfxn.json index 2a6d5e2aa..66bc525bb 100644 --- a/domains/xryshirfxn.json +++ b/domains/xryshirfxn.json @@ -1,12 +1,12 @@ { - "description": "Personal website", - "repo": "https://github.com/xryshirfxn/xryshirfxn.github.io", - "owner": { - "username": "xryshirfxn", - "email": "", - "twitter": "xryshirfxn" - }, - "record": { - "CNAME": "xryshirfxn.github.io" - } + "description": "Personal website", + "repo": "https://github.com/xryshirfxn/xryshirfxn.github.io", + "owner": { + "username": "xryshirfxn", + "email": "", + "twitter": "xryshirfxn" + }, + "record": { + "CNAME": "xryshirfxn.github.io" + } } diff --git a/domains/xthe.json b/domains/xthe.json new file mode 100644 index 000000000..17237b3ee --- /dev/null +++ b/domains/xthe.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/SirXThe/sirxthe.github.io", + "owner": { + "username": "SirXThe", + "email": "sirxthe@gmail.com", + "discord": "XThe#4695" + }, + "record": { + "CNAME": "sirxthe.github.io" + } +} diff --git a/domains/xuanwu.json b/domains/xuanwu.json new file mode 100644 index 000000000..9781f7b44 --- /dev/null +++ b/domains/xuanwu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "vlux", + "email": "vluxyue@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/xuefeng.json b/domains/xuefeng.json new file mode 100644 index 000000000..ffd1173a1 --- /dev/null +++ b/domains/xuefeng.json @@ -0,0 +1,9 @@ +{ + "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..1f8d90bdd 100644 --- a/domains/xuxxi.json +++ b/domains/xuxxi.json @@ -2,10 +2,10 @@ "description": "XUXXI", "repo": "https://github.com/XUXXI/xuxxi.github.io", "owner": { - "username": "methaine", - "email": "keter@keemail.me" + "username": "methaine", + "email": "keter@keemail.me" }, "record": { - "CNAME": "xuxxi.github.io" + "CNAME": "xuxxi.github.io" } } diff --git a/domains/xyter.json b/domains/xyter.json index bd1433864..39af6b316 100644 --- a/domains/xyter.json +++ b/domains/xyter.json @@ -1,11 +1,11 @@ { - "description": "Xyter an discord.js bot developed by students.", - "repo": "https://github.com/ZynerOrg/xyter", - "owner": { - "username": "VermiumSifell", - "email": "vermium@zyner.org" - }, - "record": { - "URL": "https://xyter.zyner.org/" - } + "description": "Xyter an discord.js bot developed by students.", + "repo": "https://github.com/ZynerOrg/xyter", + "owner": { + "username": "VermiumSifell", + "email": "vermium@zyner.org" + }, + "record": { + "URL": "https://xyter.zyner.org" + } } diff --git a/domains/xzz.json b/domains/xzz.json new file mode 100644 index 000000000..585244a4f --- /dev/null +++ b/domains/xzz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xzzjs", + "email": "andrea.andrea1009olp@gmail.com" + }, + "record": { + "A": ["34.111.254.92"] + } +} diff --git a/domains/ya.json b/domains/ya.json deleted file mode 100644 index 2cf26a0dd..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/yacineboussoufa.json b/domains/yacineboussoufa.json new file mode 100644 index 000000000..1bc6e0447 --- /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..88aa196ac --- /dev/null +++ b/domains/yacoreq.json @@ -0,0 +1,13 @@ + +{ + "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..0b42f8f5d 100644 --- a/domains/yaelmassieu.json +++ b/domains/yaelmassieu.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "bystrokr", "email": "jamesisajamessx@gmail.com" - }, - "record": { + }, + "record": { "A": ["66.45.229.178"] - } } - \ No newline at end of file +} diff --git a/domains/yahya-rabii.json b/domains/yahya-rabii.json index 48a137f1d..03c7ef839 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/yairmedina.json b/domains/yairmedina.json new file mode 100644 index 000000000..d84d370e3 --- /dev/null +++ b/domains/yairmedina.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "DarknessRisesFromBelow", + "email": "spam.me.please.do.it@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yajat.json b/domains/yajat.json deleted file mode 100644 index 72c522f22..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/yajtpg.json b/domains/yajtpg.json index c297e9d3f..8e523da7e 100644 --- a/domains/yajtpg.json +++ b/domains/yajtpg.json @@ -1,11 +1,11 @@ { - "description": "YajTPG's website", - "repo": "https://github.com/YajTPG/yajtpg.github.io", - "owner": { - "username": "YajTPG", - "email": "yajtpg@gmail.com" - }, - "record": { - "CNAME": "yajtpg.pages.dev" - } + "description": "YajTPG's website", + "repo": "https://github.com/YajTPG/yajtpg.github.io", + "owner": { + "username": "YajTPG", + "email": "yajtpg@gmail.com" + }, + "record": { + "CNAME": "yajtpg.pages.dev" + } } diff --git a/domains/yakisan.json b/domains/yakisan.json new file mode 100644 index 000000000..14f859630 --- /dev/null +++ b/domains/yakisan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "efeyksn", + "email": "mefeyakisan@icloud.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yakiyo.json b/domains/yakiyo.json index 9c53df721..952cb672f 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.json b/domains/yaman.json deleted file mode 100644 index c56f4bd1d..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 new file mode 100644 index 000000000..2b5ed4edd --- /dev/null +++ b/domains/yandao.json @@ -0,0 +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" + } +} diff --git a/domains/yang.json b/domains/yang.json index 084c11290..2c9231821 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" + "username": "xuchao996", + "email": "chao.xu996@gmail.com" }, "record": { "CNAME": "xuchao996.github.io" } -} +} diff --git a/domains/yanmaker.json b/domains/yanmaker.json index 09f2bd9ab..fe92fbbb0 100644 --- a/domains/yanmaker.json +++ b/domains/yanmaker.json @@ -1,11 +1,11 @@ { - "description": "My about me website", - "repo": "https://github.com/YanMaker/YanMaker", - "owner": { - "username": "YanMaker", - "email": "whodis2022@outlook.com" - }, - "record": { - "CNAME": "yanmaker.github.io" - } + "description": "My about me website", + "repo": "https://github.com/YanMaker/YanMaker", + "owner": { + "username": "YanMaker", + "email": "whodis2022@outlook.com" + }, + "record": { + "CNAME": "yanmaker.github.io" + } } diff --git a/domains/yash-khattar.json b/domains/yash-khattar.json new file mode 100644 index 000000000..6dec7f9bc --- /dev/null +++ b/domains/yash-khattar.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Yash-Khattar", + "email": "yashkhattar73@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yash-poojara.json b/domains/yash-poojara.json new file mode 100644 index 000000000..d367f7f30 --- /dev/null +++ b/domains/yash-poojara.json @@ -0,0 +1,11 @@ +{ + "description": "Yash Poojara Profile.", + "repo": "https://github.com/yash-poojara/yash-poojara.github.io", + "owner": { + "username": "yash-poojara", + "email": "" + }, + "record": { + "CNAME": "yash-poojara.github.io" + } +} diff --git a/domains/yash.json b/domains/yash.json new file mode 100644 index 000000000..0662214ad --- /dev/null +++ b/domains/yash.json @@ -0,0 +1,12 @@ +{ + "description": "Link to my portfolio site.", + "repo": "https://github.com/YashkShrivas4491/Terminal_Portfolio", + "owner": { + "username": "YashkShrivas4491", + "email": "kumaryash4491@gmail.com", + "twitter": "YashKumarS4491" + }, + "record": { + "CNAME": "yashkshrivas4491.github.io" + } +} diff --git a/domains/yashas.json b/domains/yashas.json index 0aab88392..23ddc48d5 100644 --- a/domains/yashas.json +++ b/domains/yashas.json @@ -1,11 +1,11 @@ { - "description": "yashas.is-a.dev.", - "repo": "https://github.com/yashas9492", - "owner": { - "username": "Yashas9492", - "email": "yashas.codes@gmail.com" - }, - "record": { - "CNAME": "yashas9492.github.io" - } + "description": "yashas.is-a.dev.", + "repo": "https://github.com/yashas9492", + "owner": { + "username": "Yashas9492", + "email": "yashas.codes@gmail.com" + }, + "record": { + "CNAME": "yashas9492.github.io" + } } 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/yashh-chauhan.json b/domains/yashh-chauhan.json new file mode 100644 index 000000000..b2f12bb79 --- /dev/null +++ b/domains/yashh-chauhan.json @@ -0,0 +1,11 @@ +{ + "description": "Yash Chauhan Profile.", + "repo": "https://github.com/yashh-chauhan/yashh-chauhan.github.io", + "owner": { + "username": "yashh-chauhan", + "email": "" + }, + "record": { + "CNAME": "yashh-chauhan.github.io" + } +} diff --git a/domains/yashraj.json b/domains/yashraj.json new file mode 100644 index 000000000..74e9eaf11 --- /dev/null +++ b/domains/yashraj.json @@ -0,0 +1,12 @@ +{ + "description": "My Personal Portfolio", + "repo": "https://github.com/yashraj-n/yashraj-n.github.io", + "owner": { + "username": "yashraj-n", + "email": "ynnarke52@gmail.com", + "twitter": "NarkeYashraj" + }, + "record": { + "CNAME": "yashraj-n.github.io" + } +} diff --git a/domains/yashrao.json b/domains/yashrao.json new file mode 100644 index 000000000..d4d4ed9c8 --- /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/yashwardhan.json b/domains/yashwardhan.json new file mode 100644 index 000000000..00ea8aed3 --- /dev/null +++ b/domains/yashwardhan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yashwardhan333666", + "email": "yashwardhan333666@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yasser.json b/domains/yasser.json new file mode 100644 index 000000000..09c281ae6 --- /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..2aac3bc04 --- /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..4af6c7faf --- /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/yassinm.json b/domains/yassinm.json new file mode 100644 index 000000000..7d030b479 --- /dev/null +++ b/domains/yassinm.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yassinmoussamih", + "email": "yassinmoussamih7@gmail.com" + }, + + "record": { + "URL": "https://yassinmoussamih.vercel.app" + } +} diff --git a/domains/yc-gen.json b/domains/yc-gen.json new file mode 100644 index 000000000..63164b131 --- /dev/null +++ b/domains/yc-gen.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Marsi591", + "email": "marsi591707@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/yedu.json b/domains/yedu.json new file mode 100644 index 000000000..77226052c --- /dev/null +++ b/domains/yedu.json @@ -0,0 +1,12 @@ +{ + "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/yeetedwin.json b/domains/yeetedwin.json index 8caf214e6..d8e77c3ae 100644 --- a/domains/yeetedwin.json +++ b/domains/yeetedwin.json @@ -1,11 +1,11 @@ { - "description": "This website is a my personal portfolio", - "repo": "https://github.com/YEETEDWIN/YEETEDWIN.github.io", - "owner": { - "username": "YEETEDWIN", - "email": "yeetedwin@protonmail.com" - }, - "record": { - "CNAME": "yeetedwin.github.io" - } + "description": "This website is a my personal portfolio", + "repo": "https://github.com/YEETEDWIN/YEETEDWIN.github.io", + "owner": { + "username": "YEETEDWIN", + "email": "yeetedwin@protonmail.com" + }, + "record": { + "CNAME": "yeetedwin.github.io" + } } diff --git a/domains/yef.json b/domains/yef.json new file mode 100644 index 000000000..c3cf60175 --- /dev/null +++ b/domains/yef.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "idislikeapples", + "email": "jeremyq33@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yejun.json b/domains/yejun.json index cc91df80f..afaebfb75 100644 --- a/domains/yejun.json +++ b/domains/yejun.json @@ -1,11 +1,11 @@ { - "description": "Just my personal website :^)", - "repo": "https://github.com/SS-13/SS-13.github.io", - "owner": { - "username": "yejun", - "email": "sammffl@gmail.com" - }, - "record": { - "CNAME": "yejun.tech" - } + "description": "Just my personal website :^)", + "repo": "https://github.com/SS-13/SS-13.github.io", + "owner": { + "username": "yejun", + "email": "sammffl@gmail.com" + }, + "record": { + "CNAME": "yejun.tech" + } } diff --git a/domains/yeppiidev.json b/domains/yeppiidev.json index 20a597c5b..582e6dd2f 100644 --- a/domains/yeppiidev.json +++ b/domains/yeppiidev.json @@ -9,4 +9,4 @@ "record": { "CNAME": "yeppiidev.github.io" } -} +} diff --git a/domains/yerin.json b/domains/yerin.json index 26a12f334..2941a0406 100644 --- a/domains/yerin.json +++ b/domains/yerin.json @@ -1,10 +1,10 @@ { - "repo": "https://github.com/wonderlandpark/yerin-is-a-dev", - "owner": { - "username": "wonderlandpark", - "email": "wonderlandpark@callisto.team" - }, - "record": { - "CNAME": "wonderlandpark.github.io" - } + "repo": "https://github.com/wonderlandpark/yerin-is-a-dev", + "owner": { + "username": "wonderlandpark", + "email": "wonderlandpark@callisto.team" + }, + "record": { + "CNAME": "wonderlandpark.github.io" + } } diff --git a/domains/yes.json b/domains/yes.json new file mode 100644 index 000000000..dfdb91c79 --- /dev/null +++ b/domains/yes.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "victorgeel", + "email": "freevpn537@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yescyyt.json b/domains/yescyyt.json index 9a9232752..26d8fe612 100644 --- a/domains/yescyyt.json +++ b/domains/yescyyt.json @@ -1,12 +1,11 @@ { - "description": "yescyyt's website (duh)", - "repo": "https://github.com/yescyyt/yescyyt.github.io", - "owner": { - "username": "yescyyt", - "email": "amberisamab@gmail.com", - "twitter": "" - }, - "record": { - "CNAME": "yescyyt.github.io" - } + "description": "yescyyt's website (duh)", + "repo": "https://github.com/yescyyt/yescyyt.github.io", + "owner": { + "username": "yescyyt", + "email": "amberisamab@gmail.com" + }, + "record": { + "CNAME": "yescyyt.github.io" + } } diff --git a/domains/yfa.json b/domains/yfa.json new file mode 100644 index 000000000..4d6218eb2 --- /dev/null +++ b/domains/yfa.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "CNAME": "yfa-cev.pages.dev" + } +} diff --git a/domains/yfadev.json b/domains/yfadev.json new file mode 100644 index 000000000..8ee16d3b3 --- /dev/null +++ b/domains/yfadev.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "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..e2a9351cc --- /dev/null +++ b/domains/yieldray.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "YieldRay", + "email": "yieldray@outlook.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yiff.json b/domains/yiff.json index df1736eeb..ea54e8caa 100644 --- a/domains/yiff.json +++ b/domains/yiff.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "DonovanDMC", - "email": "admin@furrybot.co", - "twitter": "https://twitter.com/Donovan_DMC", - "discord": "Donovan_DMC#3621" - }, - "record": { - "URL": "https://furry.cool" - } + "owner": { + "username": "DonovanDMC", + "email": "admin@furrybot.co", + "twitter": "Donovan_DMC", + "discord": "Donovan_DMC#3621" + }, + "record": { + "URL": "https://furry.cool" + } } 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/yiro.json b/domains/yiro.json index aa4225366..165da7018 100644 --- a/domains/yiro.json +++ b/domains/yiro.json @@ -1,11 +1,11 @@ { - "description": "Yinier's personal developer website", - "repo": "https://github.com/yrmartinez/yrmartinez.github.io", - "owner": { - "username": "yrmartinez", - "email": "yiromartinez91@gmail.com" - }, - "record": { - "CNAME": "yrmartinez.github.io" - } + "description": "Yinier's personal developer website", + "repo": "https://github.com/yrmartinez/yrmartinez.github.io", + "owner": { + "username": "yrmartinez", + "email": "yiromartinez91@gmail.com" + }, + "record": { + "CNAME": "yrmartinez.github.io" + } } diff --git a/domains/yiyi.json b/domains/yiyi.json new file mode 100644 index 000000000..397b37a1c --- /dev/null +++ b/domains/yiyi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "danhuaxiansheng", + "email": "646042371@qq.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yodeput.json b/domains/yodeput.json new file mode 100644 index 000000000..a8deecf01 --- /dev/null +++ b/domains/yodeput.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yodeput", + "email": "yodeput@gmail.com" + }, + "record": { + "A": ["168.138.187.54"] + } +} diff --git a/domains/yogi.json b/domains/yogi.json new file mode 100644 index 000000000..a8deecf01 --- /dev/null +++ b/domains/yogi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yodeput", + "email": "yodeput@gmail.com" + }, + "record": { + "A": ["168.138.187.54"] + } +} diff --git a/domains/yogidputra.json b/domains/yogidputra.json new file mode 100644 index 000000000..a8deecf01 --- /dev/null +++ b/domains/yogidputra.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yodeput", + "email": "yodeput@gmail.com" + }, + "record": { + "A": ["168.138.187.54"] + } +} diff --git a/domains/yoitsrt.json b/domains/yoitsrt.json new file mode 100644 index 000000000..683ae61a9 --- /dev/null +++ b/domains/yoitsrt.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "rtgamingwdt", + "email": "rustytrim11@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yokaicord.json b/domains/yokaicord.json new file mode 100644 index 000000000..defa72f30 --- /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/yolobnb.json b/domains/yolobnb.json index 435fa6403..42a30bb00 100644 --- a/domains/yolobnb.json +++ b/domains/yolobnb.json @@ -1,11 +1,11 @@ { - "description": "My personal website", - "repo": "https://github.com/yolobnb/yolobnb.github.io", - "owner": { - "username": "yolobnb", - "email": "yooloobnb@protonmail.com" - }, - "record": { - "CNAME": "yolobnb.github.io" - } + "description": "My personal website", + "repo": "https://github.com/yolobnb/yolobnb.github.io", + "owner": { + "username": "yolobnb", + "email": "yooloobnb@protonmail.com" + }, + "record": { + "CNAME": "yolobnb.github.io" + } } diff --git a/domains/yootou.json b/domains/yootou.json index b4ac67066..48b89b83b 100644 --- a/domains/yootou.json +++ b/domains/yootou.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "yu-tou", - "email": "xinyu198736@gmail.com", - "twitter": "0xYootou", - "discord": "yootou#7800" - }, - "record": { - "URL": "https://github.com/yu-tou" - } + "owner": { + "username": "yu-tou", + "email": "xinyu198736@gmail.com", + "twitter": "0xYootou", + "discord": "yootou#7800" + }, + "record": { + "URL": "https://github.com/yu-tou" + } } diff --git a/domains/yorodm.json b/domains/yorodm.json index 9e43b1551..9d8ea3954 100644 --- a/domains/yorodm.json +++ b/domains/yorodm.json @@ -1,11 +1,11 @@ { - "description": "/home/yorodm", - "repo": "https://github.com/yorodm/yorodm.github.io", - "owner": { - "username": "yorodm", - "email": "yoandy.rmartinez@gmail.com" - }, - "record": { - "CNAME": "yorodm.github.io" - } + "description": "/home/yorodm", + "repo": "https://github.com/yorodm/yorodm.github.io", + "owner": { + "username": "yorodm", + "email": "yoandy.rmartinez@gmail.com" + }, + "record": { + "CNAME": "yorodm.github.io" + } } diff --git a/domains/yose.json b/domains/yose.json new file mode 100644 index 000000000..8a06a608d --- /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/youfoundalpha.json b/domains/youfoundalpha.json new file mode 100644 index 000000000..2e76caa50 --- /dev/null +++ b/domains/youfoundalpha.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "YouFoundAlpha", + "email": "alpha@alpha.is-a.dev", + "Discord": "661121998830960651", + "Twitter": "YouFoundAlpha", + "GitHub": "YouFoundAlpha", + "GitLab": "YouFoundAlpha", + "Mastodon": "@YouFoundAlpha@mastodon.social" + }, + "record": { + "URL": "https://alpha.is-a.dev" + } +} diff --git a/domains/youple.json b/domains/youple.json new file mode 100644 index 000000000..7a24a7467 --- /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..f5d16fdcf --- /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/yourmom.json b/domains/yourmom.json new file mode 100644 index 000000000..adb8a3df9 --- /dev/null +++ b/domains/yourmom.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "RipAngelhacks", + "email": "ojedallopezangel@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yourtilak.json b/domains/yourtilak.json new file mode 100644 index 000000000..ebcdc84c6 --- /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/yousefzidan.json b/domains/yousefzidan.json new file mode 100644 index 000000000..33417de64 --- /dev/null +++ b/domains/yousefzidan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "0x0jx", + "email": "0x0jx@proton.me" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/youssef.json b/domains/youssef.json new file mode 100644 index 000000000..65c2532d1 --- /dev/null +++ b/domains/youssef.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "youssefmahboub", + "email": "szeropercent@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yozie.json b/domains/yozie.json new file mode 100644 index 000000000..e674f39d2 --- /dev/null +++ b/domains/yozie.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "YozieB", + "email": "mrfreeze987@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yozieb.json b/domains/yozieb.json new file mode 100644 index 000000000..e674f39d2 --- /dev/null +++ b/domains/yozieb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "YozieB", + "email": "mrfreeze987@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yozieeee.json b/domains/yozieeee.json new file mode 100644 index 000000000..e674f39d2 --- /dev/null +++ b/domains/yozieeee.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "YozieB", + "email": "mrfreeze987@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ypratham.json b/domains/ypratham.json index eeaed2906..a81e8d779 100644 --- a/domains/ypratham.json +++ b/domains/ypratham.json @@ -1,11 +1,11 @@ { - "description": "Pratham Yadav Portfolio", - "repo": "https://github.com/ypratham/portfolio.github.io", - "owner": { - "username": "ypratahm", - "email": "ypratham0014@gmail.com" - }, - "record": { - "CNAME": "ypratham.github.io" - } + "description": "Pratham Yadav Portfolio", + "repo": "https://github.com/ypratham/portfolio.github.io", + "owner": { + "username": "ypratahm", + "email": "ypratham0014@gmail.com" + }, + "record": { + "CNAME": "ypratham.github.io" + } } diff --git a/domains/ysfchn.json b/domains/ysfchn.json index 4ba9d55af..5c6c99d44 100644 --- a/domains/ysfchn.json +++ b/domains/ysfchn.json @@ -1,11 +1,11 @@ { - "description": "ysfchn's personal website", - "repo": "https://github.com/ysfchn", - "owner": { - "username": "ysfchn", - "email": "hi@ysfchn.com" - }, - "record": { - "URL": "https://ysfchn.com" - } + "description": "ysfchn's personal website", + "repo": "https://github.com/ysfchn", + "owner": { + "username": "ysfchn", + "email": "hi@ysfchn.com" + }, + "record": { + "URL": "https://ysfchn.com" + } } diff --git a/domains/yt.amulyasingh.json b/domains/yt.amulyasingh.json new file mode 100644 index 000000000..77aeb7865 --- /dev/null +++ b/domains/yt.amulyasingh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AMULYASing", + "email": "amulyasingh370@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ytdl.mrj.json b/domains/ytdl.mrj.json new file mode 100644 index 000000000..21d629caf --- /dev/null +++ b/domains/ytdl.mrj.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "MRJ-Badshah", + "email": "illegalhacker2.0@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "MX": ["hosts.is-a.dev"], + "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all" + } +} diff --git a/domains/yug.json b/domains/yug.json new file mode 100644 index 000000000..bde9266e0 --- /dev/null +++ b/domains/yug.json @@ -0,0 +1,12 @@ +{ + "description": "My website", + "repo": "https://github.com/YUG38/YUG38.github.io", + "owner": { + "username": "YUG38", + "email": "4yugpatel123@gmail.com", + "discord": "name_yug" + }, + "record": { + "CNAME": "YUG38.github.io" + } +} diff --git a/domains/yujia.json b/domains/yujia.json index 515025c08..b09f351e2 100644 --- a/domains/yujia.json +++ b/domains/yujia.json @@ -1,11 +1,11 @@ { - "description": "Yujia's Magic", - "repo": "https://github.com/YujiaY", - "owner": { - "username": "YujiaY", - "email": "aujackyuan@gmail.com" - }, - "record": { - "CNAME": "YujiaY.github.io" - } + "description": "Yujia's Magic", + "repo": "https://github.com/YujiaY", + "owner": { + "username": "YujiaY", + "email": "aujackyuan@gmail.com" + }, + "record": { + "CNAME": "YujiaY.github.io" + } } diff --git a/domains/yuk1ch.json b/domains/yuk1ch.json index 5580679de..b7d906db9 100644 --- a/domains/yuk1ch.json +++ b/domains/yuk1ch.json @@ -1,11 +1,11 @@ { - "owner": { - "username": "ImRaid", - "email": "itsraidlol@gmail.com", - "discord":"! Yuk1ch#7484", - "telegram": "@Yuk1ch" - }, - "record": { - "CNAME": "d1d16500-13c2-4fc8-a658-87d258da2316.id.repl.co" - } + "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/yuk7.json b/domains/yuk7.json index ee1c875ee..31d204df6 100644 --- a/domains/yuk7.json +++ b/domains/yuk7.json @@ -1,11 +1,11 @@ { - "description": "yuk7 personal website", - "repo": "https://github.com/yuk7/yuk7.github.io", - "owner": { - "username": "yuk7", - "email": "yukx00@gmail.com" - }, - "record": { - "CNAME": "yuk7.github.io" - } + "description": "yuk7 personal website", + "repo": "https://github.com/yuk7/yuk7.github.io", + "owner": { + "username": "yuk7", + "email": "yukx00@gmail.com" + }, + "record": { + "CNAME": "yuk7.github.io" + } } diff --git a/domains/yuki.json b/domains/yuki.json new file mode 100644 index 000000000..427dde50c --- /dev/null +++ b/domains/yuki.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "YukiVN", + "email": "mejmayfoof@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yukii.json b/domains/yukii.json new file mode 100644 index 000000000..392151f00 --- /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/yuksel.json b/domains/yuksel.json index 8b214e218..c29660f6c 100644 --- a/domains/yuksel.json +++ b/domains/yuksel.json @@ -1,11 +1,11 @@ { - "description": "Yuksel Beyti's personal developer website", - "repo": "https://github.com/yuks/yuks.github.io", - "owner": { - "username": "yuks", - "email": "admin@yukselbeyti.com" - }, - "record": { - "CNAME": "yuks.github.io" - } + "description": "Yuksel Beyti's personal developer website", + "repo": "https://github.com/yuks/yuks.github.io", + "owner": { + "username": "yuks", + "email": "admin@yukselbeyti.com" + }, + "record": { + "CNAME": "yuks.github.io" + } } diff --git a/domains/yum.json b/domains/yum.json deleted file mode 100644 index f8e2cb942..000000000 --- a/domains/yum.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "yum's corner of the web.", - "owner": { - "username": "yum", - "email": "antriksh.timepass@gmail.com" - }, - "record": { - "CNAME": "yummyweb.vercel.app" - } -} diff --git a/domains/yumi.json b/domains/yumi.json new file mode 100644 index 000000000..ecee8e7ba --- /dev/null +++ b/domains/yumi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yuminanase", + "email": "akosifujiph@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yuphie.json b/domains/yuphie.json new file mode 100644 index 000000000..fd1761ddf --- /dev/null +++ b/domains/yuphie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yuphiedev", + "email": "mizuto.discord@gmail.com" + }, + "record": { + "URL": "https://yuphie.vercel.app" + } +} diff --git a/domains/yuphiee.json b/domains/yuphiee.json new file mode 100644 index 000000000..fd1761ddf --- /dev/null +++ b/domains/yuphiee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yuphiedev", + "email": "mizuto.discord@gmail.com" + }, + "record": { + "URL": "https://yuphie.vercel.app" + } +} diff --git a/domains/yurihsq.json b/domains/yurihsq.json index 3694e7044..c8a1a2c86 100644 --- a/domains/yurihsq.json +++ b/domains/yurihsq.json @@ -1,11 +1,9 @@ - - { - "owner": { +{ + "owner": { "username": "Mai1ii", "email": "micomacabali14@gmail.com" - }, - "record": { + }, + "record": { "CNAME": "mai1ii.github.io" - } } - \ No newline at end of file +} 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/yush.json b/domains/yush.json index 3bc39faf9..463c741ff 100644 --- a/domains/yush.json +++ b/domains/yush.json @@ -1,11 +1,11 @@ -{ - "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/yusuf-rawat.json b/domains/yusuf-rawat.json index 1cc3c2564..785cc751c 100644 --- a/domains/yusuf-rawat.json +++ b/domains/yusuf-rawat.json @@ -1,10 +1,10 @@ { - "description": "this a link to my github profile.", - "owner": { - "username": "yusuf007r", - "email": "yusufmaster7@gmail.com" - }, - "record": { - "URL": "https://github.com/Yusuf007R" - } + "description": "this a link to my github profile.", + "owner": { + "username": "yusuf007r", + "email": "yusufmaster7@gmail.com" + }, + "record": { + "URL": "https://github.com/Yusuf007R" + } } diff --git a/domains/yusuf.json b/domains/yusuf.json index 4cb37f54e..5276831e4 100644 --- a/domains/yusuf.json +++ b/domains/yusuf.json @@ -1,11 +1,11 @@ { - "description": "My Github pages portfolio", - "repo": "https://github.com/YAOfficial/portfolio/tree/gh-pages", - "owner": { - "username": "YAOfficial", - "email": "yahumble1@gmail.com" - }, - "record": { - "CNAME": "yaofficial.github.io" - } + "description": "My Github pages portfolio", + "repo": "https://github.com/YAOfficial/portfolio/tree/gh-pages", + "owner": { + "username": "YAOfficial", + "email": "yahumble1@gmail.com" + }, + "record": { + "CNAME": "yaofficial.github.io" + } } diff --git a/domains/yuto.json b/domains/yuto.json index c29a53d6a..c5d071c45 100644 --- a/domains/yuto.json +++ b/domains/yuto.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "starptr", - "email": "yuto@berkeley.edu" - }, - "description": "Personal website", - "record": { - "URL": "https://yart.me" - } + "owner": { + "username": "starptr", + "email": "yuto@berkeley.edu" + }, + "description": "Personal website", + "record": { + "URL": "https://yart.me" + } } diff --git a/domains/yutong.json b/domains/yutong.json new file mode 100644 index 000000000..758a3e91c --- /dev/null +++ b/domains/yutong.json @@ -0,0 +1,11 @@ +{ + "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..12f82471b 100644 --- a/domains/yuukari.json +++ b/domains/yuukari.json @@ -4,9 +4,9 @@ "owner": { "username": "Yuukari", "email": "yuukarichan@yandex.com", - "telegram": "@iamyuukari" + "telegram": "iamyuukari" }, "record": { "CNAME": "yuukari.github.io" } -} \ No newline at end of file +} diff --git a/domains/yuuto.json b/domains/yuuto.json new file mode 100644 index 000000000..f8426828c --- /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/yuyu.json b/domains/yuyu.json new file mode 100644 index 000000000..f3bb3e125 --- /dev/null +++ b/domains/yuyu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yuyulbm", + "email": "Jesus71236gaming@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/yuzuki.json b/domains/yuzuki.json new file mode 100644 index 000000000..4fbf8debd --- /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 new file mode 100644 index 000000000..b760ec7d1 --- /dev/null +++ b/domains/yxlr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yxlr123", + "email": "dbh2858304517@gmail.com" + }, + "record": { + "CNAME": "yxlr123.github.io" + } +} diff --git a/domains/yyw.json b/domains/yyw.json new file mode 100644 index 000000000..362dad048 --- /dev/null +++ b/domains/yyw.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "yywbadm", + "email": "yyw.981031@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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 new file mode 100644 index 000000000..8b9cff2d5 --- /dev/null +++ b/domains/z4xi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "z4xi", + "email": "z4xi@shitposting.expert" + }, + "record": { + "URL": "https://velvety-granita-c85dd5.netlify.app" + } +} diff --git a/domains/zaid-kadri.json b/domains/zaid-kadri.json new file mode 100644 index 000000000..579115611 --- /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/zaid.json b/domains/zaid.json index 76668dabd..289bdd46d 100644 --- a/domains/zaid.json +++ b/domains/zaid.json @@ -1,12 +1,12 @@ { - "description": "Zaid's Personal Website", - "repo": "https://github.com/zaidmukaddam/zaidmukaddam.github.io", - "owner": { - "username": "zaidmukaddam", - "email": "zaidlunatic1@gmail", - "twitter": "Zaid08079154" - }, - "record": { - "CNAME": "zaidmukaddam.github.io" - } + "description": "Zaid's Personal Website", + "repo": "https://github.com/zaidmukaddam/zaidmukaddam.github.io", + "owner": { + "username": "zaidmukaddam", + "email": "zaidlunatic1@gmail", + "twitter": "Zaid08079154" + }, + "record": { + "CNAME": "zaidmukaddam.github.io" + } } diff --git a/domains/zarqi.aicha.json b/domains/zarqi.aicha.json new file mode 100644 index 000000000..66bd72ebc --- /dev/null +++ b/domains/zarqi.aicha.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.ezzoubair.json b/domains/zarqi.ezzoubair.json new file mode 100644 index 000000000..66bd72ebc --- /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.fatima.json b/domains/zarqi.fatima.json new file mode 100644 index 000000000..66bd72ebc --- /dev/null +++ b/domains/zarqi.fatima.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..66bd72ebc --- /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/zarqi.loubna.json b/domains/zarqi.loubna.json new file mode 100644 index 000000000..66bd72ebc --- /dev/null +++ b/domains/zarqi.loubna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zarqizoubir", + "email": "zarqi.ezzoubair@etu.uae.ac.ma" + }, + "record": { + "CNAME": "zarqizoubir.github.io" + } +} diff --git a/domains/zarwin.json b/domains/zarwin.json index b5e0cad97..d2fb2531b 100644 --- a/domains/zarwin.json +++ b/domains/zarwin.json @@ -1,11 +1,11 @@ { - "repo": "https://github.com/zarwin/zarwin.is-a.dev", - "owner": { - "username": "zarwin", - "email": "", - "discord": "𝕃𝕠𝕣𝕕 ℤ𝕒𝕣𝕨𝕚𝕟#8600" - }, - "record": { - "CNAME": "zarwin.github.io" - } + "repo": "https://github.com/zarwin/zarwin.is-a.dev", + "owner": { + "username": "zarwin", + "email": "", + "discord": "𝕃𝕠𝕣𝕕 ℤ𝕒𝕣𝕨𝕚𝕟#8600" + }, + "record": { + "CNAME": "zarwin.github.io" + } } diff --git a/domains/zaydocs.json b/domains/zaydocs.json new file mode 100644 index 000000000..d6832a255 --- /dev/null +++ b/domains/zaydocs.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "KingVibes12", + "email": "codemonkeymann@gmail.com" + }, + "record": { + "CNAME": "hosts.is-a.dev" + } +} diff --git a/domains/zeazolf.json b/domains/zeazolf.json new file mode 100644 index 000000000..2397e8492 --- /dev/null +++ b/domains/zeazolf.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ZeaZolf", + "email": "ZeaZolfPc@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/zelle.json b/domains/zelle.json index a49e6af01..1adb202f2 100644 --- a/domains/zelle.json +++ b/domains/zelle.json @@ -1,11 +1,11 @@ { - "description": "Zelle Portfolio", - "repo": "https://github.com/zelxd/static-portfolio", - "owner": { - "username": "zelxd", - "email": "zeloeee@gmail.com" - }, - "record": { - "CNAME": "zelxd.github.io" - } + "description": "Zelle Portfolio", + "repo": "https://github.com/zelxd/static-portfolio", + "owner": { + "username": "zelxd", + "email": "zeloeee@gmail.com" + }, + "record": { + "CNAME": "zelxd.github.io" + } } diff --git a/domains/zelriano36.json b/domains/zelriano36.json new file mode 100644 index 000000000..f9d126a70 --- /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..3d8fff8b0 --- /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 94a131bd4..8659f1780 100644 --- a/domains/zen.json +++ b/domains/zen.json @@ -1,6 +1,4 @@ { - "description": "", - "repo": "", "owner": { "username": "zeraAI", "email": "parkzen68@gmail.com" @@ -8,4 +6,4 @@ "record": { "CNAME": "zeraai.github.io" } -} +} diff --git a/domains/zener.json b/domains/zener.json new file mode 100644 index 000000000..b3610abe3 --- /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/zenjahid.json b/domains/zenjahid.json new file mode 100644 index 000000000..7ef18a1bb --- /dev/null +++ b/domains/zenjahid.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zenjahid", + "email": "mdjahidul.haque.7@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zenpai.json b/domains/zenpai.json new file mode 100644 index 000000000..979cd4129 --- /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/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/zephyr.json b/domains/zephyr.json new file mode 100644 index 000000000..3f8ee46f7 --- /dev/null +++ b/domains/zephyr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ALVINTAN159", + "email": "alvintan159@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zeptar.json b/domains/zeptar.json index 51ea8c6ad..58a371740 100644 --- a/domains/zeptar.json +++ b/domains/zeptar.json @@ -1,12 +1,12 @@ { - "description": "Zeptar's Portofolio", - "repo": "https://github.com/Zeptar1069/zeptar1069.github.io", - "owner": { - "username": "Zeptar1069", - "email": "terryk.onekorea@gmail.com", - "discord": "Zeptar#7882" - }, - "record": { - "CNAME": "zeptar1069.github.io" - } + "description": "Zeptar's Portofolio", + "repo": "https://github.com/Zeptar1069/zeptar1069.github.io", + "owner": { + "username": "Zeptar1069", + "email": "terryk.onekorea@gmail.com", + "discord": "Zeptar#7882" + }, + "record": { + "CNAME": "zeptar1069.github.io" + } } diff --git a/domains/zepvil.json b/domains/zepvil.json new file mode 100644 index 000000000..467684947 --- /dev/null +++ b/domains/zepvil.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zepvil", + "email": "thezepvil@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zer0.json b/domains/zer0.json new file mode 100644 index 000000000..f38d7fbb3 --- /dev/null +++ b/domains/zer0.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Zer0Dev-exe", + "email": "zero", + "discord": "817515739711406140" + }, + + "record": { + "CNAME": "zer0dev-exe.github.io" + } + } + diff --git a/domains/zero.json b/domains/zero.json index c7af9f358..7f82b4070 100644 --- a/domains/zero.json +++ b/domains/zero.json @@ -1,11 +1,11 @@ { - "description": "My personal developer portfolio.", - "repo": "https://github.com/CoderPopCat/coderpopcat.github.io", - "owner": { - "username": "CoderPopCat", - "email": "zerotwo@popcat.xyz" - }, - "record": { - "CNAME": "coderpopcat.github.io" - } + "description": "My personal developer portfolio.", + "repo": "https://github.com/CoderPopCat/coderpopcat.github.io", + "owner": { + "username": "CoderPopCat", + "email": "zerotwo@popcat.xyz" + }, + "record": { + "CNAME": "coderpopcat.github.io" + } } diff --git a/domains/zerobun.json b/domains/zerobun.json new file mode 100644 index 000000000..4adae4bfb --- /dev/null +++ b/domains/zerobun.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "zerobun", + "email": "tareku2003@gmail.com" + }, + "record": { + "A": [ + "217.174.245.249", + "51.161.54.161" + ], + "MX": ["mail.is-a.dev"], + "TXT": "v=spf1 mx a:mail.is-a.dev ~all" + } +} \ No newline at end of file diff --git a/domains/zerolandcode.json b/domains/zerolandcode.json new file mode 100644 index 000000000..2c5e2fa58 --- /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/zeroratedtm.json b/domains/zeroratedtm.json new file mode 100644 index 000000000..a3ef4ebbe --- /dev/null +++ b/domains/zeroratedtm.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ZeroRatedTM", + "email": "zeroratedtm@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zerotwo.json b/domains/zerotwo.json index 191503615..819b56cf9 100644 --- a/domains/zerotwo.json +++ b/domains/zerotwo.json @@ -1,11 +1,11 @@ { - "description": "landing site for zerotwo, the discord bot.", - "repo": "https://github.com/ZeroTwoDiscord/zerotwodiscord.github.io", - "owner": { - "username": "ConnorDoesDev", - "email": "connordoesdev@gmail.com / connor@zerotwo.sytes.net" - }, - "record": { - "CNAME": "zerotwodiscord.github.io" - } + "description": "landing site for zerotwo, the discord bot.", + "repo": "https://github.com/ZeroTwoDiscord/zerotwodiscord.github.io", + "owner": { + "username": "ConnorDoesDev", + "email": "connordoesdev@gmail.com / connor@zerotwo.sytes.net" + }, + "record": { + "CNAME": "zerotwodiscord.github.io" + } } diff --git a/domains/zerow.json b/domains/zerow.json new file mode 100644 index 000000000..bfcb298b3 --- /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/zervo.json b/domains/zervo.json new file mode 100644 index 000000000..68f770565 --- /dev/null +++ b/domains/zervo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "DarindaDraX", + "email": "123kishanvish@gmail.com" + }, + "record": { + "A": ["69.30.249.53"] + } +} diff --git a/domains/zh4ck.json b/domains/zh4ck.json new file mode 100644 index 000000000..a3e185122 --- /dev/null +++ b/domains/zh4ck.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zh4ck", + "email": "zhacxk@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zhangximufeng.json b/domains/zhangximufeng.json index 9d323e515..6fbae38cf 100644 --- a/domains/zhangximufeng.json +++ b/domains/zhangximufeng.json @@ -1,11 +1,11 @@ { - "description": "Link to my github", - "repo": "https://github.com/zhangximufeng", - "owner": { - "username": "zhangximufeng", - "email": "zhangximufeng@gmail.com" - }, - "record": { - "CNAME": "zhangximufeng.github.io" - } + "description": "Link to my github", + "repo": "https://github.com/zhangximufeng", + "owner": { + "username": "zhangximufeng", + "email": "zhangximufeng@gmail.com" + }, + "record": { + "CNAME": "zhangximufeng.github.io" + } } diff --git a/domains/zhenchai.json b/domains/zhenchai.json new file mode 100644 index 000000000..9cd5767f4 --- /dev/null +++ b/domains/zhenchai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zhenchai00", + "email": "zhenchai0000@gmail.com" + }, + "record": { + "CNAME": "zhenchai00.github.io" + } +} diff --git a/domains/zhiyao.json b/domains/zhiyao.json index e8f97e1f2..d3c4e7530 100644 --- a/domains/zhiyao.json +++ b/domains/zhiyao.json @@ -8,4 +8,4 @@ "record": { "CNAME": "lizhiyao.github.io" } -} +} diff --git a/domains/zhougonglai.json b/domains/zhougonglai.json new file mode 100644 index 000000000..c4a8c0b77 --- /dev/null +++ b/domains/zhougonglai.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zhougonglai", + "email": "838048635@qq.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zhu.json b/domains/zhu.json new file mode 100644 index 000000000..850d638e4 --- /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/zhxck.json b/domains/zhxck.json new file mode 100644 index 000000000..a3e185122 --- /dev/null +++ b/domains/zhxck.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zh4ck", + "email": "zhacxk@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/ziari.json b/domains/ziari.json index 89bf53948..ca2e857fe 100644 --- a/domains/ziari.json +++ b/domains/ziari.json @@ -1,12 +1,12 @@ { - "description": "ziari's website", - "repo": "https://github.com/AMIRPARSAZIARI/AMIRPARSAZIARI.github.io", - "owner": { - "username": "AMIRPARSAZIARI", - "email": "ziariamirparsa@gmail.com", - "twitter": "ziariamirparsa" - }, - "record": { - "CNAME": "amirparsaziari.github.io" - } + "description": "ziari's website", + "repo": "https://github.com/AMIRPARSAZIARI/AMIRPARSAZIARI.github.io", + "owner": { + "username": "AMIRPARSAZIARI", + "email": "ziariamirparsa@gmail.com", + "twitter": "ziariamirparsa" + }, + "record": { + "CNAME": "amirparsaziari.github.io" + } } diff --git a/domains/zidanify.json b/domains/zidanify.json index 71d508c3d..657f47a23 100644 --- a/domains/zidanify.json +++ b/domains/zidanify.json @@ -1,12 +1,12 @@ { - "description": "zidanify's website", - "repo": "https://github.com/zidanify/zidanify.github.io", - "owner": { - "username": "zidanify", - "email": "mohzidanhirawan356@gmail.com", - "twitter": "Zidanify" - }, - "record": { - "CNAME": "zidanify.github.io" - } + "description": "zidanify's website", + "repo": "https://github.com/zidanify/zidanify.github.io", + "owner": { + "username": "zidanify", + "email": "mohzidanhirawan356@gmail.com", + "twitter": "Zidanify" + }, + "record": { + "CNAME": "zidanify.github.io" + } } diff --git a/domains/zirconiac.json b/domains/zirconiac.json new file mode 100644 index 000000000..bbae742ac --- /dev/null +++ b/domains/zirconiac.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ZirconiaCubed3v2", + "email": "lucian.adzima@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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/ziue.json b/domains/ziue.json index 808003d65..cd70fcc68 100644 --- a/domains/ziue.json +++ b/domains/ziue.json @@ -1,11 +1,11 @@ { - "description": "Link to my github", - "owner": { - "username": "ziuee", - "email": "", - "discord": "ziue#8495" - }, - "record": { - "CNAME": "ziuee.github.io" - } + "description": "Link to my github", + "owner": { + "username": "ziuee", + "email": "", + "discord": "ziue#8495" + }, + "record": { + "CNAME": "ziuee.github.io" + } } diff --git a/domains/ziyad.json b/domains/ziyad.json new file mode 100644 index 000000000..ffa2413b8 --- /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..ec9ecd796 --- /dev/null +++ b/domains/ziyn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ZiynCS", + "email": "NotZiyn@gmail.com" + }, + "record": { + "CNAME": "website-db5.pages.dev" + } +} diff --git a/domains/zizibibi.json b/domains/zizibibi.json new file mode 100644 index 000000000..515e9d62d --- /dev/null +++ b/domains/zizibibi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "f4ruk1453decodex", + "email": "furk4ncrowley@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zkwinkle.json b/domains/zkwinkle.json new file mode 100644 index 000000000..e5ce10b0f --- /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/zomb.json b/domains/zomb.json new file mode 100644 index 000000000..de83db48c --- /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/zombs.json b/domains/zombs.json new file mode 100644 index 000000000..0af1ce035 --- /dev/null +++ b/domains/zombs.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "eyesmad", + "email": "eagam0002@mymail.lausd.net" + }, + "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/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/zoronium.json b/domains/zoronium.json new file mode 100644 index 000000000..58c9f0545 --- /dev/null +++ b/domains/zoronium.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thinlayerofice", + "email": "zayaanmohammed1535@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zplusfour.json b/domains/zplusfour.json index 8bef0a33a..869aa38e1 100644 --- a/domains/zplusfour.json +++ b/domains/zplusfour.json @@ -1,12 +1,12 @@ { - "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/zshmeta.json b/domains/zshmeta.json new file mode 100644 index 000000000..d691e249c --- /dev/null +++ b/domains/zshmeta.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zshmeta", + "email": "zshmeta@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/ztrax.json b/domains/ztrax.json new file mode 100644 index 000000000..f95b5e6eb --- /dev/null +++ b/domains/ztrax.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zTraxDev", + "email": "bernardmartinez241@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/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..676909dbe --- /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..41c89131b 100644 --- a/domains/zuhaib.json +++ b/domains/zuhaib.json @@ -1,11 +1,11 @@ { - "description": "Personal portfolio", - "repo": "https://github.com/powrhouseofthecell/powrhouseofthecell.github.io", - "owner": { - "username": "powrhouseofthecell", - "email": "theshahzuhaib96@gmail.com" - }, - "record": { - "CNAME": "powrhouseofthecell.github.io" - } + "description": "Personal portfolio", + "repo": "https://github.com/powrhouseofthecell/powrhouseofthecell.github.io", + "owner": { + "username": "powrhouseofthecell", + "email": "theshahzuhaib96@gmail.com" + }, + "record": { + "CNAME": "powrhouseofthecell.github.io" + } } diff --git a/domains/zuhair.json b/domains/zuhair.json index 15be82753..8fc3df505 100644 --- a/domains/zuhair.json +++ b/domains/zuhair.json @@ -1,12 +1,10 @@ - - { - "owner": { +{ + "owner": { "username": "ZuhairTarif", "email": "20-42115-1@student.aiub.edu" - }, + }, - "record": { + "record": { "CNAME": "ZuhairTarif.github.io" - } } - \ No newline at end of file +} 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/zwzodo.json b/domains/zwzodo.json new file mode 100644 index 000000000..b03a2188a --- /dev/null +++ b/domains/zwzodo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "zwzodo", + "email": "zwzodo@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zxpau.json b/domains/zxpau.json new file mode 100644 index 000000000..defa72f30 --- /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/zye.json b/domains/zye.json new file mode 100644 index 000000000..636aeb56f --- /dev/null +++ b/domains/zye.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Zyelixify", + "email": "heroxmain@gmail.com" + }, + "record": { + "A": ["217.174.245.249", "51.161.54.161"], + "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/zyrouge.json b/domains/zyrouge.json index 620cc5b15..b78de2475 100644 --- a/domains/zyrouge.json +++ b/domains/zyrouge.json @@ -1,10 +1,10 @@ { - "owner": { - "username": "zyrouge", - "email": "zyrouge@hotmail.com", - "twitter": "_zyrouge_" - }, - "record": { - "CNAME": "zyrouge-is-a-dev.pages.dev" - } + "owner": { + "username": "zyrouge", + "email": "zyrouge@hotmail.com", + "twitter": "_zyrouge_" + }, + "record": { + "CNAME": "zyrouge.github.io" + } } diff --git a/domains/zyztem.json b/domains/zyztem.json index 51db72c1e..1e3f7886e 100644 --- a/domains/zyztem.json +++ b/domains/zyztem.json @@ -1,12 +1,12 @@ { - "description": "zyztems social site", - "repo": "https://github.com/zyztem/zyztem.github.io", - "owner": { - "username": "zyztem", - "email": "zyztembuisness@gmail.com", - "twitter": "zyztem_" - }, - "record": { - "CNAME": "zyztem.github.io" - } + "description": "zyztems social site", + "repo": "https://github.com/zyztem/zyztem.github.io", + "owner": { + "username": "zyztem", + "email": "zyztembuisness@gmail.com", + "twitter": "zyztem_" + }, + "record": { + "CNAME": "zyztem.github.io" + } } 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/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 34e6fccdb..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,10 +85,7 @@ 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 /tmp/is-a-dev-cert (not sure if needed but the directory disappeared once) +# 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..20670f8af 100644 --- a/scripts/register-domains.js +++ b/scripts/register-domains.js @@ -15,7 +15,7 @@ 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) { + if ((data.record.URL && data.record.MX) || data.name === '@') { data.record.A = [ DOMAIN_HOST_IP ] } diff --git a/tests/cpanel.test.js b/tests/cpanel.test.js index d2fbd35a3..162a9a5d3 100644 --- a/tests/cpanel.test.js +++ b/tests/cpanel.test.js @@ -12,7 +12,7 @@ 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(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', @@ -35,7 +35,7 @@ describe('Cpanel client', () => { 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(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', diff --git a/tests/domain-service.test.js b/tests/domain-service.test.js index 166712596..077aa4ea2 100644 --- a/tests/domain-service.test.js +++ b/tests/domain-service.test.js @@ -204,18 +204,18 @@ describe('Domain service', () => { { name: 'c', type: 'MX', address: 'foobar.com', priority: 2 }, ]); - expect(addZone).toBeCalledTimes(1); + expect(addZone).toHaveBeenCalledTimes(1); expect(getRecordCalls(addZone)).toEqual([ { name: 'c', type: 'A', address: '12.131321.213' }, ]); - expect(addEmail).toBeCalledTimes(1); + expect(addEmail).toHaveBeenCalledTimes(1); expect(getRecordCalls(addEmail)).toEqual([ { domain: 'c.is-a.dev', exchanger: 'foobar.com', priority: 2 }, ]); - expect(removeZone).toBeCalledTimes(0); - expect(removeEmail).toBeCalledTimes(0); + expect(removeZone).toHaveBeenCalledTimes(0); + expect(removeEmail).toHaveBeenCalledTimes(0); }); it('should update matching host and set it', async () => { @@ -231,11 +231,11 @@ describe('Domain service', () => { { name: 'b', type: 'CNAME', address: 'googoogaga' }, ]); - expect(addZone).toBeCalledTimes(1); + expect(addZone).toHaveBeenCalledTimes(1); expect(getRecordCalls(addZone)).toEqual([ { name: 'b', type: 'CNAME', address: 'googoogaga' }, ]); - expect(removeZone).toBeCalledTimes(1); + expect(removeZone).toHaveBeenCalledTimes(1); expect(getRecordCalls(removeZone)).toEqual([ { line: 2 }, ]); @@ -256,15 +256,15 @@ describe('Domain service', () => { { name: 'b', type: 'CNAME', address: 'farboo' }, ]); - expect(addZone).toBeCalledTimes(2); + expect(addZone).toHaveBeenCalledTimes(2); expect(getRecordCalls(addZone)).toEqual([ { name: 'b', type: 'CNAME', address: 'googoogaga' }, { name: 'b', type: 'CNAME', address: 'farboo' }, ]); - expect(removeZone).toBeCalledTimes(2); + expect(removeZone).toHaveBeenCalledTimes(2); expect(getRecordCalls(removeZone)).toEqual([ - { line: 2 }, { line: 3 }, + { line: 2 }, ]); }); @@ -277,6 +277,9 @@ describe('Domain service', () => { { 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' }, @@ -300,34 +303,37 @@ describe('Domain service', () => { { name: 'a', type: 'MX', address: 'example.com', priority: 20 }, ]); - expect(addZone).toBeCalledTimes(3); + 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).toBeCalledTimes(1); + expect(removeZone).toHaveBeenCalledTimes(4); expect(getRecordCalls(removeZone)).toEqual([ + { line: 101 }, + { line: 100 }, + { line: 99 }, { line: 1 }, ]); - expect(addEmail).toBeCalledTimes(1); + expect(addEmail).toHaveBeenCalledTimes(1); expect(getRecordCalls(addEmail)).toEqual([ { domain: 'a.is-a.dev', exchanger: 'example.com', priority: 20 }, ]); - expect(removeEmail).toBeCalledTimes(2); + expect(removeEmail).toHaveBeenCalledTimes(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 }, + { domain: 'c.is-a.dev', exchanger: 'mx1.hello.com', priority: 20 }, ]); - expect(addRedir).toBeCalledTimes(3); + 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).toBeCalledTimes(2); + expect(removeRedir).toHaveBeenCalledTimes(2); expect(getRecordCalls(removeRedir)).toEqual([ { domain: `b.${DOMAIN_DOMAIN}` }, { domain: `x.${DOMAIN_DOMAIN}` }, diff --git a/tests/register.test.js b/tests/register.test.js index 88eb4694e..bd967a298 100644 --- a/tests/register.test.js +++ b/tests/register.test.js @@ -1,9 +1,18 @@ -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 } = {}) => ({ +const getCpanel = ({ + zone, + addZone, + removeZone, + redir, + addRedir, + removeRedir, + addEmail, + removeEmail, +} = {}) => ({ zone: { fetch: (_) => zone(), add: (rec) => addZone(rec), @@ -18,7 +27,7 @@ const getCpanel = ({ zone, addZone, removeZone, redir, addRedir, removeRedir } = add: (rec) => addEmail(rec), remove: (rec) => removeEmail(rec), }, -}); +}) describe('toHostList', () => { it('should flatten domain data to list of hosts (without https)', () => { @@ -27,7 +36,7 @@ describe('toHostList', () => { { 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 }, @@ -38,83 +47,163 @@ describe('toHostList', () => { { 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 () => ({})); + 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(); - }); + 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 = []; + ] + 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' } }, - ]; + { 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: 'CNAME', address: 'xaa' }, - ]; + { 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..a07ccf6fa 100644 --- a/tests/validations.test.js +++ b/tests/validations.test.js @@ -54,12 +54,16 @@ describe('validateDomainData', () => { { ...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' }, + { ...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' }, ]; const validCases = [ @@ -86,6 +90,10 @@ describe('validateDomainData', () => { { ...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' }, ]; it('should return false for invalid data', () => { diff --git a/utils/constants.js b/utils/constants.js index 022bd6646..19430e5bf 100644 --- a/utils/constants.js +++ b/utils/constants.js @@ -1,10 +1,6 @@ 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, @@ -22,7 +18,7 @@ const DOMAINS_PATH = path.resolve('domains'); module.exports = { ENV, IS_TEST, - VALID_RECORD_TYPES: ['CNAME', 'A', 'URL', 'MX', 'TXT'], + 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, diff --git a/utils/domain-service.js b/utils/domain-service.js index 81421f7aa..fe75aef04 100644 --- a/utils/domain-service.js +++ b/utils/domain-service.js @@ -1,6 +1,6 @@ const R = require('ramda'); const { cpanel } = require('./lib/cpanel'); -const { DOMAIN_DOMAIN } = require('./constants'); +const { DOMAIN_DOMAIN, VALID_RECORD_TYPES } = require('./constants'); const { then, log, print, lazyTask, batchLazyTasks } = require('./helpers'); const BATCH_SIZE = 1; @@ -23,7 +23,7 @@ const recordToZone = ({ name, type, address, id, priority }) => ({ }); const cleanName = name => - name === DOMAIN_DOMAIN ? '@' : `${name}`.replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), '').toLowerCase(); + [DOMAIN_DOMAIN, `${DOMAIN_DOMAIN}.`].includes(name) ? '@' : `${name}`.replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), '').toLowerCase(); const zoneToRecord = ({ name, @@ -59,12 +59,14 @@ const recordToEmailMx = ({ name, address, priority }) => ({ 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 remove = R.differenceWith(isMatchingRecord, oldRecords, newRecords); - const add = R.differenceWith(isMatchingRecord, newRecords, oldRecords) - .filter(r => !['www'].includes(r.name)); + const add = R.differenceWith(isMatchingRecord, newRecords, oldRecords); return { add, remove }; }; @@ -86,8 +88,15 @@ const executeBatch = (batches) => batches.reduce((promise, batch, index) => { }, 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'), @@ -120,15 +129,19 @@ const getDomainService = ({ cpanel }) => { 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(); diff --git a/utils/invalid-domains.json b/utils/invalid-domains.json index a8943f3c4..ef66a5517 100644 --- a/utils/invalid-domains.json +++ b/utils/invalid-domains.json @@ -14,5 +14,6 @@ "ww3", "ww4", "wwww", - "your-domain-name" + "your-domain-name", + "_discord" ] diff --git a/utils/lib/cpanel.js b/utils/lib/cpanel.js index 29743295a..e61b15a0f 100644 --- a/utils/lib/cpanel.js +++ b/utils/lib/cpanel.js @@ -1,6 +1,5 @@ const R = require('ramda'); -const fetch = require('node-fetch'); -const qs = require('qs'); +const qs = require('querystring'); const { DOMAIN_API_HOST, DOMAIN_API_PORT, DOMAIN_USER, DOMAIN_API_KEY, DOMAIN_DOMAIN } = require('../constants'); const CpanelClient = (options) => { @@ -38,7 +37,7 @@ const CpanelClient = (options) => { // -> [{ 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 }) + api2('ZoneEdit', 'fetchzone_records', { customonly: 0, domain: options.domain }) ), // { name, type(A|CNAME), cname, address, ttl } diff --git a/utils/validations.js b/utils/validations.js index 963e8ed3d..b9c851a19 100644 --- a/utils/validations.js +++ b/utils/validations.js @@ -2,6 +2,8 @@ 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)]); @@ -17,6 +19,7 @@ const validateCnameRecord = type => and([ const validateARecord = type => and([ R.propIs(Array, type), R.propSatisfies(withLengthGte(1), type), + R.all(testRegex(ipRegex.v4({ exact: true }))), ]); const validateMXRecord = type => and([ @@ -25,8 +28,19 @@ const validateMXRecord = type => and([ 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), // Exception for github verification records + R.equals('_discord'), +] + 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', @@ -34,17 +48,15 @@ const validateDomainData = validate({ R.equals('@'), and([ R.is(String), + checkRestrictedNames, R.compose( R.all(or([ - and([ - testRegex(/^_github(-pages)?-challenge-[a-z0-9-_]+$/i), // Exception for github verification records - checkRestrictedNames, - ]), and([ R.compose(between(2, 100), R.length), testRegex(/^[a-z0-9-]+$/g), checkRestrictedNames, - ]) + ]), + ...extraSupportedNames, ])), R.split('.'), ), @@ -74,7 +86,8 @@ const validateDomainData = validate({ [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.has('TXT'), R.propSatisfies(or([ R.is(String), R.is(Array) ]), 'TXT')], + [R.has('AAAA'), validateAAAARecord('AAAA')], [R.T, R.T], ]), ]), 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"