diff --git a/.env b/.env index f87d42da0..8022d3f4e 100644 --- a/.env +++ b/.env @@ -1,4 +1,6 @@ -NC_USER=xxx -NC_API_KEY=xxxxxxxxxxxxxxx -NC_DOMAIN=domain.com -IP_ADDRESS=100.100.100.100 +DOMAIN_USER=username +DOMAIN_API_KEY=apikey +DOMAIN_API_HOST=api-example.com +DOMAIN_API_PORT=2087 +DOMAIN_DOMAIN=example.com +DOMAIN_HOST_IP=69.69.69.69 diff --git a/.envrc b/.envrc new file mode 100644 index 000000000..4a4726a5c --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use_nix diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 000000000..b35636417 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,31 @@ +{ + "extends": [ + "eslint:recommended", + "plugin:node/recommended", + "plugin:json/recommended" + ], + "parserOptions": { + "ecmaVersion": 2020 + }, + "rules": { + "indent": ["error", 2], + "max-len": ["error", { + "code": 100, + "ignoreStrings": true, + "ignoreTemplateLiterals": true, + "ignoreTrailingComments": true + }], + "node/exports-style": ["error", "module.exports"], + "node/file-extension-in-import": ["error", "always"], + "node/prefer-global/buffer": ["error", "always"], + "node/prefer-global/console": ["error", "always"], + "node/prefer-global/process": ["error", "always"], + "node/prefer-global/url-search-params": ["error", "always"], + "node/prefer-global/url": ["error", "always"], + "node/prefer-promises/dns": "error", + "node/prefer-promises/fs": "error", + "no-process-exit": [0], + "node/no-unsupported-features/node-builtins": [0], + "node/no-unsupported-features/es-syntax": [0] + } +} diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..f149fe328 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,4 @@ +* @phenax + +domains/ @is-a-dev/maintainers +*.md @is-a-dev/maintainers diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..d64517868 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,15 @@ +## Requirements +Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above. + +Please note that we reserve the rights not to accept any domain at our own discretion. + +- [ ] The file is in the `domains` folder and is in the JSON format. +- [ ] 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 index 736201bc8..4c68ceaa2 100644 --- a/.github/workflows/bot.yml +++ b/.github/workflows/bot.yml @@ -1,7 +1,7 @@ name: Helper on: - pull_request_target: + pull_request: types: - closed @@ -10,14 +10,17 @@ jobs: name: instructions runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Comment - if: github.event_name == 'pull_request_target' && 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')) - await instructions(context, github); + - 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 e8519241f..678e6525c 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -1,24 +1,23 @@ -# https://github.com/actions/labeler - name: Checks -on: [pull_request_target] +on: [pull_request] jobs: validation: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: borales/actions-yarn@v2.0.0 + - uses: actions/checkout@v3 with: - cmd: install - - name: Running tests + ref: ${{ github.event.pull_request.head.sha }} + fetch-depth: 0 + - name: Setup node v15 + uses: actions/setup-node@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 - label: - runs-on: ubuntu-latest - steps: - - name: Labelling pull request - uses: actions/labeler@main - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 000000000..24ffbfc00 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,13 @@ +name: Pull Request Labeler +on: + schedule: + - cron: '*/10 * * * *' +jobs: + labeler: + runs-on: ubuntu-latest + steps: + - uses: docker://docker.io/ilyam8/periodic-pr-labeler:v0.1.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_REPOSITORY: ${{ github.repository }} + LABEL_MAPPINGS_FILE: .github/labeler.yml diff --git a/.github/workflows/publish-records.yml b/.github/workflows/publish-records.yml index 17bb7bdc0..c8ed824e1 100644 --- a/.github/workflows/publish-records.yml +++ b/.github/workflows/publish-records.yml @@ -1,25 +1,34 @@ name: Publish records on: + push: + branches: [main] workflow_dispatch: name: 'Publish records' jobs: publish: + if: github.repository == 'is-a-dev/register' runs-on: ubuntu-latest - env: - CI: '1' - ENV: production - NC_USER: ${{ secrets.NC_USER }} - NC_API_KEY: ${{ secrets.NC_API_KEY }} - NC_DOMAIN: ${{ secrets.NC_DOMAIN }} - IP_ADDRESS: ${{ secrets.IP_ADDRESS }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: borales/actions-yarn@v2.0.0 with: - cmd: install + cmd: install --ignore-engines + - name: Running tests + uses: borales/actions-yarn@v2.0.0 + with: + cmd: test - name: Publishing records + env: + CI: 1 + 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 }} uses: borales/actions-yarn@v2.0.0 with: cmd: publish-records diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..786060ccc --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,21 @@ +name: StaleBOT + +on: + workflow_dispatch: + name: 'Force cleanup' + schedule: + - cron: "30 14 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-stale: 30 + days-before-close: 20 + 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' + exempt-pr-labels: 'no-stale' diff --git a/API.md b/API.md deleted file mode 100644 index 47d125c53..000000000 --- a/API.md +++ /dev/null @@ -1,112 +0,0 @@ -# Documentation - -## How to register -* First you need to create a pull request with your `domains/my-domain.json` file -* This PR will be reviewed -* The changes will take effect soon after the PR gets merged -* And that's it - -### For github pages users -* A github pages json file (with cname record and https redirection) will look something like this - -```json -{ - "description": "Add some description", - "repo": "https://github.com/github-username/github-username.github.io", - "owner": { - "username": "github-username", - "email": "any@email" - }, - "record": { - "CNAME": "github-username.github.io", - "URL": "https://your-domain.is-a.dev" - } -} -``` -* After the pull request is merged, you will see a 404 error on `your-domain.is-a.dev`. To fix this go to your github page repo's `Settings > Github pages > Custom domain` and add `your-domain.is-a.dev` in the given field -* If you have added the `URL` record for forced https, check the `Enforce HTTPS` checkbox too - - - -## Domains json file -The way you register your own domain name is through a pull request. -To register `my-domain.is-a.dev`, you need to create a `domains/my-domain.json` file - -The file name must pass the following criteria - -* Must be alpha numeric with dashes as seperators -* Must be more than 2 characters long - - -The file needs to have the following fields - - -### owner (required) -You need to specify some information about yourself here. -This is so that you can be contacted if required. - -In the owner object, the fields `username` and `email` are required. You can however add more information in this object if you need. -```json -{ - "owner": { - "username": "github-username", - "email": "any@email" - }, -} -``` - -### description -Describe your domain name and your usage. This is purely for documentation purpose and is optional. - - -### repo -This is a link to your website repository or your github account. This is purely for documentation purpose and is optional. - - -### record (required) -This is where you specify how you want to link to your server/webpage. - -Currently, only `CNAME`, `ALIAS`, `A`, `URL` record types are supported. - -Here's a few different use cases for the given record types - - -* **CNAME/ALIAS** -Replace CNAME with ALIAS for alias record type -```json -{ - "record": { - "CNAME": "username.github.io" - } -} -``` - -* **A record** -```json -{ - "record": { - "A": [ - "999.999.991.999", - "999.999.992.999", - "999.999.993.999", - "999.999.994.999" - ] - } -} -``` - -* **URL redirection** -```json -{ - "record": { - "URL": "https://my-other-website.com" - } -} -``` - -* **Force HTTPS on your CNAME (or ALIAS or A) record** -```json -{ - "record": { - "CNAME": "username.github.io", - "URL": "https://your-domain.is-a.dev" - } -} -``` - diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index c3d0ea2d2..31c61b68f 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,8 +1,9 @@ -# 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 pretty url for their personal websites +- **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 necassary action will be taken +The abuse reports will be investigated and the necessary action will be taken! diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2a3e7da99..965261eda 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,24 +1,24 @@ # 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](./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 -* Currently, the publishing of records is done manually. This will be automated soon with releases -* The changes should reflect soon after publishing +* 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. ## 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 new file mode 100644 index 000000000..d5a4de6b7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM ubuntu:20.04 + +ENV TERM xterm +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 npm i -g n yarn && n 15.11 + +RUN node -v + +WORKDIR /opt/app + +COPY yarn.lock . +COPY package.json . + +RUN yarn install + +CMD ["sh", "-c", "cp -r node_modules code; cd code; tail -f /dev/null"] + diff --git a/README.md b/README.md index fce687fbe..58a770788 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,76 @@ -![is-a-dev banner](./media/banner.png) +

+ is-a-dev Banner +

-
+

+ Domains + Open Pull Requests + Open Issues +

-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

-Note: This service is currently in **beta** so expect some delays in PR merge and report any issues you encounter so that the service can be improved. +

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

+

+ Discord Server +

+# Issues -## How do I register? -* Fork this project -* Add a `your-domain-name.json` new file in `domains/` directory to register `your-domain-name.is-a.dev` -* [Read the docs for information about the json file](./API.md) -* The PR will be reviewed and merged -* After merging, the changes will take effect within a day -* That's it! Done! Now go show off your cool `.is-a.dev` domain +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. +## Register +### Automated Registration -## Donations -This project is a free service for developers and will stay that way. +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 automagically! -Donations will be greatly appreciated! +Another method is to join our [Discord](https://discord.gg/PZCGHz4RhQ) then head to the commands channel and do /register . The bot will ask you a few questions then will generate your PR and domain automaticly. The bot also allows for domain deletion and editing. -Buy Me A Coffee -Liberapay recurring donation button +### 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). +- Your pull request will be reviewed and merged. *Make sure to keep an eye on it incase we need you to make any changes!* +- After the pull request is merged, please allow up to 24 hours for the changes to propagate. +- Enjoy your new `.is-a.dev` domain! +### CLI Registration -## Report abuse -If you think someone is abusing a domain you can report it by creating an issue with the label `report-abuse`. +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). +Install the CLI: +```bash +npm install @is-a-dev/cli -g +``` -## License -This project is under the [GPL-3.0](./LICENSE) license. +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://stats.uptimerobot.com/zY4XKIRVzw). + +[![Uptime Robot - DNS](https://img.shields.io/uptimerobot/ratio/m787472645-ec25e3920c7af893a7c66f19?label=uptime%20-%20dns&style=for-the-badge)](https://stats.uptimerobot.com/zY4XKIRVzw/787472645) +[![Uptime Robot - Redirect](https://img.shields.io/uptimerobot/ratio/m787472617-240f4d61a5439a87becb2cf9?label=uptime%20-%20redirections&style=for-the-badge)](https://stats.uptimerobot.com/zY4XKIRVzw/787472617) + +### Similar Services +If you want to find services similar to is-a.dev, take a look on [free-for.life](https://free-for.life/#/?id=domains). + +### Donate +If you like this project, please consider donating so we can keep this project running forever! + +Buy Me a Coffee +Liberapay diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..b382809f4 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,6 @@ +# Security Policy + +## 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). diff --git a/default.nix b/default.nix new file mode 100644 index 000000000..51e03c2d0 --- /dev/null +++ b/default.nix @@ -0,0 +1,16 @@ +{ nixpkgs ? import {} }: +let + inherit (nixpkgs) pkgs; + + nixPackages = with pkgs; [ + nodejs-16_x + yarn + docker-compose + dnsutils + #certbot + ]; +in +pkgs.stdenv.mkDerivation { + name = "env"; + buildInputs = nixPackages; +} diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 000000000..5b161f929 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,8 @@ +version: '3' +services: + dev: + build: + context: . + dockerfile: ./Dockerfile + volumes: + - ./:/opt/app/code diff --git a/domains/00001.json b/domains/00001.json new file mode 100644 index 000000000..9bfd58afc --- /dev/null +++ b/domains/00001.json @@ -0,0 +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" + } +} 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/0x0.json b/domains/0x0.json new file mode 100644 index 000000000..63ceb45a8 --- /dev/null +++ b/domains/0x0.json @@ -0,0 +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" + } +} diff --git a/domains/0x3st.json b/domains/0x3st.json new file mode 100644 index 000000000..a70c76c1e --- /dev/null +++ b/domains/0x3st.json @@ -0,0 +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" + } +} diff --git a/domains/0xflotus.json b/domains/0xflotus.json new file mode 100644 index 000000000..874c434d5 --- /dev/null +++ b/domains/0xflotus.json @@ -0,0 +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" + } +} diff --git a/domains/0xsurya.json b/domains/0xsurya.json new file mode 100644 index 000000000..0c858e72f --- /dev/null +++ b/domains/0xsurya.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "0xSuryax", + "email": "surya98613@gmail.com" + }, + "record": { + "A": ["38.242.141.34"] + } +} diff --git a/domains/0xviel.json b/domains/0xviel.json new file mode 100644 index 000000000..342e28801 --- /dev/null +++ b/domains/0xviel.json @@ -0,0 +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" + } +} diff --git a/domains/18o4.json b/domains/18o4.json new file mode 100644 index 000000000..cd2fcd1ee --- /dev/null +++ b/domains/18o4.json @@ -0,0 +1,13 @@ +{ + "description": "redirects to my website", + "repo": "https://github.com/18o4/18o4.github.io", + "owner": { + "username": "18o4", + "email": "", + "discord": "18O4#4350", + "discordUserID": "279894305630453760" + }, + "record": { + "URL": "https://18o4.tk" + } +} diff --git a/domains/1rogman.json b/domains/1rogman.json new file mode 100644 index 000000000..db16e313d --- /dev/null +++ b/domains/1rogman.json @@ -0,0 +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" + } +} diff --git a/domains/1st-dev.json b/domains/1st-dev.json new file mode 100644 index 000000000..b15cfed15 --- /dev/null +++ b/domains/1st-dev.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RainyXeon", + "email": "minh15052008@gmail.com" + }, + + "record": { + "CNAME": "5a3e476d-47ce-4088-9b34-42cdb8c3395b.id.repl.co" + } +} diff --git a/domains/1st.json b/domains/1st.json new file mode 100644 index 000000000..ebca6a52b --- /dev/null +++ b/domains/1st.json @@ -0,0 +1,11 @@ +{ + "description": "1st.is-a.dev", + "repo": "https://github.com/Rahuletto/1st", + "owner": { + "username": "Rahuletto", + "email": "rahulmarban@gmail.com" + }, + "record": { + "CNAME": "d0720bf3-70d2-4b24-9273-b44ce8e0c708.id.repl.co" + } +} diff --git a/domains/207.json b/domains/207.json new file mode 100644 index 000000000..92fec3e09 --- /dev/null +++ b/domains/207.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "merakesh207", + "email": "merakesh207@gmail.com" + }, + "record": { + "URL": "https://behance.net/merakesh207" + } +} diff --git a/domains/2096779623.json b/domains/2096779623.json new file mode 100644 index 000000000..342630f45 --- /dev/null +++ b/domains/2096779623.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "2096779623", + "email": "2096779623@qq.com", + "telegram": "utermux_blog" + }, + "record": { + "URL": "https://www.utermux.dev" + } +} diff --git a/domains/3pls0de.json b/domains/3pls0de.json new file mode 100644 index 000000000..1ab690702 --- /dev/null +++ b/domains/3pls0de.json @@ -0,0 +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" + } +} 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/4k5h4y.json b/domains/4k5h4y.json new file mode 100644 index 000000000..6b3a66c96 --- /dev/null +++ b/domains/4k5h4y.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Akshay-Arjun", + "email": "akshayvollala779@gmail.com" + }, + + "record": { + "URL": "https://akshay-arjun.github.io/Akshay-Arjun" + } +} diff --git a/domains/600.json b/domains/600.json new file mode 100644 index 000000000..7fa42144b --- /dev/null +++ b/domains/600.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/5rq/5rq.github.io", + "owner": { + "username": "5rq", + "email": "600@fbi.ac" + }, + "record": { + "CNAME": "5rq.github.io" + } +} diff --git a/domains/6502.json b/domains/6502.json new file mode 100644 index 000000000..a89b320e2 --- /dev/null +++ b/domains/6502.json @@ -0,0 +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" + } +} 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/_github-pages-challenge-andrewstech.privacy.json b/domains/_github-pages-challenge-andrewstech.privacy.json new file mode 100644 index 000000000..d16b0382a --- /dev/null +++ b/domains/_github-pages-challenge-andrewstech.privacy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "TXT": "f4099fcae5cf0ea04f853bc649c5b1" + } +} 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-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 new file mode 100644 index 000000000..f0c10d786 --- /dev/null +++ b/domains/_github-pages-challenge-ayvacs.ave.json @@ -0,0 +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" + } +} 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-joythejoystick1.glqch.json b/domains/_github-pages-challenge-joythejoystick1.glqch.json new file mode 100644 index 000000000..e3ebe9ee0 --- /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-jy1263.ayanamy.json b/domains/_github-pages-challenge-jy1263.ayanamy.json new file mode 100644 index 000000000..5f67a37b9 --- /dev/null +++ b/domains/_github-pages-challenge-jy1263.ayanamy.json @@ -0,0 +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" + } +} diff --git a/domains/_github-pages-challenge-opaayush.aayush.json b/domains/_github-pages-challenge-opaayush.aayush.json new file mode 100644 index 000000000..7e4227d86 --- /dev/null +++ b/domains/_github-pages-challenge-opaayush.aayush.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OpAayush", + "email": "aayushmagrawal@gmail.com" + }, + "record": { + "TXT": "d609a47482f885a41a61549fbad3ee" + } +} 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-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-turquoisetnt.tnt.json b/domains/_github-pages-challenge-turquoisetnt.tnt.json new file mode 100644 index 000000000..55bcde6f9 --- /dev/null +++ b/domains/_github-pages-challenge-turquoisetnt.tnt.json @@ -0,0 +1,11 @@ + + { + "owner": { + "username": "TurquoiseTNT", + "email": "turquoisetntmultimedia@gmail.com" + }, + "record": { + "TXT": "a70919bec5e292800f53b8bd87da03" + } + } + diff --git a/domains/_github-pages-challenge-wdhdev.data.json b/domains/_github-pages-challenge-wdhdev.data.json new file mode 100644 index 000000000..274f5bd67 --- /dev/null +++ b/domains/_github-pages-challenge-wdhdev.data.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WilliamDavidHarrison", + "email": "william@williamharrison.dev" + }, + + "record": { + "TXT": "98ab14aec3df26fb9b1626d584d5f5" + } +} 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..261a097c6 --- /dev/null +++ b/domains/_github-pages-challenge-wdhdev.raw-api.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WilliamDavidHarrison", + "email": "william@williamharrison.dev" + }, + + "record": { + "TXT": "a6bc96312c4473df6c37f63d3e0fed" + } +} diff --git a/domains/_psl.json b/domains/_psl.json new file mode 100644 index 000000000..0b84b6e84 --- /dev/null +++ b/domains/_psl.json @@ -0,0 +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" + } +} diff --git a/domains/a-ditya.json b/domains/a-ditya.json new file mode 100644 index 000000000..92d39a912 --- /dev/null +++ b/domains/a-ditya.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..9eaeed630 --- /dev/null +++ b/domains/a-furry.json @@ -0,0 +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" + } +} diff --git a/domains/aaamineee.json b/domains/aaamineee.json new file mode 100644 index 000000000..cbe0257df --- /dev/null +++ b/domains/aaamineee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aaaminee", + "email": "amineoumellouk@yahoo.com" + }, + "record": { + "URL": "https://aaaminee.github.io" + } +} diff --git a/domains/aadi.json b/domains/aadi.json new file mode 100644 index 000000000..d07a533bc --- /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 new file mode 100644 index 000000000..10da01cb4 --- /dev/null +++ b/domains/aakanksha.json @@ -0,0 +1,11 @@ +{ + "description": "Aakanksha's .is-a.dev domain", + "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", + "owner": { + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" + }, + "record": { + "CNAME": "aakankshabhende.github.io" + } +} diff --git a/domains/aakash.json b/domains/aakash.json new file mode 100644 index 000000000..f81775eca --- /dev/null +++ b/domains/aakash.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Shinyzenith", + "email": "aakashsensharma@gmail.com" + }, + "record": { + "CNAME": "shinyzenith.github.io" + } +} diff --git a/domains/aakashs.json b/domains/aakashs.json new file mode 100644 index 000000000..7d1f7463f --- /dev/null +++ b/domains/aakashs.json @@ -0,0 +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" + } +} diff --git a/domains/aakhilv.json b/domains/aakhilv.json new file mode 100644 index 000000000..7f4c2cce0 --- /dev/null +++ b/domains/aakhilv.json @@ -0,0 +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" + } +} 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/aantaripdas.json b/domains/aantaripdas.json new file mode 100644 index 000000000..bd2a07b31 --- /dev/null +++ b/domains/aantaripdas.json @@ -0,0 +1,12 @@ +{ + "description": "A Personal Portfilo", + "repo": "https://portfolio.anime0test.repl.co", + "owner": { + "username": "LittleSoldierGaming", + "email": "aantaripdas@gmail.com", + "twitter": "littlesoldiergaming" + }, + "record": { + "CNAME": "2df92555-30ba-4899-bbb8-2906a8f5c7e0.id.repl.co" + } +} diff --git a/domains/aaraam.json b/domains/aaraam.json new file mode 100644 index 000000000..cdac570fa --- /dev/null +++ b/domains/aaraam.json @@ -0,0 +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" + } +} diff --git a/domains/aargh.json b/domains/aargh.json new file mode 100644 index 000000000..1f7459ef0 --- /dev/null +++ b/domains/aargh.json @@ -0,0 +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" + } +} diff --git a/domains/aarno.json b/domains/aarno.json new file mode 100644 index 000000000..18ed5203b --- /dev/null +++ b/domains/aarno.json @@ -0,0 +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" + } +} diff --git a/domains/aaron.json b/domains/aaron.json deleted file mode 100644 index 9778d9150..000000000 --- a/domains/aaron.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Aaron's personal developer website", - "repo": "https://github.com/aaron-harvey", - "owner": { - "username": "aaronharvey", - "email": "aaron@lolsup.com" - }, - "record": { - "CNAME": "lolsup.com", - "URL": "https://aaron.is-a.dev" - } -} diff --git a/domains/aaryan.json b/domains/aaryan.json new file mode 100644 index 000000000..596c625f3 --- /dev/null +++ b/domains/aaryan.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..3ac0989bb --- /dev/null +++ b/domains/aashutosh.json @@ -0,0 +1,10 @@ +{ + "description": "Aashutosh Rathi's Space on Web", + "owner": { + "username": "aashutoshrathi", + "email": "me@aashutosh.dev" + }, + "record": { + "CNAME": "aashutosh.dev" + } +} diff --git a/domains/aayush.json b/domains/aayush.json new file mode 100644 index 000000000..a28610357 --- /dev/null +++ b/domains/aayush.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..cc9bb29fb --- /dev/null +++ b/domains/aayushakacloudy.json @@ -0,0 +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" + } +} 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/abdul.json b/domains/abdul.json new file mode 100644 index 000000000..65a80cf0c --- /dev/null +++ b/domains/abdul.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Abdul1810", + "email": "abdulking8010@gmail.com", + "discord": "Abdul ♥#5464" + }, + "record": { + "CNAME": "rahman.works" + } +} diff --git a/domains/abdullah.json b/domains/abdullah.json new file mode 100644 index 000000000..afec302bb --- /dev/null +++ b/domains/abdullah.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..d76b4a9dd --- /dev/null +++ b/domains/abdulrahman.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..58f9a3015 --- /dev/null +++ b/domains/abdulrshaikh.json @@ -0,0 +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" + } +} diff --git a/domains/abegehr.json b/domains/abegehr.json new file mode 100644 index 000000000..f6a99ac85 --- /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 new file mode 100644 index 000000000..acc15e859 --- /dev/null +++ b/domains/abelblue.json @@ -0,0 +1,11 @@ +{ + "description": "Abel Mitiku's website", + "repo": "https://github.com/abel-blue/abelblue.dev", + "owner": { + "username": "abel-blue", + "email": "abelmgetnet@gmail.com" + }, + "record": { + "CNAME": "abel-blue.github.io" + } +} diff --git a/domains/abeltranp94.json b/domains/abeltranp94.json new file mode 100644 index 000000000..0c1d485f8 --- /dev/null +++ b/domains/abeltranp94.json @@ -0,0 +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" + } +} diff --git a/domains/abh80.json b/domains/abh80.json new file mode 100644 index 000000000..f35acd920 --- /dev/null +++ b/domains/abh80.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..52b51afaa --- /dev/null +++ b/domains/abhigyantrips.json @@ -0,0 +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" + } +} diff --git a/domains/abhinandan.json b/domains/abhinandan.json new file mode 100644 index 000000000..b39196bd5 --- /dev/null +++ b/domains/abhinandan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "abhinandanwadwa", + "email": "abhinandanwadhwa5@gmail.com" + }, + + "record": { + "A": ["139.59.76.105"] + } +} diff --git a/domains/abhinavdalal.json b/domains/abhinavdalal.json deleted file mode 100644 index b6cc7b99c..000000000 --- a/domains/abhinavdalal.json +++ /dev/null @@ -1,12 +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", - "URL": "https://abhinavdalal.is-a.dev" - } -} diff --git a/domains/abhint.json b/domains/abhint.json new file mode 100644 index 000000000..ad6277994 --- /dev/null +++ b/domains/abhint.json @@ -0,0 +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" + } +} diff --git a/domains/abhisekp.json b/domains/abhisekp.json new file mode 100644 index 000000000..ec7117141 --- /dev/null +++ b/domains/abhisekp.json @@ -0,0 +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" + } +} diff --git a/domains/abhishek.json b/domains/abhishek.json new file mode 100644 index 000000000..010d6df1b --- /dev/null +++ b/domains/abhishek.json @@ -0,0 +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" + } +} diff --git a/domains/abhishekkumar.json b/domains/abhishekkumar.json new file mode 100644 index 000000000..6a040bf20 --- /dev/null +++ b/domains/abhishekkumar.json @@ -0,0 +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" + } +} diff --git a/domains/abishek.json b/domains/abishek.json new file mode 100644 index 000000000..bfdd3d118 --- /dev/null +++ b/domains/abishek.json @@ -0,0 +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" + } +} diff --git a/domains/abubakar.json b/domains/abubakar.json new file mode 100644 index 000000000..c0eb9cfc2 --- /dev/null +++ b/domains/abubakar.json @@ -0,0 +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" + } +} diff --git a/domains/abysmal.json b/domains/abysmal.json new file mode 100644 index 000000000..055447ac5 --- /dev/null +++ b/domains/abysmal.json @@ -0,0 +1,10 @@ +{ + "description": "My personal website", + "owner": { + "username": "abysmal26", + "email": "abysmal@disroot.org" + }, + "record": { + "URL": "https://abysmal.eu.org" + } +} diff --git a/domains/ac21.json b/domains/ac21.json new file mode 100644 index 000000000..eff863e45 --- /dev/null +++ b/domains/ac21.json @@ -0,0 +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" + } +} diff --git a/domains/acaiberii.json b/domains/acaiberii.json new file mode 100644 index 000000000..3de6036e2 --- /dev/null +++ b/domains/acaiberii.json @@ -0,0 +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" + } +} diff --git a/domains/ace.json b/domains/ace.json new file mode 100644 index 000000000..54f26cdf9 --- /dev/null +++ b/domains/ace.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "diamond-gold", + "email": "diamond-gold-ace@outlook.com" + }, + + "record": { + "URL": "https://github.com/diamond-gold" + } +} diff --git a/domains/acey.json b/domains/acey.json new file mode 100644 index 000000000..529e805ba --- /dev/null +++ b/domains/acey.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/acgaming.json b/domains/acgaming.json new file mode 100644 index 000000000..a5aaf22c6 --- /dev/null +++ b/domains/acgaming.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..e3ffc2ee6 --- /dev/null +++ b/domains/achim.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nohli", + "email": "", + "twitter": "joachi_" + }, + "record": { + "CNAME": "achim.io" + } +} diff --git a/domains/achintya.json b/domains/achintya.json new file mode 100644 index 000000000..72c37e1ec --- /dev/null +++ b/domains/achintya.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..a08a93bb5 --- /dev/null +++ b/domains/achraf.json @@ -0,0 +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" + } +} diff --git a/domains/activities.maskduck.json b/domains/activities.maskduck.json new file mode 100644 index 000000000..975df8bbd --- /dev/null +++ b/domains/activities.maskduck.json @@ -0,0 +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" + } +} diff --git a/domains/acutewoof.json b/domains/acutewoof.json new file mode 100644 index 000000000..9f0a89bd8 --- /dev/null +++ b/domains/acutewoof.json @@ -0,0 +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" + } +} 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/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/adarsh.json b/domains/adarsh.json new file mode 100644 index 000000000..5c18f12bb --- /dev/null +++ b/domains/adarsh.json @@ -0,0 +1,12 @@ +{ + "description": "For my portfolio website made by using HTML + CSS and JS", + "repo": "https://github.com/clumzyofficial/clumzyofficial.github.io", + "owner": { + "username": "clumzyofficial", + "email": "clumzyofficial@gmail.com", + "twitter": "binaryadarsh" + }, + "record": { + "CNAME": "clumzyofficial.github.io" + } +} diff --git a/domains/adarshs.json b/domains/adarshs.json new file mode 100644 index 000000000..e70f165c2 --- /dev/null +++ b/domains/adarshs.json @@ -0,0 +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" + } +} diff --git a/domains/adarshvijay.json b/domains/adarshvijay.json new file mode 100644 index 000000000..e291fa901 --- /dev/null +++ b/domains/adarshvijay.json @@ -0,0 +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" + } +} 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/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/adi.json b/domains/adi.json new file mode 100644 index 000000000..893449813 --- /dev/null +++ b/domains/adi.json @@ -0,0 +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" + } +} diff --git a/domains/adib.json b/domains/adib.json new file mode 100644 index 000000000..995da37e9 --- /dev/null +++ b/domains/adib.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Adib23704", + "email": "adib23704@gmail.com" + }, + "record": { + "CNAME": "adib23704.tk" + } +} diff --git a/domains/adigen.json b/domains/adigen.json new file mode 100644 index 000000000..fc64052e0 --- /dev/null +++ b/domains/adigen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mradigen", + "email": "mr.adigen@protonmail.com" + }, + "record": { + "CNAME": "mradigen.github.io" + } +} diff --git a/domains/aditya-awasthi.json b/domains/aditya-awasthi.json new file mode 100644 index 000000000..1f4e390b7 --- /dev/null +++ b/domains/aditya-awasthi.json @@ -0,0 +1,11 @@ +{ + "description": "This is my personal portfolio website", + "repo": "https://github.com/Adityyaaa/adityyaaa.github.io", + "owner": { + "username": "Adityyaaa", + "email": "aditya.awasthi612@gmail.com" + }, + "record": { + "CNAME": "adityyaaa.github.io" + } +} \ No newline at end of file diff --git a/domains/aditya.json b/domains/aditya.json new file mode 100644 index 000000000..cb5889409 --- /dev/null +++ b/domains/aditya.json @@ -0,0 +1,12 @@ +{ + "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" + } +} 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/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/adolar0042.json b/domains/adolar0042.json new file mode 100644 index 000000000..3f8ed564d --- /dev/null +++ b/domains/adolar0042.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..9ef18a40e --- /dev/null +++ b/domains/adri.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adripo", + "email": "adripo@hi2.in" + }, + "record": { + "URL": "https://adri.ninja" + } +} diff --git a/domains/adrian.json b/domains/adrian.json new file mode 100644 index 000000000..f841d282c --- /dev/null +++ b/domains/adrian.json @@ -0,0 +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" + } +} diff --git a/domains/adrien.json b/domains/adrien.json new file mode 100644 index 000000000..a38cd1704 --- /dev/null +++ b/domains/adrien.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Adri11334", + "email": "adrien.vermersch@epitech.eu", + "discord": "Дdяi1#7501" + }, + "record": { + "A": ["116.203.127.206"] + } +} diff --git a/domains/adriichu.json b/domains/adriichu.json new file mode 100644 index 000000000..31e50ac14 --- /dev/null +++ b/domains/adriichu.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "Adriichu", + "email": "adriichu@proton.me", + "twitter": "Adriichuu", + "discord": "Aaron#0069" + }, + + "record": { + "CNAME": "aaron-web.pages.dev" + } +} diff --git a/domains/aestra.json b/domains/aestra.json new file mode 100644 index 000000000..854c14831 --- /dev/null +++ b/domains/aestra.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..e664aacc4 --- /dev/null +++ b/domains/aetinx.json @@ -0,0 +1,13 @@ +{ + "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/afnan.json b/domains/afnan.json new file mode 100644 index 000000000..70f940ec2 --- /dev/null +++ b/domains/afnan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "afnan007a", + "email": "mr.goblin007a@gmail.com" + }, + "record": { + "CNAME": "portfolio-cci.pages.dev" + } +} diff --git a/domains/afp.json b/domains/afp.json new file mode 100644 index 000000000..e9b9c21db --- /dev/null +++ b/domains/afp.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AndreasFxPro", + "email": "", + "discord": "AndreasFxPro#9330" + }, + "description": "this is-a.dev page is for me, i'll post my projects", + "record": { + "A": ["140.238.175.208"] + } +} diff --git a/domains/afton.json b/domains/afton.json new file mode 100644 index 000000000..9e2fec6c8 --- /dev/null +++ b/domains/afton.json @@ -0,0 +1,12 @@ +{ + "description": "Small portfolio for myself", + "repo": "https://github.com/WilliamAfton-codes/williamafton-codes.github.io", + "owner": { + "username": "WilliamAfton-codes", + "email": "williamafton.codes@gmail.com", + "twitter": "manlydalorian" + }, + "record": { + "CNAME": "williamafton-codes.github.io" + } +} diff --git a/domains/ag.json b/domains/ag.json new file mode 100644 index 000000000..c4a79ece3 --- /dev/null +++ b/domains/ag.json @@ -0,0 +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" + } +} diff --git a/domains/agam778.json b/domains/agam778.json new file mode 100644 index 000000000..287208b30 --- /dev/null +++ b/domains/agam778.json @@ -0,0 +1,11 @@ +{ + "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..c152dcbfb --- /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/agold.json b/domains/agold.json new file mode 100644 index 000000000..705acc5c1 --- /dev/null +++ b/domains/agold.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..7ecd451c4 --- /dev/null +++ b/domains/agrim.json @@ -0,0 +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" + } +} 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/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-muhajir.json b/domains/ahmad-muhajir.json new file mode 100644 index 000000000..d62572d90 --- /dev/null +++ b/domains/ahmad-muhajir.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/JeremyJFN71/JeremyJFN71.github.io", + "owner": { + "username": "JeremyJFN71", + "email": "jeremyjeferson71@gmail.com" + }, + "record": { + "CNAME": "JeremyJFN71.github.io" + } +} diff --git a/domains/ahmadeyamin.json b/domains/ahmadeyamin.json new file mode 100644 index 000000000..3bdec094f --- /dev/null +++ b/domains/ahmadeyamin.json @@ -0,0 +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" + } +} diff --git a/domains/ahmed.json b/domains/ahmed.json new file mode 100644 index 000000000..c7f5646cc --- /dev/null +++ b/domains/ahmed.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..554378c77 --- /dev/null +++ b/domains/ahmedashraf.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..e7261eae6 --- /dev/null +++ b/domains/ahmet.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..eae799fec --- /dev/null +++ b/domains/ahmosys.json @@ -0,0 +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" + } +} diff --git a/domains/ahsan.json b/domains/ahsan.json deleted file mode 100644 index 00b859025..000000000 --- a/domains/ahsan.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Ahsan's Personal Website", - "owner": { - "username": "aqureshi", - "email": "ahsan.qureshi8@gmail.com" - }, - "record": { - "CNAME": "www.thisisahsan.com", - "URL": "https://ahsan.is-a.dev" - } -} diff --git a/domains/ahsw.json b/domains/ahsw.json new file mode 100644 index 000000000..0bdd5571c --- /dev/null +++ b/domains/ahsw.json @@ -0,0 +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" + } +} diff --git a/domains/ahuja-m.json b/domains/ahuja-m.json new file mode 100644 index 000000000..9c030d54f --- /dev/null +++ b/domains/ahuja-m.json @@ -0,0 +1,11 @@ +{ + "description": "This is a user", + "repo": "https://github.com/ahuja-m/ahuja-m.github.io", + "owner": { + "username": "ahuja-m", + "email": "" + }, + "record": { + "CNAME": "ahuja-m.github.io" + } +} diff --git a/domains/ahysa.andgyk.json b/domains/ahysa.andgyk.json new file mode 100644 index 000000000..b24425d08 --- /dev/null +++ b/domains/ahysa.andgyk.json @@ -0,0 +1,11 @@ +{ + "description": "Ahysa Discord bot website", + "repo": "https://github.com/andgyk/ahysa", + "owner": { + "username": "andgyk", + "email": "an4g7k@gmail.com" + }, + "record": { + "CNAME": "ahysa.github.io" + } +} 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 new file mode 100644 index 000000000..f8cf8dfbd --- /dev/null +++ b/domains/aiko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AikoNee", + "email": "shenzie1131@gmail.com" + }, + + "record": { + "CNAME": "aiko.pages.dev" + } +} diff --git a/domains/aikoo7.json b/domains/aikoo7.json new file mode 100644 index 000000000..bb894b1fa --- /dev/null +++ b/domains/aikoo7.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aikooo7", + "email": "prozinhopro1973@gmail.com" + }, + "record": { + "CNAME": "aikooo7.github.io" + } + } + \ No newline at end of file diff --git a/domains/ailakks.json b/domains/ailakks.json new file mode 100644 index 000000000..34ca71d86 --- /dev/null +++ b/domains/ailakks.json @@ -0,0 +1,11 @@ +{ + "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/aizawakiyaworu.json b/domains/aizawakiyaworu.json new file mode 100644 index 000000000..212259d2d --- /dev/null +++ b/domains/aizawakiyaworu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mhmdysf", + "email": "muhammadyusuf1325@smp.belajar.id" + }, + "record": { + "URL": "https://linktr.ee/aizawakiyaworu" + } +} diff --git a/domains/aizuu.json b/domains/aizuu.json new file mode 100644 index 000000000..0214d9baa --- /dev/null +++ b/domains/aizuu.json @@ -0,0 +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" + } +} 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/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/ak.json b/domains/ak.json new file mode 100644 index 000000000..89d6320ee --- /dev/null +++ b/domains/ak.json @@ -0,0 +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" + } +} diff --git a/domains/akai.json b/domains/akai.json new file mode 100644 index 000000000..5a3244b23 --- /dev/null +++ b/domains/akai.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AmazingAkai", + "email": "", + "discord": "Akai#8199" + }, + "record": { + "CNAME": "a36166f1-d559-4be4-a223-5b112018b229.cname.koyeb.app" + } +} diff --git a/domains/akas.json b/domains/akas.json new file mode 100644 index 000000000..f6826b605 --- /dev/null +++ b/domains/akas.json @@ -0,0 +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" + } +} diff --git a/domains/akash.json b/domains/akash.json deleted file mode 100644 index 0fa33a8b3..000000000 --- a/domains/akash.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "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", - "URL": "https://akash.is-a.dev" - } -} 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/aknbs-vpn.json b/domains/aknbs-vpn.json new file mode 100644 index 000000000..bc15cb044 --- /dev/null +++ b/domains/aknbs-vpn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Abdulazizkhan-K-N-B", + "email": "abdulazizkhan.k.n.b@gmail.com" + }, + "record": { + "A": ["47.242.127.210"] + } +} diff --git a/domains/akshay-n.json b/domains/akshay-n.json new file mode 100644 index 000000000..817649a61 --- /dev/null +++ b/domains/akshay-n.json @@ -0,0 +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"] + } +} diff --git a/domains/akshay.json b/domains/akshay.json index b5ddaa0bb..130700660 100644 --- a/domains/akshay.json +++ b/domains/akshay.json @@ -1,12 +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", - "URL": "https://akshay.is-a.dev" - } + "description": "Akshay's portfolio website and blog", + "repo": "https://github.com/phenax/ediblemonad.dev", + "owner": { + "username": "phenax", + "email": "phenax5@gmail.com" + }, + "record": { + "URL": "https://phenax.github.io" + } } diff --git a/domains/akshayan.json b/domains/akshayan.json new file mode 100644 index 000000000..3d56d8727 --- /dev/null +++ b/domains/akshayan.json @@ -0,0 +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" + } +} diff --git a/domains/akshayn.json b/domains/akshayn.json new file mode 100644 index 000000000..d080caa3e --- /dev/null +++ b/domains/akshayn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "akshaynstack", + "email": "akshay.fivem@gmail.com" + }, + "record": { + "A": ["52.66.193.17"] + } +} 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/alan.json b/domains/alan.json new file mode 100644 index 000000000..df9d2f420 --- /dev/null +++ b/domains/alan.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..212aae1e4 --- /dev/null +++ b/domains/albinvar.json @@ -0,0 +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" + } +} diff --git a/domains/alcex.json b/domains/alcex.json new file mode 100644 index 000000000..201795d0e --- /dev/null +++ b/domains/alcex.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Alcexn", + "email": "alcexn@163.com" + }, + + "record": { + "A": ["76.223.126.88"] + } +} diff --git a/domains/aldenizenmc.json b/domains/aldenizenmc.json new file mode 100644 index 000000000..a6bc737e4 --- /dev/null +++ b/domains/aldenizenmc.json @@ -0,0 +1,13 @@ +{ + "repo": "https://github.com/AldenizenMC/AldenizenMC.github.io", + "owner": { + "username": "AldenizenMC", + "email": "", + "discord": "AldenizenMC#1418", + "twitter": "aldenizenmc", + "note": "I am never online on twitter, message me on Discord instead. In case my discriminator changes, my user id is 529424782438170679" + }, + "record": { + "CNAME": "AldenizenMC.github.io" + } +} diff --git a/domains/ale1x.json b/domains/ale1x.json new file mode 100644 index 000000000..b1a9135d6 --- /dev/null +++ b/domains/ale1x.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Ale1x", + "email": "info@ale1x.com" + }, + "record": { + "URL": "https://alee1x.repl.co" + } +} 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 new file mode 100644 index 000000000..9b851ad1b --- /dev/null +++ b/domains/aleks.json @@ -0,0 +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" + } +} 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..958b0d6fc --- /dev/null +++ b/domains/alephdiallo.json @@ -0,0 +1,20 @@ +{ + "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 new file mode 100644 index 000000000..dcd706b7f --- /dev/null +++ b/domains/alessandro.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..473d8e34a --- /dev/null +++ b/domains/alestor123.json @@ -0,0 +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" + } +} diff --git a/domains/alex.json b/domains/alex.json index 1dcc6554b..357e03311 100644 --- a/domains/alex.json +++ b/domains/alex.json @@ -6,7 +6,6 @@ "email": "alex@navra.nz" }, "record": { - "CNAME": "alexmorris.nz", - "URL": "https://alex.is-a.dev" + "CNAME": "alexmorris.nz" } } diff --git a/domains/alexander.json b/domains/alexander.json new file mode 100644 index 000000000..8cde1ff5f --- /dev/null +++ b/domains/alexander.json @@ -0,0 +1,11 @@ +{ + "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/alexandre.json b/domains/alexandre.json new file mode 100644 index 000000000..64d729b8a --- /dev/null +++ b/domains/alexandre.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ARCIKE", + "email": "alexarcike@gmail.com" + }, + "record": { + "URL": "https://portfolio.alexandre-dev.gq" + } +} diff --git a/domains/alexey.json b/domains/alexey.json new file mode 100644 index 000000000..06803f3d8 --- /dev/null +++ b/domains/alexey.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "charmingdisorder", + "email": "" + }, + "record": { + "CNAME": "charmingdisorder.github.io" + } +} diff --git a/domains/alexidk.json b/domains/alexidk.json new file mode 100644 index 000000000..cb4499dc1 --- /dev/null +++ b/domains/alexidk.json @@ -0,0 +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" + } +} diff --git a/domains/alexis.json b/domains/alexis.json new file mode 100644 index 000000000..be66814ff --- /dev/null +++ b/domains/alexis.json @@ -0,0 +1,12 @@ +{ + "description": "Personnal website of", + "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io", + "owner": { + "username": "alexis-elaxis", + "email": "contact@alexiis.fr", + "twitter": "un_nalexis" + }, + "record": { + "CNAME": "alexis-elaxis.github.io" + } +} diff --git a/domains/alexjoseph.json b/domains/alexjoseph.json new file mode 100644 index 000000000..cb31aaea7 --- /dev/null +++ b/domains/alexjoseph.json @@ -0,0 +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" + } +} diff --git a/domains/alexmercerind.json b/domains/alexmercerind.json new file mode 100644 index 000000000..534f8cd04 --- /dev/null +++ b/domains/alexmercerind.json @@ -0,0 +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" + } +} diff --git a/domains/alexpcooper.json b/domains/alexpcooper.json new file mode 100644 index 000000000..331ae945e --- /dev/null +++ b/domains/alexpcooper.json @@ -0,0 +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" + } +} diff --git a/domains/alexsquibbs.json b/domains/alexsquibbs.json new file mode 100644 index 000000000..21d99399f --- /dev/null +++ b/domains/alexsquibbs.json @@ -0,0 +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" + } +} diff --git a/domains/alfred.json b/domains/alfred.json new file mode 100644 index 000000000..221c4e5c8 --- /dev/null +++ b/domains/alfred.json @@ -0,0 +1,11 @@ +{ + "description": "MkDocs website for alfred-discord-bot", + "repo": "https://github.com/AlfredDiscordBot/AlfredDiscordBot.github.io", + "owner": { + "username": "AlfredDiscordBot", + "email": "alvinallen333@gmail.com" + }, + "record": { + "CNAME": "AlfredDiscordBot.github.io" + } +} diff --git a/domains/algebraic-effects.akshay.json b/domains/algebraic-effects.akshay.json new file mode 100644 index 000000000..7bb605b90 --- /dev/null +++ b/domains/algebraic-effects.akshay.json @@ -0,0 +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" + } +} diff --git a/domains/alguienrandom.json b/domains/alguienrandom.json new file mode 100644 index 000000000..18a9dc664 --- /dev/null +++ b/domains/alguienrandom.json @@ -0,0 +1,10 @@ +{ + "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.json b/domains/ali.json new file mode 100644 index 000000000..d7d475c49 --- /dev/null +++ b/domains/ali.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Portfolio", + "repo": "https://github.com/hmd-ali/hmd-ali.github.io", + "owner": { + "username": "hmd-ali", + "email": "letsmailali.h@gmail.com" + }, + "record": { + "CNAME": "hmd-ali.github.io" + } +} diff --git a/domains/alimd.json b/domains/alimd.json new file mode 100644 index 000000000..561617290 --- /dev/null +++ b/domains/alimd.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AliMD", + "email": "ali@mihandoost.com" + }, + + "record": { + "CNAME": "alimd.github.io" + } +} diff --git a/domains/alireza.json b/domains/alireza.json new file mode 100644 index 000000000..4b22e2db6 --- /dev/null +++ b/domains/alireza.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "faghani", + "email": "", + "twitter": "alireza_faghani" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/alisabry.json b/domains/alisabry.json new file mode 100644 index 000000000..6670c75e6 --- /dev/null +++ b/domains/alisabry.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ali-sabry", + "email": "alisabry.official@gmail.com" + }, + + "record": { + "URL": "https://alisabry.netlify.app" + } +} diff --git a/domains/alisher.json b/domains/alisher.json new file mode 100644 index 000000000..f2d39353a --- /dev/null +++ b/domains/alisher.json @@ -0,0 +1,11 @@ +{ + "description": "Alisher's Website!", + "repo": "https://github.com/alisher-usmonov/portfolio-Website", + "owner": { + "username": "alisher-usmonov", + "email": "alisher.null@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/allen.json b/domains/allen.json new file mode 100644 index 000000000..31faab294 --- /dev/null +++ b/domains/allen.json @@ -0,0 +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" + } +} diff --git a/domains/allvaa.json b/domains/allvaa.json new file mode 100644 index 000000000..ae737fc14 --- /dev/null +++ b/domains/allvaa.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..6ce7dbd7e --- /dev/null +++ b/domains/ally.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..9a76efa5f --- /dev/null +++ b/domains/almatch.json @@ -0,0 +1,11 @@ +{ + "description": "Imad", + "repo": "https://github.com/imadboy89", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "CNAME": "imadboy89.github.io" + } +} diff --git a/domains/almightynan.json b/domains/almightynan.json new file mode 100644 index 000000000..dbb1b5ec7 --- /dev/null +++ b/domains/almightynan.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/almightynan", + "owner": { + "username": "almightynan", + "email": "almightynan@gmail.com" + }, + "record": { + "CNAME": "almightynandev-production.up.railway.app" + } +} 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/alperen.json b/domains/alperen.json new file mode 100644 index 000000000..c5be1ec14 --- /dev/null +++ b/domains/alperen.json @@ -0,0 +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" + } +} diff --git a/domains/alpha.json b/domains/alpha.json new file mode 100644 index 000000000..09b3944ac --- /dev/null +++ b/domains/alpha.json @@ -0,0 +1,10 @@ +{ + "description": "My Website", + "owner": { + "username": "kvotrcsgo", + "email": "sweepalf@gmail.com" + }, + "record": { + "CNAME": "youfoundalpha.pages.dev" + } +} 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/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/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 new file mode 100644 index 000000000..11df910da --- /dev/null +++ b/domains/amal-sebastian.json @@ -0,0 +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" + } +} diff --git a/domains/amal.json b/domains/amal.json new file mode 100644 index 000000000..11df910da --- /dev/null +++ b/domains/amal.json @@ -0,0 +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" + } +} diff --git a/domains/amarjeet.json b/domains/amarjeet.json new file mode 100644 index 000000000..01bc01ae8 --- /dev/null +++ b/domains/amarjeet.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "amalpotra", + "email": "amarjeetmalpotra@outlook.com" + }, + "record": { + "CNAME": "amalpotra.github.io" + } +} 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/amine-brahmi.json b/domains/amine-brahmi.json new file mode 100644 index 000000000..6e5d0b655 --- /dev/null +++ b/domains/amine-brahmi.json @@ -0,0 +1,11 @@ +{ + "description": "My tech blog", + "owner": { + "username": "thou-mayest", + "email": "", + "twitter": "Dr_whoami_" + }, + "record": { + "CNAME": "thou-mayest.github.io" + } +} diff --git a/domains/amit.json b/domains/amit.json new file mode 100644 index 000000000..bdf970313 --- /dev/null +++ b/domains/amit.json @@ -0,0 +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" + } +} diff --git a/domains/amiyo.json b/domains/amiyo.json new file mode 100644 index 000000000..282e1cc1b --- /dev/null +++ b/domains/amiyo.json @@ -0,0 +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" + } +} diff --git a/domains/amjad.json b/domains/amjad.json new file mode 100644 index 000000000..458903496 --- /dev/null +++ b/domains/amjad.json @@ -0,0 +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" + } +} diff --git a/domains/amr.elrefaie.json b/domains/amr.elrefaie.json new file mode 100644 index 000000000..6d2e04d5a --- /dev/null +++ b/domains/amr.elrefaie.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "amour86", + "email": "amour86@gmail.com" + }, + + "record": { + "A": ["35.154.162.29"] + } +} diff --git a/domains/amuffin.json b/domains/amuffin.json new file mode 100644 index 000000000..98a7d5fdb --- /dev/null +++ b/domains/amuffin.json @@ -0,0 +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" + } +} diff --git a/domains/amy.json b/domains/amy.json new file mode 100644 index 000000000..236cd57db --- /dev/null +++ b/domains/amy.json @@ -0,0 +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" + } +} 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..4031ca16e --- /dev/null +++ b/domains/analytics.json @@ -0,0 +1,11 @@ + + { + "owner": { + "username": "isadev", + "email": "hello@maintainers.is-a.dev" + }, + "record": { + "CNAME": "register.is-a.dev" + } + } + diff --git a/domains/anamay.json b/domains/anamay.json new file mode 100644 index 000000000..825541ff4 --- /dev/null +++ b/domains/anamay.json @@ -0,0 +1,11 @@ +{ + "description": "Anamay's .is-a.dev domain", + "repo": "https://github.com/anamaykashiv/anamaykashiv.github.io", + "owner": { + "username": "anamaykashiv", + "email": "kashiv.anamay002@gmail.com" + }, + "record": { + "CNAME": "anamaykashiv.github.io" + } +} diff --git a/domains/anamolsapkota.json b/domains/anamolsapkota.json new file mode 100644 index 000000000..4b0a907df --- /dev/null +++ b/domains/anamolsapkota.json @@ -0,0 +1,11 @@ +{ + "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/anandyeole.json b/domains/anandyeole.json new file mode 100644 index 000000000..4b9433bf0 --- /dev/null +++ b/domains/anandyeole.json @@ -0,0 +1,10 @@ +{ + "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..a8ceae1fc --- /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 new file mode 100644 index 000000000..d18b7a5ca --- /dev/null +++ b/domains/anas.json @@ -0,0 +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" + } +} diff --git a/domains/anautonell.json b/domains/anautonell.json new file mode 100644 index 000000000..53d49c4de --- /dev/null +++ b/domains/anautonell.json @@ -0,0 +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" + } +} diff --git a/domains/anay.json b/domains/anay.json new file mode 100644 index 000000000..6da5d0981 --- /dev/null +++ b/domains/anay.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Anay028", + "email": "anayparswani2008@gmail.com" + }, + + "record": { + "CNAME": "anay028.github.io" + } +} diff --git a/domains/anderson.json b/domains/anderson.json new file mode 100644 index 000000000..cd770ffee --- /dev/null +++ b/domains/anderson.json @@ -0,0 +1,11 @@ +{ + "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.vercel.app" + } +} diff --git a/domains/andgyk.json b/domains/andgyk.json new file mode 100644 index 000000000..8eb363e5e --- /dev/null +++ b/domains/andgyk.json @@ -0,0 +1,11 @@ +{ + "description": "andgyk website", + "repo": "https://github.com/andgyk/andgyk.github.io", + "owner": { + "username": "andgyk", + "email": "an4g7k@gmail.com" + }, + "record": { + "CNAME": "andgyk.github.io" + } +} diff --git a/domains/andr.json b/domains/andr.json new file mode 100644 index 000000000..2d815ee82 --- /dev/null +++ b/domains/andr.json @@ -0,0 +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" + } +} diff --git a/domains/andrea.json b/domains/andrea.json new file mode 100644 index 000000000..6a5d8a781 --- /dev/null +++ b/domains/andrea.json @@ -0,0 +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"] + } +} diff --git a/domains/andremor.json b/domains/andremor.json new file mode 100644 index 000000000..4be5f7d3a --- /dev/null +++ b/domains/andremor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AndreMor8", + "email": "me@andremor.dev" + }, + "record": { + "URL": "https://andremor.dev" + } +} diff --git a/domains/andrew.json b/domains/andrew.json deleted file mode 100644 index ea141e4ae..000000000 --- a/domains/andrew.json +++ /dev/null @@ -1,12 +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", - "URL": "https://andrew.is-a.dev" - } -} diff --git a/domains/andrewstech.json b/domains/andrewstech.json new file mode 100644 index 000000000..70591df6b --- /dev/null +++ b/domains/andrewstech.json @@ -0,0 +1,12 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/andrewstech/andrewstech", + "owner": { + "username": "andrewstech", + "email": "hello@andrewstech.me", + "twitter": "andrewstech1" + }, + "record": { + "CNAME": "andrewstech.github.io" + } +} diff --git a/domains/andrianina.json b/domains/andrianina.json new file mode 100644 index 000000000..2d815ee82 --- /dev/null +++ b/domains/andrianina.json @@ -0,0 +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" + } +} diff --git a/domains/andriy.json b/domains/andriy.json new file mode 100644 index 000000000..0704f1365 --- /dev/null +++ b/domains/andriy.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..e24c9777e --- /dev/null +++ b/domains/andy.json @@ -0,0 +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" + } +} diff --git a/domains/angelo.json b/domains/angelo.json new file mode 100644 index 000000000..dc667e61f --- /dev/null +++ b/domains/angelo.json @@ -0,0 +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" + } +} diff --git a/domains/angelwuff.json b/domains/angelwuff.json new file mode 100644 index 000000000..edc74dc51 --- /dev/null +++ b/domains/angelwuff.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..3f0d534c0 --- /dev/null +++ b/domains/anger.json @@ -0,0 +1,12 @@ +{ + "description": "Will be used to show my page showing stuff about me", + "repo": "https://github.com/angerminecraftyt/aboutme", + "owner": { + "username": "AngerminecraftYT", + "email": "", + "discord": "AngerMinecraftYT#3051" + }, + "record": { + "CNAME": "angerminecraftyt.github.io" + } +} diff --git a/domains/anil.json b/domains/anil.json new file mode 100644 index 000000000..f4b5a90fa --- /dev/null +++ b/domains/anil.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AnilSeervi", + "email": "", + "twitter": "linASeervi" + }, + "record": { + "CNAME": "hashnode.network" + } +} 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 new file mode 100644 index 000000000..66ed6cd63 --- /dev/null +++ b/domains/aniruddh.json @@ -0,0 +1,9 @@ +{ + "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/anishshobithps.json b/domains/anishshobithps.json new file mode 100644 index 000000000..60e1b4402 --- /dev/null +++ b/domains/anishshobithps.json @@ -0,0 +1,13 @@ +{ + "description": "Personal Website of Anish Shobith P S", + "repo": "https://github.com/Anish-Shobith/anish-shobith.github.io", + "owner": { + "username": "Anish-Shobith", + "email": "anish.shobith19@gmail.com", + "twitter": "Anish_Shobith", + "discord": "Anish Shobith#4542" + }, + "record": { + "CNAME": "anish-shobith.github.io" + } +} diff --git a/domains/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 new file mode 100644 index 000000000..004b200a4 --- /dev/null +++ b/domains/ankit.json @@ -0,0 +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" + } +} diff --git a/domains/annihilatorrrr.json b/domains/annihilatorrrr.json new file mode 100644 index 000000000..2005a1c4a --- /dev/null +++ b/domains/annihilatorrrr.json @@ -0,0 +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" + } +} diff --git a/domains/anon.json b/domains/anon.json new file mode 100644 index 000000000..23eacad4e --- /dev/null +++ b/domains/anon.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/anoriin.json b/domains/anoriin.json new file mode 100644 index 000000000..f85967e16 --- /dev/null +++ b/domains/anoriin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AnOrrinn", + "email": "longoriit@gmail.com" + }, + + "record": { + "A": ["103.97.126.28"] + } +} diff --git a/domains/ansari-atharnadim.json b/domains/ansari-atharnadim.json new file mode 100644 index 000000000..a133e0ccf --- /dev/null +++ b/domains/ansari-atharnadim.json @@ -0,0 +1,11 @@ +{ + "description": "This is my website", + "repo": "https://github.com/ansari-atharnadim/ansari-atharnadim.github.io", + "owner": { + "username": "ansari-atharnadim", + "email": "" + }, + "record": { + "CNAME": "ansari-atharnadim.github.io" + } +} diff --git a/domains/ansari-saify.json b/domains/ansari-saify.json 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/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 76eace375..d507a27aa 100644 --- a/domains/anthony.json +++ b/domains/anthony.json @@ -1,11 +1,10 @@ { - "description": "Anthony's personal developer website", - "owner": { - "username": "hubsta", - "email": "admin@thehubble.com.au" - }, - "record": { - "CNAME": "brisbaneweb.dev", - "URL": "https://anthony.is-a.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 new file mode 100644 index 000000000..eed606095 --- /dev/null +++ b/domains/anthony2be.json @@ -0,0 +1,12 @@ +{ + "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/antogamer.json b/domains/antogamer.json new file mode 100644 index 000000000..273726cc2 --- /dev/null +++ b/domains/antogamer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "AntogamerYT", + "email": "antonio.antogamer@gmail.com" + }, + "record": { + "A": ["141.148.238.95"] + } +} diff --git a/domains/antonio.json b/domains/antonio.json new file mode 100644 index 000000000..fe387ce0e --- /dev/null +++ b/domains/antonio.json @@ -0,0 +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" + } +} 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/anubhav823.json b/domains/anubhav823.json new file mode 100644 index 000000000..8de8f6727 --- /dev/null +++ b/domains/anubhav823.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..f47e4e858 --- /dev/null +++ b/domains/anuj.json @@ -0,0 +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" + } +} diff --git a/domains/anwar.json b/domains/anwar.json new file mode 100644 index 000000000..5451e6598 --- /dev/null +++ b/domains/anwar.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..b358e08d9 --- /dev/null +++ b/domains/aoba.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..1b9d644ec --- /dev/null +++ b/domains/aozora.json @@ -0,0 +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" + } +} diff --git a/domains/api-kirito.json b/domains/api-kirito.json new file mode 100644 index 000000000..442b22f6f --- /dev/null +++ b/domains/api-kirito.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/api-kyouka.json b/domains/api-kyouka.json new file mode 100644 index 000000000..02518a0ec --- /dev/null +++ b/domains/api-kyouka.json @@ -0,0 +1,11 @@ +{ + "description": "APIKEY KYOUKA | SHIORI BOT", + "repo": "https://github.com/Yuri-Neko", + "owner": { + "username": "Yuri-Neko", + "email": "apikeykyouka@gmail.com" + }, + "record": { + "CNAME": "free.api-kyouka.my.id" + } +} diff --git a/domains/api.anshtyagi.json b/domains/api.anshtyagi.json new file mode 100644 index 000000000..412c80bd4 --- /dev/null +++ b/domains/api.anshtyagi.json @@ -0,0 +1,11 @@ +{ + "description": "API WEBSITE", + "repo": "https://github.com/anshtyagi0", + "owner": { + "username": "anshtyagi0", + "email": "tyagiansh175@gmail.com" + }, + "record": { + "CNAME": "85fea144-dc5a-45d3-84e3-c3400bf93e87.id.repl.co" + } +} diff --git a/domains/api.arman.json b/domains/api.arman.json new file mode 100644 index 000000000..53c36f404 --- /dev/null +++ b/domains/api.arman.json @@ -0,0 +1,10 @@ +{ + "description": "Arman's Api", + "owner": { + "username": "ItzArman09", + "email": "contact@mail.arman.is-a.dev" + }, + "record": { + "CNAME": "b25320ee-226d-4531-ad1f-db62e88ac1d4.id.repl.co" + } +} diff --git a/domains/api.badboy.json b/domains/api.badboy.json new file mode 100644 index 000000000..d8433f050 --- /dev/null +++ b/domains/api.badboy.json @@ -0,0 +1,10 @@ +{ + "description": "Semant Api", + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev" + }, + "record": { + "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co" + } +} diff --git a/domains/api.catzboy.json b/domains/api.catzboy.json new file mode 100644 index 000000000..86140611c --- /dev/null +++ b/domains/api.catzboy.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..72adff01c --- /dev/null +++ b/domains/api.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WilliamDavidHarrison", + "email": "william@williamharrison.dev" + }, + + "record": { + "CNAME": "wdhdns.com" + } +} diff --git a/domains/api.karyakarsa.willo.json b/domains/api.karyakarsa.willo.json new file mode 100644 index 000000000..2e5e1e4d6 --- /dev/null +++ b/domains/api.karyakarsa.willo.json @@ -0,0 +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" + } +} diff --git a/domains/api.semant.json b/domains/api.semant.json new file mode 100644 index 000000000..e10b2f2ac --- /dev/null +++ b/domains/api.semant.json @@ -0,0 +1,11 @@ +{ + "description": "Semant Api", + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev", + "discord": "445073800850046977" + }, + "record": { + "CNAME": "d583fe02-d653-4af3-a8fc-1645f6857a8c.id.repl.co" + } +} diff --git a/domains/api.taoanhdep.json b/domains/api.taoanhdep.json new file mode 100644 index 000000000..053c6e1ab --- /dev/null +++ b/domains/api.taoanhdep.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bracou", + "email": "bracoui809@gmail.com" + }, + "record": { + "CNAME": "f9fbfdf8-17b8-4bce-be7f-34c1f919bb92.id.repl.co" + } + } + \ No newline at end of file diff --git a/domains/api.zeppelin.maskduck.json b/domains/api.zeppelin.maskduck.json new file mode 100644 index 000000000..18310d23d --- /dev/null +++ b/domains/api.zeppelin.maskduck.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..e4b37ae77 --- /dev/null +++ b/domains/apiharam.json @@ -0,0 +1,11 @@ +{ + "description": "For My Haram API", + "repo": "https://github.com/ThisMe124", + "owner": { + "username": "ThisMe124", + "email": "anonymous.orgn@gmail.com" + }, + "record": { + "CNAME": "haram-api-production.up.railway.app" + } +} diff --git a/domains/apollyon.json b/domains/apollyon.json new file mode 100644 index 000000000..3c5820323 --- /dev/null +++ b/domains/apollyon.json @@ -0,0 +1,11 @@ +{ + "description": "Develop website", + "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 new file mode 100644 index 000000000..c8ddabd3e --- /dev/null +++ b/domains/apoloz.json @@ -0,0 +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"] + } +} diff --git a/domains/applesfruit.json b/domains/applesfruit.json new file mode 100644 index 000000000..807e8b314 --- /dev/null +++ b/domains/applesfruit.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portfolio page with my recent and past projects, experiences, and more.", + "repo": "https://github.com/applesfruit/applesfruit.github.io", + "owner": { + "username": "applesfruit", + "email": "arya.kshipra@gmail.com", + "discord": "fruits#1845" + }, + "record": { + "CNAME": "applesfruit.github.io" + } +} diff --git a/domains/aqsakhan.json b/domains/aqsakhan.json new file mode 100644 index 000000000..0270c7385 --- /dev/null +++ b/domains/aqsakhan.json @@ -0,0 +1,12 @@ +{ + "description": "personal portfolio", + "repo": "https://github.com/aqsakhan/v1.github.io", + "owner": { + "username": "aqsakhan", + "email": "aqsa250bpl@outlook.com", + "twitter": "aqsa_khan32" + }, + "record": { + "CNAME": "v1-7tp.pages.dev" + } +} diff --git a/domains/aqua.json b/domains/aqua.json new file mode 100644 index 000000000..bbe376333 --- /dev/null +++ b/domains/aqua.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AquaQuokka", + "email": "aquaquokka@outlook.com" + }, + + "record": { + "CNAME": "aquaquokka.github.io" + } +} diff --git a/domains/arafatrahaman.json b/domains/arafatrahaman.json new file mode 100644 index 000000000..e0c568786 --- /dev/null +++ b/domains/arafatrahaman.json @@ -0,0 +1,11 @@ +{ + "description": "A personal portfolio website", + "repo": "https://github.com/Hieser21/portfolio", + "owner": { + "username": "Hieser21", + "email": "rarafat883@gmail.com" + }, + "record": { + "CNAME": "portfolio-gh9n.onrender.com" + } +} diff --git a/domains/aramos.json b/domains/aramos.json new file mode 100644 index 000000000..04df44616 --- /dev/null +++ b/domains/aramos.json @@ -0,0 +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" + } +} 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..5ac1933b3 --- /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 new file mode 100644 index 000000000..7dcebb37d --- /dev/null +++ b/domains/arcade.json @@ -0,0 +1,10 @@ +{ + "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..53c1a5dcf --- /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", + "discordid": "410248634593050627" + }, + "record": { + "CNAME": "arch881010.github.io" + } +} diff --git a/domains/archelaus.json b/domains/archelaus.json new file mode 100644 index 000000000..6352907b3 --- /dev/null +++ b/domains/archelaus.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/archelaus/archelaus.github.io", + "owner": { + "username": "archelaus", + "email": "aa.18cs02@thdcihet.ac.in" + }, + "record": { + "CNAME": "archelaus.github.io" + } +} diff --git a/domains/arda.json b/domains/arda.json new file mode 100644 index 000000000..c1076667c --- /dev/null +++ b/domains/arda.json @@ -0,0 +1,12 @@ +{ + "description": "arda.is-a.dev", + "repo": "https://github.com/duzelicem/duzelicem.github.io", + "owner": { + "username": "duzelicem", + "email": "ardagkc@proton.me", + "discord": "arda#0666" + }, + "record": { + "CNAME": "duzelicem.github.io" + } +} diff --git a/domains/ari.json b/domains/ari.json new file mode 100644 index 000000000..97509f6f9 --- /dev/null +++ b/domains/ari.json @@ -0,0 +1,11 @@ +{ + "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/ariez.json b/domains/ariez.json new file mode 100644 index 000000000..b3c759cd9 --- /dev/null +++ b/domains/ariez.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ariezinc", + "email": "ttkeaton@outlook.com" + }, + + "record": { + "CNAME": "meowriez-me.pages.dev" + } +} 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 new file mode 100644 index 000000000..0bdedfb6c --- /dev/null +++ b/domains/arin.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..225faab31 --- /dev/null +++ b/domains/arjix.json @@ -0,0 +1,12 @@ +{ + "description": "Most likely a page for my portfolio.", + "repo": "https://github.com/ArjixWasTaken/arjixwastaken.github.io", + "owner": { + "username": "ArjixWasTaken", + "email": "", + "discord": "Hecker#5573" + }, + "record": { + "CNAME": "arjixwastaken.github.io" + } +} diff --git a/domains/arman.json b/domains/arman.json new file mode 100644 index 000000000..7744011a9 --- /dev/null +++ b/domains/arman.json @@ -0,0 +1,13 @@ +{ + "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 new file mode 100644 index 000000000..67d475901 --- /dev/null +++ b/domains/armoredvortex.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..46571c026 --- /dev/null +++ b/domains/arnav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "arnav-kr", + "email": "arnav-kumar@outlook.com" + }, + + "record": { + "CNAME": "arnav-kr.github.io" + } +} diff --git a/domains/arpana.json b/domains/arpana.json new file mode 100644 index 000000000..e094d8e88 --- /dev/null +++ b/domains/arpana.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..fbaa73978 --- /dev/null +++ b/domains/arslan.json @@ -0,0 +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" + } +} diff --git a/domains/art.json b/domains/art.json new file mode 100644 index 000000000..59aa8227e --- /dev/null +++ b/domains/art.json @@ -0,0 +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" + } +} diff --git a/domains/arter.json b/domains/arter.json new file mode 100644 index 000000000..1c698ab4c --- /dev/null +++ b/domains/arter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "animemoeus", + "email": "arter.tendean.07@gmail.com" + }, + "record": { + "URL": "https://animemoe.us" + } +} diff --git a/domains/arthur.json b/domains/arthur.json new file mode 100644 index 000000000..c24fefc04 --- /dev/null +++ b/domains/arthur.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..bfcc143ce --- /dev/null +++ b/domains/artiefuzzz.json @@ -0,0 +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" + } +} diff --git a/domains/arul.json b/domains/arul.json new file mode 100644 index 000000000..5ee2d7f73 --- /dev/null +++ b/domains/arul.json @@ -0,0 +1,10 @@ +{ + "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/arwi.json b/domains/arwi.json new file mode 100644 index 000000000..4c4bc1128 --- /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 new file mode 100644 index 000000000..bcaf4095a --- /dev/null +++ b/domains/arya.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..d32032699 --- /dev/null +++ b/domains/aryamaan.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "HalalJadeja", + "email": "9236.stkabirdio@gmail.com" + }, + "record": { + "A": [ + "185.199.110.153", + "185.199.108.153", + "185.199.111.153", + "185.199.109.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/asad-khan.json b/domains/asad-khan.json new file mode 100644 index 000000000..4abe78cee --- /dev/null +++ b/domains/asad-khan.json @@ -0,0 +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" + } +} diff --git a/domains/asgarrrr.json b/domains/asgarrrr.json new file mode 100644 index 000000000..bf5d7629a --- /dev/null +++ b/domains/asgarrrr.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/Asgarrrr", + "owner": { + "username": "Asgarrrr", + "email": "hello@jeremycaruelle.fr" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/ashan.json b/domains/ashan.json new file mode 100644 index 000000000..def2ebdc0 --- /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/ashin.json b/domains/ashin.json new file mode 100644 index 000000000..8ded3b280 --- /dev/null +++ b/domains/ashin.json @@ -0,0 +1,11 @@ +{ + "description": "ashin.is-a.dev", + "repo": "https://github.com/ashinberish/v3", + "owner": { + "username": "ashinberish", + "email": "ashinberish@gmail.com" + }, + "record": { + "URL": "https://master.d2p2zrx0sxsnxz.amplifyapp.com" + } +} 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 new file mode 100644 index 000000000..a759cc492 --- /dev/null +++ b/domains/ashish.json @@ -0,0 +1,11 @@ +{ + "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/ashl3y.json b/domains/ashl3y.json new file mode 100644 index 000000000..f9f03fd45 --- /dev/null +++ b/domains/ashl3y.json @@ -0,0 +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" + } +} diff --git a/domains/ashleymavericks.json b/domains/ashleymavericks.json new file mode 100644 index 000000000..33680d0a0 --- /dev/null +++ b/domains/ashleymavericks.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..1186e3ea4 --- /dev/null +++ b/domains/ashutosh.json @@ -0,0 +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" + } +} diff --git a/domains/ashutoshkumar.json b/domains/ashutoshkumar.json new file mode 100644 index 000000000..f8d97941d --- /dev/null +++ b/domains/ashutoshkumar.json @@ -0,0 +1,10 @@ +{ + "description": "Ashutosh Kumar's Portfolio", + "owner": { + "username": "Ashutoshcoder", + "email": "ashutoshkumardbms@gmail.com" + }, + "record": { + "CNAME": "ashutoshkumar.me" + } +} diff --git a/domains/ashwa.json b/domains/ashwa.json new file mode 100644 index 000000000..97a6a0c7e --- /dev/null +++ b/domains/ashwa.json @@ -0,0 +1,11 @@ +{ + "description": "A personal website, for ash.", + "repo": "https://github.com/NatBLida68/NatBLida68.github.io", + "owner": { + "username": "NatBLida68", + "email": "aswajith.jithu888@gmail.com" + }, + "record": { + "CNAME": "natblida68.github.io" + } +} diff --git a/domains/ashwin.json b/domains/ashwin.json new file mode 100644 index 000000000..d4794b671 --- /dev/null +++ b/domains/ashwin.json @@ -0,0 +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" + } +} diff --git a/domains/asif.json b/domains/asif.json new file mode 100644 index 000000000..e2e9a07af --- /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 new file mode 100644 index 000000000..f6cec0bd5 --- /dev/null +++ b/domains/asim.json @@ -0,0 +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" + } +} 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/asp.json b/domains/asp.json new file mode 100644 index 000000000..79686a1fc --- /dev/null +++ b/domains/asp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "aspekts", + "email": "marcus.kamuntu@gmail.com" + }, + "record": { + "CNAME": "29e1a02d-9848-4f80-845e-74cb27d553b3.id.repl.co" + } +} 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 new file mode 100644 index 000000000..a297a1402 --- /dev/null +++ b/domains/aspect404.json @@ -0,0 +1,12 @@ +{ + "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..9fbdf5162 --- /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": "admin@dreemurrs.eu.org", + "discord": "AsrieltheGoat#9753" + }, + "record": { + "CNAME": "asrielthegoat.github.io" + } +} diff --git a/domains/astrix.json b/domains/astrix.json new file mode 100644 index 000000000..3df190a1a --- /dev/null +++ b/domains/astrix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "LeGi0N09", + "email": "priyanshmodi9@gmail.com", + "discord": "712212307585007677" + }, + + "record": { + "CNAME": "b618f6e1-a380-430e-a0cd-d65c68368b5e.id.repl.co" + } +} diff --git a/domains/asuna.json b/domains/asuna.json new file mode 100644 index 000000000..7b2c18dfe --- /dev/null +++ b/domains/asuna.json @@ -0,0 +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" + } +} diff --git a/domains/aswin-vs.json b/domains/aswin-vs.json new file mode 100644 index 000000000..a749747b8 --- /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" + } +} \ No newline at end of file diff --git a/domains/aswin.json b/domains/aswin.json new file mode 100644 index 000000000..4319027e1 --- /dev/null +++ b/domains/aswin.json @@ -0,0 +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" + } +} diff --git a/domains/ataim.json b/domains/ataim.json new file mode 100644 index 000000000..7de1afc5a --- /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.json b/domains/atharv.json new file mode 100644 index 000000000..3d05ae5b4 --- /dev/null +++ b/domains/atharv.json @@ -0,0 +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" + } +} diff --git a/domains/atharva.json b/domains/atharva.json new file mode 100644 index 000000000..ce05b2a98 --- /dev/null +++ b/domains/atharva.json @@ -0,0 +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" + } +} 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/athira-li.json b/domains/athira-li.json new file mode 100644 index 000000000..827d91584 --- /dev/null +++ b/domains/athira-li.json @@ -0,0 +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" + } +} diff --git a/domains/attaditya.json b/domains/attaditya.json new file mode 100644 index 000000000..4d1f8c4b2 --- /dev/null +++ b/domains/attaditya.json @@ -0,0 +1,11 @@ +{ + "description": "I am Aditya, a Game Developer, a Web Developer, a YouTuber and a Student.", + "repo": "https://github.com/Attachment-Studios/AttAditya", + "owner": { + "username": "Attachment-Studios", + "email": "aditya.adigo@gmail.com" + }, + "record": { + "URL": "https://attaditya.deta.dev" + } +} diff --git a/domains/atul.json b/domains/atul.json new file mode 100644 index 000000000..397adf467 --- /dev/null +++ b/domains/atul.json @@ -0,0 +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" + } +} diff --git a/domains/atzu.json b/domains/atzu.json new file mode 100644 index 000000000..0925deff3 --- /dev/null +++ b/domains/atzu.json @@ -0,0 +1,11 @@ +{ + "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/august.json b/domains/august.json new file mode 100644 index 000000000..02bea3222 --- /dev/null +++ b/domains/august.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..b6949cd92 --- /dev/null +++ b/domains/augustin.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..796363474 --- /dev/null +++ b/domains/augustine.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..46f7bd605 --- /dev/null +++ b/domains/austin.json @@ -0,0 +1,11 @@ +{ + "description": "Austin's personal developer website", + "repo": "https://github.com/austindyoung", + "owner": { + "username": "austindyoung", + "email": "austin@doesweb.dev" + }, + "record": { + "URL": "http://austindyoung.github.io" + } +} diff --git a/domains/austinleath.json b/domains/austinleath.json new file mode 100644 index 000000000..f78798a50 --- /dev/null +++ b/domains/austinleath.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AustinLeath", + "email": "austinleath18@gmail.com" + }, + + "record": { + "A": ["153.33.92.51"] + } +} 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 new file mode 100644 index 000000000..b184c3293 --- /dev/null +++ b/domains/auth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "A": ["199.36.158.100"] + } +} diff --git a/domains/authorises.json b/domains/authorises.json new file mode 100644 index 000000000..70a34b734 --- /dev/null +++ b/domains/authorises.json @@ -0,0 +1,11 @@ +{ + "description": "Personal portfolio", + "repo": "https://github.com/Authorises/authorises.github.io", + "owner": { + "username": "authorises", + "email": "authorises_alt@outlook.com" + }, + "record": { + "CNAME": "authorises.github.io" + } +} diff --git a/domains/ave.json b/domains/ave.json new file mode 100644 index 000000000..7e93c23bc --- /dev/null +++ b/domains/ave.json @@ -0,0 +1,11 @@ +{ + "description": "Personal site for github@ayvacs", + "repo": "https://github.com/ayvacs/ayvacs.github.io", + "owner": { + "username": "ayvacs", + "email": "ayvacs@proton.me" + }, + "record": { + "CNAME": "ayvacs.github.io" + } +} diff --git a/domains/avellea.json b/domains/avellea.json new file mode 100644 index 000000000..b9cad219f --- /dev/null +++ b/domains/avellea.json @@ -0,0 +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" + } +} diff --git a/domains/avery.json b/domains/avery.json new file mode 100644 index 000000000..6d4153062 --- /dev/null +++ b/domains/avery.json @@ -0,0 +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" + } +} diff --git a/domains/avg.json b/domains/avg.json new file mode 100644 index 000000000..d0aba07f1 --- /dev/null +++ b/domains/avg.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/avi.json b/domains/avi.json new file mode 100644 index 000000000..278286efd --- /dev/null +++ b/domains/avi.json @@ -0,0 +1,12 @@ +{ + "description": "Avi' personal developer website", + "repo": "https://github.com/avipars/avipars.github.io", + "owner": { + "username": "avipars", + "email": "dev@aviparshan.com", + "twitter": "aviinfinity" + }, + "record": { + "CNAME": "avipars.github.io" + } +} diff --git a/domains/avnoor-gamerz.json b/domains/avnoor-gamerz.json new file mode 100644 index 000000000..88ec0faaf --- /dev/null +++ b/domains/avnoor-gamerz.json @@ -0,0 +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" + } +} diff --git a/domains/avon.json b/domains/avon.json new file mode 100644 index 000000000..3a5269343 --- /dev/null +++ b/domains/avon.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "avonryle", + "discord": "avonryle#3155", + "email": "avonryle@cloudteam.me" + }, + "record": { + "CNAME": "b496390d-18ef-4629-990f-a6bb296f35d6.id.repl.co" + } +} diff --git a/domains/awan.json b/domains/awan.json new file mode 100644 index 000000000..610503119 --- /dev/null +++ b/domains/awan.json @@ -0,0 +1,11 @@ +{ + "description": "Awan Shrestha's Site", + "owner": { + "username": "awanshrestha", + "email": "awa1shrestha@gmail.com", + "twitter": "awanshrestha1" + }, + "record": { + "URL": "https://awan.com.np" + } +} diff --git a/domains/ax.json b/domains/ax.json new file mode 100644 index 000000000..7e27bfa8a --- /dev/null +++ b/domains/ax.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..e027b4dd5 --- /dev/null +++ b/domains/axd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alexdhg", + "email": "me@alexdhg.com" + }, + "record": { + "URL": "https://alexdhg.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/axviii3.json b/domains/axviii3.json new file mode 100644 index 000000000..343179a7c --- /dev/null +++ b/domains/axviii3.json @@ -0,0 +1,16 @@ +{ + "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/ayanamy.json b/domains/ayanamy.json new file mode 100644 index 000000000..fccd3e0c2 --- /dev/null +++ b/domains/ayanamy.json @@ -0,0 +1,12 @@ +{ + "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/aypro.json b/domains/aypro.json new file mode 100644 index 000000000..8db6e084b --- /dev/null +++ b/domains/aypro.json @@ -0,0 +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" + } +} diff --git a/domains/ayush.json b/domains/ayush.json new file mode 100644 index 000000000..6ada4c27b --- /dev/null +++ b/domains/ayush.json @@ -0,0 +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" + } +} diff --git a/domains/ayushshivaji.json b/domains/ayushshivaji.json new file mode 100644 index 000000000..ba9ecfa45 --- /dev/null +++ b/domains/ayushshivaji.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ayushclashroyale", + "email": "ayushclashroyale@gmail.com" + }, + + "record": { + "CNAME": "ayushclashroyale.github.io" + } +} diff --git a/domains/azer.json b/domains/azer.json new file mode 100644 index 000000000..edafa2dff --- /dev/null +++ b/domains/azer.json @@ -0,0 +1,10 @@ +{ + "description": "Personal page of Azer Sadykhzadeh", + "owner": { + "username": "sadykhzadeh", + "email": "azer.piano14@gmail.com" + }, + "record": { + "CNAME": "sadykhzadeh.github.io" + } +} diff --git a/domains/b0q.json b/domains/b0q.json new file mode 100644 index 000000000..7b808ee28 --- /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 new file mode 100644 index 000000000..f1b3205d4 --- /dev/null +++ b/domains/b45i.json @@ -0,0 +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" + } +} diff --git a/domains/ba9.json b/domains/ba9.json new file mode 100644 index 000000000..0fff49587 --- /dev/null +++ b/domains/ba9.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "d2a59ce26a", + "email": "d2a59.ce26a.1@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} \ No newline at end of file diff --git a/domains/bachwumpus.json b/domains/bachwumpus.json new file mode 100644 index 000000000..363ca6786 --- /dev/null +++ b/domains/bachwumpus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BachLe2000", + "email": "tinh200974@gmail.com" + }, + "record": { + "CNAME": "web.frawgnu.tk" + } +} diff --git a/domains/badboy.json b/domains/badboy.json new file mode 100644 index 000000000..154fb79b5 --- /dev/null +++ b/domains/badboy.json @@ -0,0 +1,10 @@ +{ + "description": "Bad Boy/Semant 's Website", + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev" + }, + "record": { + "CNAME": "2755c31d-6389-4f53-8fd7-b83f99037ffd.id.repl.co" + } +} diff --git a/domains/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 new file mode 100644 index 000000000..3020d6e31 --- /dev/null +++ b/domains/bae.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..9fd34f4f1 --- /dev/null +++ b/domains/baijiu.yec.json @@ -0,0 +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" + } +} diff --git a/domains/balam314.json b/domains/balam314.json new file mode 100644 index 000000000..6730eac60 --- /dev/null +++ b/domains/balam314.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BalaM314", + "email": "bulldozerUS@outlook.com" + }, + "record": { + "URL": "https://balam314.github.io/BalaM314" + } +} diff --git a/domains/ball.mousemoosz.json b/domains/ball.mousemoosz.json new file mode 100644 index 000000000..293d56209 --- /dev/null +++ b/domains/ball.mousemoosz.json @@ -0,0 +1,10 @@ +{ + "description": "The documentation website for Ball discord bot.", + "owner": { + "username": "MouseMoosz", + "email": "mousemoosz@protonmail.com" + }, + "record": { + "CNAME": "mousemoosz.github.io" + } +} diff --git a/domains/banana.json b/domains/banana.json new file mode 100644 index 000000000..b9a8c0f3f --- /dev/null +++ b/domains/banana.json @@ -0,0 +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" + } +} diff --git a/domains/bank.json b/domains/bank.json new file mode 100644 index 000000000..b907ee8a4 --- /dev/null +++ b/domains/bank.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tithanayut", + "email": "b@thanayut.in.th" + }, + "description": "Bank Thanayut's Personal Site", + "record": { + "URL": "https://thanayut.in.th" + } +} diff --git a/domains/baquir.json b/domains/baquir.json new file mode 100644 index 000000000..ca86d86ed --- /dev/null +++ b/domains/baquir.json @@ -0,0 +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" + } +} 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/bare1.json b/domains/bare1.json new file mode 100644 index 000000000..8eb2b6f5d --- /dev/null +++ b/domains/bare1.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tiwlinkskwazeh", + "email": "kwazehh@proton.me" + }, + "record": { + "A": ["18.215.144.92"] + } + } + \ No newline at end of file diff --git a/domains/bartoszm77.json b/domains/bartoszm77.json new file mode 100644 index 000000000..b94c93cb9 --- /dev/null +++ b/domains/bartoszm77.json @@ -0,0 +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" + } +} diff --git a/domains/bashou.json b/domains/bashou.json new file mode 100644 index 000000000..fdf1932a2 --- /dev/null +++ b/domains/bashou.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..27eaf9c8c --- /dev/null +++ b/domains/basil.json @@ -0,0 +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" + } +} diff --git a/domains/bast.json b/domains/bast.json new file mode 100644 index 000000000..4cc301bed --- /dev/null +++ b/domains/bast.json @@ -0,0 +1,10 @@ +{ + "description": "Bast's Programming Blog", + "owner": { + "username": "bast0006", + "email": "bast@bast-development.com" + }, + "record": { + "URL": "https://bast-development.com" + } +} diff --git a/domains/batema.json b/domains/batema.json new file mode 100644 index 000000000..c6a201e3b --- /dev/null +++ b/domains/batema.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lukas-batema", + "email": "lukasbatema@gmail.com" + }, + "record": { + "URL": "https://batemadevelopment.com" + } +} diff --git a/domains/baumistlustig.json b/domains/baumistlustig.json new file mode 100644 index 000000000..7fbe846e4 --- /dev/null +++ b/domains/baumistlustig.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "baumistlustig", + "email": "johannes.hoellwerth@protonmail.com" + }, + + "record": { + "URL": "https://baumistlustig.eu" + } +} diff --git a/domains/bbhc.json b/domains/bbhc.json new file mode 100644 index 000000000..4df6c0b06 --- /dev/null +++ b/domains/bbhc.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thetayloredman", + "email": "", + "telegram": "BadBoyHaloCat" + }, + "description": "Personal website", + "record": { + "A": ["167.172.157.69"] + } +} diff --git a/domains/bday-list.suki.json b/domains/bday-list.suki.json new file mode 100644 index 000000000..a34c0ee47 --- /dev/null +++ b/domains/bday-list.suki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SukiPlayz", + "email": "sukimayoo@outlook.com" + }, + "record": { + "CNAME": "65f74b16-32c4-4c9b-b6ae-8fd70c262487.id.repl.co" + } +} diff --git a/domains/bdfd.json b/domains/bdfd.json new file mode 100644 index 000000000..3b798a970 --- /dev/null +++ b/domains/bdfd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "wansie1", + "email": "msc2tvdn@duck.com", + "discord": "962788530336178236" + }, + + "record": { + "CNAME": "b5a101d0-5527-4851-9c20-3907f2992d26.id.repl.co" + } +} diff --git a/domains/bear.json b/domains/bear.json new file mode 100644 index 000000000..8160c37eb --- /dev/null +++ b/domains/bear.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/bedanth.json b/domains/bedanth.json new file mode 100644 index 000000000..b898e2885 --- /dev/null +++ b/domains/bedanth.json @@ -0,0 +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" + } +} diff --git a/domains/bedrock16.json b/domains/bedrock16.json new file mode 100644 index 000000000..22fd5dd49 --- /dev/null +++ b/domains/bedrock16.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..f7e5bc7f1 --- /dev/null +++ b/domains/bee.json @@ -0,0 +1,12 @@ +{ + "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/belle.json b/domains/belle.json new file mode 100644 index 000000000..4c3075d16 --- /dev/null +++ b/domains/belle.json @@ -0,0 +1,11 @@ +{ + "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 482fdfea6..f0a9bbc2c 100644 --- a/domains/ben.json +++ b/domains/ben.json @@ -1,12 +1,10 @@ { - "description": "Ben's personal developer website", - "repo": "https://github.com/stupergenius", "owner": { - "username": "stupergenius", - "email": "ben@bensnider.com" + "username": "justpiple", + "email": "me@benspace.xyz" }, + "record": { - "CNAME": "bensnider.com", - "URL": "https://ben.is-a.dev" + "CNAME": "justpiple.github.io" } -} \ No newline at end of file +} diff --git a/domains/benediktreck.json b/domains/benediktreck.json new file mode 100644 index 000000000..0aae14ca0 --- /dev/null +++ b/domains/benediktreck.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "usr577", + "email": "benedikt.reck@oesdorf.de" + }, + "record": { + "URL": "http://benediktreck.serveo.net" + } + } + \ No newline at end of file diff --git a/domains/benjo.json b/domains/benjo.json new file mode 100644 index 000000000..7c14eedc3 --- /dev/null +++ b/domains/benjo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Golgrax", + "email": "", + "twitter": "BughawBenjo" + }, + "record": { + "CNAME": "09a88fc1-344d-44cf-8b92-98cc1383dff6.id.repl.co" + } +} 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/berry.json b/domains/berry.json new file mode 100644 index 000000000..ffefd6998 --- /dev/null +++ b/domains/berry.json @@ -0,0 +1,11 @@ +{ + "description": "Berry's developer website", + "owner": { + "username": "AhmedBaari", + "email": "ahmed4baari@gmail.com", + "instagram": "berryciouss" + }, + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/beta.json b/domains/beta.json new file mode 100644 index 000000000..0fc3a29a3 --- /dev/null +++ b/domains/beta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "URL": "https://register.is-a.dev" + } +} diff --git a/domains/bhadra.json b/domains/bhadra.json new file mode 100644 index 000000000..1995bb764 --- /dev/null +++ b/domains/bhadra.json @@ -0,0 +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" + } +} diff --git a/domains/bhargav-gohil.json b/domains/bhargav-gohil.json new file mode 100644 index 000000000..762c4d79c --- /dev/null +++ b/domains/bhargav-gohil.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..fac65050f --- /dev/null +++ b/domains/bhattcodes.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..e6187077d --- /dev/null +++ b/domains/bhavishya.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BH00TXD", + "email": "ghost25112006@gmail.com" + }, + + "record": { + "A": ["164.132.74.251"] + } +} 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..f9407749b --- /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" +} \ 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/bimal.json b/domains/bimal.json new file mode 100644 index 000000000..945f65efb --- /dev/null +++ b/domains/bimal.json @@ -0,0 +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" + } +} diff --git a/domains/bing-chilling.json b/domains/bing-chilling.json new file mode 100644 index 000000000..99fdd57a9 --- /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 new file mode 100644 index 000000000..d0b24ffb2 --- /dev/null +++ b/domains/biplob.json @@ -0,0 +1,11 @@ +{ + "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" + } +} 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 new file mode 100644 index 000000000..e9920dac7 --- /dev/null +++ b/domains/blaine.json @@ -0,0 +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" + } +} diff --git a/domains/blake.json b/domains/blake.json new file mode 100644 index 000000000..c1bfd94da --- /dev/null +++ b/domains/blake.json @@ -0,0 +1,12 @@ +{ + "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"] + } +} diff --git a/domains/blankparticle.json b/domains/blankparticle.json new file mode 100644 index 000000000..b7569a880 --- /dev/null +++ b/domains/blankparticle.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BlankParticle", + "email": "hello@blankparticle.me" + }, + "record": { + "URL": "https://www.blankparticle.me" + } +} diff --git a/domains/blast.json b/domains/blast.json new file mode 100644 index 000000000..f52843c4a --- /dev/null +++ b/domains/blast.json @@ -0,0 +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" + } +} diff --git a/domains/blek.json b/domains/blek.json new file mode 100644 index 000000000..3e45c4c06 --- /dev/null +++ b/domains/blek.json @@ -0,0 +1,10 @@ +{ + "description": "blek is a dev", + "owner": { + "username": "b1ek", + "email": "me@blek.codes" + }, + "record": { + "A": [ "185.130.226.115" ] + } +} diff --git a/domains/blog.aditya.json b/domains/blog.aditya.json new file mode 100644 index 000000000..571526b5f --- /dev/null +++ b/domains/blog.aditya.json @@ -0,0 +1,17 @@ +{ + "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 new file mode 100644 index 000000000..695d43e96 --- /dev/null +++ b/domains/blog.catzboy.json @@ -0,0 +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" + } +} diff --git a/domains/blog.crystal.json b/domains/blog.crystal.json new file mode 100644 index 000000000..f04028998 --- /dev/null +++ b/domains/blog.crystal.json @@ -0,0 +1,10 @@ +{ + "description": "Blog", + "owner": { + "username": "crystalbajgai", + "email": "crystalbajgai@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/blog.dhruva.json b/domains/blog.dhruva.json new file mode 100644 index 000000000..254acf7d8 --- /dev/null +++ b/domains/blog.dhruva.json @@ -0,0 +1,10 @@ +{ + "description": "my hashnode blog", + "owner": { + "username": "carrotfarmer", + "email": "dhruvas17068@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/blog.dib.json b/domains/blog.dib.json new file mode 100644 index 000000000..b7660860b --- /dev/null +++ b/domains/blog.dib.json @@ -0,0 +1,11 @@ +{ + "description": "Blog site for my personal projects.", + "owner": { + "username": "DEV-DIBSTER", + "email": "dibster@danbot.host", + "twitter": "DEV_DIBSTER" + }, + "record": { + "A": ["192.95.42.66"] + } +} diff --git a/domains/blog.whine.json b/domains/blog.whine.json new file mode 100644 index 000000000..72e0ee1e2 --- /dev/null +++ b/domains/blog.whine.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ef2fc325b --- /dev/null +++ b/domains/blogs.aakanksha.json @@ -0,0 +1,11 @@ +{ + "description": "Aakanksha's Blog", + "repo": "https://github.com/aakankshabhende/aakankshabhende.github.io", + "owner": { + "username": "aakankshabhende", + "email": "aakanksha0407@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/blogs.shaunak.json b/domains/blogs.shaunak.json new file mode 100644 index 000000000..a3461174b --- /dev/null +++ b/domains/blogs.shaunak.json @@ -0,0 +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" + } +} diff --git a/domains/blox.json b/domains/blox.json new file mode 100644 index 000000000..350a7adb1 --- /dev/null +++ b/domains/blox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "soudblox", + "email": "nick8x@gmail.com" + }, + "record": { + "CNAME": "soudblox.github.io" + } +} diff --git a/domains/blue.json b/domains/blue.json new file mode 100644 index 000000000..0ed1654b3 --- /dev/null +++ b/domains/blue.json @@ -0,0 +1,12 @@ +{ + "description": "A newbie Python developer who wants to learn more about web design and Python development.", + "repo": "https://github.com/Jimmy-Blue/jimmy-blue.github.io", + "owner": { + "username": "Jimmy-Blue", + "email": "ngolong1396@hotmail.com", + "twitter": "JimmyBlue00" + }, + "record": { + "CNAME": "jimmy-blue.github.io" + } +} diff --git a/domains/blueberry.json b/domains/blueberry.json new file mode 100644 index 000000000..592ee628b --- /dev/null +++ b/domains/blueberry.json @@ -0,0 +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" + } +} diff --git a/domains/bluesky01st.json b/domains/bluesky01st.json new file mode 100644 index 000000000..adde959e8 --- /dev/null +++ b/domains/bluesky01st.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BlueSky01st", + "email": "mincraft206127@outlook.com" + }, + "record": { + "CNAME": "blog.bluesky01st.eu.org" + } +} 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 new file mode 100644 index 000000000..31a4fc470 --- /dev/null +++ b/domains/blurnope.json @@ -0,0 +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" + } +} diff --git a/domains/bmhien.json b/domains/bmhien.json new file mode 100644 index 000000000..4c36c2cc8 --- /dev/null +++ b/domains/bmhien.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bm-hien", + "email": "buiminhhien001@gmail.com" + }, + + "record": { + "CNAME": "bmhien.pages.dev" + } +} 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..faabbf279 --- /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 new file mode 100644 index 000000000..7056ca2d9 --- /dev/null +++ b/domains/boba.json @@ -0,0 +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" + } +} diff --git a/domains/bobbrown.json b/domains/bobbrown.json new file mode 100644 index 000000000..20ea8eda8 --- /dev/null +++ b/domains/bobbrown.json @@ -0,0 +1,11 @@ +{ + "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/bolt.json b/domains/bolt.json new file mode 100644 index 000000000..96647d944 --- /dev/null +++ b/domains/bolt.json @@ -0,0 +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" + } +} diff --git a/domains/boolean44.json b/domains/boolean44.json new file mode 100644 index 000000000..2f0ae8308 --- /dev/null +++ b/domains/boolean44.json @@ -0,0 +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" + } +} 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/boredcodebyk.json b/domains/boredcodebyk.json new file mode 100644 index 000000000..63ccbb94b --- /dev/null +++ b/domains/boredcodebyk.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio/Personal landing page", + "repo": "https://github.com/boredcodebyk/boredcodebyk.github.io", + "owner": { + "username": "boredcodebyk", + "email": "" + }, + "record": { + "CNAME": "boredcodebyk.github.io" + } +} diff --git a/domains/boris1993.json b/domains/boris1993.json new file mode 100644 index 000000000..f3a570c18 --- /dev/null +++ b/domains/boris1993.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "boris1993", + "email": "boris1993@live.cn" + }, + "description": "boris1993.is-a.dev", + "record": { + "CNAME": "boris1993.github.io" + } +} diff --git a/domains/bot.riskymh.json b/domains/bot.riskymh.json new file mode 100644 index 000000000..59ebce7cb --- /dev/null +++ b/domains/bot.riskymh.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..070601bde --- /dev/null +++ b/domains/bots.json @@ -0,0 +1,11 @@ +{ + "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/botspointer.json b/domains/botspointer.json new file mode 100644 index 000000000..c02ebe3e9 --- /dev/null +++ b/domains/botspointer.json @@ -0,0 +1,10 @@ +{ + "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..339def193 --- /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 new file mode 100644 index 000000000..a8b6b8d82 --- /dev/null +++ b/domains/box.json @@ -0,0 +1,14 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/Default-Box/website", + "owner": { + "username": "Default-Box", + "email": "", + "twitter": "DefaultBox_", + "discord": "Default Box#8900" + }, + + "record": { + "CNAME": "Default-Box.github.io" + } +} diff --git a/domains/bqini.json b/domains/bqini.json new file mode 100644 index 000000000..a9c46f0c4 --- /dev/null +++ b/domains/bqini.json @@ -0,0 +1,12 @@ +{ + "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/bradley.json b/domains/bradley.json deleted file mode 100644 index d2137d61b..000000000 --- a/domains/bradley.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "description": "Bradley's website", - "owner": { - "username": "bholbrook73", - "email": "bradley73@gmail.com" - }, - "record": { - "ALIAS": "bradleyholbrook.com" - } -} 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 new file mode 100644 index 000000000..a50cf578f --- /dev/null +++ b/domains/brandon.json @@ -0,0 +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" + } +} diff --git a/domains/bravestone.json b/domains/bravestone.json new file mode 100644 index 000000000..82394b239 --- /dev/null +++ b/domains/bravestone.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..7cfa402bd --- /dev/null +++ b/domains/brawley.json @@ -0,0 +1,10 @@ +{ + "description": "Discord Bot's Website", + "owner": { + "username": "brawlie", + "email": "tojoeleeofficial@gmail.com" + }, + "record": { + "URL": "https://brawley.js.org" + } +} diff --git a/domains/breadomaticc.json b/domains/breadomaticc.json new file mode 100644 index 000000000..f50482113 --- /dev/null +++ b/domains/breadomaticc.json @@ -0,0 +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" + } +} diff --git a/domains/bree.json b/domains/bree.json new file mode 100644 index 000000000..290007f4f --- /dev/null +++ b/domains/bree.json @@ -0,0 +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" + } +} diff --git a/domains/brian.json b/domains/brian.json new file mode 100644 index 000000000..1fb05058b --- /dev/null +++ b/domains/brian.json @@ -0,0 +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" + } +} diff --git a/domains/brin.json b/domains/brin.json new file mode 100644 index 000000000..7abb43fbc --- /dev/null +++ b/domains/brin.json @@ -0,0 +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" + } +} diff --git a/domains/broduer.json b/domains/broduer.json new file mode 100644 index 000000000..afb99b69c --- /dev/null +++ b/domains/broduer.json @@ -0,0 +1,11 @@ +{ + "description": "broduer.is-a.dev", + "owner": { + "username": "broduer40", + "email": "broduer@aogamers.net", + "discord": "[AoG+] Broduer#0331" + }, + "record": { + "CNAME": "broduer.aogamers.net" + } +} diff --git a/domains/brokiem.json b/domains/brokiem.json new file mode 100644 index 000000000..547fcbcc6 --- /dev/null +++ b/domains/brokiem.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "brokiem", + "email": "milyhqvideo@gmail.com" + }, + + "record": { + "CNAME": "brokiem.github.io" + } +} diff --git a/domains/brooklyn.json b/domains/brooklyn.json new file mode 100644 index 000000000..8ad95abd7 --- /dev/null +++ b/domains/brooklyn.json @@ -0,0 +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" + } +} diff --git a/domains/bruno.json b/domains/bruno.json new file mode 100644 index 000000000..122e77a2e --- /dev/null +++ b/domains/bruno.json @@ -0,0 +1,10 @@ +{ + "description": "Bruno Henrique Paiva's personal website", + "owner": { + "username": "brunohpaiva", + "email": "me@bruno.codes" + }, + "record": { + "URL": "https://bruno.codes" + } +} diff --git a/domains/bryan.json b/domains/bryan.json new file mode 100644 index 000000000..6a61a38cf --- /dev/null +++ b/domains/bryan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "evilbryan590", + "email": "evilbryan590@gmail.com" + }, + "record": { + "CNAME": "evilbryan590.github.io" + } +} diff --git a/domains/bs.json b/domains/bs.json new file mode 100644 index 000000000..2f4d1f307 --- /dev/null +++ b/domains/bs.json @@ -0,0 +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" + } +} diff --git a/domains/bsapi.json b/domains/bsapi.json new file mode 100644 index 000000000..7fa0d1471 --- /dev/null +++ b/domains/bsapi.json @@ -0,0 +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" + } +} diff --git a/domains/bttm.json b/domains/bttm.json new file mode 100644 index 000000000..5ee7b2291 --- /dev/null +++ b/domains/bttm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BasToTheMax", + "email": "bas@arnold-linda.nl" + }, + "record": { + "A": ["185.234.69.13"] + } +} diff --git a/domains/bug-writer.json b/domains/bug-writer.json new file mode 100644 index 000000000..d8d23a1f2 --- /dev/null +++ b/domains/bug-writer.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KeIrNeGn", + "email": "terminatorx5e@gmail.com", + "discord": "499592235772280842" + }, + + "record": { + "CNAME": "keirnegn.dev" + } +} diff --git a/domains/bur.json b/domains/bur.json new file mode 100644 index 000000000..cab2abf79 --- /dev/null +++ b/domains/bur.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "burandby", + "email": "bur.and.by@gmail.com", + "twitter": "burandby", + "discord": "burandby" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/burandby.json b/domains/burandby.json new file mode 100644 index 000000000..37d578508 --- /dev/null +++ b/domains/burandby.json @@ -0,0 +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" + } +} diff --git a/domains/c00l.json b/domains/c00l.json new file mode 100644 index 000000000..fa7c57df9 --- /dev/null +++ b/domains/c00l.json @@ -0,0 +1,12 @@ + +{ + "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/cal.json b/domains/cal.json new file mode 100644 index 000000000..d57b9ff34 --- /dev/null +++ b/domains/cal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Recal", + "email": "recalibratedgh@gmail.com" + }, + "record": { + "URL": "https://github.com/recal" + } +} diff --git a/domains/calculator.notaperson535.json b/domains/calculator.notaperson535.json new file mode 100644 index 000000000..7149dcd74 --- /dev/null +++ b/domains/calculator.notaperson535.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..63ed2018e --- /dev/null +++ b/domains/caleb.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..277cb808e --- /dev/null +++ b/domains/callum.json @@ -0,0 +1,12 @@ +{ + "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/canaris.json b/domains/canaris.json new file mode 100644 index 000000000..0fadf5322 --- /dev/null +++ b/domains/canaris.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..29b866c4c --- /dev/null +++ b/domains/carlosgiralt.json @@ -0,0 +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" + } +} diff --git a/domains/carmelo.json b/domains/carmelo.json new file mode 100644 index 000000000..b4cb9f67b --- /dev/null +++ b/domains/carmelo.json @@ -0,0 +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" + } +} diff --git a/domains/cartar.json b/domains/cartar.json new file mode 100644 index 000000000..95ff94e2a --- /dev/null +++ b/domains/cartar.json @@ -0,0 +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"] + } +} 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/casb-netbox.json b/domains/casb-netbox.json new file mode 100644 index 000000000..5cbe0b306 --- /dev/null +++ b/domains/casb-netbox.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Qoyyuum", + "email": "abdul.qoyyuum@gmail.com" + }, + + "record": { + "A": ["35.198.253.237"] + } +} diff --git a/domains/cashlycash.json b/domains/cashlycash.json new file mode 100644 index 000000000..87fe58edd --- /dev/null +++ b/domains/cashlycash.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..9eeb6c43c --- /dev/null +++ b/domains/caspar.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..7c55f515a --- /dev/null +++ b/domains/casper.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..f945a4ae4 --- /dev/null +++ b/domains/cassie.json @@ -0,0 +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" + } +} diff --git a/domains/catdrout.json b/domains/catdrout.json new file mode 100644 index 000000000..422e614a9 --- /dev/null +++ b/domains/catdrout.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xcatdrout", + "email": "xcatdrout@proton.me" + }, + "record": { + "CNAME": "site-bwj.pages.dev" + } +} 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 new file mode 100644 index 000000000..a75d297e0 --- /dev/null +++ b/domains/catsarecoo.json @@ -0,0 +1,11 @@ +{ + "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/catto.json b/domains/catto.json new file mode 100644 index 000000000..bb0d44c59 --- /dev/null +++ b/domains/catto.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HF1016", + "email": "harrowfung1016@gmail.com" + }, + "record": { + "A": ["140.238.66.154"] + } +} 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 new file mode 100644 index 000000000..4a206256e --- /dev/null +++ b/domains/catzboy.json @@ -0,0 +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" + } +} diff --git a/domains/caz.json b/domains/caz.json new file mode 100644 index 000000000..b5a9a7019 --- /dev/null +++ b/domains/caz.json @@ -0,0 +1,12 @@ +{ + "description": "Just Another One Of Those Portfolios.", + "repo": "https://github.com/crazyaccess/crazyaccess.github.io", + "owner": { + "username": "crazyaccess", + "email": "caz@monke.team", + "discord": "crazyaccess#7707" + }, + "record": { + "CNAME": "crazyaccess.github.io" + } +} diff --git a/domains/cb.json b/domains/cb.json new file mode 100644 index 000000000..eeea8e3ca --- /dev/null +++ b/domains/cb.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..7dee33e25 --- /dev/null +++ b/domains/cc.json @@ -0,0 +1,12 @@ +{ + "description": "A subdomain for iamcc.github.io", + "repo": "https://github.com/iamcc/iamcc.github.io", + "owner": { + "username": "iamcc", + "email": "sic.hcq@gmail.com", + "twitter": "arm_cc" + }, + "record": { + "CNAME": "iamcc.github.io" + } +} diff --git a/domains/ccnicebruh.json b/domains/ccnicebruh.json new file mode 100644 index 000000000..24bd89a29 --- /dev/null +++ b/domains/ccnicebruh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CcNicebruh", + "email": "tangkeehee2002@gmail.com" + }, + "record": { + "URL": "https://solo.to/ccnicebruh" + } +} 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 new file mode 100644 index 000000000..38dd25e70 --- /dev/null +++ b/domains/ccrp.json @@ -0,0 +1,11 @@ +{ + "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/cdn-rehanplayz.json b/domains/cdn-rehanplayz.json new file mode 100644 index 000000000..b481ce056 --- /dev/null +++ b/domains/cdn-rehanplayz.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..fc5d38d00 --- /dev/null +++ b/domains/cdn.aayush.json @@ -0,0 +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" + } +} diff --git a/domains/cdn.akai.json b/domains/cdn.akai.json new file mode 100644 index 000000000..e8745388a --- /dev/null +++ b/domains/cdn.akai.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "AmazingAkai", + "email": "", + "discord": "Akai#8199" + }, + "record": { + "A": ["45.79.247.123"], + "TXT": "7Yuu0bep" + } +} diff --git a/domains/cdn.arman.json b/domains/cdn.arman.json new file mode 100644 index 000000000..19e332b60 --- /dev/null +++ b/domains/cdn.arman.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..ddcf893be --- /dev/null +++ b/domains/cdn.badboy.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..17b879fa8 --- /dev/null +++ b/domains/cdn.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..a4fc38514 --- /dev/null +++ b/domains/cdn.nziie.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..8ea1a2390 --- /dev/null +++ b/domains/cdn.semant.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/SemantCodes/cdn", + "description": "My static database", + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev" + }, + "record": { + "CNAME": "89b424b5-8e2d-4678-93a9-b793cdf6fceb.id.repl.co" + } +} diff --git a/domains/cdn.zerow.json b/domains/cdn.zerow.json new file mode 100644 index 000000000..353e7e8a0 --- /dev/null +++ b/domains/cdn.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "A": ["92.118.207.191"] + } +} diff --git a/domains/cec.json b/domains/cec.json new file mode 100644 index 000000000..4803ee828 --- /dev/null +++ b/domains/cec.json @@ -0,0 +1,11 @@ +{ + "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/censor.json b/domains/censor.json new file mode 100644 index 000000000..a453bbdb3 --- /dev/null +++ b/domains/censor.json @@ -0,0 +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" + } +} diff --git a/domains/ceon.json b/domains/ceon.json new file mode 100644 index 000000000..334e401d6 --- /dev/null +++ b/domains/ceon.json @@ -0,0 +1,11 @@ +{ + "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/cfp.json b/domains/cfp.json new file mode 100644 index 000000000..83486ccfd --- /dev/null +++ b/domains/cfp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "cfpwastaken", + "email": "", + "discord": "cfp" + }, + "record": { + "CNAME": "cfp.gotdns.ch" + } +} diff --git a/domains/cgprograms.json b/domains/cgprograms.json new file mode 100644 index 000000000..252362340 --- /dev/null +++ b/domains/cgprograms.json @@ -0,0 +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" + } +} diff --git a/domains/chad.json b/domains/chad.json new file mode 100644 index 000000000..409e5eef0 --- /dev/null +++ b/domains/chad.json @@ -0,0 +1,12 @@ +{ + "description": "Chad's GitHub", + "repo": "https://github.com/djsnipa1/djsnipa1.github.io", + "owner": { + "username": "djsnipa1", + "email": "chadboyce@gmail.com", + "twitter": "djsnipa1" + }, + "record": { + "CNAME": "djsnipa1.github.io" + } +} 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 new file mode 100644 index 000000000..183df91b1 --- /dev/null +++ b/domains/chanakan.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..3f1f3fc0e --- /dev/null +++ b/domains/chandra.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/chandrakant.json b/domains/chandrakant.json new file mode 100644 index 000000000..682e6fd3e --- /dev/null +++ b/domains/chandrakant.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..19ed423f6 --- /dev/null +++ b/domains/chang.json @@ -0,0 +1,12 @@ +{ + "description": "Chang's Personal Website", + "repo": "https://github.com/bobbyliu117/bobbyliu117.github.io", + "owner": { + "username": "bobbyliu117", + "email": "", + "twitter": "changisadev" + }, + "record": { + "CNAME": "bobbyliu117.github.io" + } +} diff --git a/domains/changliu.json b/domains/changliu.json new file mode 100644 index 000000000..05999e064 --- /dev/null +++ b/domains/changliu.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..d00beca29 --- /dev/null +++ b/domains/charalampos.json @@ -0,0 +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" + } +} diff --git a/domains/charcg.json b/domains/charcg.json new file mode 100644 index 000000000..25983d84a --- /dev/null +++ b/domains/charcg.json @@ -0,0 +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" + } +} diff --git a/domains/charlie.json b/domains/charlie.json index 419de86fa..421ac71cd 100644 --- a/domains/charlie.json +++ b/domains/charlie.json @@ -1,12 +1,11 @@ { - "description": " Charlie is a Dev", - "repo": "https://github.com/cachrisman/cachrisman.github.io", - "owner": { - "username": "cachrisman", - "email": "charlie.chrisman@gmail.com" - }, - "record": { - "CNAME": "cachrisman.github.io", - "URL": "https://charlie.is-a.dev" - } + "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 new file mode 100644 index 000000000..5b3fd74a7 --- /dev/null +++ b/domains/charlz.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..13842caf0 --- /dev/null +++ b/domains/charlzyx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "charlzyx", + "email": "charlzyx@qq.com" + }, + + "record": { + "A": ["172.21.32.1"] + } +} diff --git a/domains/chat-with.sx9.json b/domains/chat-with.sx9.json new file mode 100644 index 000000000..1510e8b6b --- /dev/null +++ b/domains/chat-with.sx9.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..1a7c9465d --- /dev/null +++ b/domains/checkmate-os.sx9.json @@ -0,0 +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" + } +} diff --git a/domains/chef.json b/domains/chef.json new file mode 100644 index 000000000..1c902cb03 --- /dev/null +++ b/domains/chef.json @@ -0,0 +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" + } +} diff --git a/domains/chenpeng.json b/domains/chenpeng.json new file mode 100644 index 000000000..34d760b53 --- /dev/null +++ b/domains/chenpeng.json @@ -0,0 +1,13 @@ +{ + "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" + } +} diff --git a/domains/chetanbasuray.json b/domains/chetanbasuray.json deleted file mode 100644 index 9dcaaf9b1..000000000 --- a/domains/chetanbasuray.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Chetan's website", - "repo": "https://github.com/chetanbasuray/chetanbasuray.github.io", - "owner": { - "username": "chetanbasuray", - "email": "basuraychetan@gmail.com" - }, - "record": { - "CNAME": "chetanbasuray.github.io", - "URL": "https://chetan-basuray.is-a.dev" - } -} \ No newline at end of file diff --git a/domains/chino.json b/domains/chino.json new file mode 100644 index 000000000..4ef8d7514 --- /dev/null +++ b/domains/chino.json @@ -0,0 +1,12 @@ +{ + "description": "My personal page", + "repo": "https://github.com/AutumnVN/autumnvn.github.io", + "owner": { + "username": "AutumnVN", + "email": "htuan03@gmail.com", + "twitter": "dvht0" + }, + "record": { + "CNAME": "chino.pages.dev" + } +} 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 new file mode 100644 index 000000000..4d1d051ac --- /dev/null +++ b/domains/chip-1925.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..2c0e98217 --- /dev/null +++ b/domains/chip.json @@ -0,0 +1,11 @@ +{ + "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/chirathtimodh.json b/domains/chirathtimodh.json new file mode 100644 index 000000000..fc6b81d5f --- /dev/null +++ b/domains/chirathtimodh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "duesacrifice69", + "email": "chirathtimodh@gmail.com" + }, + "record": { + "URL": "https://chirath.w3spaces.com" + } +} diff --git a/domains/chloe.json b/domains/chloe.json new file mode 100644 index 000000000..2cc65500a --- /dev/null +++ b/domains/chloe.json @@ -0,0 +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" + } +} diff --git a/domains/chouhi.json b/domains/chouhi.json new file mode 100644 index 000000000..032de6f80 --- /dev/null +++ b/domains/chouhi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Chouhict", + "email": "chouhi@proton.me" + }, + "record": { + "URL": "https://chouhi.ml" + } +} diff --git a/domains/chouhict.json b/domains/chouhict.json new file mode 100644 index 000000000..3841d94d9 --- /dev/null +++ b/domains/chouhict.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "Chouhict", + "email": "chouhict@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 913402397588611162" + }, + + "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=chouhi@proton.me" + } +} diff --git a/domains/chris.json b/domains/chris.json index 4d2e47310..6ef798a71 100644 --- a/domains/chris.json +++ b/domains/chris.json @@ -1,13 +1,11 @@ - { - "description": "Chris' Site", - "repo": "https://github.com/Sp4nd3x/", - "owner": { - "username": "Sp4nd3x", - "email": "chrisisadev@gmail.com" - }, - "record": { - "CNAME": "sp4nd3x.github.io", - "URL": "https://chris.is-a.dev" - } + "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 new file mode 100644 index 000000000..1c8c19454 --- /dev/null +++ b/domains/chris8889.json @@ -0,0 +1,11 @@ +{ + "description": "testing", + "owner": { + "username": "Chris8889", + "email": "chris88892@protonmail.com", + "twitter": "Chris8889" + }, + "record": { + "CNAME": "5d931f3a-d63d-4ccf-b14c-5b566fd0c5f0.id.repl.co" + } +} diff --git a/domains/chucha.json b/domains/chucha.json new file mode 100644 index 000000000..8c507af23 --- /dev/null +++ b/domains/chucha.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sly-Little-Fox", + "email": "paranormal.studio123@gmail.com" + }, + "record": { + "CNAME": "sly-little-fox.github.io" + } +} diff --git a/domains/cindy.json b/domains/cindy.json new file mode 100644 index 000000000..6fa1da298 --- /dev/null +++ b/domains/cindy.json @@ -0,0 +1,11 @@ +{ + "description": "portefolio website", + "repo": "https://github.com/cindynatorella/cindynatorella.github.io", + "owner": { + "username": "cindynatorella", + "email": "cindy.e.roullet@gmail.com" + }, + "record": { + "CNAME": "cindynatorella.github.io" + } +} diff --git a/domains/cinnamonshrine.json b/domains/cinnamonshrine.json new file mode 100644 index 000000000..65f8fdeed --- /dev/null +++ b/domains/cinnamonshrine.json @@ -0,0 +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" + } +} diff --git a/domains/cisco.json b/domains/cisco.json new file mode 100644 index 000000000..bca5b7fcd --- /dev/null +++ b/domains/cisco.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "franpessoa", + "email": "frandevacc@gmail.com" + }, + "record": { + "CNAME": "frandevacc.bearblog.dev" + } +} diff --git a/domains/ck.json b/domains/ck.json new file mode 100644 index 000000000..33544155b --- /dev/null +++ b/domains/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": { + "CNAME": "plu5.github.io" + } +} diff --git a/domains/ckateptb.json b/domains/ckateptb.json new file mode 100644 index 000000000..b89817cd2 --- /dev/null +++ b/domains/ckateptb.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CKATEPTb", + "email": "taksis@ex.ua" + }, + + "record": { + "A": ["65.108.238.23"] + } +} diff --git a/domains/ckn.json b/domains/ckn.json new file mode 100644 index 000000000..b2f39c931 --- /dev/null +++ b/domains/ckn.json @@ -0,0 +1,11 @@ +{ + "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/cli.json b/domains/cli.json new file mode 100644 index 000000000..d6b5429e2 --- /dev/null +++ b/domains/cli.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + + "record": { + "URL": "https://npmjs.com/@is-a-dev/cli" + } +} 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/cloud.dergraph.json b/domains/cloud.dergraph.json new file mode 100644 index 000000000..c302aa996 --- /dev/null +++ b/domains/cloud.dergraph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "derGraph", + "email": "dergraph@f5.si" + }, + "record": { + "A": ["83.215.31.101"] + } +} diff --git a/domains/cloud.json b/domains/cloud.json new file mode 100644 index 000000000..d404db59d --- /dev/null +++ b/domains/cloud.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "adarsh-goel", + "email": "adarsh.goel05@gmail.com" + }, + "record": { + "CNAME": "91afb326-7cc2-4a86-bc00-49da7755a6b4.id.repl.co" + } +} diff --git a/domains/cloud9store.json b/domains/cloud9store.json new file mode 100644 index 000000000..9055219f2 --- /dev/null +++ b/domains/cloud9store.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..a17f001e1 --- /dev/null +++ b/domains/cloudy.json @@ -0,0 +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" + } +} diff --git a/domains/cloudz.json b/domains/cloudz.json new file mode 100644 index 000000000..02efb0fe3 --- /dev/null +++ b/domains/cloudz.json @@ -0,0 +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" + } +} diff --git a/domains/clynt.json b/domains/clynt.json new file mode 100644 index 000000000..d6df741e9 --- /dev/null +++ b/domains/clynt.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..7ee848a7e --- /dev/null +++ b/domains/cmd410.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..9f3fe264b --- /dev/null +++ b/domains/coder100.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "cursorweb", + "email": "", + "twitter": "Coder1002" + }, + "description": "Personal Home Page and Blog", + "record": { + "CNAME": "coder100-blog-production.up.railway.app" + } +} diff --git a/domains/coderpy4.json b/domains/coderpy4.json new file mode 100644 index 000000000..4a3c246fa --- /dev/null +++ b/domains/coderpy4.json @@ -0,0 +1,13 @@ +{ + "description": "coderpy4.is-a.dev", + "repo": "https://github.com/coderpy4/coderpy4.github.io", + "owner": { + "username": "coderpy4", + "email": "coderpy4@proton.me", + "twitter": "CoderPY4", + "discord": "coderpy4#4771" + }, + "record": { + "CNAME": "coderpy4.github.io" + } +} diff --git a/domains/codesz.json b/domains/codesz.json new file mode 100644 index 000000000..0026adeb9 --- /dev/null +++ b/domains/codesz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "codeszsoft", + "email": "codeszsoftware@gmail.com" + }, + + "record": { + "CNAME": "codeszsoft.github.io" + } +} diff --git a/domains/codethoma.json b/domains/codethoma.json index baafb82d1..762946040 100644 --- a/domains/codethoma.json +++ b/domains/codethoma.json @@ -1,12 +1,11 @@ { "description": "The ThunderDome", - "repo": "https://github.com/codethoma/", + "repo": "https://github.com/codethoma", "owner": { "username": "codethoma", "email": "mrthundergod@gmail.com" }, "record": { - "CNAME": "codethoma.github.io", - "URL": "https://codethoma.is-a.dev" + "CNAME": "codethoma.github.io" } } diff --git a/domains/codewhiteweb.json b/domains/codewhiteweb.json new file mode 100644 index 000000000..a62c22131 --- /dev/null +++ b/domains/codewhiteweb.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "CodeWhiteWeb", + "email": "web.codewhite@gmail.com", + "twitter": "CodeWhiteWeb1", + "instagram": "CodeWhiteWeb" + }, + "record": { + "URL": "https://codewhiteweb.cf" + } +} diff --git a/domains/coffee.json b/domains/coffee.json new file mode 100644 index 000000000..27b349652 --- /dev/null +++ b/domains/coffee.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..e554fa355 --- /dev/null +++ b/domains/cole.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..ba5a5ea18 --- /dev/null +++ b/domains/community.nziie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nzii3", + "email": "exeyst@gmail.com" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/connor.json b/domains/connor.json new file mode 100644 index 000000000..eac218faa --- /dev/null +++ b/domains/connor.json @@ -0,0 +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" + } +} diff --git a/domains/conorsheehan1.json b/domains/conorsheehan1.json new file mode 100644 index 000000000..1559af875 --- /dev/null +++ b/domains/conorsheehan1.json @@ -0,0 +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" + } +} diff --git a/domains/contentbot.json b/domains/contentbot.json new file mode 100644 index 000000000..7f1cbc6e1 --- /dev/null +++ b/domains/contentbot.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Fqcxn", + "email": "", + "twitter": "FqcxnOfficial", + "discord": "hong.kong" + }, + "record": { + "CNAME": "6399365d-4f52-4cfb-bbc2-5f18d1974c7f.id.repl.co" + } +} diff --git a/domains/coolcodersj.json b/domains/coolcodersj.json new file mode 100644 index 000000000..7d5979fcc --- /dev/null +++ b/domains/coolcodersj.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CoolCoderSJ", + "email": "CoolCoderSJ@gmail.com" + }, + "description": "Portfolio", + "record": { + "CNAME": "coolcodersj.github.io" + } +} diff --git a/domains/cooper.json b/domains/cooper.json new file mode 100644 index 000000000..3d4e80518 --- /dev/null +++ b/domains/cooper.json @@ -0,0 +1,11 @@ +{ + "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..32be4f208 --- /dev/null +++ b/domains/copysland.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Hillzacky", + "email": "Hilm4nsyah@gmail.com" + }, + "record": { + "CNAME": "copysland.github.io" + } + } + \ No newline at end of file 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 new file mode 100644 index 000000000..bbc7fc6ce --- /dev/null +++ b/domains/corentin-sotoca.json @@ -0,0 +1,10 @@ +{ + "description": "Curiculum Vitae - Corentin SOTOCA", + "owner": { + "username": "CorentinSotoca", + "email": "corentin.sotoca@gmail.com" + }, + "record": { + "A": ["62.171.174.120"] + } +} diff --git a/domains/cornix.json b/domains/cornix.json new file mode 100644 index 000000000..5cb7e8df0 --- /dev/null +++ b/domains/cornix.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..3a6f8d772 --- /dev/null +++ b/domains/cosmic.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..a66f262cd --- /dev/null +++ b/domains/cosmos.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "iscosmos", + "email": "iscosmos@outlook.com" + }, + + "record": { + "URL": "https://iscosmos.github.io" + } +} diff --git a/domains/cozymy.json b/domains/cozymy.json new file mode 100644 index 000000000..6373876d3 --- /dev/null +++ b/domains/cozymy.json @@ -0,0 +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" + } +} diff --git a/domains/cr.json b/domains/cr.json new file mode 100644 index 000000000..1182a52ae --- /dev/null +++ b/domains/cr.json @@ -0,0 +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" + } +} diff --git a/domains/cr0nus.json b/domains/cr0nus.json new file mode 100644 index 000000000..c2b4381dd --- /dev/null +++ b/domains/cr0nus.json @@ -0,0 +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" + } +} diff --git a/domains/crackz.json b/domains/crackz.json new file mode 100644 index 000000000..5e71ce0f5 --- /dev/null +++ b/domains/crackz.json @@ -0,0 +1,11 @@ +{ + "description": "Redirecting to my socials website.", + "repo": "https://github.com/CRACKz-cyber", + "owner": { + "username": "CRACKz-cyber", + "email": "thomasknekibus@gmail.com" + }, + "record": { + "URL": "http://lassewiedemann.de" + } +} diff --git a/domains/creature.json b/domains/creature.json new file mode 100644 index 000000000..f3d39e0c2 --- /dev/null +++ b/domains/creature.json @@ -0,0 +1,12 @@ +{ + "description": "This subdomain is for personal purpose only!", + "repo": "https://github.com/pranay5464/pranay5463.github.io", + "owner": { + "username": "pranay5463", + "email": "pranay7091@gmail.com", + "twitter": "dark_elite_98" + }, + "record": { + "CNAME": "pranay5463.github.io" + } +} 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/creve.json b/domains/creve.json new file mode 100644 index 000000000..6155263d3 --- /dev/null +++ b/domains/creve.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ce8dd0ec8 --- /dev/null +++ b/domains/crispy.json @@ -0,0 +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" + } +} diff --git a/domains/cristianmihai.json b/domains/cristianmihai.json new file mode 100644 index 000000000..22e178f03 --- /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/croissant.json b/domains/croissant.json new file mode 100644 index 000000000..6faa7e728 --- /dev/null +++ b/domains/croissant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arhammusheer", + "email": "arhammusheer@gmail.com" + }, + "record": { + "CNAME": "croissant.one" + } +} 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 new file mode 100644 index 000000000..38528e502 --- /dev/null +++ b/domains/crystal.json @@ -0,0 +1,12 @@ +{ + "description": "For hosting my portfolio", + "repo": "https://github.com/crystalbajgai/crystalbajgai.github.io", + "owner": { + "username": "crystalbajgai", + "email": "crystalbajgai@gmail.com", + "twitter": "Crissy0__0" + }, + "record": { + "CNAME": "crystalbajgai.github.io" + } +} diff --git a/domains/cs.json b/domains/cs.json new file mode 100644 index 000000000..433f05500 --- /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/cube.json b/domains/cube.json new file mode 100644 index 000000000..beccc2d7e --- /dev/null +++ b/domains/cube.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheCubeDev69", + "email": "thecubedev69@gmail.com" + }, + + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/cucusise.json b/domains/cucusise.json new file mode 100644 index 000000000..0fc9b83ae --- /dev/null +++ b/domains/cucusise.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Cucusise", + "email": "cucusise@gmail.com" + }, + "record": { + "CNAME": "cucusise.github.io" + } +} diff --git a/domains/cuzimbisonratte.json b/domains/cuzimbisonratte.json new file mode 100644 index 000000000..72b705dc1 --- /dev/null +++ b/domains/cuzimbisonratte.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CuzImBisonratte", + "email": "cuzimbisonratte@gmail.com" + }, + + "record": { + "CNAME": "cuzimbisonratte.github.io" + } +} diff --git a/domains/cyan.json b/domains/cyan.json new file mode 100644 index 000000000..104389320 --- /dev/null +++ b/domains/cyan.json @@ -0,0 +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" + } +} diff --git a/domains/cyanic76.json b/domains/cyanic76.json new file mode 100644 index 000000000..28444735a --- /dev/null +++ b/domains/cyanic76.json @@ -0,0 +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" + } +} diff --git a/domains/cyanide.json b/domains/cyanide.json new file mode 100644 index 000000000..5773df852 --- /dev/null +++ b/domains/cyanide.json @@ -0,0 +1,12 @@ +{ + "description": "I am a professional developer that loves to code in HTML, CSS, and JavaScript!", + "repo": "https://github.com/cyanide1x/cyanide1x.github.io", + "owner": { + "username": "cyanide1x", + "email": "contact@cyanidedev.mn", + "twitter": "cyanide1x" + }, + "record": { + "CNAME": "cyanide1x.github.io" + } +} diff --git a/domains/cycno.json b/domains/cycno.json new file mode 100644 index 000000000..4c21bd8ce --- /dev/null +++ b/domains/cycno.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "CYCNO", + "email": "daniyalchunna2@gmail.com" + }, + "record": { + "CNAME": "cycno.github.io" + } +} diff --git a/domains/cyr.json b/domains/cyr.json new file mode 100644 index 000000000..f38a99955 --- /dev/null +++ b/domains/cyr.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SoulUchiha", + "email": "gameracsyt707@gmail.com", + "discord": "978601368950542397" + }, + + "record": { + "CNAME": "b20c0240-8196-4f97-9bfe-f31aa0ce5f8b.id.repl.co" + } +} diff --git a/domains/d1snin.json b/domains/d1snin.json new file mode 100644 index 000000000..c46bb4587 --- /dev/null +++ b/domains/d1snin.json @@ -0,0 +1,11 @@ +{ + "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/d3admanbot.json b/domains/d3admanbot.json new file mode 100644 index 000000000..1825961ea --- /dev/null +++ b/domains/d3admanbot.json @@ -0,0 +1,10 @@ +{ + "description": "@D3ADVAU 's Telegram Bot | @D3ADMANBOT @D3ADVAU", + "owner": { + "username": "D3ADVAU", + "email": "deadmanofficial247@gmail.com" + }, + "record": { + "CNAME": "c3a24528-96a8-4864-b694-033834a8736e.id.repl.co" + } +} diff --git a/domains/d3c.json b/domains/d3c.json new file mode 100644 index 000000000..3da1902cc --- /dev/null +++ b/domains/d3c.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "czb8", + "email": "czb8.a1@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/d3nxel.json b/domains/d3nxel.json new file mode 100644 index 000000000..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/daanbreur.json b/domains/daanbreur.json new file mode 100644 index 000000000..a18588910 --- /dev/null +++ b/domains/daanbreur.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..71ee24f88 --- /dev/null +++ b/domains/daanschenkel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "daanschenkel", + "email": "daan@daanschenkel.nl" + }, + + "record": { + "URL": "https://daanschenkel.nl" + } +} 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 new file mode 100644 index 000000000..7ec63ecbc --- /dev/null +++ b/domains/dadcuy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Dadcuy", + "email": "dadcuy@gmail.com" + }, + "record": { + "CNAME": "dadcuy.github.io" + } +} diff --git a/domains/daflixy.json b/domains/daflixy.json new file mode 100644 index 000000000..ee7b65bbf --- /dev/null +++ b/domains/daflixy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "daflixy", + "email": "andy.gilbert.uk99@gmail.com" + }, + + "record": { + "CNAME": "f8a904d2-be6c-46a7-a0fa-3379937c6282.id.repl.co" + } +} 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/dainfloop.json b/domains/dainfloop.json new file mode 100644 index 000000000..d79aa031a --- /dev/null +++ b/domains/dainfloop.json @@ -0,0 +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" + } +} diff --git a/domains/damned.json b/domains/damned.json new file mode 100644 index 000000000..586a76bc3 --- /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 new file mode 100644 index 000000000..ef72877d6 --- /dev/null +++ b/domains/dan-habot.json @@ -0,0 +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" + } +} diff --git a/domains/dan.json b/domains/dan.json new file mode 100644 index 000000000..35b648db5 --- /dev/null +++ b/domains/dan.json @@ -0,0 +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" + } +} diff --git a/domains/dangdat.json b/domains/dangdat.json new file mode 100644 index 000000000..5cc2271c0 --- /dev/null +++ b/domains/dangdat.json @@ -0,0 +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" + } +} diff --git a/domains/dani.json b/domains/dani.json new file mode 100644 index 000000000..5eac250e0 --- /dev/null +++ b/domains/dani.json @@ -0,0 +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" + } +} 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.json b/domains/daniel.json new file mode 100644 index 000000000..8087b4438 --- /dev/null +++ b/domains/daniel.json @@ -0,0 +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"], + + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/daniel4-dev.json b/domains/daniel4-dev.json new file mode 100644 index 000000000..3e96eabf6 --- /dev/null +++ b/domains/daniel4-dev.json @@ -0,0 +1,10 @@ +{ + "description": "Daniel's API", + "owner": { + "username": "daniel4-scratch", + "email": "llama552621@gmail.com" + }, + "record": { + "CNAME": "623c3932-ce2c-4590-8f9a-660abb02d893.id.repl.co" + } +} diff --git a/domains/daniel4-scratch.json b/domains/daniel4-scratch.json new file mode 100644 index 000000000..198cb3bbe --- /dev/null +++ b/domains/daniel4-scratch.json @@ -0,0 +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" + } +} diff --git a/domains/danielclarke.json b/domains/danielclarke.json new file mode 100644 index 000000000..5a02b320b --- /dev/null +++ b/domains/danielclarke.json @@ -0,0 +1,11 @@ +{ + "description": "Daniel Clarke's website", + "repo": "https://github.com/DanielWilliamClarke/Cujo", + "owner": { + "username": "DanielWilliamClarke", + "email": "clarkit@gmail.com" + }, + "record": { + "URL": "https://danielclarke.tech" + } +} diff --git a/domains/danilofuchs.json b/domains/danilofuchs.json index 46f2cf52a..c20da8e25 100644 --- a/domains/danilofuchs.json +++ b/domains/danilofuchs.json @@ -1,12 +1,11 @@ { - "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", - "URL": "https://danilofuchs.is-a.dev" - } + "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/dannydandan.json b/domains/dannydandan.json new file mode 100644 index 000000000..33851d31e --- /dev/null +++ b/domains/dannydandan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "daanschenkel", + "email": "daan@daanschenkel.nl" + }, + "record": { + "URL": "https://daanschenkel.nl" + } +} diff --git a/domains/dano.json b/domains/dano.json new file mode 100644 index 000000000..c5193f22a --- /dev/null +++ b/domains/dano.json @@ -0,0 +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" + } +} diff --git a/domains/danterus.json b/domains/danterus.json new file mode 100644 index 000000000..5da10c54b --- /dev/null +++ b/domains/danterus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "danterusdev", + "email": "danterusdev@gmail.com" + }, + "record": { + "CNAME": "danterusdev.github.io" + } +} diff --git a/domains/dany.json b/domains/dany.json new file mode 100644 index 000000000..2c43a23fa --- /dev/null +++ b/domains/dany.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..3929cc39c --- /dev/null +++ b/domains/daria.json @@ -0,0 +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" + } +} 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.json b/domains/dark.json new file mode 100644 index 000000000..86fd9403d --- /dev/null +++ b/domains/dark.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "BruhDark", + "email": "darkpxint@gmail.com" + }, + "record": { + "CNAME": "bruhdarkgithubio-production.up.railway.app" + } +} diff --git a/domains/darkdevil.json b/domains/darkdevil.json new file mode 100644 index 000000000..b70b4b89b --- /dev/null +++ b/domains/darkdevil.json @@ -0,0 +1,19 @@ +{ + "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/darren.json b/domains/darren.json new file mode 100644 index 000000000..68f61269b --- /dev/null +++ b/domains/darren.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..db2c193c5 --- /dev/null +++ b/domains/darsh.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..cd968ad2d --- /dev/null +++ b/domains/dartanman.json @@ -0,0 +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" + } +} diff --git a/domains/dashboard.zeppelin.maskduck.json b/domains/dashboard.zeppelin.maskduck.json new file mode 100644 index 000000000..145910c33 --- /dev/null +++ b/domains/dashboard.zeppelin.maskduck.json @@ -0,0 +1,15 @@ +{ + "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 new file mode 100644 index 000000000..805f30e7a --- /dev/null +++ b/domains/dasshark.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DasSharkk", + "email": "affenheld@gmx.de" + }, + + "record": { + "URL": "https://dasshark.me" + } +} diff --git a/domains/dast.json b/domains/dast.json new file mode 100644 index 000000000..0ad019696 --- /dev/null +++ b/domains/dast.json @@ -0,0 +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"] + } +} diff --git a/domains/data.json b/domains/data.json new file mode 100644 index 000000000..5738c9ef2 --- /dev/null +++ b/domains/data.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WilliamDavidHarrison", + "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..b27443de8 --- /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/david.json b/domains/david.json new file mode 100644 index 000000000..41ee262fe --- /dev/null +++ b/domains/david.json @@ -0,0 +1,11 @@ +{ + "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/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/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/daxnime.json b/domains/daxnime.json new file mode 100644 index 000000000..30855d604 --- /dev/null +++ b/domains/daxnime.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..0fe670a88 --- /dev/null +++ b/domains/daxoron.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..c5a63db3c --- /dev/null +++ b/domains/daysling.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "NightSling", + "email": "pangenisushant20@gmail.com" + }, + + "record": { + "CNAME": "daysling.xyz" + } +} diff --git a/domains/db.json b/domains/db.json new file mode 100644 index 000000000..32ea3219f --- /dev/null +++ b/domains/db.json @@ -0,0 +1,11 @@ +{ + "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/dbh.tolis.json b/domains/dbh.tolis.json new file mode 100644 index 000000000..7707e7cb8 --- /dev/null +++ b/domains/dbh.tolis.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tolisdev", + "email": "a.katsoudas@yahoo.com" + }, + + "record": { + "A": ["167.235.239.76"] + } +} 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 new file mode 100644 index 000000000..ef76d8760 --- /dev/null +++ b/domains/dc.whine.json @@ -0,0 +1,11 @@ +{ + "description": "whi_ne's discord", + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "record": { + "CNAME": "a.redirect.pizza" + } +} diff --git a/domains/de.whine.json b/domains/de.whine.json new file mode 100644 index 000000000..94e299a7c --- /dev/null +++ b/domains/de.whine.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "description": "whi_ne's deno subdomain", + "record": { + "A": ["34.120.54.55"], + "TXT": "deno-com-validation=572b9c00ebc922b6f8367944" + } +} diff --git a/domains/deadshot.json b/domains/deadshot.json new file mode 100644 index 000000000..b3b31c1de --- /dev/null +++ b/domains/deadshot.json @@ -0,0 +1,12 @@ +{ + "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/debajyoti.json b/domains/debajyoti.json new file mode 100644 index 000000000..4441c2b83 --- /dev/null +++ b/domains/debajyoti.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Debajyoti1", + "email": "debajyotidutta.50@gmail.com" + }, + + "record": { + "CNAME": "debajyoti.cf" + } +} diff --git a/domains/debargha.json b/domains/debargha.json new file mode 100644 index 000000000..19854af23 --- /dev/null +++ b/domains/debargha.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DebarghaXD", + "email": "somachattaraj77@gmail.com" + }, + + "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 new file mode 100644 index 000000000..61280d08a --- /dev/null +++ b/domains/debertjamie.json @@ -0,0 +1,11 @@ +{ + "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/debug.json b/domains/debug.json new file mode 100644 index 000000000..e5b0eafb9 --- /dev/null +++ b/domains/debug.json @@ -0,0 +1,11 @@ +{ + "description": "Debug.Log's Website", + + "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/deekshasharma.json b/domains/deekshasharma.json new file mode 100644 index 000000000..ecd974cd9 --- /dev/null +++ b/domains/deekshasharma.json @@ -0,0 +1,10 @@ +{ + "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..1e6cd02ba --- /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/dehteam3.json b/domains/dehteam3.json new file mode 100644 index 000000000..664dc24c6 --- /dev/null +++ b/domains/dehteam3.json @@ -0,0 +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" + } +} diff --git a/domains/delasheras.json b/domains/delasheras.json new file mode 100644 index 000000000..9dc9857e6 --- /dev/null +++ b/domains/delasheras.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/deliable.json b/domains/deliable.json new file mode 100644 index 000000000..46cc5af22 --- /dev/null +++ b/domains/deliable.json @@ -0,0 +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" + } +} diff --git a/domains/delta.json b/domains/delta.json new file mode 100644 index 000000000..273b81031 --- /dev/null +++ b/domains/delta.json @@ -0,0 +1,12 @@ +{ + "description": "Delta's personal website using Github Pages", + "repo": "https://github.com/protogendelta/protogendelta.github.io", + "owner": { + "username": "ProtogenDelta", + "email": "", + "twitter": "TheDeltaProto" + }, + "record": { + "CNAME": "protogendelta.github.io" + } +} 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 new file mode 100644 index 000000000..3083ebd1b --- /dev/null +++ b/domains/demonitize.json @@ -0,0 +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" + } +} diff --git a/domains/demonium.json b/domains/demonium.json new file mode 100644 index 000000000..9bb034593 --- /dev/null +++ b/domains/demonium.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ff77b802c --- /dev/null +++ b/domains/demonkingswarn.json @@ -0,0 +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" + } +} diff --git a/domains/den.json b/domains/den.json new file mode 100644 index 000000000..bc4dbd1b4 --- /dev/null +++ b/domains/den.json @@ -0,0 +1,11 @@ +{ + "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/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/denix.json b/domains/denix.json new file mode 100644 index 000000000..2f7262fb4 --- /dev/null +++ b/domains/denix.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "denixsucks", + "email": "dnz.odr@gmail.com", + "twitter": "denixsucks", + "discord": "denix#9748" + }, + "record": { + "CNAME": "denixsucks.github.io" + } +} diff --git a/domains/deniz.json b/domains/deniz.json new file mode 100644 index 000000000..7833eb574 --- /dev/null +++ b/domains/deniz.json @@ -0,0 +1,14 @@ +{ + "description": "This domain is used by Deniz Tunç / creeperkafasi as a personal portfolio", + "repo": "https://github.com/creeperkafasi/creeperkafasi.github.io", + "owner": { + "username": "creeperkafasi", + "email": "", + "twitter": "_creeperkafasi_", + "discord": "creeperkafasipw#1861", + "note": "I don't use twitter that much, you may have a better chance to contact me through discord" + }, + "record": { + "CNAME": "creeperkafasi.github.io" + } +} diff --git a/domains/dennis.json b/domains/dennis.json new file mode 100644 index 000000000..5acb60e83 --- /dev/null +++ b/domains/dennis.json @@ -0,0 +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" + } +} diff --git a/domains/denver.json b/domains/denver.json new file mode 100644 index 000000000..7d4f9b361 --- /dev/null +++ b/domains/denver.json @@ -0,0 +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" + } +} diff --git a/domains/deoxy.json b/domains/deoxy.json new file mode 100644 index 000000000..4a539f318 --- /dev/null +++ b/domains/deoxy.json @@ -0,0 +1,11 @@ +{ + "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 9aaa137f7..000000000 --- a/domains/derek-briggs.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "owner" : { - "username": "Derek52", - "email": "contact@derekbriggs.xyz" - }, - "record": { - "CNAME": "Derek52.github.io", - "URL": "https://Derek52.is-a.dev" - } -} diff --git a/domains/dergraph.json b/domains/dergraph.json new file mode 100644 index 000000000..7aefc4bf1 --- /dev/null +++ b/domains/dergraph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "derGraph", + "email": "dergraph@f5.si" + }, + "record": { + "URL": "https://github.com/derGraph" + } +} diff --git a/domains/designer.json b/domains/designer.json new file mode 100644 index 000000000..3d6e4ae08 --- /dev/null +++ b/domains/designer.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ad01682a2 --- /dev/null +++ b/domains/destcom.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "destroycom", + "email": "", + "twitter": "ADSantoine" + }, + "description": "DestCom Portfolio", + "repo": "https://github.com/DestroyCom", + "record": { + "A": ["193.123.34.154"] + } +} diff --git a/domains/detox.json b/domains/detox.json new file mode 100644 index 000000000..e80334443 --- /dev/null +++ b/domains/detox.json @@ -0,0 +1,10 @@ +{ + "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.json b/domains/dev.json new file mode 100644 index 000000000..7de8434dd --- /dev/null +++ b/domains/dev.json @@ -0,0 +1,9 @@ +{ + "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..3c7b7175b --- /dev/null +++ b/domains/deva.json @@ -0,0 +1,12 @@ +{ + "description": "my mail forwarder", + "repo": "", + "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/devabh.json b/domains/devabh.json new file mode 100644 index 000000000..f99d13e79 --- /dev/null +++ b/domains/devabh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Devabh116", + "email": "chandradevabh@gmail.com" + }, + + "record": { + "A": ["192.95.42.75"] + } +} diff --git a/domains/devan.json b/domains/devan.json new file mode 100644 index 000000000..8176a002f --- /dev/null +++ b/domains/devan.json @@ -0,0 +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" + } +} diff --git a/domains/devanmed.json b/domains/devanmed.json new file mode 100644 index 000000000..4c25b28d6 --- /dev/null +++ b/domains/devanmed.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "devan2051", + "email": "", + "discord": "EvilPixel#5161" + }, + "record": { + "URL": "https://sites.google.com/view/devanmed/home" + } +} diff --git a/domains/devcomp.json b/domains/devcomp.json new file mode 100644 index 000000000..03de9a7ac --- /dev/null +++ b/domains/devcomp.json @@ -0,0 +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" + } +} diff --git a/domains/devdk.json b/domains/devdk.json new file mode 100644 index 000000000..b838b3960 --- /dev/null +++ b/domains/devdk.json @@ -0,0 +1,11 @@ +{ + "description": "Personal page of DevDK", + "owner": { + "username": "DeveloperDmitryKolyadin", + "email": "", + "twitter": "_DevDK" + }, + "record": { + "CNAME": "DeveloperDmitryKolyadin.github.io" + } +} diff --git a/domains/developer.json b/domains/developer.json new file mode 100644 index 000000000..843164525 --- /dev/null +++ b/domains/developer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Saharsh1223", + "email": "psaharsh2@gmail.com" + }, + "record": { + "CNAME": "sup4321.github.io" + } +} diff --git a/domains/developerjosh.json b/domains/developerjosh.json new file mode 100644 index 000000000..6cc79d913 --- /dev/null +++ b/domains/developerjosh.json @@ -0,0 +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" + } +} diff --git a/domains/devfate.json b/domains/devfate.json new file mode 100644 index 000000000..0bb9c1a2a --- /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/devin.json b/domains/devin.json new file mode 100644 index 000000000..f3675dc78 --- /dev/null +++ b/domains/devin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "athuldevin", + "email": "athuldevin@gmail.com" + }, + "record": { + "A": ["140.238.255.16"] + } +} diff --git a/domains/devon.json b/domains/devon.json new file mode 100644 index 000000000..c2987a6eb --- /dev/null +++ b/domains/devon.json @@ -0,0 +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" + } +} diff --git a/domains/devrealm.json b/domains/devrealm.json new file mode 100644 index 000000000..c54cec701 --- /dev/null +++ b/domains/devrealm.json @@ -0,0 +1,12 @@ +{ + "description": "devRealm website", + "repo": "https://github.com/devrealm", + "owner": { + "username": "gvagenas", + "email": "", + "twitter": "devrealmorg" + }, + "record": { + "CNAME": "devrealm.org" + } +} diff --git a/domains/dex.json b/domains/dex.json new file mode 100644 index 000000000..76eaff020 --- /dev/null +++ b/domains/dex.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/thegeekdex", + "owner": { + "username": "thegeekdex", + "email": "", + "discord": "Dexter#6993" + }, + "record": { + "A": ["43.205.87.144"] + } +} diff --git a/domains/dexo.json b/domains/dexo.json new file mode 100644 index 000000000..8274fd193 --- /dev/null +++ b/domains/dexo.json @@ -0,0 +1,12 @@ +{ + "description": "Ce cauti ma aici?", + "owner": { + "username": "DeXoHigh", + "email": "dexocash@gmail.com" + }, + "record": { + "A": ["185.141.25.116"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/dhanush.json b/domains/dhanush.json new file mode 100644 index 000000000..c2e5fdd54 --- /dev/null +++ b/domains/dhanush.json @@ -0,0 +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" + }, + "record": { + "CNAME": "b1ackshadow.github.io" + } +} diff --git a/domains/dharmx.json b/domains/dharmx.json new file mode 100644 index 000000000..70e246272 --- /dev/null +++ b/domains/dharmx.json @@ -0,0 +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" + } +} 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..e7e0654c5 --- /dev/null +++ b/domains/dhaval-kareliya.json @@ -0,0 +1,11 @@ +{ + "description": "This is a personal website", + "repo": "https://github.com/dhaval-kareliya/dhaval-kareliya.github.io", + "owner": { + "username": "dhaval-kareliya", + "email": "" + }, + "record": { + "CNAME": "dhaval-kareliya.github.io" + } +} diff --git a/domains/dheirya.json b/domains/dheirya.json new file mode 100644 index 000000000..1ad4e23bf --- /dev/null +++ b/domains/dheirya.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..78c554b26 --- /dev/null +++ b/domains/dhinesh.json @@ -0,0 +1,11 @@ +{ + "description": "Dhinesh's portfolio website", + "repo": "https://github.com/mdhinesh/mdhinesh.github.io", + "owner": { + "username": "mdhinesh", + "email": "mdhinesh3103@gmail.com" + }, + "record": { + "CNAME": "mdhinesh.github.io" + } +} diff --git a/domains/dhruva.json b/domains/dhruva.json new file mode 100644 index 000000000..5048c2e82 --- /dev/null +++ b/domains/dhruva.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..dbdb03796 --- /dev/null +++ b/domains/dhruvil.json @@ -0,0 +1,18 @@ +{ + "description": "For portfolio", + "repo": "https://github.com/DhruvilMoradiya/DhruvilMoradiya.github.io", + "owner": { + "username": "DhruvilMoradiya", + "email": "dhruvil1808@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/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/dib.json b/domains/dib.json new file mode 100644 index 000000000..9309e1001 --- /dev/null +++ b/domains/dib.json @@ -0,0 +1,11 @@ +{ + "description": "URL Shortener for sites.", + "owner": { + "username": "DEV-DIBSTER", + "email": "dibster@danbot.host", + "twitter": "DEV_DIBSTER" + }, + "record": { + "A": ["192.95.42.66"] + } +} diff --git a/domains/dibster.json b/domains/dibster.json new file mode 100644 index 000000000..37fb8a60e --- /dev/null +++ b/domains/dibster.json @@ -0,0 +1,11 @@ +{ + "description": "ShareX Server/Protfolio Site.", + "owner": { + "username": "DEV-DIBSTER", + "email": "dibster@danbot.host", + "twitter": "DEV_DIBSTER" + }, + "record": { + "A": ["192.95.42.66"] + } +} diff --git a/domains/didier.json b/domains/didier.json new file mode 100644 index 000000000..bebb0aa33 --- /dev/null +++ b/domains/didier.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..6eabb26f4 --- /dev/null +++ b/domains/didimukhtar.json @@ -0,0 +1,11 @@ +{ + "description": "The awesome portfolio site for Al-Mukhtar Jamilat Ladidi", + "repo": "https://github.com/didimukhtar/didimukhtar.github.io", + "owner": { + "username": "didimukhtar", + "email": "jamilatmukhtar2014@gmail.com" + }, + "record": { + "CNAME": "didimukhtar.github.io" + } +} diff --git a/domains/didntpot.json b/domains/didntpot.json new file mode 100644 index 000000000..6ae061169 --- /dev/null +++ b/domains/didntpot.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "xDidntPot", + "email": "didntpot@protonmail.com" + }, + "record": { + "URL": "https://github.com/xdidntpot" + } +} diff --git a/domains/dillonb07.json b/domains/dillonb07.json new file mode 100644 index 000000000..2bc5e1810 --- /dev/null +++ b/domains/dillonb07.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio of projects for DillonB07", + "repo": "https://replit.com/@DillonB07/Portfolio", + "owner": { + "username": "DillonB07", + "email": "dillonb07dev@gmail.com" + }, + "record": { + "CNAME": "c935404b-ab88-41be-9736-1c910b14a5ba.id.repl.co" + } +} diff --git a/domains/dilshad.json b/domains/dilshad.json new file mode 100644 index 000000000..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/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/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 new file mode 100644 index 000000000..7d0b77756 --- /dev/null +++ b/domains/dinesh.json @@ -0,0 +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" + } +} diff --git a/domains/dino.json b/domains/dino.json new file mode 100644 index 000000000..c802c9924 --- /dev/null +++ b/domains/dino.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..bc9e2a255 --- /dev/null +++ b/domains/dinothedev.json @@ -0,0 +1,11 @@ +{ + "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/dipan.json b/domains/dipan.json new file mode 100644 index 000000000..02967bbc5 --- /dev/null +++ b/domains/dipan.json @@ -0,0 +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"] + } +} 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..78ca848dd --- /dev/null +++ b/domains/dirgha-ukani.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/dirgha-ukani/dirgha-ukani.github.io", + "owner": { + "username": "dirgha-ukani", + "email": "" + }, + "record": { + "CNAME": "dirgha-ukani.github.io" + } +} diff --git a/domains/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 new file mode 100644 index 000000000..79d14a447 --- /dev/null +++ b/domains/discord.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..91f9fbe28 --- /dev/null +++ b/domains/discord.maskduck.json @@ -0,0 +1,11 @@ +{ + "description": "My discord server", + "owner": { + "email": "", + "username": "MaskDuck", + "reddit": "u/maskduck" + }, + "record": { + "URL": "https://discord.gg/weMcPBJV77" + } +} diff --git a/domains/discordbots.semant.json b/domains/discordbots.semant.json new file mode 100644 index 000000000..4400e91e0 --- /dev/null +++ b/domains/discordbots.semant.json @@ -0,0 +1,10 @@ +{ + "description": "Discord bot dashboard", + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev" + }, + "record": { + "CNAME": "b0f6dfb1-f219-4a6b-8505-eccaa29200ea.id.repl.co" + } +} diff --git a/domains/divik.json b/domains/divik.json new file mode 100644 index 000000000..11926e01c --- /dev/null +++ b/domains/divik.json @@ -0,0 +1,11 @@ +{ + "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/divyam.json b/domains/divyam.json new file mode 100644 index 000000000..d19cf759f --- /dev/null +++ b/domains/divyam.json @@ -0,0 +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" + } +} diff --git a/domains/dmmay.json b/domains/dmmay.json new file mode 100644 index 000000000..70e9a7441 --- /dev/null +++ b/domains/dmmay.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "nguoidungkhongdinhdanhh", + "email": "azura22@skiff.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/doc.dergraph.json b/domains/doc.dergraph.json new file mode 100644 index 000000000..c302aa996 --- /dev/null +++ b/domains/doc.dergraph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "derGraph", + "email": "dergraph@f5.si" + }, + "record": { + "A": ["83.215.31.101"] + } +} diff --git a/domains/docs.json b/domains/docs.json new file mode 100644 index 000000000..5b6fb0a15 --- /dev/null +++ b/domains/docs.json @@ -0,0 +1,11 @@ +{ + "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/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 new file mode 100644 index 000000000..be979be41 --- /dev/null +++ b/domains/dom.json @@ -0,0 +1,9 @@ +{ + "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..dc6d6283d --- /dev/null +++ b/domains/domathdotid.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DomathID", + "email": "domath69@gmail.com" + }, + + "record": { + "CNAME": "domathid.github.io" + } +} diff --git a/domains/domin.json b/domains/domin.json new file mode 100644 index 000000000..97bcca545 --- /dev/null +++ b/domains/domin.json @@ -0,0 +1,10 @@ +{ + "description": "Subdomain of is-a.dev for my profile card. I use DBH as hosting if it is necessary to let you know<3", + "owner": { + "username": "Domin-MND", + "email": "dominproject@gmail.com" + }, + "record": { + "A": ["164.132.74.251"] + } +} diff --git a/domains/dominic.json b/domains/dominic.json new file mode 100644 index 000000000..8a642bdbb --- /dev/null +++ b/domains/dominic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mrhappyma", + "email": "dominic@userexe.me" + }, + "record": { + "URL": "https://userexe.me" + } +} diff --git a/domains/dommor.json b/domains/dommor.json new file mode 100644 index 000000000..9dc9857e6 --- /dev/null +++ b/domains/dommor.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/donate.gornostay25.json b/domains/donate.gornostay25.json new file mode 100644 index 000000000..f2ad0d0b6 --- /dev/null +++ b/domains/donate.gornostay25.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "gornostay25", + "email": "me@gornostay25.is-a.dev" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/donkaos.json b/domains/donkaos.json new file mode 100644 index 000000000..1c55cbd59 --- /dev/null +++ b/domains/donkaos.json @@ -0,0 +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" + } +} diff --git a/domains/donno2048.json b/domains/donno2048.json new file mode 100644 index 000000000..f073cb941 --- /dev/null +++ b/domains/donno2048.json @@ -0,0 +1,10 @@ + +{ + "owner": { + "username": "donno2048", + "email": "just4now666666@gmail.com" + }, + "record": { + "URL": "https://donno2048.github.io/Portfolio/" + } +} diff --git a/domains/donut.json b/domains/donut.json new file mode 100644 index 000000000..c4b0150e0 --- /dev/null +++ b/domains/donut.json @@ -0,0 +1,12 @@ +{ + "description": "Welcome to donut2008's website!", + "repo": "https://github.com/donut2008/donut2008.github.io", + "owner": { + "username": "donut2008", + "email": "", + "discord": "donut#6852" + }, + "record": { + "CNAME": "donut2008.github.io" + } +} diff --git a/domains/dooly.json b/domains/dooly.json new file mode 100644 index 000000000..b8b85a5c9 --- /dev/null +++ b/domains/dooly.json @@ -0,0 +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" + } +} diff --git a/domains/doxr.json b/domains/doxr.json new file mode 100644 index 000000000..dcfc4b942 --- /dev/null +++ b/domains/doxr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DoxrGitHub", + "email": "redforcearmy@outlook.com" + }, + "description": "Official @doxr page", + "record": { + "CNAME": "86670803-c2d9-41d8-a4a5-64ccc0a8f39f.id.repl.co" + } +} diff --git a/domains/dqmn.json b/domains/dqmn.json new file mode 100644 index 000000000..1121848e0 --- /dev/null +++ b/domains/dqmn.json @@ -0,0 +1,11 @@ +{ + "description": "dqmn.is-a.dev", + "repo": "https://github.com/dqmn/dqmn.github.io", + "owner": { + "username": "dqmn", + "email": "dqmnbackup@gmail.com" + }, + "record": { + "CNAME": "dqmn.github.io" + } +} diff --git a/domains/dr-therapy.json b/domains/dr-therapy.json new file mode 100644 index 000000000..1f94a2706 --- /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/dragon.json b/domains/dragon.json new file mode 100644 index 000000000..2c24fc84c --- /dev/null +++ b/domains/dragon.json @@ -0,0 +1,11 @@ +{ + "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/drdilyor.json b/domains/drdilyor.json new file mode 100644 index 000000000..30273f4de --- /dev/null +++ b/domains/drdilyor.json @@ -0,0 +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" + } +} diff --git a/domains/drish-xd.json b/domains/drish-xd.json new file mode 100644 index 000000000..60106a54b --- /dev/null +++ b/domains/drish-xd.json @@ -0,0 +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" + } +} diff --git a/domains/drmonocle.json b/domains/drmonocle.json new file mode 100644 index 000000000..f590ec713 --- /dev/null +++ b/domains/drmonocle.json @@ -0,0 +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" + } +} 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..cc3ea775d --- /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/drtherapy.json b/domains/drtherapy.json new file mode 100644 index 000000000..a113b651d --- /dev/null +++ b/domains/drtherapy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "drtherapy2023", + "email": "sitehesap@proton.me" + }, + "record": { + "CNAME": "drtherapy2023.github.io" + } + } + \ No newline at end of file diff --git a/domains/dsaw.json b/domains/dsaw.json new file mode 100644 index 000000000..9891dbbeb --- /dev/null +++ b/domains/dsaw.json @@ -0,0 +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" + } +} diff --git a/domains/dsrev.json b/domains/dsrev.json new file mode 100644 index 000000000..615a9fccb --- /dev/null +++ b/domains/dsrev.json @@ -0,0 +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" + } +} diff --git a/domains/duck.json b/domains/duck.json new file mode 100644 index 000000000..2d8be9689 --- /dev/null +++ b/domains/duck.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ServerDeveloper9447", + "email": "craftblurdiscord@gmail.com" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/duckinc.json b/domains/duckinc.json new file mode 100644 index 000000000..09e91b46e --- /dev/null +++ b/domains/duckinc.json @@ -0,0 +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" + } +} diff --git a/domains/ducky.json b/domains/ducky.json new file mode 100644 index 000000000..012aafbf0 --- /dev/null +++ b/domains/ducky.json @@ -0,0 +1,11 @@ +{ + "description": "My website for random stuff", + "repo": "https://github.com/WhoTook7050/WhoTook7050.github.io", + "owner": { + "username": "WhoTook7050", + "email": "tosonana@tuta.io" + }, + "record": { + "CNAME": "WhoTook7050.github.io" + } +} diff --git a/domains/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/dumkalpoly.json b/domains/dumkalpoly.json new file mode 100644 index 000000000..afab7f64a --- /dev/null +++ b/domains/dumkalpoly.json @@ -0,0 +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" + } +} diff --git a/domains/dunkan.json b/domains/dunkan.json new file mode 100644 index 000000000..5e785433f --- /dev/null +++ b/domains/dunkan.json @@ -0,0 +1,11 @@ +{ + "description": "Dunkan", + "owner": { + "username": "dcdunkan", + "email": "", + "twitter": "dcdunkan" + }, + "record": { + "URL": "https://github.com/dcdunkan" + } +} diff --git a/domains/dushmanta.json b/domains/dushmanta.json new file mode 100644 index 000000000..3da0519e7 --- /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": "dushmanta0511@gmail.com", + "twitter": "dushmanta05" + }, + "record": { + "CNAME": "dushmanta05.github.io" + } +} diff --git a/domains/dwii.json b/domains/dwii.json new file mode 100644 index 000000000..02898537c --- /dev/null +++ b/domains/dwii.json @@ -0,0 +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" + } +} 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/dydestroyer.json b/domains/dydestroyer.json new file mode 100644 index 000000000..107acba75 --- /dev/null +++ b/domains/dydestroyer.json @@ -0,0 +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" + } +} diff --git a/domains/dylan.json b/domains/dylan.json new file mode 100644 index 000000000..8b6c12ab9 --- /dev/null +++ b/domains/dylan.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..1b7be3852 --- /dev/null +++ b/domains/dylank.json @@ -0,0 +1,9 @@ +{ + "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..806a7d125 --- /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/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 new file mode 100644 index 000000000..3e95de80b --- /dev/null +++ b/domains/earthnuker.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "earthnuker", + "email": "earthnuker+isadev@gmail.com" + }, + "record": { + "CNAME": "earthnuker.keybase.pub" + } +} diff --git a/domains/eax.json b/domains/eax.json new file mode 100644 index 000000000..ee469555d --- /dev/null +++ b/domains/eax.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..f10493244 --- /dev/null +++ b/domains/eazyblack.json @@ -0,0 +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" + } +} 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/ecalzo.json b/domains/ecalzo.json index 1243a68c5..4500cb1e7 100644 --- a/domains/ecalzo.json +++ b/domains/ecalzo.json @@ -6,7 +6,6 @@ "email": "evancalz@me.com" }, "record": { - "CNAME": "ecalzo.github.io", - "URL": "https://ecalzo.is-a.dev" + "CNAME": "ecalzo.github.io" } } diff --git a/domains/echo2477.json b/domains/echo2477.json new file mode 100644 index 000000000..f81636a2b --- /dev/null +++ b/domains/echo2477.json @@ -0,0 +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" + } +} diff --git a/domains/eclipse.json b/domains/eclipse.json new file mode 100644 index 000000000..e609282e9 --- /dev/null +++ b/domains/eclipse.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Just-a-Unity-Dev", + "email": "", + "twitter": "eclips_e69" + }, + "description": "A little portfolio based with a basic account system for learning purposes.", + "record": { + "CNAME": "eclips-espace-production.up.railway.app" + } +} diff --git a/domains/eddy.json b/domains/eddy.json new file mode 100644 index 000000000..bd8db864e --- /dev/null +++ b/domains/eddy.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..cd7777183 --- /dev/null +++ b/domains/eddyraz-trfk.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..79bb6bb9a --- /dev/null +++ b/domains/eddyraz.json @@ -0,0 +1,11 @@ +{ + "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/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..a017288b4 --- /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 new file mode 100644 index 000000000..71e0f8da2 --- /dev/null +++ b/domains/edrea.json @@ -0,0 +1,11 @@ +{ + "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/eduardkotov.json b/domains/eduardkotov.json new file mode 100644 index 000000000..2cff54f27 --- /dev/null +++ b/domains/eduardkotov.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "insertsmc228", + "email": "miron720@ukr.net" + }, + "record": { + "A": ["35.158.255.221"] + } +} diff --git a/domains/edward.json b/domains/edward.json new file mode 100644 index 000000000..9b4fd0a9d --- /dev/null +++ b/domains/edward.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "EdwardTheLegend", + "email": "edward@edwardtlowe.com" + }, + + "record": { + "CNAME": "edwardthelegend.github.io" + } +} diff --git a/domains/edwin.json b/domains/edwin.json new file mode 100644 index 000000000..207976914 --- /dev/null +++ b/domains/edwin.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..f8682c4a3 --- /dev/null +++ b/domains/eesa.json @@ -0,0 +1,11 @@ +{ + "description": "Making a .is-a.dev domain as an alt url for my site.", + "repo": "https://github.com/eesazahed/eesa.zahed.ca", + "owner": { + "username": "eesazahed", + "email": "eszhd1@gmail.com" + }, + "record": { + "CNAME": "eesa.zahed.ca" + } +} diff --git a/domains/efe.json b/domains/efe.json new file mode 100644 index 000000000..605a62acc --- /dev/null +++ b/domains/efe.json @@ -0,0 +1,11 @@ +{ + "description": "personal website", + "repo": "https://github.com/0x656665", + "owner": { + "username": "0x656665", + "email": "efe@tutanota.de" + }, + "record": { + "URL": "https://efe.dev" + } +} diff --git a/domains/ejaz.json b/domains/ejaz.json new file mode 100644 index 000000000..060d912f0 --- /dev/null +++ b/domains/ejaz.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/ekansh.json b/domains/ekansh.json new file mode 100644 index 000000000..801ec2b7f --- /dev/null +++ b/domains/ekansh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Inevitable-Design", + "email": "s.ekansh2712@gmail.com" + }, + "record": { + "CNAME": "my-portfolio-production-301e.up.railway.app" + } +} diff --git a/domains/ekinvarli.json b/domains/ekinvarli.json new file mode 100644 index 000000000..cb6d06123 --- /dev/null +++ b/domains/ekinvarli.json @@ -0,0 +1,12 @@ +{ + "description": "ekinvarli.is-a.dev", + "repo": "https://github.com/eknvarli/eknvarli.github.io", + "owner": { + "username": "eknvarli", + "email": "ekinnos@tutanota.com", + "twitter": "eknvarli" + }, + "record": { + "CNAME": "eknvarli.github.io" + } +} diff --git a/domains/el2zay.json b/domains/el2zay.json new file mode 100644 index 000000000..e89e057a5 --- /dev/null +++ b/domains/el2zay.json @@ -0,0 +1,13 @@ +{ + "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..34b563feb --- /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..13e5ce133 --- /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 new file mode 100644 index 000000000..2ac6a1e81 --- /dev/null +++ b/domains/elbkr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "elbkr", + "email": "zaakoukiayman@gmail.com", + "twitter": "elbkrrr" + }, + "record": { + "CNAME": "elbkr.github.io" + } +} diff --git a/domains/eldano.json b/domains/eldano.json new file mode 100644 index 000000000..83df9f692 --- /dev/null +++ b/domains/eldano.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..019330387 --- /dev/null +++ b/domains/eldinesh.json @@ -0,0 +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" + } +} diff --git a/domains/eletrixtalk.json b/domains/eletrixtalk.json new file mode 100644 index 000000000..2aa0eef72 --- /dev/null +++ b/domains/eletrixtalk.json @@ -0,0 +1,12 @@ +{ + "description": "Chat with login system", + "repo": "https://github.com/boomerangBS/Chat-alpha", + "owner": { + "username": "BoomerangBS", + "email": "", + "discord": "boomerangBS#4708" + }, + "record": { + "CNAME": "a1fc013d-7b16-4f1c-8baa-96357e70b6fd.id.repl.co" + } +} diff --git a/domains/eletrixtalkapp.json b/domains/eletrixtalkapp.json 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 new file mode 100644 index 000000000..aa42e55bf --- /dev/null +++ b/domains/elf.json @@ -0,0 +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" + } +} diff --git a/domains/elian.json b/domains/elian.json new file mode 100644 index 000000000..cb5d4af25 --- /dev/null +++ b/domains/elian.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hoangdev09", + "email": "tranconghoang18@gmail.com" + }, + "record": { + "URL": "https://hoangdev09.github.io/infomation" + } +} diff --git a/domains/elias.json b/domains/elias.json new file mode 100644 index 000000000..bb71587f3 --- /dev/null +++ b/domains/elias.json @@ -0,0 +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" + } +} 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/ella.json b/domains/ella.json new file mode 100644 index 000000000..1f4fd0a1c --- /dev/null +++ b/domains/ella.json @@ -0,0 +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" + } +} diff --git a/domains/elma.json b/domains/elma.json new file mode 100644 index 000000000..ac10146db --- /dev/null +++ b/domains/elma.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..6d2e04d5a --- /dev/null +++ b/domains/elrefaie.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "amour86", + "email": "amour86@gmail.com" + }, + + "record": { + "A": ["35.154.162.29"] + } +} diff --git a/domains/elvis.json b/domains/elvis.json new file mode 100644 index 000000000..ec08b6b9e --- /dev/null +++ b/domains/elvis.json @@ -0,0 +1,10 @@ +{ + "description": "Elvis's website", + "owner": { + "username": "ElvisUpUp", + "email": "elvis4study@gmail.com" + }, + "record": { + "URL": "https://github.com/ElvisUpUp" + } +} 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 new file mode 100644 index 000000000..6ee3d4e9c --- /dev/null +++ b/domains/emhl.json @@ -0,0 +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" + } +} diff --git a/domains/emi.json b/domains/emi.json new file mode 100644 index 000000000..68fc7f0fe --- /dev/null +++ b/domains/emi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "eemeeh", + "email": "dev@emeeh.ro" + }, + + "record": { + "CNAME": "emeeh.ro" + } +} diff --git a/domains/emily.json b/domains/emily.json new file mode 100644 index 000000000..7fe67e645 --- /dev/null +++ b/domains/emily.json @@ -0,0 +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" + } +} 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/enderdev.json b/domains/enderdev.json new file mode 100644 index 000000000..cf988935f --- /dev/null +++ b/domains/enderdev.json @@ -0,0 +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" + } +} diff --git a/domains/enderpoint.json b/domains/enderpoint.json new file mode 100644 index 000000000..e02cbad16 --- /dev/null +++ b/domains/enderpoint.json @@ -0,0 +1,13 @@ +{ + "description": "EnderPoint's dev site", + "repo": "https://github.com/EnderPoint07/EnderPoint07.github.io", + "owner": { + "username": "EnderPoint07", + "email": "", + "discord": "DotM38#5497", + "instagram": "enderpoint07" + }, + "record": { + "CNAME": "enderpoint07.github.io" + } +} diff --git a/domains/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 new file mode 100644 index 000000000..a3ab0f09e --- /dev/null +++ b/domains/enzo.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..0e6171bb4 --- /dev/null +++ b/domains/epgeroy.json @@ -0,0 +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" + } +} diff --git a/domains/epic.json b/domains/epic.json new file mode 100644 index 000000000..d35d4590c --- /dev/null +++ b/domains/epic.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..391ecedbf --- /dev/null +++ b/domains/epnq.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..c3a2a74a2 --- /dev/null +++ b/domains/epsooraj.json @@ -0,0 +1,10 @@ +{ + "description": "Sooraj Ep's website", + "owner": { + "username": "epsooraj", + "email": "epsooraj4@gmail.com" + }, + "record": { + "CNAME": "epsooraj.com" + } +} diff --git a/domains/erc.json b/domains/erc.json new file mode 100644 index 000000000..44e4c4b7b --- /dev/null +++ b/domains/erc.json @@ -0,0 +1,11 @@ +{ + "description": "Hashnode Site", + "repo": "https://github.com/eric48906", + "owner": { + "username": "eric48906", + "email": "eric48906@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/erdem.json b/domains/erdem.json new file mode 100644 index 000000000..c9009269f --- /dev/null +++ b/domains/erdem.json @@ -0,0 +1,12 @@ +{ + "description": "erdem's personal website", + "repo": "https://github.com/erdem85/website", + "owner": { + "username": "erdem85", + "email": "erdm@disroot.org", + "twitter": "erdemhso" + }, + "record": { + "URL": "https://erdem.js.org" + } +} diff --git a/domains/erdwpe.json b/domains/erdwpe.json new file mode 100644 index 000000000..ac009cb04 --- /dev/null +++ b/domains/erdwpe.json @@ -0,0 +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" + } +} diff --git a/domains/eren.json b/domains/eren.json new file mode 100644 index 000000000..93d42c42a --- /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 new file mode 100644 index 000000000..46503b29d --- /dev/null +++ b/domains/eric.json @@ -0,0 +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" + } +} diff --git a/domains/ericthomas.json b/domains/ericthomas.json new file mode 100644 index 000000000..0381229e1 --- /dev/null +++ b/domains/ericthomas.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..11d2c8424 --- /dev/null +++ b/domains/erik.json @@ -0,0 +1,11 @@ +{ + "description": "Erik Personal Website", + "repo": "https://github.com/Erik3010", + "owner": { + "username": "erik3010", + "email": "erikhau3010@gmail.com" + }, + "record": { + "CNAME": "erik3010.github.io" + } +} diff --git a/domains/erisa.json b/domains/erisa.json new file mode 100644 index 000000000..378c14fbd --- /dev/null +++ b/domains/erisa.json @@ -0,0 +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" + } +} diff --git a/domains/ermal.json b/domains/ermal.json new file mode 100644 index 000000000..d54a575ab --- /dev/null +++ b/domains/ermal.json @@ -0,0 +1,18 @@ +{ + "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/error404.json b/domains/error404.json new file mode 100644 index 000000000..830132fb4 --- /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/ethan.json b/domains/ethan.json new file mode 100644 index 000000000..e59651ee9 --- /dev/null +++ b/domains/ethan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Darkcoder402", + "email": "ethanrodrigues25@gmail.com", + "twitter": "EthanRo97737635" + }, + "record": { + "CNAME": "ethan-is-a-dev.tk" + } +} diff --git a/domains/ethereal.json b/domains/ethereal.json new file mode 100644 index 000000000..a0d7c6bd8 --- /dev/null +++ b/domains/ethereal.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "EtherealTheDev", + "email": "", + "twitter": "EtherealTheDev", + "discord": "Ethereal#0908" + }, + "record": { + "CNAME": "92073eed-80b5-4f2f-b84a-0121b7ec69bb.id.repl.co" + } +} diff --git a/domains/ethxrnity.json b/domains/ethxrnity.json new file mode 100644 index 000000000..9baf05cb5 --- /dev/null +++ b/domains/ethxrnity.json @@ -0,0 +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" + } +} diff --git a/domains/eutrix.json b/domains/eutrix.json new file mode 100644 index 000000000..8cb932104 --- /dev/null +++ b/domains/eutrix.json @@ -0,0 +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" + } +} diff --git a/domains/eva.json b/domains/eva.json new file mode 100644 index 000000000..e5185b67e --- /dev/null +++ b/domains/eva.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mowatermelon", + "email": "neefoxmo@gmail.com" + }, + "record": { + "URL": "https://t.iiwhy.cn" + } +} diff --git a/domains/eval.json b/domains/eval.json new file mode 100644 index 000000000..c0169e12e --- /dev/null +++ b/domains/eval.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..dbda7d745 --- /dev/null +++ b/domains/evaldas.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "evaldas", + "email": "evabur@icloud.com" + }, + "record": { + "CNAME": "burlingis.com" + } +} diff --git a/domains/evan.json b/domains/evan.json new file mode 100644 index 000000000..7ef8d9a31 --- /dev/null +++ b/domains/evan.json @@ -0,0 +1,11 @@ +{ + "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..564cf902d --- /dev/null +++ b/domains/evelio.json @@ -0,0 +1,19 @@ +{ + "description": "Will be used for my portfolio", + "repo": "https://github.com/SrEvelio/srevelio.github.io", + "owner": { + "username": "SrEvelio", + "email": "alphaevelio@gmail.com", + "discord": "SrEvelioツ#3906" + }, + "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/everyone.json b/domains/everyone.json new file mode 100644 index 000000000..d9689103b --- /dev/null +++ b/domains/everyone.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..9168b3e2f --- /dev/null +++ b/domains/evils.json @@ -0,0 +1,11 @@ +{ + "description": "Portofolio", + "repo": "https://github.com/evils7/evils7.github.io", + "owner": { + "username": "evils7", + "email": "info@evils.gay" + }, + "record": { + "CNAME": "evilssite.glitch.me" + } +} diff --git a/domains/eviternal.json b/domains/eviternal.json new file mode 100644 index 000000000..2e1d0a207 --- /dev/null +++ b/domains/eviternal.json @@ -0,0 +1,12 @@ +{ + "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/f2cqjkp4gwog.json b/domains/f2cqjkp4gwog.json new file mode 100644 index 000000000..3dfcac7fd --- /dev/null +++ b/domains/f2cqjkp4gwog.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thispsj", + "email": "thispsj.mail@gmail.com" + }, + "record": { + "CNAME": "gv-5tmrgilyy2ar3j.dv.googlehosted.com" + } +} diff --git a/domains/fabiancrx.json b/domains/fabiancrx.json new file mode 100644 index 000000000..fa928342b --- /dev/null +++ b/domains/fabiancrx.json @@ -0,0 +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" + } +} diff --git a/domains/faisal.json b/domains/faisal.json new file mode 100644 index 000000000..d2fea857d --- /dev/null +++ b/domains/faisal.json @@ -0,0 +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" + } +} diff --git a/domains/faiz.json b/domains/faiz.json new file mode 100644 index 000000000..db8b3901d --- /dev/null +++ b/domains/faiz.json @@ -0,0 +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" + } +} diff --git a/domains/fake.json b/domains/fake.json new file mode 100644 index 000000000..d00ce8282 --- /dev/null +++ b/domains/fake.json @@ -0,0 +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" + } +} diff --git a/domains/falguni-prajapati.json b/domains/falguni-prajapati.json new file mode 100644 index 000000000..faea36c15 --- /dev/null +++ b/domains/falguni-prajapati.json @@ -0,0 +1,11 @@ +{ + "description": "This is falguni prajapati", + "repo": "https://github.com/falguni-prajapati/falguni-prajapati.github.io", + "owner": { + "username": "falguni-prajapati", + "email": "" + }, + "record": { + "CNAME": "falguni-prajapati.github.io" + } +} diff --git a/domains/fallen.json b/domains/fallen.json new file mode 100644 index 000000000..bfb1e1737 --- /dev/null +++ b/domains/fallen.json @@ -0,0 +1,12 @@ +{ + "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/faris.json b/domains/faris.json new file mode 100644 index 000000000..7ad18eea6 --- /dev/null +++ b/domains/faris.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..47d8118b4 --- /dev/null +++ b/domains/faris0520.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..7629059a5 --- /dev/null +++ b/domains/farish.json @@ -0,0 +1,13 @@ +{ + "description": "Email", + "owner": { + "username": "fxrysh", + "discord": "Fxrysh#5947", + "twitter": "fxryshdev", + "email": "hello@farish.is-a.dev" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/farjanul.json b/domains/farjanul.json 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/fartplayer69.json b/domains/fartplayer69.json new file mode 100644 index 000000000..f57eca1ec --- /dev/null +++ b/domains/fartplayer69.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "diyar2137237243", + "email": "diyarpc6@gmail.com" + }, + "record": { + "CNAME": "diyar2137237243.github.io" + } +} diff --git a/domains/farvessafiyudeen.json b/domains/farvessafiyudeen.json new file mode 100644 index 000000000..27298171b --- /dev/null +++ b/domains/farvessafiyudeen.json @@ -0,0 +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" + } +} diff --git a/domains/farzan.json b/domains/farzan.json new file mode 100644 index 000000000..407b644e7 --- /dev/null +++ b/domains/farzan.json @@ -0,0 +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" + } +} diff --git a/domains/fastering.json b/domains/fastering.json new file mode 100644 index 000000000..3379ab466 --- /dev/null +++ b/domains/fastering.json @@ -0,0 +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" + } +} diff --git a/domains/fatgrizzly.json b/domains/fatgrizzly.json new file mode 100644 index 000000000..56ee53ce1 --- /dev/null +++ b/domains/fatgrizzly.json @@ -0,0 +1,11 @@ +{ + "description": "personal website ", + "repo": "https://github.com/fatgrizzly", + "owner": { + "username": "fatgrizzly", + "email": "soundar@secret.fyi" + }, + "record": { + "A": ["23.147.40.69"] + } +} diff --git a/domains/fauzannnnh.json b/domains/fauzannnnh.json new file mode 100644 index 000000000..c630c6a1f --- /dev/null +++ b/domains/fauzannnnh.json @@ -0,0 +1,11 @@ +{ + "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/fayasnoushad.json b/domains/fayasnoushad.json new file mode 100644 index 000000000..d69244f41 --- /dev/null +++ b/domains/fayasnoushad.json @@ -0,0 +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" + } +} diff --git a/domains/fayyadh.json b/domains/fayyadh.json new file mode 100644 index 000000000..39dba30f6 --- /dev/null +++ b/domains/fayyadh.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..2137eb11f --- /dev/null +++ b/domains/fbi.json @@ -0,0 +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" + } +} diff --git a/domains/fcircle-doc.json b/domains/fcircle-doc.json new file mode 100644 index 000000000..cec6a1339 --- /dev/null +++ b/domains/fcircle-doc.json @@ -0,0 +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" + } +} diff --git a/domains/fdciabdul.json b/domains/fdciabdul.json new file mode 100644 index 000000000..586106db5 --- /dev/null +++ b/domains/fdciabdul.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..85ddb9ab0 --- /dev/null +++ b/domains/fel1x0u.json @@ -0,0 +1,12 @@ +{ + "description": "Add some description", + "repo": "https://github.com/fel1x0u/fel1x0u.github.io", + "owner": { + "username": "fel1x0u", + "email": "felixcou@pm.me", + "twitter": "fel1x0u1" + }, + "record": { + "CNAME": "fel1x0u.github.io" + } +} diff --git a/domains/felga.json b/domains/felga.json new file mode 100644 index 000000000..fc90b54b7 --- /dev/null +++ b/domains/felga.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Felga7453", + "email": "wojciech.faruga@outlook.com" + }, + "record": { + "CNAME": "felga.ddns.net" + } +} diff --git a/domains/felix.json b/domains/felix.json new file mode 100644 index 000000000..2a680d3de --- /dev/null +++ b/domains/felix.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..2741d88b1 --- /dev/null +++ b/domains/felixalguzman.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "felixalguzman", + "email": "code@felixalguzman.msk.do" + }, + + "record": { + "URL": "https://github.com/felixalguzman" + } +} diff --git a/domains/felixtr.json b/domains/felixtr.json new file mode 100644 index 000000000..d42c818ac --- /dev/null +++ b/domains/felixtr.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/tphuc/tphuc.github.io", + "owner": { + "username": "tphuc", + "email": "felixtran2000@gmail.com" + }, + "record": { + "CNAME": "tphuc.github.io" + } +} diff --git a/domains/fengkch.json b/domains/fengkch.json new file mode 100644 index 000000000..04c6b7f75 --- /dev/null +++ b/domains/fengkch.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sohokay", + "email": "kaichangfeng@gmail.com" + }, + + "record": { + "URL": "https://github.com/sohokay" + } +} 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 new file mode 100644 index 000000000..55e01411a --- /dev/null +++ b/domains/fietu.json @@ -0,0 +1,11 @@ +{ + "description": "Fietu Website", + "repo": "https://github.com/elfietulais", + "owner": { + "username": "ElFietulais", + "email": "pancongusanos@gmail.com" + }, + "record": { + "CNAME": "host.servers.andremor.dev" + } +} diff --git a/domains/files.dqmn.json b/domains/files.dqmn.json new file mode 100644 index 000000000..cd09f820c --- /dev/null +++ b/domains/files.dqmn.json @@ -0,0 +1,10 @@ +{ + "description": "files.dqmn.is-a.dev - this will be my 'cloud' for files", + "owner": { + "username": "dqmn", + "email": "dqmnbackup@gmail.com" + }, + "record": { + "CNAME": "dqmnfiles.000webhostapp.com" + } +} diff --git a/domains/filip769.json b/domains/filip769.json new file mode 100644 index 000000000..cda5062d0 --- /dev/null +++ b/domains/filip769.json @@ -0,0 +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" + } +} diff --git a/domains/finn.json b/domains/finn.json new file mode 100644 index 000000000..31b061686 --- /dev/null +++ b/domains/finn.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/F1nnM", + "owner": { + "username": "F1nnM", + "email": "isadev_github@mfinn.de" + }, + "record": { + "A": ["94.176.233.129"] + } +} 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/firepup650.json b/domains/firepup650.json new file mode 100644 index 000000000..7b0dca3d0 --- /dev/null +++ b/domains/firepup650.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Alexander-Maples", + "email": "mapleale@studentmail.conroeisd.net" + }, + + "record": { + "CNAME": "5828eaa1-491a-4323-9d54-d5e80935eab3.id.repl.co" + } +} diff --git a/domains/fireredz.json b/domains/fireredz.json new file mode 100644 index 000000000..fbeac143e --- /dev/null +++ b/domains/fireredz.json @@ -0,0 +1,10 @@ +{ + "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/fishycraft.json b/domains/fishycraft.json new file mode 100644 index 000000000..e7f72248f --- /dev/null +++ b/domains/fishycraft.json @@ -0,0 +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" + } +} diff --git a/domains/fitrahmunir.json b/domains/fitrahmunir.json new file mode 100644 index 000000000..dc4117aa5 --- /dev/null +++ b/domains/fitrahmunir.json @@ -0,0 +1,11 @@ +{ + "description": "FitrahFM's .is-a.dev domain", + "repo": "https://github.com/fitrahfm", + "owner": { + "username": "fitrahfm", + "email": "fitrhmnr+is-a-dev@gmail.com" + }, + "record": { + "CNAME": "fitrahmunir.pages.dev" + } +} diff --git a/domains/fjavierlh.json b/domains/fjavierlh.json new file mode 100644 index 000000000..4bca23143 --- /dev/null +++ b/domains/fjavierlh.json @@ -0,0 +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" + } +} diff --git a/domains/fjuro.json b/domains/fjuro.json new file mode 100644 index 000000000..188405224 --- /dev/null +++ b/domains/fjuro.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Fjuro", + "email": "ifjuro@proton.me" + }, + "record": { + "CNAME": "fjuro.github.io" + } + } + \ 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..a51351960 --- /dev/null +++ b/domains/flazepe.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "flazepe", + "email": "", + "discord": "flazepe" + }, + "record": { + "CNAME": "flazepe.github.io" + } +} diff --git a/domains/flexico.json b/domains/flexico.json new file mode 100644 index 000000000..9376011a1 --- /dev/null +++ b/domains/flexico.json @@ -0,0 +1,11 @@ +{ + "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/floppa.json b/domains/floppa.json new file mode 100644 index 000000000..9cdbfb720 --- /dev/null +++ b/domains/floppa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Luxxy-GF", + "email": "floppa@luxxy.xyz" + }, + "record": { + "CNAME": "sophie-is-sexy.co.uk" + } +} diff --git a/domains/floppy.json b/domains/floppy.json new file mode 100644 index 000000000..5e9f83b57 --- /dev/null +++ b/domains/floppy.json @@ -0,0 +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" + } +} diff --git a/domains/florian.json b/domains/florian.json new file mode 100644 index 000000000..f3e6b93a8 --- /dev/null +++ b/domains/florian.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..370aa541d --- /dev/null +++ b/domains/florin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "flc995", + "email": "flc995@gmail.com" + }, + "record": { + "CNAME": "flc995.github.io" + } +} diff --git a/domains/flow-os.liquid.json b/domains/flow-os.liquid.json new file mode 100644 index 000000000..d88826b20 --- /dev/null +++ b/domains/flow-os.liquid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ThinLiquid", + "email": "thinliquid@proton.me" + }, + "record": { + "CNAME": "fathomless-chickadee-7xj6ixiuhgknzzityvtiq6q4.herokudns.com" + } +} diff --git a/domains/fluted.json b/domains/fluted.json new file mode 100644 index 000000000..4c2f16754 --- /dev/null +++ b/domains/fluted.json @@ -0,0 +1,12 @@ +{ + "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/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 new file mode 100644 index 000000000..93aab671b --- /dev/null +++ b/domains/flyingcheese41.json @@ -0,0 +1,9 @@ +{ + "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..599fc81c2 --- /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/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/forsas.json b/domains/forsas.json new file mode 100644 index 000000000..c5860d688 --- /dev/null +++ b/domains/forsas.json @@ -0,0 +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" + } +} diff --git a/domains/foufou-exe.json b/domains/foufou-exe.json new file mode 100644 index 000000000..0e8e6a640 --- /dev/null +++ b/domains/foufou-exe.json @@ -0,0 +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" + } +} diff --git a/domains/fourjuaneight.json b/domains/fourjuaneight.json new file mode 100644 index 000000000..23fd8c9ec --- /dev/null +++ b/domains/fourjuaneight.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..b16862a58 --- /dev/null +++ b/domains/fox.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "fox-tech0", + "email": "red@team-ruben.tk" + }, + + "record": { + "CNAME": "fox-tech0.github.io" + } +} diff --git a/domains/foxie.arman.json b/domains/foxie.arman.json new file mode 100644 index 000000000..90023567d --- /dev/null +++ b/domains/foxie.arman.json @@ -0,0 +1,16 @@ +{ + "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/foxy4096.json b/domains/foxy4096.json new file mode 100644 index 000000000..262ce6b0b --- /dev/null +++ b/domains/foxy4096.json @@ -0,0 +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" + } +} diff --git a/domains/fqcxn.json b/domains/fqcxn.json new file mode 100644 index 000000000..29d5357d2 --- /dev/null +++ b/domains/fqcxn.json @@ -0,0 +1,13 @@ +{ + "description": "Information Display", + "repo": "https://github.com/Fqcxn/fqcxn.github.io", + "owner": { + "username": "Fqcxn", + "email": "", + "twitter": "FqcxnOfficial", + "discord": "hong.kong" + }, + "record": { + "CNAME": "fqcxn.github.io" + } +} diff --git a/domains/franciskafieh.json b/domains/franciskafieh.json new file mode 100644 index 000000000..b138808e1 --- /dev/null +++ b/domains/franciskafieh.json @@ -0,0 +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" + } +} diff --git a/domains/frazix.json b/domains/frazix.json new file mode 100644 index 000000000..2b9d8b541 --- /dev/null +++ b/domains/frazix.json @@ -0,0 +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" + } +} diff --git a/domains/frcat.json b/domains/frcat.json new file mode 100644 index 000000000..fc53b6928 --- /dev/null +++ b/domains/frcat.json @@ -0,0 +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" + } +} diff --git a/domains/frd.json b/domains/frd.json new file mode 100644 index 000000000..afadb735e --- /dev/null +++ b/domains/frd.json @@ -0,0 +1,11 @@ +{ + "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/freebies.json b/domains/freebies.json new file mode 100644 index 000000000..efca87625 --- /dev/null +++ b/domains/freebies.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..d2da9325d --- /dev/null +++ b/domains/freehuntx.json @@ -0,0 +1,10 @@ +{ + "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/frissyn.json b/domains/frissyn.json new file mode 100644 index 000000000..c9d531c46 --- /dev/null +++ b/domains/frissyn.json @@ -0,0 +1,13 @@ +{ + "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 new file mode 100644 index 000000000..3e5d85d30 --- /dev/null +++ b/domains/frog.json @@ -0,0 +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" + } +} diff --git a/domains/frost2k5.json b/domains/frost2k5.json new file mode 100644 index 000000000..5f9e452db --- /dev/null +++ b/domains/frost2k5.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "FrosT2k5", + "email": "androygaming@protonmail.com" + }, + "record": { + "CNAME": "frost2k5.github.io" + } +} diff --git a/domains/frostx.json b/domains/frostx.json new file mode 100644 index 000000000..a46c76fa5 --- /dev/null +++ b/domains/frostx.json @@ -0,0 +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" + } +} diff --git a/domains/frostzzone.json b/domains/frostzzone.json new file mode 100644 index 000000000..531a84c9a --- /dev/null +++ b/domains/frostzzone.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "frostzzone", + "email": "frostzzone@gmail.com" + }, + "record": { + "CNAME": "e39e6f71-6489-4c74-a945-ff65efc84a10.id.repl.co" + } +} diff --git a/domains/frozzare.json b/domains/frozzare.json new file mode 100644 index 000000000..6921bb6e5 --- /dev/null +++ b/domains/frozzare.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..ed7018635 --- /dev/null +++ b/domains/fsanchir.json @@ -0,0 +1,11 @@ +{ + "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/ftp.zerow.json b/domains/ftp.zerow.json new file mode 100644 index 000000000..7e0e107a6 --- /dev/null +++ b/domains/ftp.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "CNAME": "zerow.is-a.dev" + } +} diff --git a/domains/fuccsoc.json b/domains/fuccsoc.json new file mode 100644 index 000000000..b4b4e1622 --- /dev/null +++ b/domains/fuccsoc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "fuccsoc", + "email": "me@fuccsoc.com" + }, + + "record": { + "URL": "https://fuccsoc.com" + } +} diff --git a/domains/fullpwn.json b/domains/fullpwn.json new file mode 100644 index 000000000..42e7d0a8e --- /dev/null +++ b/domains/fullpwn.json @@ -0,0 +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" + } +} diff --git a/domains/fulminatingmoat.json b/domains/fulminatingmoat.json new file mode 100644 index 000000000..fab44249f --- /dev/null +++ b/domains/fulminatingmoat.json @@ -0,0 +1,12 @@ +{ + "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/furkancetinkaya.json b/domains/furkancetinkaya.json new file mode 100644 index 000000000..ef091ac3b --- /dev/null +++ b/domains/furkancetinkaya.json @@ -0,0 +1,12 @@ +{ + "description": "my portfolio site", + "repo": "https://github.com/honeybadger4768/furkancetinkaya", + "owner": { + "username": "honeybadger4768", + "email": "furkancetinkaya0746@gmail.com", + "twitter": "honeybutdev" + }, + "record": { + "CNAME": "furkancetinkaya-me.pages.dev" + } +} diff --git a/domains/furti.json b/domains/furti.json new file mode 100644 index 000000000..a61c6e9e1 --- /dev/null +++ b/domains/furti.json @@ -0,0 +1,12 @@ +{ + "description": "furti's personal website", + "repo": "https://github.com/furtidev/furtidev.github.io", + "owner": { + "username": "furtidev", + "email": "furtidev@proton.me", + "twitter": "furtidev" + }, + "record": { + "CNAME": "furtidev.github.io" + } +} diff --git a/domains/furycraft.json b/domains/furycraft.json new file mode 100644 index 000000000..5417e305a --- /dev/null +++ b/domains/furycraft.json @@ -0,0 +1,13 @@ +{ + "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" + } +} diff --git a/domains/fxrysh.json b/domains/fxrysh.json new file mode 100644 index 000000000..6ae337754 --- /dev/null +++ b/domains/fxrysh.json @@ -0,0 +1,13 @@ +{ + "description": "Personal portfolio written in VueJS", + "repo": "https://github.com/fxrysh/portfolio", + "owner": { + "username": "fxrysh", + "discord": "Fxrysh#5947", + "twitter": "fxryshdev", + "email": "hello@farish.is-a.dev" + }, + "record": { + "CNAME": "86872205c14179c98afa1392.cname.deno.dev" + } +} diff --git a/domains/g-pratik.json b/domains/g-pratik.json new file mode 100644 index 000000000..dc793000b --- /dev/null +++ b/domains/g-pratik.json @@ -0,0 +1,11 @@ +{ + "description": "This is my website", + "repo": "https://github.com/g-pratik/g-pratik.github.io", + "owner": { + "username": "g-pratik", + "email": "" + }, + "record": { + "CNAME": "g-pratik.github.io" + } +} diff --git a/domains/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 new file mode 100644 index 000000000..0e253e615 --- /dev/null +++ b/domains/gabimaciel.json @@ -0,0 +1,16 @@ +{ + "description": "Gabi's webpage", + "repo": "https://github.com/gabriel-maciel", + "owner": { + "username": "gabriel-maciel", + "email": "gabrielmaciel@duck.com" + }, + "record": { + "A": ["147.182.139.182"], + "MX": [ + "ns1.digitalocean.com", + "ns2.digitalocean.com", + "ns3.digitalocean.com" + ] + } +} diff --git a/domains/gaetan.json b/domains/gaetan.json new file mode 100644 index 000000000..49ee34bac --- /dev/null +++ b/domains/gaetan.json @@ -0,0 +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" + } +} diff --git a/domains/gala.json b/domains/gala.json new file mode 100644 index 000000000..047199323 --- /dev/null +++ b/domains/gala.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "p0lygun", + "email": "solankivibhakar82@gmail.com" + }, + + "record": { + "URL": "https://stilllearning.tech" + } +} diff --git a/domains/galacyber.json b/domains/galacyber.json new file mode 100644 index 000000000..4c6baefea --- /dev/null +++ b/domains/galacyber.json @@ -0,0 +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" + } +} diff --git a/domains/gamersindo.json b/domains/gamersindo.json new file mode 100644 index 000000000..202fb1170 --- /dev/null +++ b/domains/gamersindo.json @@ -0,0 +1,10 @@ +{ + "description": "Personal portofolio", + "owner": { + "username": "gamersindo1223", + "email": "mrgamers11223@gmail.com" + }, + "record": { + "CNAME": "my-portofolio-ek3.pages.dev" + } +} diff --git a/domains/gamerzam.json b/domains/gamerzam.json new file mode 100644 index 000000000..f0f9d68eb --- /dev/null +++ b/domains/gamerzam.json @@ -0,0 +1,11 @@ +{ + "description": "my bio links", + "repo": "lividevergreenengineers.bitohofo.repl.co", + "owner": { + "username": "GamerTheDev", + "email": "gamersstreak24@gmail.com" + }, + "record": { + "CNAME": "lividevergreenengineers-2.bitohofo.repl.co" + } +} diff --git a/domains/gamew.json b/domains/gamew.json new file mode 100644 index 000000000..95be2964d --- /dev/null +++ b/domains/gamew.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Faris0520", + "email": "faris.6dsdiaf@gmail.com" + }, + + "record": { + "CNAME": "9cd7facc-4323-4816-a7df-1e254a393fb7.id.repl.co" + } +} diff --git a/domains/gamingboots.json b/domains/gamingboots.json new file mode 100644 index 000000000..2d6a3fd5b --- /dev/null +++ b/domains/gamingboots.json @@ -0,0 +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" + } +} diff --git a/domains/ganesh.json b/domains/ganesh.json new file mode 100644 index 000000000..aca99b3f9 --- /dev/null +++ b/domains/ganesh.json @@ -0,0 +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" + } +} diff --git a/domains/garden.json b/domains/garden.json new file mode 100644 index 000000000..93c6e7bed --- /dev/null +++ b/domains/garden.json @@ -0,0 +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" + } +} diff --git a/domains/garlic-os.json b/domains/garlic-os.json index 5cc8585dd..9ff9f9090 100644 --- a/domains/garlic-os.json +++ b/domains/garlic-os.json @@ -1,12 +1,11 @@ { - "description": "garlicOS®'s is-a.dev domain", - "repo": "https://github.com/the-garlic-os/the-garlic-os.github.io", - "owner": { - "username": "the-garlic-os", - "email": "sisdfk@gmail.com" - }, - "record": { - "CNAME": "the-garlic-os.github.io", - "URL": "https://garlic-os.is-a.dev" - } + "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": { + "A": ["78.47.88.228"] + } } diff --git a/domains/gaurav.json b/domains/gaurav.json new file mode 100644 index 000000000..9d8d2329a --- /dev/null +++ b/domains/gaurav.json @@ -0,0 +1,11 @@ +{ + "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/gauravkulkarni.json b/domains/gauravkulkarni.json new file mode 100644 index 000000000..b7ca74a9b --- /dev/null +++ b/domains/gauravkulkarni.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "gkulk007", + "email": "gaurav.kulkarni@mescoeorg.onmicrosoft.com" + }, + + "record": { + "CNAME": "gkulk007.github.io" + } +} diff --git a/domains/gautam.json b/domains/gautam.json new file mode 100644 index 000000000..3b0f52c34 --- /dev/null +++ b/domains/gautam.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "GautamMKGarg", + "email": "", + "twitter": "GautamMKGarg" + }, + "record": { + "URL": "https://www.fiverr.com/gautammkgarg" + } +} 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 new file mode 100644 index 000000000..2c4c3a3ed --- /dev/null +++ b/domains/gavrielsatrio.json @@ -0,0 +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" + } +} 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/geopjr.json b/domains/geopjr.json new file mode 100644 index 000000000..7ef8d9a31 --- /dev/null +++ b/domains/geopjr.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..366e408c6 --- /dev/null +++ b/domains/george.json @@ -0,0 +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" + } +} diff --git a/domains/georgee.json b/domains/georgee.json new file mode 100644 index 000000000..73c3251dc --- /dev/null +++ b/domains/georgee.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Georgee1337", + + "email": "contact@georgexv.ru" + }, + "record": { + "URL": "https://georgexv.ru" + } +} diff --git a/domains/georgekaran.json b/domains/georgekaran.json new file mode 100644 index 000000000..757fca2c0 --- /dev/null +++ b/domains/georgekaran.json @@ -0,0 +1,11 @@ +{ + "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/getify.json b/domains/getify.json index 4aff2f839..b36352598 100644 --- a/domains/getify.json +++ b/domains/getify.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "getify", - "email": "domains@dontsend.me" - }, - "record": { - "A": ["50.116.28.162"] - } + "owner": { + "username": "getify", + "email": "domains@dontsend.me" + }, + "record": { + "URL": "https://me.getify.com" + } } diff --git a/domains/gggedr.json b/domains/gggedr.json new file mode 100644 index 000000000..4ed01cb9f --- /dev/null +++ b/domains/gggedr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Vladimir-Urik", + "email": "gggedr@protonmail.com" + }, + "record": { + "URL": "https://gggedr.lol" + } +} diff --git a/domains/ghex.json b/domains/ghex.json new file mode 100644 index 000000000..f62a60932 --- /dev/null +++ b/domains/ghex.json @@ -0,0 +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" + } +} diff --git a/domains/ghost.json b/domains/ghost.json new file mode 100644 index 000000000..a200abcf1 --- /dev/null +++ b/domains/ghost.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ghostdevv", + "email": "ghostdevbusiness@gmail.com", + "twitter": "onlyspaceghost" + }, + "repo": "https://github.com/ghostdevv/website", + "record": { + "URL": "https://ghostdev.xyz" + } +} diff --git a/domains/ghostyt.json b/domains/ghostyt.json new file mode 100644 index 000000000..65cdeb09d --- /dev/null +++ b/domains/ghostyt.json @@ -0,0 +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" + } +} diff --git a/domains/gifaldyazka.json b/domains/gifaldyazka.json new file mode 100644 index 000000000..44d4b88c6 --- /dev/null +++ b/domains/gifaldyazka.json @@ -0,0 +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" + } +} diff --git a/domains/gigwanoob.json b/domains/gigwanoob.json new file mode 100644 index 000000000..22c7a69e0 --- /dev/null +++ b/domains/gigwanoob.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "gigwanoobstudios", + "email": "tplink3116@gmail.com", + "discord": "820962361787285534" + }, + + "record": { + "CNAME": "gigwanoobstudios.github.io" + } +} diff --git a/domains/gilad.json b/domains/gilad.json index 612ba57b1..ce9e08c41 100644 --- a/domains/gilad.json +++ b/domains/gilad.json @@ -1,11 +1,10 @@ { - "description": "Gilad's personal developer website", - "owner": { - "username": "gilade", - "email": "gilad@eventov.com" - }, - "record": { - "CNAME": "gilad.ninja", - "URL": "https://gilad.is-a.dev" - } + "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 new file mode 100644 index 000000000..c41a1426e --- /dev/null +++ b/domains/gingdev.json @@ -0,0 +1,11 @@ +{ + "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/giovanni.json b/domains/giovanni.json new file mode 100644 index 000000000..619598703 --- /dev/null +++ b/domains/giovanni.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "ItachiSan", + "email": "giovannisantini93@yahoo.it", + "twitter": "santini__gio", + "discord": "ItachiSan#2408" + }, + "description": "is-a.dev subdomain for my personal blog", + "repo": "https://github.com/ItachiSan/itachisan.github.io", + "record": { + "CNAME": "itachisan.github.io" + } +} diff --git a/domains/girigummadi.json b/domains/girigummadi.json new file mode 100644 index 000000000..fd746c039 --- /dev/null +++ b/domains/girigummadi.json @@ -0,0 +1,11 @@ +{ + "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.maskduck.json b/domains/git.maskduck.json new file mode 100644 index 000000000..13b50dbf4 --- /dev/null +++ b/domains/git.maskduck.json @@ -0,0 +1,11 @@ +{ + "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/gitninja.json b/domains/gitninja.json new file mode 100644 index 000000000..f51cac85c --- /dev/null +++ b/domains/gitninja.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + "record": { + "CNAME": "roktim32.github.io" + } + } + \ No newline at end of file diff --git a/domains/givinghawk.json b/domains/givinghawk.json new file mode 100644 index 000000000..572fc728b --- /dev/null +++ b/domains/givinghawk.json @@ -0,0 +1,11 @@ +{ + "description": "My is-a.dev cname record", + "repo": "https://github.com/givinghawk", + "owner": { + "username": "givinghawk", + "email": "gh@givinghawk.xyz" + }, + "record": { + "URL": "https://givinghawk.xyz" + } +} diff --git a/domains/gizmo.json b/domains/gizmo.json new file mode 100644 index 000000000..2b3d00205 --- /dev/null +++ b/domains/gizmo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "gizmo-dev", + "email": "", + "twitter": "gizmo_gg" + }, + "record": { + "CNAME": "gizmo-dev.github.io" + } +} diff --git a/domains/gizmora2.json b/domains/gizmora2.json new file mode 100644 index 000000000..6ce419682 --- /dev/null +++ b/domains/gizmora2.json @@ -0,0 +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"] + } +} diff --git a/domains/gizzy.json b/domains/gizzy.json new file mode 100644 index 000000000..2b17f8147 --- /dev/null +++ b/domains/gizzy.json @@ -0,0 +1,15 @@ +{ + "description": "gizzy.is-a.dev", + "owner": { + "username": "NeroGizmoUwU", + "email": "nerop455@gmail.com", + "discord": "gizzyuwu" + }, + "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/gizzygizmo.json b/domains/gizzygizmo.json new file mode 100644 index 000000000..dae600071 --- /dev/null +++ b/domains/gizzygizmo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "NeroGizmoUwU", + "email": "minecraftcoolglibchannel@gmail.com" + }, + "record": { + "CNAME": "nero-pi.duckdns.org" + } +} diff --git a/domains/gkr.json b/domains/gkr.json new file mode 100644 index 000000000..95630b123 --- /dev/null +++ b/domains/gkr.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..7d5125f96 --- /dev/null +++ b/domains/glitchish.json @@ -0,0 +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" + } +} diff --git a/domains/glncy.json b/domains/glncy.json new file mode 100644 index 000000000..40b430332 --- /dev/null +++ b/domains/glncy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "glncy", + "email": "glency.a.tirao@gmail.com" + }, + + "record": { + "CNAME": "glncy.github.io" + } +} 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 0ac165228..e4507f012 100644 --- a/domains/glpzzz.json +++ b/domains/glpzzz.json @@ -1,12 +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", - "URL": "https://glpzzz.is-a.dev" - } + "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..99bbc1efc --- /dev/null +++ b/domains/glqch.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "joythejoystick1", + "email": "midoayoub778@gmail.com" + }, + "record": { + "CNAME": "joythejoystick1.github.io" + } +} + diff --git a/domains/gnanaelisa.json b/domains/gnanaelisa.json new file mode 100644 index 000000000..3ae720e86 --- /dev/null +++ b/domains/gnanaelisa.json @@ -0,0 +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" + } +} diff --git a/domains/go.avasthi.json b/domains/go.avasthi.json new file mode 100644 index 000000000..339b7efff --- /dev/null +++ b/domains/go.avasthi.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "avasthi-git", + "email": "", + "telegram": "avasthie" + }, + + "record": { + "CNAME": "cname.short.io" + } +} diff --git a/domains/god.json b/domains/god.json new file mode 100644 index 000000000..01439c713 --- /dev/null +++ b/domains/god.json @@ -0,0 +1,11 @@ +{ + "description": "Austin's personal developer website", + "repo": "https://github.com/austindyoung", + "owner": { + "username": "austindyoung", + "email": "austin@doesweb.dev" + }, + "record": { + "URL": "https://austindyoung.github.io" + } +} diff --git a/domains/godwhite.json b/domains/godwhite.json new file mode 100644 index 000000000..fb202d6bb --- /dev/null +++ b/domains/godwhite.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..e670214c8 --- /dev/null +++ b/domains/godwin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "gpproton", + "email": "me@godwin.dev" + }, + + "record": { + "CNAME": "godwin.dev" + } +} diff --git a/domains/gokul.json b/domains/gokul.json new file mode 100644 index 000000000..68abd0f71 --- /dev/null +++ b/domains/gokul.json @@ -0,0 +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" + } +} diff --git a/domains/goon.json b/domains/goon.json new file mode 100644 index 000000000..816a8d55a --- /dev/null +++ b/domains/goon.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "realGoonDev", + "email": "goondev@clia.tk", + "discord": "realGoon#5656" + }, + "record": { + "A": ["38.242.146.64"] + } +} diff --git a/domains/gorkem.json b/domains/gorkem.json new file mode 100644 index 000000000..ead7c2902 --- /dev/null +++ b/domains/gorkem.json @@ -0,0 +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" + } +} diff --git a/domains/gornostay25.json b/domains/gornostay25.json new file mode 100644 index 000000000..a513417f5 --- /dev/null +++ b/domains/gornostay25.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ed6e4a5b4 --- /dev/null +++ b/domains/govind.json @@ -0,0 +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" + } +} diff --git a/domains/govinda.json b/domains/govinda.json new file mode 100644 index 000000000..d800c0e31 --- /dev/null +++ b/domains/govinda.json @@ -0,0 +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" + } +} diff --git a/domains/grapeapplefruit.json b/domains/grapeapplefruit.json new file mode 100644 index 000000000..c879ea0ab --- /dev/null +++ b/domains/grapeapplefruit.json @@ -0,0 +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" + } +} diff --git a/domains/graphql.json b/domains/graphql.json new file mode 100644 index 000000000..c8eb4c2b8 --- /dev/null +++ b/domains/graphql.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Amir-Lotfi", + "email": "amir79976@gmail.com" + }, + + "record": { + "A": ["136.243.109.199"] + } +} diff --git a/domains/gravy.json b/domains/gravy.json new file mode 100644 index 000000000..91545ee8e --- /dev/null +++ b/domains/gravy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thatgravyboat", + "twitter": "thatgravyboat", + "discord": "thatgravyboat#0001", + "email": "" + }, + "record": { + "URL": "https://thatgravyboat.tech" + } +} diff --git a/domains/grif.json b/domains/grif.json new file mode 100644 index 000000000..fd14345d6 --- /dev/null +++ b/domains/grif.json @@ -0,0 +1,11 @@ +{ + "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..c908dac0d --- /dev/null +++ b/domains/grusio.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mattiagrusio", + "email": "mattiagrusio@gmail.com" + }, + + "record": { + "A": ["2.231.198.113"] + } +} diff --git a/domains/gs.json b/domains/gs.json new file mode 100644 index 000000000..b503a3abb --- /dev/null +++ b/domains/gs.json @@ -0,0 +1,12 @@ +{ + "description": "Gokul's Personal Site", + "repo": "https://github.com/JavaCafe01/javacafe01.github.io", + "owner": { + "username": "JavaCafe01", + "email": "", + "twitter": "javacafe01" + }, + "record": { + "CNAME": "javacafe01.github.io" + } +} diff --git a/domains/gstudiosx.json b/domains/gstudiosx.json new file mode 100644 index 000000000..eaaff4df6 --- /dev/null +++ b/domains/gstudiosx.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "GStudiosX2", + "email": "ramazanogutlu0@gmail.com" + }, + "record": { + "URL": "https://discord.gg/dV2M2HsH3F" + } +} diff --git a/domains/guilhem.json b/domains/guilhem.json new file mode 100644 index 000000000..d94522613 --- /dev/null +++ b/domains/guilhem.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Iryonis", + "email": "guilhem-bonnefous@etu.u-bordeaux.fr" + }, + "record": { + "A": ["116.203.127.206"] + } +} diff --git a/domains/guilherme.json b/domains/guilherme.json new file mode 100644 index 000000000..9b82790c8 --- /dev/null +++ b/domains/guilherme.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "iiMaxxi", + "email": "iimaxxiguilham@gmail.com" + }, + + "record": { + "URL": "https://eu.dzxdev.repl.co" + } +} diff --git a/domains/guptasiddhant.json b/domains/guptasiddhant.json index d954107e6..a5a9b35b7 100644 --- a/domains/guptasiddhant.json +++ b/domains/guptasiddhant.json @@ -1,11 +1,11 @@ { - "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" - } + "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/gustavo.json b/domains/gustavo.json new file mode 100644 index 000000000..292181a2d --- /dev/null +++ b/domains/gustavo.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..9048a8028 --- /dev/null +++ b/domains/gxlpes.json @@ -0,0 +1,11 @@ +{ + "description": "Website portfolio", + "repo": "https://github.com/gxlpes/gxlpes.github.io", + "owner": { + "username": "gxlpes", + "email": "guilhermxlopes@gmail.com" + }, + "record": { + "CNAME": "gxlpes.github.io" + } +} diff --git a/domains/h3r3t1c.json b/domains/h3r3t1c.json index b984f4a2c..873191c4e 100644 --- a/domains/h3r3t1c.json +++ b/domains/h3r3t1c.json @@ -1,12 +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", - "URL": "https://h3r3t1c.is-a.dev" - } + "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/habeel.json b/domains/habeel.json new file mode 100644 index 000000000..b12856481 --- /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/hachi.json b/domains/hachi.json new file mode 100644 index 000000000..dfdda48e4 --- /dev/null +++ b/domains/hachi.json @@ -0,0 +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" + } +} diff --git a/domains/hackerhawks.json b/domains/hackerhawks.json new file mode 100644 index 000000000..5b51f3b2d --- /dev/null +++ b/domains/hackerhawks.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "HackerHawks", + "email": "robohawks.dev@gmail.com" + }, + "record": { + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/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 new file mode 100644 index 000000000..82074acfa --- /dev/null +++ b/domains/hadi.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..15e7d0d79 --- /dev/null +++ b/domains/hafidu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hafidu", + "email": "mochammad.hafidu@gmail.com" + }, + + "record": { + "CNAME": "hafidu.github.io" + } +} diff --git a/domains/hamza.json b/domains/hamza.json new file mode 100644 index 000000000..c350679ac --- /dev/null +++ b/domains/hamza.json @@ -0,0 +1,10 @@ +{ + "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..e073d643b --- /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/hansen.json b/domains/hansen.json new file mode 100644 index 000000000..c66b73cc7 --- /dev/null +++ b/domains/hansen.json @@ -0,0 +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" + } +} diff --git a/domains/hardik-chandan.json b/domains/hardik-chandan.json new file mode 100644 index 000000000..9fb07c5b6 --- /dev/null +++ b/domains/hardik-chandan.json @@ -0,0 +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" + } +} diff --git a/domains/hari.json b/domains/hari.json new file mode 100644 index 000000000..a9fe026b7 --- /dev/null +++ b/domains/hari.json @@ -0,0 +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" + } +} 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/harikrishnan.json b/domains/harikrishnan.json new file mode 100644 index 000000000..ab647b827 --- /dev/null +++ b/domains/harikrishnan.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..f9a9f2184 --- /dev/null +++ b/domains/harikrishnanps.json @@ -0,0 +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" + } +} diff --git a/domains/haris.json b/domains/haris.json new file mode 100644 index 000000000..02fcfc195 --- /dev/null +++ b/domains/haris.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "HarisETH", + "email": "hariskumar.eth@gmail.com" + }, + "record": { + "URL": "https://haris.one" + } +} diff --git a/domains/harish.json b/domains/harish.json new file mode 100644 index 000000000..b3aa7ccbb --- /dev/null +++ b/domains/harish.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..098df16ee --- /dev/null +++ b/domains/harjakrepp.json @@ -0,0 +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" + } +} diff --git a/domains/harmputman.json b/domains/harmputman.json new file mode 100644 index 000000000..7abc1eee8 --- /dev/null +++ b/domains/harmputman.json @@ -0,0 +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" + } +} diff --git a/domains/harrigan.json b/domains/harrigan.json new file mode 100644 index 000000000..bc7f976e0 --- /dev/null +++ b/domains/harrigan.json @@ -0,0 +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" + } +} diff --git a/domains/harry.json b/domains/harry.json new file mode 100644 index 000000000..9a7a0be86 --- /dev/null +++ b/domains/harry.json @@ -0,0 +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" + } +} diff --git a/domains/harsh-mehta.json b/domains/harsh-mehta.json new file mode 100644 index 000000000..8460b5b84 --- /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 994882b51..1680df13a 100644 --- a/domains/harsh-patel.json +++ b/domains/harsh-patel.json @@ -6,7 +6,6 @@ "email": "patel.harsh28@gmail.com" }, "record": { - "CNAME": "harshpat.github.io", - "URL": "https://harsh-patel.is-a.dev" + "CNAME": "harshpat.github.io" } -} \ No newline at end of file +} diff --git a/domains/harsh.json b/domains/harsh.json new file mode 100644 index 000000000..48d4cbde3 --- /dev/null +++ b/domains/harsh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Riotly", + "email": "email@oharsh.vip" + }, + "record": { + "URL": "https://oharsh.vip" + } +} 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 new file mode 100644 index 000000000..ee9ba3dd3 --- /dev/null +++ b/domains/harshatwo.json @@ -0,0 +1,9 @@ +{ + "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/haru.json b/domains/haru.json new file mode 100644 index 000000000..f9a3ca490 --- /dev/null +++ b/domains/haru.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "harudev21", + "email": "mizuto.discord@gmail.com" + }, + "record": { + "URL": "https://harudev.vercel.app" + } +} diff --git a/domains/haseena.json b/domains/haseena.json new file mode 100644 index 000000000..bec89d5f7 --- /dev/null +++ b/domains/haseena.json @@ -0,0 +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" + } +} diff --git a/domains/hashir.json b/domains/hashir.json new file mode 100644 index 000000000..920391b11 --- /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/hatkid.json b/domains/hatkid.json new file mode 100644 index 000000000..238d10fc8 --- /dev/null +++ b/domains/hatkid.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/hatkidchan.json b/domains/hatkidchan.json new file mode 100644 index 000000000..c4cc42edb --- /dev/null +++ b/domains/hatkidchan.json @@ -0,0 +1,12 @@ +{ + "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..2a4f589a1 --- /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/hay.json b/domains/hay.json new file mode 100644 index 000000000..94a10441b --- /dev/null +++ b/domains/hay.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..8ca3413f8 --- /dev/null +++ b/domains/haykaody.json @@ -0,0 +1,11 @@ +{ + "description": "Haykaody Portfolio Website", + "repo": "https://github.com/neoryans/haykaody", + "owner": { + "username": "neoryans", + "email": "ryansneo@gmail.com" + }, + "record": { + "CNAME": "neoryans.github.io" + } +} diff --git a/domains/hcs.json b/domains/hcs.json new file mode 100644 index 000000000..969b0f3ed --- /dev/null +++ b/domains/hcs.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hcs1219", + "email": "hcskaiask@gmail.com" + }, + "record": { + "A": ["5.196.239.158"] + } +} + diff --git a/domains/he.json b/domains/he.json new file mode 100644 index 000000000..29c9c121a --- /dev/null +++ b/domains/he.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lucidwave", + "email": "", + "twitter": "Pumao3" + }, + "record": { + "URL": "https://x3.lol" + } +} diff --git a/domains/hecterbonha.json b/domains/hecterbonha.json new file mode 100644 index 000000000..968d60afe --- /dev/null +++ b/domains/hecterbonha.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hecterbonha", + "email": "untungsoandryanto@gmail.com" + }, + + "record": { + "CNAME": "hecterbonha.github.io" + } +} diff --git a/domains/hector-vigil.json b/domains/hector-vigil.json new file mode 100644 index 000000000..651e7e1a0 --- /dev/null +++ b/domains/hector-vigil.json @@ -0,0 +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" + } +} 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/helge.json b/domains/helge.json new file mode 100644 index 000000000..f58243060 --- /dev/null +++ b/domains/helge.json @@ -0,0 +1,11 @@ +{ + "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/hello.json b/domains/hello.json new file mode 100644 index 000000000..88fcfb3e0 --- /dev/null +++ b/domains/hello.json @@ -0,0 +1,11 @@ +{ + "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/hemanth.json b/domains/hemanth.json new file mode 100644 index 000000000..f3bd1be61 --- /dev/null +++ b/domains/hemanth.json @@ -0,0 +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" + } +} diff --git a/domains/henry.json b/domains/henry.json new file mode 100644 index 000000000..59029ffca --- /dev/null +++ b/domains/henry.json @@ -0,0 +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" + } +} diff --git a/domains/henrymartin.json b/domains/henrymartin.json new file mode 100644 index 000000000..3ec3cdb0a --- /dev/null +++ b/domains/henrymartin.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..0ed1fdca6 --- /dev/null +++ b/domains/herckun.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..64391241e --- /dev/null +++ b/domains/herkura.json @@ -0,0 +1,11 @@ +{ + "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/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/hextris.json b/domains/hextris.json new file mode 100644 index 000000000..c886a9b36 --- /dev/null +++ b/domains/hextris.json @@ -0,0 +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" + } +} diff --git a/domains/hi.tnt.json b/domains/hi.tnt.json new file mode 100644 index 000000000..4577efade --- /dev/null +++ b/domains/hi.tnt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SebTNT", + "email": "turquoisetntmultimedia@gmail.com" + }, + "record": { + "URL": "https://sites.google.com/view/hi-art-web" + } +} diff --git a/domains/hiddenblack.json b/domains/hiddenblack.json new file mode 100644 index 000000000..39dd09599 --- /dev/null +++ b/domains/hiddenblack.json @@ -0,0 +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" + } +} diff --git a/domains/hieudmg.json b/domains/hieudmg.json new file mode 100644 index 000000000..76e9ad40b --- /dev/null +++ b/domains/hieudmg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hieudmg", + "email": "hieudmg@gmail.com" + }, + "record": { + "CNAME": "hieudmg.pages.dev" + } +} diff --git a/domains/higherror.json b/domains/higherror.json new file mode 100644 index 000000000..e6304dbb8 --- /dev/null +++ b/domains/higherror.json @@ -0,0 +1,12 @@ +{ + "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/hikari.json b/domains/hikari.json new file mode 100644 index 000000000..2521f5639 --- /dev/null +++ b/domains/hikari.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hikariatama", + "email": "elusloodus@mail.ru" + }, + + "record": { + "CNAME": "hikariatama.ru" + } +} diff --git a/domains/hilmansyah.json b/domains/hilmansyah.json new file mode 100644 index 000000000..f642afb18 --- /dev/null +++ b/domains/hilmansyah.json @@ -0,0 +1,13 @@ +{ + "description": "Hillzacky is Hilmansyah", + "repo": "https://github.com/Hillzacky/hillzacky.github.io", + "owner": { + "username": "Hillzacky", + "email": "hilmansyah@xhr.my.id", + "twitter": "hillzacky", + "discord": "830349326785314846" + }, + "record": { + "CNAME": "hillzacky.github.io" + } +} diff --git a/domains/himanshu.json b/domains/himanshu.json new file mode 100644 index 000000000..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/himanshusri.json b/domains/himanshusri.json new file mode 100644 index 000000000..126ca7d4c --- /dev/null +++ b/domains/himanshusri.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "himanshuSri24", + "email": "himanshu20032002@gmail.com" + }, + "record": { + "CNAME": "himanshusri24.github.io" + } + } + \ No newline at end of file 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/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 new file mode 100644 index 000000000..65c422b56 --- /dev/null +++ b/domains/hiro.json @@ -0,0 +1,11 @@ +{ + "description": "Personal website for now", + "repo": "https://github.com/XxHiroTTVxX", + "owner": { + "username": "XxHiroTTVxX", + "email": "xxhirottvxx@gmail.com" + }, + "record": { + "CNAME": "incognito-20-production-9fe2.up.railway.app" + } +} diff --git a/domains/hironichu.json b/domains/hironichu.json new file mode 100644 index 000000000..5a9eb5e77 --- /dev/null +++ b/domains/hironichu.json @@ -0,0 +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" + } +} diff --git a/domains/hisham.json b/domains/hisham.json new file mode 100644 index 000000000..058b1f2b2 --- /dev/null +++ b/domains/hisham.json @@ -0,0 +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" + } +} 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..2351b1136 --- /dev/null +++ b/domains/hiwind.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jaydoublay", + "email": "jeremy@jaydoublay.com" + }, + "record": { + "URL": "https://www.hiwind.me" + } + } + \ No newline at end of file diff --git a/domains/hjmao.json b/domains/hjmao.json new file mode 100644 index 000000000..7f64a25af --- /dev/null +++ b/domains/hjmao.json @@ -0,0 +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" + } +} diff --git a/domains/hmon.json b/domains/hmon.json new file mode 100644 index 000000000..bc827d503 --- /dev/null +++ b/domains/hmon.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hackermondev", + "email": "daniel@daniel.is-a.dev" + }, + "record": { + "CNAME": "Ultraviolet-Node-3.hackermondev.repl.co" + } +} diff --git a/domains/hoang3409.json b/domains/hoang3409.json new file mode 100644 index 000000000..a57bfc244 --- /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" + } +} \ No newline at end of file diff --git a/domains/hod.json b/domains/hod.json new file mode 100644 index 000000000..ff7a24bd3 --- /dev/null +++ b/domains/hod.json @@ -0,0 +1,13 @@ +{ + "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 new file mode 100644 index 000000000..d09a10c8a --- /dev/null +++ b/domains/hokkqi.json @@ -0,0 +1,11 @@ +{ + "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/home.semant.json b/domains/home.semant.json new file mode 100644 index 000000000..2160ac944 --- /dev/null +++ b/domains/home.semant.json @@ -0,0 +1,11 @@ +{ + "description": "My Website", + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev", + "discord": "445073800850046977" + }, + "record": { + "CNAME": "2755c31d-6389-4f53-8fd7-b83f99037ffd.id.repl.co" + } +} diff --git a/domains/homemadestea58.json b/domains/homemadestea58.json new file mode 100644 index 000000000..3d4cced78 --- /dev/null +++ b/domains/homemadestea58.json @@ -0,0 +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" + } +} diff --git a/domains/hot-dev.json b/domains/hot-dev.json new file mode 100644 index 000000000..be8316ea9 --- /dev/null +++ b/domains/hot-dev.json @@ -0,0 +1,12 @@ +{ + "description": "Just a website for me", + "repo": "https://github.com/gamerz420/gamerz420.github.io", + "owner": { + "username": "gamerz420", + "email": "imakbss@gmail.com", + "discord": "gamerz420#6200" + }, + "record": { + "CNAME": "gamerz420.github.io" + } +} diff --git a/domains/hotspot.json b/domains/hotspot.json new file mode 100644 index 000000000..18edaa87e --- /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/hozzywozzy.json b/domains/hozzywozzy.json new file mode 100644 index 000000000..4d3a30839 --- /dev/null +++ b/domains/hozzywozzy.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hozzywozzy", + "email": "hozzywozzy@terrorist.lol" + }, + "description": "domain for testing purposes", + "repo": "https://github.com/hozzywozzy/hozzywozzy", + "record": { + "CNAME": "hozzywozzy.github.io" + } +} diff --git a/domains/hrushal.json b/domains/hrushal.json new file mode 100644 index 000000000..e5c0c4c88 --- /dev/null +++ b/domains/hrushal.json @@ -0,0 +1,12 @@ +{ + "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/hs50.json b/domains/hs50.json new file mode 100644 index 000000000..5f509db6c --- /dev/null +++ b/domains/hs50.json @@ -0,0 +1,11 @@ +{ + "description": "Another way to visit my website.", + "repo": "https://github.com/Naibuu/website", + "owner": { + "username": "Naibuu", + "email": "contact@hs50.cc" + }, + "record": { + "CNAME": "hs50.cc" + } +} \ No newline at end of file diff --git a/domains/hu-kaixiang.json b/domains/hu-kaixiang.json new file mode 100644 index 000000000..c12a5a019 --- /dev/null +++ b/domains/hu-kaixiang.json @@ -0,0 +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" + } +} diff --git a/domains/huby.json b/domains/huby.json new file mode 100644 index 000000000..50718f959 --- /dev/null +++ b/domains/huby.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..75a90de42 --- /dev/null +++ b/domains/hugovidafe.json @@ -0,0 +1,12 @@ +{ + "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/hunai.json b/domains/hunai.json new file mode 100644 index 000000000..d5e74e302 --- /dev/null +++ b/domains/hunai.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Hunter2809", + "email": "auser929129@gmail.com" + }, + "record": { + "A": ["75.2.69.226"] + } +} diff --git a/domains/hung-contact.json b/domains/hung-contact.json new file mode 100644 index 000000000..902d50e42 --- /dev/null +++ b/domains/hung-contact.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hunghg255", + "email": "giahunghust@gmail.com" + }, + "record": { + "URL": "https://hunghg-contact.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/hunter.json b/domains/hunter.json new file mode 100644 index 000000000..1c2c5eee2 --- /dev/null +++ b/domains/hunter.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..2aa1983be --- /dev/null +++ b/domains/huntroid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "hunterz-killer", + "email": "srimath8@gmail.com" + }, + "record": { + "A": ["185.199.108.153"] + } +} 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 new file mode 100644 index 000000000..7dfdc9605 --- /dev/null +++ b/domains/huseyin.json @@ -0,0 +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" + } +} diff --git a/domains/huyen.json b/domains/huyen.json new file mode 100644 index 000000000..32827420e --- /dev/null +++ b/domains/huyen.json @@ -0,0 +1,12 @@ +{ + "description": "Huyền's website", + "repo": "https://github.com/huyenit200x/huyenit200x.github.io", + "owner": { + "username": "huyenit200x", + "email": "huyenit200x@gmail.com", + "twitter": "huyenit200x" + }, + "record": { + "CNAME": "huyenit200x.github.io" + } +} diff --git a/domains/hvlxh.json b/domains/hvlxh.json new file mode 100644 index 000000000..fbc86a328 --- /dev/null +++ b/domains/hvlxh.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "hvlxh", + "email": "monsta22019@gmail.com", + "discord": "hvlxh#0001" + }, + + "record": { + "URL": "https://hvlxh.tk" + } +} diff --git a/domains/hycord.json b/domains/hycord.json new file mode 100644 index 000000000..e77e5439c --- /dev/null +++ b/domains/hycord.json @@ -0,0 +1,11 @@ +{ + "description": "Hi! I'm Hycord!", + "owner": { + "username": "hycord", + "email": "hycord@hycordia.com", + "twitter": "IGNHycord" + }, + "record": { + "CNAME": "xbwlnzmg.up.railway.app" + } +} diff --git a/domains/hyena.json b/domains/hyena.json new file mode 100644 index 000000000..c23a97f8e --- /dev/null +++ b/domains/hyena.json @@ -0,0 +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" + } +} diff --git a/domains/hyperhacker.json b/domains/hyperhacker.json new file mode 100644 index 000000000..6b3d96414 --- /dev/null +++ b/domains/hyperhacker.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio website for HyperGithubForm", + "repo": "https://replit.com/@HyperHacker/HyperHacker", + "owner": { + "username": "HyperGithubForm", + "email": "", + "discord": "HyperHacker#3433" + }, + "record": { + "CNAME": "988a5d1f-c278-44ca-9b99-34f9995ed9ba.id.repl.co" + } +} diff --git a/domains/hypnomacka.json b/domains/hypnomacka.json new file mode 100644 index 000000000..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 new file mode 100644 index 000000000..5ac3377d6 --- /dev/null +++ b/domains/hyro.json @@ -0,0 +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": { + "URL": "https://xhyrom.vercel.app" + } +} diff --git a/domains/hzf.json b/domains/hzf.json new file mode 100644 index 000000000..37481496b --- /dev/null +++ b/domains/hzf.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "huhao0208", + "email": "123huzhifeng@163.com" + }, + "record": { + "A": ["124.90.69.145"] + } + } + \ No newline at end of file diff --git a/domains/hzmi.json b/domains/hzmi.json new file mode 100644 index 000000000..34d9dbda1 --- /dev/null +++ b/domains/hzmi.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..cc3397c70 --- /dev/null +++ b/domains/hzyusuf.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yufuss", + "email": "yusufgocer40@hotmail.com" + }, + + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/i10.json b/domains/i10.json new file mode 100644 index 000000000..018e9954a --- /dev/null +++ b/domains/i10.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JavaScythe", + "email": "slashmod6@gmail.com" + }, + "record": { + "A": ["34.110.138.177"] + } +} diff --git a/domains/iakshay.json b/domains/iakshay.json new file mode 100644 index 000000000..d2f406f0d --- /dev/null +++ b/domains/iakshay.json @@ -0,0 +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" + } +} diff --git a/domains/iakzs.json b/domains/iakzs.json new file mode 100644 index 000000000..229cb8381 --- /dev/null +++ b/domains/iakzs.json @@ -0,0 +1,18 @@ +{ + "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/iammithani.json b/domains/iammithani.json new file mode 100644 index 000000000..da7150b05 --- /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/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 new file mode 100644 index 000000000..38e688cc9 --- /dev/null +++ b/domains/iansalazar.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..9c7d980d3 --- /dev/null +++ b/domains/ibrahim.json @@ -0,0 +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" + } +} diff --git a/domains/ice.json b/domains/ice.json new file mode 100644 index 000000000..56cc9e732 --- /dev/null +++ b/domains/ice.json @@ -0,0 +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" + } +} diff --git a/domains/icehead.json b/domains/icehead.json new file mode 100644 index 000000000..c27402685 --- /dev/null +++ b/domains/icehead.json @@ -0,0 +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" + } +} diff --git a/domains/icm.json b/domains/icm.json new file mode 100644 index 000000000..c408951a5 --- /dev/null +++ b/domains/icm.json @@ -0,0 +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" + } +} diff --git a/domains/ico.json b/domains/ico.json new file mode 100644 index 000000000..408a8799d --- /dev/null +++ b/domains/ico.json @@ -0,0 +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" + } +} diff --git a/domains/ida64.json b/domains/ida64.json new file mode 100644 index 000000000..02feaaff0 --- /dev/null +++ b/domains/ida64.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/7v2p/7v2p.github.io", + "owner": { + "username": "7v2p", + "email": "", + "discord": "IDA#1337" + }, + "record": { + "CNAME": "7v2p.github.io" + } +} 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/igna.json b/domains/igna.json new file mode 100644 index 000000000..c57a0d77f --- /dev/null +++ b/domains/igna.json @@ -0,0 +1,12 @@ +{ + "description": "igna's portfolio website", + "repo": "https://github.com/uhIgnacio", + "owner": { + "username": "uhIgnacio", + "email": "igna@hypixel.one" + }, + + "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/ihsan.json b/domains/ihsan.json new file mode 100644 index 000000000..055d3d0cf --- /dev/null +++ b/domains/ihsan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "XzFrosT", + "email": "mschodeihsan@gmail.com" + }, + "record": { + "CNAME": "ihsanhardiansah.me" + } +} 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/ikd.json b/domains/ikd.json new file mode 100644 index 000000000..018ada623 --- /dev/null +++ b/domains/ikd.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "its-id", + "email": "", + "twitter": "its_ikD" + }, + + "record": { + "CNAME": "portfolio-main-production.up.railway.app" + } +} diff --git a/domains/ikraiyan.json b/domains/ikraiyan.json new file mode 100644 index 000000000..13480a4db --- /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/imad.json b/domains/imad.json new file mode 100644 index 000000000..e76d3f385 --- /dev/null +++ b/domains/imad.json @@ -0,0 +1,11 @@ +{ + "description": "Imad", + "repo": "https://github.com/imadboy89", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "A": ["20.101.44.225"] + } +} diff --git a/domains/imd.json b/domains/imd.json new file mode 100644 index 000000000..e76d3f385 --- /dev/null +++ b/domains/imd.json @@ -0,0 +1,11 @@ +{ + "description": "Imad", + "repo": "https://github.com/imadboy89", + "owner": { + "username": "imadboy89", + "email": "imad.kh@outlook.com" + }, + "record": { + "A": ["20.101.44.225"] + } +} diff --git a/domains/imekachi.json b/domains/imekachi.json new file mode 100644 index 000000000..34893a08e --- /dev/null +++ b/domains/imekachi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "imekachi", + "email": "imekachi@gmail.com" + }, + + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/img.json b/domains/img.json new file mode 100644 index 000000000..db8921c2a --- /dev/null +++ b/domains/img.json @@ -0,0 +1,11 @@ +{ + "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..d40edd232 --- /dev/null +++ b/domains/img.suki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SukiPlayz", + "email": "sukimayoo@outlook.com" + }, + "record": { + "CNAME": "cb594ad8-2514-45d4-94a7-538476039dec.id.repl.co" + } +} diff --git a/domains/imlasiya.json b/domains/imlasiya.json new file mode 100644 index 000000000..30426d9f8 --- /dev/null +++ b/domains/imlasiya.json @@ -0,0 +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" + } +} diff --git a/domains/imlasiyah.json b/domains/imlasiyah.json new file mode 100644 index 000000000..1a7fc88b4 --- /dev/null +++ b/domains/imlasiyah.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ImLasiya", + "email": "senash@darktsysl.onmicrosoft.com" + }, + + "record": { + "CNAME": "imlasiya.github.io" + } +} 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 new file mode 100644 index 000000000..e8967f3b5 --- /dev/null +++ b/domains/immails.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "ImMAils", + "email": "anton140315@gmail.com", + "discord": "I'mMAils#1238" + }, + "description": "Why? To share my projects and other stuff. Like discord bot, node.js modules or even games!", + "record": { + "CNAME": "f0476060.xsph.ru" + } +} diff --git a/domains/impsycho.json b/domains/impsycho.json new file mode 100644 index 000000000..2cb184373 --- /dev/null +++ b/domains/impsycho.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OpAayush", + "email": "aayushmagrawal@gmail.com" + }, + "record": { + "CNAME": "27b81edb-5fc7-4c0c-82c5-2f96e325f113.id.repl.co" + } +} 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 new file mode 100644 index 000000000..6e88e8e8d --- /dev/null +++ b/domains/imsudip.json @@ -0,0 +1,11 @@ +{ + "description": "A personal portfolio site for all my projects", + "repo": "https://github.com/imsudip/portfolio", + "owner": { + "username": "imsudip", + "email": "sudipghosh9333@gmail.com" + }, + "record": { + "URL": "https://portfolio.imsudip.ml" + } +} diff --git a/domains/imy.json b/domains/imy.json new file mode 100644 index 000000000..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/imzihad21.json b/domains/imzihad21.json new file mode 100644 index 000000000..e94fb477c --- /dev/null +++ b/domains/imzihad21.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "IMZihad21", + "email": "imzihad@gmail.com" + }, + "record": { + "A": ["52.77.224.107"], + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + "TXT": "forward-email=imzihad@gmail.com" + } +} 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/incbom.json b/domains/incbom.json new file mode 100644 index 000000000..695a1342a --- /dev/null +++ b/domains/incbom.json @@ -0,0 +1,12 @@ +{ + "description": "Incbom's Portfolo", + "repo": "https://github.com/incbomdev/incbomdev.github.io", + "owner": { + "username": "IncbomDev", + "email": "incbomyt@gmail.com", + "twitter": "IncbomYT" + }, + "record": { + "CNAME": "incbomdev.github.io" + } +} diff --git a/domains/inf.json b/domains/inf.json new file mode 100644 index 000000000..cf6acd955 --- /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 new file mode 100644 index 000000000..025e1ae2f --- /dev/null +++ b/domains/infinitecode.json @@ -0,0 +1,10 @@ +{ + "description": "Infinite's personal portfolio!", + "owner": { + "username": "InfiniteCode", + "email": "infinitecode@infiniteco.de" + }, + "record": { + "URL": "https://infiniteco.de" + } +} diff --git a/domains/infinitelearning.json b/domains/infinitelearning.json new file mode 100644 index 000000000..2fc5bed0e --- /dev/null +++ b/domains/infinitelearning.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tiwlinkskwazeh", + "email": "kwazehh@proton.me" + }, + "record": { + "A": ["18.215.144.92"] + } + } + diff --git a/domains/infinity.json b/domains/infinity.json new file mode 100644 index 000000000..92362cbce --- /dev/null +++ b/domains/infinity.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Infinitybeond1", + "email": "Infinitybeond1@protonmail.com" + }, + "record": { + "CNAME": "1de2d007-3905-40b1-b64f-d166b367a43d.id.repl.co" + } +} 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 new file mode 100644 index 000000000..b35ebbbd5 --- /dev/null +++ b/domains/ink.json @@ -0,0 +1,11 @@ +{ + "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/instantnoodles.json b/domains/instantnoodles.json new file mode 100644 index 000000000..986cd8803 --- /dev/null +++ b/domains/instantnoodles.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..bcc1daa27 --- /dev/null +++ b/domains/instapi.aditya.json @@ -0,0 +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": { + "A": ["76.223.55.44"] + } +} diff --git a/domains/intergrav.json b/domains/intergrav.json new file mode 100644 index 000000000..e42ee56cf --- /dev/null +++ b/domains/intergrav.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "intergrav", + "email": "devinkid1@gmail.com" + }, + + "record": { + "CNAME": "intergrav.github.io" + } +} diff --git a/domains/invalidnoah.json b/domains/invalidnoah.json new file mode 100644 index 000000000..5c75c72a5 --- /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 new file mode 100644 index 000000000..b40394c01 --- /dev/null +++ b/domains/ionetty.json @@ -0,0 +1,12 @@ +{ + "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..a2d56dd85 --- /dev/null +++ b/domains/ipuppyyt.json @@ -0,0 +1,19 @@ +{ + "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/ipv4.zerow.json b/domains/ipv4.zerow.json new file mode 100644 index 000000000..353e7e8a0 --- /dev/null +++ b/domains/ipv4.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "A": ["92.118.207.191"] + } +} diff --git a/domains/ireknazm.json b/domains/ireknazm.json new file mode 100644 index 000000000..825311ce3 --- /dev/null +++ b/domains/ireknazm.json @@ -0,0 +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" + } +} diff --git a/domains/irfan.json b/domains/irfan.json new file mode 100644 index 000000000..642b2359a --- /dev/null +++ b/domains/irfan.json @@ -0,0 +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" + } +} diff --git a/domains/irumvanselme.json b/domains/irumvanselme.json new file mode 100644 index 000000000..9a6bf017a --- /dev/null +++ b/domains/irumvanselme.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "irumvanselme", + "email": "andesanselme@gmail.com" + }, + "repo": "irumvanselme.github.io", + "record": { + "CNAME": "irumvanselme.github.io" + } +} diff --git a/domains/isa.json b/domains/isa.json new file mode 100644 index 000000000..959d310ed --- /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/isabelrosillo.json b/domains/isabelrosillo.json new file mode 100644 index 000000000..9dc9857e6 --- /dev/null +++ b/domains/isabelrosillo.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/isaiahday.json b/domains/isaiahday.json new file mode 100644 index 000000000..cc14c97d5 --- /dev/null +++ b/domains/isaiahday.json @@ -0,0 +1,12 @@ +{ + "description": "Isaiah08-D's personal website.", + "repo": "https://github.com/Isaiah08-D/isaiah08-d.github.io", + "owner": { + "username": "Isaiah08-D", + "email": "isaiahgrisha@gmail.com", + "discord": "isaiah08#6008" + }, + "record": { + "CNAME": "isaiah08-d.github.io" + } +} diff --git a/domains/ish.json b/domains/ish.json new file mode 100644 index 000000000..a2e53aa09 --- /dev/null +++ b/domains/ish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamblueish", + "email": "hey@blueish.gq" + }, + "record": { + "CNAME": "dev.blueish.gq" + } +} diff --git a/domains/ishaanmehta.json b/domains/ishaanmehta.json new file mode 100644 index 000000000..e619a4962 --- /dev/null +++ b/domains/ishaanmehta.json @@ -0,0 +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" + } +} diff --git a/domains/ishan.json b/domains/ishan.json new file mode 100644 index 000000000..888d35229 --- /dev/null +++ b/domains/ishan.json @@ -0,0 +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" + } +} diff --git a/domains/ishh.json b/domains/ishh.json new file mode 100644 index 000000000..8949ba1e3 --- /dev/null +++ b/domains/ishh.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..35f856f69 --- /dev/null +++ b/domains/isqne.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..fcba6f9d5 --- /dev/null +++ b/domains/issai.json @@ -0,0 +1,12 @@ +{ + "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/itsdharmik.json b/domains/itsdharmik.json new file mode 100644 index 000000000..a794ad24d --- /dev/null +++ b/domains/itsdharmik.json @@ -0,0 +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" + } +} diff --git a/domains/itsmealdo.json b/domains/itsmealdo.json new file mode 100644 index 000000000..0dc4ce2b0 --- /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/itsnicecraft.json b/domains/itsnicecraft.json new file mode 100644 index 000000000..9f0da4229 --- /dev/null +++ b/domains/itsnicecraft.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..728efb7d2 --- /dev/null +++ b/domains/itsvick.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "itsvick", + "email": "vivek_kasture@techjoomla.com" + }, + + "record": { + "CNAME": "itsvick.github.io" + } +} diff --git a/domains/itzliam.json b/domains/itzliam.json new file mode 100644 index 000000000..3c63ae095 --- /dev/null +++ b/domains/itzliam.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "liamgaming23", + "email": "liamstickman123@gmail.com" + }, + "record": { + "CNAME": "liamgaming23.github.io" + } +} diff --git a/domains/iucc.json b/domains/iucc.json new file mode 100644 index 000000000..4553b6813 --- /dev/null +++ b/domains/iucc.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "IuCC123", + "email": "raccoon.pw.main@gmail.com" + }, + "record": { + "CNAME": "1e080129-14d6-480b-9abb-390879d573cf.id.repl.co" + } + } + \ No newline at end of file diff --git a/domains/ivan.json b/domains/ivan.json new file mode 100644 index 000000000..0c638c806 --- /dev/null +++ b/domains/ivan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "174n", + "email": "174n@riseup.net" + }, + "record": { + "CNAME": "alexandrov.online" + } +} diff --git a/domains/ivedant.json b/domains/ivedant.json new file mode 100644 index 000000000..587cf90f1 --- /dev/null +++ b/domains/ivedant.json @@ -0,0 +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" + } +} diff --git a/domains/ivolimasilva.json b/domains/ivolimasilva.json index edf16bcfd..15042ce87 100644 --- a/domains/ivolimasilva.json +++ b/domains/ivolimasilva.json @@ -1,12 +1,11 @@ { - "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", - "URL": "https://ivolimasilva.is-a.dev" - } + "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/j1shnu.json b/domains/j1shnu.json new file mode 100644 index 000000000..c9530d10b --- /dev/null +++ b/domains/j1shnu.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/j3ffjessie.json b/domains/j3ffjessie.json new file mode 100644 index 000000000..463f5dada --- /dev/null +++ b/domains/j3ffjessie.json @@ -0,0 +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" + } +} diff --git a/domains/jack.json b/domains/jack.json new file mode 100644 index 000000000..7ce4bc9f5 --- /dev/null +++ b/domains/jack.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "crepppy", + "email": "chapmanjack0777@gmail.com", + "discord": "crepppy#2758" + }, + "record": { + "URL": "https://jackchap.com" + } +} diff --git a/domains/jackiso.json b/domains/jackiso.json new file mode 100644 index 000000000..13a2a9bdd --- /dev/null +++ b/domains/jackiso.json @@ -0,0 +1,10 @@ +{ + "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..ef55172d6 --- /dev/null +++ b/domains/jackson.json @@ -0,0 +1,15 @@ +{ + "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/jacob.json b/domains/jacob.json new file mode 100644 index 000000000..7a16e74f8 --- /dev/null +++ b/domains/jacob.json @@ -0,0 +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" + } +} diff --git a/domains/jacobtm.json b/domains/jacobtm.json new file mode 100644 index 000000000..e7c8fc79b --- /dev/null +++ b/domains/jacobtm.json @@ -0,0 +1,12 @@ +{ + "description": "About me.", + "repo": "https://github.com/Jacob1Tm", + "owner": { + "username": "Jacob1Tm", + "email": "", + "twitter": "Jacob1_Tm" + }, + "record": { + "URL": "https://jacobtm.tk" + } +} 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/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/jairomorales.json b/domains/jairomorales.json new file mode 100644 index 000000000..8d166f142 --- /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/jakehe.json b/domains/jakehe.json new file mode 100644 index 000000000..a3dfda89c --- /dev/null +++ b/domains/jakehe.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..6b1f39f2d --- /dev/null +++ b/domains/jalaj.json @@ -0,0 +1,17 @@ +{ + "description": "Jalaj's Portfolio", + + "repo": "https://github.com/jalajcodes/jalaj", + + "owner": { + "username": "jalajcodes", + + "email": "", + + "twitter": "jalajcodes" + }, + + "record": { + "CNAME": "jalaj.up.railway.app" + } +} diff --git a/domains/james.json b/domains/james.json new file mode 100644 index 000000000..30b22b06a --- /dev/null +++ b/domains/james.json @@ -0,0 +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" + } +} diff --git a/domains/jamieisgeek.json b/domains/jamieisgeek.json new file mode 100644 index 000000000..9677dbba2 --- /dev/null +++ b/domains/jamieisgeek.json @@ -0,0 +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" + } +} diff --git a/domains/jamig.json b/domains/jamig.json new file mode 100644 index 000000000..455f8e01f --- /dev/null +++ b/domains/jamig.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jamig7", + "email": "jamigseven@gmail.com" + }, + "record": { + "CNAME": "jamig7.github.io" + } +} diff --git a/domains/jan.json b/domains/jan.json new file mode 100644 index 000000000..546d9fb9e --- /dev/null +++ b/domains/jan.json @@ -0,0 +1,11 @@ +{ + "description": "Subdomain of is-a.dev for my code server. I use DBH as hosting", + "owner": { + "username": "Janlxrd", + "email": "", + "discord": "milf lover 𖤐#5058" + }, + "record": { + "A": ["164.132.74.251"] + } +} diff --git a/domains/janeberru.json b/domains/janeberru.json new file mode 100644 index 000000000..1449c3eab --- /dev/null +++ b/domains/janeberru.json @@ -0,0 +1,12 @@ +{ + "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/jani-abhishek.json b/domains/jani-abhishek.json new file mode 100644 index 000000000..b8df093fb --- /dev/null +++ b/domains/jani-abhishek.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/jani-abhishek/jani-abhishek.github.io", + "owner": { + "username": "jani-abhishek", + "email": "jani.abhishek@truestaz.com" + }, + "record": { + "CNAME": "jani-abhishek.github.io" + } +} 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..18edaa87e --- /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/jarmos.json b/domains/jarmos.json new file mode 100644 index 000000000..4913a1b49 --- /dev/null +++ b/domains/jarmos.json @@ -0,0 +1,12 @@ +{ + "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/jason.json b/domains/jason.json new file mode 100644 index 000000000..95cde7450 --- /dev/null +++ b/domains/jason.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nythrox", + "email": "jasonsantiagobutler@gmail.com", + "twitter": "nythrox_" + }, + "record": { + "URL": "https://jasonbutler.web.app" + } +} 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/java.json b/domains/java.json new file mode 100644 index 000000000..f5ffb3abd --- /dev/null +++ b/domains/java.json @@ -0,0 +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" + } +} diff --git a/domains/javier.json b/domains/javier.json new file mode 100644 index 000000000..87b7f3b12 --- /dev/null +++ b/domains/javier.json @@ -0,0 +1,12 @@ +{ + "description": "Javier Zaleta's personal website", + "repo": "https://github.com/jzaleta/jzaleta", + "owner": { + "username": "jzaleta", + "email": "", + "twitter": "j_cordz" + }, + "record": { + "CNAME": "jzaleta.github.io" + } +} diff --git a/domains/jay-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 new file mode 100644 index 000000000..e732cb3c7 --- /dev/null +++ b/domains/jay.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jaygmx", + "email": "j.jay@gmx.us" + }, + "record": { + "CNAME": "jay.readthedocs.io" + } +} diff --git a/domains/jayantkageri.json b/domains/jayantkageri.json new file mode 100644 index 000000000..345952c84 --- /dev/null +++ b/domains/jayantkageri.json @@ -0,0 +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" + } +} diff --git a/domains/jaycedotbin.json b/domains/jaycedotbin.json new file mode 100644 index 000000000..6b7c178a6 --- /dev/null +++ b/domains/jaycedotbin.json @@ -0,0 +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" + } +} diff --git a/domains/jayesh.json b/domains/jayesh.json new file mode 100644 index 000000000..da96e40a9 --- /dev/null +++ b/domains/jayesh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jayeshsomala", + "email": "jayeshsomala@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/jayg.json b/domains/jayg.json new file mode 100644 index 000000000..cbf36d580 --- /dev/null +++ b/domains/jayg.json @@ -0,0 +1,17 @@ +{ + "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 new file mode 100644 index 000000000..8a0ab3292 --- /dev/null +++ b/domains/jayy.json @@ -0,0 +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" + } +} diff --git a/domains/jbyt27.json b/domains/jbyt27.json new file mode 100644 index 000000000..ce7616272 --- /dev/null +++ b/domains/jbyt27.json @@ -0,0 +1,9 @@ +{ + "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..debc073aa --- /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/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/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..aba19acf6 --- /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..fecf7925e --- /dev/null +++ b/domains/jean-arthur.json @@ -0,0 +1,12 @@ + +{ + "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 new file mode 100644 index 000000000..a23459e0e --- /dev/null +++ b/domains/jean.json @@ -0,0 +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" + } +} diff --git a/domains/jeel.json b/domains/jeel.json new file mode 100644 index 000000000..8b84e68ae --- /dev/null +++ b/domains/jeel.json @@ -0,0 +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" + } +} diff --git a/domains/jeevan.json b/domains/jeevan.json new file mode 100644 index 000000000..e26e067a4 --- /dev/null +++ b/domains/jeevan.json @@ -0,0 +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" + } +} diff --git a/domains/jeferson.json b/domains/jeferson.json new file mode 100644 index 000000000..178f889ea --- /dev/null +++ b/domains/jeferson.json @@ -0,0 +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" + } +} diff --git a/domains/jefferson.json b/domains/jefferson.json new file mode 100644 index 000000000..a747e33ef --- /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" + } +} \ No newline at end of file diff --git a/domains/jeffrey.json b/domains/jeffrey.json new file mode 100644 index 000000000..70444dfae --- /dev/null +++ b/domains/jeffrey.json @@ -0,0 +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" + } +} diff --git a/domains/jegatchalian.json b/domains/jegatchalian.json new file mode 100644 index 000000000..34ab90850 --- /dev/null +++ b/domains/jegatchalian.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "trowsjerwin", + "email": "johnerwingatchalian@gmail.com" + }, + + "record": { + "A": ["192.232.223.67"] + } +} diff --git a/domains/jellobow.json b/domains/jellobow.json new file mode 100644 index 000000000..ace21ed18 --- /dev/null +++ b/domains/jellobow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "homelyseven250", + "email": "", + "discord": "JelloBow#6734" + }, + "record": { + "CNAME": "mysite-production-556a.up.railway.app" + } +} diff --git a/domains/jellyfin.banana.json b/domains/jellyfin.banana.json new file mode 100644 index 000000000..5bd3d9aa5 --- /dev/null +++ b/domains/jellyfin.banana.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BANanaD3V", + "email": "banana@bananadev.ml" + }, + + "record": { + "A": ["95.165.13.215"] + } +} 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 new file mode 100644 index 000000000..5a6e8f540 --- /dev/null +++ b/domains/jeremy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jeremyssocial", + "email": "nearberlin@gmail.com" + }, + + "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 new file mode 100644 index 000000000..3a7cf3419 --- /dev/null +++ b/domains/jeros.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Ascript89", + "email": "smartlinkwfs@gmail.com" + }, + + "record": { + "CNAME": "ascript89.github.io" + } +} diff --git a/domains/jerry.json b/domains/jerry.json new file mode 100644 index 000000000..e8eaa66bf --- /dev/null +++ b/domains/jerry.json @@ -0,0 +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" + } +} diff --git a/domains/jesgran.json b/domains/jesgran.json new file mode 100644 index 000000000..4ed9dc5e5 --- /dev/null +++ b/domains/jesgran.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Jesgran", + "email": "calzdani20@libero.it" + }, + + "record": { + "CNAME": "jesgran.github.io" + } +} diff --git a/domains/jeweetzelf.json b/domains/jeweetzelf.json new file mode 100644 index 000000000..70ccf93a3 --- /dev/null +++ b/domains/jeweetzelf.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..8324fb897 --- /dev/null +++ b/domains/jeydin.json @@ -0,0 +1,11 @@ +{ + "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..633eda166 --- /dev/null +++ b/domains/jeymen.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Jeymen", + "email": "", + "discord": "Jeymen#5269" + }, + "record": { + "CNAME": "jeymen.github.io" + } +} diff --git a/domains/jimmster.json b/domains/jimmster.json new file mode 100644 index 000000000..2c151ec5d --- /dev/null +++ b/domains/jimmster.json @@ -0,0 +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" + } +} diff --git a/domains/jimmy.json b/domains/jimmy.json new file mode 100644 index 000000000..577c62c30 --- /dev/null +++ b/domains/jimmy.json @@ -0,0 +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" + } +} diff --git a/domains/jimscope.json b/domains/jimscope.json index 127d85814..f49b4a920 100644 --- a/domains/jimscope.json +++ b/domains/jimscope.json @@ -1,12 +1,11 @@ { - "description": "/home/jimscope", - "repo": "https://github.com/jimscope/jimscope.github.io", - "owner": { - "username": "jimscope", - "email": "jimscope@protonmail.com" - }, - "record": { - "CNAME": "jimscope.github.io", - "URL": "https://jimscope.is-a.dev" - } + "description": "/home/jimscope", + "repo": "https://github.com/jimscope/jimscope.github.io", + "owner": { + "username": "jimscope", + "email": "jimscope@protonmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } } diff --git a/domains/jinso.json b/domains/jinso.json new file mode 100644 index 000000000..6982010fb --- /dev/null +++ b/domains/jinso.json @@ -0,0 +1,12 @@ +{ + "description": "Jinso Raj", + "repo": "https://github.com/jinsoraj", + "owner": { + "username": "jinsoraj", + "email": "jinsoraj2000@gmail.com", + "twitter": "jinsoraj" + }, + "record": { + "URL": "https://jinsoraj.eu.org" + } +} diff --git a/domains/jishnupsamal.json b/domains/jishnupsamal.json new file mode 100644 index 000000000..79c9c44ea --- /dev/null +++ b/domains/jishnupsamal.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jishnu-prasad-s", + "email": "support@jishnupsamal.ml" + }, + "record": { + "CNAME": "jishnupsamal.pages.dev" + } +} diff --git a/domains/jite.json b/domains/jite.json new file mode 100644 index 000000000..01f28dab4 --- /dev/null +++ b/domains/jite.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..80ace01d0 --- /dev/null +++ b/domains/jithumon.json @@ -0,0 +1,12 @@ +{ + "description": "Jithumon's Personal Website", + "repo": "https://github.com/jithumon/jithumon.github.com", + "owner": { + "username": "jithumon", + "email": "jithumondev@gmail.com", + "twitter": "Jithumatt" + }, + "record": { + "CNAME": "jithumon.github.io" + } +} diff --git a/domains/jj.json b/domains/jj.json new file mode 100644 index 000000000..33574b092 --- /dev/null +++ b/domains/jj.json @@ -0,0 +1,18 @@ +{ + "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/jlalfonso21.json b/domains/jlalfonso21.json new file mode 100644 index 000000000..e5c1da1d2 --- /dev/null +++ b/domains/jlalfonso21.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jlalfonso21", + "email": "jlalfonso21@gmail.com" + }, + "record": { + "A": ["89.147.111.78"] + } + } + \ No newline at end of file diff --git a/domains/joaovitorzv.json b/domains/joaovitorzv.json new file mode 100644 index 000000000..e7d88731a --- /dev/null +++ b/domains/joaovitorzv.json @@ -0,0 +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" + } +} 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/joe-dawley.json b/domains/joe-dawley.json new file mode 100644 index 000000000..017ab7a31 --- /dev/null +++ b/domains/joe-dawley.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..3aa2f4541 --- /dev/null +++ b/domains/joe.json @@ -0,0 +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" + } +} diff --git a/domains/joel.json b/domains/joel.json new file mode 100644 index 000000000..edbea8ced --- /dev/null +++ b/domains/joel.json @@ -0,0 +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" + } +} diff --git a/domains/joelbobanoffline.json b/domains/joelbobanoffline.json new file mode 100644 index 000000000..53ca7f6dc --- /dev/null +++ b/domains/joelbobanoffline.json @@ -0,0 +1,11 @@ +{ + "description": "For Portfolio", + "repo": "https://github.com/JoelBobanOffline/JoelBobanOffline.github.io", + "owner": { + "username": "JoelBobanOffline", + "email": "joelboban2007@gmail.com" + }, + "record": { + "CNAME": "joelbobanoffline.github.io" + } +} diff --git a/domains/joelee.json b/domains/joelee.json new file mode 100644 index 000000000..a9a0d855e --- /dev/null +++ b/domains/joelee.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..637eb60c6 --- /dev/null +++ b/domains/joesbrandt.json @@ -0,0 +1,10 @@ +{ + "description": "joesbrandt", + "owner": { + "username": "joesbrandt", + "email": "joesbrandt@icloud.com" + }, + "record": { + "CNAME": "joesbrandt.github.io" + } +} diff --git a/domains/joesjourney.json b/domains/joesjourney.json new file mode 100644 index 000000000..68e3484ac --- /dev/null +++ b/domains/joesjourney.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "Joe-is-Coding", + "email": "stickeman715@gmail.com" + }, + + "record": { + "A": [ + "185.199.108.153", + + "185.199.109.153", + + "185.199.110.153", + + "185.199.111.153" + ], + "MX": ["mx.mailtie.com"], + "TXT": "mailtie=joesjourney500@gmail.com" + } +} diff --git a/domains/johan-stickman.json b/domains/johan-stickman.json new file mode 100644 index 000000000..295f229dd --- /dev/null +++ b/domains/johan-stickman.json @@ -0,0 +1,12 @@ +{ + "description": "My personal website", + "owner": { + "username": "johan-perso", + "email": "johan_stickman@proton.me", + "twitter": "Johan_Stickman", + "discord": "Johan#8021" + }, + "record": { + "URL": "https://johanstick.me" + } +} diff --git a/domains/johan.json b/domains/johan.json new file mode 100644 index 000000000..700a60971 --- /dev/null +++ b/domains/johan.json @@ -0,0 +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" + } +} diff --git a/domains/johansansebastian.json b/domains/johansansebastian.json new file mode 100644 index 000000000..fe8dfec63 --- /dev/null +++ b/domains/johansansebastian.json @@ -0,0 +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" + } +} diff --git a/domains/john.json b/domains/john.json new file mode 100644 index 000000000..952285a5c --- /dev/null +++ b/domains/john.json @@ -0,0 +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" + } +} diff --git a/domains/johna.json b/domains/johna.json new file mode 100644 index 000000000..4e0164d06 --- /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.deno.dev" + } +} diff --git a/domains/johnny.json b/domains/johnny.json new file mode 100644 index 000000000..2cd4db27b --- /dev/null +++ b/domains/johnny.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "john-champagne", + "email": "johnchampagne97@gmail.com" + }, + + "record": { + "CNAME": "john-champagne.github.io" + } +} diff --git a/domains/johnsonlee.json b/domains/johnsonlee.json new file mode 100644 index 000000000..0b43e55a6 --- /dev/null +++ b/domains/johnsonlee.json @@ -0,0 +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" + } +} 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/joker.json b/domains/joker.json new file mode 100644 index 000000000..cc246d9fc --- /dev/null +++ b/domains/joker.json @@ -0,0 +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": "JoKeRxHD" + }, + "record": { + "CNAME": "jokerxtd.github.io" + } +} diff --git a/domains/jonathan.json b/domains/jonathan.json new file mode 100644 index 000000000..c13860eec --- /dev/null +++ b/domains/jonathan.json @@ -0,0 +1,11 @@ +{ + "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/josh.json b/domains/josh.json index 8627871fb..b127cefe9 100644 --- a/domains/josh.json +++ b/domains/josh.json @@ -1,12 +1,11 @@ { - "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", - "URL": "https://josh.is-a.dev" - } + "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 new file mode 100644 index 000000000..ef1e5f1c0 --- /dev/null +++ b/domains/joshatticus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "JoshAtticus", + "email": "osmanicteam@gmail.com" + }, + "record": { + "CNAME": "joshatticus.github.io" + } +} diff --git a/domains/joshua.json b/domains/joshua.json new file mode 100644 index 000000000..0bb60a121 --- /dev/null +++ b/domains/joshua.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ee844f4a4 --- /dev/null +++ b/domains/josjonkeren.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jonkeren", + "email": "josjonkeren@gmail.com" + }, + "record": { + "CNAME": "jonkeren.nl" + } +} 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/jqshuv.json b/domains/jqshuv.json new file mode 100644 index 000000000..c52362cb1 --- /dev/null +++ b/domains/jqshuv.json @@ -0,0 +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" + } +} diff --git a/domains/jrdrwn.json b/domains/jrdrwn.json new file mode 100644 index 000000000..a131e8473 --- /dev/null +++ b/domains/jrdrwn.json @@ -0,0 +1,12 @@ +{ + "description": "For a personal website", + "repo": "https://github.com/jrdrwn/jrdrwn.github.io", + "owner": { + "username": "jrdrwn", + "email": "jordirwn@gmail.com", + "twitter": "_jrdrwan" + }, + "record": { + "CNAME": "jrdrwn.github.io" + } +} 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 new file mode 100644 index 000000000..8214eafc6 --- /dev/null +++ b/domains/json.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jasonappah", + "email": "isadev@jasonaa.me", + "twitter": "jasonaa_" + }, + "record": { + "URL": "https://jasonaa.me" + } +} diff --git a/domains/jsworld.json b/domains/jsworld.json new file mode 100644 index 000000000..1ce8e5810 --- /dev/null +++ b/domains/jsworld.json @@ -0,0 +1,12 @@ +{ + "description": "Hello I Made project JS World - A magical world where u can learn Java Script. I dont want to use js.org subdomain.", + "repo": "https://js.fireurl.ga", + "owner": { + "username": "pythoniaweb", + "email": "gamerciter2@gmail.com", + "twitter": "dont have" + }, + "record": { + "CNAME": "pythoniaweb.github.io" + } +} diff --git a/domains/juanjo.json b/domains/juanjo.json new file mode 100644 index 000000000..6f65c3be6 --- /dev/null +++ b/domains/juanjo.json @@ -0,0 +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" + } +} diff --git a/domains/juhair.json b/domains/juhair.json new file mode 100644 index 000000000..b1b852310 --- /dev/null +++ b/domains/juhair.json @@ -0,0 +1,10 @@ +{ + "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/juliusknuff.json b/domains/juliusknuff.json new file mode 100644 index 000000000..c68308bb5 --- /dev/null +++ b/domains/juliusknuff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "juliusknuff", + "email": "juliusknuff@ok.de" + }, + "record": { + "CNAME": "juliusknu.pages.dev" + } +} diff --git a/domains/justforever.json b/domains/justforever.json new file mode 100644 index 000000000..dfe94341a --- /dev/null +++ b/domains/justforever.json @@ -0,0 +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" + } +} diff --git a/domains/justin.json b/domains/justin.json new file mode 100644 index 000000000..4d0d15a5d --- /dev/null +++ b/domains/justin.json @@ -0,0 +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" + } +} diff --git a/domains/justtobbi.json b/domains/justtobbi.json new file mode 100644 index 000000000..63ce135c2 --- /dev/null +++ b/domains/justtobbi.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website and Portfolio", + "repo": "https://github.com/justTOBBI/justtobbi.github.io", + "owner": { + "username": "justTOBBI", + "email": "justtobbi@gmail.com" + }, + "record": { + "CNAME": "justtobbi.github.io" + } +} diff --git a/domains/justtrynacode.json b/domains/justtrynacode.json new file mode 100644 index 000000000..65004a73a --- /dev/null +++ b/domains/justtrynacode.json @@ -0,0 +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" + } +} diff --git a/domains/justus.json b/domains/justus.json new file mode 100644 index 000000000..50acf9a0d --- /dev/null +++ b/domains/justus.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Justus-D", + "email": "justus.is-a.dev@herrblauzahn.de" + }, + "record": { + "CNAME": "is-a-dev.justus-d.de" + } +} 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/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/jzitnik.json b/domains/jzitnik.json new file mode 100644 index 000000000..ae16e0934 --- /dev/null +++ b/domains/jzitnik.json @@ -0,0 +1,16 @@ +{ + "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 new file mode 100644 index 000000000..0600507f3 --- /dev/null +++ b/domains/k4i0d.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kaiodcosta", + "email": "kaiod@riseup.net" + }, + "record": { + "URL": "https://kaiod.icu" + } +} diff --git a/domains/k93msy.json b/domains/k93msy.json new file mode 100644 index 000000000..0c56b66e9 --- /dev/null +++ b/domains/k93msy.json @@ -0,0 +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" + } +} diff --git a/domains/kacem.json b/domains/kacem.json new file mode 100644 index 000000000..c525bbc7f --- /dev/null +++ b/domains/kacem.json @@ -0,0 +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" + } +} diff --git a/domains/kagchi.json b/domains/kagchi.json new file mode 100644 index 000000000..ee5b697f1 --- /dev/null +++ b/domains/kagchi.json @@ -0,0 +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" + } +} diff --git a/domains/kaguwo.json b/domains/kaguwo.json new file mode 100644 index 000000000..7182e21c9 --- /dev/null +++ b/domains/kaguwo.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..eb7e18491 --- /dev/null +++ b/domains/kai.json @@ -0,0 +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" + } +} diff --git a/domains/kaivalya.json b/domains/kaivalya.json new file mode 100644 index 000000000..4418749e3 --- /dev/null +++ b/domains/kaivalya.json @@ -0,0 +1,11 @@ +{ + "description": "For my Personal Portfolio website", + "repo": "https://github.com/Kaivalya4/Kaivalya4.github.io", + "owner": { + "username": "Kaivalya4", + "email": "kt6819@yahoo.com" + }, + "record": { + "CNAME": "Kaivalya4.github.io" + } +} 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/kamishi.json b/domains/kamishi.json new file mode 100644 index 000000000..105651c3d --- /dev/null +++ b/domains/kamishi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "KamishiRewrote", + "email": "", + "discord": "kamishi_x" + }, + "record": { + "CNAME": "kamishi.kamishiyt.repl.co" + } +} diff --git a/domains/kamy0403.json b/domains/kamy0403.json new file mode 100644 index 000000000..9033e1e1a --- /dev/null +++ b/domains/kamy0403.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "thanhcong2k7", + "email": "nhocpeacock@gmail.com", + "twitter": "NTKam007", + "discord": "KamyzZ#3790" + }, + "record": { + "CNAME": "kmdev.carrd.co" + } +} diff --git a/domains/kamyzz.json b/domains/kamyzz.json new file mode 100644 index 000000000..2824a0ab9 --- /dev/null +++ b/domains/kamyzz.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thanhcong2k7", + "email": "nhocpeacock@gmail.com" + }, + "record": { + "CNAME": "kamyzz.carrd.co" + } +} diff --git a/domains/kapoor.json b/domains/kapoor.json new file mode 100644 index 000000000..a2bce61a6 --- /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/karan.json b/domains/karan.json new file mode 100644 index 000000000..27fb3a59a --- /dev/null +++ b/domains/karan.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Karandev2007", + "email": "karangamerz207@gmail.com", + "discord": "1045275588434337843" + }, + + "record": { + "A": ["69.197.129.98"] + } +} diff --git a/domains/kartik.json b/domains/kartik.json new file mode 100644 index 000000000..ccc97b38f --- /dev/null +++ b/domains/kartik.json @@ -0,0 +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" + } +} diff --git a/domains/kashif-kadri.json b/domains/kashif-kadri.json new file mode 100644 index 000000000..2e92c4aea --- /dev/null +++ b/domains/kashif-kadri.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/kashif-kadri/kashif-kadri.github.io", + "owner": { + "username": "kashif-kadri", + "email": "" + }, + "record": { + "URL": "https://kashif-kadri.github.io" + } +} diff --git a/domains/kashif.json b/domains/kashif.json new file mode 100644 index 000000000..3c01fbe8a --- /dev/null +++ b/domains/kashif.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "appsdevpk", + "email": "kashid1@gmail.com" + }, + + "record": { + "A": ["129.146.191.167"] + } +} 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/kaustubh.json b/domains/kaustubh.json new file mode 100644 index 000000000..134106d5f --- /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 new file mode 100644 index 000000000..94f5f4824 --- /dev/null +++ b/domains/kavi.json @@ -0,0 +1,12 @@ +{ + "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/kaweees.json b/domains/kaweees.json new file mode 100644 index 000000000..9fce615be --- /dev/null +++ b/domains/kaweees.json @@ -0,0 +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" + } +} diff --git a/domains/kaweendra.json b/domains/kaweendra.json new file mode 100644 index 000000000..db2d63360 --- /dev/null +++ b/domains/kaweendra.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kaweendras", + "email": "salitha.wijerathna@gmail.com" + }, + + "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/kawet00.json b/domains/kawet00.json new file mode 100644 index 000000000..80d0be185 --- /dev/null +++ b/domains/kawet00.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Kawet00", + "email": "elpisstolero13@outlook.com" + }, + + "record": { + "CNAME": "kawet.is-a.dev" + } +} diff --git a/domains/kaz.json b/domains/kaz.json new file mode 100644 index 000000000..0b5d460fa --- /dev/null +++ b/domains/kaz.json @@ -0,0 +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" + } +} diff --git a/domains/kckarnige.json b/domains/kckarnige.json new file mode 100644 index 000000000..8375cfb7d --- /dev/null +++ b/domains/kckarnige.json @@ -0,0 +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" + } +} diff --git a/domains/kd.json b/domains/kd.json new file mode 100644 index 000000000..2c336b6c5 --- /dev/null +++ b/domains/kd.json @@ -0,0 +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" + } +} 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/keirnegn.json b/domains/keirnegn.json new file mode 100644 index 000000000..93d42c42a --- /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 new file mode 100644 index 000000000..971c4bd43 --- /dev/null +++ b/domains/keithkhaotic.json @@ -0,0 +1,12 @@ +{ + "description": "Keith Khaotic's personal website link", + "repo": "https://github.com/KeithKhaotic/KeithKhaotic.github.io", + "owner": { + "username": "KeithKhaotic", + "email": "keithbussyness@gmail.com", + "twitter": "redrocker133" + }, + "record": { + "CNAME": "keithkhaotic.github.io" + } +} diff --git a/domains/keju.json b/domains/keju.json new file mode 100644 index 000000000..cb21a4ea8 --- /dev/null +++ b/domains/keju.json @@ -0,0 +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" + } +} diff --git a/domains/kekda.json b/domains/kekda.json new file mode 100644 index 000000000..25deae69d --- /dev/null +++ b/domains/kekda.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..0121d4b81 --- /dev/null +++ b/domains/kells.json @@ -0,0 +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" + } +} diff --git a/domains/ken.json b/domains/ken.json new file mode 100644 index 000000000..091fc8c62 --- /dev/null +++ b/domains/ken.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kenpem", + "email": "kenpem@gmail.com" + }, + "record": { + "CNAME": "grumpyoldfart.org" + } +} diff --git a/domains/kenney.json b/domains/kenney.json new file mode 100644 index 000000000..d97659f20 --- /dev/null +++ b/domains/kenney.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kendofriendo", + "email": "goadke@g.cofc.edu" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/kenwu.json b/domains/kenwu.json new file mode 100644 index 000000000..4bbda27e5 --- /dev/null +++ b/domains/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": { + "CNAME": "kenwuqianghao.github.io" + } +} diff --git a/domains/kerlos.json b/domains/kerlos.json new file mode 100644 index 000000000..caf7b3684 --- /dev/null +++ b/domains/kerlos.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kerlos", + "email": "ker.los@hotmail.com" + }, + "record": { + "URL": "https://github.com/kerlos" + } + } + \ No newline at end of file diff --git a/domains/kev.json b/domains/kev.json new file mode 100644 index 000000000..660ad20c4 --- /dev/null +++ b/domains/kev.json @@ -0,0 +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" + } +} diff --git a/domains/kevin.json b/domains/kevin.json index d563af887..fef2ee4bd 100644 --- a/domains/kevin.json +++ b/domains/kevin.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "KevinBrogan", - "email": "kevin@brogan.ca" - }, - "record": { - "CNAME": "brogan.ca" - } + "owner": { + "username": "KevinBrogan", + "email": "kevin@brogan.ca" + }, + "record": { + "CNAME": "brogan.ca" + } } diff --git a/domains/kevvyyn.json b/domains/kevvyyn.json new file mode 100644 index 000000000..21b790322 --- /dev/null +++ b/domains/kevvyyn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BiometricGlitch", + "email": "smellysocks0147@gmail.com" + }, + "record": { + "CNAME": "19e5bf8c-21c4-458c-aade-3d247b901526.id.repl.co" + } + } + \ No newline at end of file diff --git a/domains/keyaan.json b/domains/keyaan.json new file mode 100644 index 000000000..e020b8528 --- /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/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/kha.json b/domains/kha.json new file mode 100644 index 000000000..6bc9437c2 --- /dev/null +++ b/domains/kha.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bkit9x", + "email": "bkit9x@gmail.com" + }, + + "record": { + "CNAME": "bkit9x.github.io" + } +} 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/khanh.json b/domains/khanh.json new file mode 100644 index 000000000..fd38aa557 --- /dev/null +++ b/domains/khanh.json @@ -0,0 +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" + } +} diff --git a/domains/khcrv.json b/domains/khcrv.json new file mode 100644 index 000000000..82fc14fa8 --- /dev/null +++ b/domains/khcrv.json @@ -0,0 +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" + } +} diff --git a/domains/khushraj.json b/domains/khushraj.json new file mode 100644 index 000000000..526e22a4b --- /dev/null +++ b/domains/khushraj.json @@ -0,0 +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" + } +} diff --git a/domains/kiara.json b/domains/kiara.json new file mode 100644 index 000000000..183f436b2 --- /dev/null +++ b/domains/kiara.json @@ -0,0 +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" + } +} diff --git a/domains/kicrops.json b/domains/kicrops.json new file mode 100644 index 000000000..857e5a4f3 --- /dev/null +++ b/domains/kicrops.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/kiir0n.json b/domains/kiir0n.json new file mode 100644 index 000000000..afa2c8d34 --- /dev/null +++ b/domains/kiir0n.json @@ -0,0 +1,11 @@ +{ + "description": "kiir0n.is-a.dev", + "repo": "https://github.com/kiir0n/kiir0n.github.io", + "owner": { + "username": "Kiir0n", + "email": "kiir0n@outlook.com" + }, + "record": { + "CNAME": "kiir0n.github.io" + } +} diff --git a/domains/kilic.json b/domains/kilic.json new file mode 100644 index 000000000..69d74bd9f --- /dev/null +++ b/domains/kilic.json @@ -0,0 +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" + } +} diff --git a/domains/killerf.json b/domains/killerf.json new file mode 100644 index 000000000..00deef209 --- /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 new file mode 100644 index 000000000..b4483de86 --- /dev/null +++ b/domains/killua.json @@ -0,0 +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" + } +} diff --git a/domains/kingq23.json b/domains/kingq23.json new file mode 100644 index 000000000..ea6377f62 --- /dev/null +++ b/domains/kingq23.json @@ -0,0 +1,9 @@ +{ + "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..2cb8062e3 --- /dev/null +++ b/domains/kio.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "YoruAkio", + "email": "yoruakio@proton.me" + }, + + "record": { + "CNAME": "nakio.pages.dev" + } +} diff --git a/domains/kiran.json b/domains/kiran.json new file mode 100644 index 000000000..ceafc0b87 --- /dev/null +++ b/domains/kiran.json @@ -0,0 +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" + } +} diff --git a/domains/kirann.json b/domains/kirann.json new file mode 100644 index 000000000..42c7372f4 --- /dev/null +++ b/domains/kirann.json @@ -0,0 +1,11 @@ +{ + "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/kiriland.json b/domains/kiriland.json new file mode 100644 index 000000000..8a1c1867c --- /dev/null +++ b/domains/kiriland.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mrfinm", + "email": "mohamixxxx@gmail.com" + }, + + "record": { + "CNAME": "ess.fabad-ihe.ac.ir" + } +} 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 new file mode 100644 index 000000000..711923825 --- /dev/null +++ b/domains/kiss.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "filipekiss", + "email": "filipe@kiss.ink" + }, + "record": { + "CNAME": "filipe.kiss.ink" + } +} diff --git a/domains/kitten.json b/domains/kitten.json new file mode 100644 index 000000000..f6f798f81 --- /dev/null +++ b/domains/kitten.json @@ -0,0 +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" + } +} diff --git a/domains/kitty.json b/domains/kitty.json new file mode 100644 index 000000000..dd406458c --- /dev/null +++ b/domains/kitty.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Stardustxxx", + "email": "kitty@kittysmh.tech" + }, + + "record": { + "A": ["192.95.42.66"] + } +} 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 new file mode 100644 index 000000000..dcc0043a4 --- /dev/null +++ b/domains/kiyora.json @@ -0,0 +1,11 @@ +{ + "description": "using for personal projects", + "repo": "https://github.com/ItsMyEyes", + "owner": { + "username": "ItsMyEyes", + "email": "dev@sipaling.top" + }, + "record": { + "CNAME": "itsmyeyes.github.io" + } +} diff --git a/domains/kkdesigns.json b/domains/kkdesigns.json new file mode 100644 index 000000000..4c561b711 --- /dev/null +++ b/domains/kkdesigns.json @@ -0,0 +1,11 @@ +{ + "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/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 new file mode 100644 index 000000000..acbe83c4a --- /dev/null +++ b/domains/klouqzz.json @@ -0,0 +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" + } +} diff --git a/domains/kmrvarun.json b/domains/kmrvarun.json new file mode 100644 index 000000000..af06c06ee --- /dev/null +++ b/domains/kmrvarun.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kmr-varun", + "email": "kmr11varun@gmail.com" + }, + + "record": { + "CNAME": "kmr-varun.github.io" + } +} diff --git a/domains/kns.json b/domains/kns.json new file mode 100644 index 000000000..72ec8d59a --- /dev/null +++ b/domains/kns.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ItzCrazyKns", + "email": "", + "discord": "ItzCrazyKns#1337" + }, + "record": { + "A": ["129.153.126.170"] + } +} 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/kobeff.json b/domains/kobeff.json new file mode 100644 index 000000000..6fcd7b36b --- /dev/null +++ b/domains/kobeff.json @@ -0,0 +1,11 @@ +{ + "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/koding.json b/domains/koding.json new file mode 100644 index 000000000..d38162e72 --- /dev/null +++ b/domains/koding.json @@ -0,0 +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" + } +} diff --git a/domains/koenv.json b/domains/koenv.json new file mode 100644 index 000000000..590d779b5 --- /dev/null +++ b/domains/koenv.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevKoenv", + "email": "koenvanvlimmeren@gmail.com" + }, + + "record": { + "A": ["168.119.108.101"] + } +} diff --git a/domains/koolwiza.json b/domains/koolwiza.json new file mode 100644 index 000000000..97bd921ee --- /dev/null +++ b/domains/koolwiza.json @@ -0,0 +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" + } +} diff --git a/domains/korauo.json b/domains/korauo.json new file mode 100644 index 000000000..50b802eaa --- /dev/null +++ b/domains/korauo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "korauo", + "email": "", + "twitter": "korauo", + "discord": "korauo#1423" + }, + "record": { + "CNAME": "korauo.github.io" + } +} diff --git a/domains/korbinvanette.json b/domains/korbinvanette.json new file mode 100644 index 000000000..378097263 --- /dev/null +++ b/domains/korbinvanette.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "KorbinVanetteDev", + "email": "korbinvanettedev@gmail.com" + }, + + "record": { + "CNAME": "35ad5fb7-4c98-46e4-891b-67815124df03.id.repl.co" + } +} diff --git a/domains/kory.json b/domains/kory.json new file mode 100644 index 000000000..b77e8df34 --- /dev/null +++ b/domains/kory.json @@ -0,0 +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" + } +} diff --git a/domains/koshikkumar17.json b/domains/koshikkumar17.json new file mode 100644 index 000000000..94277b5ea --- /dev/null +++ b/domains/koshikkumar17.json @@ -0,0 +1,11 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/KoshikKumar17/KoshikKumar17.github.io", + "owner": { + "username": "koshikkumar17", + "email": "cw4rriors17@gmail.com" + }, + "record": { + "CNAME": "koshikkumar17.github.io" + } +} 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/kotelek.json b/domains/kotelek.json new file mode 100644 index 000000000..5a8d21600 --- /dev/null +++ b/domains/kotelek.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "xKotelek", + "email": "kontakt@kotelek.tk" + }, + + "record": { + "CNAME": "kotelek.tk" + } +} 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 new file mode 100644 index 000000000..2d1d3f06d --- /dev/null +++ b/domains/koton-bads.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Site", + "owner": { + "username": "KotonBads", + "email": "kotonbads@duck.com" + }, + "record": { + "CNAME": "kotonbads.github.io" + } +} diff --git a/domains/kpopiui.json b/domains/kpopiui.json new file mode 100644 index 000000000..a4879175c --- /dev/null +++ b/domains/kpopiui.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zeor154", + "email": "driop12bu@gmail.com" + }, + "record": { + "A": ["45.140.141.88"] + } +} diff --git a/domains/krix.json b/domains/krix.json new file mode 100644 index 000000000..5707fea0c --- /dev/null +++ b/domains/krix.json @@ -0,0 +1,10 @@ +{ + "description": "Krix's portfolio", + "owner": { + "username": "Krix12", + "email": "kristjan.kocevar89@gmail.com" + }, + "record": { + "CNAME": "krix12-github-io.pages.dev" + } +} diff --git a/domains/krvishal.json b/domains/krvishal.json new file mode 100644 index 000000000..ff222e873 --- /dev/null +++ b/domains/krvishal.json @@ -0,0 +1,12 @@ +{ + "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/kshitij.json b/domains/kshitij.json new file mode 100644 index 000000000..44397f87d --- /dev/null +++ b/domains/kshitij.json @@ -0,0 +1,10 @@ +{ + "description": "Kshitij Subedi", + "owner": { + "username": "kshitijsubedi", + "email": "2subedikshitij@gmail.com" + }, + "record": { + "CNAME": "kshitijsubedi.com.np" + } +} diff --git a/domains/ksvkabra.json b/domains/ksvkabra.json new file mode 100644 index 000000000..21cfa2c6b --- /dev/null +++ b/domains/ksvkabra.json @@ -0,0 +1,10 @@ +{ + "description": "Keshav Kabra's website", + "owner": { + "username": "ksvkabra", + "email": "ksvkabra@gmail.com" + }, + "record": { + "CNAME": "ksvkabra.github.io" + } +} diff --git a/domains/kuba.json b/domains/kuba.json new file mode 100644 index 000000000..76651a44c --- /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 new file mode 100644 index 000000000..1310381ea --- /dev/null +++ b/domains/kubov.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Kubov24", + "email": "jakubcaly93@gmail.com" + }, + + "record": { + "A": ["37.187.156.46"] + } +} diff --git a/domains/kukikop.json b/domains/kukikop.json new file mode 100644 index 000000000..4648786f2 --- /dev/null +++ b/domains/kukikop.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zeor154", + "email": "driop12bu@gmail.com" + }, + "record": { + "A": ["45.130.141.88"] + } +} diff --git a/domains/kumkashree.json b/domains/kumkashree.json new file mode 100644 index 000000000..a868a091c --- /dev/null +++ b/domains/kumkashree.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..548e6f3d3 --- /dev/null +++ b/domains/kunal.json @@ -0,0 +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" + } +} diff --git a/domains/kuyacarlos.json b/domains/kuyacarlos.json new file mode 100644 index 000000000..5b3f73673 --- /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/kweeper.json b/domains/kweeper.json new file mode 100644 index 000000000..81c8c51f2 --- /dev/null +++ b/domains/kweeper.json @@ -0,0 +1,10 @@ +{ + "description": "kweeper.is-a.dev", + "owner": { + "username": "kweeperdotjs", + "email": "kweeper@protonmail.com" + }, + "record": { + "CNAME": "kweeperdotjs.pages.dev" + } +} diff --git a/domains/kweller.json b/domains/kweller.json new file mode 100644 index 000000000..90109679b --- /dev/null +++ b/domains/kweller.json @@ -0,0 +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" + } +} diff --git a/domains/kyhros.json b/domains/kyhros.json new file mode 100644 index 000000000..a784c0162 --- /dev/null +++ b/domains/kyhros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Klorycs", + "email": "abmongus@gmail.com" + }, + "record": { + "URL": "https://kyhros.netlify.app" + } +} diff --git a/domains/kyle.json b/domains/kyle.json new file mode 100644 index 000000000..e676647fc --- /dev/null +++ b/domains/kyle.json @@ -0,0 +1,10 @@ +{ + "description": "My CDN", + "owner": { + "username": "JavaScriptpy", + "email": "zerotwo.on.discord@gmail.com" + }, + "record": { + "CNAME": "4610390a-31b4-45f7-9a4a-4c75e28ecfbd.repl.co" + } +} diff --git a/domains/kylemartin.json b/domains/kylemartin.json new file mode 100644 index 000000000..cd25c6056 --- /dev/null +++ b/domains/kylemartin.json @@ -0,0 +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" + } +} diff --git a/domains/kyoki.json b/domains/kyoki.json new file mode 100644 index 000000000..a9465b52a --- /dev/null +++ b/domains/kyoki.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..a26818aa5 --- /dev/null +++ b/domains/kyotox.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "kyotox-dev", + "email": "kyotox.dev@gmail.com" + }, + "record": { + "URL": "https://ajiteshrawat.wixsite.com/portfolio" + } +} diff --git a/domains/kyoya.json b/domains/kyoya.json new file mode 100644 index 000000000..05e3ce32a --- /dev/null +++ b/domains/kyoya.json @@ -0,0 +1,9 @@ +{ + "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..dfa408221 --- /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 new file mode 100644 index 000000000..3f2a45565 --- /dev/null +++ b/domains/l0ser.json @@ -0,0 +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" + } +} 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/lacti.json b/domains/lacti.json new file mode 100644 index 000000000..faa77eef8 --- /dev/null +++ b/domains/lacti.json @@ -0,0 +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" + } +} diff --git a/domains/laker.json b/domains/laker.json new file mode 100644 index 000000000..ed2cad3d9 --- /dev/null +++ b/domains/laker.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lxjv", + "email": "hey@laker.tech" + }, + "record": { + "CNAME": "laker.omg.lol" + } +} 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/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/lambda.json b/domains/lambda.json new file mode 100644 index 000000000..2b5ecda99 --- /dev/null +++ b/domains/lambda.json @@ -0,0 +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" + } +} diff --git a/domains/larei.json b/domains/larei.json new file mode 100644 index 000000000..05d79d9bf --- /dev/null +++ b/domains/larei.json @@ -0,0 +1,11 @@ +{ + "description": "larei's cool website.", + "repo": "https://github.com/lareii/lareii.github.io", + "owner": { + "username": "lareii", + "email": "lareithen@gmail.com" + }, + "record": { + "CNAME": "lareii.github.io" + } +} diff --git a/domains/larryst.json b/domains/larryst.json new file mode 100644 index 000000000..660068590 --- /dev/null +++ b/domains/larryst.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..660068590 --- /dev/null +++ b/domains/larrystudios.json @@ -0,0 +1,10 @@ +{ + "description": "Official Website for Larry Studios™", + "owner": { + "username": "kornls", + "email": "larryst.korn@gmail.com" + }, + "record": { + "CNAME": "larrystudios.github.io" + } +} diff --git a/domains/latealways.json b/domains/latealways.json new file mode 100644 index 000000000..115b1a16f --- /dev/null +++ b/domains/latealways.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sky-FoxGAMING", + "email": "jparedesmoure@awakenclient.com" + }, + "record": { + "CNAME": "Sky-FoxGAMING.github.io" + } +} diff --git a/domains/laufey.json b/domains/laufey.json new file mode 100644 index 000000000..7c8a27508 --- /dev/null +++ b/domains/laufey.json @@ -0,0 +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" + } +} 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/laxminag.json b/domains/laxminag.json new file mode 100644 index 000000000..60358800f --- /dev/null +++ b/domains/laxminag.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..85d3336f0 --- /dev/null +++ b/domains/laymoth.json @@ -0,0 +1,10 @@ +{ + "description": "Laymoth's Website", + "owner": { + "username": "laymoth", + "email": "pm@laymoth.dev" + }, + "record": { + "CNAME": "laymoth.pages.dev" + } +} diff --git a/domains/layor.json b/domains/layor.json new file mode 100644 index 000000000..722c0732b --- /dev/null +++ b/domains/layor.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "6346563751", + "email": "b0bb1e@protonmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/lazycoder.json b/domains/lazycoder.json new file mode 100644 index 000000000..3f13a6119 --- /dev/null +++ b/domains/lazycoder.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..708558f14 --- /dev/null +++ b/domains/lazyllama.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lazylllama", + "email": "kws102522@gmail.com" + }, + "record": { + "CNAME": "lazylllama.github.io" + } +} diff --git a/domains/learn-to-code-now.json b/domains/learn-to-code-now.json new file mode 100644 index 000000000..53650f301 --- /dev/null +++ b/domains/learn-to-code-now.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "qloakongithub", + "email": "7469931481@stu.gcsnc.com" + }, + "record": { + "CNAME": "qloakongithub.github.io" + } + } + \ No newline at end of file diff --git a/domains/legendsayantan.json b/domains/legendsayantan.json new file mode 100644 index 000000000..f684066d9 --- /dev/null +++ b/domains/legendsayantan.json @@ -0,0 +1,12 @@ +{ + "description": "LegendSayantan's Project Wiki Page", + "repo": "https://github.com/legendsayantan/legendsayantan.github.io", + "owner": { + "username": "legendsayantan", + "email": "legendsayantanpaul@gmail.com", + "twitter": "legendsayantan" + }, + "record": { + "CNAME": "legendsayantan.github.io" + } +} diff --git a/domains/leha.json b/domains/leha.json new file mode 100644 index 000000000..a0c0489fa --- /dev/null +++ b/domains/leha.json @@ -0,0 +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" + } +} diff --git a/domains/lellis.json b/domains/lellis.json new file mode 100644 index 000000000..9a16087e2 --- /dev/null +++ b/domains/lellis.json @@ -0,0 +1,11 @@ +{ + "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/lenicyl.json b/domains/lenicyl.json new file mode 100644 index 000000000..9cbd4943e --- /dev/null +++ b/domains/lenicyl.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Lenicyl", + "discord": "HUT#5940", + "email": "" + }, + "record": { + "CNAME": "lenicyl.github.io" + } +} diff --git a/domains/leo.json b/domains/leo.json new file mode 100644 index 000000000..cf4219c73 --- /dev/null +++ b/domains/leo.json @@ -0,0 +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" + } +} diff --git a/domains/leon.json b/domains/leon.json new file mode 100644 index 000000000..e9ad23c8a --- /dev/null +++ b/domains/leon.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/LeonskiDev/leonskidev", + "owner": { + "username": "LeonskiDev", + "email": "bodged@pm.me" + }, + "record": { + "CNAME": "leonskidev.github.io" + } +} diff --git a/domains/levani.json b/domains/levani.json new file mode 100644 index 000000000..5059d0f9b --- /dev/null +++ b/domains/levani.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LevaniVashadze", + "email": "vashadzelevani11@gmail.com" + }, + "record": { + "CNAME": "LevaniVashadze.github.io" + } +} diff --git a/domains/levi.json b/domains/levi.json new file mode 100644 index 000000000..fd5470367 --- /dev/null +++ b/domains/levi.json @@ -0,0 +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" + } +} diff --git a/domains/levprograming.json b/domains/levprograming.json new file mode 100644 index 000000000..fbbacf5ed --- /dev/null +++ b/domains/levprograming.json @@ -0,0 +1,11 @@ +{ + "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/li.whine.json b/domains/li.whine.json new file mode 100644 index 000000000..836c70839 --- /dev/null +++ b/domains/li.whine.json @@ -0,0 +1,11 @@ +{ + "description": "whi_ne's redirects", + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "record": { + "CNAME": "a.redirect.pizza" + } +} diff --git a/domains/liancg.json b/domains/liancg.json index d16338e78..522e9afd7 100644 --- a/domains/liancg.json +++ b/domains/liancg.json @@ -1,12 +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", - "URL": "https://liancg.is-a.dev" - } + "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 new file mode 100644 index 000000000..2266ad2a4 --- /dev/null +++ b/domains/light.json @@ -0,0 +1,11 @@ +{ + "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/lighty.json b/domains/lighty.json new file mode 100644 index 000000000..0f206e1bf --- /dev/null +++ b/domains/lighty.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ImLighty", + "email": "imlighty@duck.com" + }, + + "record": { + "CNAME": "imlighty.github.io" + } +} 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 new file mode 100644 index 000000000..96b6d95dd --- /dev/null +++ b/domains/liju.json @@ -0,0 +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" + } +} diff --git a/domains/likalium.json b/domains/likalium.json new file mode 100644 index 000000000..782ee0b87 --- /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#2870" + }, + "record" : { + "CNAME": "likalium.github.io" + } +} diff --git a/domains/lilac.json b/domains/lilac.json new file mode 100644 index 000000000..0b23cd5e4 --- /dev/null +++ b/domains/lilac.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..60b43ef83 --- /dev/null +++ b/domains/linbuxiao.json @@ -0,0 +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" + } +} diff --git a/domains/lingle.json b/domains/lingle.json new file mode 100644 index 000000000..dc3fa418e --- /dev/null +++ b/domains/lingle.json @@ -0,0 +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" + } +} diff --git a/domains/link.json b/domains/link.json new file mode 100644 index 000000000..c2a3aef0a --- /dev/null +++ b/domains/link.json @@ -0,0 +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" + } +} diff --git a/domains/linkme.noma.json b/domains/linkme.noma.json new file mode 100644 index 000000000..7622f78b6 --- /dev/null +++ b/domains/linkme.noma.json @@ -0,0 +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" + } +} diff --git a/domains/links.aditya.json b/domains/links.aditya.json new file mode 100644 index 000000000..9e4866a91 --- /dev/null +++ b/domains/links.aditya.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..0cc4178ae --- /dev/null +++ b/domains/links.json @@ -0,0 +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" + } +} diff --git a/domains/lintahtorrents.json b/domains/lintahtorrents.json new file mode 100644 index 000000000..ebaf77f8e --- /dev/null +++ b/domains/lintahtorrents.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meritocrazy", + "email": "lunatic@tuta.io" + }, + "record": { + "CNAME": "drives.labor.workers.dev" + } +} diff --git a/domains/linusx.json b/domains/linusx.json new file mode 100644 index 000000000..3c23c6072 --- /dev/null +++ b/domains/linusx.json @@ -0,0 +1,11 @@ +{ + "description": "Just my personal website, static on github pages. Generated with hugo", + "repo": "https://github.com/linuzzx/linuzzx.github.io", + "owner": { + "username": "linuzzx", + "email": "galaxylinus@gmail.com" + }, + "record": { + "CNAME": "linuzzx.github.io" + } +} 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 new file mode 100644 index 000000000..c10359bf5 --- /dev/null +++ b/domains/lio.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..1f5d4d7a4 --- /dev/null +++ b/domains/liq.json @@ -0,0 +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" + } +} diff --git a/domains/liquid.json b/domains/liquid.json new file mode 100644 index 000000000..2d62d656a --- /dev/null +++ b/domains/liquid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ThinLiquid", + "email": "thinliquid@proton.me" + }, + "record": { + "CNAME": "9b0994e0-3427-49c7-8609-b7027badd871.id.repl.co" + } +} diff --git a/domains/live.preview.beta.json b/domains/live.preview.beta.json new file mode 100644 index 000000000..09b4f1ae3 --- /dev/null +++ b/domains/live.preview.beta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "A": ["140.238.66.199"] + } +} 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/liztochekcode.json b/domains/liztochekcode.json new file mode 100644 index 000000000..869827228 --- /dev/null +++ b/domains/liztochekcode.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "LiztochekCode", + "email": "liztochekcode@gmail.com" + }, + + "record": { + "URL": "https://liztochekcode.epizy.com" + } +} diff --git a/domains/lknows.json b/domains/lknows.json new file mode 100644 index 000000000..919dbaead --- /dev/null +++ b/domains/lknows.json @@ -0,0 +1,13 @@ +{ + "description": "Link for lknow's personal site on GitHub pages", + "repo": "https://github.com/lknows/lknows.github.io", + "owner": { + "username": "lknows", + "email": "easyg53@gmail.com", + "discord": "Ne bije al' ubija u pojam#2020" + }, + + "record": { + "CNAME": "lknows.github.io" + } +} diff --git a/domains/llama.json b/domains/llama.json new file mode 100644 index 000000000..3f7c913b7 --- /dev/null +++ b/domains/llama.json @@ -0,0 +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" + } +} diff --git a/domains/llanero.json b/domains/llanero.json new file mode 100644 index 000000000..27bf8b231 --- /dev/null +++ b/domains/llanero.json @@ -0,0 +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" + } +} diff --git a/domains/lmgxenon.json b/domains/lmgxenon.json new file mode 100644 index 000000000..62cb39df8 --- /dev/null +++ b/domains/lmgxenon.json @@ -0,0 +1,10 @@ +{ + "description": "Hi, I'm LMG XENON. I develop Discord bots, user interfaces and web applications.", + "owner": { + "username": "LMGXENON", + "email": "lmgxenon@gmail.com" + }, + "record": { + "CNAME": "2fd4a23b-6608-4be8-b2fc-911cc30b1b87.id.repl.co" + } +} diff --git a/domains/lndr2501.json b/domains/lndr2501.json new file mode 100644 index 000000000..bbf5e3f2f --- /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 new file mode 100644 index 000000000..ffa50a16d --- /dev/null +++ b/domains/lnfnunes.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ea9fa1419 --- /dev/null +++ b/domains/local.jj.json @@ -0,0 +1,10 @@ +{ + "description": "my playit.gg ip", + "owner": { + "username": "TheBotlyNoob", + "email": "jj@jj.is-a.dev" + }, + "record": { + "A": ["147.185.221.193"] + } +} diff --git a/domains/logan.json b/domains/logan.json new file mode 100644 index 000000000..fb77c3e62 --- /dev/null +++ b/domains/logan.json @@ -0,0 +1,12 @@ +{ + "description": "LoganTheDudeRox's custom development website.", + "repo": "https://github.com/LoganLikesToCode/LoganLikesToCode.github.io", + "owner": { + "username": "LoganLikesToCode", + "email": "logantheduderox@gmail.com", + "twitter": "LoganTheDudeRox" + }, + "record": { + "CNAME": "LoganLikesToCode.github.io" + } +} diff --git a/domains/login-brawley.json b/domains/login-brawley.json new file mode 100644 index 000000000..5415b6f62 --- /dev/null +++ b/domains/login-brawley.json @@ -0,0 +1,11 @@ +{ + "description": "login page for my discord bot", + "repo": "https://github.com/teamjoelee/me", + "owner": { + "username": "brawlie", + "email": "tojoeleeofficial@gmail.com" + }, + "record": { + "CNAME": "69cfaa0c-dc64-4aae-8038-3d5e8bd27073.repl.co" + } +} diff --git a/domains/loisvelasco.json b/domains/loisvelasco.json new file mode 100644 index 000000000..54ce1083f --- /dev/null +++ b/domains/loisvelasco.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "loiSvelasco", + "email": "loisuperficialvelasco@gmail.com" + }, + "description": "Blog && Portfolio", + "repo": "https://github.com/loiSvelasco/loisvelasco.github.io", + "record": { + "CNAME": "loisvelasco.github.io" + } +} diff --git a/domains/lok.json b/domains/lok.json new file mode 100644 index 000000000..757675f66 --- /dev/null +++ b/domains/lok.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..8b7209b26 --- /dev/null +++ b/domains/lol.json @@ -0,0 +1,11 @@ +{ + "description": "lol is a dev", + "repo": "https://github.com/codingjlu/codingjlu.github.io", + "owner": { + "username": "codingjlu", + "email": "20472547@fhda.edu" + }, + "record": { + "CNAME": "codingjlu.github.io" + } +} diff --git a/domains/lonelil.json b/domains/lonelil.json new file mode 100644 index 000000000..ae395a858 --- /dev/null +++ b/domains/lonelil.json @@ -0,0 +1,12 @@ +{ + "description": "This will be used for my portfolio.", + "repo": "https://github.com/lonelil/lonelil.github.io", + "owner": { + "username": "lonelil", + "discord": "lonelil#0001", + "email": "" + }, + "record": { + "CNAME": "lonelil.github.io" + } +} diff --git a/domains/loneorangeball.json b/domains/loneorangeball.json new file mode 100644 index 000000000..771da895a --- /dev/null +++ b/domains/loneorangeball.json @@ -0,0 +1,12 @@ +{ + "description": "loneorangeball's website", + "owner": { + "username": "loneorangeball", + "email": "", + "twitter": "LoneOrangeBall", + "discord": "orangeBall#6183" + }, + "record": { + "CNAME": "b29ec742-99b6-4ff2-990d-58f9aa910bd1.id.repl.co" + } +} diff --git a/domains/lordshoray.json b/domains/lordshoray.json new file mode 100644 index 000000000..37dbce865 --- /dev/null +++ b/domains/lordshoray.json @@ -0,0 +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" + } +} diff --git a/domains/loser.json b/domains/loser.json new file mode 100644 index 000000000..24919c764 --- /dev/null +++ b/domains/loser.json @@ -0,0 +1,20 @@ +{ + "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..24919c764 --- /dev/null +++ b/domains/losr.json @@ -0,0 +1,20 @@ +{ + "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/loud.json b/domains/loud.json new file mode 100644 index 000000000..a5991909d --- /dev/null +++ b/domains/loud.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "LinkerScript", + "email": "min@effobe.com" + }, + "record": { + "CNAME": "6498c941-9031-4e57-9fc0-12716fa187f4.repl.co" + } +} 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 new file mode 100644 index 000000000..36bf3ba22 --- /dev/null +++ b/domains/lovishprabhakar.json @@ -0,0 +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" + } +} diff --git a/domains/lpkeates.json b/domains/lpkeates.json new file mode 100644 index 000000000..258571dad --- /dev/null +++ b/domains/lpkeates.json @@ -0,0 +1,12 @@ +{ + "description": "This is to show my projects; current, in progress etc.", + "repo": "https://github.com/lpkeates/lpkeates.github.io", + "owner": { + "username": "lpkeates", + "email": "", + "discord": "MrDragonBoi#7894" + }, + "record": { + "CNAME": "lpkeates.github.io" + } +} diff --git a/domains/lrmn.json b/domains/lrmn.json new file mode 100644 index 000000000..532c9e1a0 --- /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" + } +} \ No newline at end of file diff --git a/domains/lrxrn.json b/domains/lrxrn.json new file mode 100644 index 000000000..df75b7bc6 --- /dev/null +++ b/domains/lrxrn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lrxrn", + "email": "meesum632@gmail.com" + }, + "record": { + "CNAME": "lrxrn.github.io" + } +} diff --git a/domains/lsantana.json b/domains/lsantana.json new file mode 100644 index 000000000..54a0fa45a --- /dev/null +++ b/domains/lsantana.json @@ -0,0 +1,11 @@ +{ + "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/lthon09.json b/domains/lthon09.json new file mode 100644 index 000000000..14cce2c0d --- /dev/null +++ b/domains/lthon09.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website.", + "owner": { + "username": "lthon09", + "email": "", + "twitter": "lthon09" + }, + "record": { + "CNAME": "lthon09.onrender.com" + } +} diff --git a/domains/ltln.json b/domains/ltln.json new file mode 100644 index 000000000..24df53cd2 --- /dev/null +++ b/domains/ltln.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ltln", + "email": "uguest17@gmail.com" + }, + + "record": { + "URL": "https://github.com/ltln" + } +} diff --git a/domains/luanrt.json b/domains/luanrt.json new file mode 100644 index 000000000..fe34d84c5 --- /dev/null +++ b/domains/luanrt.json @@ -0,0 +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" + } +} diff --git a/domains/luca.json b/domains/luca.json new file mode 100644 index 000000000..ac9388f7b --- /dev/null +++ b/domains/luca.json @@ -0,0 +1,13 @@ +{ + "description": "Redirection service (URL shortener)", + "repo": "https://github.com/lucatolton", + "owner": { + "username": "lucatolton", + "email": "hi@lucatolton.me" + }, + "record": { + "A": ["168.119.228.144"], + "MX": ["mail.lucatolton.me"], + "TXT": "v=spf1 +a +mx +a:optimistic-wiles.168-119-228-144.plesk.page -all" + } +} diff --git a/domains/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/lucyjs.json b/domains/lucyjs.json new file mode 100644 index 000000000..42b276cd7 --- /dev/null +++ b/domains/lucyjs.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "LucyJS-Dev", + "email": "pumimail9@gmail.com" + }, + + "record": { + "URL": "http://lucyjs.de" + } +} diff --git a/domains/luihh.json b/domains/luihh.json new file mode 100644 index 000000000..b7f5ce9c7 --- /dev/null +++ b/domains/luihh.json @@ -0,0 +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" + } +} diff --git a/domains/luis-ciber.json b/domains/luis-ciber.json new file mode 100644 index 000000000..7ebad1a3f --- /dev/null +++ b/domains/luis-ciber.json @@ -0,0 +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" + } +} diff --git a/domains/luistena.json b/domains/luistena.json new file mode 100644 index 000000000..928d18dba --- /dev/null +++ b/domains/luistena.json @@ -0,0 +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" + } +} diff --git a/domains/lukas.json b/domains/lukas.json new file mode 100644 index 000000000..baa79b077 --- /dev/null +++ b/domains/lukas.json @@ -0,0 +1,12 @@ +{ + "description": "Lukas' Developer Page!", + "repo": "https://github.com/lukpopp0/lukpopp0.github.io", + "owner": { + "username": "LukPopp0", + "email": "luk.popp0@gmail.com", + "twitter": "LukPopp0" + }, + "record": { + "CNAME": "lukpopp.com" + } +} diff --git a/domains/luke.json b/domains/luke.json new file mode 100644 index 000000000..13853fb98 --- /dev/null +++ b/domains/luke.json @@ -0,0 +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" + } +} diff --git a/domains/luna.json b/domains/luna.json new file mode 100644 index 000000000..218f42211 --- /dev/null +++ b/domains/luna.json @@ -0,0 +1,11 @@ +{ + "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"] + } +} diff --git a/domains/lunah.json b/domains/lunah.json new file mode 100644 index 000000000..a532f1029 --- /dev/null +++ b/domains/lunah.json @@ -0,0 +1,14 @@ +{ + "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/lunax0390.json b/domains/lunax0390.json new file mode 100644 index 000000000..d80830420 --- /dev/null +++ b/domains/lunax0390.json @@ -0,0 +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" + } +} 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/lxquid.json b/domains/lxquid.json new file mode 100644 index 000000000..1dc1172e7 --- /dev/null +++ b/domains/lxquid.json @@ -0,0 +1,9 @@ +{ + "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/lyessa.json b/domains/lyessa.json new file mode 100644 index 000000000..862d91dce --- /dev/null +++ b/domains/lyessa.json @@ -0,0 +1,11 @@ +{ + "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/lytwest.json b/domains/lytwest.json new file mode 100644 index 000000000..218774fdb --- /dev/null +++ b/domains/lytwest.json @@ -0,0 +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" + } +} diff --git a/domains/lyubo.json b/domains/lyubo.json new file mode 100644 index 000000000..e32225ef0 --- /dev/null +++ b/domains/lyubo.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "impzero", + "email": "", + "twitter": "impzero" + }, + "record": { + "URL": "https://github.com/impzero" + } +} diff --git a/domains/m04.json b/domains/m04.json new file mode 100644 index 000000000..3af70f0e7 --- /dev/null +++ b/domains/m04.json @@ -0,0 +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" + } +} diff --git a/domains/m1dnight.json b/domains/m1dnight.json new file mode 100644 index 000000000..a9d61622d --- /dev/null +++ b/domains/m1dnight.json @@ -0,0 +1,11 @@ +{ + "description": "M1dnight's Coding/Digital Art Portfolio", + "repo": "https://portfolio.m1dnightdev.repl.co", + "owner": { + "username": "M1dnight-ofcl", + "email": "m1dnightgmrofficial@gmail.com" + }, + "record": { + "CNAME": "3076868f-0b1c-470a-b31d-f9fbb0ec9030.id.repl.co" + } +} diff --git a/domains/m42e.json b/domains/m42e.json new file mode 100644 index 000000000..6e800ded1 --- /dev/null +++ b/domains/m42e.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..8d8295c2f --- /dev/null +++ b/domains/m4hbod.json @@ -0,0 +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" + } +} 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/macos.notaperson535.json b/domains/macos.notaperson535.json new file mode 100644 index 000000000..a0421948b --- /dev/null +++ b/domains/macos.notaperson535.json @@ -0,0 +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" + } +} diff --git a/domains/maddy.json b/domains/maddy.json new file mode 100644 index 000000000..db31bffbb --- /dev/null +++ b/domains/maddy.json @@ -0,0 +1,11 @@ +{ + "description": "Maddy Rocks :)", + "repo": "https://github.com/madhav-madhusoodanan/madhav-madhusoodanan.github.io", + "owner": { + "username": "madhav-madhusoodanan", + "email": "f20200049@pilani.bits-pilani.ac.in" + }, + "record": { + "CNAME": "madhav-madhusoodanan.github.io" + } +} diff --git a/domains/madebytragic.json b/domains/madebytragic.json new file mode 100644 index 000000000..67b3133f3 --- /dev/null +++ b/domains/madebytragic.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lrmn7", + "email": "lrmnid@gmail.com" + }, + + "record": { + "CNAME": "madebytragic.github.io" + } +} diff --git a/domains/madhan.json b/domains/madhan.json new file mode 100644 index 000000000..5bd81f098 --- /dev/null +++ b/domains/madhan.json @@ -0,0 +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" + } +} diff --git a/domains/madhav.json b/domains/madhav.json index e66d5f4cb..bc1183fa3 100644 --- a/domains/madhav.json +++ b/domains/madhav.json @@ -1,11 +1,10 @@ { - "repo": "https://github.com/LaBus3/LaBus3.github.io", - "owner": { - "username": "LaBus3", - "email": "madhav.v.1996@gmail.com" - }, - "record": { - "CNAME": "LaBus3.github.io", - "URL": "https://madhav.is-a.dev" - } + "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..d5b76f1ee --- /dev/null +++ b/domains/madhavgupta.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "M4dhav", + "email": "madhav.gupta7674@gmail.com" + }, + "record": { + "URL": "https://madhavgupta.vercel.app/" + } + } + \ No newline at end of file diff --git a/domains/madhavjhawar.json b/domains/madhavjhawar.json new file mode 100644 index 000000000..ef4fe1877 --- /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..24919c764 --- /dev/null +++ b/domains/madhead341.json @@ -0,0 +1,20 @@ +{ + "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/magic4me.json b/domains/magic4me.json new file mode 100644 index 000000000..ac8d13703 --- /dev/null +++ b/domains/magic4me.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "magic4me", + "email": "magic4me.info@gmail.com" + }, + "record": { + "CNAME": "magic4me.github.io" + } +} diff --git a/domains/magma.json b/domains/magma.json new file mode 100644 index 000000000..e24021198 --- /dev/null +++ b/domains/magma.json @@ -0,0 +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" + } +} diff --git a/domains/magniquick.json b/domains/magniquick.json new file mode 100644 index 000000000..031709adc --- /dev/null +++ b/domains/magniquick.json @@ -0,0 +1,19 @@ +{ + "description": "magniquick's personal site", + "repo": "https://github.com/Magniquick/magniquick.github.io", + "owner": { + "username": "magniquick", + "email": "", + "discord": "Magniquick#5003" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} 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/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..4d84e811b --- /dev/null +++ b/domains/mahmoud.json @@ -0,0 +1,18 @@ +{ + "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 new file mode 100644 index 000000000..d033f6797 --- /dev/null +++ b/domains/mahmud.json @@ -0,0 +1,12 @@ +{ + "description": "mahmud's portfolio website", + "repo": "https://github.com/JBAxB8h7/JBAxB8h7.github.io", + "owner": { + "username": "JBAxB8h7", + "email": "kanieloutis758@gmail.com", + "twitter": "mahmudislam47" + }, + "record": { + "CNAME": "JBAxB8h7.github.io" + } +} diff --git a/domains/mai.json b/domains/mai.json new file mode 100644 index 000000000..8b5b5827b --- /dev/null +++ b/domains/mai.json @@ -0,0 +1,10 @@ +{ + "description": "Mai's personal developer website", + "owner": { + "username": "Mai1ii", + "email": "mail@apexure.cf" + }, + "record": { + "CNAME": "mai1ii.github.io" + } +} diff --git a/domains/mail-noma.json b/domains/mail-noma.json new file mode 100644 index 000000000..a2821fdf0 --- /dev/null +++ b/domains/mail-noma.json @@ -0,0 +1,11 @@ +{ + "description": "A Subdomain For Mails!!", + "owner": { + "username": "Noma4321", + "email": "Noma4321business@gmail.com" + }, + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.aditya.json b/domains/mail.aditya.json new file mode 100644 index 000000000..0ea9ff1a9 --- /dev/null +++ b/domains/mail.aditya.json @@ -0,0 +1,19 @@ +{ + "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 new file mode 100644 index 000000000..df449b568 --- /dev/null +++ b/domains/mail.arman.json @@ -0,0 +1,18 @@ +{ + "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 new file mode 100644 index 000000000..ad3bc1e9f --- /dev/null +++ b/domains/mail.badboy.json @@ -0,0 +1,21 @@ +{ + "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 new file mode 100644 index 000000000..fe8a0d3d8 --- /dev/null +++ b/domains/mail.boolean44.json @@ -0,0 +1,11 @@ +{ + "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.icehead.json b/domains/mail.icehead.json new file mode 100644 index 000000000..b1450cfdf --- /dev/null +++ b/domains/mail.icehead.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..88a7b2dbf --- /dev/null +++ b/domains/mail.minmit.json @@ -0,0 +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"], + + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.mxnticek.json b/domains/mail.mxnticek.json new file mode 100644 index 000000000..72d6985c5 --- /dev/null +++ b/domains/mail.mxnticek.json @@ -0,0 +1,13 @@ +{ + "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.notaperson535.json b/domains/mail.notaperson535.json new file mode 100644 index 000000000..edde9c7d3 --- /dev/null +++ b/domains/mail.notaperson535.json @@ -0,0 +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" + } +} diff --git a/domains/mail.rika.json b/domains/mail.rika.json new file mode 100644 index 000000000..abdd6fd62 --- /dev/null +++ b/domains/mail.rika.json @@ -0,0 +1,18 @@ +{ + "description": "Domain for gmail", + "repo": "https://github.com/NicolDev/mail", + "owner": { + "username": "NicolDev", + "email": "cainiao1509@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.suki.json b/domains/mail.suki.json new file mode 100644 index 000000000..f0cbc988a --- /dev/null +++ b/domains/mail.suki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SukiPlayz", + "email": "sukimayoo@outlook.com" + }, + "record": { + "A": ["212.193.3.66"] + } +} diff --git a/domains/mail.sx9.json b/domains/mail.sx9.json new file mode 100644 index 000000000..00106199a --- /dev/null +++ b/domains/mail.sx9.json @@ -0,0 +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" + } +} diff --git a/domains/mail.whine.json b/domains/mail.whine.json new file mode 100644 index 000000000..a8efdabf0 --- /dev/null +++ b/domains/mail.whine.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "description": "whi_ne's mail subdomain", + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/mail.zerow.json b/domains/mail.zerow.json new file mode 100644 index 000000000..353e7e8a0 --- /dev/null +++ b/domains/mail.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "A": ["92.118.207.191"] + } +} diff --git a/domains/mailx.json b/domains/mailx.json new file mode 100644 index 000000000..551983ff8 --- /dev/null +++ b/domains/mailx.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com" + }, + + "record": { + "A": ["217.174.245.249"] + } +} diff --git a/domains/maintainers.json b/domains/maintainers.json new file mode 100644 index 000000000..aaca41559 --- /dev/null +++ b/domains/maintainers.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + "TXT": "forward-email=isdevmail.beadman-network.com" + } +} diff --git a/domains/makhbaz.json b/domains/makhbaz.json new file mode 100644 index 000000000..1b92c506a --- /dev/null +++ b/domains/makhbaz.json @@ -0,0 +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" + } +} diff --git a/domains/mako.json b/domains/mako.json new file mode 100644 index 000000000..2453296fa --- /dev/null +++ b/domains/mako.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "GoldenFire2317", + "email": "buttersword2017@gmail.com" + }, + "record": { + "CNAME": "mako.mkoca.org" + } + } + \ No newline at end of file diff --git a/domains/maks.json b/domains/maks.json new file mode 100644 index 000000000..c8ef717fd --- /dev/null +++ b/domains/maks.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..2804bcf12 --- /dev/null +++ b/domains/malbouy.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..3de1cadbe --- /dev/null +++ b/domains/malware.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "themalware", + "email": "daredevil.vikrant@gmail.com" + }, + "record": { + "URL": "https://themalware.tk" + } +} diff --git a/domains/mamun.json b/domains/mamun.json new file mode 100644 index 000000000..09aa099f9 --- /dev/null +++ b/domains/mamun.json @@ -0,0 +1,11 @@ +{ + "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..4c2a68d46 --- /dev/null +++ b/domains/manage.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com", + "discord": "1094272477137481810" + }, + + "record": { + "CNAME": "register.is-a.dev" + } +} diff --git a/domains/manas.json b/domains/manas.json new file mode 100644 index 000000000..a8a52f055 --- /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 new file mode 100644 index 000000000..786952405 --- /dev/null +++ b/domains/manash.json @@ -0,0 +1,11 @@ +{ + "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/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/maninder.json b/domains/maninder.json new file mode 100644 index 000000000..65de25bb4 --- /dev/null +++ b/domains/maninder.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..7df8fa542 --- /dev/null +++ b/domains/manish.json @@ -0,0 +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" + } +} 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/manjushri.json b/domains/manjushri.json new file mode 100644 index 000000000..7a43a575b --- /dev/null +++ b/domains/manjushri.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..9d8c2dd67 --- /dev/null +++ b/domains/manojbarman.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "itsmanojb", + "email": "", + "twitter": "itsmanojb" + }, + "description": "My personal website", + "repo": "https://github.com/itsmanojb", + "record": { + "URL": "https://manojbarman.in" + } +} diff --git a/domains/mantas.json b/domains/mantas.json new file mode 100644 index 000000000..ead7a8057 --- /dev/null +++ b/domains/mantas.json @@ -0,0 +1,11 @@ +{ + "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..c79fb5267 --- /dev/null +++ b/domains/manu.json @@ -0,0 +1,11 @@ +{ + "description": "manu.is-a.dev", + "repo": "https://github.com/manuthecoder/personal-website", + "owner": { + "username": "manuthecoder", + "email": "manusvathgurudath@gmail.com" + }, + "record": { + "CNAME": "manu-is-a-dev-yqz2.onrender.com" + } +} diff --git a/domains/marc.json b/domains/marc.json new file mode 100644 index 000000000..3716335f1 --- /dev/null +++ b/domains/marc.json @@ -0,0 +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" + } +} diff --git a/domains/marcchew.json b/domains/marcchew.json new file mode 100644 index 000000000..4e07cef5c --- /dev/null +++ b/domains/marcchew.json @@ -0,0 +1,10 @@ +{ + "description": "About Marc Chew", + "owner": { + "username": "marcchew", + "email": "marckychew@gmail.com" + }, + "record": { + "CNAME": "947555d1-ed28-4253-9341-45074fe2aaab.id.repl.co" + } +} diff --git a/domains/marcelomrwin.json b/domains/marcelomrwin.json new file mode 100644 index 000000000..3fc8aec87 --- /dev/null +++ b/domains/marcelomrwin.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website to showcase the stuff that I do", + "repo": "https://github.com/marcelomrwin", + "owner": { + "username": "marcelomrwin", + "email": "marcelo.d.sales@gmail.com" + }, + "record": { + "CNAME": "marcelomrwin.github.io" + } +} 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 new file mode 100644 index 000000000..607e74c41 --- /dev/null +++ b/domains/marcus.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..bb5bd674d --- /dev/null +++ b/domains/marcusj.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..e8e873f33 --- /dev/null +++ b/domains/maria.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nirewen", + "email": "londero.edu@gmail.com" + }, + + "record": { + "URL": "https://github.com/marialuisamol" + } +} diff --git a/domains/mark.json b/domains/mark.json new file mode 100644 index 000000000..35a6b55d0 --- /dev/null +++ b/domains/mark.json @@ -0,0 +1,11 @@ +{ + "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/markos.json b/domains/markos.json new file mode 100644 index 000000000..1c37f2a64 --- /dev/null +++ b/domains/markos.json @@ -0,0 +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" + } +} diff --git a/domains/markus.json b/domains/markus.json new file mode 100644 index 000000000..b6d994450 --- /dev/null +++ b/domains/markus.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/markusjx/markusjx.github.io", + "owner": { + "username": "markusjx", + "email": "markusjx11@gmail.com" + }, + "record": { + "CNAME": "markusjx.github.io" + } +} diff --git a/domains/martial.json b/domains/martial.json index 255ef51be..208a5b065 100644 --- a/domains/martial.json +++ b/domains/martial.json @@ -1,12 +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", - "URL": "https://martial.is-a.dev" - } + "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 new file mode 100644 index 000000000..1a27f65e5 --- /dev/null +++ b/domains/maryll.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Maryll-castelino", + "email": "maryllcastelino@gmail.com" + }, + + "record": { + "CNAME": "maryll-castelino.github.io" + } +} diff --git a/domains/maskduck.json b/domains/maskduck.json new file mode 100644 index 000000000..7195fbb1c --- /dev/null +++ b/domains/maskduck.json @@ -0,0 +1,14 @@ +{ + "description": "MaskDuck's personal website!", + "repo": "https://github.com/maskducks/maskducks.github.io", + "owner": { + "username": "MaskDuck", + "email": "", + "discord": "MaskDuck#7325", + "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" + } +} 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 new file mode 100644 index 000000000..6a9f475ec --- /dev/null +++ b/domains/masood.json @@ -0,0 +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" + } +} diff --git a/domains/massick.json b/domains/massick.json new file mode 100644 index 000000000..e958a8578 --- /dev/null +++ b/domains/massick.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "M4ss1ck", + "email": "4ndyraul@gmail.com", + "twitter": "M4ss1ck" + }, + "repo": "https://github.com/M4ss1ck/massick-portfolio", + "record": { + "URL": "https://massick.gatsbyjs.io" + } +} diff --git a/domains/mastodon.dainfloop.json b/domains/mastodon.dainfloop.json new file mode 100644 index 000000000..859ebd4e9 --- /dev/null +++ b/domains/mastodon.dainfloop.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DaInfLoop", + "email": "backupharoongames100@gmail.com" + }, + + "record": { + "A": ["34.132.134.162"] + } +} diff --git a/domains/matbak.json b/domains/matbak.json new file mode 100644 index 000000000..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 new file mode 100644 index 000000000..415ff8eec --- /dev/null +++ b/domains/match.json @@ -0,0 +1,16 @@ +{ + "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 new file mode 100644 index 000000000..0770f3fbf --- /dev/null +++ b/domains/matheus.json @@ -0,0 +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" + } +} diff --git a/domains/mathiassm.json b/domains/mathiassm.json new file mode 100644 index 000000000..715c10c5f --- /dev/null +++ b/domains/mathiassm.json @@ -0,0 +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" + } +} diff --git a/domains/mathiscool.json b/domains/mathiscool.json new file mode 100644 index 000000000..0a17ca714 --- /dev/null +++ b/domains/mathiscool.json @@ -0,0 +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" + } +} 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/matt.json b/domains/matt.json index 5b86de240..d74f8375a 100644 --- a/domains/matt.json +++ b/domains/matt.json @@ -1,11 +1,11 @@ { - "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" - } -} \ No newline at end of file + "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" + } +} 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 new file mode 100644 index 000000000..3f61b6eba --- /dev/null +++ b/domains/mattdavison.json @@ -0,0 +1,10 @@ +{ + "description": "A domain for launching my person portfolio on!", + "owner": { + "username": "immattdavison", + "email": "hey@matt.lgbt" + }, + "record": { + "A": ["209.97.183.92"] + } +} diff --git a/domains/mattdestroyer.json b/domains/mattdestroyer.json new file mode 100644 index 000000000..02bd4151e --- /dev/null +++ b/domains/mattdestroyer.json @@ -0,0 +1,10 @@ +{ + "description": "Matt-DESTROYER's Website", + "owner": { + "username": "Matt-DESTROYER", + "email": "mattdestroyerpro@gmail.com" + }, + "record": { + "URL": "https://mattdestroyer.replit.app" + } +} diff --git a/domains/matthew.json b/domains/matthew.json new file mode 100644 index 000000000..6cfe75aa6 --- /dev/null +++ b/domains/matthew.json @@ -0,0 +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" + } +} diff --git a/domains/mattw.json b/domains/mattw.json new file mode 100644 index 000000000..d74b7430e --- /dev/null +++ b/domains/mattw.json @@ -0,0 +1,13 @@ +{ + "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" + } +} 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 new file mode 100644 index 000000000..9ee172344 --- /dev/null +++ b/domains/max.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "mdsmax", + "email": "maxguilham@protonmail.com" + }, + "record": { + "A": ["34.149.204.188"], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/maximking.json b/domains/maximking.json new file mode 100644 index 000000000..ee444b0bb --- /dev/null +++ b/domains/maximking.json @@ -0,0 +1,10 @@ +{ + "description": "Maxim K Personal Dev Site", + "owner": { + "username": "MaximKing", + "email": "business@maximking.co.uk" + }, + "record": { + "CNAME": "maximking.co.uk" + } +} diff --git a/domains/maxired.json b/domains/maxired.json new file mode 100644 index 000000000..0fd0f957a --- /dev/null +++ b/domains/maxired.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "maxired", + "email": "github@maxired.fr" + }, + "record": { + "CNAME": "www.maxired.fr" + } + } + \ No newline at end of file diff --git a/domains/maxt.json b/domains/maxt.json new file mode 100644 index 000000000..d4acb3685 --- /dev/null +++ b/domains/maxt.json @@ -0,0 +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" + } +} diff --git a/domains/mayank-rathva.json b/domains/mayank-rathva.json new file mode 100644 index 000000000..cec200e71 --- /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..85b531275 --- /dev/null +++ b/domains/mayerfried.json @@ -0,0 +1,11 @@ +{ + "description": "Mayer Fried Is A Dev", + "repo": "https://github.com/mfried40", + "owner": { + "username": "mfried40", + "email": "mayer@mayerfried.com" + }, + "record": { + "CNAME": "me.mayerfried.com" + } +} diff --git a/domains/mayur.json b/domains/mayur.json index 6d137b53c..9590c3044 100644 --- a/domains/mayur.json +++ b/domains/mayur.json @@ -1,12 +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", - "URL": "https://mayur.is-a.dev" - } + "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 new file mode 100644 index 000000000..907c240fc --- /dev/null +++ b/domains/mazengohar.json @@ -0,0 +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" + } +} diff --git a/domains/mb.json b/domains/mb.json new file mode 100644 index 000000000..becf48db0 --- /dev/null +++ b/domains/mb.json @@ -0,0 +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" + } +} diff --git a/domains/mbenetta.json b/domains/mbenetta.json new file mode 100644 index 000000000..9dc9857e6 --- /dev/null +++ b/domains/mbenetta.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/mbg.json b/domains/mbg.json new file mode 100644 index 000000000..080a3b491 --- /dev/null +++ b/domains/mbg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MBG1337", + "email": "MBGx1337@gmail.com" + }, + "record": { + "A": ["147.182.183.139"] + } + } + \ No newline at end of file diff --git a/domains/mburguete.json b/domains/mburguete.json new file mode 100644 index 000000000..97af4efde --- /dev/null +++ b/domains/mburguete.json @@ -0,0 +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" + } +} diff --git a/domains/mc.badboy.json b/domains/mc.badboy.json new file mode 100644 index 000000000..e914b46fd --- /dev/null +++ b/domains/mc.badboy.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..d609fa170 --- /dev/null +++ b/domains/mc.daniel.json @@ -0,0 +1,13 @@ +{ + "description": "2b2t Minecraft proxy", + + "owner": { + "username": "hackermondev", + "email": "isadev@daniel.is-a.dev", + "twitter": "hackermondev" + }, + + "record": { + "A": ["44.203.172.179"] + } +} diff --git a/domains/mc.dergraph.json b/domains/mc.dergraph.json new file mode 100644 index 000000000..c302aa996 --- /dev/null +++ b/domains/mc.dergraph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "derGraph", + "email": "dergraph@f5.si" + }, + "record": { + "A": ["83.215.31.101"] + } +} diff --git a/domains/mc.mousemoosz.json b/domains/mc.mousemoosz.json new file mode 100644 index 000000000..df531cdad --- /dev/null +++ b/domains/mc.mousemoosz.json @@ -0,0 +1,10 @@ +{ + "description": "For my Minecraft server", + "owner": { + "username": "MouseMoosz", + "email": "mousemoosz@protonmail.com" + }, + "record": { + "CNAME": "ge.terohost.com" + } +} diff --git a/domains/mc.toastersticks.json b/domains/mc.toastersticks.json new file mode 100644 index 000000000..eb779638f --- /dev/null +++ b/domains/mc.toastersticks.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ToasterSticks", + "email": "matt.zhao.18@gmail.com" + }, + "record": { + "A": ["168.138.69.189"] + } +} diff --git a/domains/mc1.notjadeja.json b/domains/mc1.notjadeja.json new file mode 100644 index 000000000..2f92a3446 --- /dev/null +++ b/domains/mc1.notjadeja.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HalalJadeja", + "discord": "NotJadeja#8183", + "email": "9236.stkabirdio@gmail.com" + }, + "record": { + "A": ["147.185.221.180"] + } +} diff --git a/domains/mcgraph.json b/domains/mcgraph.json new file mode 100644 index 000000000..b01696408 --- /dev/null +++ b/domains/mcgraph.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "playstation452", + "email": "oscarlin1026@gmail.com" + }, + "record": { + "CNAME": "justaminecraftgraph.swapniladhikari.com.np" + } +} diff --git a/domains/mcotocel.json b/domains/mcotocel.json new file mode 100644 index 000000000..8b01bac4c --- /dev/null +++ b/domains/mcotocel.json @@ -0,0 +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" + } +} diff --git a/domains/mcsavvy.json b/domains/mcsavvy.json new file mode 100644 index 000000000..fa5eb8dcd --- /dev/null +++ b/domains/mcsavvy.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..48e29ec65 --- /dev/null +++ b/domains/mcz.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..17dae5044 --- /dev/null +++ b/domains/mczgodpiggy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mczgodpiggy", + "email": "aukoeh@gmail.com" + }, + "record": { + "CNAME": "947fd546-46f4-480c-b971-ca2b663c54d8.id.repl.co" + } +} diff --git a/domains/mdbesoain.json b/domains/mdbesoain.json new file mode 100644 index 000000000..350b116ba --- /dev/null +++ b/domains/mdbesoain.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mdbesoain", + "email": "mdbesoain@gmail.com" + }, + "record": { + "URL": "https://mdbesoain.cl" + } +} diff --git a/domains/mdk.json b/domains/mdk.json new file mode 100644 index 000000000..a3d3e99fb --- /dev/null +++ b/domains/mdk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MaskDuck", + "email": "it-is@too-obvious-that.maskduck.is-a.dev" + }, + "record": { + "CNAME": "edge.redirect.pizza" + } +} diff --git a/domains/medhanite.json b/domains/medhanite.json new file mode 100644 index 000000000..f1cb71f32 --- /dev/null +++ b/domains/medhanite.json @@ -0,0 +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" + } +} diff --git a/domains/meen.json b/domains/meen.json new file mode 100644 index 000000000..99bace5f3 --- /dev/null +++ b/domains/meen.json @@ -0,0 +1,11 @@ +{ + "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..627c66add --- /dev/null +++ b/domains/meenbeese.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "meenbeese", + "email": "meenbeese@tutanota.com" + }, + "record": { + "CNAME": "meenbeese.github.io" + } +} \ No newline at end of file diff --git a/domains/mega-lag.sx9.json b/domains/mega-lag.sx9.json new file mode 100644 index 000000000..49b3df232 --- /dev/null +++ b/domains/mega-lag.sx9.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SX-9", + "email": "satriakrach@gmail.com" + }, + + "record": { + "CNAME": "sx-9.github.io" + } +} diff --git a/domains/mega.json b/domains/mega.json new file mode 100644 index 000000000..acdc6b041 --- /dev/null +++ b/domains/mega.json @@ -0,0 +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" + } +} 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/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 new file mode 100644 index 000000000..e45e3bbb1 --- /dev/null +++ b/domains/meloun7.json @@ -0,0 +1,11 @@ +{ + "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/melwyn.json b/domains/melwyn.json index f1f0c9044..dbb3584d3 100644 --- a/domains/melwyn.json +++ b/domains/melwyn.json @@ -6,7 +6,6 @@ "email": "melwyn95@gmail.com" }, "record": { - "CNAME": "melwyn95.github.io", - "URL": "https://melwyn.is-a.dev" + "CNAME": "melwyn95.github.io" } } 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/mert.json b/domains/mert.json new file mode 100644 index 000000000..8541c92eb --- /dev/null +++ b/domains/mert.json @@ -0,0 +1,11 @@ +{ + "description": "Mert's personal developer website", + "repo": "https://github.com/mertcelik2196", + "owner": { + "username": "mertcelik2196", + "email": "mertcelik2196@gmail.com" + }, + "record": { + "URL": "https://mert.vercel.app" + } +} diff --git a/domains/mh4d.json b/domains/mh4d.json new file mode 100644 index 000000000..b39a07d6b --- /dev/null +++ b/domains/mh4d.json @@ -0,0 +1,10 @@ +{ + "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/micah.json b/domains/micah.json new file mode 100644 index 000000000..594d6f049 --- /dev/null +++ b/domains/micah.json @@ -0,0 +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" + } +} diff --git a/domains/michael.json b/domains/michael.json index 8e827e0ed..f21c733b0 100644 --- a/domains/michael.json +++ b/domains/michael.json @@ -2,12 +2,10 @@ "description": "Michael's portfolio website and blog", "repo": "https://github.com/michaelmano/michaelmano.github.io", "owner": { - "username": "michaelmano", - "email": "michael.mano26@gmail.com" + "username": "michaelmano", + "email": "michael.mano26@gmail.com" }, "record": { - "CNAME": "michaelmano.github.io", - "URL": "https://michael.is-a.dev" + "CNAME": "michaelmano.github.io" } - } - \ No newline at end of file +} diff --git a/domains/michaelbelete.json b/domains/michaelbelete.json new file mode 100644 index 000000000..2ae7099d6 --- /dev/null +++ b/domains/michaelbelete.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..531f78685 --- /dev/null +++ b/domains/micorksen.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..9e9a96f14 --- /dev/null +++ b/domains/miguel.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..1ecd45de5 --- /dev/null +++ b/domains/mihai.json @@ -0,0 +1,11 @@ +{ + "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/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/mike.json b/domains/mike.json index 7feea0794..adf1f3901 100644 --- a/domains/mike.json +++ b/domains/mike.json @@ -2,11 +2,10 @@ "description": "Mike's portfolio website and blog", "repo": "https://github.com/mdrobbins", "owner": { - "username": "mdrobbins", - "email": "mikedrobbins@gmail.com" + "username": "mdrobbins", + "email": "mikedrobbins@gmail.com" }, "record": { - "URL": "https://mikerobbins.me" + "URL": "https://mikerobbins.me" } - } - \ No newline at end of file +} diff --git a/domains/mikey.json b/domains/mikey.json new file mode 100644 index 000000000..7ad0a0a21 --- /dev/null +++ b/domains/mikey.json @@ -0,0 +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" + }, + "record": { + "CNAME": "isigebengu-mikey.github.io" + } +} diff --git a/domains/mikko.json b/domains/mikko.json new file mode 100644 index 000000000..01f20b660 --- /dev/null +++ b/domains/mikko.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..a313febee --- /dev/null +++ b/domains/milan.json @@ -0,0 +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" + } +} diff --git a/domains/milan090.json b/domains/milan090.json new file mode 100644 index 000000000..0706274d6 --- /dev/null +++ b/domains/milan090.json @@ -0,0 +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" + } +} diff --git a/domains/milcon-uptimer.json b/domains/milcon-uptimer.json new file mode 100644 index 000000000..8471985a7 --- /dev/null +++ b/domains/milcon-uptimer.json @@ -0,0 +1,10 @@ +{ + "description": "Uptimer site", + "owner": { + "username": "njanemmu", + "email": "aneenababu71901@gmail.com" + }, + "record": { + "CNAME": "ce061efe-4c98-41af-b793-2e0d4e4322a1.id.repl.co" + } +} 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/milocat.json b/domains/milocat.json new file mode 100644 index 000000000..d6084b3a7 --- /dev/null +++ b/domains/milocat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BigKitten", + "email": "", + "discord": "MiloCat#8198" + }, + "record": { + "CNAME": "MiloCat.repl.co" + } +} diff --git a/domains/mimic.json b/domains/mimic.json new file mode 100644 index 000000000..0c15b8a51 --- /dev/null +++ b/domains/mimic.json @@ -0,0 +1,11 @@ +{ + "description": "Mimic Services", + "repo": "https://github.com/mimicdotga", + "owner": { + "username": "mimicdotga", + "email": "hello@mimic.ga" + }, + "record": { + "CNAME": "mimicdotga.duckdns.org" + } +} diff --git a/domains/mineek.json b/domains/mineek.json new file mode 100644 index 000000000..0bb03ade5 --- /dev/null +++ b/domains/mineek.json @@ -0,0 +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" + } +} diff --git a/domains/minh2000.json b/domains/minh2000.json new file mode 100644 index 000000000..9921fa314 --- /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 new file mode 100644 index 000000000..aedba0f0e --- /dev/null +++ b/domains/minhh2792.json @@ -0,0 +1,12 @@ +{ + "description": "minhh2792's personal website", + "repo": "https://github.com/minhh2792/minhh2792.github.io", + "owner": { + "username": "minhh2792", + "email": "minhh2792.work@gmail.com", + "twitter": "minhh2792" + }, + "record": { + "CNAME": "minhh2792.github.io" + } +} diff --git a/domains/minhmmb.json b/domains/minhmmb.json new file mode 100644 index 000000000..3d516cb07 --- /dev/null +++ b/domains/minhmmb.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "minnb-bit", + "email": "mn9173024@gmail.com" + }, + "record": { + "CNAME": "minnb-bit.github.io" + } +} diff --git a/domains/minmit.json b/domains/minmit.json new file mode 100644 index 000000000..b09056efa --- /dev/null +++ b/domains/minmit.json @@ -0,0 +1,11 @@ +{ + "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..9921fa314 --- /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/mioscape.json b/domains/mioscape.json new file mode 100644 index 000000000..e61732c1b --- /dev/null +++ b/domains/mioscape.json @@ -0,0 +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" + } +} diff --git a/domains/miraclecherrypie.json b/domains/miraclecherrypie.json new file mode 100644 index 000000000..5c5167fe7 --- /dev/null +++ b/domains/miraclecherrypie.json @@ -0,0 +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.up.railway.app" + } +} diff --git a/domains/miro.json b/domains/miro.json new file mode 100644 index 000000000..51c29d65e --- /dev/null +++ b/domains/miro.json @@ -0,0 +1,11 @@ +{ + "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/mirror.json b/domains/mirror.json new file mode 100644 index 000000000..7de178ead --- /dev/null +++ b/domains/mirror.json @@ -0,0 +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" + } +} 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/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/miti99.json b/domains/miti99.json new file mode 100644 index 000000000..3cb9a1c05 --- /dev/null +++ b/domains/miti99.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tiennm99", + "email": "tiennm99@outlook.com" + }, + "record": { + "CNAME": "miti99.eu.org" + } +} diff --git a/domains/mizu.json b/domains/mizu.json new file mode 100644 index 000000000..2a4dd4913 --- /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": "Mizu#2203" + }, + "record": { + "CNAME": "miyagawamizu.github.io" + } +} diff --git a/domains/mj1532.json b/domains/mj1532.json new file mode 100644 index 000000000..93b742253 --- /dev/null +++ b/domains/mj1532.json @@ -0,0 +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" + } +} diff --git a/domains/mk.json b/domains/mk.json new file mode 100644 index 000000000..1fa9e2009 --- /dev/null +++ b/domains/mk.json @@ -0,0 +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" + } +} diff --git a/domains/mkk.json b/domains/mkk.json new file mode 100644 index 000000000..00da4f801 --- /dev/null +++ b/domains/mkk.json @@ -0,0 +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" + } +} diff --git a/domains/mnsrulz.json b/domains/mnsrulz.json new file mode 100644 index 000000000..91fb42f88 --- /dev/null +++ b/domains/mnsrulz.json @@ -0,0 +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" + } +} 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/moe.json b/domains/moe.json new file mode 100644 index 000000000..aeb62b6da --- /dev/null +++ b/domains/moe.json @@ -0,0 +1,11 @@ +{ + "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" + } +} diff --git a/domains/mofuru.json b/domains/mofuru.json new file mode 100644 index 000000000..0b7398ba9 --- /dev/null +++ b/domains/mofuru.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..514117452 --- /dev/null +++ b/domains/moha.json @@ -0,0 +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" + } +} 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/mohannadk28.json b/domains/mohannadk28.json new file mode 100644 index 000000000..654830805 --- /dev/null +++ b/domains/mohannadk28.json @@ -0,0 +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" + } +} diff --git a/domains/mohdsohel.json b/domains/mohdsohel.json new file mode 100644 index 000000000..10fda800f --- /dev/null +++ b/domains/mohdsohel.json @@ -0,0 +1,12 @@ +{ + "description": "My personal Portfolio website", + "repo": "https://github.com/realsohel/realsohel.github.io", + "owner": { + "username": "realsohel", + "email": "salmanisohail26@gmail.com", + "twitter": "real_sohel_" + }, + "record": { + "CNAME": "realsohel.github.io" + } +} diff --git a/domains/molai.json b/domains/molai.json new file mode 100644 index 000000000..1f0cc9a86 --- /dev/null +++ b/domains/molai.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/molai777.json b/domains/molai777.json new file mode 100644 index 000000000..2bda5d825 --- /dev/null +++ b/domains/molai777.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mtgsquad", + "email": "mahir@molai.dev" + }, + "record": { + "URL": "https://molai.dev" + } + } + \ No newline at end of file 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 new file mode 100644 index 000000000..f551eb712 --- /dev/null +++ b/domains/moni.json @@ -0,0 +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" + } +} diff --git a/domains/monuk7735.json b/domains/monuk7735.json new file mode 100644 index 000000000..870f472e4 --- /dev/null +++ b/domains/monuk7735.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "monuk7735", + "email": "monuk7735@gmail.com" + }, + + "record": { + "CNAME": "monuk7735.roundraven.com" + } +} diff --git a/domains/moon.json b/domains/moon.json new file mode 100644 index 000000000..3b88b97d0 --- /dev/null +++ b/domains/moon.json @@ -0,0 +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" + } +} diff --git a/domains/moonboy.json b/domains/moonboy.json new file mode 100644 index 000000000..d421d1257 --- /dev/null +++ b/domains/moonboy.json @@ -0,0 +1,10 @@ +{ + "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/mopamo.json b/domains/mopamo.json new file mode 100644 index 000000000..0d5605e69 --- /dev/null +++ b/domains/mopamo.json @@ -0,0 +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" + } +} diff --git a/domains/moritz.json b/domains/moritz.json new file mode 100644 index 000000000..7a40944bc --- /dev/null +++ b/domains/moritz.json @@ -0,0 +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" + } +} diff --git a/domains/morning3tar.json b/domains/morning3tar.json new file mode 100644 index 000000000..b5938d17e --- /dev/null +++ b/domains/morning3tar.json @@ -0,0 +1,11 @@ +{ + "description": "Morning3tar Personal Website", + "owner": { + "username": "morning3tar", + "email": "", + "discord": "Morning3tar#7388" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/mosa.json b/domains/mosa.json new file mode 100644 index 000000000..80c980b39 --- /dev/null +++ b/domains/mosa.json @@ -0,0 +1,10 @@ +{ + "description": "For my portfolio website made by using HTML + CSS and JS", + "owner": { + "username": "mosageneral", + "email": "mosageneral@gmail.com" + }, + "record": { + "A": ["130.162.168.84"] + } +} diff --git a/domains/mosaab.json b/domains/mosaab.json new file mode 100644 index 000000000..c46686309 --- /dev/null +++ b/domains/mosaab.json @@ -0,0 +1,21 @@ +{ + "description": "Personal website of MosaabGKA", + "repo": "https://github.com/MosaabGKA/MosaabGKA.github.io/", + "owner": { + "username": "MosaabGKA", + "email": "mosaabgka@outlook.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/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/motion42.json b/domains/motion42.json new file mode 100644 index 000000000..67a1410f6 --- /dev/null +++ b/domains/motion42.json @@ -0,0 +1,11 @@ +{ + "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/mpm.json b/domains/mpm.json new file mode 100644 index 000000000..701335d47 --- /dev/null +++ b/domains/mpm.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..0a4d98056 --- /dev/null +++ b/domains/mpy.json @@ -0,0 +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" + } +} diff --git a/domains/mqhirr.json b/domains/mqhirr.json new file mode 100644 index 000000000..ae6e8ae4c --- /dev/null +++ b/domains/mqhirr.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "mqhirr", + "email": "", + "discord": "mqhirr" + }, + + "repo": "https://github.com/mqhirr/webnn_live", + "record": { + "CNAME": "mqhirr.github.io" + } +} diff --git a/domains/mqrshie.json b/domains/mqrshie.json new file mode 100644 index 000000000..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/mrasif.json b/domains/mrasif.json new file mode 100644 index 000000000..b797cb61e --- /dev/null +++ b/domains/mrasif.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..9daa382d9 --- /dev/null +++ b/domains/mrcl.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "6lb", + "email": "6lb@github.io" + }, + "record": { + "CNAME": "6lb.github.io" + } +} diff --git a/domains/mrcorpz.json b/domains/mrcorpz.json new file mode 100644 index 000000000..c24ff0192 --- /dev/null +++ b/domains/mrcorpz.json @@ -0,0 +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" + } +} 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/mricecream.json b/domains/mricecream.json new file mode 100644 index 000000000..3fc52d492 --- /dev/null +++ b/domains/mricecream.json @@ -0,0 +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" + } +} diff --git a/domains/mrinjamul.json b/domains/mrinjamul.json new file mode 100644 index 000000000..7a935a65b --- /dev/null +++ b/domains/mrinjamul.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..4efe17db5 --- /dev/null +++ b/domains/mrinmoy.json @@ -0,0 +1,13 @@ +{ + "description": "Domain for my portofolio website", + "owner": { + "username": "MrinmoyHaloi", + "email": "", + "twitter": "_mrinmoy_haloi_", + "discord": "Mrinmoy#5878" + }, + + "record": { + "CNAME": "mrinmoyhaloi.github.io" + } +} diff --git a/domains/mrj.json b/domains/mrj.json new file mode 100644 index 000000000..a4d0a1fee --- /dev/null +++ b/domains/mrj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "MRJ-Badshah", + "email": "illegalhacker2.0@gmail.com" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/mrkos.json b/domains/mrkos.json new file mode 100644 index 000000000..789ccd231 --- /dev/null +++ b/domains/mrkos.json @@ -0,0 +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" + } +} diff --git a/domains/mrlol.json b/domains/mrlol.json new file mode 100644 index 000000000..11f868f51 --- /dev/null +++ b/domains/mrlol.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..0873dc77f --- /dev/null +++ b/domains/mrnover.json @@ -0,0 +1,12 @@ +{ + "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..8462c7010 --- /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/mrshoe.json b/domains/mrshoe.json new file mode 100644 index 000000000..f7d3aa3ee --- /dev/null +++ b/domains/mrshoe.json @@ -0,0 +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" + } +} diff --git a/domains/mrthundergod.json b/domains/mrthundergod.json index a7d5f9b20..41cec5022 100644 --- a/domains/mrthundergod.json +++ b/domains/mrthundergod.json @@ -1,12 +1,11 @@ { "description": "The ThunderDome", - "repo": "https://github.com/mrthundergod/", + "repo": "https://github.com/mrthundergod", "owner": { "username": "mrthundergod", "email": "mrthundergod@gmail.com" }, "record": { - "CNAME": "mrthundergod.github.io", - "URL": "https://mrthundergod.is-a.dev" + "CNAME": "mrthundergod.github.io" } } 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/mryusuf.json b/domains/mryusuf.json new file mode 100644 index 000000000..cc3397c70 --- /dev/null +++ b/domains/mryusuf.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "yufuss", + "email": "yusufgocer40@hotmail.com" + }, + + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/msg.json b/domains/msg.json new file mode 100644 index 000000000..9dfbc02e9 --- /dev/null +++ b/domains/msg.json @@ -0,0 +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" + } +} diff --git a/domains/mtestsite.json b/domains/mtestsite.json new file mode 100644 index 000000000..f5fd02654 --- /dev/null +++ b/domains/mtestsite.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "mobin-mazahery-school", + "email": "mobin.mazahery85@gmail.com" + }, + "record": { + "CNAME": "m-proxy.cf" + } +} diff --git a/domains/mthia.json b/domains/mthia.json new file mode 100644 index 000000000..52a8bd50c --- /dev/null +++ b/domains/mthia.json @@ -0,0 +1,11 @@ +{ + "description": "mthia page", + "owner": { + "username": "Mthia727", + "email": "mthia@xdd.moe", + "discord": "443794213524733962" + }, + "record": { + "CNAME": "mthia.xdd.moe" + } +} diff --git a/domains/muchenski.json b/domains/muchenski.json new file mode 100644 index 000000000..9906b40aa --- /dev/null +++ b/domains/muchenski.json @@ -0,0 +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" + } +} diff --git a/domains/mudrika.json b/domains/mudrika.json new file mode 100644 index 000000000..1c41803d4 --- /dev/null +++ b/domains/mudrika.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aktgram", + "email": "aktgram4me@gmail.com" + }, + + "record": { + "A": ["16.16.156.1"] + } +} diff --git a/domains/muff.json b/domains/muff.json new file mode 100644 index 000000000..8df5519e1 --- /dev/null +++ b/domains/muff.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lifeless-muffin", + "email": "mansoorroeen71@gmail.com" + }, + + "record": { + "CNAME": "lifeless-muffin.github.io" + } +} 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 new file mode 100644 index 000000000..37310e42f --- /dev/null +++ b/domains/muheko.json @@ -0,0 +1,12 @@ +{ + "description": "My Personal Landing Page!", + "repo": "https://github.com/MuhekoNikolas/p3", + "owner": { + "username": "MuhekoNikolas", + "email": "13nikolusmuheko@gmail.com", + "twitter": "MuhekoNikolas" + }, + "record": { + "CNAME": "muhekonikolas.github.io" + } +} 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..728311da0 --- /dev/null +++ b/domains/mukeshkumarcharak.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "hakxcore", + "email": "mukeshkumarcharak@gmail.com" + }, + + "record": { + "A": ["185.199.108.153"] + } +} 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 new file mode 100644 index 000000000..3d5d6064a --- /dev/null +++ b/domains/murodovazizmurod.json @@ -0,0 +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" + } +} diff --git a/domains/music-old.mxnticek.json b/domains/music-old.mxnticek.json new file mode 100644 index 000000000..a8fe555e1 --- /dev/null +++ b/domains/music-old.mxnticek.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for my old music bot", + "owner": { + "username": "VlastikYoutubeKo", + "email": "plainrock@seznam.cz" + }, + "record": { + "A": ["129.151.254.58"] + } +} diff --git a/domains/music.json b/domains/music.json new file mode 100644 index 000000000..b22fe46a4 --- /dev/null +++ b/domains/music.json @@ -0,0 +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" + } +} diff --git a/domains/music.mxnticek.json b/domains/music.mxnticek.json new file mode 100644 index 000000000..ef1716109 --- /dev/null +++ b/domains/music.mxnticek.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for my music bot", + "owner": { + "username": "VlastikYoutubeKo", + "email": "plainrock@seznam.cz" + }, + "record": { + "A": ["129.151.254.58"] + } +} diff --git a/domains/mustafa.json b/domains/mustafa.json new file mode 100644 index 000000000..f827c1377 --- /dev/null +++ b/domains/mustafa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Cuurle", + "email": "cuurleee@gmail.com" + }, + "record": { + "CNAME": "glitch.edgeapp.net" + } +} diff --git a/domains/muzammil.json b/domains/muzammil.json new file mode 100644 index 000000000..57a87927d --- /dev/null +++ b/domains/muzammil.json @@ -0,0 +1,10 @@ +{ + "description": "Muzammil's Portfolio Website", + "owner": { + "username": "taqnar", + "email": "muzammilthottathil.official@gmail.com" + }, + "record": { + "CNAME": "taqnar.github.io" + } +} diff --git a/domains/mverhees.json b/domains/mverhees.json deleted file mode 100644 index 19b6d3678..000000000 --- a/domains/mverhees.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "description": "Mike's website", - "repo": "https://github.com/MikeVerhees/MikeVerhees.github.io", - "owner": { - "username": "MikeVerhees", - "email": "mikeverhees95@gmail.com" - }, - "record": { - "CNAME": "MikeVerhees.github.io", - "URL": "https://mverhees.is-a.dev" - } -} diff --git a/domains/mxnticek.json b/domains/mxnticek.json new file mode 100644 index 000000000..a62b4e5f1 --- /dev/null +++ b/domains/mxnticek.json @@ -0,0 +1,11 @@ +{ + "description": "no", + "repo": "https://github.com/VlastikYoutubeKo/vlastikyoutubeko.github.io", + "owner": { + "username": " VlastikYoutubeKo", + "email": "mxnticek@proton.me" + }, + "record": { + "CNAME": "vlastikyoutubeko.github.io" + } +} diff --git a/domains/mxnuchim.json b/domains/mxnuchim.json new file mode 100644 index 000000000..b430da48b --- /dev/null +++ b/domains/mxnuchim.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mxnuchim", + "email": "manuchimoliver779@gmail.com" + }, + + "record": { + "URL": "https://manuchimoliver.vercel.app" + } +} diff --git a/domains/mysteriousk.json b/domains/mysteriousk.json new file mode 100644 index 000000000..a4e3206f9 --- /dev/null +++ b/domains/mysteriousk.json @@ -0,0 +1,11 @@ +{ + "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/mythsman.json b/domains/mythsman.json new file mode 100644 index 000000000..62354fbfd --- /dev/null +++ b/domains/mythsman.json @@ -0,0 +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" + } +} diff --git a/domains/myx.json b/domains/myx.json new file mode 100644 index 000000000..298af65b2 --- /dev/null +++ b/domains/myx.json @@ -0,0 +1,12 @@ +{ + "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/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/n1ka.json b/domains/n1ka.json new file mode 100644 index 000000000..062014929 --- /dev/null +++ b/domains/n1ka.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "N1kaCode", + "email": "jeanlukashoffmann@gmail.com" + }, + "record": { + "URL": "https://beacons.ai/n1kacode" + } +} 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 new file mode 100644 index 000000000..489db2848 --- /dev/null +++ b/domains/nagarajgond.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..28d66d7bc --- /dev/null +++ b/domains/nalin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Nalin-2005", + "email": "nalinstudios@gmail.com", + "instagram": "nalin_2005" + }, + "record": { + "CNAME": "nalin-2005.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 new file mode 100644 index 000000000..6fdb7fdf4 --- /dev/null +++ b/domains/naman.json @@ -0,0 +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" + } +} diff --git a/domains/namishpande.json b/domains/namishpande.json new file mode 100644 index 000000000..3c2962721 --- /dev/null +++ b/domains/namishpande.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "chadcat7", + "email": "namishpande2007@gmail.com" + }, + + "record": { + "CNAME": "chadcat7.github.io" + } +} diff --git a/domains/nan.json b/domains/nan.json new file mode 100644 index 000000000..e19bc3c48 --- /dev/null +++ b/domains/nan.json @@ -0,0 +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" + } +} diff --git a/domains/nand.json b/domains/nand.json new file mode 100644 index 000000000..ba52b1895 --- /dev/null +++ b/domains/nand.json @@ -0,0 +1,10 @@ +{ + "description": "Nand's web", + "owner": { + "username": "nandkk05", + "email": "nandkk07@gmail.com" + }, + "record": { + "CNAME": "nandkk05.github.io" + } +} 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..eb747b6c6 --- /dev/null +++ b/domains/narayana.json @@ -0,0 +1,10 @@ +{ + "description": "I am going to use it to test out my creations and share with my friends. As a student, I can't get actual domains, so I will be using this.", + "owner": { + "username": "nvnarayna", + "email": "nemaninarayna@gmail.com" + }, + "record": { + "CNAME": "proxy.divahosting.net" + } +} diff --git a/domains/nardcrat.json b/domains/nardcrat.json new file mode 100644 index 000000000..3d922a25d --- /dev/null +++ b/domains/nardcrat.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..2ed73eb05 --- /dev/null +++ b/domains/narender.json @@ -0,0 +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" + } +} diff --git a/domains/nat.json b/domains/nat.json new file mode 100644 index 000000000..1889d6813 --- /dev/null +++ b/domains/nat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Natasquare", + "discord": "696698254770831421", + "email": "natasquarelol@gmail.com" + }, + "record": { + "CNAME": "natasquare.github.io" + } +} diff --git a/domains/natalievu.json b/domains/natalievu.json new file mode 100644 index 000000000..1fd3f1c03 --- /dev/null +++ b/domains/natalievu.json @@ -0,0 +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" + } +} diff --git a/domains/nathan.json b/domains/nathan.json new file mode 100644 index 000000000..7fed14fdb --- /dev/null +++ b/domains/nathan.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/MagedNuggets/MagedNuggets.github.io", + "owner": { + "username": "MagedNuggets", + "email": "mastertofu12345@gmail.com" + }, + "record": { + "CNAME": "MagedNuggets.github.io" + } +} diff --git a/domains/nationwide.json b/domains/nationwide.json new file mode 100644 index 000000000..04a20a529 --- /dev/null +++ b/domains/nationwide.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "A": ["194.5.64.173"] + } +} diff --git a/domains/natya.json b/domains/natya.json new file mode 100644 index 000000000..4ff645d01 --- /dev/null +++ b/domains/natya.json @@ -0,0 +1,12 @@ +{ + "description": "My Portfolio Website", + "repo": "https://github.com/studiousgamer/studiousgamer.github.io", + "owner": { + "username": "studiousgamer", + "email": "natyavidhanbiswas10@gmail.com", + "twitter": "GamerStudious" + }, + "record": { + "CNAME": "studiousgamer.github.io" + } +} diff --git a/domains/naveen.json b/domains/naveen.json new file mode 100644 index 000000000..aa1bd9797 --- /dev/null +++ b/domains/naveen.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "naveen8384", + "email": "naveen.nani321@gmail.com" + }, + + "record": { + "URL": "https://naveenkumar.org" + } +} diff --git a/domains/naveenxd.json b/domains/naveenxd.json new file mode 100644 index 000000000..00c05a2d4 --- /dev/null +++ b/domains/naveenxd.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..82f0ea522 --- /dev/null +++ b/domains/nayan.json @@ -0,0 +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" + } +} diff --git a/domains/nebula.json b/domains/nebula.json new file mode 100644 index 000000000..152d9fca5 --- /dev/null +++ b/domains/nebula.json @@ -0,0 +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" + } +} diff --git a/domains/neelsani.json b/domains/neelsani.json new file mode 100644 index 000000000..011aa5eaa --- /dev/null +++ b/domains/neelsani.json @@ -0,0 +1,12 @@ +{ + "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/neeyl.json b/domains/neeyl.json new file mode 100644 index 000000000..003fa1bd2 --- /dev/null +++ b/domains/neeyl.json @@ -0,0 +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" + } +} diff --git a/domains/nego.json b/domains/nego.json new file mode 100644 index 000000000..6572ff14f --- /dev/null +++ b/domains/nego.json @@ -0,0 +1,11 @@ +{ + "description": "Nego personal developer website", + "repo": "https://github.com/kardespro/kardespro.github.io", + "owner": { + "username": "nego", + "email": "devnego@gmail.com" + }, + "record": { + "CNAME": "negodev.tk" + } +} diff --git a/domains/nekaoumike.json b/domains/nekaoumike.json 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..07025aa32 --- /dev/null +++ b/domains/neki.json @@ -0,0 +1,10 @@ +{ + "description": "Pagina de Santiago", + "owner": { + "username": "PinkLittleKitty", + "email": "santyfisela@gmail.com" + }, + "record": { + "CNAME": "PinkLittleKitty.github.io" + } +} diff --git a/domains/neko7sora.json b/domains/neko7sora.json new file mode 100644 index 000000000..d5d6f9a69 --- /dev/null +++ b/domains/neko7sora.json @@ -0,0 +1,12 @@ +{ + "description": "Neko7sora personal website", + "owner": { + "username": "Neko7sora", + "email": "", + "twitter": "Neko7sora", + "keybase": "neko7sora" + }, + "record": { + "URL": "https://neko7sora.github.io" + } +} diff --git a/domains/nekomiyasorato.json b/domains/nekomiyasorato.json new file mode 100644 index 000000000..f2b079322 --- /dev/null +++ b/domains/nekomiyasorato.json @@ -0,0 +1,12 @@ +{ + "description": "personal website", + "owner": { + "username": "Neko7sora", + "email": "", + "twitter": "Neko7sora", + "keybase": "neko7sora" + }, + "record": { + "URL": "https://neko7sora.github.io" + } +} diff --git a/domains/nengsriaryati.json b/domains/nengsriaryati.json new file mode 100644 index 000000000..132f7ed18 --- /dev/null +++ b/domains/nengsriaryati.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Hillzacky", + "email": "Hilm4nsyah@gmail.com" + }, + "record": { + "CNAME": "nengsriaryati.github.io" + } + } + \ No newline at end of file diff --git a/domains/neon.json b/domains/neon.json new file mode 100644 index 000000000..808dff17d --- /dev/null +++ b/domains/neon.json @@ -0,0 +1,23 @@ +{ + "description": "Domain for my portfolio website", + "repo": "https://github.com/GoodBoyNeon/goodboyneon.github.io", + "owner": { + "username": "GoodBoyNeon", + "discord": "GoodBoyNeon#2424", + "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/neranjana.json b/domains/neranjana.json new file mode 100644 index 000000000..f8a4943ce --- /dev/null +++ b/domains/neranjana.json @@ -0,0 +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" + } +} diff --git a/domains/nerd.json b/domains/nerd.json new file mode 100644 index 000000000..ccf258335 --- /dev/null +++ b/domains/nerd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "n3rd3x3", + "email": "me@n3rd3x3.xyz" + }, + "record": { + "URL": "https://n3rd3x3.xyz" + } +} diff --git a/domains/nes.json b/domains/nes.json new file mode 100644 index 000000000..0b89c988f --- /dev/null +++ b/domains/nes.json @@ -0,0 +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" + } +} diff --git a/domains/neslinesli93.json b/domains/neslinesli93.json new file mode 100644 index 000000000..75e9cb215 --- /dev/null +++ b/domains/neslinesli93.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "neslinesli93", + "email": "p.tommy93@gmail.com" + }, + "record": { + "CNAME": "tommasopifferi.com" + } +} diff --git a/domains/netf.json b/domains/netf.json new file mode 100644 index 000000000..56d7e44c5 --- /dev/null +++ b/domains/netf.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "netflexs", + "email": "" + }, + "record": { + "CNAME": "c4f04559-5bd7-49db-ae04-93e53cd8abc2.id.repl.co" + } +} diff --git a/domains/nettles.json b/domains/nettles.json new file mode 100644 index 000000000..87a8f3bb8 --- /dev/null +++ b/domains/nettles.json @@ -0,0 +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" + } +} 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/neven.json b/domains/neven.json new file mode 100644 index 000000000..59c4b67a8 --- /dev/null +++ b/domains/neven.json @@ -0,0 +1,12 @@ +{ + "repo": "https://github.com/nevenxr/nevenxr.github.io", + "description": "Personal Website", + "owner": { + "username": "nevenxr", + "email": "", + "discord": "Neven#3985" + }, + "record": { + "CNAME": "nevenxr.github.io" + } +} 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/nextcloud.banana.json b/domains/nextcloud.banana.json new file mode 100644 index 000000000..5bd3d9aa5 --- /dev/null +++ b/domains/nextcloud.banana.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "BANanaD3V", + "email": "banana@bananadev.ml" + }, + + "record": { + "A": ["95.165.13.215"] + } +} diff --git a/domains/nextcloud.vi0leta.json b/domains/nextcloud.vi0leta.json new file mode 100644 index 000000000..eed253c13 --- /dev/null +++ b/domains/nextcloud.vi0leta.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vi0letadev", + "email": "vi0leta@riseup.net" + }, + + "record": { + "A": ["143.47.191.152"] + } +} diff --git a/domains/nexus.json b/domains/nexus.json new file mode 100644 index 000000000..6d2bd955b --- /dev/null +++ b/domains/nexus.json @@ -0,0 +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" + } +} diff --git a/domains/nhat.json b/domains/nhat.json new file mode 100644 index 000000000..8710d5fdc --- /dev/null +++ b/domains/nhat.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ductoanvo", + "email": "toan.ducvo@icloud.com" + }, + "record": { + "URL": "https://www.facebook.com/profile.php?id=100016726364383" + } +} diff --git a/domains/nhemgomia.json b/domains/nhemgomia.json new file mode 100644 index 000000000..b052188f0 --- /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 new file mode 100644 index 000000000..008aef2f8 --- /dev/null +++ b/domains/nicatdcw.json @@ -0,0 +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" + } +} diff --git a/domains/nicesapien.json b/domains/nicesapien.json new file mode 100644 index 000000000..56dc17b04 --- /dev/null +++ b/domains/nicesapien.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..df331ea5c --- /dev/null +++ b/domains/nicholas.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..695874d3a --- /dev/null +++ b/domains/nick.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "nimolas", + "email": "nick.o@microfnclan.com" + }, + "record": { + "CNAME": "microfnclan.com" + } +} diff --git a/domains/nico.json b/domains/nico.json new file mode 100644 index 000000000..df6c81b40 --- /dev/null +++ b/domains/nico.json @@ -0,0 +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" + } +} diff --git a/domains/nicol.json b/domains/nicol.json new file mode 100644 index 000000000..b81ec5bd6 --- /dev/null +++ b/domains/nicol.json @@ -0,0 +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" + } +} diff --git a/domains/nidhis-patel.json b/domains/nidhis-patel.json new file mode 100644 index 000000000..f384a7ea0 --- /dev/null +++ b/domains/nidhis-patel.json @@ -0,0 +1,11 @@ +{ + "description": "This is a personal", + "repo": "https://github.com/nidhis-patel/nidhis-patel.github.io", + "owner": { + "username": "nidhis-patel", + "email": "" + }, + "record": { + "URL": "https://nidhis-patel.github.io" + } +} diff --git a/domains/niemiets.json b/domains/niemiets.json new file mode 100644 index 000000000..fc95b5dc5 --- /dev/null +++ b/domains/niemiets.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Niemiets", + "email": "niemiec123123123@gmail.com", + "discord": "397074265708691456" + }, + + "record": { + "CNAME": "175c065b-9338-44cf-a6ed-4cc521f9ec5c.id.repl.co" + } +} diff --git a/domains/night.json b/domains/night.json new file mode 100644 index 000000000..1c03cd80c --- /dev/null +++ b/domains/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": { + "CNAME": "night0721.github.io" + } +} 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/nikeedev.json b/domains/nikeedev.json new file mode 100644 index 000000000..e47111189 --- /dev/null +++ b/domains/nikeedev.json @@ -0,0 +1,12 @@ +{ + "description": "Profile page for nikeedev", + "repo": "https://github.com/nikeedev/nikeedev.github.io", + "owner": { + "username": "nikeedev", + "email": "nikita.gon.dev@gmail.com", + "twitter": "nikeedev" + }, + "record": { + "CNAME": "nikeedev.github.io" + } +} diff --git a/domains/nikhil.json b/domains/nikhil.json new file mode 100644 index 000000000..57b51e245 --- /dev/null +++ b/domains/nikhil.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..e7ffb0e40 --- /dev/null +++ b/domains/niklas.json @@ -0,0 +1,11 @@ +{ + "description": "I'm a dev from austria.", + "owner": { + "username": "NiHaiden", + "email": "niklas@haiden.ch", + "twitter": "niklashdev" + }, + "record": { + "URL": "https://nhaiden.dev" + } +} diff --git a/domains/nikolas.json b/domains/nikolas.json new file mode 100644 index 000000000..891f60c2b --- /dev/null +++ b/domains/nikolas.json @@ -0,0 +1,12 @@ +{ + "description": "My Personal Landing Page!", + "repo": "https://github.com/MuhekoNikolas/p2", + "owner": { + "username": "MuhekoNikolas", + "email": "13nikolusmuheko@gmail.com", + "twitter": "MuhekoNikolas" + }, + "record": { + "CNAME": "muhekonikolas.github.io" + } +} diff --git a/domains/nikolus.json b/domains/nikolus.json new file mode 100644 index 000000000..9f89f9e79 --- /dev/null +++ b/domains/nikolus.json @@ -0,0 +1,12 @@ +{ + "description": "My Personal Landing Page!", + "repo": "https://github.com/MuhekoNikolas/MuhekoNikolas.github.io", + "owner": { + "username": "MuhekoNikolas", + "email": "13nikolusmuheko@gmail.com", + "twitter": "MuhekoNikolas" + }, + "record": { + "CNAME": "muhekonikolas.github.io" + } +} 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/nils.json b/domains/nils.json new file mode 100644 index 000000000..2590f83e5 --- /dev/null +++ b/domains/nils.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..f6750611f --- /dev/null +++ b/domains/nimish.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..0c94b85f0 --- /dev/null +++ b/domains/nine.json @@ -0,0 +1,11 @@ +{ + "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": "hcceg285.up.railway.app" + }, + "owner": { + "username": "NineLEL", + "email": "notninelel@gmail.com" + } +} diff --git a/domains/ninjaasmoke.json b/domains/ninjaasmoke.json new file mode 100644 index 000000000..562955316 --- /dev/null +++ b/domains/ninjaasmoke.json @@ -0,0 +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" + } +} 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..23ab8b52f --- /dev/null +++ b/domains/nino.json @@ -0,0 +1,13 @@ +{ + "description": "TokisakiNinoVn", + "repo": "https://github.com/TokisakiNinoVn/TokisakiNinoVn.github.io", + "owner": { + "username": "TokisakiNinoVn", + "email": "trieuduytancbg@gmail.com", + "twitter": "_tokisaki_nino", + "discord": "tokisakinino" + }, + "record": { + "CNAME": "TokisakiNinoVn.github.io" + } +} diff --git a/domains/nipul-bhogayat.json b/domains/nipul-bhogayat.json new file mode 100644 index 000000000..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/nisarga.json b/domains/nisarga.json new file mode 100644 index 000000000..8da288e74 --- /dev/null +++ b/domains/nisarga.json @@ -0,0 +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" + } +} diff --git a/domains/nischay.json b/domains/nischay.json new file mode 100644 index 000000000..0c4e67f6c --- /dev/null +++ b/domains/nischay.json @@ -0,0 +1,21 @@ +{ + "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/nishant.json b/domains/nishant.json new file mode 100644 index 000000000..53080c6a7 --- /dev/null +++ b/domains/nishant.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..7e6e954dd --- /dev/null +++ b/domains/nishin.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..4c4e922db --- /dev/null +++ b/domains/nitesh.json @@ -0,0 +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" + } +} diff --git a/domains/njfamirm.json b/domains/njfamirm.json new file mode 100644 index 000000000..a54cc4233 --- /dev/null +++ b/domains/njfamirm.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "njfamirm", + "email": "njfamirm@gmail.com" + }, + "repo": "https://github.com/njfamirm/njfamirm.ir", + "record": { + "CNAME": "njfamirm.ir" + } +} diff --git a/domains/noahgao.json b/domains/noahgao.json new file mode 100644 index 000000000..d6ebd486d --- /dev/null +++ b/domains/noahgao.json @@ -0,0 +1,10 @@ +{ + "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/node-appwrite.json b/domains/node-appwrite.json new file mode 100644 index 000000000..99f4be133 --- /dev/null +++ b/domains/node-appwrite.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..a9f258d41 --- /dev/null +++ b/domains/node.json @@ -0,0 +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" + } +} diff --git a/domains/nodirbek.json b/domains/nodirbek.json new file mode 100644 index 000000000..72d8d0c6e --- /dev/null +++ b/domains/nodirbek.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Piratebay298", + "email": "piratebay298@gmail.com" + }, + + "record": { + "CNAME": "nodirbek.42web.io" + } +} diff --git a/domains/noel.json b/domains/noel.json new file mode 100644 index 000000000..0974b3373 --- /dev/null +++ b/domains/noel.json @@ -0,0 +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" + } +} diff --git a/domains/noir.json b/domains/noir.json new file mode 100644 index 000000000..ad7497b74 --- /dev/null +++ b/domains/noir.json @@ -0,0 +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" + } +} diff --git a/domains/noma.json b/domains/noma.json new file mode 100644 index 000000000..980681959 --- /dev/null +++ b/domains/noma.json @@ -0,0 +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" + } +} diff --git a/domains/noob.json b/domains/noob.json new file mode 100644 index 000000000..d8d23a1f2 --- /dev/null +++ b/domains/noob.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "KeIrNeGn", + "email": "terminatorx5e@gmail.com", + "discord": "499592235772280842" + }, + + "record": { + "CNAME": "keirnegn.dev" + } +} diff --git a/domains/nooz.json b/domains/nooz.json new file mode 100644 index 000000000..9caa10ce7 --- /dev/null +++ b/domains/nooz.json @@ -0,0 +1,19 @@ +{ + "description": "Personal portfolio for nooz", + "repo": "https://github.com/NoozSBC/portfolio", + "owner": { + "username": "NoozSBC", + "email": "zhengm58@gmail.com", + "discord": "Nooz#0816" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/nopply.json b/domains/nopply.json new file mode 100644 index 000000000..b33237863 --- /dev/null +++ b/domains/nopply.json @@ -0,0 +1,10 @@ +{ + "description": "Nopply is-a.dev", + "owner": { + "username": "kornls", + "email": "larryst.korn@gmail.com" + }, + "record": { + "CNAME": "nopply.carrd.co" + } +} diff --git a/domains/noraa.json b/domains/noraa.json new file mode 100644 index 000000000..5a7d1743c --- /dev/null +++ b/domains/noraa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Noraa08", + "email": "antoteje2004@gmail.com" + }, + "record": { + "CNAME": "595a8166-a27b-43e4-848e-da1ce6bcd3f6.id.repl.co" + } +} diff --git a/domains/not-a-nerd.json b/domains/not-a-nerd.json new file mode 100644 index 000000000..d5d934fd6 --- /dev/null +++ b/domains/not-a-nerd.json @@ -0,0 +1,11 @@ +{ + "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..421f4674b --- /dev/null +++ b/domains/not-ethan.json @@ -0,0 +1,12 @@ +{ + "description": "Ethan's website", + "repo": "https://github.com/0x3st/0x3st.github.io", + "owner": { + "username": "not-a-ethan", + "email": "", + "discord": "not_ethan." + }, + "record": { + "CNAME": "not-a-ethan.github.io" + } +} \ No newline at end of file diff --git a/domains/notaperson535.json b/domains/notaperson535.json new file mode 100644 index 000000000..185dcaf36 --- /dev/null +++ b/domains/notaperson535.json @@ -0,0 +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" + } +} diff --git a/domains/notarya.json b/domains/notarya.json new file mode 100644 index 000000000..13e403f82 --- /dev/null +++ b/domains/notarya.json @@ -0,0 +1,11 @@ +{ + "description": "NotArya Website", + "repo": "https://github.com/NotAryaaa/notaryaaa.github.io", + "owner": { + "username": "notaryaaa", + "email": "abiix.messanger@gmail.com" + }, + "record": { + "CNAME": "notarya.github.io" + } +} diff --git a/domains/notaussie.json b/domains/notaussie.json new file mode 100644 index 000000000..dc3011272 --- /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 new file mode 100644 index 000000000..84dac91c2 --- /dev/null +++ b/domains/notcoded.json @@ -0,0 +1,13 @@ +{ + "description": "use is-a.dev domain", + "repo": "https://github.com/not-coded/not-coded.github.io", + "owner": { + "username": "not-coded", + "email": "", + "discord": "Code#9844", + "discordUserID": "620662953347121163" + }, + "record": { + "CNAME": "not-coded.github.io" + } +} diff --git a/domains/notedwin.json b/domains/notedwin.json new file mode 100644 index 000000000..0c5d29918 --- /dev/null +++ b/domains/notedwin.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..d2415cdde --- /dev/null +++ b/domains/notefct.json @@ -0,0 +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" + } +} diff --git a/domains/notgoogle.json b/domains/notgoogle.json new file mode 100644 index 000000000..cf03fa5d9 --- /dev/null +++ b/domains/notgoogle.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "uugghhwhy", + "email": "", + "discord": "[]#4604" + }, + "record": { + "CNAME": "873cf0d8-4ae8-4a9c-9a48-b58ac4c67f3d.id.repl.co" + } +} diff --git a/domains/notify-api.json b/domains/notify-api.json new file mode 100644 index 000000000..6e00c3f20 --- /dev/null +++ b/domains/notify-api.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "andrewstech", + "email": "Andrewbuild48@gmail.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 598245488977903688" + }, + + "record": { + "CNAME": "net.beadman-network.com" + } +} diff --git a/domains/notjadeja.json b/domains/notjadeja.json new file mode 100644 index 000000000..d32032699 --- /dev/null +++ b/domains/notjadeja.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "HalalJadeja", + "email": "9236.stkabirdio@gmail.com" + }, + "record": { + "A": [ + "185.199.110.153", + "185.199.108.153", + "185.199.111.153", + "185.199.109.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/notrana.json b/domains/notrana.json new file mode 100644 index 000000000..79a08a799 --- /dev/null +++ b/domains/notrana.json @@ -0,0 +1,12 @@ +{ + "description": "Link to my portfolio site.", + "repo": "https://github.com/notrana/notrana.github.io", + "owner": { + "username": "notrana", + "email": "mail@notrana.tk", + "discord": "Rana Asad.py#5925" + }, + "record": { + "CNAME": "notrana.github.io" + } +} diff --git a/domains/notsora.json b/domains/notsora.json new file mode 100644 index 000000000..c7cd55b38 --- /dev/null +++ b/domains/notsora.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "OraSora", + "email": "S05A@outlook.com" + }, + "record": { + "CNAME": "c20d9bfa-52f3-47e1-a43f-326fe4079288.repl.co" + } +} diff --git a/domains/nova.json b/domains/nova.json new file mode 100644 index 000000000..924ad4d90 --- /dev/null +++ b/domains/nova.json @@ -0,0 +1,11 @@ +{ + "description": "nova.is-a.dev", + "owner": { + "username": "LunarN0v4", + "email": "zeus@zeusteam.dev", + "discord": "N0v4#4471" + }, + "record": { + "A": ["170.39.215.57"] + } +} diff --git a/domains/noxsin.json b/domains/noxsin.json new file mode 100644 index 000000000..bd2c44a04 --- /dev/null +++ b/domains/noxsin.json @@ -0,0 +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" + } +} diff --git a/domains/noxturnix.json b/domains/noxturnix.json new file mode 100644 index 000000000..469025210 --- /dev/null +++ b/domains/noxturnix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Noxturnix", + "email": "noxturnix@noxt.us" + }, + "record": { + "URL": "https://noxt.us" + } +} diff --git a/domains/nrdybhu1.json b/domains/nrdybhu1.json new file mode 100644 index 000000000..6db1f2174 --- /dev/null +++ b/domains/nrdybhu1.json @@ -0,0 +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" + } +} diff --git a/domains/ns1.zerow.json b/domains/ns1.zerow.json new file mode 100644 index 000000000..353e7e8a0 --- /dev/null +++ b/domains/ns1.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "A": ["92.118.207.191"] + } +} diff --git a/domains/ns2.zerow.json b/domains/ns2.zerow.json new file mode 100644 index 000000000..353e7e8a0 --- /dev/null +++ b/domains/ns2.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "A": ["92.118.207.191"] + } +} diff --git a/domains/nsh.json b/domains/nsh.json new file mode 100644 index 000000000..74fd45e71 --- /dev/null +++ b/domains/nsh.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "oyepriyansh", + "email": "oyepriyansh@hotmail.com", + "twitter": "oyepriyansh" + }, + "description": "mail domain", + "record": { + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/ntc-edm.json b/domains/ntc-edm.json new file mode 100644 index 000000000..3aa60549e --- /dev/null +++ b/domains/ntc-edm.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "thanhcong2k7", + "email": "nhocpeacock@gmail.com" + }, + "record": { + "CNAME": "kmdev.carrd.co" + } +} diff --git a/domains/ntg.json b/domains/ntg.json new file mode 100644 index 000000000..2517fa8a9 --- /dev/null +++ b/domains/ntg.json @@ -0,0 +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" + } +} diff --git a/domains/nthn.json b/domains/nthn.json new file mode 100644 index 000000000..1479525d0 --- /dev/null +++ b/domains/nthn.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..d27b5c78d --- /dev/null +++ b/domains/nunya-9018.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Nunya-9018", + "email": "007youdontknowme@gmail.com" + }, + + "record": { + "CNAME": "nunya-9018.up.railway.app" + } +} diff --git a/domains/nuxsh.json b/domains/nuxsh.json new file mode 100644 index 000000000..b9fbc8b9b --- /dev/null +++ b/domains/nuxsh.json @@ -0,0 +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" + } +} diff --git a/domains/nv2k3.json b/domains/nv2k3.json new file mode 100644 index 000000000..059d1c3ff --- /dev/null +++ b/domains/nv2k3.json @@ -0,0 +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" + } +} 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/nxyy.json b/domains/nxyy.json new file mode 100644 index 000000000..cd07ddcab --- /dev/null +++ b/domains/nxyy.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "NxyyLOL", + "email": "nxyylol@protonmail.com" + }, + "record": { + "A": ["158.101.209.213"] + } + } + \ No newline at end of file diff --git a/domains/nyan.json b/domains/nyan.json new file mode 100644 index 000000000..2d479ccd9 --- /dev/null +++ b/domains/nyan.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "aeongdesu", + "email": "", + "revolt": "@Nyan", + "discord": "Bread#2635", + "note": "discord id: 548821619661864962" + }, + "record": { + "CNAME": "ppy.pages.dev" + } +} 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 new file mode 100644 index 000000000..3a7633c6c --- /dev/null +++ b/domains/nyel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "nyelnizy", + "email": "yhiamdan@gmail.com" + }, + + "record": { + "CNAME": "nyelnizy.github.io" + } +} diff --git a/domains/nziie.json b/domains/nziie.json new file mode 100644 index 000000000..f83527299 --- /dev/null +++ b/domains/nziie.json @@ -0,0 +1,11 @@ +{ + "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/ocean.json b/domains/ocean.json new file mode 100644 index 000000000..da166171b --- /dev/null +++ b/domains/ocean.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "OceanTechnic", + "email": "", + "twitter": "UnderWater_DEV" + }, + "record": { + "CNAME": "oceantechnic.github.io" + } +} diff --git a/domains/ocloo.json b/domains/ocloo.json new file mode 100644 index 000000000..49aefc66c --- /dev/null +++ b/domains/ocloo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dev0cloo", + "email": "etor.ocloo@gmail.com" + }, + "record": { + "URL": "https://dev0cloo.netlify.app" + } +} diff --git a/domains/ofersadan.json b/domains/ofersadan.json new file mode 100644 index 000000000..92c29af60 --- /dev/null +++ b/domains/ofersadan.json @@ -0,0 +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" + } +} diff --git a/domains/ofv.json b/domains/ofv.json new file mode 100644 index 000000000..9dc9857e6 --- /dev/null +++ b/domains/ofv.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/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/ohqte.json b/domains/ohqte.json new file mode 100644 index 000000000..5e36b62c6 --- /dev/null +++ b/domains/ohqte.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "ohqte", + "email": "ohqte@proton.me" + }, + "record": { + "URL": "https://ohqte.vercel.app", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/okyanusoz.json b/domains/okyanusoz.json new file mode 100644 index 000000000..879d5bc74 --- /dev/null +++ b/domains/okyanusoz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "okyanusoz", + "email": "", + "github": "okyanusoz" + }, + "record": { + "URL": "https://github.com/okyanusoz" + } +} diff --git a/domains/ole.json b/domains/ole.json new file mode 100644 index 000000000..3059021da --- /dev/null +++ b/domains/ole.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..f70dfd76e --- /dev/null +++ b/domains/oleg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "olegrumiancev", + "email": "oleg.rumiancev@gmail.com" + }, + + "record": { + "URL": "https://olegrumiancev.github.io" + } +} diff --git a/domains/oleksa.json b/domains/oleksa.json new file mode 100644 index 000000000..1742f4c29 --- /dev/null +++ b/domains/oleksa.json @@ -0,0 +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" + } +} diff --git a/domains/oli.json b/domains/oli.json new file mode 100644 index 000000000..c3a0f7940 --- /dev/null +++ b/domains/oli.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "qyful", + "email": "", + "twitter": "Qyful", + "discord": "Qyful#1800" + }, + "record": { + "CNAME": "cb41d586-dc17-4f5d-b336-2c93504644e4.id.repl.co" + } +} diff --git a/domains/olili.json b/domains/olili.json new file mode 100644 index 000000000..6787d7178 --- /dev/null +++ b/domains/olili.json @@ -0,0 +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" + } +} diff --git a/domains/om.json b/domains/om.json new file mode 100644 index 000000000..48896d992 --- /dev/null +++ b/domains/om.json @@ -0,0 +1,14 @@ +{ + "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/omer.json b/domains/omer.json new file mode 100644 index 000000000..cc93b8344 --- /dev/null +++ b/domains/omer.json @@ -0,0 +1,12 @@ +{ + "description": "omercup's personal website", + "repo": "https://github.com/omercup/omercup.github.io", + "owner": { + "username": "omercup", + "email": "", + "twitter": "heisomercup" + }, + "record": { + "CNAME": "omercup.github.io" + } +} diff --git a/domains/omera.json b/domains/omera.json new file mode 100644 index 000000000..9dc9857e6 --- /dev/null +++ b/domains/omera.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/oneclick-macos-simple-kvm.notaperson535.json b/domains/oneclick-macos-simple-kvm.notaperson535.json new file mode 100644 index 000000000..5934082c5 --- /dev/null +++ b/domains/oneclick-macos-simple-kvm.notaperson535.json @@ -0,0 +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" + } +} diff --git a/domains/onion.json b/domains/onion.json new file mode 100644 index 000000000..afe940f08 --- /dev/null +++ b/domains/onion.json @@ -0,0 +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" + } +} 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/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 new file mode 100644 index 000000000..7571fc158 --- /dev/null +++ b/domains/oofy.json @@ -0,0 +1,11 @@ +{ + "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/opaayush.json b/domains/opaayush.json new file mode 100644 index 000000000..8a1b90e92 --- /dev/null +++ b/domains/opaayush.json @@ -0,0 +1,12 @@ +{ + "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/opbot.json b/domains/opbot.json new file mode 100644 index 000000000..3e74a0bcb --- /dev/null +++ b/domains/opbot.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MRD433", + "email": "52184mo@gmail.com" + }, + + "record": { + "CNAME": "discord-bot-dashboard-1.zfair45.repl.co" + } +} diff --git a/domains/oreki.json b/domains/oreki.json new file mode 100644 index 000000000..166f8c81f --- /dev/null +++ b/domains/oreki.json @@ -0,0 +1,10 @@ +{ + "description": "My Personal Website", + "owner": { + "username": "Oreki-Dev", + "email": "orekidev@gmail.com" + }, + "record": { + "A": ["164.132.74.251", "192.95.42.75"] + } +} diff --git a/domains/oreo.json b/domains/oreo.json new file mode 100644 index 000000000..35f4638f1 --- /dev/null +++ b/domains/oreo.json @@ -0,0 +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" + } +} diff --git a/domains/orestsaban.json b/domains/orestsaban.json new file mode 100644 index 000000000..5e424a540 --- /dev/null +++ b/domains/orestsaban.json @@ -0,0 +1,16 @@ +{ + "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/osada.json b/domains/osada.json new file mode 100644 index 000000000..5922cc945 --- /dev/null +++ b/domains/osada.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "osadavc", + "email": "osadavidath@gmail.com", + "twitter": "osadavidath" + }, + "record": { + "URL": "https://osada-is-a-dev.vercel.app" + } +} diff --git a/domains/otter.json b/domains/otter.json new file mode 100644 index 000000000..e10a93302 --- /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/ovillafuerte94.json b/domains/ovillafuerte94.json new file mode 100644 index 000000000..5e7146518 --- /dev/null +++ b/domains/ovillafuerte94.json @@ -0,0 +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" + } +} diff --git a/domains/owain.json b/domains/owain.json new file mode 100644 index 000000000..22080c4c3 --- /dev/null +++ b/domains/owain.json @@ -0,0 +1,10 @@ +{ + "description": "Owain's Website", + "owner": { + "username": "owjothegreat", + "email": "owain.jones74@gmail.com" + }, + "record": { + "CNAME": "0wain.xyz" + } +} 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..743333e13 --- /dev/null +++ b/domains/p3nguin.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..1e50c5e7a --- /dev/null +++ b/domains/pace.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..809275bf4 --- /dev/null +++ b/domains/pad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "aripadrian", + "email": "aripadrian01@gmail.com" + }, + + "record": { + "A": ["209.182.237.31"] + } +} diff --git a/domains/paddycooper.json b/domains/paddycooper.json new file mode 100644 index 000000000..7fce41f31 --- /dev/null +++ b/domains/paddycooper.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "PaddyCooper08", + "email": "1210@rgsg.co.uk" + }, + + "record": { + "CNAME": "paddycooper.surge.sh" + } +} diff --git a/domains/paiva.json b/domains/paiva.json new file mode 100644 index 000000000..607ce9409 --- /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 new file mode 100644 index 000000000..442ccdcf4 --- /dev/null +++ b/domains/pajsen.json @@ -0,0 +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" + } +} 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/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/pancakes.json b/domains/pancakes.json new file mode 100644 index 000000000..21fb01415 --- /dev/null +++ b/domains/pancakes.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pancak3boy", + "email": "Robloxisnotcoolanymore@gmail.com" + }, + "record": { + "CNAME": "c65a3e15-40a1-4799-8fac-2d5866ebd587.id.repl.co" + } +} 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..c9d5c9c40 --- /dev/null +++ b/domains/panchal-meet.json @@ -0,0 +1,11 @@ +{ + "description": "This is a panchal meet", + "repo": "https://github.com/panchal-meet/panchal-meet.github.io", + "owner": { + "username": "panchal-meet", + "email": "" + }, + "record": { + "CNAME": "panchal-meet.github.io" + } +} diff --git a/domains/panda.json b/domains/panda.json new file mode 100644 index 000000000..94c5e5d5c --- /dev/null +++ b/domains/panda.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "s3mant", + "email": "contact@semant.is-a.dev" + }, + "description": "redirection to main web.", + "record": { + "URL": "https://semant.panda.is-a.dev" + } +} diff --git a/domains/pandaninjas.json b/domains/pandaninjas.json 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/pansy.json b/domains/pansy.json new file mode 100644 index 000000000..9191e313c --- /dev/null +++ b/domains/pansy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pansy27", + "email": "uselessshogun99@gmail.com" + }, + "record": { + "CNAME": "pansy27.github.io" + } +} diff --git a/domains/papyrus.json b/domains/papyrus.json new file mode 100644 index 000000000..0ecf80594 --- /dev/null +++ b/domains/papyrus.json @@ -0,0 +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" + } +} diff --git a/domains/paranoiasystem.json b/domains/paranoiasystem.json new file mode 100644 index 000000000..9e9c03e5a --- /dev/null +++ b/domains/paranoiasystem.json @@ -0,0 +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" + } +} 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/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 new file mode 100644 index 000000000..68bdc0d7e --- /dev/null +++ b/domains/parshnt.json @@ -0,0 +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" + } +} diff --git a/domains/parth.json b/domains/parth.json new file mode 100644 index 000000000..9fcdac438 --- /dev/null +++ b/domains/parth.json @@ -0,0 +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" + } +} 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..5e6625cb2 --- /dev/null +++ b/domains/patel-komal.json @@ -0,0 +1,11 @@ +{ + "description": "This is komal patel", + "repo": "https://github.com/patel-komal/patel-komal.github.io", + "owner": { + "username": "patel-komal", + "email": "" + }, + "record": { + "CNAME": "patel-komal.github.io" + } +} diff --git a/domains/patel-monal.json b/domains/patel-monal.json new file mode 100644 index 000000000..1a9a80ccb --- /dev/null +++ b/domains/patel-monal.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/patel-monal/patel-monal.github.io", + "owner": { + "username": "patel-monal", + "email": "" + }, + "record": { + "CNAME": "patel-monal.github.io" + } +} diff --git a/domains/patel-parthiv.json b/domains/patel-parthiv.json new file mode 100644 index 000000000..ee84827b8 --- /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/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 new file mode 100644 index 000000000..d0309a817 --- /dev/null +++ b/domains/patriciafelix.json @@ -0,0 +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" + } +} diff --git a/domains/patrick.json b/domains/patrick.json new file mode 100644 index 000000000..872961653 --- /dev/null +++ b/domains/patrick.json @@ -0,0 +1,11 @@ +{ + "description": "Have a look to my web site please ;-;", + "repo": "https://github.com/PatrickChoDev", + "owner": { + "username": "PatrickChoDev", + "email": "devpatrick.cho@gmail.com" + }, + "record": { + "A": ["158.101.70.92"] + } +} diff --git a/domains/patrickbrophy.json b/domains/patrickbrophy.json new file mode 100644 index 000000000..04aa0e744 --- /dev/null +++ b/domains/patrickbrophy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "washedPat", + "email": "patrick.brophy2@gmail.com" + }, + "record": { + "CNAME": "patrickbrophy.dev" + } +} diff --git a/domains/patrickzhou.json b/domains/patrickzhou.json new file mode 100644 index 000000000..f02262bdb --- /dev/null +++ b/domains/patrickzhou.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "patrickzhou1234", + "email": "", + "discord": "Moist Nugget#5050" + }, + "record": { + "CNAME": "patrickzhou1234.github.io" + } +} 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 new file mode 100644 index 000000000..66a485c4e --- /dev/null +++ b/domains/paul.json @@ -0,0 +1,11 @@ +{ + "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/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/pay.gornostay25.json b/domains/pay.gornostay25.json new file mode 100644 index 000000000..075714eae --- /dev/null +++ b/domains/pay.gornostay25.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..ce10ee0fe --- /dev/null +++ b/domains/payidar.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..0992bffb7 --- /dev/null +++ b/domains/peach.json @@ -0,0 +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" + } +} diff --git a/domains/pekly.json b/domains/pekly.json new file mode 100644 index 000000000..57869b846 --- /dev/null +++ b/domains/pekly.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Pekly", + "email": "oodhuu57@gmail.com" + }, + "record": { + "URL": "https://dsc.gg/pekly" + } +} diff --git a/domains/pemtshewang.json b/domains/pemtshewang.json new file mode 100644 index 000000000..235d47bee --- /dev/null +++ b/domains/pemtshewang.json @@ -0,0 +1,12 @@ +{ + "description": "The subdomain will be used for my github portfolio :)", + "repo": "https://github.com/pemtshewang/pemtshewang.github.io", + "owner": { + "username": "pemtshewang", + "email": "pemtshewang500@gmail.com", + "twitter": "pemtshewang_4" + }, + "record": { + "CNAME": "pemtshewang.github.io" + } +} diff --git a/domains/penguin.json b/domains/penguin.json new file mode 100644 index 000000000..70d9fccdb --- /dev/null +++ b/domains/penguin.json @@ -0,0 +1,16 @@ +{ + "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 new file mode 100644 index 000000000..d34aa6373 --- /dev/null +++ b/domains/penieldialu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bilwifi", + "email": "dialundamapeniel@gmail.com" + }, + + "record": { + "URL": "https://penieldialu.carrd.co" + } +} diff --git a/domains/penieldialundama.json b/domains/penieldialundama.json new file mode 100644 index 000000000..d34aa6373 --- /dev/null +++ b/domains/penieldialundama.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bilwifi", + "email": "dialundamapeniel@gmail.com" + }, + + "record": { + "URL": "https://penieldialu.carrd.co" + } +} diff --git a/domains/peris.json b/domains/peris.json new file mode 100644 index 000000000..47c4b4ef6 --- /dev/null +++ b/domains/peris.json @@ -0,0 +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" + } +} 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/petla.json b/domains/petla.json new file mode 100644 index 000000000..99913cff7 --- /dev/null +++ b/domains/petla.json @@ -0,0 +1,12 @@ +{ + "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/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 new file mode 100644 index 000000000..53bd14626 --- /dev/null +++ b/domains/phantom.json @@ -0,0 +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" + } +} diff --git a/domains/phaze.json b/domains/phaze.json new file mode 100644 index 000000000..70b7adc8a --- /dev/null +++ b/domains/phaze.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "phaze-the-dumb", + "email": "phaze@duck.com" + }, + "record": { + "A": ["132.226.127.70"] + } +} diff --git a/domains/phelix.json b/domains/phelix.json new file mode 100644 index 000000000..ab8d6e502 --- /dev/null +++ b/domains/phelix.json @@ -0,0 +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" + } +} diff --git a/domains/phelixdusengimana.json b/domains/phelixdusengimana.json new file mode 100644 index 000000000..ab8d6e502 --- /dev/null +++ b/domains/phelixdusengimana.json @@ -0,0 +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" + } +} diff --git a/domains/pheonix.json b/domains/pheonix.json new file mode 100644 index 000000000..b981729f1 --- /dev/null +++ b/domains/pheonix.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Pheonix14", + "email": "sd490405@gmail.com" + }, + "record": { + "A": ["164.132.74.251"] + } +} diff --git a/domains/philcajurao.json b/domains/philcajurao.json new file mode 100644 index 000000000..c05bf679f --- /dev/null +++ b/domains/philcajurao.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..633a17526 --- /dev/null +++ b/domains/picklerick.json @@ -0,0 +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" + } +} 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/piero.json b/domains/piero.json new file mode 100644 index 000000000..76e744f86 --- /dev/null +++ b/domains/piero.json @@ -0,0 +1,11 @@ +{ + "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/pinchese.json b/domains/pinchese.json new file mode 100644 index 000000000..176b29d81 --- /dev/null +++ b/domains/pinchese.json @@ -0,0 +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" + } +} 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/pinont.json b/domains/pinont.json new file mode 100644 index 000000000..33575c532 --- /dev/null +++ b/domains/pinont.json @@ -0,0 +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" + } +} diff --git a/domains/pirate-project.json b/domains/pirate-project.json new file mode 100644 index 000000000..a676b1433 --- /dev/null +++ b/domains/pirate-project.json @@ -0,0 +1,10 @@ +{ + "description": "Pirate-Teams server", + "owner": { + "username": "StalkerMeyr", + "email": "andchit223@gmail.com" + }, + "record": { + "A": ["185.87.50.120"] + } +} diff --git a/domains/pivko.json b/domains/pivko.json new file mode 100644 index 000000000..b5d03794d --- /dev/null +++ b/domains/pivko.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..7cce20e4d --- /dev/null +++ b/domains/pixel.json @@ -0,0 +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" + } +} diff --git a/domains/pixelgeek.json b/domains/pixelgeek.json new file mode 100644 index 000000000..5e46be32f --- /dev/null +++ b/domains/pixelgeek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pixelgeek", + "email": "pixelgeek@intel.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/pixl8.json b/domains/pixl8.json new file mode 100644 index 000000000..3a5367f35 --- /dev/null +++ b/domains/pixl8.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "pixl8dev", + "email": "judah.cs08@gmail.com" + }, + + "record": { + "CNAME": "pixl8dev.github.io" + } +} 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 new file mode 100644 index 000000000..ac8615740 --- /dev/null +++ b/domains/piyush.json @@ -0,0 +1,10 @@ +{ + "description": "Piyush's Website", + "owner": { + "username": "officialpiyush", + "email": "bhangalepiyush@gmail.com" + }, + "record": { + "URL": "https://officialpiyush.github.io" + } +} diff --git a/domains/plopilpy.json b/domains/plopilpy.json new file mode 100644 index 000000000..e592c94d0 --- /dev/null +++ b/domains/plopilpy.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..601b90c33 --- /dev/null +++ b/domains/plun.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "plun1331", + "email": "plun1331@gmail.com" + }, + + "record": { + "CNAME": "plun.pages.dev" + } +} diff --git a/domains/pmint05.json b/domains/pmint05.json new file mode 100644 index 000000000..90e31ccbb --- /dev/null +++ b/domains/pmint05.json @@ -0,0 +1,12 @@ +{ + "description": "Subdomain for my personal developer website", + "repo": "https://github.com/pmint05/pmint05.github.io", + "owner": { + "username": "pmint05", + "email": "pmint05@protonmail.com", + "twitter": "pmint05" + }, + "record": { + "CNAME": "pmint05.github.io" + } +} diff --git a/domains/pndaboi.json b/domains/pndaboi.json new file mode 100644 index 000000000..4dd3c19a7 --- /dev/null +++ b/domains/pndaboi.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..2efc35294 --- /dev/null +++ b/domains/poked.json @@ -0,0 +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" + } +} 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/polopro.json b/domains/polopro.json new file mode 100644 index 000000000..c2e582cf0 --- /dev/null +++ b/domains/polopro.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..268098ef6 --- /dev/null +++ b/domains/porary.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "GotoShoraro", + "email": "info@porary.net" + }, + + "record": { + "URL": "https://porary.net" + } +} diff --git a/domains/pororo.json b/domains/pororo.json new file mode 100644 index 000000000..7db26beb2 --- /dev/null +++ b/domains/pororo.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..cbd81609d --- /dev/null +++ b/domains/portal-slot-gacor.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..5f9c83a1a --- /dev/null +++ b/domains/posandu.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..f61e048f5 --- /dev/null +++ b/domains/potatoland4492.json @@ -0,0 +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" + } +} diff --git a/domains/ppg00.json b/domains/ppg00.json new file mode 100644 index 000000000..554d65c7a --- /dev/null +++ b/domains/ppg00.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ppg00", + "email": "vx2dsk@gmail.com" + }, + + "record": { + "A": ["76.76.21.21"] + } +} diff --git a/domains/pplg.json b/domains/pplg.json new file mode 100644 index 000000000..5e6839946 --- /dev/null +++ b/domains/pplg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jantur-dev", + "email": "jantur29@gmail.com" + }, + "record": { + "CNAME": "d46b1013-50ed-4f41-b75e-3961b2b9aad6.id.repl.co" + } +} diff --git a/domains/pr.whine.json b/domains/pr.whine.json new file mode 100644 index 000000000..f3a39a96e --- /dev/null +++ b/domains/pr.whine.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "description": "whi_ne's projects' subdomain", + "record": { + "CNAME": "whnya.github.io" + } +} diff --git a/domains/pr0k41.json b/domains/pr0k41.json 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 new file mode 100644 index 000000000..5f621eace --- /dev/null +++ b/domains/prabhakaranjm.json @@ -0,0 +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" + } +} diff --git a/domains/prabhat.json b/domains/prabhat.json new file mode 100644 index 000000000..8aac90ffa --- /dev/null +++ b/domains/prabhat.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..e906afebd --- /dev/null +++ b/domains/prabin.json @@ -0,0 +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" + } +} 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/praharsh.json b/domains/praharsh.json new file mode 100644 index 000000000..817615819 --- /dev/null +++ b/domains/praharsh.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "praharshjain", + "email": "praharshsamria@gmail.com" + }, + + "record": { + "CNAME": "praharsh.tech" + } +} 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/prakhar.json b/domains/prakhar.json new file mode 100644 index 000000000..70df75990 --- /dev/null +++ b/domains/prakhar.json @@ -0,0 +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" + } +} diff --git a/domains/prakmo.json b/domains/prakmo.json new file mode 100644 index 000000000..795b3aa92 --- /dev/null +++ b/domains/prakmo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PrakmO", + "email": "omkar9patil0@gmail.com" + }, + "record": { + "CNAME": "eb215cd3-797f-4063-bbdf-d9687fc6d8de.id.repl.co" + } +} 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 new file mode 100644 index 000000000..fe64e0226 --- /dev/null +++ b/domains/pranav.json @@ -0,0 +1,11 @@ +{ + "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/pranavsaxena.json b/domains/pranavsaxena.json new file mode 100644 index 000000000..efa1c38e7 --- /dev/null +++ b/domains/pranavsaxena.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..95b551215 --- /dev/null +++ b/domains/prasadbobby.json @@ -0,0 +1,11 @@ +{ + "description": "Edu Manager", + "repo": "https://github.com/prasadbobby", + "owner": { + "username": "prasadbobby", + "email": "prasadbobby057@gmail.com" + }, + "record": { + "URL": "http://prasadbobby.me" + } +} diff --git a/domains/prateek.json b/domains/prateek.json new file mode 100644 index 000000000..df64be6fe --- /dev/null +++ b/domains/prateek.json @@ -0,0 +1,12 @@ +{ + "description": "Prateek Chaubey's Portfolio ", + "repo": "https://github.com/prateek-chaubey/prateek-chaubey.github.io", + "owner": { + "username": "prateek-chaubey", + "email": "chaubeyprateek2@gmail.com", + "twitter": "PrateekChaubeyy" + }, + "record": { + "CNAME": "prateek-chaubey.github.io" + } +} 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/pratikp-patel.json b/domains/pratikp-patel.json new file mode 100644 index 000000000..3f6311ed9 --- /dev/null +++ b/domains/pratikp-patel.json @@ -0,0 +1,11 @@ +{ + "description": "This is a website", + "repo": "https://github.com/pratikp-patel/pratikp-patel.github.io", + "owner": { + "username": "pratikp-patel", + "email": "" + }, + "record": { + "CNAME": "pratikp-patel.github.io" + } +} diff --git a/domains/pratyay.json b/domains/pratyay.json new file mode 100644 index 000000000..f15e09003 --- /dev/null +++ b/domains/pratyay.json @@ -0,0 +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" + } +} diff --git a/domains/pratyaydeep.json b/domains/pratyaydeep.json new file mode 100644 index 000000000..ad6f689b1 --- /dev/null +++ b/domains/pratyaydeep.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..22b60f6bb --- /dev/null +++ b/domains/praveen.json @@ -0,0 +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" + } +} diff --git a/domains/preview.beta.json b/domains/preview.beta.json new file mode 100644 index 000000000..17ebbe84d --- /dev/null +++ b/domains/preview.beta.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "CNAME": "is-a-dev-bot.github.io" + } +} diff --git a/domains/prisems.json b/domains/prisems.json new file mode 100644 index 000000000..14d923705 --- /dev/null +++ b/domains/prisems.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "prisems", + "email": "earthrulerr@gmail.com" + }, + "record": { + "CNAME": "4b616032-4803-4d79-a566-b8523b0ef299.id.repl.co" + } +} 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 new file mode 100644 index 000000000..447383cfa --- /dev/null +++ b/domains/privacy.json @@ -0,0 +1,16 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + "TXT": "forward-email=privacy.isdev.localplayer.dev" + } +} diff --git a/domains/priyansh.json b/domains/priyansh.json new file mode 100644 index 000000000..c865ab4c0 --- /dev/null +++ b/domains/priyansh.json @@ -0,0 +1,9 @@ +{ + "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..3a388873c --- /dev/null +++ b/domains/priyanshu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "PriyanshuxGupta", + "email": "priyanshugupta6891@gmail.com" + }, + "record": { + "CNAME": "fa339f2a-eae3-42e4-a4a1-18c2726299a3.id.repl.co" + } +} 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 new file mode 100644 index 000000000..8ca701b71 --- /dev/null +++ b/domains/prnice.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Prn-Ice", + "email": "isadev.0e7rj@slmail.me" + }, + "repo": "https://portfolio.prnice.me", + "description": "Test domain for this really cool service", + "record": { + "URL": "https://portfolio.prnice.me" + } +} diff --git a/domains/proghead00.json b/domains/proghead00.json new file mode 100644 index 000000000..7b12011ef --- /dev/null +++ b/domains/proghead00.json @@ -0,0 +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" + } +} diff --git a/domains/projakob.json b/domains/projakob.json new file mode 100644 index 000000000..4c309bde4 --- /dev/null +++ b/domains/projakob.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ProJakob", + "email": "", + "discord": "ProJakob#0408" + }, + "record": { + "A": ["152.89.239.58"] + } +} diff --git a/domains/projects.catzboy.json b/domains/projects.catzboy.json new file mode 100644 index 000000000..b8922239b --- /dev/null +++ b/domains/projects.catzboy.json @@ -0,0 +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" + } +} diff --git a/domains/prokai-kun.json b/domains/prokai-kun.json new file mode 100644 index 000000000..ef272143e --- /dev/null +++ b/domains/prokai-kun.json @@ -0,0 +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" + } +} diff --git a/domains/prokai.json b/domains/prokai.json new file mode 100644 index 000000000..32beedb29 --- /dev/null +++ b/domains/prokai.json @@ -0,0 +1,11 @@ +{ + "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/proudmuslim.json b/domains/proudmuslim.json new file mode 100644 index 000000000..b74ffdd21 --- /dev/null +++ b/domains/proudmuslim.json @@ -0,0 +1,10 @@ +{ + "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/proximity.json b/domains/proximity.json new file mode 100644 index 000000000..9bee26560 --- /dev/null +++ b/domains/proximity.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..4e727a6f5 --- /dev/null +++ b/domains/proxy.json @@ -0,0 +1,11 @@ +{ + "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/proxzima.json b/domains/proxzima.json new file mode 100644 index 000000000..fd035180a --- /dev/null +++ b/domains/proxzima.json @@ -0,0 +1,13 @@ +{ + "description": "Describe the use of this subdomain", + "repo": "https://github.com/PROxZIMA/proxzima.github.io", + "owner": { + "username": "PROxZIMA", + "email": "pratikbpingale9075@gmail.com", + "twitter": "pro_x_zima", + "discord": "PROxZIMA#7272" + }, + "record": { + "CNAME": "proxzima.github.io" + } +} diff --git a/domains/prozt.json b/domains/prozt.json new file mode 100644 index 000000000..a33da8d92 --- /dev/null +++ b/domains/prozt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TechPro709", + "email": "prozt709@gmail.com" + }, + "record": { + "CNAME": "techpro709.github.io" + } +} diff --git a/domains/prryplatypus.json b/domains/prryplatypus.json new file mode 100644 index 000000000..8311ab435 --- /dev/null +++ b/domains/prryplatypus.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/prryplatypus", + "owner": { + "username": "prryplatypus", + "email": "", + "twitter": "prryplatypus" + }, + "record": { + "CNAME": "prryplatypus.dev" + } +} diff --git a/domains/psharma.json b/domains/psharma.json new file mode 100644 index 000000000..690830a72 --- /dev/null +++ b/domains/psharma.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..4c1aceb51 --- /dev/null +++ b/domains/psicmi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "psicmi", + "email": "hello@psicmi.party" + }, + "record": { + "CNAME": "psicmi.win" + } +} diff --git a/domains/psj.json b/domains/psj.json new file mode 100644 index 000000000..0928e3ca2 --- /dev/null +++ b/domains/psj.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "philphirn", + "email": "locusapp1@gmail.com" + }, + "record": { + "CNAME": "philphirn.github.io" + } +} diff --git a/domains/psy.json b/domains/psy.json new file mode 100644 index 000000000..561261035 --- /dev/null +++ b/domains/psy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ensyde", + "email": "ensyde0@gmail.com" + }, + "record": { + "URL": "https://github.com/ensyde" + } +} diff --git a/domains/psyro.json b/domains/psyro.json new file mode 100644 index 000000000..e53542852 --- /dev/null +++ b/domains/psyro.json @@ -0,0 +1,11 @@ +{ + "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/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/pupbrained.json b/domains/pupbrained.json new file mode 100644 index 000000000..6dc24e09b --- /dev/null +++ b/domains/pupbrained.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "pupbrained", + "email": "mars@pupbrained.xyz" + }, + "record": { + "CNAME": "pupbrained.xyz" + } +} 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 new file mode 100644 index 000000000..707ab0c6f --- /dev/null +++ b/domains/pxseu.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..7abe97d1b --- /dev/null +++ b/domains/pyro.json @@ -0,0 +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" + } +} 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/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/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/qna.suki.json b/domains/qna.suki.json new file mode 100644 index 000000000..dbf9639a5 --- /dev/null +++ b/domains/qna.suki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SukiPlayz", + "email": "sukimayoo@outlook.com" + }, + "record": { + "CNAME": "247eddef-406f-4ce3-87ae-b3515f3aa876.id.repl.co" + } +} diff --git a/domains/qnos.json b/domains/qnos.json new file mode 100644 index 000000000..0c11924d6 --- /dev/null +++ b/domains/qnos.json @@ -0,0 +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" + } +} diff --git a/domains/queirozt.json b/domains/queirozt.json new file mode 100644 index 000000000..3844daa3a --- /dev/null +++ b/domains/queirozt.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "QueirozT", + "email": "tiagoqueirozgoncalves100@gmail.com" + }, + + "record": { + "A": ["144.22.180.97"] + } +} diff --git a/domains/quick.json b/domains/quick.json new file mode 100644 index 000000000..917a9b1ab --- /dev/null +++ b/domains/quick.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..226ea5ae1 --- /dev/null +++ b/domains/qwertx.json @@ -0,0 +1,11 @@ +{ + "description": "Gonna use this domain for my personal website and other pages/stuff", + "repo": "https://github.com/notqwertz/notqwertz.github.io", + "owner": { + "username": "notqwertz", + "email": "zuweyrh752@gmail.com" + }, + "record": { + "CNAME": "notqwertz.github.io" + } +} diff --git a/domains/qwerty-qwerty.json b/domains/qwerty-qwerty.json new file mode 100644 index 000000000..b922c0b7f --- /dev/null +++ b/domains/qwerty-qwerty.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Qwerty-Qwerty88", + "email": "personqwertyperson88@gmail.com" + }, + "record": { + "CNAME": "d9394ac5-c4db-44e1-b67f-198ad4c7dc3a.id.repl.co" + } +} diff --git a/domains/qwerty.json b/domains/qwerty.json new file mode 100644 index 000000000..35e9386df --- /dev/null +++ b/domains/qwerty.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..aaedfa16f --- /dev/null +++ b/domains/r0bl0x10501050.json @@ -0,0 +1,13 @@ +{ + "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 new file mode 100644 index 000000000..6ceaa1b7a --- /dev/null +++ b/domains/r2d2.json @@ -0,0 +1,10 @@ +{ + "description": "R2D2 website", + "owner": { + "username": "hogakesan", + "email": "aereg@ya.ru" + }, + "record": { + "A": ["46.32.83.106"] + } +} diff --git a/domains/r3tr0vw.json b/domains/r3tr0vw.json new file mode 100644 index 000000000..a7ffa8e58 --- /dev/null +++ b/domains/r3tr0vw.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "r3tr0vw", + "email": "alreadytaken@gmail.com", + "discord": "rΞtr0vw#4441" + }, + "record": { + "A": ["88.127.172.169"] + } +} diff --git a/domains/r4yish.json b/domains/r4yish.json new file mode 100644 index 000000000..2409f1bed --- /dev/null +++ b/domains/r4yish.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "r4yish", + "email": "r4yish@gmail.com" + }, + "record": { + "CNAME": "r4yish.github.io" + } +} diff --git a/domains/raadsel.json b/domains/raadsel.json new file mode 100644 index 000000000..723dfdc78 --- /dev/null +++ b/domains/raadsel.json @@ -0,0 +1,12 @@ +{ + "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 b834efb75..dfbfd01c1 100644 --- a/domains/rabbi-shuki.json +++ b/domains/rabbi-shuki.json @@ -1,12 +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", - "URL": "https://rabbi-shuki.is-a.dev" - } + "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/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/radi8.json b/domains/radi8.json new file mode 100644 index 000000000..3bd7955bd --- /dev/null +++ b/domains/radi8.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "radeeyate", + "email": "radi8@duck.com" + }, + + "record": { + "CNAME": "radi8.dev" + } +} diff --git a/domains/radio.mxnticek.json b/domains/radio.mxnticek.json new file mode 100644 index 000000000..84547ad0a --- /dev/null +++ b/domains/radio.mxnticek.json @@ -0,0 +1,10 @@ +{ + "description": "Domain for my radio", + "owner": { + "username": "VlastikYoutubeKo", + "email": "plainrock@seznam.cz" + }, + "record": { + "A": ["129.151.254.58"] + } +} diff --git a/domains/radke.json b/domains/radke.json new file mode 100644 index 000000000..c3f119566 --- /dev/null +++ b/domains/radke.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "radekw8733", + "email": "radekw8733@gmail.com" + }, + "repo": "https://github.com/radekw8733/radke.is-a.dev", + "record": { + "CNAME": "radkerouter.ddns.net" + } +} diff --git a/domains/rafalmeida73.json b/domains/rafalmeida73.json new file mode 100644 index 000000000..1b22c15ae --- /dev/null +++ b/domains/rafalmeida73.json @@ -0,0 +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" + } +} diff --git a/domains/rafsan.json b/domains/rafsan.json new file mode 100644 index 000000000..ac01f23e2 --- /dev/null +++ b/domains/rafsan.json @@ -0,0 +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" + } +} diff --git a/domains/raghavyuva.json b/domains/raghavyuva.json new file mode 100644 index 000000000..28ff52931 --- /dev/null +++ b/domains/raghavyuva.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "raghavyuva", + "email": "vikramnbhat15@gmail.com" + }, + + "record": { + "CNAME": "raghavyuva.github.io" + } +} diff --git a/domains/rahul-rabari.json b/domains/rahul-rabari.json new file mode 100644 index 000000000..5a171c90d --- /dev/null +++ b/domains/rahul-rabari.json @@ -0,0 +1,11 @@ +{ + "description": "This is personal website", + "repo": "https://github.com/rahul-rabari/rahul-rabari.github.io", + "owner": { + "username": "rahul-rabari", + "email": "" + }, + "record": { + "CNAME": "rahul-rabari.github.io" + } +} diff --git a/domains/rahul.json b/domains/rahul.json new file mode 100644 index 000000000..b1e212657 --- /dev/null +++ b/domains/rahul.json @@ -0,0 +1,11 @@ +{ + "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/rahulcodes.json b/domains/rahulcodes.json new file mode 100644 index 000000000..1bf8e0133 --- /dev/null +++ b/domains/rahulcodes.json @@ -0,0 +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" + } +} diff --git a/domains/rahulkirangaddam.json b/domains/rahulkirangaddam.json new file mode 100644 index 000000000..637b958fc --- /dev/null +++ b/domains/rahulkirangaddam.json @@ -0,0 +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" + } +} diff --git a/domains/rahulps.json b/domains/rahulps.json new file mode 100644 index 000000000..6f6f57f47 --- /dev/null +++ b/domains/rahulps.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rahulps1000", + "email": "rahulps1000@gmail.com" + }, + + "record": { + "URL": "https://myfolio-rahulps.netlify.app" + } +} diff --git a/domains/raid.json b/domains/raid.json new file mode 100644 index 000000000..51eeada27 --- /dev/null +++ b/domains/raid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ImRaid", + "email": "romanplayer76@gmail.com" + }, + "record": { + "CNAME": "f8d83b65-6aa3-47dd-952f-95b1a52eadb4.id.repl.co" + } +} diff --git a/domains/raiden.json b/domains/raiden.json new file mode 100644 index 000000000..955c67630 --- /dev/null +++ b/domains/raiden.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raiden076", + "email": "arkapravodas99@gmail.com" + }, + "record": { + "A": ["144.24.145.70"] + } +} diff --git a/domains/raiven.json b/domains/raiven.json new file mode 100644 index 000000000..392efa682 --- /dev/null +++ b/domains/raiven.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rdvntpkky", + "email": "ridvantopakkaya@hotmail.com" + }, + + "record": { + "A": ["193.31.116.116"] + } +} 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/raka.json b/domains/raka.json new file mode 100644 index 000000000..a18a0afa7 --- /dev/null +++ b/domains/raka.json @@ -0,0 +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" + } +} diff --git a/domains/raksix.json b/domains/raksix.json new file mode 100644 index 000000000..e707735b7 --- /dev/null +++ b/domains/raksix.json @@ -0,0 +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"] + } +} diff --git a/domains/raku.json b/domains/raku.json new file mode 100644 index 000000000..56d4bc326 --- /dev/null +++ b/domains/raku.json @@ -0,0 +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" + } +} diff --git a/domains/ralph.json b/domains/ralph.json new file mode 100644 index 000000000..6d809aef9 --- /dev/null +++ b/domains/ralph.json @@ -0,0 +1,10 @@ +{ + "description": "Ralph Wang's blog", + "owner": { + "username": "ralph", + "email": "asnowwolf@gmail.com" + }, + "record": { + "CNAME": "blog.ralph.wang" + } +} diff --git a/domains/rameez.json b/domains/rameez.json new file mode 100644 index 000000000..c9625b663 --- /dev/null +++ b/domains/rameez.json @@ -0,0 +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" + } +} 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..3073e98c7 --- /dev/null +++ b/domains/raofin.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "raofin", + "email": "contact@raofin.net" + }, + "record": { + "CNAME": "rao-dev.pages.dev" + } +} diff --git a/domains/rapixar.json b/domains/rapixar.json new file mode 100644 index 000000000..ea3c5db48 --- /dev/null +++ b/domains/rapixar.json @@ -0,0 +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" + } +} diff --git a/domains/rasmus.json b/domains/rasmus.json new file mode 100644 index 000000000..7fc9947ee --- /dev/null +++ b/domains/rasmus.json @@ -0,0 +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" + } +} diff --git a/domains/rasofex.json b/domains/rasofex.json new file mode 100644 index 000000000..b2303d2b8 --- /dev/null +++ b/domains/rasofex.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Rasofex", + "email": "rasofex@yandex.ru" + }, + + "record": { + "A": ["217.18.61.157"] + } +} 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/ratler.json b/domains/ratler.json new file mode 100644 index 000000000..a374ca597 --- /dev/null +++ b/domains/ratler.json @@ -0,0 +1,12 @@ +{ + "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/ravana.json b/domains/ravana.json new file mode 100644 index 000000000..05557d91c --- /dev/null +++ b/domains/ravana.json @@ -0,0 +1,12 @@ +{ + "description": "Ravana FM", + "repo": "https://ravana69.github.io/mainpage", + "owner": { + "username": "ravana69", + "email": "", + "twitter": "hornyravana>" + }, + "record": { + "CNAME": "ravana.github.io" + } +} diff --git a/domains/raven.json b/domains/raven.json new file mode 100644 index 000000000..fe24aaa2f --- /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.json b/domains/raviteja.json new file mode 100644 index 000000000..918b43e3c --- /dev/null +++ b/domains/raviteja.json @@ -0,0 +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" + } +} diff --git a/domains/ravost.json b/domains/ravost.json new file mode 100644 index 000000000..1ebaacd7b --- /dev/null +++ b/domains/ravost.json @@ -0,0 +1,10 @@ +{ + "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..5738c9ef2 --- /dev/null +++ b/domains/raw-api.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WilliamDavidHarrison", + "email": "william@williamharrison.dev" + }, + + "record": { + "CNAME": "wdhdev.github.io" + } +} diff --git a/domains/raw-kirito.json b/domains/raw-kirito.json new file mode 100644 index 000000000..c3d322ebb --- /dev/null +++ b/domains/raw-kirito.json @@ -0,0 +1,10 @@ +{ + "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..a20b7e4df --- /dev/null +++ b/domains/raw.json @@ -0,0 +1,12 @@ +{ + "description": "is-a-dev-raw api", + "repo": "https://github.com/andrewstech/is-a-dev-raw-api", + "owner": { + "username": "andrewstech", + "email": "hello@andrewstech.me", + "twitter": "andrewstech1" + }, + "record": { + "CNAME": "andrewstech.github.io" + } +} diff --git a/domains/rawir.json b/domains/rawir.json new file mode 100644 index 000000000..835551f5c --- /dev/null +++ b/domains/rawir.json @@ -0,0 +1,12 @@ +{ + "description": "Rawir's website", + "repo": "https://github.com/Rawiros/rawiros.github.io", + "owner": { + "username": "Rawiros", + "email": "0x4d3a@protonmail.com", + "twitter": "Rawir_" + }, + "record": { + "CNAME": "rawiros.github.io" + } +} diff --git a/domains/ray.json b/domains/ray.json new file mode 100644 index 000000000..e0a618574 --- /dev/null +++ b/domains/ray.json @@ -0,0 +1,11 @@ +{ + "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/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 new file mode 100644 index 000000000..22e711c56 --- /dev/null +++ b/domains/raymond.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "raylu15742cs", + "email": "raylucs15742@gmail.com" + }, + + "record": { + "CNAME": "raylu15742cs.github.io" + } +} diff --git a/domains/raymondlu.json b/domains/raymondlu.json new file mode 100644 index 000000000..22e711c56 --- /dev/null +++ b/domains/raymondlu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "raylu15742cs", + "email": "raylucs15742@gmail.com" + }, + + "record": { + "CNAME": "raylu15742cs.github.io" + } +} diff --git a/domains/raymonzhang.json b/domains/raymonzhang.json new file mode 100644 index 000000000..9f13fcde1 --- /dev/null +++ b/domains/raymonzhang.json @@ -0,0 +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" + } +} diff --git a/domains/rayvid.json b/domains/rayvid.json index 3455bc522..a57353fc7 100644 --- a/domains/rayvid.json +++ b/domains/rayvid.json @@ -1,4 +1,3 @@ - { "description": "Rayvid's website", "repo": "https://github.com/Rayvid", @@ -7,7 +6,6 @@ "email": "gin.kisonas@gmail.com" }, "record": { - "CNAME": "rayvid.github.io", - "URL": "https://rayvid.is-a.dev" + "CNAME": "rayvid.github.io" } } diff --git a/domains/rdc.json b/domains/rdc.json new file mode 100644 index 000000000..9dc9857e6 --- /dev/null +++ b/domains/rdc.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/re.maskduck.json b/domains/re.maskduck.json new file mode 100644 index 000000000..0f9b04d19 --- /dev/null +++ b/domains/re.maskduck.json @@ -0,0 +1,9 @@ +{ + "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..17bb56ee2 --- /dev/null +++ b/domains/reading.json @@ -0,0 +1,12 @@ +{ + "description": "For my Personal blog, Reading's Blog", + "repo": "https://github.com/ReadandProgress/ReadandProgress.github.io", + "owner": { + "username": "ReadandProgress", + "email": "reading.afxor@slmail.me", + "discord": "Reading#7898" + }, + "record": { + "CNAME": "ReadandProgress.github.io" + } +} 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/rededge.json b/domains/rededge.json new file mode 100644 index 000000000..5a9c7d0d3 --- /dev/null +++ b/domains/rededge.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..e7e58cd71 --- /dev/null +++ b/domains/rednek46.json @@ -0,0 +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" + } +} diff --git a/domains/reed.json b/domains/reed.json new file mode 100644 index 000000000..6647d3d4a --- /dev/null +++ b/domains/reed.json @@ -0,0 +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" + } +} diff --git a/domains/reefsalty.json b/domains/reefsalty.json new file mode 100644 index 000000000..59fb384d1 --- /dev/null +++ b/domains/reefsalty.json @@ -0,0 +1,12 @@ +{ + "description": "ReefSalty", + "repo": "https://github.com/github-username/ReefSalty.github.io", + "owner": { + "username": "ReefSalty", + "email": "reefsalter@hotmail.com", + "twitter": "ReefSalty" + }, + "record": { + "CNAME": "reefsalty.github.io" + } +} diff --git a/domains/refat.json b/domains/refat.json new file mode 100644 index 000000000..7c4069925 --- /dev/null +++ b/domains/refat.json @@ -0,0 +1,10 @@ +{ + "description": "Personal Site", + "owner": { + "username": "refatc25", + "email": "" + }, + "record": { + "URL": "https://www.refatchowdhury.com" + } +} diff --git a/domains/regiondavid.json b/domains/regiondavid.json new file mode 100644 index 000000000..c1be1c5c9 --- /dev/null +++ b/domains/regiondavid.json @@ -0,0 +1,11 @@ +{ + "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-bot.json b/domains/register-bot.json new file mode 100644 index 000000000..652d7ea34 --- /dev/null +++ b/domains/register-bot.json @@ -0,0 +1,12 @@ +{ + "description": "Register-bot", + "repo": "https://github.com/andrewstech/is-a-dev-bot", + "owner": { + "username": "andrewstech", + "email": "hello@andrewstech.me", + "twitter": "andrewstech1" + }, + "record": { + "CNAME": "dns.beadman-network.com" + } +} diff --git a/domains/register.json b/domains/register.json new file mode 100644 index 000000000..fb172c93f --- /dev/null +++ b/domains/register.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "is-a-dev-bot", + "email": "is-a-dev@win11react.com", + "discord": "1094272477137481810" + }, + + "record": { + "CNAME": "register-bot.is-a.dev" + } +} diff --git a/domains/rehanplayz.json b/domains/rehanplayz.json new file mode 100644 index 000000000..5834203a0 --- /dev/null +++ b/domains/rehanplayz.json @@ -0,0 +1,11 @@ +{ + "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..a3f23a106 --- /dev/null +++ b/domains/reizy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "P0rc0D10", + "email": "grazioligiuliano52@gmail.com" + }, + "record": { + "URL": "https://reizy.eu" + } +} diff --git a/domains/rekto.json b/domains/rekto.json new file mode 100644 index 000000000..b63b31205 --- /dev/null +++ b/domains/rekto.json @@ -0,0 +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" + } +} diff --git a/domains/relicrb.json b/domains/relicrb.json new file mode 100644 index 000000000..49c94e0c7 --- /dev/null +++ b/domains/relicrb.json @@ -0,0 +1,11 @@ +{ + "description": "Relic's Personal Site", + "repo": "https://github.com/RelicRB/RelicRB.github.io", + "owner": { + "username": "RelicRB", + "email": "relicrb@gmail.com" + }, + "record": { + "CNAME": "RelicRB.github.io" + } +} diff --git a/domains/ren.json b/domains/ren.json new file mode 100644 index 000000000..196e25e11 --- /dev/null +++ b/domains/ren.json @@ -0,0 +1,11 @@ +{ + "description": "is-a.dev subdomain for my portfolio", + "repo": "https://github.com/rendotpy/portfolio", + "owner": { + "username": "rendotpy", + "email": "arugh3@gmail.com" + }, + "record": { + "CNAME": "rendotpy.github.io" + } +} diff --git a/domains/rep.json b/domains/rep.json new file mode 100644 index 000000000..8d7bb58ed --- /dev/null +++ b/domains/rep.json @@ -0,0 +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" + } +} diff --git a/domains/replit.json b/domains/replit.json new file mode 100644 index 000000000..373ada593 --- /dev/null +++ b/domains/replit.json @@ -0,0 +1,10 @@ +{ + "description": "Setup is-a.dev domain with Replit", + "owner": { + "username": "VaibhavSys", + "email": "vaibhavsys@protonmail.com" + }, + "record": { + "CNAME": "ff4ced07-325d-4fbd-8fcc-d3ae663f2a60.id.repl.co" + } +} diff --git a/domains/rest.json b/domains/rest.json new file mode 100644 index 000000000..c8eb4c2b8 --- /dev/null +++ b/domains/rest.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Amir-Lotfi", + "email": "amir79976@gmail.com" + }, + + "record": { + "A": ["136.243.109.199"] + } +} diff --git a/domains/retr0.json b/domains/retr0.json new file mode 100644 index 000000000..0bd1ecdf2 --- /dev/null +++ b/domains/retr0.json @@ -0,0 +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" + } +} diff --git a/domains/reuben.json b/domains/reuben.json new file mode 100644 index 000000000..d9d0db1ae --- /dev/null +++ b/domains/reuben.json @@ -0,0 +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" + } +} diff --git a/domains/revelav2.json b/domains/revelav2.json new file mode 100644 index 000000000..efcc3f18b --- /dev/null +++ b/domains/revelav2.json @@ -0,0 +1,10 @@ +{ + "description": "revelav2.is-a.dev", + "owner": { + "username": "DIVISIONSolar", + "email": "me@joshsevero.dev" + }, + "record": { + "CNAME": "proxy.revela.network" + } +} diff --git a/domains/reynold.json b/domains/reynold.json new file mode 100644 index 000000000..863f72857 --- /dev/null +++ b/domains/reynold.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "EMMU", + "email": "aneenababu71901@gmail.com" + }, + "record": { + "CNAME": "d60bb323-8a85-4e54-82b0-f2faaf77569c.id.repl.co" + } +} diff --git a/domains/rezz.json b/domains/rezz.json new file mode 100644 index 000000000..0d632ab04 --- /dev/null +++ b/domains/rezz.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..93cfe8a64 --- /dev/null +++ b/domains/rfwn.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/rfwn/rfwn.github.io", + "owner": { + "username": "rfwn", + "email": "rfwn.mjd@gmail.com" + }, + "record": { + "CNAME": "rfwn.github.io" + } +} diff --git a/domains/rhino.json b/domains/rhino.json new file mode 100644 index 000000000..ba363f9be --- /dev/null +++ b/domains/rhino.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Tech2Logix", + "email": "rhinovanboxelaere@outlook.com" + }, + "record": { + "CNAME": "rhino-vb.be" + } +} 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/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/riannegreiros.json b/domains/riannegreiros.json new file mode 100644 index 000000000..ef2fb3835 --- /dev/null +++ b/domains/riannegreiros.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "RianNegreiros", + "email": "riannegreiros@gmail.com" + }, + "record": { + "CNAME": "riannegreiros.github.io" + } + } diff --git a/domains/ricardo.json b/domains/ricardo.json new file mode 100644 index 000000000..0fc1f9c46 --- /dev/null +++ b/domains/ricardo.json @@ -0,0 +1,11 @@ +{ + "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/ricecx.json b/domains/ricecx.json new file mode 100644 index 000000000..54926d366 --- /dev/null +++ b/domains/ricecx.json @@ -0,0 +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" + } +} diff --git a/domains/richard.json b/domains/richard.json new file mode 100644 index 000000000..bf38bc608 --- /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 new file mode 100644 index 000000000..6932520cd --- /dev/null +++ b/domains/richie.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..15f4f7871 --- /dev/null +++ b/domains/rick.json @@ -0,0 +1,11 @@ +{ + "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/rie.json b/domains/rie.json new file mode 100644 index 000000000..bb6d20603 --- /dev/null +++ b/domains/rie.json @@ -0,0 +1,11 @@ +{ + "description": "Rie's Website", + "repo": "https://github.com/meguminsama", + "owner": { + "username": "MeguminSama", + "email": "megumin@megu.dev" + }, + "record": { + "CNAME": "cname-dev.megu.dev" + } +} diff --git a/domains/rifzki.json b/domains/rifzki.json new file mode 100644 index 000000000..9506cbe3f --- /dev/null +++ b/domains/rifzki.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rifzkiadiyaksa", + "email": "rifzki.adiyaksa18033@student.unsika.ac.id" + }, + "record": { + "URL": "https://rifzki.my.id" + } +} 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/riko.json b/domains/riko.json new file mode 100644 index 000000000..a450bd3c5 --- /dev/null +++ b/domains/riko.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "GoldenFire2317", + "email": "buttersword2017@gmail.com" + }, + "record": { + "CNAME": "riko.mkoca.org" + } + } + \ No newline at end of file diff --git a/domains/rikosnapse.json b/domains/rikosnapse.json new file mode 100644 index 000000000..a450bd3c5 --- /dev/null +++ b/domains/rikosnapse.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "GoldenFire2317", + "email": "buttersword2017@gmail.com" + }, + "record": { + "CNAME": "riko.mkoca.org" + } + } + \ No newline at end of file diff --git a/domains/riley.json b/domains/riley.json new file mode 100644 index 000000000..c9374f7e0 --- /dev/null +++ b/domains/riley.json @@ -0,0 +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" + } +} diff --git a/domains/ririxi.json b/domains/ririxi.json new file mode 100644 index 000000000..2cbaabeb0 --- /dev/null +++ b/domains/ririxi.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..59ebce7cb --- /dev/null +++ b/domains/riskybot.riskymh.json @@ -0,0 +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" + } +} diff --git a/domains/riskybotredirect.json b/domains/riskybotredirect.json new file mode 100644 index 000000000..59ebce7cb --- /dev/null +++ b/domains/riskybotredirect.json @@ -0,0 +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" + } +} diff --git a/domains/riskymh.json b/domains/riskymh.json new file mode 100644 index 000000000..f90b1790b --- /dev/null +++ b/domains/riskymh.json @@ -0,0 +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"] + } +} diff --git a/domains/riskymhredirect.json b/domains/riskymhredirect.json new file mode 100644 index 000000000..404e14cb5 --- /dev/null +++ b/domains/riskymhredirect.json @@ -0,0 +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" + } +} diff --git a/domains/rithinjose.json b/domains/rithinjose.json new file mode 100644 index 000000000..f20a68400 --- /dev/null +++ b/domains/rithinjose.json @@ -0,0 +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" + } +} diff --git a/domains/ritshu.json b/domains/ritshu.json new file mode 100644 index 000000000..809820372 --- /dev/null +++ b/domains/ritshu.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..9e95183ef --- /dev/null +++ b/domains/ritwick2006.json @@ -0,0 +1,11 @@ +{ + "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/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/rlewsley.json b/domains/rlewsley.json new file mode 100644 index 000000000..0c7785983 --- /dev/null +++ b/domains/rlewsley.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "lewsley-r", + "email": "lewsley-r@ulster.ac.uk" + }, + + "record": { + "CNAME": "lewsley-r.github.io" + } +} diff --git a/domains/rlx.json b/domains/rlx.json new file mode 100644 index 000000000..6eb855e6b --- /dev/null +++ b/domains/rlx.json @@ -0,0 +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" + } +} diff --git a/domains/robert.json b/domains/robert.json new file mode 100644 index 000000000..d8b314658 --- /dev/null +++ b/domains/robert.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..230c013f6 --- /dev/null +++ b/domains/robin.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "RobinDev03", + "email": "robin@robin-it.de" + }, + + "record": { + "CNAME": "robin-w.de" + } +} 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/roger.json b/domains/roger.json new file mode 100644 index 000000000..925b9ecc5 --- /dev/null +++ b/domains/roger.json @@ -0,0 +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" + } +} diff --git a/domains/rohan.json b/domains/rohan.json new file mode 100644 index 000000000..920cd0b7c --- /dev/null +++ b/domains/rohan.json @@ -0,0 +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" + } +} 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/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 new file mode 100644 index 000000000..d491de9b8 --- /dev/null +++ b/domains/rohith.json @@ -0,0 +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" + } +} diff --git a/domains/rohithill.json b/domains/rohithill.json new file mode 100644 index 000000000..1546a549a --- /dev/null +++ b/domains/rohithill.json @@ -0,0 +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" + } +} diff --git a/domains/rohithkumar.json b/domains/rohithkumar.json new file mode 100644 index 000000000..2f78b4119 --- /dev/null +++ b/domains/rohithkumar.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..9bb1bfe4e --- /dev/null +++ b/domains/rohitkaushal.json @@ -0,0 +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" + } +} diff --git a/domains/roig.json b/domains/roig.json new file mode 100644 index 000000000..41ce1756d --- /dev/null +++ b/domains/roig.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..62242e703 --- /dev/null +++ b/domains/roj.json @@ -0,0 +1,11 @@ +{ + "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/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/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 new file mode 100644 index 000000000..6a110998a --- /dev/null +++ b/domains/rony.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..a935a97a2 --- /dev/null +++ b/domains/roshan.json @@ -0,0 +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" + } +} diff --git a/domains/roudges.json b/domains/roudges.json new file mode 100644 index 000000000..f0154a298 --- /dev/null +++ b/domains/roudges.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..34d3159c8 --- /dev/null +++ b/domains/roxza.json @@ -0,0 +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" + } +} diff --git a/domains/roy.json b/domains/roy.json new file mode 100644 index 000000000..ec11feaf0 --- /dev/null +++ b/domains/roy.json @@ -0,0 +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" + } +} diff --git a/domains/royalty.json b/domains/royalty.json new file mode 100644 index 000000000..f30be94b5 --- /dev/null +++ b/domains/royalty.json @@ -0,0 +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" + } +} diff --git a/domains/roydon.json b/domains/roydon.json new file mode 100644 index 000000000..59d332c82 --- /dev/null +++ b/domains/roydon.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..c09432786 --- /dev/null +++ b/domains/roydondsouza.json @@ -0,0 +1,12 @@ +{ + "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/rpj.json b/domains/rpj.json new file mode 100644 index 000000000..1d090920f --- /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 new file mode 100644 index 000000000..391f561a8 --- /dev/null +++ b/domains/rqtl.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ItsRqtl", + "email": "itsrqtl@gmail.com" + }, + + "record": { + "URL": "https://www.youtube.com/itsrqtl" + } +} diff --git a/domains/rrrokhtar.json b/domains/rrrokhtar.json new file mode 100644 index 000000000..fb469485f --- /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 new file mode 100644 index 000000000..7e7b35f99 --- /dev/null +++ b/domains/rsgarxia.json @@ -0,0 +1,12 @@ +{ + "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/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/rudra.json b/domains/rudra.json new file mode 100644 index 000000000..a39151cb4 --- /dev/null +++ b/domains/rudra.json @@ -0,0 +1,14 @@ +{ + "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 new file mode 100644 index 000000000..056e1f2f0 --- /dev/null +++ b/domains/ruiwenge2.json @@ -0,0 +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" + } +} diff --git a/domains/ruizo.json b/domains/ruizo.json new file mode 100644 index 000000000..70475fde5 --- /dev/null +++ b/domains/ruizo.json @@ -0,0 +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" + } +} diff --git a/domains/rumesh.json b/domains/rumesh.json new file mode 100644 index 000000000..7bc3c6d88 --- /dev/null +++ b/domains/rumesh.json @@ -0,0 +1,11 @@ +{ + "description": "Rumesh's .is-a.dev domain", + "repo": "https://github.com/iRumesh/irumesh.github.io", + "owner": { + "username": "irumesh", + "email": "irumesh.work@gmail.com" + }, + "record": { + "CNAME": "irumesh.github.io" + } +} diff --git a/domains/rusiru.json b/domains/rusiru.json new file mode 100644 index 000000000..65b77c0b5 --- /dev/null +++ b/domains/rusiru.json @@ -0,0 +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" + } +} diff --git a/domains/rustemb.json b/domains/rustemb.json new file mode 100644 index 000000000..3654d2848 --- /dev/null +++ b/domains/rustemb.json @@ -0,0 +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" + } +} diff --git a/domains/rutkuli.json b/domains/rutkuli.json new file mode 100644 index 000000000..d066cecec --- /dev/null +++ b/domains/rutkuli.json @@ -0,0 +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" + } +} diff --git a/domains/ruu3f.json b/domains/ruu3f.json new file mode 100644 index 000000000..b502cb4cc --- /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 new file mode 100644 index 000000000..d6f7cb0d6 --- /dev/null +++ b/domains/rv178.json @@ -0,0 +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" + } +} diff --git a/domains/rvsp.json b/domains/rvsp.json new file mode 100644 index 000000000..dacc96195 --- /dev/null +++ b/domains/rvsp.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "rvsp", + "email": "pvenkat.rv@gmail.com" + }, + "record": { + "CNAME": "rvsp.github.io" + } +} diff --git a/domains/rwithik.json b/domains/rwithik.json new file mode 100644 index 000000000..d5d068033 --- /dev/null +++ b/domains/rwithik.json @@ -0,0 +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" + } +} diff --git a/domains/rxyhn.json b/domains/rxyhn.json new file mode 100644 index 000000000..d5b38f214 --- /dev/null +++ b/domains/rxyhn.json @@ -0,0 +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" + } +} diff --git a/domains/rya.json b/domains/rya.json new file mode 100644 index 000000000..f6f0ff384 --- /dev/null +++ b/domains/rya.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Jecket22", + "email": "lez.vezzica@gmail.com" + }, + + "record": { + "URL": "https://jecket.xyz" + } +} diff --git a/domains/ryan.ginut.json b/domains/ryan.ginut.json new file mode 100644 index 000000000..cbf4b6c8a --- /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 new file mode 100644 index 000000000..508f57fee --- /dev/null +++ b/domains/ryan.json @@ -0,0 +1,11 @@ +{ + "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/ryn.json b/domains/ryn.json new file mode 100644 index 000000000..81bd9dee4 --- /dev/null +++ b/domains/ryn.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "lazylamps", + "email": "lampslazy@gmail.com" + }, + "record": { + "A": ["132.145.25.232"] + } +} diff --git a/domains/ryun.json b/domains/ryun.json new file mode 100644 index 000000000..658825095 --- /dev/null +++ b/domains/ryun.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ryun", + "email": "humtech@gmail.com" + }, + "record": { + "CNAME": "humboldtweb.com" + } + } + \ No newline at end of file diff --git a/domains/ryuuzu.json b/domains/ryuuzu.json new file mode 100644 index 000000000..2ff0fb85b --- /dev/null +++ b/domains/ryuuzu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ryuuzu", + "email": "me@ryuuzu.xyz" + }, + + "record": { + "CNAME": "ryuuzu.xyz" + } +} 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..1c022a7a2 --- /dev/null +++ b/domains/s4ib0t.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Hillzacky", + "email": "Hilm4nsyah@gmail.com", + "discord": "830349326785314846" + }, + + "record": { + "MX": ["mx1.forwardemail.net"] + } +} diff --git a/domains/s4il.json b/domains/s4il.json new file mode 100644 index 000000000..0c72d59e3 --- /dev/null +++ b/domains/s4il.json @@ -0,0 +1,10 @@ +{ + "description": "S4IL's Website", + "owner": { + "username": "Ositosail", + "email": "s4il.teacher.scratch@gmail.com" + }, + "record": { + "CNAME": "a765d103-b175-43ba-b8ef-8c541cb7d0b3.id.repl.co" + } +} diff --git a/domains/s97.json b/domains/s97.json new file mode 100644 index 000000000..9c1bc6a9f --- /dev/null +++ b/domains/s97.json @@ -0,0 +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" + } +} diff --git a/domains/saahil.json b/domains/saahil.json new file mode 100644 index 000000000..9c0db343d --- /dev/null +++ b/domains/saahil.json @@ -0,0 +1,10 @@ +{ + "description": "this is my about me page, - neongamerbot", + "owner": { + "username": "neongamerbot", + "email": "saahilattud@gmail.com" + }, + "record": { + "CNAME": "a58b11f7-e44a-4ebc-811d-22105a51b9b7.repl.co" + } +} diff --git a/domains/saammaaeel.json b/domains/saammaaeel.json new file mode 100644 index 000000000..2e8265b10 --- /dev/null +++ b/domains/saammaaeel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "saammaaeel", + "email": "codenamesamael@gmail.com", + "twitter": "codenamesamael" + }, + "record": { + "CNAME": "saammaaeel.github.io" + } +} diff --git a/domains/saba.json b/domains/saba.json new file mode 100644 index 000000000..6ce78d147 --- /dev/null +++ b/domains/saba.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio page for full stack projects", + "repo": "https://github.com/itsaba/itsaba.github.io", + "owner": { + "username": "itsaba", + "email": "saba.s@mail.com" + }, + "record": { + "CNAME": "itsaba.github.io" + } +} diff --git a/domains/sabelgames.json b/domains/sabelgames.json new file mode 100644 index 000000000..cf07aef15 --- /dev/null +++ b/domains/sabelgames.json @@ -0,0 +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" + } +} diff --git a/domains/sabil.json b/domains/sabil.json new file mode 100644 index 000000000..023c1cee8 --- /dev/null +++ b/domains/sabil.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..338dd65a0 --- /dev/null +++ b/domains/sachin.json @@ -0,0 +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" + } +} diff --git a/domains/sadie.json b/domains/sadie.json new file mode 100644 index 000000000..c4f0fc1a5 --- /dev/null +++ b/domains/sadie.json @@ -0,0 +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" + } +} diff --git a/domains/sadiq.json b/domains/sadiq.json new file mode 100644 index 000000000..35afa788c --- /dev/null +++ b/domains/sadiq.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/sadiq334/sadiq334.github.io", + "owner": { + "username": "sadiq334", + "email": "", + "discord": "! sadiq#1152" + }, + "record": { + "CNAME": "sadiq334.github.io" + } +} diff --git a/domains/sadmananik.json b/domains/sadmananik.json new file mode 100644 index 000000000..ef57fca92 --- /dev/null +++ b/domains/sadmananik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Sadman-11", + "email": "sadmananik8986@gmail.com" + }, + "record": { + "CNAME": "sadman.misfitsdev.xyz" + } +} diff --git a/domains/saeef.json b/domains/saeef.json new file mode 100644 index 000000000..69468af7e --- /dev/null +++ b/domains/saeef.json @@ -0,0 +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" + } +} diff --git a/domains/safin.json b/domains/safin.json new file mode 100644 index 000000000..cc95b0ccf --- /dev/null +++ b/domains/safin.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..49c8e25f1 --- /dev/null +++ b/domains/safone.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "AsmSafone", + "email": "asmsafone@gmail.com" + }, + + "record": { + "CNAME": "safone.pages.dev" + } +} diff --git a/domains/saharsh.json b/domains/saharsh.json new file mode 100644 index 000000000..bf6563e1f --- /dev/null +++ b/domains/saharsh.json @@ -0,0 +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" + } +} diff --git a/domains/sahil.json b/domains/sahil.json new file mode 100644 index 000000000..f5f29424e --- /dev/null +++ b/domains/sahil.json @@ -0,0 +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" + } +} 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/saifrahman.json b/domains/saifrahman.json new file mode 100644 index 000000000..428c1a6f5 --- /dev/null +++ b/domains/saifrahman.json @@ -0,0 +1,12 @@ +{ + "description": "Personal Blog", + "repo": "https://github.com/saifrahmn/portfolio", + "owner": { + "username": "saifrahmn", + "email": "saifrahmn78@gmail.com", + "twitter": "saif_rahmn" + }, + "record": { + "CNAME": "saifrahmn.github.io" + } +} diff --git a/domains/sailesh.json b/domains/sailesh.json new file mode 100644 index 000000000..211257025 --- /dev/null +++ b/domains/sailesh.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..2a6af8fd0 --- /dev/null +++ b/domains/saisandeepvaddi.json @@ -0,0 +1,10 @@ +{ + "description": "Sai Sandeep Vaddi's website", + "owner": { + "username": "saisandeepvaddi", + "email": "saisandeepvaddi@gmail.com" + }, + "record": { + "A": ["104.198.14.52"] + } +} diff --git a/domains/saizuo.json b/domains/saizuo.json new file mode 100644 index 000000000..61c5c001e --- /dev/null +++ b/domains/saizuo.json @@ -0,0 +1,12 @@ +{ + "description": "Saizuo's Portfolio Website", + "repo": "https://github.com/saizuo/saizuo.github.io", + "owner": { + "username": "Saizuo", + "email": "jhaakash177@gmail.com", + "twitter": "SaizyWaizy" + }, + "record": { + "CNAME": "Saizuo.github.io" + } +} diff --git a/domains/sakko.json b/domains/sakko.json new file mode 100644 index 000000000..6f0975012 --- /dev/null +++ b/domains/sakko.json @@ -0,0 +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" + } +} 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/sam-jspn.json b/domains/sam-jspn.json new file mode 100644 index 000000000..e52accfaa --- /dev/null +++ b/domains/sam-jspn.json @@ -0,0 +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" + } +} diff --git a/domains/sam.json b/domains/sam.json new file mode 100644 index 000000000..d93108e90 --- /dev/null +++ b/domains/sam.json @@ -0,0 +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" + } +} diff --git a/domains/samanyu.json b/domains/samanyu.json new file mode 100644 index 000000000..b16154f42 --- /dev/null +++ b/domains/samanyu.json @@ -0,0 +1,11 @@ +{ + "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/samarth-asthana.json b/domains/samarth-asthana.json new file mode 100644 index 000000000..77ac005cc --- /dev/null +++ b/domains/samarth-asthana.json @@ -0,0 +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" + } +} diff --git a/domains/samarth.json b/domains/samarth.json new file mode 100644 index 000000000..093a1e7e0 --- /dev/null +++ b/domains/samarth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "samarthkulshrestha", + "email": "samarthkulshrestha@protonmail.com" + }, + "record": { + "CNAME": "samarthkulshrestha.github.io" + } +} diff --git a/domains/sambhrama.json b/domains/sambhrama.json new file mode 100644 index 000000000..90b69910c --- /dev/null +++ b/domains/sambhrama.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..e9f6d0567 --- /dev/null +++ b/domains/samcarson.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "samcarsonx", + "email": "sam@samcarson.co.uk", + "twitter": "samcarsonx" + }, + "record": { + "URL": "https://samcarson.co.uk" + } +} 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/samet.json b/domains/samet.json new file mode 100644 index 000000000..74edf7498 --- /dev/null +++ b/domains/samet.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..a9c1a71da --- /dev/null +++ b/domains/samihatasnim.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..bb628b833 --- /dev/null +++ b/domains/samir.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..b8aec95d0 --- /dev/null +++ b/domains/samirpaul.json @@ -0,0 +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" + } +} diff --git a/domains/saml.json b/domains/saml.json new file mode 100644 index 000000000..371aadf8b --- /dev/null +++ b/domains/saml.json @@ -0,0 +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" + } +} diff --git a/domains/sammy.json b/domains/sammy.json new file mode 100644 index 000000000..25d5432a3 --- /dev/null +++ b/domains/sammy.json @@ -0,0 +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" + } +} diff --git a/domains/samo.json b/domains/samo.json new file mode 100644 index 000000000..4c780af34 --- /dev/null +++ b/domains/samo.json @@ -0,0 +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" + } +} diff --git a/domains/samriddha.json b/domains/samriddha.json new file mode 100644 index 000000000..720d397f5 --- /dev/null +++ b/domains/samriddha.json @@ -0,0 +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": "BasuSamriddha" + }, + "record": { + "CNAME": "samriddha-basu-cloud.github.io" + } +} diff --git a/domains/samuel.json b/domains/samuel.json new file mode 100644 index 000000000..b048f7dd7 --- /dev/null +++ b/domains/samuel.json @@ -0,0 +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" + } +} diff --git a/domains/samuelnihbos.json b/domains/samuelnihbos.json new file mode 100644 index 000000000..81e32ca3c --- /dev/null +++ b/domains/samuelnihbos.json @@ -0,0 +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" + } +} diff --git a/domains/sanana.json b/domains/sanana.json new file mode 100644 index 000000000..57d47f5d1 --- /dev/null +++ b/domains/sanana.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..405f2819f --- /dev/null +++ b/domains/sandeepv.json @@ -0,0 +1,10 @@ +{ + "description": "Sandeep's personal website", + "owner": { + "username": "SandeepVattapparambil", + "email": "sandeepv68@gmail.com" + }, + "record": { + "CNAME": "sandeepvattapparambil.github.io" + } +} 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 new file mode 100644 index 000000000..f945a4ae4 --- /dev/null +++ b/domains/sandro.json @@ -0,0 +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" + } +} diff --git a/domains/sanelkukic.json b/domains/sanelkukic.json new file mode 100644 index 000000000..bc02cdc58 --- /dev/null +++ b/domains/sanelkukic.json @@ -0,0 +1,11 @@ +{ + "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/sanidhya.json b/domains/sanidhya.json new file mode 100644 index 000000000..aa83c3c2d --- /dev/null +++ b/domains/sanidhya.json @@ -0,0 +1,13 @@ +{ + "description": "This is my personal Website of portfolio", + "repo": "https://github.com/CoderSoNet/codersonetwebsite.github.io", + "owner": { + "username": "CoderSoNet", + "email": "support@sanidhya.is-a.dev", + "twitter": "ShanuUniyal_On", + "discord": "781127625263415326" + }, + "record": { + "CNAME": "cc997d0e-83bb-487d-bb27-acbc00b59adb.id.repl.co" + } +} diff --git a/domains/sanjay-makasana.json b/domains/sanjay-makasana.json new file mode 100644 index 000000000..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 new file mode 100644 index 000000000..bacadb310 --- /dev/null +++ b/domains/sanjay.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "megasanjay", + "email": "info@sanjaysoundarajan.dev", + "twitter": "megasanjay" + }, + "description": "Personal website", + "repo": "https://github.com/megasanjay", + "record": { + "URL": "https://sanjaysoundarajan.dev" + } +} diff --git a/domains/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/santhosh.json b/domains/santhosh.json new file mode 100644 index 000000000..237d88c7a --- /dev/null +++ b/domains/santhosh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ABSanthosh", + "email": "a.b.santhosh02@gmail.com" + }, + "record": { + "CNAME": "absanthosh.github.io" + } +} diff --git a/domains/santito.json b/domains/santito.json new file mode 100644 index 000000000..be58bf2b6 --- /dev/null +++ b/domains/santito.json @@ -0,0 +1,11 @@ +{ + "description": "Santito's Personal Site", + "repo": "https://github.com/DevSantito/devsantito.github.io", + "owner": { + "username": "DevSantito", + "email": "devsantito@gmail.com" + }, + "record": { + "CNAME": "devsantito.github.io" + } +} diff --git a/domains/sappy.json b/domains/sappy.json new file mode 100644 index 000000000..423d790ce --- /dev/null +++ b/domains/sappy.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Slddev", + "email": "admin@sapinc.ga" + }, + "record": { + "CNAME": "slddev.github.io" + } +} diff --git a/domains/sarath.json b/domains/sarath.json new file mode 100644 index 000000000..d27882766 --- /dev/null +++ b/domains/sarath.json @@ -0,0 +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" + } +} diff --git a/domains/saraxa.json b/domains/saraxa.json new file mode 100644 index 000000000..29f6c33d9 --- /dev/null +++ b/domains/saraxa.json @@ -0,0 +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" + } +} diff --git a/domains/sarfaraz.json b/domains/sarfaraz.json new file mode 100644 index 000000000..6db97cdcf --- /dev/null +++ b/domains/sarfaraz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sarfarazstark", + "email": "sarfarazstark@gmail.com", + "twitter": "sarfarazstark" + }, + "record": { + "CNAME": "sarfarazstark.github.io" + } +} diff --git a/domains/saschamonteiro.json b/domains/saschamonteiro.json new file mode 100644 index 000000000..35ac3e582 --- /dev/null +++ b/domains/saschamonteiro.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..06c644703 --- /dev/null +++ b/domains/sasha.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..4a5051576 --- /dev/null +++ b/domains/sasial.json @@ -0,0 +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" + } +} diff --git a/domains/saswatsamal.json b/domains/saswatsamal.json new file mode 100644 index 000000000..eccaead0f --- /dev/null +++ b/domains/saswatsamal.json @@ -0,0 +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" + } +} diff --git a/domains/sathish.json b/domains/sathish.json new file mode 100644 index 000000000..ff9142b09 --- /dev/null +++ b/domains/sathish.json @@ -0,0 +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" + } +} 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/satyamv7.json b/domains/satyamv7.json new file mode 100644 index 000000000..9bfd58afc --- /dev/null +++ b/domains/satyamv7.json @@ -0,0 +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" + } +} 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/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/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 new file mode 100644 index 000000000..85f0f7618 --- /dev/null +++ b/domains/savio.json @@ -0,0 +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" + } +} diff --git a/domains/saviomartin.json b/domains/saviomartin.json new file mode 100644 index 000000000..fe9e2e20d --- /dev/null +++ b/domains/saviomartin.json @@ -0,0 +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" + } +} diff --git a/domains/saya.json b/domains/saya.json new file mode 100644 index 000000000..ee54b9084 --- /dev/null +++ b/domains/saya.json @@ -0,0 +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" + } +} diff --git a/domains/scarvite.json b/domains/scarvite.json new file mode 100644 index 000000000..7c629f5fc --- /dev/null +++ b/domains/scarvite.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..e87d18a2f --- /dev/null +++ b/domains/scfp.json @@ -0,0 +1,11 @@ +{ + "description": "Cfp Short Service", + "owner": { + "username": "cfpwastaken", + "email": "", + "discord": "cfp" + }, + "record": { + "CNAME": "cfp.gotdns.ch" + } +} diff --git a/domains/schematic.json b/domains/schematic.json new file mode 100644 index 000000000..9fd504c8a --- /dev/null +++ b/domains/schematic.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "alenpaul2001", + "email": "alenpaul2001@pm.me" + }, + "record": { + "A": ["152.67.160.188"] + } +} diff --git a/domains/school.semant.json b/domains/school.semant.json new file mode 100644 index 000000000..b8dd128a1 --- /dev/null +++ b/domains/school.semant.json @@ -0,0 +1,12 @@ +{ + "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/scientific-dev.json b/domains/scientific-dev.json new file mode 100644 index 000000000..c2b605bcb --- /dev/null +++ b/domains/scientific-dev.json @@ -0,0 +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" + } +} diff --git a/domains/scott.json b/domains/scott.json new file mode 100644 index 000000000..2b5b6717b --- /dev/null +++ b/domains/scott.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "scott1991", + "email": "cakepbm@gmail.com" + }, + "record": { + "A": ["128.22.136.213"] + } + } + \ No newline at end of file diff --git a/domains/scr.json b/domains/scr.json new file mode 100644 index 000000000..a68c0827b --- /dev/null +++ b/domains/scr.json @@ -0,0 +1,11 @@ +{ + "description": "Scriptyyy's site", + "owner": { + "username": "Scriptyyy", + "email": "mr.stikman209@gmail.com", + "discord": "Scriptyyy#2152" + }, + "record": { + "A": ["75.2.69.226"] + } +} diff --git a/domains/script-server.json b/domains/script-server.json new file mode 100644 index 000000000..aec6ecd4e --- /dev/null +++ b/domains/script-server.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "gengyj16", + "email": "819514379m@gmail.com" + }, + "record": { + "CNAME": "a7cce212-0dd4-4961-881e-3bebf2d1ce31.id.repl.co" + } +} diff --git a/domains/scronite.json b/domains/scronite.json new file mode 100644 index 000000000..576375a16 --- /dev/null +++ b/domains/scronite.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..2c1f0eec8 --- /dev/null +++ b/domains/scythe.json @@ -0,0 +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" + } +} 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/sdxqw.json b/domains/sdxqw.json new file mode 100644 index 000000000..87a77dc00 --- /dev/null +++ b/domains/sdxqw.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..fc7b46a39 --- /dev/null +++ b/domains/search.thomasc.json @@ -0,0 +1,11 @@ +{ + "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..3bf831ee6 --- /dev/null +++ b/domains/sebastian.json @@ -0,0 +1,16 @@ +{ + "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 new file mode 100644 index 000000000..4070ac9e0 --- /dev/null +++ b/domains/sebaz.json @@ -0,0 +1,10 @@ +{ + "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/sekuji.json b/domains/sekuji.json new file mode 100644 index 000000000..126f0b061 --- /dev/null +++ b/domains/sekuji.json @@ -0,0 +1,11 @@ +{ + "description": "Sekuji's Personal Website", + "owner": { + "username": "sekuji", + "email": "", + "discord": "sekuji#9595" + }, + "record": { + "CNAME": "sekuji.github.io" + } +} diff --git a/domains/semant.json b/domains/semant.json new file mode 100644 index 000000000..366e13b09 --- /dev/null +++ b/domains/semant.json @@ -0,0 +1,18 @@ +{ + "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 new file mode 100644 index 000000000..bb89cb1fa --- /dev/null +++ b/domains/semanteo.json @@ -0,0 +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" + } +} diff --git a/domains/senninseyi.json b/domains/senninseyi.json new file mode 100644 index 000000000..f7d28e4b6 --- /dev/null +++ b/domains/senninseyi.json @@ -0,0 +1,10 @@ +{ + "description": "My Dev Portfolio", + "owner": { + "username": "Senninseyi", + "email": "seyi.oyebamiji@gmail.com" + }, + "record": { + "URL": "https://beyondata.co" + } +} diff --git a/domains/seppegeuens.json b/domains/seppegeuens.json new file mode 100644 index 000000000..6fe0a42f2 --- /dev/null +++ b/domains/seppegeuens.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SeppeG", + "email": "geuensseppe@gmail.com" + }, + "record": { + "CNAME": "seppeg.github.io" + } +} diff --git a/domains/serena.json b/domains/serena.json new file mode 100644 index 000000000..fc3685532 --- /dev/null +++ b/domains/serena.json @@ -0,0 +1,11 @@ +{ + "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..01abb4362 --- /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/serstars.json b/domains/serstars.json new file mode 100644 index 000000000..6d284c553 --- /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/sethpython.json b/domains/sethpython.json new file mode 100644 index 000000000..822cb8467 --- /dev/null +++ b/domains/sethpython.json @@ -0,0 +1,11 @@ +{ + "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/sezersinanoglu.json b/domains/sezersinanoglu.json new file mode 100644 index 000000000..281a01bd9 --- /dev/null +++ b/domains/sezersinanoglu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sezersinanoglu", + "email": "sezersinanoglu@gmail.com" + }, + + "record": { + "CNAME": "sezersinanoglu.github.io" + } +} diff --git a/domains/sfe.json b/domains/sfe.json new file mode 100644 index 000000000..9c92b1a52 --- /dev/null +++ b/domains/sfe.json @@ -0,0 +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" + } +} diff --git a/domains/sfsef.json b/domains/sfsef.json new file mode 100644 index 000000000..70550014d --- /dev/null +++ b/domains/sfsef.json @@ -0,0 +1,10 @@ +{ + "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/sh.json b/domains/sh.json new file mode 100644 index 000000000..c5ab742e0 --- /dev/null +++ b/domains/sh.json @@ -0,0 +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" + } +} diff --git a/domains/sh9351.json b/domains/sh9351.json new file mode 100644 index 000000000..65a0346fa --- /dev/null +++ b/domains/sh9351.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sh9351", + "email": "perfect2315shlim@gmail.com" + }, + + "record": { + "CNAME": "sh9351.github.io" + } +} diff --git a/domains/shadow.json b/domains/shadow.json new file mode 100644 index 000000000..75ddb74cd --- /dev/null +++ b/domains/shadow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DoxrGitHub", + "email": "redforcearmy@outlook.com" + }, + "description": "Official shadowv2 team page", + "record": { + "A": ["34.132.134.162"] + } +} diff --git a/domains/shadowcookie.json b/domains/shadowcookie.json new file mode 100644 index 000000000..23c2ca54d --- /dev/null +++ b/domains/shadowcookie.json @@ -0,0 +1,10 @@ +{ + "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" + } +} diff --git a/domains/shafi100.json b/domains/shafi100.json new file mode 100644 index 000000000..b87fb9501 --- /dev/null +++ b/domains/shafi100.json @@ -0,0 +1,12 @@ +{ + "description": "Personal portfolio and blogging website of Md Abdullahil Shafi", + "repo": "https://github.com/shafi100/shafi100.github.io", + "owner": { + "username": "shafi100", + "email": "pro.shafi.12@gmail.com", + "twitter": "bd_shafi" + }, + "record": { + "CNAME": "shafi100.github.io" + } +} 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 new file mode 100644 index 000000000..382df0936 --- /dev/null +++ b/domains/shajanjp.json @@ -0,0 +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" + } +} 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 bf7bd8501..000000000 --- a/domains/shalom.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "description": "Shalom's personal website", - "owner": { - "username": "shalomscott", - "email": "shalomss525@gmail.com" - }, - "record": { - "CNAME": "shalom-is-a-dev.netlify.app", - "URL": "https://shalom.is-a.dev" - } -} diff --git a/domains/shambhavi.json b/domains/shambhavi.json new file mode 100644 index 000000000..53ff14cb6 --- /dev/null +++ b/domains/shambhavi.json @@ -0,0 +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" + } +} diff --git a/domains/shane.json b/domains/shane.json new file mode 100644 index 000000000..d2f68f70c --- /dev/null +++ b/domains/shane.json @@ -0,0 +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" + } +} 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..f1ca4e131 --- /dev/null +++ b/domains/sharafat.json @@ -0,0 +1,12 @@ +{ + "description": "Sharafat Karim", + "repo": "https://github.com/SharafatKarim/sharafatkarim.github.io", + "owner": { + "username": "SharafatKarim", + "email": "Sharafat2004@gmail.com" + }, + "record": { + "CNAME": "sharafat.pages.dev" + } +} + diff --git a/domains/sharath.json b/domains/sharath.json new file mode 100644 index 000000000..913825214 --- /dev/null +++ b/domains/sharath.json @@ -0,0 +1,11 @@ +{ + "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/sharifclick.json b/domains/sharifclick.json new file mode 100644 index 000000000..a8b148ddb --- /dev/null +++ b/domains/sharifclick.json @@ -0,0 +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" + } +} diff --git a/domains/shashank.json b/domains/shashank.json new file mode 100644 index 000000000..b185be65b --- /dev/null +++ b/domains/shashank.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shashankktiwariii", + "email": "development.shashank@gmail.com" + }, + "record": { + "A": ["144.24.102.80"] + } +} diff --git a/domains/shashankk.json b/domains/shashankk.json new file mode 100644 index 000000000..b185be65b --- /dev/null +++ b/domains/shashankk.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shashankktiwariii", + "email": "development.shashank@gmail.com" + }, + "record": { + "A": ["144.24.102.80"] + } +} diff --git a/domains/shaunak.json b/domains/shaunak.json new file mode 100644 index 000000000..015ca8493 --- /dev/null +++ b/domains/shaunak.json @@ -0,0 +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" + } +} diff --git a/domains/shays.json b/domains/shays.json new file mode 100644 index 000000000..7c430ab30 --- /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 new file mode 100644 index 000000000..73a0f0b62 --- /dev/null +++ b/domains/she.json @@ -0,0 +1,11 @@ +{ + "description": "My personal website", + "repo": "https://github.com/yuzhigang33/yuzhigang33.github.com", + "owner": { + "username": "yuzhigang33", + "email": "yuzhigang33@gmail.com" + }, + "record": { + "CNAME": "yuzhigang33.github.io" + } +} 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/shenjunru.json b/domains/shenjunru.json new file mode 100644 index 000000000..31da725c3 --- /dev/null +++ b/domains/shenjunru.json @@ -0,0 +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" + } +} diff --git a/domains/shep.json b/domains/shep.json new file mode 100644 index 000000000..c5581e0a5 --- /dev/null +++ b/domains/shep.json @@ -0,0 +1,12 @@ +{ + "description": "Callum's personal developer website", + "owner": { + "username": "CallumCat", + "email": "rocco@caseymediallc.com", + "twitter": "CallumK_Cat", + "discord": "Callum#0003" + }, + "record": { + "A": ["85.209.223.240"] + } +} diff --git a/domains/shept.json b/domains/shept.json new file mode 100644 index 000000000..d82397a5b --- /dev/null +++ b/domains/shept.json @@ -0,0 +1,11 @@ +{ + "description": "An aboutme page for Shept", + "repo": "https://github.com/mcshept", + "owner": { + "username": "mcshept", + "email": "shept@dasshept.tech" + }, + "record": { + "CNAME": "mcshept.github.io" + } +} diff --git a/domains/shibiliya.json b/domains/shibiliya.json new file mode 100644 index 000000000..dc3690fd7 --- /dev/null +++ b/domains/shibiliya.json @@ -0,0 +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" + } +} diff --git a/domains/shift.json b/domains/shift.json new file mode 100644 index 000000000..5a8a1a501 --- /dev/null +++ b/domains/shift.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mkshift", + "email": "mkshift@tuta.io" + }, + "record": { + "CNAME": "mkshift.github.io" + } + } + \ No newline at end of file diff --git a/domains/shilinlee.json b/domains/shilinlee.json new file mode 100644 index 000000000..eeb14d557 --- /dev/null +++ b/domains/shilinlee.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "shilinlee", + "email": "shilinlee.ghost@gmail.com" + }, + "record": { + "URL": "https://github.com/shilinlee" + } +} diff --git a/domains/shin.json b/domains/shin.json new file mode 100644 index 000000000..030f21f70 --- /dev/null +++ b/domains/shin.json @@ -0,0 +1,19 @@ +{ + "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/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 new file mode 100644 index 000000000..796b5c412 --- /dev/null +++ b/domains/shivang.json @@ -0,0 +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" + } +} diff --git a/domains/shivanshu814.json b/domains/shivanshu814.json new file mode 100644 index 000000000..fc05fde78 --- /dev/null +++ b/domains/shivanshu814.json @@ -0,0 +1,12 @@ +{ + "description": "Projects by Shivanshu Pathak", + "repo": "https://github.com/shivanshu814/kliquestart", + "owner": { + "username": "shivanshu814", + "email": "shivanshu814pathak@gmail.com", + "linkedin": "https://www.linkedin.com/in/shivanshu-pathak-6611b5228" + }, + "record": { + "CNAME": "Kliquestart.com" + } +} diff --git a/domains/shiyaf.json b/domains/shiyaf.json new file mode 100644 index 000000000..e091483a2 --- /dev/null +++ b/domains/shiyaf.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "mshiyaf", + "email": "shiyafc@gmail.com" + }, + + "record": { + "URL": "https://texolgulf.com" + } +} diff --git a/domains/shlok.json b/domains/shlok.json new file mode 100644 index 000000000..249a95c38 --- /dev/null +++ b/domains/shlok.json @@ -0,0 +1,10 @@ +{ + "description": "Portfolio Website", + "owner": { + "username": "PlaceInSpace", + "email": "shlokmadhekar88@gmail.com" + }, + "record": { + "CNAME": "d5c36b7d-4d85-449f-bd4d-0bbbc88fb781.id.repl.co" + } +} 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/short.json b/domains/short.json new file mode 100644 index 000000000..746f3d7ae --- /dev/null +++ b/domains/short.json @@ -0,0 +1,11 @@ +{ + "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/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/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 new file mode 100644 index 000000000..cccef48b9 --- /dev/null +++ b/domains/shubhambattoo.json @@ -0,0 +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" + } +} 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/shuchirjain.json b/domains/shuchirjain.json new file mode 100644 index 000000000..5e12725fd --- /dev/null +++ b/domains/shuchirjain.json @@ -0,0 +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" + } +} diff --git a/domains/shuvam.json b/domains/shuvam.json new file mode 100644 index 000000000..9755a8132 --- /dev/null +++ b/domains/shuvam.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..ad862bbd6 --- /dev/null +++ b/domains/shuvo.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..7b7c9fcf5 --- /dev/null +++ b/domains/shyran.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..f43f07565 --- /dev/null +++ b/domains/sid.json @@ -0,0 +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" + } +} diff --git a/domains/sidd.json b/domains/sidd.json new file mode 100644 index 000000000..1bdd94981 --- /dev/null +++ b/domains/sidd.json @@ -0,0 +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" + }, + "record": { + "CNAME": "4dffaf9f-274e-457e-a081-b23e4d20e170.id.repl.co" + } +} diff --git a/domains/siddhant.json b/domains/siddhant.json new file mode 100644 index 000000000..8f704162e --- /dev/null +++ b/domains/siddhant.json @@ -0,0 +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" + } +} diff --git a/domains/siddhu.json b/domains/siddhu.json new file mode 100644 index 000000000..7a8425eae --- /dev/null +++ b/domains/siddhu.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "SiddheshKukade", + "email": "littlelord124@gmail.com", + "twitter": "TheSidK_", + "discord": "SiddhyaOP#0596" + }, + "record": { + "URL": "https://siddheshkukade.netlify.app" + } +} diff --git a/domains/siful.json b/domains/siful.json new file mode 100644 index 000000000..88440e82c --- /dev/null +++ b/domains/siful.json @@ -0,0 +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" + } +} diff --git a/domains/silicoflare.json b/domains/silicoflare.json new file mode 100644 index 000000000..95a23368e --- /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/simo.json b/domains/simo.json new file mode 100644 index 000000000..ba9b060d9 --- /dev/null +++ b/domains/simo.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..a493e154a --- /dev/null +++ b/domains/simonknowsstuff.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/simonwong.json b/domains/simonwong.json new file mode 100644 index 000000000..0fdbf343f --- /dev/null +++ b/domains/simonwong.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "simonwong", + "email": "wsjwsjsimon@gmail.com", + "twitter": "wsj_simonwong", + "discord": "Simon Wong#6040" + }, + "record": { + "URL": "https://github.com/simonwong" + } +} diff --git a/domains/simple.json b/domains/simple.json new file mode 100644 index 000000000..382f851e0 --- /dev/null +++ b/domains/simple.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "reecebenson", + "email": "me@reecebenson.me", + "discord": "166705872473423872" + }, + + "record": { + "CNAME": "simple.gdn" + } +} diff --git a/domains/simplebank.json b/domains/simplebank.json new file mode 100644 index 000000000..4b86f6feb --- /dev/null +++ b/domains/simplebank.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "jotabf", + "email": "jotabe.150@gmail.com" + }, + "record": { + "CNAME": "a53880df71ece4c268070f082ce00d37-1008813240.sa-east-1.elb.amazonaws.com" + } +} 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 new file mode 100644 index 000000000..450fc6bdf --- /dev/null +++ b/domains/siow-kai-yang.json @@ -0,0 +1,11 @@ +{ + "description": "Portfolio go brrrrr", + "repo": "https://github.com/yeetus-maximus/yeetus-maximus.github.io", + "owner": { + "username": "yeetus-maximus", + "email": "siowkaiyang@protonmail.com" + }, + "record": { + "CNAME": "yeetus-maximus.github.io" + } +} diff --git a/domains/siris.json b/domains/siris.json new file mode 100644 index 000000000..e29183e59 --- /dev/null +++ b/domains/siris.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..801081807 --- /dev/null +++ b/domains/sirmacr0.json @@ -0,0 +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" + } +} diff --git a/domains/sirsimonson.json b/domains/sirsimonson.json new file mode 100644 index 000000000..43f249960 --- /dev/null +++ b/domains/sirsimonson.json @@ -0,0 +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" + } +} diff --git a/domains/sjcdn.json b/domains/sjcdn.json new file mode 100644 index 000000000..76af86d08 --- /dev/null +++ b/domains/sjcdn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "CoolCoderSJ", + "email": "CoolCoderSJ@gmail.com" + }, + "description": "My CDN", + "record": { + "CNAME": "09d836a5-eaca-4299-bfec-44ca0dfc6d0d.repl.co" + } +} diff --git a/domains/skduck.json b/domains/skduck.json new file mode 100644 index 000000000..19ac739aa --- /dev/null +++ b/domains/skduck.json @@ -0,0 +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" + } +} diff --git a/domains/skifli.json b/domains/skifli.json new file mode 100644 index 000000000..1d561080f --- /dev/null +++ b/domains/skifli.json @@ -0,0 +1,12 @@ +{ + "description": "Skifli's portfolio website", + "repo": "https://github.com/skifli/skifli.github.io", + "owner": { + "username": "skifli", + "email": "", + "discord": "skifli#8774" + }, + "record": { + "CNAME": "skifli.github.io" + } +} diff --git a/domains/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 new file mode 100644 index 000000000..7bdd9bb3e --- /dev/null +++ b/domains/sky.json @@ -0,0 +1,11 @@ +{ + "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/skydonald.json b/domains/skydonald.json new file mode 100644 index 000000000..ca541eed2 --- /dev/null +++ b/domains/skydonald.json @@ -0,0 +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" + } +} diff --git a/domains/slavicman.json b/domains/slavicman.json new file mode 100644 index 000000000..47b55b61e --- /dev/null +++ b/domains/slavicman.json @@ -0,0 +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" + } +} diff --git a/domains/slime.json b/domains/slime.json new file mode 100644 index 000000000..2532797bd --- /dev/null +++ b/domains/slime.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "purpleblueslime", + "email": "purpleblueslime@gmail.com" + }, + "record": { + "CNAME": "purpleblueslime.github.io" + } +} diff --git a/domains/slow.json b/domains/slow.json new file mode 100644 index 000000000..47372ae4c --- /dev/null +++ b/domains/slow.json @@ -0,0 +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" + } +} diff --git a/domains/smartfridge.json b/domains/smartfridge.json new file mode 100644 index 000000000..3f9caf1f7 --- /dev/null +++ b/domains/smartfridge.json @@ -0,0 +1,11 @@ +{ + "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/smeagol.json b/domains/smeagol.json new file mode 100644 index 000000000..dfa58cf18 --- /dev/null +++ b/domains/smeagol.json @@ -0,0 +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" + } +} diff --git a/domains/smoke-etecsa.yoelvd.json b/domains/smoke-etecsa.yoelvd.json new file mode 100644 index 000000000..e11c44946 --- /dev/null +++ b/domains/smoke-etecsa.yoelvd.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yoelvd", + "email": "magodeoz.virtual@gmail.com" + }, + "record": { + "CNAME": "srv40118-206152.vps.etecsa.cu" + } +} 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 new file mode 100644 index 000000000..a382d0266 --- /dev/null +++ b/domains/snail.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..c34a4dd91 --- /dev/null +++ b/domains/snaildos.json @@ -0,0 +1,11 @@ +{ + "description": "My Site", + "repo": "https://github.com/snaildos", + "owner": { + "username": "snaildos", + "email": "" + }, + "record": { + "CNAME": "snaildos.tk" + } +} diff --git a/domains/snazzah.json b/domains/snazzah.json new file mode 100644 index 000000000..0ddb9bd60 --- /dev/null +++ b/domains/snazzah.json @@ -0,0 +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" + } +} diff --git a/domains/snek.json b/domains/snek.json new file mode 100644 index 000000000..7c9728eaa --- /dev/null +++ b/domains/snek.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sn3kdev", + "email": "snektg@gmail.com" + }, + "record": { + "URL": "https://odnako_zmeyka.t.me" + } +} diff --git a/domains/snowcatridge10.json b/domains/snowcatridge10.json new file mode 100644 index 000000000..a1ca41d9b --- /dev/null +++ b/domains/snowcatridge10.json @@ -0,0 +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" + } +} 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..7c6597d7a --- /dev/null +++ b/domains/snowyid.json @@ -0,0 +1,11 @@ +{ + "description": "I Use For My Homepage", + "repo": "https://github.com/HayBael/Haybael.github.io", + "owner": { + "username": "HayBael", + "email": "botaklicin590@gmail.com" + }, + "record": { + "URL": "https://homepage-revisiakhir.vercel.app" + } +} diff --git a/domains/snox.json b/domains/snox.json new file mode 100644 index 000000000..5894116fb --- /dev/null +++ b/domains/snox.json @@ -0,0 +1,12 @@ +{ + "description": "snox.codes", + "repo": "https://snox.codes", + "owner": { + "username": "SimplySnox", + "email": "root@snox.codes", + "discord": "snox#0143" + }, + "record": { + "CNAME": "snox.codes" + } +} diff --git a/domains/snxx.json b/domains/snxx.json new file mode 100644 index 000000000..30f100c61 --- /dev/null +++ b/domains/snxx.json @@ -0,0 +1,10 @@ +{ + "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/socials.m1dnight.json b/domains/socials.m1dnight.json new file mode 100644 index 000000000..2c4f29a7a --- /dev/null +++ b/domains/socials.m1dnight.json @@ -0,0 +1,11 @@ +{ + "description": "Socials menu in m1dnight's art portfolio", + "repo": "https://m1dnight.is-a.dev/art/3D-Menu-Art/index-3Dmenu.html", + "owner": { + "username": "m1dnight-ofcl", + "email": "m1dnightgmrofficial@gmail.com" + }, + "record": { + "CNAME": "m1dnight.is-a.dev" + } +} diff --git a/domains/soeren.json b/domains/soeren.json new file mode 100644 index 000000000..ffd34cb2a --- /dev/null +++ b/domains/soeren.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "HSoeren", + "email": "soeren.helms1@gmail.com" + }, + "record": { + "CNAME": "soeren-helms.de" + } + } + \ No newline at end of file diff --git a/domains/sofa.json b/domains/sofa.json new file mode 100644 index 000000000..1ca83515b --- /dev/null +++ b/domains/sofa.json @@ -0,0 +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" + } +} diff --git a/domains/soham.json b/domains/soham.json new file mode 100644 index 000000000..761f89da9 --- /dev/null +++ b/domains/soham.json @@ -0,0 +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" + } +} diff --git a/domains/sohamlol.json b/domains/sohamlol.json new file mode 100644 index 000000000..061cf5911 --- /dev/null +++ b/domains/sohamlol.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TecHCodez", + "email": "soham.mohapatra65@gmail.com" + }, + + "record": { + "A": ["34.122.153.22"] + } +} diff --git a/domains/solareclipse995.json b/domains/solareclipse995.json new file mode 100644 index 000000000..fddec3244 --- /dev/null +++ b/domains/solareclipse995.json @@ -0,0 +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" + } +} diff --git a/domains/somenicetables.json b/domains/somenicetables.json new file mode 100644 index 000000000..7a80a1429 --- /dev/null +++ b/domains/somenicetables.json @@ -0,0 +1,12 @@ +{ + "description": "My personal about me page", + "repo": "https://github.com/somenicetables/somenicetables.github.io", + "owner": { + "username": "somenicetables", + "email": "themadman2215@gmail.com", + "twitter": "15usernamelimit" + }, + "record": { + "CNAME": "somenicetables.github.io" + } +} diff --git a/domains/someone.json b/domains/someone.json new file mode 100644 index 000000000..1ed882819 --- /dev/null +++ b/domains/someone.json @@ -0,0 +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" + } +} diff --git a/domains/somesh.json b/domains/somesh.json new file mode 100644 index 000000000..1dd3d1da0 --- /dev/null +++ b/domains/somesh.json @@ -0,0 +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" + } +} diff --git a/domains/someshtiwari.json b/domains/someshtiwari.json new file mode 100644 index 000000000..62e5f3603 --- /dev/null +++ b/domains/someshtiwari.json @@ -0,0 +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" + } +} diff --git a/domains/son.json b/domains/son.json new file mode 100644 index 000000000..49fc32836 --- /dev/null +++ b/domains/son.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sonphantrung", + "email": "phantrungson17@gmail.com" + }, + + "record": { + "CNAME": "sonphantrung.github.io" + } +} diff --git a/domains/sonet.json b/domains/sonet.json new file mode 100644 index 000000000..195d7c8c0 --- /dev/null +++ b/domains/sonet.json @@ -0,0 +1,14 @@ +{ + "description": "This is my personal Website of portfolio", + "repo": "https://github.com/CoderSoNet/codersonetwebsite.github.io", + "owner": { + "username": "CoderSoNet", + "email": "support@sonet.is-a.dev", + "twitter": "ShanuUniyal_On", + "discord": "781127625263415326" + }, + "record": { + "A": ["34.149.204.188"], + "TXT": "v=spf1 a mx include:_spf.elasticemail.com ~all" + } +} diff --git a/domains/soni-aakas.json b/domains/soni-aakas.json new file mode 100644 index 000000000..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/soni-ashish.json b/domains/soni-ashish.json new file mode 100644 index 000000000..9a91581a4 --- /dev/null +++ b/domains/soni-ashish.json @@ -0,0 +1,11 @@ +{ + "description": "My new website", + "repo": "https://github.com/soni-ashish/soni-ashish.github.io", + "owner": { + "username": "soni-ashish", + "email": "" + }, + "record": { + "CNAME": "soni-ashish.github.io" + } +} diff --git a/domains/sonicx180.json b/domains/sonicx180.json new file mode 100644 index 000000000..21fa0dbba --- /dev/null +++ b/domains/sonicx180.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..dc95660a1 --- /dev/null +++ b/domains/sonu.json @@ -0,0 +1,11 @@ +{ + "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/soulis.json b/domains/soulis.json new file mode 100644 index 000000000..d6559f82b --- /dev/null +++ b/domains/soulis.json @@ -0,0 +1,9 @@ +{ + "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/sourov-khan-nahid.json b/domains/sourov-khan-nahid.json new file mode 100644 index 000000000..2acefc029 --- /dev/null +++ b/domains/sourov-khan-nahid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SOUROVKHANNAHID", + "email": "SourovKhanNahid@gmail.com" + }, + "record": { + "CNAME": "SOUROVKHANNAHID.github.io" + } +} diff --git a/domains/sourtaste000.json b/domains/sourtaste000.json new file mode 100644 index 000000000..950016b86 --- /dev/null +++ b/domains/sourtaste000.json @@ -0,0 +1,9 @@ +{ + "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..95e3a0c33 --- /dev/null +++ b/domains/sow.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "sowisgone", + "email": "therealsnowmercy@gmail.com", + "discord": "616731583386353665" + }, + + "record": { + "URL": "https://cozy-fox-3ce364.netlify.app" + } +} diff --git a/domains/soyuj.json b/domains/soyuj.json new file mode 100644 index 000000000..d3dcca4f7 --- /dev/null +++ b/domains/soyuj.json @@ -0,0 +1,10 @@ +{ + "description": "Personal website of Soyuj Jung Basnet", + "owner": { + "username": "basnetsoyuj", + "email": "bsoyuj@gmail.com" + }, + "record": { + "URL": "http://soyuj.com.np" + } +} diff --git a/domains/space.json b/domains/space.json new file mode 100644 index 000000000..5ac110d08 --- /dev/null +++ b/domains/space.json @@ -0,0 +1,10 @@ +{ + "description": "My site", + "owner": { + "username": "StalkerMeyr", + "email": "andchit223@gmail.com" + }, + "record": { + "A": ["148.251.26.247"] + } +} diff --git a/domains/spark.json b/domains/spark.json new file mode 100644 index 000000000..61b866f72 --- /dev/null +++ b/domains/spark.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "realspark808", + "email": "burnedspark69@gmail.com" + }, + + "record": { + "CNAME": "55ce10ef-805d-4f67-a702-435d39062da6.id.repl.co" + } +} diff --git a/domains/spaxly.json b/domains/spaxly.json new file mode 100644 index 000000000..e5f8c84c2 --- /dev/null +++ b/domains/spaxly.json @@ -0,0 +1,20 @@ +{ + "owner": { + "username": "Spaxly", + "email": "ohmrc2545@gmail.com", + "discord": "569920282546929694" + }, + + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + + "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"], + + "TXT": "forward-email=ohmrc2545@gmail.com" + } +} diff --git a/domains/spechide.json b/domains/spechide.json new file mode 100644 index 000000000..e0de58887 --- /dev/null +++ b/domains/spechide.json @@ -0,0 +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" + } +} diff --git a/domains/specteado.json b/domains/specteado.json new file mode 100644 index 000000000..974cc72fa --- /dev/null +++ b/domains/specteado.json @@ -0,0 +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" + } +} 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/spicyaxolotl.json b/domains/spicyaxolotl.json new file mode 100644 index 000000000..3aad84577 --- /dev/null +++ b/domains/spicyaxolotl.json @@ -0,0 +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" + } +} diff --git a/domains/spicywars.json b/domains/spicywars.json new file mode 100644 index 000000000..46066e12f --- /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/splatboy-dev.json b/domains/splatboy-dev.json new file mode 100644 index 000000000..b109d1869 --- /dev/null +++ b/domains/splatboy-dev.json @@ -0,0 +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" + } +} diff --git a/domains/splatterxl.json b/domains/splatterxl.json new file mode 100644 index 000000000..d208b059a --- /dev/null +++ b/domains/splatterxl.json @@ -0,0 +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" + } +} diff --git a/domains/spongly.json b/domains/spongly.json new file mode 100644 index 000000000..191eb80de --- /dev/null +++ b/domains/spongly.json @@ -0,0 +1,11 @@ +{ + "description": "Spongly's Personal Site", + "repo": "https://github.com/spongly/spongly.github.io", + "owner": { + "username": "spongly", + "email": "mail.spongly@gmail.com" + }, + "record": { + "CNAME": "spongly.github.io" + } +} diff --git a/domains/spoozy.json b/domains/spoozy.json new file mode 100644 index 000000000..4502c9c43 --- /dev/null +++ b/domains/spoozy.json @@ -0,0 +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" + } +} diff --git a/domains/spud.json b/domains/spud.json new file mode 100644 index 000000000..3ec1ca986 --- /dev/null +++ b/domains/spud.json @@ -0,0 +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" + } +} diff --git a/domains/sputnick567.json b/domains/sputnick567.json new file mode 100644 index 000000000..14f65df6c --- /dev/null +++ b/domains/sputnick567.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/sputnick567/sputnick567.github.io", + "owner": { + "username": "sputnick567", + "email": "567sputnick@gmail.com" + }, + "record": { + "CNAME": "sputnick567.github.io" + } +} diff --git a/domains/spyminer.json b/domains/spyminer.json new file mode 100644 index 000000000..3386e765c --- /dev/null +++ b/domains/spyminer.json @@ -0,0 +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" + } +} diff --git a/domains/spyrisk.json b/domains/spyrisk.json new file mode 100644 index 000000000..85add6404 --- /dev/null +++ b/domains/spyrisk.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SpauriRosso", + "email": "spy456@zoho.com" + }, + "record": { + "URL": "https://spyrisk.fr" + } + } + \ No newline at end of file diff --git a/domains/sreevikram.json b/domains/sreevikram.json new file mode 100644 index 000000000..873a18eeb --- /dev/null +++ b/domains/sreevikram.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SreevikramR", + "email": "sreevikram.r@gmail.com", + "discord": "therealviki" + }, + "record": { + "CNAME": "nextjs-production-a65b.up.railway.app" + } +} \ No newline at end of file diff --git a/domains/sreevikramr.json b/domains/sreevikramr.json new file mode 100644 index 000000000..873a18eeb --- /dev/null +++ b/domains/sreevikramr.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SreevikramR", + "email": "sreevikram.r@gmail.com", + "discord": "therealviki" + }, + "record": { + "CNAME": "nextjs-production-a65b.up.railway.app" + } +} \ No newline at end of file diff --git a/domains/srihari.json b/domains/srihari.json new file mode 100644 index 000000000..0e18c75ef --- /dev/null +++ b/domains/srihari.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..751d58b85 --- /dev/null +++ b/domains/srujan.json @@ -0,0 +1,11 @@ +{ + "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/ssmidge.json b/domains/ssmidge.json new file mode 100644 index 000000000..df620aecf --- /dev/null +++ b/domains/ssmidge.json @@ -0,0 +1,11 @@ +{ + "description": "Ssmidge", + "repo": "https://github.com/Ssmidge/register", + "owner": { + "username": "Ssmidge", + "email": "Ssmidgemc@gmail.com" + }, + "record": { + "CNAME": "ssmidge.xyz" + } +} diff --git a/domains/sta1us.json b/domains/sta1us.json new file mode 100644 index 000000000..4d5bdec11 --- /dev/null +++ b/domains/sta1us.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "status-dev", + "email": "startic.email@gmail.com" + }, + + "record": { + "CNAME": "2b5e8113-5d4f-4c1e-862e-6d780db560cb.id.repl.co" + } +} diff --git a/domains/staff.json b/domains/staff.json new file mode 100644 index 000000000..334e79140 --- /dev/null +++ b/domains/staff.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "CNAME": "is-a-dev-maintainers.pages.dev" + } +} 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/starkblaze01.json b/domains/starkblaze01.json new file mode 100644 index 000000000..728ad1234 --- /dev/null +++ b/domains/starkblaze01.json @@ -0,0 +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" + } +} diff --git a/domains/starnumber.json b/domains/starnumber.json new file mode 100644 index 000000000..d8c26dd64 --- /dev/null +++ b/domains/starnumber.json @@ -0,0 +1,9 @@ +{ + "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.cfp.json b/domains/status.cfp.json new file mode 100644 index 000000000..089d39980 --- /dev/null +++ b/domains/status.cfp.json @@ -0,0 +1,11 @@ +{ + "description": "Cfp Status", + "owner": { + "username": "cfpwastaken", + "email": "", + "discord": "cfp" + }, + "record": { + "CNAME": "cfp.gotdns.ch" + } +} diff --git a/domains/status.json b/domains/status.json new file mode 100644 index 000000000..b22c83583 --- /dev/null +++ b/domains/status.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "is-a-dev", + "email": "phenax5@gmail.com" + }, + "record": { + "URL": "https://stats.uptimerobot.com/zY4XKIRVzw" + } +} 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 new file mode 100644 index 000000000..3cec0a3e2 --- /dev/null +++ b/domains/status.mousemoosz.json @@ -0,0 +1,10 @@ +{ + "description": "For statuspage", + "owner": { + "username": "MouseMoosz", + "email": "mousemoosz@protonmail.com" + }, + "record": { + "CNAME": "mousemoosz.statuspage.io" + } +} diff --git a/domains/stefdp.json b/domains/stefdp.json new file mode 100644 index 000000000..eec5c59c8 --- /dev/null +++ b/domains/stefdp.json @@ -0,0 +1,12 @@ +{ + "description": "Domain for my personal website", + "repo": "https://github.com/Stef-00012/stef-00012.github.io", + "owner": { + "username": "Stef-00012", + "email": "stefano.delprete.08@gmail.com", + "twitter": "Stef_Del_Prete" + }, + "record": { + "CNAME": "stef-00012.github.io" + } +} diff --git a/domains/steffen.json b/domains/steffen.json new file mode 100644 index 000000000..5b1d3fe23 --- /dev/null +++ b/domains/steffen.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/N0r1uno/n0r1uno.github.io", + "owner": { + "username": "N0r1uno", + "email": "noriunomakusui@gmail.com" + }, + "record": { + "CNAME": "n0r1uno.github.io" + } +} diff --git a/domains/stephan.json b/domains/stephan.json new file mode 100644 index 000000000..66707ef0c --- /dev/null +++ b/domains/stephan.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "stephan-strate", + "email": "hello@stephan.codes" + }, + "record": { + "URL": "https://stephan.codes" + } +} diff --git a/domains/steven.json b/domains/steven.json new file mode 100644 index 000000000..9fcf60d0a --- /dev/null +++ b/domains/steven.json @@ -0,0 +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" + } +} diff --git a/domains/stiforr.json b/domains/stiforr.json index 77be3c5e2..8d8dba535 100644 --- a/domains/stiforr.json +++ b/domains/stiforr.json @@ -1,9 +1,9 @@ { - "owner": { - "username": "stiforr", - "email": "norwood.sean@gmail.com" - }, - "record": { - "CNAME": "stiforr.com" - } -} \ No newline at end of file + "owner": { + "username": "stiforr", + "email": "norwood.sean@gmail.com" + }, + "record": { + "CNAME": "stiforr.com" + } +} diff --git a/domains/str1ke.json b/domains/str1ke.json new file mode 100644 index 000000000..a733755cc --- /dev/null +++ b/domains/str1ke.json @@ -0,0 +1,10 @@ +{ + "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..d6d086e2c --- /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/string-null.json b/domains/string-null.json new file mode 100644 index 000000000..474689e10 --- /dev/null +++ b/domains/string-null.json @@ -0,0 +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" + } +} diff --git a/domains/stringent.json b/domains/stringent.json new file mode 100644 index 000000000..934d63e0c --- /dev/null +++ b/domains/stringent.json @@ -0,0 +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" + } +} diff --git a/domains/struc.api.badboy.json b/domains/struc.api.badboy.json new file mode 100644 index 000000000..52b220670 --- /dev/null +++ b/domains/struc.api.badboy.json @@ -0,0 +1,10 @@ +{ + "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/stvn.json b/domains/stvn.json new file mode 100644 index 000000000..a64356daf --- /dev/null +++ b/domains/stvn.json @@ -0,0 +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" + } +} diff --git a/domains/sua.json b/domains/sua.json new file mode 100644 index 000000000..5f5084bdd --- /dev/null +++ b/domains/sua.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "SamiaIslamSua", + "email": "SamiaIslamSua@gmail.com" + }, + "record": { + "CNAME": "SamiaIslamSua.github.io" + } +} diff --git a/domains/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/subhayu.json b/domains/subhayu.json new file mode 100644 index 000000000..8b50d9218 --- /dev/null +++ b/domains/subhayu.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "subhayu99", + "email": "balasubhayu99@gmail.com" + }, + + "record": { + "CNAME": "subhayu99.github.io" + } +} 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 new file mode 100644 index 000000000..c83c98994 --- /dev/null +++ b/domains/sudev.json @@ -0,0 +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" + } +} diff --git a/domains/sudhan.json b/domains/sudhan.json new file mode 100644 index 000000000..04eebfac8 --- /dev/null +++ b/domains/sudhan.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "sudhanplayz", + "email": "sudhanplayz@gmail.com" + }, + "description": "A Personal Website for me", + "record": { + "URL": "https://sudhanplayz.live" + } +} 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/sujeeth.json b/domains/sujeeth.json new file mode 100644 index 000000000..1fcc19059 --- /dev/null +++ b/domains/sujeeth.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sujeethk", + "email": "sujeethkv@yahoo.com" + }, + "record": { + "A": ["74.59.143.202"] + } +} diff --git a/domains/suki.json b/domains/suki.json new file mode 100644 index 000000000..364a2fe6a --- /dev/null +++ b/domains/suki.json @@ -0,0 +1,13 @@ +{ + "description": "A cool website", + "repo": "https://github.com/SukiPlayz/hello-world", + "owner": { + "username": "SukiPlayz", + "email": "sukimayoo@outlook.com" + }, + "record": { + "A": ["212.193.3.66"], + "TXT": "v=spf1 a mx ip4:212.193.3.66 include:spf.improvmx.com ~all", + "MX": ["mx1.improvmx.com.", "mx2.improvmx.com."] + } +} diff --git a/domains/suman.json b/domains/suman.json new file mode 100644 index 000000000..9a3add074 --- /dev/null +++ b/domains/suman.json @@ -0,0 +1,12 @@ +{ + "description": "Suman's Personal Website", + "repo": "https://github.com/thatsuman/thatsuman.github.io", + "owner": { + "username": "thatsuman", + "email": "suman.multiverse@gmail.com", + "twitter": "thatsumann" + }, + "record": { + "CNAME": "thatsuman.github.io" + } +} diff --git a/domains/sumanjay.json b/domains/sumanjay.json new file mode 100644 index 000000000..377056905 --- /dev/null +++ b/domains/sumanjay.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..06ab4f94e --- /dev/null +++ b/domains/sumedhaa.json @@ -0,0 +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" + } +} diff --git a/domains/sunpodder.json b/domains/sunpodder.json new file mode 100644 index 000000000..e8229d518 --- /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 new file mode 100644 index 000000000..f908f4446 --- /dev/null +++ b/domains/superharmony910.json @@ -0,0 +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" + } +} diff --git a/domains/suraj.json b/domains/suraj.json new file mode 100644 index 000000000..606b478b8 --- /dev/null +++ b/domains/suraj.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..832b8e952 --- /dev/null +++ b/domains/surge.json @@ -0,0 +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" + } +} diff --git a/domains/suryaansh.json b/domains/suryaansh.json new file mode 100644 index 000000000..8d971684d --- /dev/null +++ b/domains/suryaansh.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..5e9d6a357 --- /dev/null +++ b/domains/suryansh.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "iamsuryanshxd", + "email": "legitsuryansh@gmail.com" + }, + "record": { + "URL": "https://github.com/iamsuryanshxd" + } +} diff --git a/domains/suspense.json b/domains/suspense.json new file mode 100644 index 000000000..147156d94 --- /dev/null +++ b/domains/suspense.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "Suspense4615", + "email": "", + "twitter": "Suspense4615" + }, + "record": { "CNAME": "suspense4615.github.io" } +} diff --git a/domains/sutirth.json b/domains/sutirth.json new file mode 100644 index 000000000..fdf390fc9 --- /dev/null +++ b/domains/sutirth.json @@ -0,0 +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" + } +} diff --git a/domains/svg.json b/domains/svg.json new file mode 100644 index 000000000..9013909e9 --- /dev/null +++ b/domains/svg.json @@ -0,0 +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" + } +} diff --git a/domains/svloog.json b/domains/svloog.json new file mode 100644 index 000000000..5e8a9065f --- /dev/null +++ b/domains/svloog.json @@ -0,0 +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" + } +} diff --git a/domains/swanny.json b/domains/swanny.json index b59c071c2..7136c35ad 100644 --- a/domains/swanny.json +++ b/domains/swanny.json @@ -1,12 +1,11 @@ { - "description": "Swanny is a Dev", - "repo": "https://github.com/swanny246/swannyIsADev/", - "owner": { - "username": "swanny246", - "email": "github@andrewswan.net" - }, - "record": { - "CNAME": "swannyisadev.andrewswan.net", - "URL": "https://swanny.is-a.dev" - } + "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 new file mode 100644 index 000000000..5356edac7 --- /dev/null +++ b/domains/swapnil.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..825c99623 --- /dev/null +++ b/domains/sx9.json @@ -0,0 +1,10 @@ +{ + "description": "SX's Website", + "owner": { + "username": "SX-9", + "email": "sx-91@outlook.com" + }, + "record": { + "CNAME": "sx-9.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 new file mode 100644 index 000000000..c29d37f39 --- /dev/null +++ b/domains/syahiramali.json @@ -0,0 +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" + } +} diff --git a/domains/sycured.json b/domains/sycured.json new file mode 100644 index 000000000..3f92e4984 --- /dev/null +++ b/domains/sycured.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "sycured", + "email": "sycured@protonmail.com" + }, + "record": { + "URL": "https://sycured.com" + } +} diff --git a/domains/syd.json b/domains/syd.json new file mode 100644 index 000000000..7e66b94c8 --- /dev/null +++ b/domains/syd.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "bububa", + "email": "prof.syd.xu@gmail.com" + }, + + "record": { + "CNAME": "bububa.github.io" + } +} 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/sylestic.json b/domains/sylestic.json new file mode 100644 index 000000000..191f96064 --- /dev/null +++ b/domains/sylestic.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "Sylestic", + "email": "", + "discord": "Sylestic#4231" + }, + "record": { + "CNAME": "sylestic.github.io" + } +} diff --git a/domains/syofyanzuhad.json b/domains/syofyanzuhad.json new file mode 100644 index 000000000..25c3b752d --- /dev/null +++ b/domains/syofyanzuhad.json @@ -0,0 +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" + } +} 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/tagbot.maskduck.json b/domains/tagbot.maskduck.json new file mode 100644 index 000000000..ae57914c8 --- /dev/null +++ b/domains/tagbot.maskduck.json @@ -0,0 +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" + } +} diff --git a/domains/taha.json b/domains/taha.json new file mode 100644 index 000000000..9cca8f90a --- /dev/null +++ b/domains/taha.json @@ -0,0 +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" + } +} diff --git a/domains/taha2002.json b/domains/taha2002.json new file mode 100644 index 000000000..180a8f5aa --- /dev/null +++ b/domains/taha2002.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "taha2002", + "email": "bouras1920@gmail.com" + }, + + "record": { + "CNAME": "taha2002.github.io" + } +} diff --git a/domains/tahakocabuga.json b/domains/tahakocabuga.json new file mode 100644 index 000000000..3fe7aded8 --- /dev/null +++ b/domains/tahakocabuga.json @@ -0,0 +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" + } +} diff --git a/domains/tahmidrayat.json b/domains/tahmidrayat.json new file mode 100644 index 000000000..cc2be1f49 --- /dev/null +++ b/domains/tahmidrayat.json @@ -0,0 +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" + } +} diff --git a/domains/takase.json b/domains/takase.json new file mode 100644 index 000000000..3d80740a9 --- /dev/null +++ b/domains/takase.json @@ -0,0 +1,11 @@ +{ + "description": "Takase's personal website", + "repo": "https://github.com/takase1121/takase1121.github.io", + "owner": { + "username": "takase1121", + "email": "takase1121@proton.me" + }, + "record": { + "CNAME": "takase1121.github.io" + } +} diff --git a/domains/tal7aouy.json b/domains/tal7aouy.json 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..4356bf006 --- /dev/null +++ b/domains/talinsharma.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TalinTheDev", + "email": "", + "discord": "AlphaMirage#9779" + }, + "description": "Personal portfolio and website", + "record": { + "CNAME": "jl6yvnz2.up.railway.app" + } +} diff --git a/domains/tallerthanshort.json b/domains/tallerthanshort.json new file mode 100644 index 000000000..c8da039f5 --- /dev/null +++ b/domains/tallerthanshort.json @@ -0,0 +1,11 @@ +{ + "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/tanio.json b/domains/tanio.json new file mode 100644 index 000000000..b4bc5f56c --- /dev/null +++ b/domains/tanio.json @@ -0,0 +1,10 @@ +{ + "description": "Hello World", + "owner": { + "username": "tanmyid", + "email": "tanmyid1337@gmail.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/tanish2002.json b/domains/tanish2002.json new file mode 100644 index 000000000..f337dc1cb --- /dev/null +++ b/domains/tanish2002.json @@ -0,0 +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" + } +} diff --git a/domains/tanishq.json b/domains/tanishq.json new file mode 100644 index 000000000..f545f13c3 --- /dev/null +++ b/domains/tanishq.json @@ -0,0 +1,11 @@ +{ + "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/tanos.json b/domains/tanos.json new file mode 100644 index 000000000..20fcb2ad9 --- /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 new file mode 100644 index 000000000..c4b784514 --- /dev/null +++ b/domains/tanu.json @@ -0,0 +1,12 @@ +{ + "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/tanyalai.json b/domains/tanyalai.json new file mode 100644 index 000000000..0dcc79645 --- /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/tarik.json b/domains/tarik.json new file mode 100644 index 000000000..ab9565c8d --- /dev/null +++ b/domains/tarik.json @@ -0,0 +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" + } +} diff --git a/domains/tarna.json b/domains/tarna.json new file mode 100644 index 000000000..f94809b47 --- /dev/null +++ b/domains/tarna.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tarna", + "email": "tarungadiraju123@gmail.com" + }, + "record": { + "URL": "https://github.com/tarna" + } +} 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/tat2008.json b/domains/tat2008.json new file mode 100644 index 000000000..7c1c8a108 --- /dev/null +++ b/domains/tat2008.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tat2008", + "email": "tuan.trananh2008@gmail.com" + }, + + "record": { + "CNAME": "profile-card-1ug.pages.dev" + } +} diff --git a/domains/tavignesh.json b/domains/tavignesh.json new file mode 100644 index 000000000..d73a00a68 --- /dev/null +++ b/domains/tavignesh.json @@ -0,0 +1,10 @@ +{ + "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/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/tayu.json b/domains/tayu.json new file mode 100644 index 000000000..c9847f281 --- /dev/null +++ b/domains/tayu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tayudev", + "email": "mizuto.discord@gmail.com" + }, + "record": { + "URL": "https://tayu25.netlify.app" + } +} diff --git a/domains/tca.json b/domains/tca.json new file mode 100644 index 000000000..c8c2625b3 --- /dev/null +++ b/domains/tca.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..267e76625 --- /dev/null +++ b/domains/tcdavo.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..7a38e0a7e --- /dev/null +++ b/domains/tcl.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..b660dfba3 --- /dev/null +++ b/domains/tclement0922.json @@ -0,0 +1,11 @@ +{ + "description": "tclement0922's personal site", + "repo": "https://github.com/tclement0922/tclement0922.github.io", + "owner": { + "username": "tclement0922", + "email": "dev.tclement0922@gmail.com" + }, + "record": { + "CNAME": "tclement0922.github.io" + } +} diff --git a/domains/tdkchat.json b/domains/tdkchat.json new file mode 100644 index 000000000..fef556d41 --- /dev/null +++ b/domains/tdkchat.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "MattTheTekie", + "email": "Mattmason2211@gmail.com" + }, + "record": { + "CNAME": "test72.eu.org" + } + } + \ No newline at end of file diff --git a/domains/tdm.json b/domains/tdm.json new file mode 100644 index 000000000..5fe3a7cb0 --- /dev/null +++ b/domains/tdm.json @@ -0,0 +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" + } +} diff --git a/domains/tea.json b/domains/tea.json new file mode 100644 index 000000000..a5fd3444f --- /dev/null +++ b/domains/tea.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheTeaCup", + "email": "", + "discord": "Tea Cup#9999" + }, + "record": { + "CNAME": "dedicated.theteacup.dev" + } +} diff --git a/domains/team.json b/domains/team.json new file mode 100644 index 000000000..4aa1cf321 --- /dev/null +++ b/domains/team.json @@ -0,0 +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", + "email": "phenax5@gmail.com" + }, + "record": { + "CNAME": "is-a-dev.github.io" + } +} diff --git a/domains/tech-geek-united.json b/domains/tech-geek-united.json new file mode 100644 index 000000000..3634622f5 --- /dev/null +++ b/domains/tech-geek-united.json @@ -0,0 +1,15 @@ +{ + "owner": { + "username": "TechGeekUnited", + "email": "TGUyt.dev@gmail.com", + "discord": "TechGeekUnited#4329" + }, + "record": { + "URL": "https://techgeekunited.github.io", + "MX": [ + "mx1.improvmx.com", + "mx2.improvmx.com" + ], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/tech.json b/domains/tech.json new file mode 100644 index 000000000..f7a6f7384 --- /dev/null +++ b/domains/tech.json @@ -0,0 +1,10 @@ +{ + "repo": "https://github.com/techpixel/techpixel.github.io", + "owner": { + "username": "techpixel", + "email": "yralqfwus@mozmail.com" + }, + "record": { + "CNAME": "techpixel.github.io" + } +} diff --git a/domains/techctg24.json b/domains/techctg24.json new file mode 100644 index 000000000..c8d4ba0c8 --- /dev/null +++ b/domains/techctg24.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "rakibctg", + "email": "eunus527@gmail.com" + }, + + "record": { + "URL": "https://techctg24.dev" + } +} diff --git a/domains/technohacker.json b/domains/technohacker.json new file mode 100644 index 000000000..930683a02 --- /dev/null +++ b/domains/technohacker.json @@ -0,0 +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" + } +} diff --git a/domains/technopaws.json b/domains/technopaws.json new file mode 100644 index 000000000..eb2656741 --- /dev/null +++ b/domains/technopaws.json @@ -0,0 +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" + } +} diff --git a/domains/techout.json b/domains/techout.json new file mode 100644 index 000000000..994ea666b --- /dev/null +++ b/domains/techout.json @@ -0,0 +1,11 @@ +{ + "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/techstarmahesh.json b/domains/techstarmahesh.json new file mode 100644 index 000000000..539f40fb7 --- /dev/null +++ b/domains/techstarmahesh.json @@ -0,0 +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" + } +} diff --git a/domains/techy.json b/domains/techy.json new file mode 100644 index 000000000..91b3afe03 --- /dev/null +++ b/domains/techy.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..4de89dcfd --- /dev/null +++ b/domains/tejas.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..a088c028b --- /dev/null +++ b/domains/tekno.json @@ -0,0 +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"] + } +} diff --git a/domains/teletvbis.json b/domains/teletvbis.json new file mode 100644 index 000000000..d20df25eb --- /dev/null +++ b/domains/teletvbis.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Necesku", + "email": "105011954+Necesku@users.noreply.github.com", + "discord": "702682685713416222" + }, + + "record": { + "A": ["185.117.0.194"] + } +} diff --git a/domains/ten.json b/domains/ten.json new file mode 100644 index 000000000..e8349394c --- /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/teobouvard.json b/domains/teobouvard.json new file mode 100644 index 000000000..aec1bf9e2 --- /dev/null +++ b/domains/teobouvard.json @@ -0,0 +1,11 @@ +{ + "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/teriko.json b/domains/teriko.json new file mode 100644 index 000000000..2de1f9a30 --- /dev/null +++ b/domains/teriko.json @@ -0,0 +1,13 @@ +{ + "owner": { + "username": "exelenuwu", + "email": "", + "twitter": "terikopog", + "discord": "teriko." + }, + "record": { + "A": [ + "45.8.22.34" + ] + } +} diff --git a/domains/termonoid.json b/domains/termonoid.json new file mode 100644 index 000000000..890757296 --- /dev/null +++ b/domains/termonoid.json @@ -0,0 +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"] + } +} diff --git a/domains/terroid.json b/domains/terroid.json new file mode 100644 index 000000000..983947a4f --- /dev/null +++ b/domains/terroid.json @@ -0,0 +1,12 @@ +{ + "description": "Portfolio", + "repo": "https://github.com/skandabhairava/skandabhairava.github.io", + "owner": { + "username": "skandabhairava", + "email": "skandabhairava@gmail.com", + "twitter": "TerroidYT" + }, + "record": { + "CNAME": "skandabhairava.github.io" + } +} diff --git a/domains/tesla.json b/domains/tesla.json new file mode 100644 index 000000000..3c454e9bb --- /dev/null +++ b/domains/tesla.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..98333b86c --- /dev/null +++ b/domains/tessa.json @@ -0,0 +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" + } +} 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/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/thaihung.json b/domains/thaihung.json new file mode 100644 index 000000000..f18842afb --- /dev/null +++ b/domains/thaihung.json @@ -0,0 +1,20 @@ +{ + "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/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/thanbv1510.json b/domains/thanbv1510.json new file mode 100644 index 000000000..2923ce121 --- /dev/null +++ b/domains/thanbv1510.json @@ -0,0 +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" + } +} diff --git a/domains/tharindu.json b/domains/tharindu.json new file mode 100644 index 000000000..d167a522f --- /dev/null +++ b/domains/tharindu.json @@ -0,0 +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" + } +} 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/theark.json b/domains/theark.json new file mode 100644 index 000000000..9893bd7be --- /dev/null +++ b/domains/theark.json @@ -0,0 +1,11 @@ +{ + "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/thebidouilleur.json b/domains/thebidouilleur.json new file mode 100644 index 000000000..c09f64f9f --- /dev/null +++ b/domains/thebidouilleur.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..2a46f76c5 --- /dev/null +++ b/domains/thecode-breaker.json @@ -0,0 +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": "theCodeBreaker.dev@gmail.com" + }, + "record": { + "CNAME": "thecode-breaker.github.io" + } +} diff --git a/domains/theconcepteur.json b/domains/theconcepteur.json new file mode 100644 index 000000000..ad1a8d935 --- /dev/null +++ b/domains/theconcepteur.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "th3conc3pt3ur", + "email": "conceptordev@gmail.com" + }, + + "record": { + "A": ["37.187.6.109"] + } +} diff --git a/domains/thedev.json b/domains/thedev.json new file mode 100644 index 000000000..2236897cd --- /dev/null +++ b/domains/thedev.json @@ -0,0 +1,11 @@ +{ + "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/theekshana.json b/domains/theekshana.json new file mode 100644 index 000000000..173664392 --- /dev/null +++ b/domains/theekshana.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TheekshanaSL", + "email": "theekshana@technologist.com" + }, + + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/thegloriousduck.json b/domains/thegloriousduck.json new file mode 100644 index 000000000..ad21d0e14 --- /dev/null +++ b/domains/thegloriousduck.json @@ -0,0 +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" + } +} diff --git a/domains/theh2so4.json b/domains/theh2so4.json new file mode 100644 index 000000000..b485aa5db --- /dev/null +++ b/domains/theh2so4.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "theh2so4", + "email": "theh2so4@protonmail.com" + }, + + "record": { + "A": ["185.27.134.148"] + } +} diff --git a/domains/thehackerdude1083.json b/domains/thehackerdude1083.json new file mode 100644 index 000000000..c97024a4d --- /dev/null +++ b/domains/thehackerdude1083.json @@ -0,0 +1,11 @@ +{ + "description": "Running my new website", + "repo": "https://github.com/TheHackerDude1083/TheHackerDude1083.github.io", + "owner": { + "username": "TheHackerDude1083", + "email": "shaheeransari57@gmail.com" + }, + "record": { + "CNAME": "TheHackerDude1083.github.io" + } +} diff --git a/domains/thejus-m.json b/domains/thejus-m.json new file mode 100644 index 000000000..9757db1f7 --- /dev/null +++ b/domains/thejus-m.json @@ -0,0 +1,9 @@ +{ + "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..367c6f555 --- /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/thepatik.json b/domains/thepatik.json new file mode 100644 index 000000000..3b9f15351 --- /dev/null +++ b/domains/thepatik.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "patik123", + "email": "patik.developer@outlook.com" + }, + "record": { + "CNAME": "www.thepatik.com" + } +} diff --git a/domains/thequackyduck.json b/domains/thequackyduck.json new file mode 100644 index 000000000..fcc90af1a --- /dev/null +++ b/domains/thequackyduck.json @@ -0,0 +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" + } +} diff --git a/domains/therealgeodash.json b/domains/therealgeodash.json new file mode 100644 index 000000000..652978f52 --- /dev/null +++ b/domains/therealgeodash.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "TheRealGeoDash2019", + "email": "therealgeodash@lhost.dev", + "discord": "710268763844640839" + }, + "record": { + "CNAME": "lhost.dev" + } + } + \ No newline at end of file diff --git a/domains/therealviki.json b/domains/therealviki.json new file mode 100644 index 000000000..f712290a9 --- /dev/null +++ b/domains/therealviki.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "SreevikramR", + "email": "sreevikram.r@gmail.com" + }, + + "record": { + "CNAME": "nextjs-production-a65b.up.railway.app" + } +} 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 new file mode 100644 index 000000000..8c1eed507 --- /dev/null +++ b/domains/therookiecoder.json @@ -0,0 +1,10 @@ +{ + "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..effbd3d1a --- /dev/null +++ b/domains/thesanju.json @@ -0,0 +1,12 @@ +{ + "description": "personal portfolio website", + "repo": "https://github.com/thesanju/thesanju.github.io", + "owner": { + "username": "thesanju", + "email": "sanjayjr1official@gmail.com", + "twitter": "Sanjay69__" + }, + "record": { + "CNAME": "thesanju.github.io" + } +} diff --git a/domains/thesct22.json b/domains/thesct22.json index 2d1fdfff0..d2c8a29f2 100644 --- a/domains/thesct22.json +++ b/domains/thesct22.json @@ -6,5 +6,4 @@ "record": { "CNAME": "thesct22.github.io" } - } - \ No newline at end of file +} \ No newline at end of file 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 new file mode 100644 index 000000000..de4ee7c07 --- /dev/null +++ b/domains/thet3o.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "thet3o", + "email": "thet3o@yahoo.com" + }, + + "record": { + "MX": ["mx.mailtie.com"] + } +} diff --git a/domains/thetechnikfreak.json b/domains/thetechnikfreak.json new file mode 100644 index 000000000..f6fff7181 --- /dev/null +++ b/domains/thetechnikfreak.json @@ -0,0 +1,18 @@ +{ + "owner": { + "username": "thetechnikfreak", + "email": "", + "discord": "TheTechnikFreak#3314" + }, + "record": { + "A": [ + "52.21.33.16", + "18.184.197.212" + ], + "MX": [ + "mx.zoho.eu", + "mx2.zoho.eu", + "mx3.zoho.eu" + ] + } +} diff --git a/domains/thewickedkarma.json b/domains/thewickedkarma.json new file mode 100644 index 000000000..8393fda7a --- /dev/null +++ b/domains/thewickedkarma.json @@ -0,0 +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" + } +} 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/this.json b/domains/this.json new file mode 100644 index 000000000..789c1a31f --- /dev/null +++ b/domains/this.json @@ -0,0 +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." +} 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/thomas-shelby.json b/domains/thomas-shelby.json new file mode 100644 index 000000000..5df0062b1 --- /dev/null +++ b/domains/thomas-shelby.json @@ -0,0 +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" + } +} diff --git a/domains/thomas.json b/domains/thomas.json new file mode 100644 index 000000000..559ac1136 --- /dev/null +++ b/domains/thomas.json @@ -0,0 +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" + } +} diff --git a/domains/thomasc.json b/domains/thomasc.json new file mode 100644 index 000000000..e318a9512 --- /dev/null +++ b/domains/thomasc.json @@ -0,0 +1,11 @@ +{ + "description": "Hopefully Thomas Croft's is-a.dev site", + "repo": "https://github.com/thomascf/thomascf.github.io", + "owner": { + "username": "thomascf", + "email": "thomas.croft@pm.me" + }, + "record": { + "CNAME": "thomascf.github.io" + } +} diff --git a/domains/thomasfrost.json b/domains/thomasfrost.json new file mode 100644 index 000000000..90e516295 --- /dev/null +++ b/domains/thomasfrost.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "frosttho", + "email": "thomas@ksg-media.de" + }, + "record": { + "A": ["167.71.34.179"] + } +} diff --git a/domains/thorgathis.json b/domains/thorgathis.json new file mode 100644 index 000000000..00334985a --- /dev/null +++ b/domains/thorgathis.json @@ -0,0 +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" + } +} diff --git a/domains/tiantcl.json b/domains/tiantcl.json new file mode 100644 index 000000000..7a38e0a7e --- /dev/null +++ b/domains/tiantcl.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ebe566d42 --- /dev/null +++ b/domains/tibebe.json @@ -0,0 +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" + } +} diff --git a/domains/tigerbyte.json b/domains/tigerbyte.json new file mode 100644 index 000000000..78232c6aa --- /dev/null +++ b/domains/tigerbyte.json @@ -0,0 +1,11 @@ +{ + "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/tikter.json b/domains/tikter.json new file mode 100644 index 000000000..374a24c6f --- /dev/null +++ b/domains/tikter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "njanemmu", + "email": "aneenababu71901@gmail.com" + }, + "record": { + "CNAME": "c14c2346-1c5a-4bf0-b9dc-d47fc8263e86.id.repl.co" + } +} diff --git a/domains/tilak.json b/domains/tilak.json new file mode 100644 index 000000000..08b2b23f7 --- /dev/null +++ b/domains/tilak.json @@ -0,0 +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" + } +} diff --git a/domains/tim-q.json b/domains/tim-q.json new file mode 100644 index 000000000..73c8fd2a4 --- /dev/null +++ b/domains/tim-q.json @@ -0,0 +1,11 @@ +{ + "description": "My personal portfolio", + "owner": { + "username": "tim-it-ger", + "email": "contact@tim-q.de", + "discord": "Vatic#0920" + }, + "record": { + "CNAME": "tim-q.de" + } +} diff --git a/domains/tim.json b/domains/tim.json new file mode 100644 index 000000000..b1f0389c1 --- /dev/null +++ b/domains/tim.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..df7d13527 --- /dev/null +++ b/domains/tim232.json @@ -0,0 +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" + } +} diff --git a/domains/timka.json b/domains/timka.json new file mode 100644 index 000000000..758922f27 --- /dev/null +++ b/domains/timka.json @@ -0,0 +1,11 @@ +{ + "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/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 new file mode 100644 index 000000000..59219670b --- /dev/null +++ b/domains/timothynn.json @@ -0,0 +1,12 @@ +{ + "description": "timothynn's personal website", + "repo": "https://github.com/timothynn/timothynn.github.io", + "owner": { + "username": "timothynn", + "email": "timothynn08@gmail.com", + "twitter": "timothynn_" + }, + "record": { + "CNAME": "timothynn.github.io" + } +} diff --git a/domains/tisch.json b/domains/tisch.json new file mode 100644 index 000000000..729de9526 --- /dev/null +++ b/domains/tisch.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Small-talking", + "email": "schreiber.robin@icloud.com" + }, + "record": { + "CNAME": "isadev.pages.dev" + } +} diff --git a/domains/tiuri.json b/domains/tiuri.json new file mode 100644 index 000000000..5879ab145 --- /dev/null +++ b/domains/tiuri.json @@ -0,0 +1,11 @@ +{ + "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..8fc13bb97 --- /dev/null +++ b/domains/tiwknowsall.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tiwlinkskwazeh", + "email": "kwazehh@proton.me" + }, + "record": { + "URL": "https://tiw2.pages.dev/" + } + } + \ No newline at end of file diff --git a/domains/tjr.json b/domains/tjr.json new file mode 100644 index 000000000..4b4a6010c --- /dev/null +++ b/domains/tjr.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tjrgg", + "email": "hello@tjrgg.co" + }, + "record": { + "URL": "https://tjrgg.co" + } +} diff --git a/domains/tjrgg.json b/domains/tjrgg.json new file mode 100644 index 000000000..4b4a6010c --- /dev/null +++ b/domains/tjrgg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tjrgg", + "email": "hello@tjrgg.co" + }, + "record": { + "URL": "https://tjrgg.co" + } +} diff --git a/domains/tk.json b/domains/tk.json new file mode 100644 index 000000000..04e1c7299 --- /dev/null +++ b/domains/tk.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "thaddeuskkr", + "email": "thaddeuskkr@gmail.com" + }, + + "record": { + "A": ["138.2.69.79"] + } +} 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 new file mode 100644 index 000000000..154345f91 --- /dev/null +++ b/domains/toan.json @@ -0,0 +1,11 @@ +{ + "description": "Hashnode Blog", + "repo": "https://github.com/ductoanvo", + "owner": { + "username": "ductoanvo", + "email": "toan@duck.com" + }, + "record": { + "CNAME": "hashnode.network" + } +} diff --git a/domains/toasted.json b/domains/toasted.json new file mode 100644 index 000000000..c332e1d06 --- /dev/null +++ b/domains/toasted.json @@ -0,0 +1,11 @@ +{ + "description": "The official portfolio of ToastedToast/Toastify. Built with Astro, Tailwind CSS, and Daisy UI.", + "repo": "https://github.com/ToastifyDev/portfolio", + "owner": { + "username": "ToastifyDev", + "email": "hey@toastify.tk" + }, + "record": { + "CNAME": "toastifydev.github.io" + } +} diff --git a/domains/toastersticks.json b/domains/toastersticks.json new file mode 100644 index 000000000..35f67fb89 --- /dev/null +++ b/domains/toastersticks.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ToasterSticks", + "email": "matt.zhao.18@gmail.com" + }, + + "record": { + "CNAME": "border.hop.io" + } +} diff --git a/domains/tobey.json b/domains/tobey.json new file mode 100644 index 000000000..12354712f --- /dev/null +++ b/domains/tobey.json @@ -0,0 +1,11 @@ +{ + "description": "Tobey is a dev", + "repo": "https://github.com/yebot", + "owner": { + "username": "yebot", + "email": "tobeyforsman@gmail.com" + }, + "record": { + "URL": "https://twitter.com/TobeyForsman" + } +} 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 new file mode 100644 index 000000000..08dd37752 --- /dev/null +++ b/domains/todo.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..cf8601fee --- /dev/null +++ b/domains/tokisaki.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..dbaeb9217 --- /dev/null +++ b/domains/tokyo.json @@ -0,0 +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" + } +} diff --git a/domains/tolis.json b/domains/tolis.json new file mode 100644 index 000000000..7740ffeff --- /dev/null +++ b/domains/tolis.json @@ -0,0 +1,10 @@ +{ + "description": "TolisDev Blog", + "owner": { + "username": "tolisdev", + "email": "apostolos@tolisuwu.xyz" + }, + "record": { + "A": ["167.235.239.76"] + } +} 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 b14ef1090..3e20b90fc 100644 --- a/domains/tomas.json +++ b/domains/tomas.json @@ -1,7 +1,7 @@ { "description": "Tomas's personal developer website", "owner": { - "username": "Tomas Ukrinas", + "username": "Tomaas0", "email": "tomas@ukrinas.eu" }, "record": { diff --git a/domains/tomcollis.json b/domains/tomcollis.json new file mode 100644 index 000000000..a79eeb1be --- /dev/null +++ b/domains/tomcollis.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "tomcollis", + "email": "tomuky2k@msn.com" + }, + + "record": { + "URL": "https://github.com/tomcollis" + } +} diff --git a/domains/tomdavid.json b/domains/tomdavid.json new file mode 100644 index 000000000..321ee0d95 --- /dev/null +++ b/domains/tomdavid.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tomasdav9", + "email": "tomasdav9@gmail.com" + }, + "record": { + "CNAME": "gatsbyportfolio23972.gatsbyjs.io" + } +} diff --git a/domains/tomteck.json b/domains/tomteck.json new file mode 100644 index 000000000..4b73f129f --- /dev/null +++ b/domains/tomteck.json @@ -0,0 +1,11 @@ + + { + "owner": { + "username": "shandralor", + "email": "tom.teck@gmail.com" + }, + "record": { + "CNAME": "shandralor.github.io" + } + } + \ No newline at end of file diff --git a/domains/tong.json b/domains/tong.json new file mode 100644 index 000000000..481e507f9 --- /dev/null +++ b/domains/tong.json @@ -0,0 +1,11 @@ +{ + "description": "Tong's website", + "repo": "https://github.com/away0x/away0x", + "owner": { + "username": "tongwu", + "email": "away0x@gmail.com" + }, + "record": { + "CNAME": "away0x.github.io" + } +} diff --git a/domains/tonycolston.json b/domains/tonycolston.json new file mode 100644 index 000000000..43cee1708 --- /dev/null +++ b/domains/tonycolston.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..b1651f71d --- /dev/null +++ b/domains/tonywu.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..6087a72da --- /dev/null +++ b/domains/too-obvious-that.maskduck.json @@ -0,0 +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" + } +} diff --git a/domains/toster.json b/domains/toster.json new file mode 100644 index 000000000..f3a2912f5 --- /dev/null +++ b/domains/toster.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Rafau04", + "email": "matiz.rafal@gmail.com" + }, + "record": { + "CNAME": "Rafau04.github.io" + } +} diff --git a/domains/tovade.json b/domains/tovade.json new file mode 100644 index 000000000..d4299693d --- /dev/null +++ b/domains/tovade.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..d0b8be6ad --- /dev/null +++ b/domains/toxocious.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..abd5f57a8 --- /dev/null +++ b/domains/tracker-brawley.json @@ -0,0 +1,11 @@ +{ + "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/tranthanhlong.json b/domains/tranthanhlong.json new file mode 100644 index 000000000..8d46e0781 --- /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 new file mode 100644 index 000000000..c0419b598 --- /dev/null +++ b/domains/trapdev.json @@ -0,0 +1,11 @@ +{ + "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/trauma.json b/domains/trauma.json new file mode 100644 index 000000000..1ef600d4b --- /dev/null +++ b/domains/trauma.json @@ -0,0 +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" + } +} diff --git a/domains/tricked.json b/domains/tricked.json new file mode 100644 index 000000000..226d0858c --- /dev/null +++ b/domains/tricked.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..76caf34c7 --- /dev/null +++ b/domains/tristan.json @@ -0,0 +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" + } +} diff --git a/domains/trug.json b/domains/trug.json new file mode 100644 index 000000000..91ce12c59 --- /dev/null +++ b/domains/trug.json @@ -0,0 +1,11 @@ +{ + "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/tsic404.json b/domains/tsic404.json new file mode 100644 index 000000000..48bb5a267 --- /dev/null +++ b/domains/tsic404.json @@ -0,0 +1,11 @@ +{ + "description": "tsic404 personal website", + "repo": "https://github.com/tsic404/blog", + "owner": { + "username": "tsic404", + "email": "tsicliu@foxmail.com" + }, + "record": { + "CNAME": "tsic.top" + } +} 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 0bda80bfe..8aafa46be 100644 --- a/domains/tsull360.json +++ b/domains/tsull360.json @@ -6,7 +6,6 @@ "email": "tsull360@outlook.com" }, "record": { - "CNAME": "tsull360.github.io", - "URL": "https://tsull360.is-a.dev" + "CNAME": "tsull360.github.io" } } diff --git a/domains/tts.deva.json b/domains/tts.deva.json new file mode 100644 index 000000000..5194aa0a1 --- /dev/null +++ b/domains/tts.deva.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "turbomaster95", + "email": "devamidhun.3c.kmbvm@gmail.com" + }, + + "record": { + "CNAME": "48c10554-32ea-4bc5-98f8-5f062b511ad1.id.repl.co" + } +} diff --git a/domains/tube.json b/domains/tube.json new file mode 100644 index 000000000..672729520 --- /dev/null +++ b/domains/tube.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "t-ub3", + "email": "tfl.kids@gmail.com" + }, + "record": { + "URL": "https://tube.uwu.ai" + } + } + \ No newline at end of file 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 new file mode 100644 index 000000000..1af1d1348 --- /dev/null +++ b/domains/tukimi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "kr-tukimi", + "email": "", + "twitter": "kr_tukimi" + }, + "record": { + "URL": "https://tuki.dev" + } +} diff --git a/domains/tungtran.json b/domains/tungtran.json new file mode 100644 index 000000000..7338e06fb --- /dev/null +++ b/domains/tungtran.json @@ -0,0 +1,12 @@ +{ + "description": "tungtran's resume", + "repo": "https://github.com/tunganhtran/tunganhtran.github.io", + "owner": { + "username": "tunganhtran", + "email": "tunganhtran94@gmail.com" + }, + + "record": { + "CNAME": "tunganhtran.github.io" + } +} diff --git a/domains/turvenuija.json b/domains/turvenuija.json new file mode 100644 index 000000000..3f4f84cbb --- /dev/null +++ b/domains/turvenuija.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "turvenuija1", + "email": "turvenuija@skidd.xyz" + }, + "record": { + "CNAME": "turvenuija.munsivu.fi" + } + } + \ No newline at end of file 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/tyler.json b/domains/tyler.json index 804841038..f67068490 100644 --- a/domains/tyler.json +++ b/domains/tyler.json @@ -6,7 +6,6 @@ "email": "tyler@tjm.dev" }, "record": { - "CNAME": "tjm.dev", - "URL": "https://tyler.is-a.dev" + "CNAME": "tjm.dev" } -} \ No newline at end of file +} diff --git a/domains/tyman.json b/domains/tyman.json new file mode 100644 index 000000000..08c0a3dbe --- /dev/null +++ b/domains/tyman.json @@ -0,0 +1,12 @@ +{ + "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/typicalne.json b/domains/typicalne.json new file mode 100644 index 000000000..b2fe731b0 --- /dev/null +++ b/domains/typicalne.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "TypicalShavonne", + "email": "tranhuonghp1972@gmail.com" + }, + + "record": { + "A": ["66.118.234.244"] + } +} diff --git a/domains/udaya.json b/domains/udaya.json new file mode 100644 index 000000000..e20c7f5d1 --- /dev/null +++ b/domains/udaya.json @@ -0,0 +1,9 @@ +{ + "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..534199887 --- /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/ultimatemedia.json b/domains/ultimatemedia.json new file mode 100644 index 000000000..12cc3c992 --- /dev/null +++ b/domains/ultimatemedia.json @@ -0,0 +1,18 @@ +{ + "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/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/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 new file mode 100644 index 000000000..89f841fbd --- /dev/null +++ b/domains/unichord.json @@ -0,0 +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" + } +} diff --git a/domains/uniclicker2.m1dnight.json b/domains/uniclicker2.m1dnight.json new file mode 100644 index 000000000..3e04b8dd0 --- /dev/null +++ b/domains/uniclicker2.m1dnight.json @@ -0,0 +1,11 @@ +{ + "description": "UniClicker2 Based in JS", + "repo": "https://UniClicker-2-Webveiw-Edition.m1dnightdev.repl.co", + "owner": { + "username": "M1dnight", + "email": "m1dnightgmrofficial@gmail.com" + }, + "record": { + "CNAME": "2b82bbc0-2fa0-40ac-89fe-530e73b20c0b.id.repl.co" + } +} diff --git a/domains/unidentifiedx.json b/domains/unidentifiedx.json 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/unknown-user2.json b/domains/unknown-user2.json new file mode 100644 index 000000000..54a3eb5a9 --- /dev/null +++ b/domains/unknown-user2.json @@ -0,0 +1,11 @@ +{ + "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/unseen.json b/domains/unseen.json new file mode 100644 index 000000000..68bfb93f4 --- /dev/null +++ b/domains/unseen.json @@ -0,0 +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" + } +} diff --git a/domains/unwork-id.json b/domains/unwork-id.json new file mode 100644 index 000000000..27a58a3d4 --- /dev/null +++ b/domains/unwork-id.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..51fdbf69a --- /dev/null +++ b/domains/up.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..d3fb9e6c5 --- /dev/null +++ b/domains/upcraft.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "upcraftlp", + "email": "", + "twitter": "upcraftlp" + }, + "record": { + "URL": "https://upcraft.dev" + } +} diff --git a/domains/urduck.json b/domains/urduck.json new file mode 100644 index 000000000..b4605040a --- /dev/null +++ b/domains/urduck.json @@ -0,0 +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" + } +} diff --git a/domains/used-to-be-daddy.json b/domains/used-to-be-daddy.json new file mode 100644 index 000000000..59f383846 --- /dev/null +++ b/domains/used-to-be-daddy.json @@ -0,0 +1,10 @@ +{ + "description": "I used to be daddy", + "owner": { + "username": "MouseMoosz", + "email": "mousemoosz@protonmail.com" + }, + "record": { + "URL": "https://mousemoosz.is-a.dev" + } +} diff --git a/domains/useless.json b/domains/useless.json new file mode 100644 index 000000000..aa9cacbfc --- /dev/null +++ b/domains/useless.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "ItzAfroBoy", + "email": "me.caramackid@gmail.com" + }, + "record": { + "A": ["209.250.230.249"] + } +} diff --git a/domains/user-exe.json b/domains/user-exe.json new file mode 100644 index 000000000..e55dd8a46 --- /dev/null +++ b/domains/user-exe.json @@ -0,0 +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" + } +} diff --git a/domains/username.json b/domains/username.json new file mode 100644 index 000000000..2c24fc84c --- /dev/null +++ b/domains/username.json @@ -0,0 +1,11 @@ +{ + "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..8fccd0431 --- /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" + } +} \ No newline at end of file diff --git a/domains/usman.json b/domains/usman.json new file mode 100644 index 000000000..67bffaa86 --- /dev/null +++ b/domains/usman.json @@ -0,0 +1,11 @@ +{ + "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/utsav.json b/domains/utsav.json new file mode 100644 index 000000000..669dc4a20 --- /dev/null +++ b/domains/utsav.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "dr-hofstadter", + "email": "utsav.raj.338@gmail.com" + }, + "record": { + "CNAME": "dr-hofstadter.github.io" + } +} diff --git a/domains/uynilo9.json b/domains/uynilo9.json new file mode 100644 index 000000000..50a548fc7 --- /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/vachanmn.json b/domains/vachanmn.json new file mode 100644 index 000000000..114845c5e --- /dev/null +++ b/domains/vachanmn.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vachanmn123", + "email": "vachanmn123@gmail.com" + }, + + "record": { + "A": ["185.199.108.153"] + } +} diff --git a/domains/vadimhl.json b/domains/vadimhl.json new file mode 100644 index 000000000..bb179f069 --- /dev/null +++ b/domains/vadimhl.json @@ -0,0 +1,10 @@ +{ + "description": "My site", + "owner": { + "username": "vadimhl", + "email": "vadimhl@gmail.com" + }, + "record": { + "A": ["130.61.49.110"] + } +} diff --git a/domains/vaibhav.json b/domains/vaibhav.json new file mode 100644 index 000000000..efec635c1 --- /dev/null +++ b/domains/vaibhav.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Vaibhav-Kashyap07", + "email": "", + "discord": "Vaibhav Kashyap#5747" + }, + "repo": "https://github.com/Vaibhav-Kashyap07/Vaibhav-Kashyap07.github.io", + "record": { + "CNAME": "Vaibhav-Kashyap07.github.io" + } +} diff --git a/domains/vaibhavsys.json b/domains/vaibhavsys.json new file mode 100644 index 000000000..f239ad6e4 --- /dev/null +++ b/domains/vaibhavsys.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VaibhavSys", + "email": "vaibhavdhi@proton.me" + }, + "record": { + "URL": "https://www.vaibhav.studio" + } +} diff --git a/domains/val.json b/domains/val.json new file mode 100644 index 000000000..d29b8b931 --- /dev/null +++ b/domains/val.json @@ -0,0 +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" + } +} diff --git a/domains/valswap.json b/domains/valswap.json new file mode 100644 index 000000000..0ee2c1a72 --- /dev/null +++ b/domains/valswap.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "daflixy", + "email": "andy.gilbert.uk99@gmail.com" + }, + + "record": { + "CNAME": "50064ad8-eb2d-4d8d-8e1c-62d0bd99b448.id.repl.co" + } +} diff --git a/domains/vamsi.json b/domains/vamsi.json new file mode 100644 index 000000000..c49fab7f0 --- /dev/null +++ b/domains/vamsi.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "vamsieth", + "email": "svamsi.tech@gmail.com" + }, + "record": { + "CNAME": "240d43d7-5eea-4fdd-a568-efa5978f8d80.id.repl.co" + } +} 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/vapedevv.json b/domains/vapedevv.json new file mode 100644 index 000000000..3761e2c13 --- /dev/null +++ b/domains/vapedevv.json @@ -0,0 +1,12 @@ +{ + "description": "My discord profile & portfolio", + "repo": "https://github.com/jadjasjafsafasfasfsa/gkdgskgkskgksbbsdbsgsd", + "owner": { + "username": "jadjasjafsafasfasfsa", + "email": "vapedev2@gmail.com", + "discord": "vapedevv#5640" + }, + "record": { + "CNAME": "jadjasjafsafasfasfsa.github.io" + } +} diff --git a/domains/varunkumarbilwal.json b/domains/varunkumarbilwal.json new file mode 100644 index 000000000..e6b5a9404 --- /dev/null +++ b/domains/varunkumarbilwal.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "varunkumarbilwal", + "email": "varunkumarbilwal@gmail.com" + }, + + "record": { + "CNAME": "varunkumarbilwal.github.io" + } +} diff --git a/domains/vasharma05.json b/domains/vasharma05.json new file mode 100644 index 000000000..13712a8f3 --- /dev/null +++ b/domains/vasharma05.json @@ -0,0 +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" + } +} diff --git a/domains/vasilismylonas.json b/domains/vasilismylonas.json new file mode 100644 index 000000000..bfe2ccc69 --- /dev/null +++ b/domains/vasilismylonas.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "VasilisMylonas", + "email": "vasilismylonas@protonmail.com" + }, + + "record": { + "CNAME": "vasilismylonas.github.io" + } +} diff --git a/domains/vaskian.json b/domains/vaskian.json new file mode 100644 index 000000000..e4a838d8e --- /dev/null +++ b/domains/vaskian.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..480617462 --- /dev/null +++ b/domains/vasu.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..06e5859ea --- /dev/null +++ b/domains/veen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Vihaan7207", + "email": "vmikki7207@gmail.com" + }, + "record": { + "CNAME": "Vihaan7207.github.io" + } +} diff --git a/domains/veer.json b/domains/veer.json new file mode 100644 index 000000000..8b720e5f5 --- /dev/null +++ b/domains/veer.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "TheVeerRana", + "email": "hello@veer.codes" + }, + "record": { + "CNAME": "veer.codes" + } +} 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/venquidev.json b/domains/venquidev.json new file mode 100644 index 000000000..62366eb2f --- /dev/null +++ b/domains/venquidev.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "venquidev", + "email": "edwinrey5211@gmail.com" + }, + + "record": { + "CNAME": "venquidev.pages.dev" + } +} diff --git a/domains/ver0z.json b/domains/ver0z.json new file mode 100644 index 000000000..dac4dc7d1 --- /dev/null +++ b/domains/ver0z.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..c57038fc9 --- /dev/null +++ b/domains/verite.json @@ -0,0 +1,11 @@ +{ + "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/vi0leta.json b/domains/vi0leta.json new file mode 100644 index 000000000..eed253c13 --- /dev/null +++ b/domains/vi0leta.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vi0letadev", + "email": "vi0leta@riseup.net" + }, + + "record": { + "A": ["143.47.191.152"] + } +} diff --git a/domains/vic.json b/domains/vic.json new file mode 100644 index 000000000..11c0a9138 --- /dev/null +++ b/domains/vic.json @@ -0,0 +1,12 @@ +{ + "description": "my personal website", + "repo": "https://github.com/v1ctorio/v1ctorio.github.io", + "owner": { + "username": "victorioxd", + "email": "vicxd@pm.me", + "twitter": "vicjajsalu2" + }, + "record": { + "CNAME": "v1ctorio.github.io" + } +} diff --git a/domains/victoneux.json b/domains/victoneux.json new file mode 100644 index 000000000..bc95841c7 --- /dev/null +++ b/domains/victoneux.json @@ -0,0 +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" + } +} diff --git a/domains/victor.json b/domains/victor.json new file mode 100644 index 000000000..a879115c7 --- /dev/null +++ b/domains/victor.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "victoroliveira", + "email": "victoroliveira.eng@gmail.com" + }, + + "record": { + "CNAME": "victoroliveira.github.io" + } +} diff --git a/domains/victormenezes.json b/domains/victormenezes.json new file mode 100644 index 000000000..5d71da6f5 --- /dev/null +++ b/domains/victormenezes.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..a879115c7 --- /dev/null +++ b/domains/victoroliveira.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "victoroliveira", + "email": "victoroliveira.eng@gmail.com" + }, + + "record": { + "CNAME": "victoroliveira.github.io" + } +} diff --git a/domains/victorvickie.json b/domains/victorvickie.json new file mode 100644 index 000000000..7e7f45109 --- /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 new file mode 100644 index 000000000..2a48b2dfd --- /dev/null +++ b/domains/viggu.json @@ -0,0 +1,10 @@ +{ + "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..6a2530ce6 --- /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/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 new file mode 100644 index 000000000..1979cd609 --- /dev/null +++ b/domains/vikrant.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "150207", + "email": "daredevil.vikrant@gmail.com" + }, + "record": { + "URL": "https://github.com/vikrant7251" + } +} diff --git a/domains/vikyaiyer.json b/domains/vikyaiyer.json new file mode 100644 index 000000000..85187ff7c --- /dev/null +++ b/domains/vikyaiyer.json @@ -0,0 +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" + } +} diff --git a/domains/vimalsaraswat.json b/domains/vimalsaraswat.json new file mode 100644 index 000000000..a53772f82 --- /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/vinayak.json b/domains/vinayak.json new file mode 100644 index 000000000..839ca4999 --- /dev/null +++ b/domains/vinayak.json @@ -0,0 +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" + } +} 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.json b/domains/vineet.json new file mode 100644 index 000000000..05c394c05 --- /dev/null +++ b/domains/vineet.json @@ -0,0 +1,12 @@ +{ + "description": "Link to my Landing Page", + "repo": "https://github.com/iamv1n/iamv1n.github.io", + "owner": { + "username": "iamv1n", + "email": "vind3v17@gmail.com", + "twitter": "vineetstwt" + }, + "record": { + "URL": "https://iamv1n.github.io" + } +} diff --git a/domains/vineetkhemnani.json b/domains/vineetkhemnani.json new file mode 100644 index 000000000..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 new file mode 100644 index 000000000..c6444b5eb --- /dev/null +++ b/domains/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": { + "CNAME": "vncsmnl.github.io" + } +} diff --git a/domains/viniciusmanoel.json b/domains/viniciusmanoel.json new file mode 100644 index 000000000..e16a8c31a --- /dev/null +++ b/domains/viniciusmanoel.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "vncsmnl", + "email": "viniciusmanoel07@hotmail.com" + }, + + "record": { + "CNAME": "viniciusmanoel.ml" + } +} diff --git a/domains/vion.json b/domains/vion.json new file mode 100644 index 000000000..85a28d53f --- /dev/null +++ b/domains/vion.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "VIONYT", + "email": "yt.vion@gmail.com" + }, + "record": { + "URL": "https://vion.moe" + } +} diff --git a/domains/viperadnan.json b/domains/viperadnan.json new file mode 100644 index 000000000..2d7ae0845 --- /dev/null +++ b/domains/viperadnan.json @@ -0,0 +1,11 @@ +{ + "description": "portfolio", + "repo": "https://github.com/viperadnan-git/viperadnan-git.github.io", + "owner": { + "username": "viperadnan-git", + "email": "viperadnan@gmail.com" + }, + "record": { + "CNAME": "viperadnan-git.github.io" + } +} diff --git a/domains/viplav-mistry.json b/domains/viplav-mistry.json new file mode 100644 index 000000000..be235bee8 --- /dev/null +++ b/domains/viplav-mistry.json @@ -0,0 +1,12 @@ +{ + "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/viraj.json b/domains/viraj.json new file mode 100644 index 000000000..2df06bdb6 --- /dev/null +++ b/domains/viraj.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Viraj2722", + "email": "virajwalavalkar90982@gmail.com", + "twitter": "WalavalkarViraj" + }, + "description": "my website", + "record": { + "CNAME": "viraj2722.github.io" + } +} \ 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 new file mode 100644 index 000000000..66524f20e --- /dev/null +++ b/domains/vishal.json @@ -0,0 +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" + } +} 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/vishesh.json b/domains/vishesh.json new file mode 100644 index 000000000..da0f439a4 --- /dev/null +++ b/domains/vishesh.json @@ -0,0 +1,12 @@ +{ + "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 new file mode 100644 index 000000000..f5e727075 --- /dev/null +++ b/domains/vishnu.json @@ -0,0 +1,11 @@ +{ + "description": "Vishnu's personal website", + "repo": "https://github.com/vishnu012/vishnu012.github.io", + "owner": { + "username": "vishnu012", + "email": "vishnu012@pm.me" + }, + "record": { + "CNAME": "vishnu012.github.io" + } +} 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/vivek.json b/domains/vivek.json new file mode 100644 index 000000000..0abada45c --- /dev/null +++ b/domains/vivek.json @@ -0,0 +1,18 @@ +{ + "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 new file mode 100644 index 000000000..1e4b68f7f --- /dev/null +++ b/domains/vivekkumar.json @@ -0,0 +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" + } +} diff --git a/domains/vk.json b/domains/vk.json new file mode 100644 index 000000000..58dcfda84 --- /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 new file mode 100644 index 000000000..e1f5ebcc5 --- /dev/null +++ b/domains/vlab.json @@ -0,0 +1,11 @@ +{ + "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/void.json b/domains/void.json new file mode 100644 index 000000000..a54a110c0 --- /dev/null +++ b/domains/void.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "tomgx", + "email": "deliveryservice01q@gmail.com" + }, + "record": { + "CNAME": "tomgx.github.io" + } +} diff --git a/domains/voidz.json b/domains/voidz.json new file mode 100644 index 000000000..e3d689e62 --- /dev/null +++ b/domains/voidz.json @@ -0,0 +1,11 @@ +{ + "description": "voidz's personal website", + "owner": { + "username": "voidz7", + "email": "atharvask2005@gmail.com", + "twitter": "gg_voidz" + }, + "record": { + "CNAME": "voidz7.github.io" + } +} diff --git a/domains/vsecoder.json b/domains/vsecoder.json new file mode 100644 index 000000000..298541b34 --- /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/vulcanwm.json b/domains/vulcanwm.json new file mode 100644 index 000000000..091b7adf3 --- /dev/null +++ b/domains/vulcanwm.json @@ -0,0 +1,11 @@ +{ + "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/vvp.json b/domains/vvp.json new file mode 100644 index 000000000..893e84542 --- /dev/null +++ b/domains/vvp.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..46096aa1d --- /dev/null +++ b/domains/vysakh.json @@ -0,0 +1,11 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/vyshuks/vyshuks.github.io", + "owner": { + "username": "vyshuks", + "email": "vyshuks@gmail.com" + }, + "record": { + "CNAME": "vyshuks.github.io" + } +} diff --git a/domains/wablesanket.json b/domains/wablesanket.json new file mode 100644 index 000000000..2b83d1b64 --- /dev/null +++ b/domains/wablesanket.json @@ -0,0 +1,12 @@ +{ + "description": "My Portfolio", + "repo": "https://github.com/Sanketwable/Portfolio", + "owner": { + "username": "sanketwable", + "email": "sanketwable123@gmail.com", + "twitter": "Wable_Sanket_" + }, + "record": { + "URL": "https://wablesanket.xyz" + } +} diff --git a/domains/wadeslider.json b/domains/wadeslider.json new file mode 100644 index 000000000..ea1ffc0b0 --- /dev/null +++ b/domains/wadeslider.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WadeSlider", + "email": "alexisarturodh@gmail.com" + }, + "record": { + "CNAME": "wadeslider.pages.dev" + } +} 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 new file mode 100644 index 000000000..24ed610af --- /dev/null +++ b/domains/waiyanmt.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WillowMT", + "email": "waiyanmt@yahoo.com" + }, + "record": { + "URL": "https://waiyanmt.netlify.app" + } +} diff --git a/domains/wallp.json b/domains/wallp.json new file mode 100644 index 000000000..2dea4bbdc --- /dev/null +++ b/domains/wallp.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "gregcorp", + "email": "grogy9202@gmail.com" + }, + + "record": { + "CNAME": "wallpmaster.eu.org" + } +} diff --git a/domains/wansie.json b/domains/wansie.json new file mode 100644 index 000000000..a69086051 --- /dev/null +++ b/domains/wansie.json @@ -0,0 +1,12 @@ +{ + "owner": { + "username": "wansie1", + "email": "msc2tvdn@duck.com", + "note": "This record was created by is-a.dev Discord bot via discord id: 962788530336178236" + }, + + "record": { + "CNAME": "2cf5a77a-3918-4448-ba3e-e1d73a99155f.id.repl.co" + + } +} 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/wasabi.json b/domains/wasabi.json new file mode 100644 index 000000000..0c8dae976 --- /dev/null +++ b/domains/wasabi.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WasabiThumb", + "email": "wasabithumbs@gmail.com" + }, + + "record": { + "CNAME": "wasabicodes.xyz" + } +} diff --git a/domains/wassim.json b/domains/wassim.json new file mode 100644 index 000000000..011c902d2 --- /dev/null +++ b/domains/wassim.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..75a36e775 --- /dev/null +++ b/domains/watercat.json @@ -0,0 +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" + } +} diff --git a/domains/wavingcat.json b/domains/wavingcat.json new file mode 100644 index 000000000..286f79e90 --- /dev/null +++ b/domains/wavingcat.json @@ -0,0 +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" + } +} diff --git a/domains/wbalaile.json b/domains/wbalaile.json new file mode 100644 index 000000000..c627a8690 --- /dev/null +++ b/domains/wbalaile.json @@ -0,0 +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" + } +} diff --git a/domains/wcaleniekubaa.json b/domains/wcaleniekubaa.json new file mode 100644 index 000000000..8d6254af8 --- /dev/null +++ b/domains/wcaleniekubaa.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wcaleniekubaa", + "email": "to.nie.kubafn@gmail.com" + }, + "record": { + "CNAME": "wcaleniekubaa.github.io" + } +} diff --git a/domains/weatherly.json b/domains/weatherly.json new file mode 100644 index 000000000..b451439de --- /dev/null +++ b/domains/weatherly.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "iibeboQ", + "email": "qqqbeboo@yahoo.com" + }, + + "record": { + "CNAME": "6b592936-765b-4034-8e0e-d2be0efcacff.id.repl.co" + } +} diff --git a/domains/web-sh.sx9.json b/domains/web-sh.sx9.json new file mode 100644 index 000000000..f7f0e6184 --- /dev/null +++ b/domains/web-sh.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/webb.json b/domains/webb.json new file mode 100644 index 000000000..050fba1a6 --- /dev/null +++ b/domains/webb.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "johanoloflindberg", + "email": "johan@webbab.se" + }, + + "record": { + "URL": "https://webb.io" + } +} diff --git a/domains/webber.json b/domains/webber.json new file mode 100644 index 000000000..95b9895d1 --- /dev/null +++ b/domains/webber.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "webbertakken", + "email": "webber.nl@gmail.com" + }, + + "record": { + "URL": "https://takken.io" + } +} diff --git a/domains/webmail.zerow.json b/domains/webmail.zerow.json new file mode 100644 index 000000000..353e7e8a0 --- /dev/null +++ b/domains/webmail.zerow.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "DevZerow", + "email": "zerow.pro@protonmail.com" + }, + + "record": { + "A": ["92.118.207.191"] + } +} diff --git a/domains/webraku.json b/domains/webraku.json new file mode 100644 index 000000000..8dbcb8b2e --- /dev/null +++ b/domains/webraku.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Nathan", + "email": "nathanaelhananta09@gmail.com" + }, + "record": { + "CNAME": "storage-production.up.railway.app" + } +} diff --git a/domains/werz.json b/domains/werz.json new file mode 100644 index 000000000..5601dab67 --- /dev/null +++ b/domains/werz.json @@ -0,0 +1,12 @@ +{ + "description": "portfolio", + "repo": "https://github.com/0xwerz/0xwerz.github.io", + "owner": { + "username": "0xwerz", + "email": "moussarabie40@gmail.com", + "twitter": "cyberwerz" + }, + "record": { + "CNAME": "0xwerz.github.io" + } +} diff --git a/domains/wesley.json b/domains/wesley.json new file mode 100644 index 000000000..c57b76641 --- /dev/null +++ b/domains/wesley.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..2bb0591e3 --- /dev/null +++ b/domains/west.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "arslandoesdev", + "email": "239@duck.com" + }, + "record": { + "CNAME": "arslandoesdev.github.io" + } +} diff --git a/domains/what.json b/domains/what.json new file mode 100644 index 000000000..5e7b5c577 --- /dev/null +++ b/domains/what.json @@ -0,0 +1,13 @@ +{ + "description": "Personal Website", + "repo": "https://github.com/What-Question-Mark/What-Question-Mark.github.io", + "owner": { + "username": "What-Question-Mark", + "email": "jack.weller@hotmail.com", + "twitter": "whatqm", + "discord": "discord-username-and-discriminator" + }, + "record": { + "CNAME": "what-question-mark.github.io" + } +} diff --git a/domains/whine.json b/domains/whine.json new file mode 100644 index 000000000..989e4ab21 --- /dev/null +++ b/domains/whine.json @@ -0,0 +1,19 @@ +{ + "description": "whi_ne's personal site", + "repo": "https://github.com/whinee/whinee.github.io", + "owner": { + "username": "whinee", + "email": "", + "twitter": "whi_nyaan" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ], + "MX": ["mx1.improvmx.com", "mx2.improvmx.com"], + "TXT": "v=spf1 include:spf.improvmx.com ~all" + } +} diff --git a/domains/whitekj.json b/domains/whitekj.json new file mode 100644 index 000000000..84b5cd36e --- /dev/null +++ b/domains/whitekj.json @@ -0,0 +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" + } +} diff --git a/domains/who.json b/domains/who.json new file mode 100644 index 000000000..25de39702 --- /dev/null +++ b/domains/who.json @@ -0,0 +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" + } +} diff --git a/domains/whxyu.json b/domains/whxyu.json new file mode 100644 index 000000000..8f1a71574 --- /dev/null +++ b/domains/whxyu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "yxu6fingers", + "email": "" + }, + "record": { + "CNAME": "yxu6fingers.github.io" + } +} diff --git a/domains/whyleonardo.json b/domains/whyleonardo.json new file mode 100644 index 000000000..7939ab75f --- /dev/null +++ b/domains/whyleonardo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "whyleonardo", + "email": "pleasefloyd73@gmail.com" + }, + "record": { + "URL": "https://nextjs-portfolio-chi-taupe.vercel.app" + } +} diff --git a/domains/whyme.json b/domains/whyme.json 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/wiggly.json b/domains/wiggly.json new file mode 100644 index 000000000..8cffa47be --- /dev/null +++ b/domains/wiggly.json @@ -0,0 +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" + } +} diff --git a/domains/wiicreation.json b/domains/wiicreation.json new file mode 100644 index 000000000..9c03f53c9 --- /dev/null +++ b/domains/wiicreation.json @@ -0,0 +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?from=" + } +} diff --git a/domains/will.json b/domains/will.json new file mode 100644 index 000000000..01b11062d --- /dev/null +++ b/domains/will.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..6f0c5a82f --- /dev/null +++ b/domains/william.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "WilliamDavidHarrison", + "email": "william@williamharrison.dev" + }, + + "record": { + "URL": "https://williamharrison.dev" + } +} diff --git a/domains/willian.json b/domains/willian.json new file mode 100644 index 000000000..39c7ef966 --- /dev/null +++ b/domains/willian.json @@ -0,0 +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" + } +} diff --git a/domains/willo.json b/domains/willo.json new file mode 100644 index 000000000..63a4082df --- /dev/null +++ b/domains/willo.json @@ -0,0 +1,19 @@ +{ + "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 new file mode 100644 index 000000000..05eadceeb --- /dev/null +++ b/domains/win11-tutorial.notaperson535.json @@ -0,0 +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" + } +} diff --git a/domains/win11.notaperson535.json b/domains/win11.notaperson535.json new file mode 100644 index 000000000..795cd8bd6 --- /dev/null +++ b/domains/win11.notaperson535.json @@ -0,0 +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" + } +} diff --git a/domains/windfarms.json b/domains/windfarms.json new file mode 100644 index 000000000..92117b3db --- /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" + } +} \ No newline at end of file diff --git a/domains/winter.json b/domains/winter.json new file mode 100644 index 000000000..3a385cc2a --- /dev/null +++ b/domains/winter.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "virtualWinter", + "email": "me@winter-is-a-dev.ml" + }, + "record": { + "A": ["45.14.224.83"] + } +} diff --git a/domains/wired.json b/domains/wired.json new file mode 100644 index 000000000..9f9032ef7 --- /dev/null +++ b/domains/wired.json @@ -0,0 +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" + } +} diff --git a/domains/wiredmind.json b/domains/wiredmind.json new file mode 100644 index 000000000..b3fb028f1 --- /dev/null +++ b/domains/wiredmind.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "WiredMind2", + "email": "admin@tetrazero.com" + }, + "record": { + "URL": "https://tetrazero.com" + } +} diff --git a/domains/wisnu.json b/domains/wisnu.json new file mode 100644 index 000000000..de02d3b6e --- /dev/null +++ b/domains/wisnu.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..71b839b74 --- /dev/null +++ b/domains/withercubes.json @@ -0,0 +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" + } +} diff --git a/domains/wkrzywiec.json b/domains/wkrzywiec.json new file mode 100644 index 000000000..b9ff53cba --- /dev/null +++ b/domains/wkrzywiec.json @@ -0,0 +1,12 @@ +{ + "description": "My blog and portfolio", + "repo": "https://github.com/wkrzywiec/wkrzywiec.github.io", + "owner": { + "username": "wkrzywiec", + "email": "", + "twitter": "wkrzywiec" + }, + "record": { + "CNAME": "wkrzywiec.github.io" + } +} diff --git a/domains/wonder.json b/domains/wonder.json new file mode 100644 index 000000000..af600958b --- /dev/null +++ b/domains/wonder.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "wonderlandpark", + "email": "wonderlandpark@callisto.team" + }, + "record": { + "CNAME": "is-a.wonder.im" + } +} diff --git a/domains/woosh.json b/domains/woosh.json new file mode 100644 index 000000000..b59a1612a --- /dev/null +++ b/domains/woosh.json @@ -0,0 +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"] + } +} diff --git a/domains/wopian.json b/domains/wopian.json new file mode 100644 index 000000000..2c802b68d --- /dev/null +++ b/domains/wopian.json @@ -0,0 +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" + } +} 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..bb3a0ab3f --- /dev/null +++ b/domains/woundrite.json @@ -0,0 +1,14 @@ +{ + "owner": { + "username": "Woundrite", + "email": "ndbendale2004@gmail.com" + }, + "record": { + "A": [ + "185.199.108.153", + "185.199.109.153", + "185.199.110.153", + "185.199.111.153" + ] + } +} diff --git a/domains/wrdg.json b/domains/wrdg.json new file mode 100644 index 000000000..9f6c82976 --- /dev/null +++ b/domains/wrdg.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wrdg", + "email": "wardog@wrdg.dev" + }, + + "record": { + "URL": "https://wrdg.net" + } +} diff --git a/domains/wscr.json b/domains/wscr.json new file mode 100644 index 000000000..3245b5de3 --- /dev/null +++ b/domains/wscr.json @@ -0,0 +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" + } +} diff --git a/domains/wwei.json b/domains/wwei.json new file mode 100644 index 000000000..7120dd89f --- /dev/null +++ b/domains/wwei.json @@ -0,0 +1,10 @@ +{ + "description": "My github", + "owner": { + "username": "wwei-github", + "email": "ww418047394@gmail.com" + }, + "record": { + "URL": "https://github.com/wwei-github" + } +} 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/wzx.json b/domains/wzx.json new file mode 100644 index 000000000..b770afba6 --- /dev/null +++ b/domains/wzx.json @@ -0,0 +1,11 @@ +{ + "description": "I want to use it as my profile page.", + "repo": "https://github.com/website-pages/profile", + "owner": { + "username": "website-pages", + "email": "unpu123456@outlook.com" + }, + "record": { + "CNAME": "website-pages.github.io" + } +} diff --git a/domains/xanudu.json b/domains/xanudu.json new file mode 100644 index 000000000..b291adc2e --- /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/xave.json b/domains/xave.json new file mode 100644 index 000000000..c528869a3 --- /dev/null +++ b/domains/xave.json @@ -0,0 +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" + } +} diff --git a/domains/xaxa.json b/domains/xaxa.json new file mode 100644 index 000000000..5671fe89f --- /dev/null +++ b/domains/xaxa.json @@ -0,0 +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" + } +} diff --git a/domains/xcyth.json b/domains/xcyth.json new file mode 100644 index 000000000..4e4e02607 --- /dev/null +++ b/domains/xcyth.json @@ -0,0 +1,9 @@ +{ + "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 new file mode 100644 index 000000000..4e7112ebb --- /dev/null +++ b/domains/xelxen.json @@ -0,0 +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" + } +} diff --git a/domains/xen.json b/domains/xen.json new file mode 100644 index 000000000..f6e1d6fa8 --- /dev/null +++ b/domains/xen.json @@ -0,0 +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" + } +} 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/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/xiaolangkong.json b/domains/xiaolangkong.json new file mode 100644 index 000000000..862e2939d --- /dev/null +++ b/domains/xiaolangkong.json @@ -0,0 +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" + } +} diff --git a/domains/xiaolei.json b/domains/xiaolei.json new file mode 100644 index 000000000..1f48ff3e0 --- /dev/null +++ b/domains/xiaolei.json @@ -0,0 +1,9 @@ +{ + "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/xiro.json b/domains/xiro.json new file mode 100644 index 000000000..91edd91ed --- /dev/null +++ b/domains/xiro.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "XiroXD", + "email": "creaperhunter531@gmail.com", + "discord": "Xiro#0001" + }, + "record": { + "CNAME": "personal-page-3ps.pages.dev" + } +} diff --git a/domains/xkubsoneq.json b/domains/xkubsoneq.json new file mode 100644 index 000000000..42e5339c5 --- /dev/null +++ b/domains/xkubsoneq.json @@ -0,0 +1,12 @@ +{ + "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/xndr.json b/domains/xndr.json new file mode 100644 index 000000000..e33a1bc83 --- /dev/null +++ b/domains/xndr.json @@ -0,0 +1,12 @@ +{ + "description": "Xandrrrr's CDN", + "repo": "https://github.com/Xander1233", + "owner": { + "username": "Xander1233", + "email": "", + "twitter": "XandrrrrR6" + }, + "record": { + "A": ["173.249.30.209"] + } +} diff --git a/domains/xpplg.json b/domains/xpplg.json new file mode 100644 index 000000000..5e6839946 --- /dev/null +++ b/domains/xpplg.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Jantur-dev", + "email": "jantur29@gmail.com" + }, + "record": { + "CNAME": "d46b1013-50ed-4f41-b75e-3961b2b9aad6.id.repl.co" + } +} diff --git a/domains/xqwtxon.json b/domains/xqwtxon.json new file mode 100644 index 000000000..75dd5910b --- /dev/null +++ b/domains/xqwtxon.json @@ -0,0 +1,13 @@ +{ + "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/xrcs.json b/domains/xrcs.json new file mode 100644 index 000000000..269fd175b --- /dev/null +++ b/domains/xrcs.json @@ -0,0 +1,12 @@ +{ + "description": "xrcs personal website", + "repo": "https://github.com/xrcss/xrcss.github.io", + "owner": { + "username": "xrcss", + "discord": "xrcs#0001", + "email": "" + }, + "record": { + "CNAME": "xrcss.github.io" + } +} diff --git a/domains/xream.json b/domains/xream.json new file mode 100644 index 000000000..4416454d7 --- /dev/null +++ b/domains/xream.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "xream", + "email": "xreamxu@gmail.com" + }, + + "record": { + "A": ["150.230.219.72"] + } +} diff --git a/domains/xryshirfxn.json b/domains/xryshirfxn.json new file mode 100644 index 000000000..66bc525bb --- /dev/null +++ b/domains/xryshirfxn.json @@ -0,0 +1,12 @@ +{ + "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/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 new file mode 100644 index 000000000..1f8d90bdd --- /dev/null +++ b/domains/xuxxi.json @@ -0,0 +1,11 @@ +{ + "description": "XUXXI", + "repo": "https://github.com/XUXXI/xuxxi.github.io", + "owner": { + "username": "methaine", + "email": "keter@keemail.me" + }, + "record": { + "CNAME": "xuxxi.github.io" + } +} diff --git a/domains/xyter.json b/domains/xyter.json new file mode 100644 index 000000000..39af6b316 --- /dev/null +++ b/domains/xyter.json @@ -0,0 +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" + } +} diff --git a/domains/xzfrost.json b/domains/xzfrost.json new file mode 100644 index 000000000..055d3d0cf --- /dev/null +++ b/domains/xzfrost.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "XzFrosT", + "email": "mschodeihsan@gmail.com" + }, + "record": { + "CNAME": "ihsanhardiansah.me" + } +} diff --git a/domains/ya.json b/domains/ya.json new file mode 100644 index 000000000..4d6cb0b1e --- /dev/null +++ b/domains/ya.json @@ -0,0 +1,12 @@ +{ + "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/yaelmassieu.json b/domains/yaelmassieu.json new file mode 100644 index 000000000..0b42f8f5d --- /dev/null +++ b/domains/yaelmassieu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "bystrokr", + "email": "jamesisajamessx@gmail.com" + }, + "record": { + "A": ["66.45.229.178"] + } +} diff --git a/domains/yahya-rabii.json b/domains/yahya-rabii.json new file mode 100644 index 000000000..03c7ef839 --- /dev/null +++ b/domains/yahya-rabii.json @@ -0,0 +1,10 @@ +{ + "description": "MY PP website", + "owner": { + "username": "Yahya-rabii", + "email": "rabiiyahya1@gmail.com" + }, + "record": { + "CNAME": "yahya-rabii.github.io" + } +} diff --git a/domains/yajat.json b/domains/yajat.json new file mode 100644 index 000000000..a9b547a73 --- /dev/null +++ b/domains/yajat.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..8e523da7e --- /dev/null +++ b/domains/yajtpg.json @@ -0,0 +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" + } +} diff --git a/domains/yakiyo.json b/domains/yakiyo.json new file mode 100644 index 000000000..952cb672f --- /dev/null +++ b/domains/yakiyo.json @@ -0,0 +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" + } +} diff --git a/domains/yaman.json b/domains/yaman.json new file mode 100644 index 000000000..7d7bd24b0 --- /dev/null +++ b/domains/yaman.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..2c9231821 --- /dev/null +++ b/domains/yang.json @@ -0,0 +1,11 @@ +{ + "description": "one personal blog", + "repo": "https://github.com/xuchao996/xuchao996.github.io", + "owner": { + "username": "xuchao996", + "email": "chao.xu996@gmail.com" + }, + "record": { + "CNAME": "xuchao996.github.io" + } +} diff --git a/domains/yanmaker.json b/domains/yanmaker.json new file mode 100644 index 000000000..fe92fbbb0 --- /dev/null +++ b/domains/yanmaker.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..23ddc48d5 --- /dev/null +++ b/domains/yashas.json @@ -0,0 +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" + } +} diff --git a/domains/yashash.json b/domains/yashash.json new file mode 100644 index 000000000..0de5cef1e --- /dev/null +++ b/domains/yashash.json @@ -0,0 +1,11 @@ +{ + "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/yassin.json b/domains/yassin.json new file mode 100644 index 000000000..8af17448f --- /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/ycyanx.json b/domains/ycyanx.json new file mode 100644 index 000000000..96343e997 --- /dev/null +++ b/domains/ycyanx.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..d8e77c3ae --- /dev/null +++ b/domains/yeetedwin.json @@ -0,0 +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" + } +} diff --git a/domains/yejun.json b/domains/yejun.json new file mode 100644 index 000000000..afaebfb75 --- /dev/null +++ b/domains/yejun.json @@ -0,0 +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" + } +} diff --git a/domains/yeppiidev.json b/domains/yeppiidev.json new file mode 100644 index 000000000..582e6dd2f --- /dev/null +++ b/domains/yeppiidev.json @@ -0,0 +1,12 @@ +{ + "description": "Just my personal website :^)", + "repo": "https://github.com/yeppiidev/yeppiidev.github.io", + "owner": { + "username": "yeppiidev", + "email": "yedoxstudios@gmail.com", + "twitter": "yeppiidev" + }, + "record": { + "CNAME": "yeppiidev.github.io" + } +} diff --git a/domains/yerin.json b/domains/yerin.json new file mode 100644 index 000000000..2941a0406 --- /dev/null +++ b/domains/yerin.json @@ -0,0 +1,10 @@ +{ + "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/yescyyt.json b/domains/yescyyt.json new file mode 100644 index 000000000..26d8fe612 --- /dev/null +++ b/domains/yescyyt.json @@ -0,0 +1,11 @@ +{ + "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/yiff.json b/domains/yiff.json new file mode 100644 index 000000000..ea54e8caa --- /dev/null +++ b/domains/yiff.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..7c89496f3 --- /dev/null +++ b/domains/yigitkerem.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..165da7018 --- /dev/null +++ b/domains/yiro.json @@ -0,0 +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" + } +} diff --git a/domains/yolobnb.json b/domains/yolobnb.json new file mode 100644 index 000000000..42a30bb00 --- /dev/null +++ b/domains/yolobnb.json @@ -0,0 +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" + } +} diff --git a/domains/yootou.json b/domains/yootou.json new file mode 100644 index 000000000..48b89b83b --- /dev/null +++ b/domains/yootou.json @@ -0,0 +1,11 @@ +{ + "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 2c4e81a6d..9d8ea3954 100644 --- a/domains/yorodm.json +++ b/domains/yorodm.json @@ -1,12 +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", - "URL": "https://yorodm.is-a.dev" - } + "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..c717ff345 --- /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/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..f51cac85c --- /dev/null +++ b/domains/yourdad.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "roktim32", + "email": "roktimsenapoty2@gmail.com" + }, + "record": { + "CNAME": "roktim32.github.io" + } + } + \ No newline at end of file diff --git a/domains/yourfriend.json b/domains/yourfriend.json new file mode 100644 index 000000000..a1993fc96 --- /dev/null +++ b/domains/yourfriend.json @@ -0,0 +1,11 @@ +{ + "description": "Yourfriend's Introduction", + "repo": "https://github.com/yourfriend", + "owner": { + "username": "yourfriend", + "email": "friend@yourfriend.lv" + }, + "record": { + "CNAME": "yourfriend.lv" + } +} diff --git a/domains/yourtilak.json b/domains/yourtilak.json new file mode 100644 index 000000000..c10efa455 --- /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/ypratham.json b/domains/ypratham.json new file mode 100644 index 000000000..a81e8d779 --- /dev/null +++ b/domains/ypratham.json @@ -0,0 +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" + } +} diff --git a/domains/ysfchn.json b/domains/ysfchn.json new file mode 100644 index 000000000..5c6c99d44 --- /dev/null +++ b/domains/ysfchn.json @@ -0,0 +1,11 @@ +{ + "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/yujia.json b/domains/yujia.json new file mode 100644 index 000000000..b09f351e2 --- /dev/null +++ b/domains/yujia.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..695b794cf --- /dev/null +++ b/domains/yuk1ch.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..31d204df6 --- /dev/null +++ b/domains/yuk7.json @@ -0,0 +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" + } +} diff --git a/domains/yuksel.json b/domains/yuksel.json new file mode 100644 index 000000000..c29660f6c --- /dev/null +++ b/domains/yuksel.json @@ -0,0 +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" + } +} 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 new file mode 100644 index 000000000..c8a1a2c86 --- /dev/null +++ b/domains/yurihsq.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Mai1ii", + "email": "micomacabali14@gmail.com" + }, + "record": { + "CNAME": "mai1ii.github.io" + } +} diff --git a/domains/yurikawa.json b/domains/yurikawa.json new file mode 100644 index 000000000..20d880463 --- /dev/null +++ b/domains/yurikawa.json @@ -0,0 +1,16 @@ +{ + "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 new file mode 100644 index 000000000..463c741ff --- /dev/null +++ b/domains/yush.json @@ -0,0 +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" + } +} diff --git a/domains/yusuf-rawat.json b/domains/yusuf-rawat.json new file mode 100644 index 000000000..785cc751c --- /dev/null +++ b/domains/yusuf-rawat.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..5276831e4 --- /dev/null +++ b/domains/yusuf.json @@ -0,0 +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" + } +} diff --git a/domains/yuto.json b/domains/yuto.json new file mode 100644 index 000000000..c5d071c45 --- /dev/null +++ b/domains/yuto.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..32e15c4d6 --- /dev/null +++ b/domains/yuukari.json @@ -0,0 +1,12 @@ +{ + "description": "My dev homepage, which I have publish info about me, pet/commercial projects, etc.", + "repo": "https://github.com/Yuukari/yuukari.github.io", + "owner": { + "username": "Yuukari", + "email": "yuukarichan@yandex.com", + "telegram": "@iamyuukari" + }, + "record": { + "CNAME": "yuukari.github.io" + } +} diff --git a/domains/yuuto.json b/domains/yuuto.json new file mode 100644 index 000000000..bf8660a4f --- /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/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/z4ff.json b/domains/z4ff.json new file mode 100644 index 000000000..b4c7c644d --- /dev/null +++ b/domains/z4ff.json @@ -0,0 +1,10 @@ +{ + "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..3783cd1c9 --- /dev/null +++ b/domains/zaid-kadri.json @@ -0,0 +1,11 @@ +{ + "description": "This is my website", + "repo": "https://github.com/zaid-kadri/zaid-kadri.github.io", + "owner": { + "username": "zaid-kadri", + "email": "" + }, + "record": { + "URL": "https://zaid-kadri.github.io" + } +} diff --git a/domains/zaid.json b/domains/zaid.json new file mode 100644 index 000000000..289bdd46d --- /dev/null +++ b/domains/zaid.json @@ -0,0 +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" + } +} diff --git a/domains/zarwin.json b/domains/zarwin.json new file mode 100644 index 000000000..d2fb2531b --- /dev/null +++ b/domains/zarwin.json @@ -0,0 +1,11 @@ +{ + "repo": "https://github.com/zarwin/zarwin.is-a.dev", + "owner": { + "username": "zarwin", + "email": "", + "discord": "𝕃𝕠𝕣𝕕 ℤ𝕒𝕣𝕨𝕚𝕟#8600" + }, + "record": { + "CNAME": "zarwin.github.io" + } +} diff --git a/domains/zelle.json b/domains/zelle.json new file mode 100644 index 000000000..1adb202f2 --- /dev/null +++ b/domains/zelle.json @@ -0,0 +1,11 @@ +{ + "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/zen.json b/domains/zen.json new file mode 100644 index 000000000..8659f1780 --- /dev/null +++ b/domains/zen.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "zeraAI", + "email": "parkzen68@gmail.com" + }, + "record": { + "CNAME": "zeraai.github.io" + } +} 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 new file mode 100644 index 000000000..4648786f2 --- /dev/null +++ b/domains/zeor154.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zeor154", + "email": "driop12bu@gmail.com" + }, + "record": { + "A": ["45.130.141.88"] + } +} diff --git a/domains/zeptar.json b/domains/zeptar.json new file mode 100644 index 000000000..58a371740 --- /dev/null +++ b/domains/zeptar.json @@ -0,0 +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" + } +} diff --git a/domains/zero.json b/domains/zero.json new file mode 100644 index 000000000..7f82b4070 --- /dev/null +++ b/domains/zero.json @@ -0,0 +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" + } +} diff --git a/domains/zerotwo.json b/domains/zerotwo.json new file mode 100644 index 000000000..819b56cf9 --- /dev/null +++ b/domains/zerotwo.json @@ -0,0 +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" + } +} 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/zerowho.json b/domains/zerowho.json new file mode 100644 index 000000000..c037473d1 --- /dev/null +++ b/domains/zerowho.json @@ -0,0 +1,11 @@ +{ + "description": "ZeroDev's personal developer website", + "repo": "https://github.com/TadashiKazuo", + "owner": { + "username": "TadashiKazuo", + "email": "kudo.andrew.2005@gmail.com" + }, + "record": { + "CNAME": "andrewnoob.tk" + } +} diff --git a/domains/zffu.json b/domains/zffu.json new file mode 100644 index 000000000..d616e3eff --- /dev/null +++ b/domains/zffu.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Radi0o", + "email": "radi0o0@outlook.com" + }, + "record": { + "CNAME": "zffu.ml" + } +} diff --git a/domains/zhangximufeng.json b/domains/zhangximufeng.json new file mode 100644 index 000000000..6fbae38cf --- /dev/null +++ b/domains/zhangximufeng.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..d3c4e7530 --- /dev/null +++ b/domains/zhiyao.json @@ -0,0 +1,11 @@ +{ + "description": "志遥(至尧)的个人博客", + "repo": "https://github.com/lizhiyao/lizhiyao.github.io", + "owner": { + "username": "lizhiyao", + "email": "dancerlzy@gmail.com" + }, + "record": { + "CNAME": "lizhiyao.github.io" + } +} diff --git a/domains/zhu.json b/domains/zhu.json new file mode 100644 index 000000000..f6e82b368 --- /dev/null +++ b/domains/zhu.json @@ -0,0 +1,12 @@ +{ + "description": "A Jekyll site used for share my idears", + "repo": "https://github.com/azhu021/jekyll.github.io", + "owner": { + "username": "azhu021", + "email": "pub@azhu.site", + "twitter": "azhu021" + }, + "record": { + "CNAME": "azhu021.github.io" + } +} diff --git a/domains/zhycorp.json b/domains/zhycorp.json new file mode 100644 index 000000000..18b542cfa --- /dev/null +++ b/domains/zhycorp.json @@ -0,0 +1,11 @@ +{ + "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 new file mode 100644 index 000000000..ca2e857fe --- /dev/null +++ b/domains/ziari.json @@ -0,0 +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" + } +} diff --git a/domains/zidanify.json b/domains/zidanify.json new file mode 100644 index 000000000..657f47a23 --- /dev/null +++ b/domains/zidanify.json @@ -0,0 +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" + } +} diff --git a/domains/zishan.json b/domains/zishan.json new file mode 100644 index 000000000..d49be3d94 --- /dev/null +++ b/domains/zishan.json @@ -0,0 +1,10 @@ +{ + "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 new file mode 100644 index 000000000..cd70fcc68 --- /dev/null +++ b/domains/ziue.json @@ -0,0 +1,11 @@ +{ + "description": "Link to my github", + "owner": { + "username": "ziuee", + "email": "", + "discord": "ziue#8495" + }, + "record": { + "CNAME": "ziuee.github.io" + } +} diff --git a/domains/zjfc.json b/domains/zjfc.json new file mode 100644 index 000000000..7d8a05948 --- /dev/null +++ b/domains/zjfc.json @@ -0,0 +1,11 @@ +{ + "description": "GitHub Pages", + "repo": "https://github.com/Endermanbugzjfc/Endermanbugzjfc.github.io", + "owner": { + "username": "Endermanbugzjfc", + "email": "endermanbugzjfc@gmail.com" + }, + "record": { + "CNAME": "endermanbugzjfc.github.io" + } +} diff --git a/domains/zly.json b/domains/zly.json new file mode 100644 index 000000000..52fd2ce95 --- /dev/null +++ b/domains/zly.json @@ -0,0 +1,11 @@ +{ + "description": "zly", + "repo": "https://github.com/PythonPlumber/url-shorter", + "owner": { + "username": "PythonPlumber", + "email": "mario.yellow.bea@proton.me" + }, + "record": { + "A": ["216.24.57.1"] + } +} diff --git a/domains/zoro.xen.json b/domains/zoro.xen.json new file mode 100644 index 000000000..945d57583 --- /dev/null +++ b/domains/zoro.xen.json @@ -0,0 +1,10 @@ +{ + "description": "Backend API for t.me/roronoa_zoro_robot", + "owner": { + "username": "xenmods", + "email": "ilumomin04@gmail.com" + }, + "record": { + "CNAME": "b6c9cd01-6ea5-4c58-b942-4194bdb11578.cname.koyeb.app" + } +} diff --git a/domains/zplusfour.json b/domains/zplusfour.json new file mode 100644 index 000000000..869aa38e1 --- /dev/null +++ b/domains/zplusfour.json @@ -0,0 +1,12 @@ +{ + "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" + } +} diff --git a/domains/ztz.json b/domains/ztz.json new file mode 100644 index 000000000..ba8b643e7 --- /dev/null +++ b/domains/ztz.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ZTzTopia", + "email": "zentay36@gmail.com" + }, + + "record": { + "A": ["34.173.97.174"] + } +} diff --git a/domains/zuhaib.json b/domains/zuhaib.json new file mode 100644 index 000000000..41c89131b --- /dev/null +++ b/domains/zuhaib.json @@ -0,0 +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" + } +} diff --git a/domains/zuhair.json b/domains/zuhair.json new file mode 100644 index 000000000..8fc3df505 --- /dev/null +++ b/domains/zuhair.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "ZuhairTarif", + "email": "20-42115-1@student.aiub.edu" + }, + + "record": { + "CNAME": "ZuhairTarif.github.io" + } +} diff --git a/domains/zuntie.json b/domains/zuntie.json new file mode 100644 index 000000000..033452dae --- /dev/null +++ b/domains/zuntie.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "Zuntie", + "email": "ZuntieDev@gmail.com" + }, + "record": { + "CNAME": "zuntie.github.io" + } +} diff --git a/domains/zyrouge.json b/domains/zyrouge.json new file mode 100644 index 000000000..b78de2475 --- /dev/null +++ b/domains/zyrouge.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "zyrouge", + "email": "zyrouge@hotmail.com", + "twitter": "_zyrouge_" + }, + "record": { + "CNAME": "zyrouge.github.io" + } +} diff --git a/domains/zyztem.json b/domains/zyztem.json new file mode 100644 index 000000000..1e3f7886e --- /dev/null +++ b/domains/zyztem.json @@ -0,0 +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" + } +} diff --git a/package.json b/package.json index e7f7277a1..e79c3126e 100644 --- a/package.json +++ b/package.json @@ -4,21 +4,31 @@ "description": "Register *.is-a.dev domains for free", "scripts": { "test": "ENV=test jest", - "publish-records": "yarn test && node ./scripts/register-domains.js" + "lint": "eslint utils scripts domains --ext .json,.js", + "publish-records": "node ./scripts/register-domains.js", + "dc": "docker-compose -p is-a-dev", + "dc:start": "yarn dc up", + "dc:shell": "yarn dc run dev /bin/bash" }, "repository": { "type": "git", - "url": "https://github.com/is-a.dev/register-domain" + "url": "https://github.com/is-a-dev/register" }, "keywords": [ - "__" + "subdomain" ], "author": "Akshay Nair ", "license": "GPL-3.0", "dependencies": { - "@rqt/namecheap": "^2.4.2", "dotenv": "^8.2.0", "jest": "^26.4.2", + "node-fetch": "^2.6.1", + "qs": "^6.9.4", "ramda": "^0.27.1" + }, + "devDependencies": { + "eslint": "^7.11.0", + "eslint-plugin-json": "^2.1.2", + "eslint-plugin-node": "^11.1.0" } } diff --git a/scripts/certbot.sh b/scripts/certbot.sh new file mode 100755 index 000000000..3468e7395 --- /dev/null +++ b/scripts/certbot.sh @@ -0,0 +1,116 @@ +#!/usr/bin/env bash + +export ENV=production +DRY_RUN=0 +if_dry_run() { [[ $DRY_RUN == 1 ]] && echo "$1" || echo "$2"; } + +generate_certificate() { + outdir=$(mktemp -d /tmp/is-a-dev-certbot.XXXXX); + + certbot \ + --config-dir $outdir/config \ + --work-dir $outdir/work \ + --logs-dir $outdir/logs \ + certonly \ + --manual \ + -m 'phenax5@gmail.com' \ + -d '*.is-a.dev,is-a.dev' \ + $(if_dry_run "--dry-run" ""); + + echo "+-----------------------------------------------+"; + echo "| Certificates output to: |"; + echo "| $outdir |"; + echo "+-----------------------------------------------+"; +} + +update_record() { + local method=$([[ "$1" == "add" ]] && echo "addZoneRecord" || echo "removeZoneRecord"); + local type="$2"; + local name="$3"; + local address="$4"; + local ttl=${5:-"1"}; + echo " + const { domainService } = require('./utils/domain-service'); + const { ENV, DOMAIN_DOMAIN } = require('./utils/constants'); + const method = '$method'; + const name = '$name'; + const type = '$type'; + + const record = { name, type, address: '$address', ttl: $ttl }; + + async function main() { + if (method === 'removeZoneRecord') { + const data = await domainService.get({ customonly: 0, name: '$name.is-a.dev.', type }); + if (data.length > 0) { + record.id = data[0].line; + } else { + throw new Error('Unable to find record'); + } + } + + console.log('Uploading $name to', DOMAIN_DOMAIN, '(', ENV, ')...'); + const data = await domainService[method](record)(); + console.log(data.cpanelresult ? data.cpanelresult.data : data); + } + + 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' ''; +} + +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" ;; + cert) generate_certificate ;; + reset) reset_acme ;; + *) echo "Invalid command"; exit 1; ;; +esac + + +### STEPS ### +# Run ./scripts/certbot.sh cert +# Run ./scripts/certbot.sh acme_txt "" +# Run ./scripts/certbot.sh acme_file "" "" +# Run ./scripts/certbot.sh config_www +# cp -r /tmp/is-a-dev-whatever /opt/app/code/is-a-dev-cert +# Upload cert.pem and privkey.pem (from config/live/is-a.dev/) contents to SSL > Manage SSL Sites +# Run ./scripts/certbot.sh reset + diff --git a/scripts/migrate.js b/scripts/migrate.js new file mode 100644 index 000000000..7ae1c3daa --- /dev/null +++ b/scripts/migrate.js @@ -0,0 +1,30 @@ +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 73186f79a..370949af6 100644 --- a/scripts/register-domains.js +++ b/scripts/register-domains.js @@ -1,36 +1,52 @@ const R = require('ramda'); -const { VALID_RECORD_TYPES, TTL, ENV } = require('../utils/constants'); +const { VALID_RECORD_TYPES, DOMAIN_HOST_IP, TTL, ENV } = require('../utils/constants'); const { domainService: dc } = require('../utils/domain-service'); -const { getDomains: gd } = require('../utils/domain'); +const { getDomains: gd } = require('../utils/get-domain'); const getRecords = R.compose(R.toPairs, R.pick(VALID_RECORD_TYPES)); -const toHostList = R.chain(data => { - const rs = getRecords(data.record); +const address = (type, value) => { + if ('URL' === type) return `${value}`.replace(/\/$/g, ''); + if ('TXT' === type) return value; + return (type === 'CNAME' ? `${value}`.toLowerCase() : `${value}`).replace(/[/.]$/g, ''); +}; - return R.chain(([recordType, urls]) => - (Array.isArray(urls) ? urls : [urls]).map(url => ({ - HostName: data.name, - RecordType: recordType, - Address: url, - TTL, +const toHostList = R.chain(data => { + // URL redirection must contain explicit A record + // Wildcard A record breaks when used with MX + // Ref: https://github.com/is-a-dev/register/issues/2365 + if (data.record.URL && data.record.MX) { + data.record.A = [ DOMAIN_HOST_IP ] + } + + const records = getRecords(data.record); + + return R.chain(([recordType, values]) => { + const valueList = Array.isArray(values) ? values : [values]; + + return valueList.map((value, index) => ({ + name: data.name, + type: recordType, + address: address(recordType, value), + ttl: TTL, + ...(recordType === 'MX' ? { priority: index + 20 } : {}) })) - , rs); + }, records) }); -const registerDomains = async ({ domainService, getDomains }) => { +const registerDomains = async ({ domainService, getDomains, log = () => { } }) => { const domains = await getDomains().then(toHostList); - + if (domains.length === 0) return Promise.reject(new Error('Nothing to register')); - console.log(`Publishing ${domains.length} records...`); + log(`${domains.length} records found`); return domainService.updateHosts(domains); }; const main = async () => { console.log(`Running in ${ENV} mode`); - const result = await registerDomains({ domainService: dc, getDomains: gd }); + const result = await registerDomains({ domainService: dc, getDomains: gd, log: console.log }); console.log(result); }; diff --git a/scripts/reply.js b/scripts/reply.js index e1ae2d25c..233f56ed4 100644 --- a/scripts/reply.js +++ b/scripts/reply.js @@ -1,9 +1,8 @@ const getInstructions = () => ` -The changes you have made will soon be reflected!! - -## Here\'s what you need to do next +The changes have been published!! It should reflect in less than 24 hours. +## Here's what you need to do next If your domain points to a server you own, add \`domain-name.is-a.dev\` to your server config. For https, you will have to configure ssl certificate to allow the new subdomain. ### For github pages users, @@ -11,18 +10,28 @@ If your domain points to a server you own, add \`domain-name.is-a.dev\` to your * Open up the **settings** tab * Scroll down to the **Github pages** section * In the **Custom domain** text input, enter the domain you registered (\`domain-name.is-a.dev\`) -* Check the 'Enforce HTTPS' check box if you added the URL record for forced https redirection +* Check the **Enforce HTTPS** checkbox below the input * Give it some time to reflect and you should be good to go -## Need support with your domain? -If you are having trouble setting up your domain, [create an issue](https://github.com/is-a-dev/register/issues/new/choose) and pick the \`support\` template. Describe any issue you are facing there. I\'ll try my best to get back to you asap! +## Need help with your domain? +If you are having trouble setting up your domain, [create an issue](https://github.com/is-a-dev/register/issues/new/choose). I will try my best to get back to you asap! + + +## Made a mistake in the record? +Don't worry, you can create a new pull request with the corrections ## Love/Hate the service? -**Love it?** Leave it a **star**! Also consider **[donating](https://github.com/is-a-dev/register#donations)** so that I can keep this service running forever. +**Love it?** Leave it a **star**! Also consider donating so that I can keep this service running forever! +**Hate it?** Please leave your feedback by [creating an issue](https://github.com/is-a-dev/register/issues/new/choose). I would really like to keep improving this service for other users. + + +## Wanna support this project? +Help me in my mission to keep this service alive forever by donating! + +Buy Me A Coffee Liberapay recurring donation button -**Hate it?** Please leave your feedback by [creating an issue](https://github.com/is-a-dev/register/issues/new/choose). I\'d really like to keep improving this service for developers. `; module.exports = { diff --git a/scripts/verify-record.sh b/scripts/verify-record.sh new file mode 100644 index 000000000..a4fc0da6a --- /dev/null +++ b/scripts/verify-record.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env sh + +sed \ + -e 's/\.json.*$/.is-a.dev/g' \ + -e 's/^\s*domains\///g' \ + -e '/^\s*$/d' \ +| while read domain; do + echo "$domain"; + dig "$domain" +noall +answer && echo "done" || echo "x"; +done; + diff --git a/tests/cpanel.test.js b/tests/cpanel.test.js new file mode 100644 index 000000000..d2fbd35a3 --- /dev/null +++ b/tests/cpanel.test.js @@ -0,0 +1,195 @@ +const R = require('ramda'); +const { CpanelClient } = require('../utils/lib/cpanel'); + +const mockFetch = (expectRequest, decorate = R.identity) => (reqUrl, request) => { + expectRequest(reqUrl, request); + return Promise.resolve({ + json: async () => decorate(request), + }); +}; + +describe('Cpanel client', () => { + describe('fetchzonerecords', () => { + it('should make the correct request', async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe('https://example.com:2000/json-api/cpanel?customonly=1&domain=a.b&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2'); + expect(request).toEqual({ + headers: { + Authorization: 'cpanel boy:boybyebye', + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: 'example.com', + port: 2000, + username: 'boy', + apiKey: 'boybyebye', + domain: 'a.b', + dependencies: { fetch }, + }); + + await cpanel.zone.fetch(); + }); + + it('should make the correct request with query', async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe('https://example.com:2000/json-api/cpanel?customonly=1&domain=foobar.boeey&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=fetchzone_records&cpanel_jsonapi_apiversion=2'); + expect(request).toEqual({ + headers: { + Authorization: 'cpanel boy:boybyebye', + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: 'example.com', + port: 2000, + username: 'boy', + apiKey: 'boybyebye', + domain: 'a.b', + dependencies: { fetch }, + }); + + await cpanel.zone.fetch({ domain: 'foobar.boeey' }); + }); + }); + + describe('addzonerecord', () => { + it('should make the correct request', async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe('https://example.com:2000/json-api/cpanel?domain=a.b&name=googo&type=CNAME&cname=beey&ttl=2020&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=add_zone_record&cpanel_jsonapi_apiversion=2'); + expect(request).toEqual({ + headers: { + Authorization: 'cpanel boy:boybyebye', + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: 'example.com', + port: 2000, + username: 'boy', + apiKey: 'boybyebye', + domain: 'a.b', + dependencies: { fetch }, + }); + + await cpanel.zone.add({ + name: 'googo', + type: 'boyee', + cname: 'beey', + type: 'CNAME', + ttl: 2020, + }); + }); + }); + + describe('addzonerecord', () => { + it('should make the correct request', async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe('https://example.com:2000/json-api/cpanel?domain=a.b&line=500&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=ZoneEdit&cpanel_jsonapi_func=remove_zone_record&cpanel_jsonapi_apiversion=2'); + expect(request).toEqual({ + headers: { + Authorization: 'cpanel boy:boybyebye', + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: 'example.com', + port: 2000, + username: 'boy', + apiKey: 'boybyebye', + domain: 'a.b', + dependencies: { fetch }, + }); + + await cpanel.zone.remove({ + line: 500, + }); + }); + }); + + describe('fetchredirections', () => { + it('should make the correct request', async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe('https://example.com:2000/execute/Mime/list_redirects?cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=list_redirects&cpanel_jsonapi_apiversion=2'); + expect(request).toEqual({ + headers: { + Authorization: 'cpanel boy:boybyebye', + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: 'example.com', + port: 2000, + username: 'boy', + apiKey: 'boybyebye', + domain: 'a.b', + dependencies: { fetch }, + }); + + await cpanel.redirection.fetch(); + }); + }); + describe('addredirection', () => { + it('should make the correct request', async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe('https://example.com:2000/execute/Mime/add_redirect?domain=googo&destination=https%3A%2F%2Foodf.com&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=add_redirect&cpanel_jsonapi_apiversion=2'); + expect(request).toEqual({ + headers: { + Authorization: 'cpanel boy:boybyebye', + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: 'example.com', + port: 2000, + username: 'boy', + apiKey: 'boybyebye', + domain: 'a.b', + dependencies: { fetch }, + }); + + await cpanel.redirection.add({ + domain: 'googo', + destination: 'https://oodf.com' + }); + }); + }); + + describe('deleteredirection', () => { + it('should make the correct request', async () => { + const fetch = mockFetch((url, request) => { + expect(url).toBe('https://example.com:2000/execute/Mime/delete_redirect?domain=googo&cpanel_jsonapi_user=boy&cpanel_jsonapi_module=Mime&cpanel_jsonapi_func=delete_redirect&cpanel_jsonapi_apiversion=2'); + expect(request).toEqual({ + headers: { + Authorization: 'cpanel boy:boybyebye', + }, + rejectUnauthorized: false, + }); + }); + + const cpanel = CpanelClient({ + host: 'example.com', + port: 2000, + username: 'boy', + apiKey: 'boybyebye', + domain: 'a.b', + dependencies: { fetch }, + }); + + await cpanel.redirection.remove({ domain: 'googo' }); + }); + }); +}); + diff --git a/tests/domain-service.test.js b/tests/domain-service.test.js index 08e49e9b6..166712596 100644 --- a/tests/domain-service.test.js +++ b/tests/domain-service.test.js @@ -1,118 +1,336 @@ const R = require('ramda'); -const { getDomainService } = require('../utils/domain-service'); +const { getDomainService, diffRecords } = require('../utils/domain-service'); +const { DOMAIN_DOMAIN } = require('../utils/constants'); -const getNc = ({ onSet, onGet } = {}) => ({ - dns: { - setHosts: (_, list) => onSet(list), - getHosts: (_) => onGet(), +const getCpanel = ({ zone, addZone, removeZone, redir, addRedir, removeRedir, addEmail, removeEmail } = {}) => ({ + zone: { + fetch: (_) => zone(), + add: (rec) => addZone(rec), + remove: (rec) => removeZone(rec), + }, + redirection: { + fetch: (_) => redir(), + add: (rec) => addRedir(rec), + remove: (rec) => removeRedir(rec), + }, + email: { + add: (rec) => addEmail(rec), + remove: (rec) => removeEmail(rec), }, }); -describe('Domain service', () => { - describe('getHosts', () => { - it('should resolve with a list of hosts', async () => { - const hosts = [ - { Name: 'xx', Type: 'CNAME', Address: 'fck.com.' }, - { Name: 'xx', Type: 'A', Address: '111.1.1212.1' }, - ]; - const onGet = async () => ({ hosts }) - const mockDomainService = getDomainService({ nc: getNc({ onGet }) }); - const list = await mockDomainService.getHosts(); +describe('diffRecords', () => { + it('should show added record', () => { + const oldRecords = [ + { name: 'xx', type: 'CNAME', address: 'fck.com.' }, + { name: 'xa', type: 'A', address: '111.1.1212.1' }, + ]; + const newRecords = [ + { name: 'xx', type: 'CNAME', address: 'fck.com.' }, + { name: 'xa', type: 'A', address: '111.1.1212.1' }, + { name: 'boo', type: 'CNAME', address: 'x.com' }, + ]; - expect(list).toEqual([ - { HostName: 'xx', RecordType: 'CNAME', Address: 'fck.com' }, - { HostName: 'xx', RecordType: 'A', Address: '111.1.1212.1' }, - ]); + const result = diffRecords(oldRecords, newRecords); + expect(result).toEqual({ + remove: [], + add: [ + { name: 'boo', type: 'CNAME', address: 'x.com' }, + ], }); }); - describe('setHosts', () => { + it('should show edited records', () => { + const oldRecords = [ + { name: 'xx', type: 'CNAME', address: 'fck.com.' }, + { name: 'xa', type: 'A', address: '111.1.1212.1' }, + ]; + const newRecords = [ + { name: 'xx', type: 'CNAME', address: 'fck.com.' }, + { name: 'xa', type: 'A', address: '69.69.69.69' }, + ]; + + const result = diffRecords(oldRecords, newRecords); + expect(result).toEqual({ + remove: [ + { name: 'xa', type: 'A', address: '111.1.1212.1' }, + ], + add: [ + { name: 'xa', type: 'A', address: '69.69.69.69' }, + ], + }); + }); + + it('should show added records with the same name and record type', () => { + const oldRecords = [ + { name: 'xx', type: 'CNAME', address: 'fck.com.' }, + { name: 'xa', type: 'A', address: '69.69.69.69' }, + ]; + const newRecords = [ + { name: 'xx', type: 'CNAME', address: 'fck.com.' }, + { name: 'xa', type: 'A', address: '69.69.69.69' }, + { name: 'xa', type: 'A', address: '69.69.4.20' }, + ]; + + const result = diffRecords(oldRecords, newRecords); + expect(result).toEqual({ + remove: [], + add: [ + { name: 'xa', type: 'A', address: '69.69.4.20' }, + ], + }); + }); + + it('should diff complex changes', () => { + const oldRecords = [ + { name: 'a', type: 'CNAME', address: 'fck.com.' }, + { name: 'b', type: 'A', address: '69.69.69.69' }, + { name: '111', type: 'CNAME', address: 'x' }, + { name: 'd', type: 'A', address: '69.69.4.20' }, + ]; + const newRecords = [ + { name: '111', type: 'CNAME', address: 'x' }, + { name: 'd', type: 'CNAME', address: 'duck.com' }, + { name: 'a', type: 'CNAME', address: 'og.com' }, + { name: 'b', type: 'A', address: '69.69.69.69' }, + { name: 'b', type: 'A', address: '69.69.4.20' }, + { name: 'c', type: 'CNAME', address: 'ccc.cc' }, + ]; + + const result = diffRecords(oldRecords, newRecords); + expect(result).toEqual({ + remove: [ + { name: 'a', type: 'CNAME', address: 'fck.com.' }, + { name: 'd', type: 'A', address: '69.69.4.20' }, + ], + add: [ + { name: 'd', type: 'CNAME', address: 'duck.com' }, + { name: 'a', type: 'CNAME', address: 'og.com' }, + { name: 'b', type: 'A', address: '69.69.4.20' }, + { name: 'c', type: 'CNAME', address: 'ccc.cc' }, + ], + }); + }); +}); + +describe('Domain service', () => { + const addZone = jest.fn(async () => ({})); + const removeZone = jest.fn(async () => ({})); + const addRedir = jest.fn(async () => ({})); + const removeRedir = jest.fn(async () => ({})); + const addEmail = jest.fn(async () => ({})); + const removeEmail = jest.fn(async () => ({})); + + const mockDS = ({ zones, redirections }) => getDomainService({ + cpanel: getCpanel({ + zone: async () => zones, + redir: async () => redirections, + addZone, + addEmail, + addRedir, + removeZone, + removeRedir, + removeEmail, + }) + }); + + const getRecordCalls = recfn => recfn.mock.calls + .map(R.head) + .map(R.pick(['name', 'type', 'address', 'redirect', 'domain', 'line', 'priority', 'exchanger'])); + + beforeEach(() => { + addZone.mockClear(); + removeZone.mockClear(); + addRedir.mockClear(); + removeRedir.mockClear(); + addEmail.mockClear(); + removeEmail.mockClear(); + }); + + describe('getHosts', () => { it('should resolve with a list of hosts', async () => { - const records = [ { x: 'y' }, { z: 'a' } ]; + const zones = [ + { name: 'xx', type: 'CNAME', address: 'fck.com.' }, + { name: 'xx', type: 'A', address: '111.1.1212.1' }, + ]; + const redirections = []; + const zone = async () => zones; + const redir = async () => redirections; + const mockDomainService = getDomainService({ cpanel: getCpanel({ zone, redir }) }); + const list = await mockDomainService.getHosts(); - const onSet = jest.fn((list) => { - expect(list).toBe(records); - return Promise.resolve(null); - }); + expect(list).toEqual([ + { name: 'xx', type: 'CNAME', address: 'fck.com' }, + { name: 'xx', type: 'A', address: '111.1.1212.1' }, + ]); + }); - const mockDomainService = getDomainService({ nc: getNc({ onSet }) }); - await mockDomainService.setHosts(records); - expect(onSet).toBeCalledTimes(1); + it('should resolve with a redirections', async () => { + const zones = [ + { line: '111', name: 'xx', type: 'CNAME', address: 'fck.com.' }, + { line: '112', name: 'xx', type: 'A', address: '111.1.1212.1' }, + ]; + const redirections = [ + { domain: 'foo.booboo.xyz', destination: 'https://google.com' }, + { domain: 'foo1.booboo.xyz', destination: 'https://duck.com' }, + ]; + const zone = async () => zones; + const redir = async () => redirections; + const mockDomainService = getDomainService({ cpanel: getCpanel({ zone, redir }) }); + const list = await mockDomainService.getHosts(); + + expect(list).toEqual([ + { id: '111', name: 'xx', type: 'CNAME', address: 'fck.com' }, + { id: '112', name: 'xx', type: 'A', address: '111.1.1212.1' }, + { id: `foo.${DOMAIN_DOMAIN}`, name: 'foo', type: 'URL', address: 'https://google.com' }, + { id: `foo1.${DOMAIN_DOMAIN}`, name: 'foo1', type: 'URL', address: 'https://duck.com' }, + ]); }); }); describe('updateHosts', () => { it('should append new hosts with existing ones and set it', async () => { - const records = [ - { HostId: 1, Name: 'a', Type: 'CNAME', Address: 'boo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'goo' }, + const zones = [ + { line: 1, name: 'a', type: 'CNAME', address: 'boo' }, + { line: 2, name: 'b', type: 'CNAME', address: 'goo' }, ]; + const redirections = []; - const onGet = () => Promise.resolve({ hosts: records }); - const onSet = jest.fn(async () => ({})); - - const mockDomainService = getDomainService({ nc: getNc({ onSet, onGet }) }); + const mockDomainService = mockDS({ zones, redirections }); await mockDomainService.updateHosts([ - { HostName: 'a', RecordType: 'CNAME', Address: 'boo' }, - { HostName: 'b', RecordType: 'CNAME', Address: 'goo' }, - { HostName: 'c', RecordType: 'A', Address: '12.131321.213' }, + { name: 'a', type: 'CNAME', address: 'boo' }, + { name: 'b', type: 'CNAME', address: 'goo' }, + { name: 'c', type: 'A', address: '12.131321.213' }, + { name: 'c', type: 'MX', address: 'foobar.com', priority: 2 }, ]); - const [hosts] = onSet.mock.calls[0]; + expect(addZone).toBeCalledTimes(1); + expect(getRecordCalls(addZone)).toEqual([ + { name: 'c', type: 'A', address: '12.131321.213' }, + ]); - expect(hosts.map(R.pick(['HostName', 'RecordType', 'Address']))).toEqual([ - { HostName: 'a', RecordType: 'CNAME', Address: 'boo' }, - { HostName: 'b', RecordType: 'CNAME', Address: 'goo' }, - { HostName: 'c', RecordType: 'A', Address: '12.131321.213' }, + expect(addEmail).toBeCalledTimes(1); + expect(getRecordCalls(addEmail)).toEqual([ + { domain: 'c.is-a.dev', exchanger: 'foobar.com', priority: 2 }, + ]); + + expect(removeZone).toBeCalledTimes(0); + expect(removeEmail).toBeCalledTimes(0); + }); + + it('should update matching host and set it', async () => { + const zones = [ + { line: 1, name: 'a', type: 'CNAME', address: 'boo' }, + { line: 2, name: 'b', type: 'CNAME', address: 'goo' }, + ]; + const redirections = []; + + const mockDomainService = mockDS({ zones, redirections }); + await mockDomainService.updateHosts([ + { name: 'a', type: 'CNAME', address: 'boo' }, + { name: 'b', type: 'CNAME', address: 'googoogaga' }, + ]); + + expect(addZone).toBeCalledTimes(1); + expect(getRecordCalls(addZone)).toEqual([ + { name: 'b', type: 'CNAME', address: 'googoogaga' }, + ]); + expect(removeZone).toBeCalledTimes(1); + expect(getRecordCalls(removeZone)).toEqual([ + { line: 2 }, ]); }); it('should update matching host and set it', async () => { - const records = [ - { HostId: 1, Name: 'a', Type: 'CNAME', Address: 'boo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'goo' }, + const zones = [ + { line: 1, name: 'a', type: 'CNAME', address: 'boo' }, + { line: 2, name: 'b', type: 'CNAME', address: 'goo' }, + { line: 3, name: 'b', type: 'CNAME', address: 'xaa' }, ]; + const redirections = []; - const onGet = () => Promise.resolve({ hosts: records }); - const onSet = jest.fn(async () => ({})); - - const mockDomainService = getDomainService({ nc: getNc({ onSet, onGet }) }); + const mockDomainService = mockDS({ zones, redirections }); await mockDomainService.updateHosts([ - { HostName: 'a', RecordType: 'CNAME', Address: 'boo' }, - { HostName: 'b', RecordType: 'CNAME', Address: 'googoogaga' }, + { name: 'a', type: 'CNAME', address: 'boo' }, + { name: 'b', type: 'CNAME', address: 'googoogaga' }, + { name: 'b', type: 'CNAME', address: 'farboo' }, ]); - const [hosts] = onSet.mock.calls[0]; - - expect(hosts.map(R.pick(['HostName', 'RecordType', 'Address']))).toEqual([ - { HostName: 'a', RecordType: 'CNAME', Address: 'boo' }, - { HostName: 'b', RecordType: 'CNAME', Address: 'googoogaga' }, + expect(addZone).toBeCalledTimes(2); + expect(getRecordCalls(addZone)).toEqual([ + { name: 'b', type: 'CNAME', address: 'googoogaga' }, + { name: 'b', type: 'CNAME', address: 'farboo' }, + ]); + expect(removeZone).toBeCalledTimes(2); + expect(getRecordCalls(removeZone)).toEqual([ + { line: 2 }, + { line: 3 }, ]); }); - it('should update matching host and set it', async () => { - const records = [ - { HostId: 1, Name: 'a', Type: 'CNAME', Address: 'boo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'goo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'xaa' }, + it('should workout this complex example', async () => { + const zones = [ + { line: 1, name: 'a', type: 'CNAME', address: 'world' }, + { line: 2, name: 'b', type: 'A', address: '1' }, + { line: 3, name: 'b', type: 'A', address: '2' }, + { line: 4, name: 'c', type: 'CNAME', address: 'hello.com' }, + { line: 5, name: 'c', type: 'MX', address: 'mx1.hello.com', priority: 20 }, + { line: 6, name: 'c', type: 'MX', address: 'mx2.hello.com', priority: 21 }, + { line: 7, name: 'b', type: 'MX', address: 'foo.bar', priority: 20 }, + ]; + const redirections = [ + { domain: `b.${DOMAIN_DOMAIN}`, destination: 'https://foobar.com' }, + { domain: `c.${DOMAIN_DOMAIN}`, destination: 'https://goobar.com' }, + { domain: `x.${DOMAIN_DOMAIN}`, destination: 'https://example.com' }, ]; - const onGet = () => Promise.resolve({ hosts: records }); - const onSet = jest.fn(async () => ({})); - - const mockDomainService = getDomainService({ nc: getNc({ onSet, onGet }) }); + const mockDomainService = mockDS({ zones, redirections }); await mockDomainService.updateHosts([ - { HostName: 'a', RecordType: 'CNAME', Address: 'boo' }, - { HostName: 'b', RecordType: 'CNAME', Address: 'googoogaga' }, - { HostName: 'b', RecordType: 'CNAME', Address: 'farboo' }, + { name: 'a', type: 'CNAME', address: 'boo' }, + { name: 'b', type: 'A', address: '1' }, + { name: 'b', type: 'A', address: '2' }, + { name: 'b', type: 'A', address: '3' }, + { name: 'b', type: 'URL', address: 'https://wowow.com' }, + { name: 'c', type: 'CNAME', address: 'hello.com' }, + { name: 'c', type: 'URL', address: 'https://goobar.com' }, + { name: 'd', type: 'CNAME', address: 'helo.com' }, + { name: 'd', type: 'URL', address: 'https://hhh.com' }, + { name: 'x', type: 'URL', address: 'https://example69.com' }, + { name: 'c', type: 'MX', address: 'mx2.hello.com', priority: 21 }, + { name: 'a', type: 'MX', address: 'example.com', priority: 20 }, ]); - const [hosts] = onSet.mock.calls[0]; + expect(addZone).toBeCalledTimes(3); + expect(getRecordCalls(addZone)).toEqual([ + { name: 'a', type: 'CNAME', address: 'boo' }, + { name: 'b', type: 'A', address: '3' }, + { name: 'd', type: 'CNAME', address: 'helo.com' }, + ]); + expect(removeZone).toBeCalledTimes(1); + expect(getRecordCalls(removeZone)).toEqual([ + { line: 1 }, + ]); - expect(hosts.map(R.pick(['HostName', 'RecordType', 'Address']))).toEqual([ - { HostName: 'a', RecordType: 'CNAME', Address: 'boo' }, - { HostName: 'b', RecordType: 'CNAME', Address: 'googoogaga' }, - { HostName: 'b', RecordType: 'CNAME', Address: 'farboo' }, + expect(addEmail).toBeCalledTimes(1); + expect(getRecordCalls(addEmail)).toEqual([ + { domain: 'a.is-a.dev', exchanger: 'example.com', priority: 20 }, + ]); + expect(removeEmail).toBeCalledTimes(2); + expect(getRecordCalls(removeEmail)).toEqual([ + { domain: 'c.is-a.dev', exchanger: 'mx1.hello.com', priority: 20 }, + { domain: 'b.is-a.dev', exchanger: 'foo.bar', priority: 20 }, + ]); + + expect(addRedir).toBeCalledTimes(3); + expect(getRecordCalls(addRedir)).toEqual([ + { domain: `b.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://wowow.com' }, + { domain: `d.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://hhh.com' }, + { domain: `x.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://example69.com' }, + ]); + expect(removeRedir).toBeCalledTimes(2); + expect(getRecordCalls(removeRedir)).toEqual([ + { domain: `b.${DOMAIN_DOMAIN}` }, + { domain: `x.${DOMAIN_DOMAIN}` }, ]); }); }); diff --git a/tests/domain-utils.test.js b/tests/domain-utils.test.js index 8dfbbacb8..077896726 100644 --- a/tests/domain-utils.test.js +++ b/tests/domain-utils.test.js @@ -1,4 +1,4 @@ -const { getDomains, validateDomainData } = require('../utils/domain'); +const { getDomains } = require('../utils/get-domain'); describe('getDomains', () => { it('should resolve with the list of domains', async () => { @@ -7,63 +7,3 @@ describe('getDomains', () => { }); }); -const defaultDomain = { - name: 'aaa', - record: { - A: ['121.121.121.121'] - }, - owner: { - username: 'betsy', - email: 'betsyfuckyoassup@foobar.com', - }, -}; - -const getstroflen = len => Array(len).fill('a').join(''); - -describe('validateDomainData', () => { - const invalidCases = [ - {}, - { name: 'helo' }, - { name: 'wwow', record: { A: ['12312'] } }, - ...['', ' ', undefined, 'hlo wld', 'g32++13', 'ajsdD_123yq', 'khsda%', '122*dsd', getstroflen(101)].map(name => ({ - ...defaultDomain, - name, - })), - { ...defaultDomain, record: { CNAME: 'sd', A: ['121,3213'] } }, - { ...defaultDomain, record: { A: ['121', '12'], FOOBAR: ['sd'] } }, - { ...defaultDomain, owner: {}, }, - { ...defaultDomain, owner: { username: 'hwelo', }, }, - { ...defaultDomain, owner: { email: 'hwelo' }, }, - ]; - - const validCases = [ - defaultDomain, - ...['hello', 'hello-world', '11111111111', '--wow--', 'wow--', '--wow'].map(name => ({ - ...defaultDomain, - name, - })), - { - ...defaultDomain, - description: getstroflen(99), - }, - { ...defaultDomain, record: { CNAME: 'sd', URL: '121,3213' } }, - ]; - - it('should return false for invalid data', () => { - invalidCases.forEach(data => { - const { valid, errors } = validateDomainData(data); - expect(valid).toBe(false); - expect(errors.length).toBeGreaterThan(0); - }); - }); - - it('should return true if the name is valid', () => { - validCases.forEach(data => { - const { valid, errors } = validateDomainData(data); - if (!valid) console.log(errors); - expect(valid).toBe(true); - expect(errors).toEqual([]); - }); - }); -}); - diff --git a/tests/domains.test.js b/tests/domains.test.js index 37c59575e..44c2a5422 100644 --- a/tests/domains.test.js +++ b/tests/domains.test.js @@ -1,9 +1,18 @@ const R = require('ramda'); -const { getDomains, validateDomainData } = require('../utils/domain'); +const fs = require('fs'); +const { getDomains } = require('../utils/get-domain'); +const { validateDomainData } = require('../utils/validations'); +const { DOMAINS_PATH } = require('../utils/constants'); describe('Domains', () => { + it('should all be json', async () => { + const files = await fs.promises.readdir(DOMAINS_PATH, {}); + expect(files.filter(f => !/\.json$/g.test(f)).length).toBe(0); + }); + it('should be valid', (done) => { getDomains() + .then(R.reject(R.propEq('name', '_psl'))) .then(R.map(data => { const { errors } = validateDomainData(data); if (errors.length) { diff --git a/tests/register.test.js b/tests/register.test.js index 23d1ffd43..88eb4694e 100644 --- a/tests/register.test.js +++ b/tests/register.test.js @@ -1,11 +1,22 @@ +const R = require('ramda'); const { toHostList, registerDomains } = require('../scripts/register-domains'); -const { TTL } = require('../utils/constants'); +const { TTL, DOMAIN_DOMAIN } = require('../utils/constants'); const { getDomainService } = require('../utils/domain-service'); -const getNc = ({ onSet, onGet } = {}) => ({ - dns: { - setHosts: (_, list) => onSet(list), - getHosts: (_) => onGet(), +const getCpanel = ({ zone, addZone, removeZone, redir, addRedir, removeRedir } = {}) => ({ + zone: { + fetch: (_) => zone(), + add: (rec) => addZone(rec), + remove: (rec) => removeZone(rec), + }, + redirection: { + fetch: (_) => redir(), + add: (rec) => addRedir(rec), + remove: (rec) => removeRedir(rec), + }, + email: { + add: (rec) => addEmail(rec), + remove: (rec) => removeEmail(rec), }, }); @@ -15,116 +26,95 @@ describe('toHostList', () => { { name: 'akshay', record: { CNAME: 'phenax.github.io' } }, { name: 'foobar', record: { CNAME: 'v.io' } }, { name: 'xx', record: { A: ['1.2.3.4', '5.6.3.2', '1.2.31.1'] } }, + { name: 'xx', record: { CNAME: 'foobar.com', MX: ['as.com', 'f.com'] } }, ]); expect(res).toEqual([ - { HostName: 'akshay', RecordType: 'CNAME', Address: 'phenax.github.io', TTL }, - { HostName: 'foobar', RecordType: 'CNAME', Address: 'v.io', TTL }, - { HostName: 'xx', RecordType: 'A', Address: '1.2.3.4', TTL }, - { HostName: 'xx', RecordType: 'A', Address: '5.6.3.2', TTL }, - { HostName: 'xx', RecordType: 'A', Address: '1.2.31.1', TTL }, + { name: 'akshay', type: 'CNAME', address: 'phenax.github.io', ttl: TTL }, + { name: 'foobar', type: 'CNAME', address: 'v.io', ttl: TTL }, + { name: 'xx', type: 'A', address: '1.2.3.4', ttl: TTL }, + { name: 'xx', type: 'A', address: '5.6.3.2', ttl: TTL }, + { name: 'xx', type: 'A', address: '1.2.31.1', ttl: TTL }, + { name: 'xx', type: 'CNAME', address: 'foobar.com', ttl: TTL }, + { name: 'xx', type: 'MX', address: 'as.com', priority: 20, ttl: TTL }, + { name: 'xx', type: 'MX', address: 'f.com', priority: 21, ttl: TTL }, ]); }); }); describe('registerDomains', () => { + const addZone = jest.fn(async () => ({})); + const removeZone = jest.fn(async () => ({})); + const addRedir = jest.fn(async () => ({})); + const removeRedir = jest.fn(async () => ({})); + const addEmail = jest.fn(async () => ({})); + const removeEmail = jest.fn(async () => ({})); + + 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(); + }); + 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 = [ - { HostId: 1, Name: 'a', Type: 'CNAME', Address: 'boo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'goo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'xaa' }, + { 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 onSet = jest.fn(async () => ({})); - - const domainService = getDomainService({ nc: getNc({ onSet, onGet: async () => ({ hosts: remoteHosts }) }) }); + const domainService = mockDS({ zones: remoteHosts, redirections: remoteRedirections }); await registerDomains({ getDomains: async () => localHosts, domainService }); - expect(onSet).toBeCalledTimes(1); - - const [hosts] = onSet.mock.calls[0]; - expect(hosts).toEqual([ - { HostId: 1, Address: 'hello', HostName: 'a', RecordType: 'CNAME', TTL }, - { HostId: 2, Address: 'xaa', HostName: 'b', RecordType: 'CNAME', TTL }, - ]); + expect(addZone).toBeCalledTimes(0); + expect(removeZone).toBeCalledTimes(1); + expect(addRedir).toBeCalledTimes(0); + expect(removeRedir).toBeCalledTimes(0); }); it('should add the new set hosts', async () => { const localHosts = [ - { name: 'a', record: { CNAME: 'boo' } }, - { name: 'b', record: { CNAME: 'xaa' } }, - { name: 'c', record: { CNAME: 'yello' } }, + { name: 'a', record: { CNAME: 'boo', URL: 'z' } }, + { name: 'b', record: { CNAME: 'xaa', URL: 'x' } }, + { name: 'c', record: { CNAME: 'yello', URL: 'https://google.com' } }, ]; const remoteHosts = [ - { HostId: 1, Name: 'a', Type: 'CNAME', Address: 'boo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'xaa' }, + { line: 1, name: 'a', type: 'CNAME', address: 'boo' }, + { line: 2, name: 'b', type: 'CNAME', address: 'xaa' }, + ]; + const remoteRedirections = [ + { domain: `b.${DOMAIN_DOMAIN}`, destination: 'x' }, + { domain: `a.${DOMAIN_DOMAIN}`, destination: 'y' }, ]; - const onSet = jest.fn(async () => ({})); - - const domainService = getDomainService({ nc: getNc({ onSet, onGet: async () => ({ hosts: remoteHosts }) }) }); + const domainService = mockDS({ zones: remoteHosts, redirections: remoteRedirections }); await registerDomains({ getDomains: async () => localHosts, domainService }); - expect(onSet).toBeCalledTimes(1); - - const [hosts] = onSet.mock.calls[0]; - expect(hosts).toEqual([ - { HostId: 1, Address: 'boo', HostName: 'a', RecordType: 'CNAME', TTL }, - { HostId: 2, Address: 'xaa', HostName: 'b', RecordType: 'CNAME', TTL }, - { Address: 'yello', HostName: 'c', RecordType: 'CNAME', TTL }, - ]); - }); - - it('should remove unlisted hosts', async () => { - const localHosts = [ - { name: 'a', record: { CNAME: 'boo' } }, - ]; - const remoteHosts = [ - { HostId: 1, Name: 'a', Type: 'CNAME', Address: 'boo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'xaa' }, - ]; - - const onSet = jest.fn(async () => ({})); - - const domainService = getDomainService({ nc: getNc({ onSet, onGet: async () => ({ hosts: remoteHosts }) }) }); - await registerDomains({ getDomains: async () => localHosts, domainService }); - - expect(onSet).toBeCalledTimes(1); - - const [hosts] = onSet.mock.calls[0]; - expect(hosts).toEqual([ - { HostId: 1, Address: 'boo', HostName: 'a', RecordType: 'CNAME', TTL }, - ]); - }); - - it('should change record type from cname to a', async () => { - const localHosts = [ - { name: 'a', record: { CNAME: 'boo' } }, - { name: 'b', record: { A: ['1', '2', '3'] } }, - ]; - const remoteHosts = [ - { HostId: 1, Name: 'a', Type: 'CNAME', Address: 'boo' }, - { HostId: 2, Name: 'b', Type: 'CNAME', Address: 'xaa' }, - ]; - - const onSet = jest.fn(async () => ({})); - - const domainService = getDomainService({ nc: getNc({ onSet, onGet: async () => ({ hosts: remoteHosts }) }) }); - await registerDomains({ getDomains: async () => localHosts, domainService }); - - expect(onSet).toBeCalledTimes(1); - - const [hosts] = onSet.mock.calls[0]; - expect(hosts).toEqual([ - { HostId: 1, Address: 'boo', HostName: 'a', RecordType: 'CNAME', TTL }, - { Address: '1', HostName: 'b', RecordType: 'A', TTL }, - { Address: '2', HostName: 'b', RecordType: 'A', TTL }, - { Address: '3', HostName: 'b', RecordType: 'A', TTL }, - ]); + expect(addZone).toBeCalledTimes(1); + expect(removeZone).toBeCalledTimes(0); + expect(addRedir).toBeCalledTimes(2); + expect(removeRedir).toBeCalledTimes(1); }); }); diff --git a/tests/validations.test.js b/tests/validations.test.js new file mode 100644 index 000000000..e97ddbb08 --- /dev/null +++ b/tests/validations.test.js @@ -0,0 +1,108 @@ +const { validateDomainData, isValidDomain } = require('../utils/validations'); +const INVALID_NAMES = require('../utils/invalid-domains.json'); + +const defaultDomain = { + name: 'aaa', + record: { + A: ['121.121.121.121'] + }, + owner: { + username: 'betsy', + email: 'betsyfuckyoassup@foobar.com', + }, +}; + +const getstroflen = len => Array(len).fill('a').join(''); + +describe('isValidMX', () => { + it('should be valid mx record', () => { + const cases = [ + { mx: 'foobar.com', result: true }, + { mx: 'as.as', result: true }, + { mx: 'ASPMX.L.GOOGLE.COM', result: true }, + { mx: 'ALT4.ASPMX.L.GOOGLE.COM', result: true }, + { mx: 'hello', result: false }, + { mx: 'helalsds-asd5sjdsd.com', result: true }, + { mx: 'helalsds?asd5sjdsd.com', result: false }, + { mx: 'helalsds_asd5sjdsd.com', result: false }, + ]; + + cases.forEach(({ mx, result }) => { + expect(isValidDomain(mx)).toBe(result); + }); + }); +}); + +describe('validateDomainData', () => { + const invalidCases = [ + {}, + { name: 'helo' }, + { name: 'wwow', record: { A: ['12312'] } }, + ...['', ' ', undefined, 'hlo wld', 'g32++13', 'ajsdD_123yq', 'khsda%', '122*dsd', getstroflen(101)].map(name => ({ + ...defaultDomain, + name, + })), + { ...defaultDomain, record: { CNAME: 'sd', A: ['121,3213'] } }, + { ...defaultDomain, record: { A: ['121', '12'], FOOBAR: ['sd'] } }, + { ...defaultDomain, record: { A: [] } }, + { ...defaultDomain, owner: {}, }, + { ...defaultDomain, owner: { username: 'hwelo', }, }, + { ...defaultDomain, owner: { email: 'hwelo' }, }, + { ...defaultDomain, record: { CNAME: 'http://foobar.com' } }, + { ...defaultDomain, record: { CNAME: 'https://foobar.com' } }, + { ...defaultDomain, record: { URL: 'foobar.com' } }, + { ...defaultDomain, record: { CNAME: 'foobar.com', A: ['11.22.22.33'] } }, + { ...defaultDomain, record: { CNAME: 'foobar.com', MX: ['ALT4.ASPMX.L.GOOGLE.COM'] } }, + ...INVALID_NAMES.map(name => ({ ...defaultDomain, name })).slice(0, 1), + { ...defaultDomain, record: { TXT: ['foobar wow nice!!!'] } }, + { ...defaultDomain, name: 'a.b' }, + { ...defaultDomain, name: 'ww2.baa' }, + { ...defaultDomain, name: 'help.baa' }, + { ...defaultDomain, name: '_github-pages-challenge-is-a-dev' }, + { ...defaultDomain, name: '_github-challenge-is-a-dev' }, + ]; + + const validCases = [ + defaultDomain, + ...['hello', 'hello-world', '11111111111', '--wow--', 'wow--', '--wow'].map(name => ({ + ...defaultDomain, + name, + })), + { + ...defaultDomain, + description: getstroflen(99), + }, + { ...defaultDomain, record: { CNAME: 'aa.sd' } }, + { ...defaultDomain, record: { URL: 'https://foobar.com' } }, + { ...defaultDomain, record: { URL: 'http://foobar.com/foobar/' } }, + { ...defaultDomain, record: { MX: ['ALT4.ASPMX.L.GOOGLE.COM'] } }, + { ...defaultDomain, record: { TXT: 'foobar wow nice!!!' } }, + { ...defaultDomain, record: { A: ['1.1.1.1'], MX: ['mx1.example.com'] } }, + { ...defaultDomain, name: 'gogo.foo.bar' }, + { ...defaultDomain, name: 'ww9.baa' }, + { ...defaultDomain, name: '_github-pages-challenge-phenax.akshay' }, + { ...defaultDomain, name: '_github-pages-challenge-hello01-ga' }, + { ...defaultDomain, name: '_github-pages-challenge-hello01_ga' }, + { ...defaultDomain, name: '_github-challenge-phenax.akshay' }, + { ...defaultDomain, name: '_github-challenge-hello01-ga' }, + { ...defaultDomain, name: '_github-challenge-hello01_ga' }, + ]; + + it('should return false for invalid data', () => { + invalidCases.forEach(data => { + const { valid, errors } = validateDomainData(data); + expect(valid).toBe(false); + expect(errors.length).toBeGreaterThan(0); + }); + }); + + it('should return true if the name is valid', () => { + validCases.forEach(data => { + const { valid, errors } = validateDomainData(data); + if (!valid) console.log(JSON.stringify(errors, null, 2)); + expect(valid).toBe(true); + expect(errors).toEqual([]); + }); + }); +}); + diff --git a/utils/constants.js b/utils/constants.js index 89a9b627f..022bd6646 100644 --- a/utils/constants.js +++ b/utils/constants.js @@ -1,21 +1,34 @@ const path = require('path'); -const { ENV = 'sandbox', CI } = process.env; +const { ENV = 'test', CI } = process.env; if (!CI) { require('dotenv').config({ path: path.resolve(`.env.${ENV}`) }); } -const { NC_USER, NC_API_KEY, NC_DOMAIN, IP_ADDRESS } = process.env; +const { + DOMAIN_USER, + DOMAIN_API_KEY, + DOMAIN_DOMAIN, + DOMAIN_API_HOST, + DOMAIN_API_PORT, + DOMAIN_HOST_IP, +} = process.env; const IS_TEST = ENV === 'test'; +const DOMAINS_PATH = path.resolve('domains'); + module.exports = { ENV, - VALID_RECORD_TYPES: ['CNAME', 'A', 'ALIAS', 'URL'], - NC_DOMAIN: NC_DOMAIN || 'booboo.xyz', - NC_USER: IS_TEST ? 'testuser' : NC_USER, - NC_API_KEY: IS_TEST ? 'testkey' : NC_API_KEY, - IP_ADDRESS, - TTL: 5*60, + IS_TEST, + VALID_RECORD_TYPES: ['CNAME', 'A', 'URL', 'MX', 'TXT'], + DOMAIN_DOMAIN: DOMAIN_DOMAIN || 'booboo.xyz', + DOMAIN_USER: IS_TEST ? 'testuser' : DOMAIN_USER, + DOMAIN_API_KEY: IS_TEST ? 'testkey' : DOMAIN_API_KEY, + DOMAIN_API_HOST: IS_TEST ? 'example.com' : DOMAIN_API_HOST, + DOMAIN_API_PORT: IS_TEST ? 6969 : DOMAIN_API_PORT, + DOMAIN_HOST_IP, + DOMAINS_PATH, + TTL: 5 * 60 * 60, }; diff --git a/utils/domain-service.js b/utils/domain-service.js index 0831f3cb2..81421f7aa 100644 --- a/utils/domain-service.js +++ b/utils/domain-service.js @@ -1,72 +1,154 @@ const R = require('ramda'); -const Namecheap = require('@rqt/namecheap'); -const { NC_DOMAIN, NC_USER, NC_API_KEY, ENV, IP_ADDRESS } = require('../utils/constants'); +const { cpanel } = require('./lib/cpanel'); +const { DOMAIN_DOMAIN } = require('./constants'); +const { then, log, print, lazyTask, batchLazyTasks } = require('./helpers'); -const IS_SANDBOX = ENV === 'sandbox'; +const BATCH_SIZE = 1; -const getDomainService = ({ nc }) => { - let hostList = []; - - const getHosts = async () => { - if (hostList.length) return hostList; - - const list = await nc.dns.getHosts(NC_DOMAIN) - .then(R.propOr([], 'hosts')) - .then(R.map(host => R.omit(['Name', 'Type'], { - ...host, - HostName: host.Name, - RecordType: host.Type, - Address: `${host.Address}`.replace(/\.$/g, ''), - }))); - - hostList = list; - return list; - }; - - const setHosts = hosts => nc.dns.setHosts(NC_DOMAIN, hosts); - - const getHostKey = host => `${host.HostName}--${host.RecordType}`; - const toHostMap = hosts => hosts.reduce((acc, host) => { - const key = getHostKey(host); - return { ...acc, [key]: [ ...(acc[key] || []), host ] }; - }, {}); - - const updateHosts = async hosts => { - const hostList = await getHosts(); - const remoteHostMap = toHostMap(hostList); - const localHostMap = toHostMap(hosts); - - const newHostList = R.toPairs(localHostMap).reduce((acc, [key, local]) => { - const remote = remoteHostMap[key]; - - if (remote) { - return acc.concat(local.map((localItem, index) => R.merge(remote[index], localItem))); - } - - return [...acc, ...local]; - }, []); - - return setHosts(newHostList); - }; - - return { getHosts, setHosts, updateHosts }; -}; - -if (!NC_API_KEY) { - console.error('NC_API_KEY cannot be empty'); - process.exit(1); -} - -const nc = new Namecheap({ - user: NC_USER, - key: NC_API_KEY, - ip: IP_ADDRESS, - sandbox: IS_SANDBOX, +const recordToRedirection = ({ name, address }) => ({ + domain: name === '@' ? DOMAIN_DOMAIN : `${name}.${DOMAIN_DOMAIN}`, + redirect: address, + type: 'permanent', + redirect_wildcard: 1, + redirect_www: 1, +}); +const recordToZone = ({ name, type, address, id, priority }) => ({ + line: id, + name: name === '@' ? `${DOMAIN_DOMAIN}.` : name, + type, + address, + ...(type === 'MX' ? { priority } : {}), + ...(type === 'CNAME' ? { cname: address } : {}), + ...(type === 'TXT' ? { txtdata: address } : {}), }); -const domainService = getDomainService({ nc }); +const cleanName = name => + name === DOMAIN_DOMAIN ? '@' : `${name}`.replace(new RegExp(`\\.${DOMAIN_DOMAIN}\\.?$`), '').toLowerCase(); + +const zoneToRecord = ({ + name, + type, + cname, + address, + priority, + preference, + exchange, + record, + line: id +}) => + ({ + id, + name: cleanName(name), + type: `${type}`, + address: `${exchange || cname || address || record}`.replace(/\.$/g, '').toLowerCase(), + priority: priority || preference, + }); +const redirectionToRecord = ({ domain, destination }) => ({ + id: domain, + name: cleanName(domain), + type: 'URL', + address: `${destination}`.replace(/\/$/g, ''), +}); + +const recordToEmailMx = ({ name, address, priority }) => ({ + domain: `${name}.is-a.dev`, + exchanger: address, + priority, +}) + +const getHostKey = host => + `${host.name.toLowerCase()}##${host.type.toLowerCase()}##${host.address.toLowerCase()}`; + +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)); + + return { add, remove }; +}; + +const executeBatch = (batches) => batches.reduce((promise, batch, index) => { + return promise.then(async () => { + log('>>> Running batch number:', index + 1, `(size: ${batch.length})`); + + const values = await Promise.all(batch.map(fn => fn().catch(e => console.error(e)))); + + const results = values.map(data => R.pathOr({ result: data }, ['cpanelresult', 'data', 0], data)); + const failed = results.filter(x => (x.result || {}).status != 1); + + log(`${values.length - failed.length}/${values.length}`); + failed.length && log(JSON.stringify(failed, null, 2)); + + return null; + }); +}, Promise.resolve()); + +const getDomainService = ({ cpanel }) => { + const fetchZoneRecords = R.compose(then(R.map(zoneToRecord)), cpanel.zone.fetch); + const fetchRedirections = R.compose(then(R.map(redirectionToRecord)), cpanel.redirection.fetch); + + const addZoneRecord = lazyTask(R.compose( + R.ifElse(R.propEq('type', 'MX'), + R.compose(cpanel.email.add, recordToEmailMx), + cpanel.zone.add + ), + recordToZone, + print(r => `Adding zone for ${r.name}: (${r.type} ${r.address})...`), + )); + const removeZoneRecord = lazyTask(R.compose( + R.ifElse(R.propEq('type', 'MX'), + R.compose(cpanel.email.remove, recordToEmailMx), + R.compose(cpanel.zone.remove, R.pick(['line'])) + ), + recordToZone, + print(r => `Deleting zone for ${r.name}: (${r.type} ${r.address})...`), + )); + const addRedirection = lazyTask(R.compose( + cpanel.redirection.add, + recordToRedirection, + print(({ name }) => `Adding redirection for ${name}`), + )); + const removeRedirection = lazyTask(R.compose( + cpanel.redirection.remove, + R.pick(['domain']), + recordToRedirection, + print(({ name }) => `Deleting redirection for ${name}`), + )); + + const getHosts = () => + Promise.all([fetchZoneRecords(), fetchRedirections()]).then(R.flatten); + + const 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 updateHosts = async hosts => { + const remoteHostList = await getHosts(); + const { add, remove } = diffRecords(remoteHostList, hosts); + console.log(`Adding ${add.length}; Removing ${remove.length}`) + + await executeBatch([ + ...removeRecords(remove), + ...addRecords(add), + ]); + return { added: add.length, removed: remove.length }; + }; + + return { getHosts, get: cpanel.zone.fetch, addZoneRecord, removeZoneRecord, updateHosts }; +}; + +const domainService = getDomainService({ cpanel }); module.exports = { getDomainService, domainService, + diffRecords, }; diff --git a/utils/domain.js b/utils/domain.js deleted file mode 100644 index 089bde425..000000000 --- a/utils/domain.js +++ /dev/null @@ -1,74 +0,0 @@ -const fs = require('fs'); -const path = require('path'); -const R = require('ramda'); -const { VALID_RECORD_TYPES } = require('./constants'); - -const DOMAINS_PATH = path.resolve('domains'); - -const log = m => x => console.log(m, x) || x; - -const toDomain = str => path.join(DOMAINS_PATH, str); - -const toDomainData = R.compose(require, toDomain); - -const getDomains = () => - fs.promises.readdir(DOMAINS_PATH, {}) - .then(R.map(name => ({ - ...toDomainData(name), - name: name.replace(/\.json$/, ''), - }))); - -const between = (min, max) => num => num >= min && num <= max; - -const validate = pattern => data => R.compose( - invalidPairs => invalidPairs.length ? { errors: invalidPairs, valid: false } : { errors: [], valid: true }, - R.filter(([key, { fn }]) => fn ? !fn(data[key]) : false), - R.toPairs, -)(pattern); - -const validateNameRecord = type => R.allPass([ - R.compose(R.equals(1), R.length, R.reject(R.equals('URL')), R.keys), - R.propSatisfies(R.is(String), type), -]); - -const validateDomainData = validate({ - name: { - reason: 'The name of the file is invalid', - fn: R.anyPass([ - R.equals('@'), - R.allPass([ - R.compose(between(2, 100), R.length), - str => str && str.match(/^[A-Za-z0-9\-]+$/ig), - ]) - ]), - }, - description: { reason: '', fn: R.T, }, - repo: { reason: '', fn: R.T, }, - owner: { - reason: '`owner` needs username and email properties', - fn: R.allPass([ - R.is(Object), - R.complement(R.isEmpty), - R.where({ - username: R.is(String), - email: R.is(String), - }), - ]), - }, - record: { - reason: 'Invalid record', - fn: R.allPass([ - R.is(Object), - R.compose(R.isEmpty, R.flip(R.difference)(VALID_RECORD_TYPES), R.keys), - R.cond([ - [R.prop('CNAME'), validateNameRecord('CNAME')], - [R.prop('ALIAS'), validateNameRecord('ALIAS')], - [R.prop('A'), R.propSatisfies(R.is(Array), 'A')], - [R.prop('URL'), R.propSatisfies(R.is(String), 'URL')], - [R.T, R.T], - ]), - ]), - }, -}); - -module.exports = { getDomains, validateDomainData }; diff --git a/utils/get-domain.js b/utils/get-domain.js new file mode 100644 index 000000000..d6529032d --- /dev/null +++ b/utils/get-domain.js @@ -0,0 +1,22 @@ +const fs = require('fs'); +const path = require('path'); +const R = require('ramda'); +const {DOMAINS_PATH} = require('./constants'); + +const toDomain = str => path.join(DOMAINS_PATH, str); + +const parseDomain = name => str => { + try {return JSON.parse(str);} + catch (e) {throw new Error(`Error: Cant parse ${name} => ${str}`);} +}; + +const toDomainData = name => R.compose(parseDomain(name), R.toString, fs.readFileSync, toDomain)(name); + +const getDomains = () => + fs.promises.readdir(DOMAINS_PATH, {}) + .then(R.map(name => ({ + ...toDomainData(name), + name: name.replace(/\.json$/, ''), + }))); + +module.exports = {getDomains}; diff --git a/utils/helpers.js b/utils/helpers.js new file mode 100644 index 000000000..171dce8cc --- /dev/null +++ b/utils/helpers.js @@ -0,0 +1,52 @@ +const R = require('ramda'); +const { IS_TEST } = require('./constants'); + +const log = IS_TEST ? () => {} : console.log; +const print = fn => x => log(fn(x)) || x; + +const between = (min, max) => num => num >= min && num <= max; +const testRegex = regex => str => !!(str && str.match(regex)); + +const validate = pattern => data => R.compose( + invalidPairs => invalidPairs.length + ? { errors: invalidPairs, valid: false } + : { errors: [], valid: true }, + R.filter(([key, { fn }]) => fn ? !fn(data[key]) : false), + R.toPairs, +)(pattern); + +const or = R.anyPass; +const and = R.allPass; + +const then = fn => p => p.then(fn); + +const lazyTask = fn => data => () => fn(data); + +const batchLazyTasks = count => tasks => tasks.reduce((batches, task) => { + if (batches.length === 0) return [[task]]; + + const full = R.init(batches); + const last = R.last(batches); + + if (last.length >= count) return [...batches, [task]]; + return [...full, [...last, task]]; +}, []); + +const withLengthGte = n => R.compose(R.gte(R.__, n), R.length); +const withLengthEq = n => R.compose(R.equals(n), R.length); + +module.exports = { + or, + and, + validate, + between, + testRegex, + log, + print, + then, + lazyTask, + batchLazyTasks, + withLengthEq, + withLengthGte, +}; + diff --git a/utils/invalid-domains.json b/utils/invalid-domains.json new file mode 100644 index 000000000..a8943f3c4 --- /dev/null +++ b/utils/invalid-domains.json @@ -0,0 +1,18 @@ +[ + "_acme-challenge", + "_github-challenge-is-a-dev", + "_github-pages-challenge-is-a-dev", + "help", + "no-reply", + "noreply", + "notification", + "notifications", + "support", + "ww", + "ww1", + "ww2", + "ww3", + "ww4", + "wwww", + "your-domain-name" +] diff --git a/utils/lib/cpanel.js b/utils/lib/cpanel.js new file mode 100644 index 000000000..29743295a --- /dev/null +++ b/utils/lib/cpanel.js @@ -0,0 +1,101 @@ +const R = require('ramda'); +const fetch = require('node-fetch'); +const qs = require('qs'); +const { DOMAIN_API_HOST, DOMAIN_API_PORT, DOMAIN_USER, DOMAIN_API_KEY, DOMAIN_DOMAIN } = require('../constants'); + +const CpanelClient = (options) => { + const api = ({ basePath = '', action = '' }) => (module, func, defaultQuery = {}) => (q = {}) => { + const query = { + ...defaultQuery, + ...q, + cpanel_jsonapi_user: options.username, + cpanel_jsonapi_module: module, + cpanel_jsonapi_func: func, + cpanel_jsonapi_apiversion: 2, + }; + + const request = { + headers: { + Authorization: `cpanel ${options.username}:${options.apiKey}`, + }, + rejectUnauthorized: false, + }; + + const path = `${basePath}/${action}?${qs.stringify(query)}`; + const reqUrl = `https://${options.host}:${options.port}/${path}`; + + const { fetch } = options.dependencies; + return fetch(reqUrl, request).then(res => res.json()); + }; + + const api2 = api({ basePath: 'json-api', action: 'cpanel' }); + const uapi = (module, func, defaultQuery) => + api({ basePath: 'execute', action: `${module}/${func}` })(module, func, defaultQuery); + + return { + zone: { + // { customonly, domain } + // -> [{ class, ttl, name, line, Line, cname, type, record }] + fetch: R.compose( + p => p.then(R.pathOr([], ['cpanelresult', 'data'])), + api2('ZoneEdit', 'fetchzone_records', { customonly: 1, domain: options.domain }) + ), + + // { name, type(A|CNAME), cname, address, ttl } + // -> {} + add: api2('ZoneEdit', 'add_zone_record', { domain: options.domain }), + + // { line } + // -> {} + remove: api2('ZoneEdit', 'remove_zone_record', { domain: options.domain }), + }, + redirection: { + // {} + // -> [{ domain, destination }] + fetch: R.compose( + p => p.then(R.pathOr([], ['data'])), + uapi('Mime', 'list_redirects'), + ), + + // { domain, redirect, type(permanent|tmp), redirect_wildcard(0|1), redirect(0|1|2) } + // -> {} + add: uapi('Mime', 'add_redirect'), + + // { domain } + // -> {} + remove: uapi('Mime', 'delete_redirect'), + }, + file: { + write: uapi('Fileman', 'save_file_content', { from_charset: 'UTF-8', to_charset: 'UTF-8', fallback: 1 }), + }, + email: { + // { domain, exchanger, priority } + // -> {} + add: uapi('Email', 'add_mx', { alwaysaccept: 'auto' }), + + // { domain, exchanger, priority } + // -> {} + remove: uapi('Email', 'delete_mx', { alwaysaccept: 'auto' }), + }, + }; +}; + +if (!DOMAIN_API_KEY) { + console.error('Api key cannot be empty'); + process.exit(1); +} + +const cpanel = CpanelClient({ + host: DOMAIN_API_HOST, + port: DOMAIN_API_PORT, + username: DOMAIN_USER, + apiKey: DOMAIN_API_KEY, + domain: DOMAIN_DOMAIN, + dependencies: { fetch }, +}); + +module.exports = { + cpanel, + CpanelClient, +}; + diff --git a/utils/validations.js b/utils/validations.js new file mode 100644 index 000000000..963e8ed3d --- /dev/null +++ b/utils/validations.js @@ -0,0 +1,84 @@ +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 isValidURL = and([R.is(String), testRegex(/^https?:\/\//ig)]); + +const isValidDomain = and([R.is(String), testRegex(/^(([a-z0-9-]+)\.)+[a-z]+$/ig)]); + +const validateCnameRecord = type => and([ + R.propIs(String, type), + R.compose(withLengthEq(1), R.keys), // CNAME cannot be used with any other record + R.propSatisfies(withLengthGte(4), type), + R.propSatisfies(isValidDomain, type), +]); + +const validateARecord = type => and([ + R.propIs(Array, type), + R.propSatisfies(withLengthGte(1), type), +]); + +const validateMXRecord = type => and([ + R.propIs(Array, type), + R.propSatisfies(withLengthGte(1), type), + R.propSatisfies(R.all(isValidDomain), type), +]); + +const checkRestrictedNames = R.complement(R.includes(R.__, INVALID_NAMES)) + +const validateDomainData = validate({ + name: { + reason: 'The name of the file is invalid. It must be lowercased, alphanumeric and each component must be more than 2 characters long', + fn: or([ + R.equals('@'), + and([ + R.is(String), + R.compose( + R.all(or([ + 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, + ]) + ])), + R.split('.'), + ), + ]) + ]), + }, + description: { reason: '', fn: R.T, }, + repo: { reason: '', fn: R.T, }, + owner: { + reason: '`owner` needs valid username and email properties', + fn: and([ + R.is(Object), + R.complement(R.isEmpty), + R.where({ + username: and([R.is(String), withLengthGte(1)]), + email: R.is(String), + }), + ]), + }, + record: { + reason: 'Invalid record. CNAME records have to be a host name and A records has to be a list of ips', + fn: and([ + R.is(Object), + R.compose(R.isEmpty, R.difference(R.__, VALID_RECORD_TYPES), R.keys), + R.cond([ + [R.has('CNAME'), validateCnameRecord('CNAME')], + [R.has('A'), validateARecord('A')], + [R.has('URL'), R.propSatisfies(isValidURL, 'URL')], + [R.has('MX'), validateMXRecord('MX')], + [R.has('TXT'), R.propSatisfies(R.is(String), 'TXT')], + [R.T, R.T], + ]), + ]), + }, +}); + +module.exports = { validateDomainData, isValidDomain }; diff --git a/yarn.lock b/yarn.lock index 2cb029d01..e4955e514 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,24 +4,24 @@ "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" + 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.11.6" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651" - integrity sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg== + 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.11.6" - "@babel/helper-module-transforms" "^7.11.0" - "@babel/helpers" "^7.10.4" - "@babel/parser" "^7.11.5" + "@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.11.5" - "@babel/types" "^7.11.5" + "@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" @@ -31,18 +31,18 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.11.5", "@babel/generator@^7.11.6": - version "7.11.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz#b868900f81b163b4d464ea24545c61cbac4dc620" - integrity sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA== +"@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.11.5" + "@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.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" + 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" @@ -51,208 +51,216 @@ "@babel/helper-get-function-arity@^7.10.4": version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" + 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.10.4": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df" - integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q== +"@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.11.0" + "@babel/types" "^7.12.1" -"@babel/helper-module-imports@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" - integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== +"@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.10.4" + "@babel/types" "^7.12.5" -"@babel/helper-module-transforms@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" - integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== +"@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.10.4" - "@babel/helper-replace-supers" "^7.10.4" - "@babel/helper-simple-access" "^7.10.4" + "@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/types" "^7.11.0" + "@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.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" + 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.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" + 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.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" - integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== +"@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.10.4" + "@babel/helper-member-expression-to-functions" "^7.12.1" "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/traverse" "^7.12.5" + "@babel/types" "^7.12.5" -"@babel/helper-simple-access@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" - integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== +"@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/template" "^7.10.4" - "@babel/types" "^7.10.4" + "@babel/types" "^7.12.1" "@babel/helper-split-export-declaration@^7.11.0": version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" + 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.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" + 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.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" - integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== +"@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.10.4" - "@babel/types" "^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.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" + 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.11.5": - version "7.11.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037" - integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q== +"@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.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + 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.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + 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.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" - integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== + 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.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + 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.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + 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.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + 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.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + 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.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + 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.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + 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.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + 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.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + 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.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" + 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.10.4", "@babel/traverse@^7.11.5": - version "7.11.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3" - integrity sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ== +"@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.11.5" + "@babel/generator" "^7.12.5" "@babel/helper-function-name" "^7.10.4" "@babel/helper-split-export-declaration" "^7.11.0" - "@babel/parser" "^7.11.5" - "@babel/types" "^7.11.5" + "@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.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": - version "7.11.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" - integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== +"@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" @@ -260,20 +268,36 @@ "@bcoe/v8-coverage@^0.2.3": version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + 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.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" + 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.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + 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" @@ -284,96 +308,96 @@ "@istanbuljs/schema@^0.1.2": version "0.1.2" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" + resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz" integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== -"@jest/console@^26.3.0": - version "26.3.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.3.0.tgz#ed04063efb280c88ba87388b6f16427c0a85c856" - integrity sha512-/5Pn6sJev0nPUcAdpJHMVIsA8sKizL2ZkcKPE5+dJrCccks7tcM7c9wbgHudBJbxXLoTbqsHkG1Dofoem4F09w== +"@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.3.0" + "@jest/types" "^26.6.2" "@types/node" "*" chalk "^4.0.0" - jest-message-util "^26.3.0" - jest-util "^26.3.0" + jest-message-util "^26.6.2" + jest-util "^26.6.2" slash "^3.0.0" -"@jest/core@^26.4.2": - version "26.4.2" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.4.2.tgz#85d0894f31ac29b5bab07aa86806d03dd3d33edc" - integrity sha512-sDva7YkeNprxJfepOctzS8cAk9TOekldh+5FhVuXS40+94SHbiicRO1VV2tSoRtgIo+POs/Cdyf8p76vPTd6dg== +"@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.3.0" - "@jest/reporters" "^26.4.1" - "@jest/test-result" "^26.3.0" - "@jest/transform" "^26.3.0" - "@jest/types" "^26.3.0" + "@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.3.0" - jest-config "^26.4.2" - jest-haste-map "^26.3.0" - jest-message-util "^26.3.0" + 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.4.0" - jest-resolve-dependencies "^26.4.2" - jest-runner "^26.4.2" - jest-runtime "^26.4.2" - jest-snapshot "^26.4.2" - jest-util "^26.3.0" - jest-validate "^26.4.2" - jest-watcher "^26.3.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.3.0": - version "26.3.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.3.0.tgz#e6953ab711ae3e44754a025f838bde1a7fd236a0" - integrity sha512-EW+MFEo0DGHahf83RAaiqQx688qpXgl99wdb8Fy67ybyzHwR1a58LHcO376xQJHfmoXTu89M09dH3J509cx2AA== +"@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.3.0" - "@jest/types" "^26.3.0" + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" "@types/node" "*" - jest-mock "^26.3.0" + jest-mock "^26.6.2" -"@jest/fake-timers@^26.3.0": - version "26.3.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.3.0.tgz#f515d4667a6770f60ae06ae050f4e001126c666a" - integrity sha512-ZL9ytUiRwVP8ujfRepffokBvD2KbxbqMhrXSBhSdAhISCw3gOkuntisiSFv+A6HN0n0fF4cxzICEKZENLmW+1A== +"@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.3.0" + "@jest/types" "^26.6.2" "@sinonjs/fake-timers" "^6.0.1" "@types/node" "*" - jest-message-util "^26.3.0" - jest-mock "^26.3.0" - jest-util "^26.3.0" + jest-message-util "^26.6.2" + jest-mock "^26.6.2" + jest-util "^26.6.2" -"@jest/globals@^26.4.2": - version "26.4.2" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.4.2.tgz#73c2a862ac691d998889a241beb3dc9cada40d4a" - integrity sha512-Ot5ouAlehhHLRhc+sDz2/9bmNv9p5ZWZ9LE1pXGGTCXBasmi5jnYjlgYcYt03FBwLmZXCZ7GrL29c33/XRQiow== +"@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.3.0" - "@jest/types" "^26.3.0" - expect "^26.4.2" + "@jest/environment" "^26.6.2" + "@jest/types" "^26.6.2" + expect "^26.6.2" -"@jest/reporters@^26.4.1": - version "26.4.1" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.4.1.tgz#3b4d6faf28650f3965f8b97bc3d114077fb71795" - integrity sha512-aROTkCLU8++yiRGVxLsuDmZsQEKO6LprlrxtAuzvtpbIFl3eIjgIf3EUxDKgomkS25R9ZzwGEdB5weCcBZlrpQ== +"@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.3.0" - "@jest/test-result" "^26.3.0" - "@jest/transform" "^26.3.0" - "@jest/types" "^26.3.0" + "@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" @@ -384,73 +408,73 @@ istanbul-lib-report "^3.0.0" istanbul-lib-source-maps "^4.0.0" istanbul-reports "^3.0.2" - jest-haste-map "^26.3.0" - jest-resolve "^26.4.0" - jest-util "^26.3.0" - jest-worker "^26.3.0" + 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 "^5.0.1" + v8-to-istanbul "^7.0.0" optionalDependencies: node-notifier "^8.0.0" -"@jest/source-map@^26.3.0": - version "26.3.0" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.3.0.tgz#0e646e519883c14c551f7b5ae4ff5f1bfe4fc3d9" - integrity sha512-hWX5IHmMDWe1kyrKl7IhFwqOuAreIwHhbe44+XH2ZRHjrKIh0LO5eLQ/vxHFeAfRwJapmxuqlGAEYLadDq6ZGQ== +"@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.3.0": - version "26.3.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.3.0.tgz#46cde01fa10c0aaeb7431bf71e4a20d885bc7fdb" - integrity sha512-a8rbLqzW/q7HWheFVMtghXV79Xk+GWwOK1FrtimpI5n1la2SY0qHri3/b0/1F0Ve0/yJmV8pEhxDfVwiUBGtgg== +"@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.3.0" - "@jest/types" "^26.3.0" + "@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.4.2": - version "26.4.2" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.4.2.tgz#58a3760a61eec758a2ce6080201424580d97cbba" - integrity sha512-83DRD8N3M0tOhz9h0bn6Kl6dSp+US6DazuVF8J9m21WAp5x7CqSMaNycMP0aemC/SH/pDQQddbsfHRTBXVUgog== +"@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.3.0" + "@jest/test-result" "^26.6.2" graceful-fs "^4.2.4" - jest-haste-map "^26.3.0" - jest-runner "^26.4.2" - jest-runtime "^26.4.2" + jest-haste-map "^26.6.2" + jest-runner "^26.6.3" + jest-runtime "^26.6.3" -"@jest/transform@^26.3.0": - version "26.3.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.3.0.tgz#c393e0e01459da8a8bfc6d2a7c2ece1a13e8ba55" - integrity sha512-Isj6NB68QorGoFWvcOjlUhpkT56PqNIsXKR7XfvoDlCANn/IANlh8DrKAA2l2JKC3yWSMH5wS0GwuQM20w3b2A== +"@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.3.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.3.0" + jest-haste-map "^26.6.2" jest-regex-util "^26.0.0" - jest-util "^26.3.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.3.0": - version "26.3.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.3.0.tgz#97627bf4bdb72c55346eef98e3b3f7ddc4941f71" - integrity sha512-BDPG23U0qDeAvU4f99haztXwdAg3hz4El95LkAM+tHAqqhiVzRpEGHHU8EDxT/AnxOrA65YjLBwDahdJ9pTLJQ== +"@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" @@ -458,29 +482,24 @@ "@types/yargs" "^15.0.0" chalk "^4.0.0" -"@rqt/namecheap@^2.4.2": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@rqt/namecheap/-/namecheap-2.4.2.tgz#8537eea6efbe7ac4fd449e3aee5f2c1d80986fcf" - integrity sha512-RfrK7ywOraz0nR/BlQt8fJQDcOfI9cLSTpa6l9JS9ER0HJ6t1FQ8Pxmplj/lVQv8rkczuVADdZVC3HlL98Q31w== - "@sinonjs/commons@^1.7.0": version "1.8.1" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217" + 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.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40" + 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.10" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.10.tgz#ca58fc195dd9734e77e57c6f2df565623636ab40" - integrity sha512-x8OM8XzITIMyiwl5Vmo2B1cR1S1Ipkyv4mdlbJjMa1lmuKvKY9FrBbEANIaMlnWn5Rf7uO+rC/VgYabNkE17Hw== + 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" @@ -490,152 +509,161 @@ "@types/babel__generator@*": version "7.6.2" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8" + 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.0.3" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.3.tgz#b8aaeba0a45caca7b56a5de9459872dde3727214" - integrity sha512-uCoznIPDmnickEi6D0v11SBpW0OuVqHJCa7syXqQHy5uktSCreIlt0iglsCnmvz8yCb38hGcWeseA8cWJSwv5Q== + 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.6": +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": version "7.0.15" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.15.tgz#db9e4238931eb69ef8aab0ad6523d4d4caa39d03" + 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/color-name@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" - integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== - "@types/graceful-fs@^4.1.2": - version "4.1.3" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f" - integrity sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ== + 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.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" + 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.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + 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.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821" + 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.11.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.11.2.tgz#2de1ed6670439387da1c9f549a2ade2b0a799256" - integrity sha512-jiE3QIxJ8JLNcb1Ps6rDbysDhN4xa8DJJvuC9prr6w+1tIh+QAbYyNF3tyiZNLDBIuBCf4KEcV2UvQm/V60xfA== + 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.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" + 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.1" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.1.tgz#be148756d5480a84cde100324c03a86ae5739fb5" - integrity sha512-2zs+O+UkDsJ1Vcp667pd3f8xearMdopz/z54i99wtRDI5KLmngk7vlrYZD0ZjKHaROR03EznlBbVY9PfAEyJIQ== + version "2.1.5" + resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz" + integrity sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ== -"@types/stack-utils@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" - integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== +"@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.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" + 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.7" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.7.tgz#dad50a7a234a35ef9460737a56024287a3de1d2b" - integrity sha512-Gf4u3EjaPNcC9cTu4/j2oN14nSVhr8PQ+BvBcBQHAhDZfl0bVIiLgvnRXv/dn58XhTm9UXvBpvJpDlwV65QxOA== + 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.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" + 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.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" + 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.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== -acorn@^7.1.1: - version "7.4.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" - integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== +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.12.3: - version "6.12.5" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.5.tgz#19b0e8bae8f476e5ba666300387775fb1a00a4da" - integrity sha512-lRF8RORchjpKG50/WFf8xmg7sgCLFiYNNnqdKflk63whMQcWR5ngGjiSXkL9bjxy6B2npOK2HSMN49jEBMSkag== +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.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" + 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.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== -ansi-styles@^3.2.1: +ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + 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.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" - integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: - "@types/color-name" "^1.1.1" color-convert "^2.0.1" anymatch@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz" integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== dependencies: micromatch "^3.1.4" @@ -643,7 +671,7 @@ anymatch@^2.0.0: anymatch@^3.0.3: version "3.1.1" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz" integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== dependencies: normalize-path "^3.0.0" @@ -651,85 +679,90 @@ anymatch@^3.0.3: argparse@^1.0.7: version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + 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.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + 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.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + 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.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + 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.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + 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.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + 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.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + 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.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + 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.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + 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.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + 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.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + 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.10.1" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428" - integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA== + version "1.11.0" + resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz" + integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== -babel-jest@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.3.0.tgz#10d0ca4b529ca3e7d1417855ef7d7bd6fc0c3463" - integrity sha512-sxPnQGEyHAOPF8NcUsD0g7hDCnvLL2XyblRBcgrzTWBB/mAIpWow3n1bEL+VghnnZfreLhFSBsFluRoK2tRK4g== +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.3.0" - "@jest/types" "^26.3.0" + "@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.3.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.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" + 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" @@ -738,20 +771,20 @@ babel-plugin-istanbul@^6.0.0: istanbul-lib-instrument "^4.0.0" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^26.2.0: - version "26.2.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.2.0.tgz#bdd0011df0d3d513e5e95f76bd53b51147aca2dd" - integrity sha512-B/hVMRv8Nh1sQ1a3EY8I0n4Y1Wty3NrR5ebOyVT302op+DOAau+xNEImGMsUWOC3++ZlMooCytKz+NgN8aKGbA== +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@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da" - integrity sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ== +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" @@ -764,23 +797,24 @@ babel-preset-current-node-syntax@^0.1.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.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.3.0.tgz#ed6344506225c065fd8a0b53e191986f74890776" - integrity sha512-5WPdf7nyYi2/eRxCbVrE1kKCWxgWY4RsPEbdJWFm7QsesFGqjdkyLeu1zRkwM1cxK6EPIlNd6d2AxLk7J+t4pw== +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.2.0" - babel-preset-current-node-syntax "^0.1.3" + 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.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + 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.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz" integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== dependencies: cache-base "^1.0.1" @@ -793,14 +827,14 @@ base@^0.11.1: bcrypt-pbkdf@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + 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.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -808,7 +842,7 @@ brace-expansion@^1.1.7: braces@^2.3.1: version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz" integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== dependencies: arr-flatten "^1.1.0" @@ -824,31 +858,31 @@ braces@^2.3.1: braces@^3.0.1: version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + 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.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + 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.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + 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.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + 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.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz" integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== dependencies: collection-visit "^1.0.0" @@ -863,34 +897,34 @@ cache-base@^1.0.1: callsites@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + 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.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== camelcase@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e" - integrity sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w== + 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.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" + 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.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + 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.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + 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" @@ -899,7 +933,7 @@ chalk@^2.0.0: chalk@^4.0.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz" integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== dependencies: ansi-styles "^4.1.0" @@ -907,17 +941,22 @@ chalk@^4.0.0: char-regex@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + 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.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + 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.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + 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" @@ -927,7 +966,7 @@ class-utils@^0.3.5: cliui@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== dependencies: string-width "^4.2.0" @@ -936,17 +975,17 @@ cliui@^6.0.0: co@^4.6.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + 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.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" + 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.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz" integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= dependencies: map-visit "^1.0.0" @@ -954,65 +993,65 @@ collection-visit@^1.0.0: color-convert@^1.9.0: version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + 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.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + 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.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + 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.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + 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.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + 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.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + 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.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + 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.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" + 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.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + 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.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + 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.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== dependencies: nice-try "^1.0.4" @@ -1021,9 +1060,9 @@ cross-spawn@^6.0.0: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^7.0.0: +cross-spawn@^7.0.0, cross-spawn@^7.0.2: version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== dependencies: path-key "^3.1.0" @@ -1032,31 +1071,31 @@ cross-spawn@^7.0.0: cssom@^0.4.4: version "0.4.4" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" + 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.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + 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.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" + 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.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + 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.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" + resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz" integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== dependencies: abab "^2.0.3" @@ -1065,60 +1104,60 @@ data-urls@^2.0.0: debug@^2.2.0, debug@^2.3.3: version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@^4.1.0, debug@^4.1.1: +debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: version "4.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" + 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.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + 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.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3" + 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.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + 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, deep-is@~0.1.3: version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + 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.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" + 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.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + 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.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + 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.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz" integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== dependencies: is-descriptor "^1.0.2" @@ -1126,76 +1165,95 @@ define-property@^2.0.2: delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + 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.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== -diff-sequences@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.3.0.tgz#62a59b1b29ab7fd27cef2a33ae52abe73042d0a2" - integrity sha512-5j5vdRcw3CNctePNYN0Wy2e/JbWT6cAYnXv5OuqPhDpyCGc0uLu2TK0zOCJWNB9kOIfYMSpIulRaDgIi4HJ6Ig== +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.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" + 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.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + 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.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + 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.1" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.1.tgz#c02375a927a40948c0345cc903072597f5270451" - integrity sha512-d34LN4L6h18Bzz9xpoku2nPwKxCPlPMr3EEKTkoEBi+1/+b0lcRkRJ1UVyyZaKNeqGR3swcGl6s390DNO4YVgQ== + 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.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + 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.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + 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.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + 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.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + 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.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + 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.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" + resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz" integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== dependencies: esprima "^4.0.1" @@ -1205,29 +1263,153 @@ escodegen@^1.14.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.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -estraverse@^4.2.0: +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.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + 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.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + 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.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" + 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.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== dependencies: cross-spawn "^6.0.0" @@ -1239,9 +1421,9 @@ execa@^1.0.0: strip-eof "^1.0.0" execa@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2" - integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A== + 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" @@ -1255,12 +1437,12 @@ execa@^4.0.0: exit@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + 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.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz" integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= dependencies: debug "^2.3.3" @@ -1271,28 +1453,28 @@ expand-brackets@^2.1.4: snapdragon "^0.8.1" to-regex "^3.0.1" -expect@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/expect/-/expect-26.4.2.tgz#36db120928a5a2d7d9736643032de32f24e1b2a1" - integrity sha512-IlJ3X52Z0lDHm7gjEp+m76uX46ldH5VpqmU0006vqDju/285twh7zaWMRhs67VpQhBwjjMchk+p5aA0VkERCAA== +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.3.0" + "@jest/types" "^26.6.2" ansi-styles "^4.0.0" jest-get-type "^26.3.0" - jest-matcher-utils "^26.4.2" - jest-message-util "^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.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + 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.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= dependencies: assign-symbols "^1.0.0" @@ -1300,12 +1482,12 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2: extend@~3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + 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.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz" integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== dependencies: array-unique "^0.3.2" @@ -1317,41 +1499,43 @@ extglob@^2.0.4: snapdragon "^0.8.1" to-regex "^3.0.1" -extsprintf@1.3.0: +extsprintf@1.3.0, extsprintf@^1.2.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz" integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= -extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= - fast-deep-equal@^3.1.1: version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + 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.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + 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, fast-levenshtein@~2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + 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.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" + 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.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz" integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= dependencies: extend-shallow "^2.0.1" @@ -1361,32 +1545,46 @@ fill-range@^4.0.0: fill-range@^7.0.1: version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + 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.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + 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.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + 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.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + 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.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + 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" @@ -1395,65 +1593,82 @@ form-data@~2.3.2: fragment-cache@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + 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.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@^2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== + 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.1" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" - integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== + 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.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + 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.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + 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.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + 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.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + 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.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + 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.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + 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.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== dependencies: fs.realpath "^1.0.0" @@ -1465,27 +1680,34 @@ glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: globals@^11.1.0: version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + 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.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" + 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.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + 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.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + 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.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" + resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz" integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== dependencies: ajv "^6.12.3" @@ -1493,17 +1715,17 @@ har-validator@~5.1.3: has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + 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.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + 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.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz" integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= dependencies: get-value "^2.0.3" @@ -1512,7 +1734,7 @@ has-value@^0.3.1: has-value@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz" integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= dependencies: get-value "^2.0.6" @@ -1521,37 +1743,44 @@ has-value@^1.0.0: has-values@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + 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.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + 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.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" + 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.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" + 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.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + 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.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz" integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= dependencies: assert-plus "^1.0.0" @@ -1560,19 +1789,37 @@ http-signature@~1.2.0: human-signals@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" + 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.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + 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.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" + 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" @@ -1580,12 +1827,12 @@ import-local@^3.0.2: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + 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.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= dependencies: once "^1.3.0" @@ -1593,62 +1840,69 @@ inflight@^1.0.4: inherits@2: version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + 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.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + 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.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + 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.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + 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.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + 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.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + 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.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + 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.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + 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.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + 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.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + 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" @@ -1657,7 +1911,7 @@ is-descriptor@^0.1.0: is-descriptor@^1.0.0, is-descriptor@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + 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" @@ -1666,117 +1920,134 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2: is-docker@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" + 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.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + 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.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + 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.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + 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.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + 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.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + 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.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + 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.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + 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.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397" + 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.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + 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.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" + 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.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + 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.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + 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.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + 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.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + 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.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + 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.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + 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.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + 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.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + 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.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" + 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.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" + 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" @@ -1786,7 +2057,7 @@ istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: istanbul-lib-report@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" + 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" @@ -1795,7 +2066,7 @@ istanbul-lib-report@^3.0.0: istanbul-lib-source-maps@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" + 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" @@ -1804,390 +2075,393 @@ istanbul-lib-source-maps@^4.0.0: istanbul-reports@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" + 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.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.3.0.tgz#68fb2a7eb125f50839dab1f5a17db3607fe195b1" - integrity sha512-1C4R4nijgPltX6fugKxM4oQ18zimS7LqQ+zTTY8lMCMFPrxqBFb7KJH0Z2fRQJvw2Slbaipsqq7s1mgX5Iot+g== +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.3.0" + "@jest/types" "^26.6.2" execa "^4.0.0" throat "^5.0.0" -jest-cli@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.4.2.tgz#24afc6e4dfc25cde4c7ec4226fb7db5f157c21da" - integrity sha512-zb+lGd/SfrPvoRSC/0LWdaWCnscXc1mGYW//NP4/tmBvRPT3VntZ2jtKUONsRi59zc5JqmsSajA9ewJKFYp8Cw== +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.4.2" - "@jest/test-result" "^26.3.0" - "@jest/types" "^26.3.0" + "@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.4.2" - jest-util "^26.3.0" - jest-validate "^26.4.2" + jest-config "^26.6.3" + jest-util "^26.6.2" + jest-validate "^26.6.2" prompts "^2.0.1" - yargs "^15.3.1" + yargs "^15.4.1" -jest-config@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.4.2.tgz#da0cbb7dc2c131ffe831f0f7f2a36256e6086558" - integrity sha512-QBf7YGLuToiM8PmTnJEdRxyYy3mHWLh24LJZKVdXZ2PNdizSe1B/E8bVm+HYcjbEzGuVXDv/di+EzdO/6Gq80A== +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.4.2" - "@jest/types" "^26.3.0" - babel-jest "^26.3.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.3.0" - jest-environment-node "^26.3.0" + jest-environment-jsdom "^26.6.2" + jest-environment-node "^26.6.2" jest-get-type "^26.3.0" - jest-jasmine2 "^26.4.2" + jest-jasmine2 "^26.6.3" jest-regex-util "^26.0.0" - jest-resolve "^26.4.0" - jest-util "^26.3.0" - jest-validate "^26.4.2" + jest-resolve "^26.6.2" + jest-util "^26.6.2" + jest-validate "^26.6.2" micromatch "^4.0.2" - pretty-format "^26.4.2" + pretty-format "^26.6.2" -jest-diff@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.4.2.tgz#a1b7b303bcc534aabdb3bd4a7caf594ac059f5aa" - integrity sha512-6T1XQY8U28WH0Z5rGpQ+VqZSZz8EN8rZcBtfvXaOkbwxIEeRre6qnuZQlbY1AJ4MKDxQF8EkrCvK+hL/VkyYLQ== +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.3.0" + diff-sequences "^26.6.2" jest-get-type "^26.3.0" - pretty-format "^26.4.2" + pretty-format "^26.6.2" jest-docblock@^26.0.0: version "26.0.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5" + 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.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.4.2.tgz#bb14f7f4304f2bb2e2b81f783f989449b8b6ffae" - integrity sha512-p15rt8r8cUcRY0Mvo1fpkOGYm7iI8S6ySxgIdfh3oOIv+gHwrHTy5VWCGOecWUhDsit4Nz8avJWdT07WLpbwDA== +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.3.0" + "@jest/types" "^26.6.2" chalk "^4.0.0" jest-get-type "^26.3.0" - jest-util "^26.3.0" - pretty-format "^26.4.2" + jest-util "^26.6.2" + pretty-format "^26.6.2" -jest-environment-jsdom@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.3.0.tgz#3b749ba0f3a78e92ba2c9ce519e16e5dd515220c" - integrity sha512-zra8He2btIMJkAzvLaiZ9QwEPGEetbxqmjEBQwhH3CA+Hhhu0jSiEJxnJMbX28TGUvPLxBt/zyaTLrOPF4yMJA== +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.3.0" - "@jest/fake-timers" "^26.3.0" - "@jest/types" "^26.3.0" + "@jest/environment" "^26.6.2" + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" "@types/node" "*" - jest-mock "^26.3.0" - jest-util "^26.3.0" - jsdom "^16.2.2" + jest-mock "^26.6.2" + jest-util "^26.6.2" + jsdom "^16.4.0" -jest-environment-node@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.3.0.tgz#56c6cfb506d1597f94ee8d717072bda7228df849" - integrity sha512-c9BvYoo+FGcMj5FunbBgtBnbR5qk3uky8PKyRVpSfe2/8+LrNQMiXX53z6q2kY+j15SkjQCOSL/6LHnCPLVHNw== +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.3.0" - "@jest/fake-timers" "^26.3.0" - "@jest/types" "^26.3.0" + "@jest/environment" "^26.6.2" + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" "@types/node" "*" - jest-mock "^26.3.0" - jest-util "^26.3.0" + jest-mock "^26.6.2" + jest-util "^26.6.2" jest-get-type@^26.3.0: version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" + resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz" integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== -jest-haste-map@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.3.0.tgz#c51a3b40100d53ab777bfdad382d2e7a00e5c726" - integrity sha512-DHWBpTJgJhLLGwE5Z1ZaqLTYqeODQIZpby0zMBsCU9iRFHYyhklYqP4EiG73j5dkbaAdSZhgB938mL51Q5LeZA== +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.3.0" + "@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.3.0" - jest-util "^26.3.0" - jest-worker "^26.3.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.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.4.2.tgz#18a9d5bec30904267ac5e9797570932aec1e2257" - integrity sha512-z7H4EpCldHN1J8fNgsja58QftxBSL+JcwZmaXIvV9WKIM+x49F4GLHu/+BQh2kzRKHAgaN/E82od+8rTOBPyPA== +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.3.0" - "@jest/source-map" "^26.3.0" - "@jest/test-result" "^26.3.0" - "@jest/types" "^26.3.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.4.2" + expect "^26.6.2" is-generator-fn "^2.0.0" - jest-each "^26.4.2" - jest-matcher-utils "^26.4.2" - jest-message-util "^26.3.0" - jest-runtime "^26.4.2" - jest-snapshot "^26.4.2" - jest-util "^26.3.0" - pretty-format "^26.4.2" + 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.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.4.2.tgz#c73e2fa8757bf905f6f66fb9e0070b70fa0f573f" - integrity sha512-akzGcxwxtE+9ZJZRW+M2o+nTNnmQZxrHJxX/HjgDaU5+PLmY1qnQPnMjgADPGCRPhB+Yawe1iij0REe+k/aHoA== +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.4.2" + pretty-format "^26.6.2" -jest-matcher-utils@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.4.2.tgz#fa81f3693f7cb67e5fc1537317525ef3b85f4b06" - integrity sha512-KcbNqWfWUG24R7tu9WcAOKKdiXiXCbMvQYT6iodZ9k1f7065k0keUOW6XpJMMvah+hTfqkhJhRXmA3r3zMAg0Q== +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.4.2" + jest-diff "^26.6.2" jest-get-type "^26.3.0" - pretty-format "^26.4.2" + pretty-format "^26.6.2" -jest-message-util@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.3.0.tgz#3bdb538af27bb417f2d4d16557606fd082d5841a" - integrity sha512-xIavRYqr4/otGOiLxLZGj3ieMmjcNE73Ui+LdSW/Y790j5acqCsAdDiLIbzHCZMpN07JOENRWX5DcU+OQ+TjTA== +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.3.0" - "@types/stack-utils" "^1.0.1" + "@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.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.3.0.tgz#ee62207c3c5ebe5f35b760e1267fee19a1cfdeba" - integrity sha512-PeaRrg8Dc6mnS35gOo/CbZovoDPKAeB1FICZiuagAgGvbWdNNyjQjkOaGUa/3N3JtpQ/Mh9P4A2D4Fv51NnP8Q== +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.3.0" + "@jest/types" "^26.6.2" "@types/node" "*" jest-pnp-resolver@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" + 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.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" + 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.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.4.2.tgz#739bdb027c14befb2fe5aabbd03f7bab355f1dc5" - integrity sha512-ADHaOwqEcVc71uTfySzSowA/RdxUpCxhxa2FNLiin9vWLB1uLPad3we+JSSROq5+SrL9iYPdZZF8bdKM7XABTQ== +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.3.0" + "@jest/types" "^26.6.2" jest-regex-util "^26.0.0" - jest-snapshot "^26.4.2" + jest-snapshot "^26.6.2" -jest-resolve@^26.4.0: - version "26.4.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.4.0.tgz#6dc0af7fb93e65b73fec0368ca2b76f3eb59a6d7" - integrity sha512-bn/JoZTEXRSlEx3+SfgZcJAVuTMOksYq9xe9O6s4Ekg84aKBObEaVXKOEilULRqviSLAYJldnoWV9c07kwtiCg== +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.3.0" + "@jest/types" "^26.6.2" chalk "^4.0.0" graceful-fs "^4.2.4" jest-pnp-resolver "^1.2.2" - jest-util "^26.3.0" + jest-util "^26.6.2" read-pkg-up "^7.0.1" - resolve "^1.17.0" + resolve "^1.18.1" slash "^3.0.0" -jest-runner@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.4.2.tgz#c3ec5482c8edd31973bd3935df5a449a45b5b853" - integrity sha512-FgjDHeVknDjw1gRAYaoUoShe1K3XUuFMkIaXbdhEys+1O4bEJS8Avmn4lBwoMfL8O5oFTdWYKcf3tEJyyYyk8g== +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.3.0" - "@jest/environment" "^26.3.0" - "@jest/test-result" "^26.3.0" - "@jest/types" "^26.3.0" + "@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.4.2" + jest-config "^26.6.3" jest-docblock "^26.0.0" - jest-haste-map "^26.3.0" - jest-leak-detector "^26.4.2" - jest-message-util "^26.3.0" - jest-resolve "^26.4.0" - jest-runtime "^26.4.2" - jest-util "^26.3.0" - jest-worker "^26.3.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.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.4.2.tgz#94ce17890353c92e4206580c73a8f0c024c33c42" - integrity sha512-4Pe7Uk5a80FnbHwSOk7ojNCJvz3Ks2CNQWT5Z7MJo4tX0jb3V/LThKvD9tKPNVNyeMH98J/nzGlcwc00R2dSHQ== +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.3.0" - "@jest/environment" "^26.3.0" - "@jest/fake-timers" "^26.3.0" - "@jest/globals" "^26.4.2" - "@jest/source-map" "^26.3.0" - "@jest/test-result" "^26.3.0" - "@jest/transform" "^26.3.0" - "@jest/types" "^26.3.0" + "@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.4.2" - jest-haste-map "^26.3.0" - jest-message-util "^26.3.0" - jest-mock "^26.3.0" + 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.4.0" - jest-snapshot "^26.4.2" - jest-util "^26.3.0" - jest-validate "^26.4.2" + 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.3.1" + yargs "^15.4.1" -jest-serializer@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.3.0.tgz#1c9d5e1b74d6e5f7e7f9627080fa205d976c33ef" - integrity sha512-IDRBQBLPlKa4flg77fqg0n/pH87tcRKwe8zxOVTWISxGpPHYkRZ1dXKyh04JOja7gppc60+soKVZ791mruVdow== +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.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.4.2.tgz#87d3ac2f2bd87ea8003602fbebd8fcb9e94104f6" - integrity sha512-N6Uub8FccKlf5SBFnL2Ri/xofbaA68Cc3MGjP/NuwgnsvWh+9hLIR/DhrxbSiKXMY9vUW5dI6EW1eHaDHqe9sg== +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.3.0" + "@jest/types" "^26.6.2" + "@types/babel__traverse" "^7.0.4" "@types/prettier" "^2.0.0" chalk "^4.0.0" - expect "^26.4.2" + expect "^26.6.2" graceful-fs "^4.2.4" - jest-diff "^26.4.2" + jest-diff "^26.6.2" jest-get-type "^26.3.0" - jest-haste-map "^26.3.0" - jest-matcher-utils "^26.4.2" - jest-message-util "^26.3.0" - jest-resolve "^26.4.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.4.2" + pretty-format "^26.6.2" semver "^7.3.2" -jest-util@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.3.0.tgz#a8974b191df30e2bf523ebbfdbaeb8efca535b3e" - integrity sha512-4zpn6bwV0+AMFN0IYhH/wnzIQzRaYVrz1A8sYnRnj4UXDXbOVtWmlaZkO9mipFqZ13okIfN87aDoJWB7VH6hcw== +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.3.0" + "@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.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.4.2.tgz#e871b0dfe97747133014dcf6445ee8018398f39c" - integrity sha512-blft+xDX7XXghfhY0mrsBCYhX365n8K5wNDC4XAcNKqqjEzsRUSXP44m6PL0QJEW2crxQFLLztVnJ4j7oPlQrQ== +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.3.0" + "@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.4.2" + pretty-format "^26.6.2" -jest-watcher@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.3.0.tgz#f8ef3068ddb8af160ef868400318dc4a898eed08" - integrity sha512-XnLdKmyCGJ3VoF6G/p5ohbJ04q/vv5aH9ENI+i6BL0uu9WWB6Z7Z2lhQQk0d2AVZcRGp1yW+/TsoToMhBFPRdQ== +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.3.0" - "@jest/types" "^26.3.0" + "@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.3.0" + jest-util "^26.6.2" string-length "^4.0.1" -jest-worker@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.3.0.tgz#7c8a97e4f4364b4f05ed8bca8ca0c24de091871f" - integrity sha512-Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw== +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.4.2" - resolved "https://registry.yarnpkg.com/jest/-/jest-26.4.2.tgz#7e8bfb348ec33f5459adeaffc1a25d5752d9d312" - integrity sha512-LLCjPrUh98Ik8CzW8LLVnSCfLaiY+wbK53U7VxnFSX7Q+kWC4noVeDvGWIFw0Amfq1lq2VfGm7YHWSLBV62MJw== + version "26.6.3" + resolved "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz" + integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q== dependencies: - "@jest/core" "^26.4.2" + "@jest/core" "^26.6.3" import-local "^3.0.2" - jest-cli "^26.4.2" + jest-cli "^26.6.3" js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + 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.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" + 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" @@ -2195,12 +2469,12 @@ js-yaml@^3.13.1: jsbn@~0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz" integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= -jsdom@^16.2.2: +jsdom@^16.4.0: version "16.4.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz" integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w== dependencies: abab "^2.0.3" @@ -2232,39 +2506,49 @@ jsdom@^16.2.2: jsesc@^2.5.1: version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + 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.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + 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.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + 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.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + 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.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + 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.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" + 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.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz" integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= dependencies: assert-plus "1.0.0" @@ -2274,41 +2558,49 @@ jsprim@^1.2.2: kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + 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.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + 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.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + 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.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + 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.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + 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.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + 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.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= dependencies: prelude-ls "~1.1.2" @@ -2316,60 +2608,60 @@ levn@~0.3.0: lines-and-columns@^1.1.6: version "1.1.6" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" + 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.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + 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.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz" integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= -lodash@^4.17.19: +lodash@^4.17.14, lodash@^4.17.19: version "4.17.20" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" + 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.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + 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.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + 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.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + 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.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + 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.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + 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.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== dependencies: arr-diff "^4.0.0" @@ -2388,7 +2680,7 @@ micromatch@^3.1.4: micromatch@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz" integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== dependencies: braces "^3.0.1" @@ -2396,54 +2688,61 @@ micromatch@^4.0.2: mime-db@1.44.0: version "1.44.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" + 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.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" + 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.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + 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.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + 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.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" + 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.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + 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.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + 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.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + 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.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz" integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== dependencies: arr-diff "^4.0.0" @@ -2460,27 +2759,32 @@ nanomatch@^1.2.9: natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + 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.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + 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.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + 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.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" + 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.yarnpkg.com/node-notifier/-/node-notifier-8.0.0.tgz#a7eee2d51da6d0f7ff5094bc7108c911240c1620" + resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz" integrity sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA== dependencies: growly "^1.3.0" @@ -2492,7 +2796,7 @@ node-notifier@^8.0.0: normalize-package-data@^2.5.0: version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + 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" @@ -2502,43 +2806,43 @@ normalize-package-data@^2.5.0: normalize-path@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + 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.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + 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.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + 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.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + 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.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" + 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.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + 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.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz" integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= dependencies: copy-descriptor "^0.1.0" @@ -2547,35 +2851,35 @@ object-copy@^0.1.0: object-visit@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + 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.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + 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.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + 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.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + 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.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== dependencies: deep-is "~0.1.3" @@ -2585,38 +2889,57 @@ optionator@^0.8.1: 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.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48" + 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.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + 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.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + 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.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + 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.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + 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.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" + 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" @@ -2626,99 +2949,109 @@ parse-json@^5.0.0: parse5@5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" + 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.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + 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.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + 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.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + 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.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + 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.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + 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.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + 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.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + 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.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" + 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.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" + 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.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + 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.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + 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.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= -pretty-format@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.4.2.tgz#d081d032b398e801e2012af2df1214ef75a81237" - integrity sha512-zK6Gd8zDsEiVydOCGLkoBoZuqv8VTiHyAbKznXe/gaph/DAeZOmit9yMfgIz5adIgAMMs5XfoYSwAX3jcCO1tA== +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.3.0" + "@jest/types" "^26.6.2" ansi-regex "^5.0.0" ansi-styles "^4.0.0" - react-is "^16.12.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.3.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" - integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== + 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.4" + sisteransi "^1.0.5" psl@^1.1.28: version "1.8.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" + 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.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + 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" @@ -2726,27 +3059,32 @@ pump@^3.0.0: punycode@^2.1.0, punycode@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + 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.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + 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.yarnpkg.com/ramda/-/ramda-0.27.1.tgz#66fc2df3ef873874ffc2da6aa8984658abacf5c9" + resolved "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz" integrity sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw== -react-is@^16.12.0: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== +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.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + 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" @@ -2755,7 +3093,7 @@ read-pkg-up@^7.0.1: read-pkg@^5.2.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + 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" @@ -2765,37 +3103,42 @@ read-pkg@^5.2.0: regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + 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.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + 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.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + 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.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + 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.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" + 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.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" + 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" @@ -2804,7 +3147,7 @@ request-promise-native@^1.0.8: request@^2.88.2: version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz" integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== dependencies: aws-sign2 "~0.7.0" @@ -2830,80 +3173,88 @@ request@^2.88.2: require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + 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.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + 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.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + 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.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + 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.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= -resolve@^1.10.0, resolve@^1.17.0, resolve@^1.3.2: - version "1.17.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" - integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== +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.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + 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.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + 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.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" + 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: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-buffer@~5.1.1: +safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + 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.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + 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.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + 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.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" + resolved "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz" integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== dependencies: "@cnakazawa/watch" "^1.0.3" @@ -2918,34 +3269,34 @@ sane@^4.0.3: saxes@^5.0.0: version "5.0.1" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" + 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.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@^6.0.0, semver@^6.3.0: +semver@^6.0.0, semver@^6.1.0, semver@^6.3.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.3.2: +semver@^7.2.1, semver@^7.3.2: version "7.3.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" + 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.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + 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.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + 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" @@ -2955,51 +3306,60 @@ set-value@^2.0.0, set-value@^2.0.1: shebang-command@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + 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.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + 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.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + 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.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + 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.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + 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.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz" integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== -sisteransi@^1.0.4: +sisteransi@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + 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.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + 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.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + 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" @@ -3008,14 +3368,14 @@ snapdragon-node@^2.0.1: snapdragon-util@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + 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.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz" integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== dependencies: base "^0.11.1" @@ -3029,7 +3389,7 @@ snapdragon@^0.8.1: source-map-resolve@^0.5.0: version "0.5.3" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + 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" @@ -3040,7 +3400,7 @@ source-map-resolve@^0.5.0: source-map-support@^0.5.6: version "0.5.19" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" + 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" @@ -3048,27 +3408,27 @@ source-map-support@^0.5.6: source-map-url@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + 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.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + 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.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + 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.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" + 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.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== dependencies: spdx-expression-parse "^3.0.0" @@ -3076,12 +3436,12 @@ spdx-correct@^3.0.0: spdx-exceptions@^2.1.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + 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.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + 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" @@ -3089,24 +3449,24 @@ spdx-expression-parse@^3.0.0: spdx-license-ids@^3.0.0: version "3.0.6" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce" + 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.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + 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.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + 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.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz" integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== dependencies: asn1 "~0.2.3" @@ -3120,15 +3480,15 @@ sshpk@^1.7.0: tweetnacl "~0.14.0" stack-utils@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.2.tgz#5cf48b4557becb4638d0bc4f21d23f5d19586593" - integrity sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg== + 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.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz" integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= dependencies: define-property "^0.2.5" @@ -3136,65 +3496,86 @@ static-extend@^0.1.1: stealthy-require@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + 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.yarnpkg.com/string-length/-/string-length-4.0.1.tgz#4a973bf31ef77c4edbceadd6af2611996985f8a1" + 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.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" + 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.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" + 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.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + 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.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + 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.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + 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.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + 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.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + 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.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47" + 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" @@ -3202,12 +3583,22 @@ supports-hyperlinks@^2.0.0: symbol-tree@^3.2.4: version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + 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.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" + 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" @@ -3215,38 +3606,43 @@ terminal-link@^2.0.0: test-exclude@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + 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.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" + 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.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + 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.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + 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.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + 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.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + 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" @@ -3254,14 +3650,14 @@ to-regex-range@^2.1.0: to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + 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.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz" integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== dependencies: define-property "^2.0.2" @@ -3271,7 +3667,7 @@ to-regex@^3.0.1, to-regex@^3.0.2: tough-cookie@^2.3.3, tough-cookie@~2.5.0: version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz" integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== dependencies: psl "^1.1.28" @@ -3279,7 +3675,7 @@ tough-cookie@^2.3.3, tough-cookie@~2.5.0: tough-cookie@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz" integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== dependencies: ip-regex "^2.1.0" @@ -3288,60 +3684,67 @@ tough-cookie@^3.0.1: tr46@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479" + 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.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + 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.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + 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.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + 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.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + 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.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" + 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.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + 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.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + 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.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + 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.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + 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" @@ -3351,7 +3754,7 @@ union-value@^1.0.0: unset-value@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz" integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= dependencies: has-value "^0.3.1" @@ -3359,35 +3762,40 @@ unset-value@^1.0.0: uri-js@^4.2.2: version "4.4.0" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" + 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.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + 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.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + 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.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== uuid@^8.3.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea" - integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ== + version "8.3.1" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz" + integrity sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg== -v8-to-istanbul@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-5.0.1.tgz#0608f5b49a481458625edb058488607f25498ba5" - integrity sha512-mbDNjuDajqYe3TXFk5qxcQy8L1msXNE37WTlLoqqpBfRsimbNcrlhQlDPntmECEcUvdC+AQ8CyMMf6EUx1r74Q== +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" @@ -3395,7 +3803,7 @@ v8-to-istanbul@^5.0.1: validate-npm-package-license@^3.0.1: version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + 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" @@ -3403,60 +3811,91 @@ validate-npm-package-license@^3.0.1: verror@1.10.0: version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + 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.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + 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.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" + 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.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + 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.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" + 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.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" + 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.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + 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.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + 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.3.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.3.0.tgz#d1e11e565334486cdb280d3101b9c3fd1c867582" - integrity sha512-BQRf/ej5Rp3+n7k0grQXZj9a1cHtsp4lqj01p59xBWFKdezR8sO37XnpafwNqiFac/v2Il12EIMjX/Y4VZtT8Q== + 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" @@ -3464,31 +3903,31 @@ whatwg-url@^8.0.0: which-module@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + 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.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + 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.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + 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, word-wrap@~1.2.3: version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + 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.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + 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" @@ -3497,12 +3936,12 @@ wrap-ansi@^6.2.0: wrappy@1: version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + 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.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + 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" @@ -3510,37 +3949,44 @@ write-file-atomic@^3.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.3.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8" - integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA== + 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.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + 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.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + 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.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + 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.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + 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.3.1: +yargs@^15.4.1: version "15.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== dependencies: cliui "^6.0.0"